ServerAndClientVerification
import type { ServerAndClientVerification } from "https://googleapis.deno.dev/v1/datastream:v1.ts";
Message represents the option where Datastream will enforce the encryption and authenticate the server identity as well as the client identity. ca_certificate, client_certificate and client_key must be set if user selects this option.
interface ServerAndClientVerification {
caCertificate?: string;
clientCertificate?: string;
clientKey?: string;
}§Properties
§
clientCertificate?: string
[src]Required. Input only. PEM-encoded certificate used by the source database to authenticate the client identity (i.e., the Datastream's identity). This certificate is signed by either a root certificate trusted by the server or one or more intermediate certificates (which is stored with the leaf certificate) to link the this certificate to the trusted root certificate.