Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MySqlConnectionProfile

import type { MySqlConnectionProfile } from "https://googleapis.deno.dev/v1/datamigration:v1.ts";

Specifies connection parameters required specifically for MySQL databases.

interface MySqlConnectionProfile {
cloudSqlId?: string;
host?: string;
password?: string;
readonly passwordSet?: boolean;
port?: number;
ssl?: SslConfig;
username?: string;
}

§Properties

§
cloudSqlId?: string
[src]

If the source is a Cloud SQL database, use this field to provide the Cloud SQL instance ID of the source.

§
host?: string
[src]

Required. The IP or hostname of the source MySQL database.

§
password?: string
[src]

Required. Input only. The password for the user that Database Migration Service will be using to connect to the database. This field is not returned on request, and the value is encrypted when stored in Database Migration Service.

§
readonly passwordSet?: boolean
[src]

Output only. Indicates If this connection profile password is stored.

§
port?: number
[src]

Required. The network port of the source MySQL database.

§

SSL configuration for the destination to connect to the source database.

§
username?: string
[src]

Required. The username that Database Migration Service will use to connect to the database. The value is encrypted when stored in Database Migration Service.