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.
/** * 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.compute; import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty;
The ResourceSkuLocationInfo model.
/** * The ResourceSkuLocationInfo model. */
public class ResourceSkuLocationInfo {
Location of the SKU.
/** * Location of the SKU. */
@JsonProperty(value = "location", access = JsonProperty.Access.WRITE_ONLY) private String location;
List of availability zones where the SKU is supported.
/** * List of availability zones where the SKU is supported. */
@JsonProperty(value = "zones", access = JsonProperty.Access.WRITE_ONLY) private List<String> zones;
Details of capabilities available to a SKU in specific zones.
/** * Details of capabilities available to a SKU in specific zones. */
@JsonProperty(value = "zoneDetails", access = JsonProperty.Access.WRITE_ONLY) private List<ResourceSkuZoneDetails> zoneDetails;
Get location of the SKU.
Returns:the location value
/** * Get location of the SKU. * * @return the location value */
public String location() { return this.location; }
Get list of availability zones where the SKU is supported.
Returns:the zones value
/** * Get list of availability zones where the SKU is supported. * * @return the zones value */
public List<String> zones() { return this.zones; }
Get details of capabilities available to a SKU in specific zones.
Returns:the zoneDetails value
/** * Get details of capabilities available to a SKU in specific zones. * * @return the zoneDetails value */
public List<ResourceSkuZoneDetails> zoneDetails() { return this.zoneDetails; } }