class Azure::ContainerRegistry::Mgmt::V2017_03_01::Models::StorageAccountParameters
The parameters of a storage account for a container registry.
Attributes
access_key[RW]
@return [String] The access key to the storage account.
name[RW]
@return [String] The name of the storage account.
Public Class Methods
mapper()
click to toggle source
Mapper for StorageAccountParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-03-01/generated/azure_mgmt_container_registry/models/storage_account_parameters.rb, line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'StorageAccountParameters', type: { name: 'Composite', class_name: 'StorageAccountParameters', 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: 'accessKey', type: { name: 'String' } } } } } end