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

SslConfig

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

SSL configuration.

interface SslConfig {
caSource?: "CA_SOURCE_UNSPECIFIED" | "CA_SOURCE_MANAGED";
sslMode?:
| "SSL_MODE_UNSPECIFIED"
| "SSL_MODE_ALLOW"
| "SSL_MODE_REQUIRE"
| "SSL_MODE_VERIFY_CA"
| "ALLOW_UNENCRYPTED_AND_ENCRYPTED"
| "ENCRYPTED_ONLY";
}

§Properties

§
caSource?: "CA_SOURCE_UNSPECIFIED" | "CA_SOURCE_MANAGED"
[src]

Optional. Certificate Authority (CA) source. Only CA_SOURCE_MANAGED is supported currently, and is the default value.

§
sslMode?: "SSL_MODE_UNSPECIFIED" | "SSL_MODE_ALLOW" | "SSL_MODE_REQUIRE" | "SSL_MODE_VERIFY_CA" | "ALLOW_UNENCRYPTED_AND_ENCRYPTED" | "ENCRYPTED_ONLY"
[src]

Optional. SSL mode. Specifies client-server SSL/TLS connection behavior.