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

TemplateMetadata

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

Metadata describing a template.

interface TemplateMetadata {
defaultStreamingMode?: string;
description?: string;
name?: string;
parameters?: ParameterMetadata[];
streaming?: boolean;
supportsAtLeastOnce?: boolean;
supportsExactlyOnce?: boolean;
}

§Properties

§
defaultStreamingMode?: string
[src]

Optional. Indicates the default streaming mode for a streaming template. Only valid if both supports_at_least_once and supports_exactly_once are true. Possible values: UNSPECIFIED, EXACTLY_ONCE and AT_LEAST_ONCE

§
description?: string
[src]

Optional. A description of the template.

§
name?: string
[src]

Required. The name of the template.

§
parameters?: ParameterMetadata[]
[src]

The parameters for the template.

§
streaming?: boolean
[src]

Optional. Indicates if the template is streaming or not.

§
supportsAtLeastOnce?: boolean
[src]

Optional. Indicates if the streaming template supports at least once mode.

§
supportsExactlyOnce?: boolean
[src]

Optional. Indicates if the streaming template supports exactly once mode.