class Azure::DataBox::Mgmt::V2018_01_01::Models::AccountCredentialDetails

Credential details of the account.

Attributes

account_connection_string[RW]

@return [String] Connection string of the account endpoint to use the account as a storage endpoint on the device.

account_name[RW]

@return [String] Name of the account.

share_credential_details[RW]

@return [Array<ShareCredentialDetails>] Per share level unencrypted access credentials.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-01-01/generated/azure_mgmt_databox/models/account_credential_details.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AccountCredentialDetails',
    type: {
      name: 'Composite',
      class_name: 'AccountCredentialDetails',
      model_properties: {
        account_name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'accountName',
          type: {
            name: 'String'
          }
        },
        account_connection_string: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'accountConnectionString',
          type: {
            name: 'String'
          }
        },
        share_credential_details: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'shareCredentialDetails',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ShareCredentialDetailsElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ShareCredentialDetails'
                }
            }
          }
        }
      }
    }
  }
end