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

ComputationTopology

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

All configuration data for a particular Computation.

interface ComputationTopology {
computationId?: string;
inputs?: StreamLocation[];
keyRanges?: KeyRangeLocation[];
outputs?: StreamLocation[];
stateFamilies?: StateFamilyConfig[];
systemStageName?: string;
}

§Properties

§
computationId?: string
[src]

The ID of the computation.

§

The inputs to the computation.

§
keyRanges?: KeyRangeLocation[]
[src]

The key ranges processed by the computation.

§

The outputs from the computation.

§
stateFamilies?: StateFamilyConfig[]
[src]

The state family values.

§
systemStageName?: string
[src]

The system stage name.