Package version:

Interface SkuInformation

Storage SKU and its properties

interface SkuInformation {
    capabilities?: SKUCapability[];
    kind?: string;
    locations?: string[];
    name: string;
    resourceType?: string;
    restrictions?: Restriction[];
    tier?: SkuTier;
}

Properties

capabilities?: SKUCapability[]

The capability information in the specified SKU, including file encryption, network ACLs, change notification, etc. NOTE: This property will not be serialized. It can only be populated by the server.

kind?: string

Indicates the type of storage account. NOTE: This property will not be serialized. It can only be populated by the server.

locations?: string[]

The set of locations that the SKU is available. This will be supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). NOTE: This property will not be serialized. It can only be populated by the server.

name: string

The SKU name. Required for account creation; optional for update. Note that in older versions, SKU name was called accountType.

resourceType?: string

The type of the resource, usually it is 'storageAccounts'. NOTE: This property will not be serialized. It can only be populated by the server.

restrictions?: Restriction[]

The restrictions because of which SKU cannot be used. This is empty if there are no restrictions.

tier?: SkuTier

The SKU tier. This is based on the SKU name. NOTE: This property will not be serialized. It can only be populated by the server.