Source code for azure.mgmt.storage.v2016_01_01.models._storage_management_client_enums

# coding=utf-8
# --------------------------------------------------------------------------
# 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.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

from enum import Enum

[docs]class AccessTier(str, Enum): """Required for storage accounts where kind = BlobStorage. The access tier used for billing. """ hot = "Hot" cool = "Cool"
[docs]class AccountStatus(str, Enum): """Gets the status indicating whether the primary location of the storage account is available or unavailable. """ available = "Available" unavailable = "Unavailable"
[docs]class KeyPermission(str, Enum): """Permissions for the key -- read-only or full permissions. """ read = "READ" full = "FULL"
[docs]class Kind(str, Enum): """Required. Indicates the type of storage account. """ storage = "Storage" blob_storage = "BlobStorage"
[docs]class ProvisioningState(str, Enum): """Gets the status of the storage account at the time the operation was called. """ creating = "Creating" resolving_dns = "ResolvingDNS" succeeded = "Succeeded"
[docs]class Reason(str, Enum): """Gets the reason that a storage account name could not be used. The Reason element is only returned if NameAvailable is false. """ account_name_invalid = "AccountNameInvalid" already_exists = "AlreadyExists"
[docs]class SkuName(str, Enum): """Gets or sets the sku name. Required for account creation; optional for update. Note that in older versions, sku name was called accountType. """ standard_lrs = "Standard_LRS" standard_grs = "Standard_GRS" standard_ragrs = "Standard_RAGRS" standard_zrs = "Standard_ZRS" premium_lrs = "Premium_LRS"
[docs]class SkuTier(str, Enum): """Gets the sku tier. This is based on the SKU name. """ standard = "Standard" premium = "Premium"
[docs]class UsageUnit(str, Enum): """Gets the unit of measurement. """ count = "Count" bytes = "Bytes" seconds = "Seconds" percent = "Percent" counts_per_second = "CountsPerSecond" bytes_per_second = "BytesPerSecond"