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

ManagementServer

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

ManagementServer describes a single BackupDR ManagementServer instance.

interface ManagementServer {
readonly baProxyUri?: string[];
readonly createTime?: Date;
description?: string;
etag?: string;
labels?: {
[key: string]: string;
}
;
readonly managementUri?: ManagementURI;
readonly name?: string;
networks?: NetworkConfig[];
readonly oauth2ClientId?: string;
readonly state?:
| "INSTANCE_STATE_UNSPECIFIED"
| "CREATING"
| "READY"
| "UPDATING"
| "DELETING"
| "REPAIRING"
| "MAINTENANCE"
| "ERROR";
type?: "INSTANCE_TYPE_UNSPECIFIED" | "BACKUP_RESTORE";
readonly updateTime?: Date;
readonly workforceIdentityBasedManagementUri?: WorkforceIdentityBasedManagementURI;
readonly workforceIdentityBasedOauth2ClientId?: WorkforceIdentityBasedOAuth2ClientID;
}

§Properties

§
readonly baProxyUri?: string[]
[src]

Output only. The hostname or ip address of the exposed AGM endpoints, used by BAs to connect to BA proxy.

§
readonly createTime?: Date
[src]

Output only. The time when the instance was created.

§
description?: string
[src]

Optional. The description of the ManagementServer instance (2048 characters or less).

§
etag?: string
[src]

Optional. Server specified ETag for the ManagementServer resource to prevent simultaneous updates from overwiting each other.

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

Optional. Resource labels to represent user provided metadata. Labels currently defined: 1. migrate_from_go= If set to true, the MS is created in migration ready mode.

§
readonly managementUri?: ManagementURI
[src]

Output only. The hostname or ip address of the exposed AGM endpoints, used by clients to connect to AGM/RD graphical user interface and APIs.

§
readonly name?: string
[src]

Output only. Identifier. The resource name.

§
networks?: NetworkConfig[]
[src]

Required. VPC networks to which the ManagementServer instance is connected. For this version, only a single network is supported.

§
readonly oauth2ClientId?: string
[src]

Output only. The OAuth 2.0 client id is required to make API calls to the BackupDR instance API of this ManagementServer. This is the value that should be provided in the ‘aud’ field of the OIDC ID Token (see openid specification https://openid.net/specs/openid-connect-core-1_0.html#IDToken).

§
readonly state?: "INSTANCE_STATE_UNSPECIFIED" | "CREATING" | "READY" | "UPDATING" | "DELETING" | "REPAIRING" | "MAINTENANCE" | "ERROR"
[src]

Output only. The ManagementServer state.

§
type?: "INSTANCE_TYPE_UNSPECIFIED" | "BACKUP_RESTORE"
[src]

Optional. The type of the ManagementServer resource.

§
readonly updateTime?: Date
[src]

Output only. The time when the instance was updated.

§
readonly workforceIdentityBasedManagementUri?: WorkforceIdentityBasedManagementURI
[src]

Output only. The hostnames of the exposed AGM endpoints for both types of user i.e. 1p and 3p, used to connect AGM/RM UI.

§
readonly workforceIdentityBasedOauth2ClientId?: WorkforceIdentityBasedOAuth2ClientID
[src]

Output only. The OAuth client IDs for both types of user i.e. 1p and 3p.