Class: Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::UpdateStorageAccountWithAccountParameters
- Inherits:
-
Object
- Object
- Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::UpdateStorageAccountWithAccountParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_with_account_parameters.rb
Overview
The parameters used to update an Azure Storage account while updating a Data Lake Analytics account.
Instance Attribute Summary collapse
-
#access_key ⇒ String
Storage account that will be used to connect to it.
-
#name ⇒ String
update.
-
#suffix ⇒ String
The optional suffix for the storage account.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for UpdateStorageAccountWithAccountParameters class as Ruby Hash.
Instance Attribute Details
#access_key ⇒ String
Storage account that will be used to connect to it.
22 23 24 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_with_account_parameters.rb', line 22 def access_key @access_key end |
#name ⇒ String
update.
18 19 20 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_with_account_parameters.rb', line 18 def name @name end |
#suffix ⇒ String
Returns The optional suffix for the storage account.
25 26 27 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_with_account_parameters.rb', line 25 def suffix @suffix end |
Class Method Details
.mapper ⇒ Object
Mapper for UpdateStorageAccountWithAccountParameters class as Ruby Hash. This will be used for serialization/deserialization.
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 66 67 68 69 |
# File 'lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/update_storage_account_with_account_parameters.rb', line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'UpdateStorageAccountWithAccountParameters', type: { name: 'Composite', class_name: 'UpdateStorageAccountWithAccountParameters', model_properties: { name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, 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 |