All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.management.network.implementation.TopologyInner Maven / Gradle / Ivy

There is a newer version: 1.41.4
Show newest version
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 *
 * Code generated by Microsoft (R) AutoRest Code Generator.
 */

package com.microsoft.azure.management.network.implementation;

import org.joda.time.DateTime;
import java.util.List;
import com.microsoft.azure.management.network.TopologyResource;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Topology of the specified resource group.
 */
public class TopologyInner {
    /**
     * GUID representing the operation id.
     */
    @JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
    private String id;

    /**
     * The datetime when the topology was initially created for the resource
     * group.
     */
    @JsonProperty(value = "createdDateTime", access = JsonProperty.Access.WRITE_ONLY)
    private DateTime createdDateTime;

    /**
     * The datetime when the topology was last modified.
     */
    @JsonProperty(value = "lastModified", access = JsonProperty.Access.WRITE_ONLY)
    private DateTime lastModified;

    /**
     * A list of topology resources.
     */
    @JsonProperty(value = "resources")
    private List resources;

    /**
     * Get gUID representing the operation id.
     *
     * @return the id value
     */
    public String id() {
        return this.id;
    }

    /**
     * Get the datetime when the topology was initially created for the resource group.
     *
     * @return the createdDateTime value
     */
    public DateTime createdDateTime() {
        return this.createdDateTime;
    }

    /**
     * Get the datetime when the topology was last modified.
     *
     * @return the lastModified value
     */
    public DateTime lastModified() {
        return this.lastModified;
    }

    /**
     * Get a list of topology resources.
     *
     * @return the resources value
     */
    public List resources() {
        return this.resources;
    }

    /**
     * Set a list of topology resources.
     *
     * @param resources the resources value to set
     * @return the TopologyInner object itself.
     */
    public TopologyInner withResources(List resources) {
        this.resources = resources;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy