import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Create a session template synchronously. */ export declare class SessionTemplate extends pulumi.CustomResource { /** * Get an existing SessionTemplate 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): SessionTemplate; /** * Returns true if the given object is an instance of SessionTemplate. 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 SessionTemplate; /** * The time when the template was created. */ readonly createTime: pulumi.Output; /** * The email address of the user who created the template. */ readonly creator: pulumi.Output; /** * Optional. Brief description of the template. */ readonly description: pulumi.Output; /** * Optional. Environment configuration for session execution. */ readonly environmentConfig: pulumi.Output; /** * Optional. Jupyter session config. */ readonly jupyterSession: pulumi.Output; /** * Optional. Labels to associate with sessions created using this template. Label keys must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). Label values can be empty, but, if present, must contain 1 to 63 characters and conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a session. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * The resource name of the session template. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Optional. Runtime configuration for session execution. */ readonly runtimeConfig: pulumi.Output; /** * The time the template was last updated. */ readonly updateTime: pulumi.Output; /** * A session template UUID (Unique Universal Identifier). The service generates this value when it creates the session template. */ readonly uuid: pulumi.Output; /** * Create a SessionTemplate 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?: SessionTemplateArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a SessionTemplate resource. */ export interface SessionTemplateArgs { /** * Optional. Brief description of the template. */ description?: pulumi.Input; /** * Optional. Environment configuration for session execution. */ environmentConfig?: pulumi.Input; /** * Optional. Jupyter session config. */ jupyterSession?: pulumi.Input; /** * Optional. Labels to associate with sessions created using this template. Label keys must contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). Label values can be empty, but, if present, must contain 1 to 63 characters and conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a session. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * The resource name of the session template. */ name?: pulumi.Input; project?: pulumi.Input; /** * Optional. Runtime configuration for session execution. */ runtimeConfig?: pulumi.Input; }