import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Create an environment resource. * Auto-naming is currently not supported for this resource. */ export declare class Environment extends pulumi.CustomResource { /** * Get an existing Environment 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): Environment; /** * Returns true if the given object is an instance of Environment. 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 Environment; /** * Environment creation time. */ readonly createTime: pulumi.Output; /** * Optional. Description of the environment. */ readonly description: pulumi.Output; /** * Optional. User friendly display name. */ readonly displayName: pulumi.Output; /** * URI Endpoints to access sessions associated with the Environment. */ readonly endpoints: pulumi.Output; /** * Required. Environment identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the lake. */ readonly environmentId: pulumi.Output; /** * Infrastructure specification for the Environment. */ readonly infrastructureSpec: pulumi.Output; /** * Optional. User defined labels for the environment. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly lakeId: pulumi.Output; readonly location: pulumi.Output; /** * The relative resource name of the environment, of the form: projects/{project_id}/locations/{location_id}/lakes/{lake_id}/environment/{environment_id} */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Optional. Configuration for sessions created for this environment. */ readonly sessionSpec: pulumi.Output; /** * Status of sessions created for this environment. */ readonly sessionStatus: pulumi.Output; /** * Current state of the environment. */ readonly state: pulumi.Output; /** * System generated globally unique ID for the environment. This ID will be different if the environment is deleted and re-created with the same name. */ readonly uid: pulumi.Output; /** * The time when the environment was last updated. */ readonly updateTime: pulumi.Output; /** * Create a Environment 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: EnvironmentArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Environment resource. */ export interface EnvironmentArgs { /** * Optional. Description of the environment. */ description?: pulumi.Input; /** * Optional. User friendly display name. */ displayName?: pulumi.Input; /** * Required. Environment identifier. * Must contain only lowercase letters, numbers and hyphens. * Must start with a letter. * Must be between 1-63 characters. * Must end with a number or a letter. * Must be unique within the lake. */ environmentId: pulumi.Input; /** * Infrastructure specification for the Environment. */ infrastructureSpec: pulumi.Input; /** * Optional. User defined labels for the environment. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; lakeId: pulumi.Input; location?: pulumi.Input; project?: pulumi.Input; /** * Optional. Configuration for sessions created for this environment. */ sessionSpec?: pulumi.Input; }