class Azure::ContainerRegistry::Mgmt::V2016_06_27_preview::Models::StorageAccountProperties

The properties 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 StorageAccountProperties class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2016-06-27-preview/generated/azure_mgmt_container_registry/models/storage_account_properties.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'StorageAccountProperties',
    type: {
      name: 'Composite',
      class_name: 'StorageAccountProperties',
      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