Class: Azure::OperationalInsights::Mgmt::V2020_08_01::Models::StorageAccount
- Inherits:
-
Object
- Object
- Azure::OperationalInsights::Mgmt::V2020_08_01::Models::StorageAccount
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-08-01/generated/azure_mgmt_operational_insights/models/storage_account.rb
Overview
Describes a storage account connection.
Instance Attribute Summary collapse
-
#id ⇒ String
resource.
-
#key ⇒ String
The storage account key.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for StorageAccount class as Ruby Hash.
Instance Attribute Details
#id ⇒ String
resource.
17 18 19 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/storage_account.rb', line 17 def id @id end |
#key ⇒ String
Returns The storage account key.
20 21 22 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/storage_account.rb', line 20 def key @key end |
Class Method Details
.mapper ⇒ Object
Mapper for StorageAccount class as Ruby Hash. This will be used for serialization/deserialization.
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 55 |
# File 'lib/2020-08-01/generated/azure_mgmt_operational_insights/models/storage_account.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'StorageAccount', type: { name: 'Composite', class_name: 'StorageAccount', model_properties: { id: { client_side_validation: true, required: true, serialized_name: 'id', type: { name: 'String' } }, key: { client_side_validation: true, required: true, serialized_name: 'key', type: { name: 'String' } } } } } end |