Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.storage;
The SKU of the storage account.
/** * The SKU of the storage account. */
public class Sku {
the sku name.
/** * the sku name. */
private SkuName name;
the sku tier.
/** * the sku tier. */
private SkuTier tier;
Returns:the name value
/** * @return the name value */
public SkuName name() { return this.name; }
Set the name value.
Params:
  • name – the name value to set
Returns:the Sku object.
/** * Set the name value. * * @param name the name value to set * @return the Sku object. */
public Sku withName(SkuName name) { this.name = name; return this; }
Get the tier value.
Returns:the tier value
/** * Get the tier value. * * @return the tier value */
public SkuTier tier() { return this.tier; } }