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

CertVerification

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

A set of ACME challenges you can use to allow Hosting to create an SSL certificate for your domain name before directing traffic to Hosting servers. Use either the DNS or HTTP challenge; it's not necessary to provide both.

interface CertVerification {
readonly dns?: DnsUpdates;
readonly http?: HttpUpdate;
}

§Properties

§
readonly dns?: DnsUpdates
[src]

Output only. A TXT record to add to your DNS records that confirms your intent to let Hosting create an SSL cert for your domain name.

§
readonly http?: HttpUpdate
[src]

Output only. A file to add to your existing, non-Hosting hosting service that confirms your intent to let Hosting create an SSL cert for your domain name.