class Azure::Storage::Mgmt::V2020_08_01_preview::Models::Sku
The SKU of the storage account.
Attributes
name[RW]
@return [SkuName] Possible values include: 'Standard_LRS', 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', 'Premium_ZRS', 'Standard_GZRS', 'Standard_RAGZRS'
tier[RW]
@return [SkuTier] Possible values include: 'Standard', 'Premium'
Public Class Methods
mapper()
click to toggle source
Mapper for Sku
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-08-01-preview/generated/azure_mgmt_storage/models/sku.rb, line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Sku', type: { name: 'Composite', class_name: 'Sku', model_properties: { name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, tier: { client_side_validation: true, required: false, serialized_name: 'tier', type: { name: 'Enum', module: 'SkuTier' } } } } } end