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

TopologyConfig

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

Global topology of the streaming Dataflow job, including all computations and their sharded locations.

interface TopologyConfig {
computations?: ComputationTopology[];
dataDiskAssignments?: DataDiskAssignment[];
forwardingKeyBits?: number;
persistentStateVersion?: number;
userStageToComputationNameMap?: {
[key: string]: string;
}
;
}

§Properties

§
computations?: ComputationTopology[]
[src]

The computations associated with a streaming Dataflow job.

§
dataDiskAssignments?: DataDiskAssignment[]
[src]

The disks assigned to a streaming Dataflow job.

§
forwardingKeyBits?: number
[src]

The size (in bits) of keys that will be assigned to source messages.

§
persistentStateVersion?: number
[src]

Version number for persistent state.

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

Maps user stage names to stable computation names.