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.appservice;
import java.util.List;
import com.microsoft.azure.management.appservice.implementation.CapabilityInner;
import com.fasterxml.jackson.annotation.JsonProperty;
Description of a SKU for a scalable resource.
/**
* Description of a SKU for a scalable resource.
*/
public class SkuDescription {
Name of the resource SKU.
/**
* Name of the resource SKU.
*/
@JsonProperty(value = "name")
private String name;
Service tier of the resource SKU.
/**
* Service tier of the resource SKU.
*/
@JsonProperty(value = "tier")
private String tier;
Size specifier of the resource SKU.
/**
* Size specifier of the resource SKU.
*/
@JsonProperty(value = "size")
private String size;
Family code of the resource SKU.
/**
* Family code of the resource SKU.
*/
@JsonProperty(value = "family")
private String family;
Current number of instances assigned to the resource.
/**
* Current number of instances assigned to the resource.
*/
@JsonProperty(value = "capacity")
private Integer capacity;
Min, max, and default scale values of the SKU.
/**
* Min, max, and default scale values of the SKU.
*/
@JsonProperty(value = "skuCapacity")
private SkuCapacity skuCapacity;
Locations of the SKU.
/**
* Locations of the SKU.
*/
@JsonProperty(value = "locations")
private List<String> locations;
Capabilities of the SKU, e.g., is traffic manager enabled?.
/**
* Capabilities of the SKU, e.g., is traffic manager enabled?.
*/
@JsonProperty(value = "capabilities")
private List<CapabilityInner> capabilities;
Get name of the resource SKU.
Returns: the name value
/**
* Get name of the resource SKU.
*
* @return the name value
*/
public String name() {
return this.name;
}
Set name of the resource SKU.
Params: - name – the name value to set
Returns: the SkuDescription object itself.
/**
* Set name of the resource SKU.
*
* @param name the name value to set
* @return the SkuDescription object itself.
*/
public SkuDescription withName(String name) {
this.name = name;
return this;
}
Get service tier of the resource SKU.
Returns: the tier value
/**
* Get service tier of the resource SKU.
*
* @return the tier value
*/
public String tier() {
return this.tier;
}
Set service tier of the resource SKU.
Params: - tier – the tier value to set
Returns: the SkuDescription object itself.
/**
* Set service tier of the resource SKU.
*
* @param tier the tier value to set
* @return the SkuDescription object itself.
*/
public SkuDescription withTier(String tier) {
this.tier = tier;
return this;
}
Get size specifier of the resource SKU.
Returns: the size value
/**
* Get size specifier of the resource SKU.
*
* @return the size value
*/
public String size() {
return this.size;
}
Set size specifier of the resource SKU.
Params: - size – the size value to set
Returns: the SkuDescription object itself.
/**
* Set size specifier of the resource SKU.
*
* @param size the size value to set
* @return the SkuDescription object itself.
*/
public SkuDescription withSize(String size) {
this.size = size;
return this;
}
Get family code of the resource SKU.
Returns: the family value
/**
* Get family code of the resource SKU.
*
* @return the family value
*/
public String family() {
return this.family;
}
Set family code of the resource SKU.
Params: - family – the family value to set
Returns: the SkuDescription object itself.
/**
* Set family code of the resource SKU.
*
* @param family the family value to set
* @return the SkuDescription object itself.
*/
public SkuDescription withFamily(String family) {
this.family = family;
return this;
}
Get current number of instances assigned to the resource.
Returns: the capacity value
/**
* Get current number of instances assigned to the resource.
*
* @return the capacity value
*/
public Integer capacity() {
return this.capacity;
}
Set current number of instances assigned to the resource.
Params: - capacity – the capacity value to set
Returns: the SkuDescription object itself.
/**
* Set current number of instances assigned to the resource.
*
* @param capacity the capacity value to set
* @return the SkuDescription object itself.
*/
public SkuDescription withCapacity(Integer capacity) {
this.capacity = capacity;
return this;
}
Get min, max, and default scale values of the SKU.
Returns: the skuCapacity value
/**
* Get min, max, and default scale values of the SKU.
*
* @return the skuCapacity value
*/
public SkuCapacity skuCapacity() {
return this.skuCapacity;
}
Set min, max, and default scale values of the SKU.
Params: - skuCapacity – the skuCapacity value to set
Returns: the SkuDescription object itself.
/**
* Set min, max, and default scale values of the SKU.
*
* @param skuCapacity the skuCapacity value to set
* @return the SkuDescription object itself.
*/
public SkuDescription withSkuCapacity(SkuCapacity skuCapacity) {
this.skuCapacity = skuCapacity;
return this;
}
Get locations of the SKU.
Returns: the locations value
/**
* Get locations of the SKU.
*
* @return the locations value
*/
public List<String> locations() {
return this.locations;
}
Set locations of the SKU.
Params: - locations – the locations value to set
Returns: the SkuDescription object itself.
/**
* Set locations of the SKU.
*
* @param locations the locations value to set
* @return the SkuDescription object itself.
*/
public SkuDescription withLocations(List<String> locations) {
this.locations = locations;
return this;
}
Get capabilities of the SKU, e.g., is traffic manager enabled?.
Returns: the capabilities value
/**
* Get capabilities of the SKU, e.g., is traffic manager enabled?.
*
* @return the capabilities value
*/
public List<CapabilityInner> capabilities() {
return this.capabilities;
}
Set capabilities of the SKU, e.g., is traffic manager enabled?.
Params: - capabilities – the capabilities value to set
Returns: the SkuDescription object itself.
/**
* Set capabilities of the SKU, e.g., is traffic manager enabled?.
*
* @param capabilities the capabilities value to set
* @return the SkuDescription object itself.
*/
public SkuDescription withCapabilities(List<CapabilityInner> capabilities) {
this.capabilities = capabilities;
return this;
}
}