MysqlProfile
import type { MysqlProfile } from "https://googleapis.deno.dev/v1/datastream:v1.ts";
MySQL database profile.
interface MysqlProfile {
hostname?: string;
password?: string;
port?: number;
secretManagerStoredPassword?: string;
sslConfig?: MysqlSslConfig;
username?: string;
}§Properties
§
password?: string
[src]Optional. Input only. Password for the MySQL connection. Mutually
exclusive with the secret_manager_stored_password
field.
§
secretManagerStoredPassword?: string
[src]Optional. A reference to a Secret Manager resource name storing the MySQL
connection password. Mutually exclusive with the password
field.
§
sslConfig?: MysqlSslConfig
[src]SSL configuration for the MySQL connection.