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

Trust

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

Represents a relationship between two domains. This allows a controller in one domain to authenticate a user in another domain. If the trust 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 Trust {
readonly createTime?: Date;
readonly lastTrustHeartbeatTime?: Date;
selectiveAuthentication?: boolean;
readonly state?:
| "STATE_UNSPECIFIED"
| "CREATING"
| "UPDATING"
| "DELETING"
| "CONNECTED"
| "DISCONNECTED";
readonly stateDescription?: string;
targetDnsIpAddresses?: string[];
targetDomainName?: string;
trustDirection?:
| "TRUST_DIRECTION_UNSPECIFIED"
| "INBOUND"
| "OUTBOUND"
| "BIDIRECTIONAL";
trustHandshakeSecret?: string;
trustType?: "TRUST_TYPE_UNSPECIFIED" | "FOREST" | "EXTERNAL";
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The time the instance was created.

§
readonly lastTrustHeartbeatTime?: Date
[src]

Output only. The last heartbeat time when the trust was known to be connected.

§
selectiveAuthentication?: boolean
[src]

Optional. The trust authentication type, which decides whether the trusted side has forest/domain wide access or selective access to an approved set of resources.

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

Output only. The current state of the trust.

§
readonly stateDescription?: string
[src]

Output only. Additional information about the current state of the trust, if available.

§
targetDnsIpAddresses?: string[]
[src]

Required. The target DNS server IP addresses which can resolve the remote domain involved in the trust.

§
targetDomainName?: string
[src]

Required. The fully qualified target domain name which will be in trust with the current domain.

§
trustDirection?: "TRUST_DIRECTION_UNSPECIFIED" | "INBOUND" | "OUTBOUND" | "BIDIRECTIONAL"
[src]

Required. The trust direction, which decides if the current domain is trusted, trusting, or both.

§
trustHandshakeSecret?: string
[src]

Required. The trust secret used for the handshake with the target domain. This will not be stored.

§
trustType?: "TRUST_TYPE_UNSPECIFIED" | "FOREST" | "EXTERNAL"
[src]

Required. The type of trust represented by the trust resource.

§
readonly updateTime?: Date
[src]

Output only. The last update time.