Class: Azure::MachineLearning::Mgmt::V2017_01_01::Models::StorageAccount
- Inherits:
-
Object
- Object
- Azure::MachineLearning::Mgmt::V2017_01_01::Models::StorageAccount
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-01-01/generated/azure_mgmt_machine_learning/models/storage_account.rb
Overview
Access information for a storage account.
Instance Attribute Summary collapse
-
#key ⇒ String
Specifies the key used to access the storage account.
-
#name ⇒ String
Specifies the name of the storage account.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for StorageAccount class as Ruby Hash.
Instance Attribute Details
#key ⇒ String
Returns Specifies the key used to access the storage account.
19 20 21 |
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/storage_account.rb', line 19 def key @key end |
#name ⇒ String
Returns Specifies the name of the storage account.
16 17 18 |
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/storage_account.rb', line 16 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for StorageAccount class as Ruby Hash. This will be used for serialization/deserialization.
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 54 |
# File 'lib/2017-01-01/generated/azure_mgmt_machine_learning/models/storage_account.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'StorageAccount', type: { name: 'Composite', class_name: 'StorageAccount', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, key: { client_side_validation: true, required: false, serialized_name: 'key', type: { name: 'String' } } } } } end |