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

SessionOperationMetadata

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

Metadata describing the Session operation.

interface SessionOperationMetadata {
createTime?: Date;
description?: string;
doneTime?: Date;
labels?: {
[key: string]: string;
}
;
operationType?:
| "SESSION_OPERATION_TYPE_UNSPECIFIED"
| "CREATE"
| "TERMINATE"
| "DELETE";
session?: string;
sessionUuid?: string;
warnings?: string[];
}

§Properties

§
createTime?: Date
[src]

The time when the operation was created.

§
description?: string
[src]

Short description of the operation.

§
doneTime?: Date
[src]

The time when the operation was finished.

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

Labels associated with the operation.

§
operationType?: "SESSION_OPERATION_TYPE_UNSPECIFIED" | "CREATE" | "TERMINATE" | "DELETE"
[src]

The operation type.

§
session?: string
[src]

Name of the session for the operation.

§
sessionUuid?: string
[src]

Session UUID for the operation.

§
warnings?: string[]
[src]

Warnings encountered during operation execution.