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

InstructionOutput

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

An output of an instruction.

interface InstructionOutput {
codec?: {
[key: string]: any;
}
;
name?: string;
onlyCountKeyBytes?: boolean;
onlyCountValueBytes?: boolean;
originalName?: string;
systemName?: string;
}

§Properties

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

The codec to use to encode data being written via this output.

§
name?: string
[src]

The user-provided name of this output.

§
onlyCountKeyBytes?: boolean
[src]

For system-generated byte and mean byte metrics, certain instructions should only report the key size.

§
onlyCountValueBytes?: boolean
[src]

For system-generated byte and mean byte metrics, certain instructions should only report the value size.

§
originalName?: string
[src]

System-defined name for this output in the original workflow graph. Outputs that do not contribute to an original instruction do not set this.

§
systemName?: string
[src]

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