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

ParallelInstruction

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

Describes a particular operation comprising a MapTask.

interface ParallelInstruction {
name?: string;
originalName?: string;
outputs?: InstructionOutput[];
partialGroupByKey?: PartialGroupByKeyInstruction;
systemName?: string;
}

§Properties

§

Additional information for Flatten instructions.

§
name?: string
[src]

User-provided name of this operation.

§
originalName?: string
[src]

System-defined name for the operation in the original workflow graph.

§

Describes the outputs of the instruction.

§

Additional information for ParDo instructions.

§

Additional information for PartialGroupByKey instructions.

§

Additional information for Read instructions.

§
systemName?: string
[src]

System-defined name of this operation. Unique across the workflow.

§

Additional information for Write instructions.