CustomDomainOperationMetadata
import type { CustomDomainOperationMetadata } from "https://googleapis.deno.dev/v1/firebaseapphosting:v1.ts";
Additional metadata for operations on custom domains.
interface CustomDomainOperationMetadata {
readonly certState?:
| "CERT_STATE_UNSPECIFIED"
| "CERT_PREPARING"
| "CERT_VALIDATING"
| "CERT_PROPAGATING"
| "CERT_ACTIVE"
| "CERT_EXPIRING_SOON"
| "CERT_EXPIRED";
readonly hostState?:
| "HOST_STATE_UNSPECIFIED"
| "HOST_UNHOSTED"
| "HOST_UNREACHABLE"
| "HOST_NON_FAH"
| "HOST_CONFLICT"
| "HOST_WRONG_SHARD"
| "HOST_ACTIVE";
readonly issues?: Status[];
readonly liveMigrationSteps?: LiveMigrationStep[];
readonly ownershipState?:
| "OWNERSHIP_STATE_UNSPECIFIED"
| "OWNERSHIP_MISSING"
| "OWNERSHIP_UNREACHABLE"
| "OWNERSHIP_MISMATCH"
| "OWNERSHIP_CONFLICT"
| "OWNERSHIP_PENDING"
| "OWNERSHIP_ACTIVE";
readonly quickSetupUpdates?: DnsUpdates[];
}§Properties
§
readonly certState?: "CERT_STATE_UNSPECIFIED" | "CERT_PREPARING" | "CERT_VALIDATING" | "CERT_PROPAGATING" | "CERT_ACTIVE" | "CERT_EXPIRING_SOON" | "CERT_EXPIRED"
[src]Output only. The custom domain's CertState
, which must be CERT_ACTIVE
for the create operations to complete.
§
readonly hostState?: "HOST_STATE_UNSPECIFIED" | "HOST_UNHOSTED" | "HOST_UNREACHABLE" | "HOST_NON_FAH" | "HOST_CONFLICT" | "HOST_WRONG_SHARD" | "HOST_ACTIVE"
[src]Output only. The custom domain's HostState
, which must be HOST_ACTIVE
for Create operations of the domain name this CustomDomain
refers toto
complete.
§
readonly liveMigrationSteps?: LiveMigrationStep[]
[src]Output only. A list of steps that the user must complete to migrate their domain to App Hosting without downtime.
§
readonly ownershipState?: "OWNERSHIP_STATE_UNSPECIFIED" | "OWNERSHIP_MISSING" | "OWNERSHIP_UNREACHABLE" | "OWNERSHIP_MISMATCH" | "OWNERSHIP_CONFLICT" | "OWNERSHIP_PENDING" | "OWNERSHIP_ACTIVE"
[src]Output only. The custom domain's OwnershipState
, which must be
OWNERSHIP_ACTIVE
for the create operations to complete.
§
readonly quickSetupUpdates?: DnsUpdates[]
[src]Output only. A set of DNS record updates to perform, to allow App Hosting to serve secure content on the domain.