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

ClientCertificateSettings

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

Settings for custom client certificates.

interface ClientCertificateSettings {
passphrase?: string;
privateKey?: string;
tlsCertificate?: string;
}

§Properties

§
passphrase?: string
[src]

Optional. The name of the SecretManager secret version resource storing the passphrase to decrypt the private key. Should be left unset if the private key is not encrypted. Format: projects/{project}/secrets/{secret}/versions/{version}

§
privateKey?: string
[src]

Required. The name of the SecretManager secret version resource storing the private key encoded in PEM format. Format: projects/{project}/secrets/{secret}/versions/{version}

§
tlsCertificate?: string
[src]

Required. The TLS certificate encoded in PEM format. This string must include the begin header and end footer lines.