Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SessionTemplate

import type { SessionTemplate } from "https://googleapis.deno.dev/v1/dataproc:v1.ts";

A representation of a session template.

interface SessionTemplate {
readonly createTime?: Date;
readonly creator?: string;
description?: string;
environmentConfig?: EnvironmentConfig;
jupyterSession?: JupyterConfig;
labels?: {
[key: string]: string;
}
;
name?: string;
runtimeConfig?: RuntimeConfig;
readonly updateTime?: Date;
readonly uuid?: string;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The time when the template was created.

§
readonly creator?: string
[src]

Output only. The email address of the user who created the template.

§
description?: string
[src]

Optional. Brief description of the template.

§
environmentConfig?: EnvironmentConfig
[src]

Optional. Environment configuration for session execution.

§
jupyterSession?: JupyterConfig
[src]

Optional. Jupyter session config.

§
labels?: {
[key: string]: string;
}
[src]

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.

§
name?: string
[src]

Required. The resource name of the session template.

§
runtimeConfig?: RuntimeConfig
[src]

Optional. Runtime configuration for session execution.

§
readonly updateTime?: Date
[src]

Output only. The time the template was last updated.

§
readonly uuid?: string
[src]

Output only. A session template UUID (Unique Universal Identifier). The service generates this value when it creates the session template.