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

MysqlSslConfig

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

MySQL SSL configuration information.

interface MysqlSslConfig {
caCertificate?: string;
readonly caCertificateSet?: boolean;
clientCertificate?: string;
readonly clientCertificateSet?: boolean;
clientKey?: string;
readonly clientKeySet?: boolean;
}

§Properties

§
caCertificate?: string
[src]

Input only. PEM-encoded certificate of the CA that signed the source database server's certificate.

§
readonly caCertificateSet?: boolean
[src]

Output only. Indicates whether the ca_certificate field is set.

§
clientCertificate?: string
[src]

Input only. PEM-encoded certificate that will be used by the replica to authenticate against the source database server. If this field is used then the 'client_key' and the 'ca_certificate' fields are mandatory.

§
readonly clientCertificateSet?: boolean
[src]

Output only. Indicates whether the client_certificate field is set.

§
clientKey?: string
[src]

Input only. PEM-encoded private key associated with the Client Certificate. If this field is used then the 'client_certificate' and the 'ca_certificate' fields are mandatory.

§
readonly clientKeySet?: boolean
[src]

Output only. Indicates whether the client_key field is set.