Class Sku
- java.lang.Object
-
- com.microsoft.azure.management.resources.Sku
-
public class Sku extends Object
SKU for the resource.
-
-
Constructor Summary
Constructors Constructor Description Sku()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integercapacity()Get the capacity value.Stringfamily()Get the family value.Stringmodel()Get the model value.Stringname()Get the name value.Stringsize()Get the size value.Stringtier()Get the tier value.SkuwithCapacity(Integer capacity)Set the capacity value.SkuwithFamily(String family)Set the family value.SkuwithModel(String model)Set the model value.SkuwithName(String name)Set the name value.SkuwithSize(String size)Set the size value.SkuwithTier(String tier)Set the tier value.
-
-
-
Method Detail
-
name
public String name()
Get the name value.- Returns:
- the name value
-
withName
public Sku withName(String name)
Set the name value.- Parameters:
name- the name value to set- Returns:
- the Sku object itself.
-
tier
public String tier()
Get the tier value.- Returns:
- the tier value
-
withTier
public Sku withTier(String tier)
Set the tier value.- Parameters:
tier- the tier value to set- Returns:
- the Sku object itself.
-
size
public String size()
Get the size value.- Returns:
- the size value
-
withSize
public Sku withSize(String size)
Set the size value.- Parameters:
size- the size value to set- Returns:
- the Sku object itself.
-
family
public String family()
Get the family value.- Returns:
- the family value
-
withFamily
public Sku withFamily(String family)
Set the family value.- Parameters:
family- the family value to set- Returns:
- the Sku object itself.
-
model
public String model()
Get the model value.- Returns:
- the model value
-
withModel
public Sku withModel(String model)
Set the model value.- Parameters:
model- the model value to set- Returns:
- the Sku object itself.
-
capacity
public Integer capacity()
Get the capacity value.- Returns:
- the capacity value
-
-