Class: Azure::Batch::Mgmt::V2019_08_01::Models::BatchAccountUpdateParameters
- Inherits:
-
Object
- Object
- Azure::Batch::Mgmt::V2019_08_01::Models::BatchAccountUpdateParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-08-01/generated/azure_mgmt_batch/models/batch_account_update_parameters.rb
Overview
Parameters for updating an Azure Batch account.
Instance Attribute Summary collapse
-
#auto_storage ⇒ AutoStorageBaseProperties
auto-storage account.
-
#tags ⇒ Hash{String => String}
with the account.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for BatchAccountUpdateParameters class as Ruby Hash.
Instance Attribute Details
#auto_storage ⇒ AutoStorageBaseProperties
auto-storage account.
21 22 23 |
# File 'lib/2019-08-01/generated/azure_mgmt_batch/models/batch_account_update_parameters.rb', line 21 def auto_storage @auto_storage end |
#tags ⇒ Hash{String => String}
with the account.
17 18 19 |
# File 'lib/2019-08-01/generated/azure_mgmt_batch/models/batch_account_update_parameters.rb', line 17 def @tags end |
Class Method Details
.mapper ⇒ Object
Mapper for BatchAccountUpdateParameters class as Ruby Hash. This will be used for serialization/deserialization.
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/2019-08-01/generated/azure_mgmt_batch/models/batch_account_update_parameters.rb', line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'BatchAccountUpdateParameters', type: { name: 'Composite', class_name: 'BatchAccountUpdateParameters', model_properties: { 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 |