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

RuntimeInfo

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

Runtime information about workload execution.

interface RuntimeInfo {
readonly approximateUsage?: UsageMetrics;
readonly currentUsage?: UsageSnapshot;
readonly diagnosticOutputUri?: string;
readonly endpoints?: {
[key: string]: string;
}
;
readonly outputUri?: string;
}

§Properties

§
readonly approximateUsage?: UsageMetrics
[src]

Output only. Approximate workload resource usage, calculated when the workload completes (see Dataproc Serverless pricing (https://cloud.google.com/dataproc-serverless/pricing)).Note: This metric calculation may change in the future, for example, to capture cumulative workload resource consumption during workload execution (see the Dataproc Serverless release notes (https://cloud.google.com/dataproc-serverless/docs/release-notes) for announcements, changes, fixes and other Dataproc developments).

§
readonly currentUsage?: UsageSnapshot
[src]

Output only. Snapshot of current workload resource usage.

§
readonly diagnosticOutputUri?: string
[src]

Output only. A URI pointing to the location of the diagnostics tarball.

§
readonly endpoints?: {
[key: string]: string;
}
[src]

Output only. Map of remote access endpoints (such as web interfaces and APIs) to their URIs.

§
readonly outputUri?: string
[src]

Output only. A URI pointing to the location of the stdout and stderr of the workload.