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

Peering

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

Represents a Managed Service for Microsoft Active Directory Peering.

interface Peering {
authorizedNetwork?: string;
readonly createTime?: Date;
domainResource?: string;
labels?: {
[key: string]: string;
}
;
readonly name?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "CONNECTED"
| "DISCONNECTED"
| "DELETING";
readonly statusMessage?: string;
readonly updateTime?: Date;
}

§Properties

§
authorizedNetwork?: string
[src]

Required. The full names of the Google Compute Engine networks to which the instance is connected. Caller needs to make sure that CIDR subnets do not overlap between networks, else peering creation will fail.

§
readonly createTime?: Date
[src]

Output only. The time the instance was created.

§
domainResource?: string
[src]

Required. Full domain resource path for the Managed AD Domain involved in peering. The resource path should be in the form: projects/{project_id}/locations/global/domains/{domain_name}

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

Optional. Resource labels to represent user-provided metadata.

§
readonly name?: string
[src]

Output only. Unique name of the peering in this scope including projects and location using the form: projects/{project_id}/locations/global/peerings/{peering_id}.

§
readonly state?: "STATE_UNSPECIFIED" | "CREATING" | "CONNECTED" | "DISCONNECTED" | "DELETING"
[src]

Output only. The current state of this Peering.

§
readonly statusMessage?: string
[src]

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

§
readonly updateTime?: Date
[src]

Output only. Last update time.