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

SeqMapTask

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

Describes a particular function to invoke.

interface SeqMapTask {
inputs?: SideInputInfo[];
name?: string;
outputInfos?: SeqMapTaskOutputInfo[];
stageName?: string;
systemName?: string;
userFn?: {
[key: string]: any;
}
;
}

§Properties

§

Information about each of the inputs.

§
name?: string
[src]

The user-provided name of the SeqDo operation.

§

Information about each of the outputs.

§
stageName?: string
[src]

System-defined name of the stage containing the SeqDo operation. Unique across the workflow.

§
systemName?: string
[src]

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

§
userFn?: {
[key: string]: any;
}
[src]

The user function to invoke.