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

PipelineDescription

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

A descriptive representation of submitted pipeline as well as the executed form. This data is provided by the Dataflow service for ease of visualizing the pipeline and interpreting Dataflow provided metrics.

interface PipelineDescription {
displayData?: DisplayData[];
executionPipelineStage?: ExecutionStageSummary[];
originalPipelineTransform?: TransformSummary[];
stepNamesHash?: string;
}

§Properties

§
displayData?: DisplayData[]
[src]

Pipeline level display data.

§
executionPipelineStage?: ExecutionStageSummary[]
[src]

Description of each stage of execution of the pipeline.

§
originalPipelineTransform?: TransformSummary[]
[src]

Description of each transform in the pipeline and collections between them.

§
stepNamesHash?: string
[src]

A hash value of the submitted pipeline portable graph step names if exists.