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;
}