import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a new workstation cluster. */ export declare class WorkstationCluster extends pulumi.CustomResource { /** * Get an existing WorkstationCluster 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): WorkstationCluster; /** * Returns true if the given object is an instance of WorkstationCluster. 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 WorkstationCluster; /** * Optional. Client-specified annotations. */ readonly annotations: pulumi.Output<{ [key: string]: string; }>; /** * Status conditions describing the workstation cluster's current state. */ readonly conditions: pulumi.Output; /** * 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 controlPlaneIp: pulumi.Output; /** * Time when this workstation cluster was created. */ readonly createTime: pulumi.Output; /** * 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 degraded: pulumi.Output; /** * Time when this workstation cluster was soft-deleted. */ readonly deleteTime: pulumi.Output; /** * Optional. Human-readable name for this workstation cluster. */ readonly displayName: pulumi.Output; /** * Optional. Configuration options for a custom domain. */ readonly domainConfig: pulumi.Output; /** * 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; /** * Optional. [Labels](https://cloud.google.com/workstations/docs/label-resources) that are applied to the workstation cluster 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 cluster. */ readonly name: pulumi.Output; /** * Immutable. Name of the Compute Engine network in which instances associated with this workstation cluster will be created. */ readonly network: pulumi.Output; /** * Optional. Configuration for private workstation cluster. */ readonly privateClusterConfig: pulumi.Output; readonly project: pulumi.Output; /** * Indicates whether this workstation cluster is currently being updated to match its intended state. */ readonly reconciling: pulumi.Output; /** * 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 subnetwork: pulumi.Output; /** * A system-assigned unique identifier for this workstation cluster. */ readonly uid: pulumi.Output; /** * Time when this workstation cluster was most recently updated. */ readonly updateTime: pulumi.Output; /** * Required. ID to use for the workstation cluster. */ readonly workstationClusterId: pulumi.Output; /** * Create a WorkstationCluster 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: WorkstationClusterArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a WorkstationCluster resource. */ export interface WorkstationClusterArgs { /** * Optional. Client-specified annotations. */ annotations?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Optional. Human-readable name for this workstation cluster. */ displayName?: pulumi.Input; /** * Optional. Configuration options for a custom domain. */ domainConfig?: 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 cluster 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 cluster. */ name?: pulumi.Input; /** * Immutable. Name of the Compute Engine network in which instances associated with this workstation cluster will be created. */ network?: pulumi.Input; /** * Optional. Configuration for private workstation cluster. */ privateClusterConfig?: pulumi.Input; project?: pulumi.Input; /** * 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. */ subnetwork?: pulumi.Input; /** * Required. ID to use for the workstation cluster. */ workstationClusterId: pulumi.Input; }