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

MySqlReplicaConfiguration

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

Read-replica configuration specific to MySQL databases.

interface MySqlReplicaConfiguration {
caCertificate?: string;
clientCertificate?: string;
clientKey?: string;
connectRetryInterval?: number;
dumpFilePath?: string;
kind?: string;
masterHeartbeatPeriod?: bigint;
password?: string;
sslCipher?: string;
username?: string;
verifyServerCertificate?: boolean;
}

§Properties

§
caCertificate?: string
[src]

PEM representation of the trusted CA's x509 certificate.

§
clientCertificate?: string
[src]

PEM representation of the replica's x509 certificate.

§
clientKey?: string
[src]

PEM representation of the replica's private key. The corresponsing public key is encoded in the client's certificate.

§
connectRetryInterval?: number
[src]

Seconds to wait between connect retries. MySQL's default is 60 seconds.

§
dumpFilePath?: string
[src]

Path to a SQL dump file in Google Cloud Storage from which the replica instance is to be created. The URI is in the form gs://bucketName/fileName. Compressed gzip files (.gz) are also supported. Dumps have the binlog co-ordinates from which replication begins. This can be accomplished by setting --master-data to 1 when using mysqldump.

§
kind?: string
[src]

This is always sql#mysqlReplicaConfiguration.

§
masterHeartbeatPeriod?: bigint
[src]

Interval in milliseconds between replication heartbeats.

§
password?: string
[src]

The password for the replication connection.

§
sslCipher?: string
[src]

A list of permissible ciphers to use for SSL encryption.

§
username?: string
[src]

The username for the replication connection.

§
verifyServerCertificate?: boolean
[src]

Whether or not to check the primary instance's Common Name value in the certificate that it sends during the SSL handshake.