class Azure::SQL::Mgmt::V2014_04_01::Models::ExportRequest

Export database parameters.

Attributes

administrator_login[RW]

@return [String] The name of the SQL administrator.

administrator_login_password[RW]

@return [String] The password of the SQL administrator.

authentication_type[RW]

@return [AuthenticationType] The authentication type. Possible values include: 'SQL', 'ADPassword'. Default value: 'SQL' .

storage_key[RW]

@return [String] The storage key to use. If storage key type is SharedAccessKey, it must be preceded with a “?.”

storage_key_type[RW]

@return [StorageKeyType] The type of the storage key to use. Possible values include: 'StorageAccessKey', 'SharedAccessKey'

storage_uri[RW]

@return [String] The storage uri to use.

Private Class Methods

mapper() click to toggle source

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

# File lib/2014-04-01/generated/azure_mgmt_sql/models/export_request.rb, line 41
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ExportRequest',
    type: {
      name: 'Composite',
      class_name: 'ExportRequest',
      model_properties: {
        storage_key_type: {
          client_side_validation: true,
          required: true,
          serialized_name: 'storageKeyType',
          type: {
            name: 'Enum',
            module: 'StorageKeyType'
          }
        },
        storage_key: {
          client_side_validation: true,
          required: true,
          serialized_name: 'storageKey',
          type: {
            name: 'String'
          }
        },
        storage_uri: {
          client_side_validation: true,
          required: true,
          serialized_name: 'storageUri',
          type: {
            name: 'String'
          }
        },
        administrator_login: {
          client_side_validation: true,
          required: true,
          serialized_name: 'administratorLogin',
          type: {
            name: 'String'
          }
        },
        administrator_login_password: {
          client_side_validation: true,
          required: true,
          serialized_name: 'administratorLoginPassword',
          type: {
            name: 'String'
          }
        },
        authentication_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'authenticationType',
          default_value: 'SQL',
          type: {
            name: 'Enum',
            module: 'AuthenticationType'
          }
        }
      }
    }
  }
end