class Azure::DataLakeAnalytics::Mgmt::V2016_11_01::Models::AddStorageAccountWithAccountParameters
The parameters used to add a new Azure
Storage account while creating a new Data Lake Analytics account.
Attributes
access_key[RW]
@return [String] The access key associated with this Azure
Storage account that will be used to connect to it.
name[RW]
@return [String] The unique name of the Azure
Storage account to add.
suffix[RW]
@return [String] The optional suffix for the storage account.
Private Class Methods
mapper()
click to toggle source
Mapper for AddStorageAccountWithAccountParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-11-01/generated/azure_mgmt_datalake_analytics/models/add_storage_account_with_account_parameters.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AddStorageAccountWithAccountParameters', type: { name: 'Composite', class_name: 'AddStorageAccountWithAccountParameters', model_properties: { name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, access_key: { client_side_validation: true, required: true, serialized_name: 'properties.accessKey', type: { name: 'String' } }, suffix: { client_side_validation: true, required: false, serialized_name: 'properties.suffix', type: { name: 'String' } } } } } end