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

DemoteMasterMySqlReplicaConfiguration

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

Read-replica configuration specific to MySQL databases.

interface DemoteMasterMySqlReplicaConfiguration {
caCertificate?: string;
clientCertificate?: string;
clientKey?: string;
kind?: string;
password?: string;
username?: string;
}

§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. The format of the replica's private key can be either PKCS #1 or PKCS #8.

§
kind?: string
[src]

This is always sql#demoteMasterMysqlReplicaConfiguration.

§
password?: string
[src]

The password for the replication connection.

§
username?: string
[src]

The username for the replication connection.