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

WorkstationCluster

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

A workstation cluster resource in the Cloud Workstations API. Defines a group of workstations in a particular region and the VPC network they're attached to.

interface WorkstationCluster {
annotations?: {
[key: string]: string;
}
;
readonly conditions?: Status[];
readonly controlPlaneIp?: string;
readonly createTime?: Date;
readonly degraded?: boolean;
readonly deleteTime?: Date;
displayName?: string;
domainConfig?: DomainConfig;
etag?: string;
labels?: {
[key: string]: string;
}
;
name?: string;
network?: string;
privateClusterConfig?: PrivateClusterConfig;
readonly reconciling?: boolean;
subnetwork?: string;
readonly uid?: string;
readonly updateTime?: Date;
}

§Properties

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

Optional. Client-specified annotations.

§
readonly conditions?: Status[]
[src]

Output only. Status conditions describing the workstation cluster's current state.

§
readonly controlPlaneIp?: string
[src]

Output only. The private IP address of the control plane for this workstation cluster. Workstation VMs need access to this IP address to work with the service, so make sure that your firewall rules allow egress from the workstation VMs to this address.

§
readonly createTime?: Date
[src]

Output only. Time when this workstation cluster was created.

§
readonly degraded?: boolean
[src]

Output only. Whether this workstation cluster is in degraded mode, in which case it may require user action to restore full functionality. Details can be found in conditions.

§
readonly deleteTime?: Date
[src]

Output only. Time when this workstation cluster was soft-deleted.

§
displayName?: string
[src]

Optional. Human-readable name for this workstation cluster.

§
domainConfig?: DomainConfig
[src]

Optional. Configuration options for a custom domain.

§
etag?: string
[src]

Optional. Checksum computed by the server. May be sent on update and delete requests to make sure that the client has an up-to-date value before proceeding.

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

Optional. Labels that are applied to the workstation cluster and that are also propagated to the underlying Compute Engine resources.

§
name?: string
[src]

Identifier. Full name of this workstation cluster.

§
network?: string
[src]

Immutable. Name of the Compute Engine network in which instances associated with this workstation cluster will be created.

§
privateClusterConfig?: PrivateClusterConfig
[src]

Optional. Configuration for private workstation cluster.

§
readonly reconciling?: boolean
[src]

Output only. Indicates whether this workstation cluster is currently being updated to match its intended state.

§
subnetwork?: string
[src]

Immutable. Name of the Compute Engine subnetwork in which instances associated with this workstation cluster will be created. Must be part of the subnetwork specified for this workstation cluster.

§
readonly uid?: string
[src]

Output only. A system-assigned unique identifier for this workstation cluster.

§
readonly updateTime?: Date
[src]

Output only. Time when this workstation cluster was most recently updated.