class Azure::Web::Mgmt::V2016_08_01::Models::MigrateMySqlRequest

MySQL migration request.

Attributes

connection_string[RW]

@return [String] Connection string to the remote MySQL database.

migration_type[RW]

@return [MySqlMigrationType] The type of migration operation to be done. Possible values include: 'LocalToRemote', 'RemoteToLocal'

Private Class Methods

mapper() click to toggle source

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

# File lib/2016-08-01/generated/azure_mgmt_web/models/migrate_my_sql_request.rb, line 27
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'MigrateMySqlRequest',
    type: {
      name: 'Composite',
      class_name: 'MigrateMySqlRequest',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        kind: {
          client_side_validation: true,
          required: false,
          serialized_name: 'kind',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        connection_string: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.connectionString',
          type: {
            name: 'String'
          }
        },
        migration_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.migrationType',
          type: {
            name: 'Enum',
            module: 'MySqlMigrationType'
          }
        }
      }
    }
  }
end