Class: Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::UpdateStorageAccountParameters
- Inherits:
-
Object
- Object
- Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::UpdateStorageAccountParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_parameters.rb
Overview
The parameters used to update an Azure Storage account.
Instance Attribute Summary collapse
-
#access_key ⇒ String
Storage account that will be used to connect to it.
-
#suffix ⇒ String
The optional suffix for the storage account.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for UpdateStorageAccountParameters class as Ruby Hash.
Instance Attribute Details
#access_key ⇒ String
Storage account that will be used to connect to it.
17 18 19 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_parameters.rb', line 17 def access_key @access_key end |
#suffix ⇒ String
Returns The optional suffix for the storage account.
20 21 22 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_parameters.rb', line 20 def suffix @suffix end |
Class Method Details
.mapper ⇒ Object
Mapper for UpdateStorageAccountParameters 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/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_parameters.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'UpdateStorageAccountParameters', type: { name: 'Composite', class_name: 'UpdateStorageAccountParameters', model_properties: { access_key: { client_side_validation: true, required: false, serialized_name: 'properties.accessKey', type: { name: 'String' } }, suffix: { client_side_validation: true, required: false, serialized_name: 'properties.suffix', type: { name: 'String' } } } } } end |