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

StreamingComputationConfig

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

Configuration information for a single streaming computation.

interface StreamingComputationConfig {
computationId?: string;
instructions?: ParallelInstruction[];
stageName?: string;
systemName?: string;
transformUserNameToStateFamily?: {
[key: string]: string;
}
;
}

§Properties

§
computationId?: string
[src]

Unique identifier for this computation.

§
instructions?: ParallelInstruction[]
[src]

Instructions that comprise the computation.

§
stageName?: string
[src]

Stage name of this computation.

§
systemName?: string
[src]

System defined name for this computation.

§
transformUserNameToStateFamily?: {
[key: string]: string;
}
[src]

Map from user name of stateful transforms in this stage to their state family.