class Azure::MachineLearning::Mgmt::V2017_01_01::Models::StorageAccount
Access information for a storage account.
Attributes
key[RW]
@return [String] Specifies the key used to access the storage account.
name[RW]
@return [String] Specifies the name of the storage account.
Private Class Methods
mapper()
click to toggle source
Mapper for StorageAccount
class as Ruby Hash. This will be used for serialization/deserialization.
# 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