import * as pulumi from "@pulumi/pulumi"; /** * Creates a new workstation. */ export declare class Workstation extends pulumi.CustomResource { /** * Get an existing Workstation resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Workstation; /** * Returns true if the given object is an instance of Workstation. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Workstation; /** * Optional. Client-specified annotations. */ readonly annotations: pulumi.Output<{ [key: string]: string; }>; /** * Time when this workstation was created. */ readonly createTime: pulumi.Output; /** * Time when this workstation was soft-deleted. */ readonly deleteTime: pulumi.Output; /** * Optional. Human-readable name for this workstation. */ readonly displayName: pulumi.Output; /** * Optional. Environment variables passed to the workstation container's entrypoint. */ readonly env: pulumi.Output<{ [key: string]: string; }>; /** * 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 etag: pulumi.Output; /** * 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 host: pulumi.Output; /** * Optional. [Labels](https://cloud.google.com/workstations/docs/label-resources) that are applied to the workstation and that are also propagated to the underlying Compute Engine resources. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * Identifier. Full name of this workstation. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Indicates whether this workstation is currently being updated to match its intended state. */ readonly reconciling: pulumi.Output; /** * Time when this workstation was most recently successfully started, regardless of the workstation's initial state. */ readonly startTime: pulumi.Output; /** * Current state of the workstation. */ readonly state: pulumi.Output; /** * A system-assigned unique identifier for this workstation. */ readonly uid: pulumi.Output; /** * Time when this workstation was most recently updated. */ readonly updateTime: pulumi.Output; readonly workstationClusterId: pulumi.Output; readonly workstationConfigId: pulumi.Output; /** * Required. ID to use for the workstation. */ readonly workstationId: pulumi.Output; /** * Create a Workstation resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: WorkstationArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Workstation resource. */ export interface WorkstationArgs { /** * Optional. Client-specified annotations. */ annotations?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Optional. Human-readable name for this workstation. */ displayName?: pulumi.Input; /** * Optional. Environment variables passed to the workstation container's entrypoint. */ env?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * 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. */ etag?: pulumi.Input; /** * Optional. [Labels](https://cloud.google.com/workstations/docs/label-resources) that are applied to the workstation and that are also propagated to the underlying Compute Engine resources. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * Identifier. Full name of this workstation. */ name?: pulumi.Input; project?: pulumi.Input; workstationClusterId: pulumi.Input; workstationConfigId: pulumi.Input; /** * Required. ID to use for the workstation. */ workstationId: pulumi.Input; }