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

SparkConnectSessionInfo

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

Represents session-level information for Spark Connect

interface SparkConnectSessionInfo {
finishTimestamp?: bigint;
sessionId?: string;
startTimestamp?: bigint;
totalExecution?: bigint;
userId?: string;
}

§Properties

§
finishTimestamp?: bigint
[src]

Timestamp when the session finished.

§
sessionId?: string
[src]

Required. Session ID of the session.

§
startTimestamp?: bigint
[src]

Timestamp when the session started.

§
totalExecution?: bigint
[src]

Optional. Total number of executions in the session.

§
userId?: string
[src]

User ID of the user who started the session.