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

Workstation

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

A single instance of a developer workstation with its own persistent storage.

interface Workstation {
annotations?: {
[key: string]: string;
}
;
readonly createTime?: Date;
readonly deleteTime?: Date;
displayName?: string;
env?: {
[key: string]: string;
}
;
etag?: string;
readonly host?: string;
readonly kmsKey?: string;
labels?: {
[key: string]: string;
}
;
name?: string;
readonly reconciling?: boolean;
readonly startTime?: Date;
readonly state?:
| "STATE_UNSPECIFIED"
| "STATE_STARTING"
| "STATE_RUNNING"
| "STATE_STOPPING"
| "STATE_STOPPED";
readonly uid?: string;
readonly updateTime?: Date;
}

§Properties

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

Optional. Client-specified annotations.

§
readonly createTime?: Date
[src]

Output only. Time when this workstation was created.

§
readonly deleteTime?: Date
[src]

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

§
displayName?: string
[src]

Optional. Human-readable name for this workstation.

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

Optional. Environment variables passed to the workstation container's entrypoint.

§
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.

§
readonly host?: string
[src]

Output only. Host to which clients can send HTTPS traffic that will be received by the workstation. Authorized traffic will be received to the workstation as HTTP on port 80. To send traffic to a different port, clients may prefix the host with the destination port in the format {port}-{host}.

§
readonly kmsKey?: string
[src]

Output only. The name of the Google Cloud KMS encryption key used to encrypt this workstation. The KMS key can only be configured in the WorkstationConfig. The expected format is projects/*\/locations/*\/keyRings/*\/cryptoKeys/*.

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

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

§
name?: string
[src]

Identifier. Full name of this workstation.

§
readonly reconciling?: boolean
[src]

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

§
readonly startTime?: Date
[src]

Output only. Time when this workstation was most recently successfully started, regardless of the workstation's initial state.

§
readonly state?: "STATE_UNSPECIFIED" | "STATE_STARTING" | "STATE_RUNNING" | "STATE_STOPPING" | "STATE_STOPPED"
[src]

Output only. Current state of the workstation.

§
readonly uid?: string
[src]

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

§
readonly updateTime?: Date
[src]

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