Sha256: 995b0b8ccbd5324b02cdd161d0f0a988022d7da8eea1fea143a8d1e5e2581fd2
Contents?: true
Size: 1.53 KB
Versions: 1
Compression:
Stored size: 1.53 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Storage::Mgmt::V2021_01_01 module Models # # The SKU of the storage account. # class Sku include MsRestAzure # @return [SkuName] Possible values include: 'Standard_LRS', # 'Standard_GRS', 'Standard_RAGRS', 'Standard_ZRS', 'Premium_LRS', # 'Premium_ZRS', 'Standard_GZRS', 'Standard_RAGZRS' attr_accessor :name # @return [SkuTier] Possible values include: 'Standard', 'Premium' attr_accessor :tier # # Mapper for Sku class as Ruby Hash. # This will be used for serialization/deserialization. # 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 end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
azure_mgmt_storage-0.23.0 | lib/2021-01-01/generated/azure_mgmt_storage/models/sku.rb |