Class: Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::StorageProfile
- Inherits:
-
Object
- Object
- Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::StorageProfile
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_profile.rb
Overview
The storage profile.
Instance Attribute Summary collapse
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for StorageProfile class as Ruby Hash.
Instance Attribute Details
#storageaccounts ⇒ Array<StorageAccount>
cluster.
17 18 19 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_profile.rb', line 17 def storageaccounts @storageaccounts end |
Class Method Details
.mapper ⇒ Object
Mapper for StorageProfile class as Ruby Hash. This will be used for serialization/deserialization.
24 25 26 27 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 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_profile.rb', line 24 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'StorageProfile', type: { name: 'Composite', class_name: 'StorageProfile', model_properties: { storageaccounts: { client_side_validation: true, required: false, serialized_name: 'storageaccounts', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StorageAccountElementType', type: { name: 'Composite', class_name: 'StorageAccount' } } } } } } } end |