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

BackendServiceTlsSettingsSubjectAltName

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

A Subject Alternative Name that the load balancer matches against the SAN field in the TLS certificate provided by the backend, specified as either a DNS name or a URI, in accordance with RFC 5280 4.2.1.6

interface BackendServiceTlsSettingsSubjectAltName {
dnsName?: string;
uniformResourceIdentifier?: string;
}

§Properties

§
dnsName?: string
[src]

The SAN specified as a DNS Name.

§
uniformResourceIdentifier?: string
[src]

The SAN specified as a URI.