com.microsoft.azure.management.network.implementation.ExpressRouteServiceProviderInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-network Show documentation
Show all versions of azure-mgmt-network Show documentation
This package contains Microsoft Azure Network Management SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt
/**
* 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 java.util.List;
import com.microsoft.azure.management.network.ExpressRouteServiceProviderBandwidthsOffered;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
import com.microsoft.azure.Resource;
/**
* A ExpressRouteResourceProvider object.
*/
@JsonFlatten
public class ExpressRouteServiceProviderInner extends Resource {
/**
* Get a list of peering locations.
*/
@JsonProperty(value = "properties.peeringLocations")
private List peeringLocations;
/**
* Gets bandwidths offered.
*/
@JsonProperty(value = "properties.bandwidthsOffered")
private List bandwidthsOffered;
/**
* Gets the provisioning state of the resource.
*/
@JsonProperty(value = "properties.provisioningState")
private String provisioningState;
/**
* Get the peeringLocations value.
*
* @return the peeringLocations value
*/
public List peeringLocations() {
return this.peeringLocations;
}
/**
* Set the peeringLocations value.
*
* @param peeringLocations the peeringLocations value to set
* @return the ExpressRouteServiceProviderInner object itself.
*/
public ExpressRouteServiceProviderInner withPeeringLocations(List peeringLocations) {
this.peeringLocations = peeringLocations;
return this;
}
/**
* Get the bandwidthsOffered value.
*
* @return the bandwidthsOffered value
*/
public List bandwidthsOffered() {
return this.bandwidthsOffered;
}
/**
* Set the bandwidthsOffered value.
*
* @param bandwidthsOffered the bandwidthsOffered value to set
* @return the ExpressRouteServiceProviderInner object itself.
*/
public ExpressRouteServiceProviderInner withBandwidthsOffered(List bandwidthsOffered) {
this.bandwidthsOffered = bandwidthsOffered;
return this;
}
/**
* Get the provisioningState value.
*
* @return the provisioningState value
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* Set the provisioningState value.
*
* @param provisioningState the provisioningState value to set
* @return the ExpressRouteServiceProviderInner object itself.
*/
public ExpressRouteServiceProviderInner withProvisioningState(String provisioningState) {
this.provisioningState = provisioningState;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy