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/managedidentities:v1.ts";

Represents a managed Microsoft Active Directory domain. If the domain is being changed, it will be placed into the UPDATING state, which indicates that the resource is being reconciled. At this point, Get will reflect an intermediate state.

interface Domain {
admin?: string;
auditLogsEnabled?: boolean;
authorizedNetworks?: string[];
readonly createTime?: Date;
readonly fqdn?: string;
labels?: {
[key: string]: string;
}
;
locations?: string[];
name?: string;
reservedIpRange?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "READY"
| "UPDATING"
| "DELETING"
| "REPAIRING"
| "PERFORMING_MAINTENANCE"
| "UNAVAILABLE";
readonly statusMessage?: string;
readonly trusts?: Trust[];
readonly updateTime?: Date;
}

§Properties

§
admin?: string
[src]

Optional. The name of delegated administrator account used to perform Active Directory operations. If not specified, setupadmin will be used.

§
auditLogsEnabled?: boolean
[src]

Optional. Configuration for audit logs. True if audit logs are enabled, else false. Default is audit logs disabled.

§
authorizedNetworks?: string[]
[src]

Optional. The full names of the Google Compute Engine networks the domain instance is connected to. Networks can be added using UpdateDomain. The domain is only available on networks listed in authorized_networks. If CIDR subnets overlap between networks, domain creation will fail.

§
readonly createTime?: Date
[src]

Output only. The time the instance was created.

§
readonly fqdn?: string
[src]

Output only. The fully-qualified domain name of the exposed domain used by clients to connect to the service. Similar to what would be chosen for an Active Directory set up on an internal network.

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

Optional. Resource labels that can contain user-provided metadata.

§
locations?: string[]
[src]

Required. Locations where domain needs to be provisioned. regions e.g. us-west1 or us-east4 Service supports up to 4 locations at once. Each location will use a /26 block.

§
name?: string
[src]

Required. The unique name of the domain using the form: projects/{project_id}/locations/global/domains/{domain_name}.

§
reservedIpRange?: string
[src]

Required. The CIDR range of internal addresses that are reserved for this domain. Reserved networks must be /24 or larger. Ranges must be unique and non-overlapping with existing subnets in [Domain].[authorized_networks].

§
readonly state?: "STATE_UNSPECIFIED" | "CREATING" | "READY" | "UPDATING" | "DELETING" | "REPAIRING" | "PERFORMING_MAINTENANCE" | "UNAVAILABLE"
[src]

Output only. The current state of this domain.

§
readonly statusMessage?: string
[src]

Output only. Additional information about the current status of this domain, if available.

§
readonly trusts?: Trust[]
[src]

Output only. The current trusts associated with the domain.

§
readonly updateTime?: Date
[src]

Output only. The last update time.