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

Domain

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

A domain name that is associated with a backend.

interface Domain {
annotations?: {
[key: string]: string;
}
;
readonly createTime?: Date;
readonly customDomainStatus?: CustomDomainStatus;
readonly deleteTime?: Date;
disabled?: boolean;
displayName?: string;
readonly etag?: string;
labels?: {
[key: string]: string;
}
;
name?: string;
readonly reconciling?: boolean;
readonly type?: "TYPE_UNSPECIFIED" | "DEFAULT" | "CUSTOM";
readonly uid?: string;
readonly updateTime?: Date;
}

§Properties

§
annotations?: {
[key: string]: string;
}
[src]

Optional. Annotations as key value pairs.

§
readonly createTime?: Date
[src]

Output only. Time at which the domain was created.

§
readonly customDomainStatus?: CustomDomainStatus
[src]

Output only. Represents the state and configuration of a CUSTOM type domain. It is only present on Domains of that type.

§
readonly deleteTime?: Date
[src]

Output only. Time at which the domain was deleted.

§
disabled?: boolean
[src]

Optional. Whether the domain is disabled. Defaults to false.

§
displayName?: string
[src]

Optional. Mutable human-readable name for the domain. 63 character limit. e.g. prod domain.

§
readonly etag?: string
[src]

Output only. Server-computed checksum based on other values; may be sent on update or delete to ensure operation is done on expected resource.

§
labels?: {
[key: string]: string;
}
[src]

Optional. Labels as key value pairs.

§
name?: string
[src]

Identifier. The resource name of the domain, e.g. /projects/p/locations/l/backends/b/domains/foo.com

§
readonly reconciling?: boolean
[src]

Output only. A field that, if true, indicates that the build has an ongoing LRO.

§

Optional. The serving behavior of the domain. If specified, the domain will serve content other than its backend's live content.

§
readonly type?: "TYPE_UNSPECIFIED" | "DEFAULT" | "CUSTOM"
[src]

Output only. The type of the domain.

§
readonly uid?: string
[src]

Output only. System-assigned, unique identifier.

§
readonly updateTime?: Date
[src]

Output only. Time at which the domain was last updated.