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

GoogleCloudDialogflowCxV3AgentClientCertificateSettings

import type { GoogleCloudDialogflowCxV3AgentClientCertificateSettings } from "https://googleapis.deno.dev/v1/dialogflow:v3.ts";

Settings for custom client certificates.

interface GoogleCloudDialogflowCxV3AgentClientCertificateSettings {
passphrase?: string;
privateKey?: string;
sslCertificate?: string;
}

§Properties

§
passphrase?: string
[src]

Optional. The name of the SecretManager secret version resource storing the passphrase. 'passphrase' 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}

§
sslCertificate?: string
[src]

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