DnsUpdates
import type { DnsUpdates } from "https://googleapis.deno.dev/v1/firebaseapphosting:v1.ts";
A set of DNS record updates that you should make to allow App Hosting to serve secure content in response to requests against your domain. These updates present the current state of your domain's and related subdomains' DNS records when App Hosting last queried them, and the desired set of records that App Hosting needs to see before your custom domain can be fully active.
interface DnsUpdates {
readonly checkTime?: Date;
readonly desired?: DnsRecordSet[];
readonly discovered?: DnsRecordSet[];
readonly domainName?: string;
}§Properties
§
readonly checkTime?: Date
[src]Output only. The last time App Hosting checked your custom domain's DNS records.
§
readonly desired?: DnsRecordSet[]
[src]Output only. The set of DNS records App Hosting needs in order to be able to serve secure content on the domain.
§
readonly discovered?: DnsRecordSet[]
[src]Output only. The set of DNS records App Hosting discovered when inspecting a domain.