# 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::Batch::Mgmt::V2015_12_01 module Models # # Parameters supplied to the Create operation. # class BatchAccountCreateParameters include MsRestAzure # @return [String] The region in which to create the account. attr_accessor :location # @return [Hash{String => String}] The user specified tags associated # with the account. attr_accessor :tags # @return [AutoStorageBaseProperties] The properties related to auto # storage account. attr_accessor :auto_storage # # Mapper for BatchAccountCreateParameters class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'BatchAccountCreateParameters', type: { name: 'Composite', class_name: 'BatchAccountCreateParameters', model_properties: { location: { client_side_validation: true, required: true, serialized_name: 'location', type: { name: 'String' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, auto_storage: { client_side_validation: true, required: false, serialized_name: 'properties.autoStorage', type: { name: 'Composite', class_name: 'AutoStorageBaseProperties' } } } } } end end end end