OnPremisesConfiguration
import type { OnPremisesConfiguration } from "https://googleapis.deno.dev/v1/sqladmin:v1.ts";
On-premises instance configuration.
interface OnPremisesConfiguration {
caCertificate?: string;
clientCertificate?: string;
clientKey?: string;
dumpFilePath?: string;
hostPort?: string;
kind?: string;
password?: string;
selectedObjects?: SelectedObjects[];
sourceInstance?: InstanceReference;
sslOption?:
| "SSL_OPTION_UNSPECIFIED"
| "DISABLE"
| "REQUIRE"
| "VERIFY_CA";
username?: string;
}§Properties
§
clientKey?: string
[src]PEM representation of the replica's private key. The corresponding public key is encoded in the client's certificate.
§
selectedObjects?: SelectedObjects[]
[src]Optional. A list of objects that the user selects for replication from an external source instance.
§
sourceInstance?: InstanceReference
[src]The reference to Cloud SQL instance if the source is Cloud SQL.