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.sql; import com.fasterxml.jackson.annotation.JsonProperty;
The resource model definition representing SKU.
/** * The resource model definition representing SKU. */
public class Sku {
The name of the SKU. Ex - P3. It is typically a letter+number code.
/** * The name of the SKU. Ex - P3. It is typically a letter+number code. */
@JsonProperty(value = "name", required = true) private String name;
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
/** * This field is required to be implemented by the Resource Provider if the * service has more than one tier, but is not required on a PUT. */
@JsonProperty(value = "tier") private String tier;
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
/** * The SKU size. When the name field is the combination of tier and some * other value, this would be the standalone code. */
@JsonProperty(value = "size") private String size;
If the service has different generations of hardware, for the same SKU, then that can be captured here.
/** * If the service has different generations of hardware, for the same SKU, * then that can be captured here. */
@JsonProperty(value = "family") private String family;
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
/** * If the SKU supports scale out/in then the capacity integer should be * included. If scale out/in is not possible for the resource this may be * omitted. */
@JsonProperty(value = "capacity") private Integer capacity;
Get the name of the SKU. Ex - P3. It is typically a letter+number code.
Returns:the name value
/** * Get the name of the SKU. Ex - P3. It is typically a letter+number code. * * @return the name value */
public String name() { return this.name; }
Set the name of the SKU. Ex - P3. It is typically a letter+number code.
Params:
  • name – the name value to set
Returns:the Sku object itself.
/** * Set the name of the SKU. Ex - P3. It is typically a letter+number code. * * @param name the name value to set * @return the Sku object itself. */
public Sku withName(String name) { this.name = name; return this; }
Get this field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
Returns:the tier value
/** * Get this field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. * * @return the tier value */
public String tier() { return this.tier; }
Set this field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
Params:
  • tier – the tier value to set
Returns:the Sku object itself.
/** * Set this field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. * * @param tier the tier value to set * @return the Sku object itself. */
public Sku withTier(String tier) { this.tier = tier; return this; }
Get the SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Returns:the size value
/** * Get the SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. * * @return the size value */
public String size() { return this.size; }
Set the SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Params:
  • size – the size value to set
Returns:the Sku object itself.
/** * Set the SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. * * @param size the size value to set * @return the Sku object itself. */
public Sku withSize(String size) { this.size = size; return this; }
Get if the service has different generations of hardware, for the same SKU, then that can be captured here.
Returns:the family value
/** * Get if the service has different generations of hardware, for the same SKU, then that can be captured here. * * @return the family value */
public String family() { return this.family; }
Set if the service has different generations of hardware, for the same SKU, then that can be captured here.
Params:
  • family – the family value to set
Returns:the Sku object itself.
/** * Set if the service has different generations of hardware, for the same SKU, then that can be captured here. * * @param family the family value to set * @return the Sku object itself. */
public Sku withFamily(String family) { this.family = family; return this; }
Get if the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Returns:the capacity value
/** * Get if the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. * * @return the capacity value */
public Integer capacity() { return this.capacity; }
Set if the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Params:
  • capacity – the capacity value to set
Returns:the Sku object itself.
/** * Set if the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. * * @param capacity the capacity value to set * @return the Sku object itself. */
public Sku withCapacity(Integer capacity) { this.capacity = capacity; return this; } }