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

ExecutionStageSummary

import type { ExecutionStageSummary } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

Description of the composing transforms, names/ids, and input/outputs of a stage of execution. Some composing transforms and sources may have been generated by the Dataflow service during execution planning.

interface ExecutionStageSummary {
componentSource?: ComponentSource[];
componentTransform?: ComponentTransform[];
id?: string;
inputSource?: StageSource[];
kind?:
| "UNKNOWN_KIND"
| "PAR_DO_KIND"
| "GROUP_BY_KEY_KIND"
| "FLATTEN_KIND"
| "READ_KIND"
| "WRITE_KIND"
| "CONSTANT_KIND"
| "SINGLETON_KIND"
| "SHUFFLE_KIND";
name?: string;
outputSource?: StageSource[];
prerequisiteStage?: string[];
}

§Properties

§
componentSource?: ComponentSource[]
[src]

Collections produced and consumed by component transforms of this stage.

§
componentTransform?: ComponentTransform[]
[src]

Transforms that comprise this execution stage.

§
id?: string
[src]

Dataflow service generated id for this stage.

§
inputSource?: StageSource[]
[src]

Input sources for this stage.

§
kind?: "UNKNOWN_KIND" | "PAR_DO_KIND" | "GROUP_BY_KEY_KIND" | "FLATTEN_KIND" | "READ_KIND" | "WRITE_KIND" | "CONSTANT_KIND" | "SINGLETON_KIND" | "SHUFFLE_KIND"
[src]

Type of transform this stage is executing.

§
name?: string
[src]

Dataflow service generated name for this stage.

§
outputSource?: StageSource[]
[src]

Output sources for this stage.

§
prerequisiteStage?: string[]
[src]

Other stages that must complete before this stage can run.