import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a new Runtime in a given project and location. * Auto-naming is currently not supported for this resource. */ export declare class Runtime extends pulumi.CustomResource { /** * Get an existing Runtime 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): Runtime; /** * Returns true if the given object is an instance of Runtime. 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 Runtime; /** * The config settings for accessing runtime. */ readonly accessConfig: pulumi.Output; /** * Runtime creation time. */ readonly createTime: pulumi.Output; /** * Runtime health_state. */ readonly healthState: pulumi.Output; /** * Optional. The labels to associate with this Managed Notebook or Runtime. Label **keys** must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a cluster. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * Contains Runtime daemon metrics such as Service status and JupyterLab stats. */ readonly metrics: pulumi.Output; /** * Bool indicating whether this notebook has been migrated to a Workbench Instance */ readonly migrated: pulumi.Output; /** * The resource name of the runtime. Format: `projects/{project}/locations/{location}/runtimes/{runtimeId}` */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Idempotent request UUID. */ readonly requestId: pulumi.Output; /** * Required. User-defined unique ID of this Runtime. */ readonly runtimeId: pulumi.Output; /** * Checks how feasible a migration from GmN to WbI is. */ readonly runtimeMigrationEligibility: pulumi.Output; /** * The config settings for software inside the runtime. */ readonly softwareConfig: pulumi.Output; /** * Runtime state. */ readonly state: pulumi.Output; /** * Runtime update time. */ readonly updateTime: pulumi.Output; /** * Use a Compute Engine VM image to start the managed notebook instance. */ readonly virtualMachine: pulumi.Output; /** * Create a Runtime 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: RuntimeArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Runtime resource. */ export interface RuntimeArgs { /** * The config settings for accessing runtime. */ accessConfig?: pulumi.Input; /** * Optional. The labels to associate with this Managed Notebook or Runtime. Label **keys** must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a cluster. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; project?: pulumi.Input; /** * Idempotent request UUID. */ requestId?: pulumi.Input; /** * Required. User-defined unique ID of this Runtime. */ runtimeId: pulumi.Input; /** * The config settings for software inside the runtime. */ softwareConfig?: pulumi.Input; /** * Use a Compute Engine VM image to start the managed notebook instance. */ virtualMachine?: pulumi.Input; }