import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../../types"; /** * Creates a new Runtime in a given project and location. */ 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; /** * Contains Runtime daemon metrics such as Service status and JupyterLab stats. */ readonly metrics: pulumi.Output; /** * The resource name of the runtime. Format: `projects/{project}/locations/{location}/runtimes/{runtime}` */ readonly name: 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. */ readonly accessConfig?: pulumi.Input; readonly locationsId: pulumi.Input; readonly projectsId: pulumi.Input; readonly runtimesId: pulumi.Input; /** * The config settings for software inside the runtime. */ readonly softwareConfig?: pulumi.Input; /** * Use a Compute Engine VM image to start the managed notebook instance. */ readonly virtualMachine?: pulumi.Input; }