import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a new Environment. * 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; /** * Use a container image to start the notebook instance. */ readonly containerImage: pulumi.Output; /** * The time at which this environment was created. */ readonly createTime: pulumi.Output; /** * A brief description of this environment. */ readonly description: pulumi.Output; /** * Display name of this environment for the UI. */ readonly displayName: pulumi.Output; /** * Required. User-defined unique ID of this environment. The `environment_id` must be 1 to 63 characters long and contain only lowercase letters, numeric characters, and dashes. The first character must be a lowercase letter and the last character cannot be a dash. */ readonly environmentId: pulumi.Output; readonly location: pulumi.Output; /** * Name of this environment. Format: `projects/{project_id}/locations/{location}/environments/{environment_id}` */ readonly name: pulumi.Output; /** * Path to a Bash script that automatically runs after a notebook instance fully boots up. The path must be a URL or Cloud Storage path. Example: `"gs://path-to-file/file-name"` */ readonly postStartupScript: pulumi.Output; readonly project: pulumi.Output; /** * Use a Compute Engine VM image to start the notebook instance. */ readonly vmImage: 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 { /** * Use a container image to start the notebook instance. */ containerImage?: pulumi.Input; /** * A brief description of this environment. */ description?: pulumi.Input; /** * Display name of this environment for the UI. */ displayName?: pulumi.Input; /** * Required. User-defined unique ID of this environment. The `environment_id` must be 1 to 63 characters long and contain only lowercase letters, numeric characters, and dashes. The first character must be a lowercase letter and the last character cannot be a dash. */ environmentId: pulumi.Input; location?: pulumi.Input; /** * Path to a Bash script that automatically runs after a notebook instance fully boots up. The path must be a URL or Cloud Storage path. Example: `"gs://path-to-file/file-name"` */ postStartupScript?: pulumi.Input; project?: pulumi.Input; /** * Use a Compute Engine VM image to start the notebook instance. */ vmImage?: pulumi.Input; }