# 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::V2015_05_01_preview module Models # # The parameters to provide for the account. # class StorageAccountCreateParameters < Resource include MsRestAzure # @return [AccountType] Gets or sets the account type. Possible values # include: 'Standard_LRS', 'Standard_ZRS', 'Standard_GRS', # 'Standard_RAGRS', 'Premium_LRS' attr_accessor :account_type # # Mapper for StorageAccountCreateParameters class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'StorageAccountCreateParameters', type: { name: 'Composite', class_name: 'StorageAccountCreateParameters', model_properties: { id: { required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, location: { required: true, serialized_name: 'location', type: { name: 'String' } }, tags: { required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, account_type: { required: false, serialized_name: 'properties.accountType', type: { name: 'Enum', module: 'AccountType' } } } } } end end end end