/**
* 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 com.fasterxml.jackson.annotation.JsonProperty;
/**
* Describes a virtual machine scale set sku.
*/
public class Sku {
/**
* The sku name.
*/
@JsonProperty(value = "name")
private String name;
/**
* The sku tier.
*/
@JsonProperty(value = "tier")
private String tier;
/**
* The sku capacity.
*/
@JsonProperty(value = "capacity")
private Long capacity;
/**
* Get the name value.
*
* @return the name value
*/
public String name() {
return this.name;
}
/**
* Set the name value.
*
* @param name the name value to set
* @return the Sku object itself.
*/
public Sku withName(String name) {
this.name = name;
return this;
}
/**
* Get the tier value.
*
* @return the tier value
*/
public String tier() {
return this.tier;
}
/**
* Set the tier value.
*
* @param tier the tier value to set
* @return the Sku object itself.
*/
public Sku withTier(String tier) {
this.tier = tier;
return this;
}
/**
* Get the capacity value.
*
* @return the capacity value
*/
public Long capacity() {
return this.capacity;
}
/**
* Set the capacity value.
*
* @param capacity the capacity value to set
* @return the Sku object itself.
*/
public Sku withCapacity(Long capacity) {
this.capacity = capacity;
return this;
}
}