class Azure::DataBoxEdge::Mgmt::V2019_08_01::Models::AzureContainerInfo

Azure container mapping of the endpoint.

Attributes

container_name[RW]

@return [String] Container name (Based on the data format specified, this represents the name of Azure Files/Page blob/Block blob).

data_format[RW]

@return [AzureContainerDataFormat] Storage format used for the file represented by the share. Possible values include: 'BlockBlob', 'PageBlob', 'AzureFile'

storage_account_credential_id[RW]

@return [String] ID of the storage account credential used to access storage.

Private Class Methods

mapper() click to toggle source

Mapper for AzureContainerInfo class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2019-08-01/generated/azure_mgmt_databoxedge/models/azure_container_info.rb, line 33
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AzureContainerInfo',
    type: {
      name: 'Composite',
      class_name: 'AzureContainerInfo',
      model_properties: {
        storage_account_credential_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'storageAccountCredentialId',
          type: {
            name: 'String'
          }
        },
        container_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'containerName',
          type: {
            name: 'String'
          }
        },
        data_format: {
          client_side_validation: true,
          required: true,
          serialized_name: 'dataFormat',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end