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

LaunchTemplateParameters

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

Parameters to provide to the template being launched. Note that the [metadata in the pipeline code] (https://cloud.google.com/dataflow/docs/guides/templates/creating-templates#metadata) determines which runtime parameters are valid.

interface LaunchTemplateParameters {
environment?: RuntimeEnvironment;
jobName?: string;
parameters?: {
[key: string]: string;
}
;
transformNameMapping?: {
[key: string]: string;
}
;
update?: boolean;
}

§Properties

§

The runtime environment for the job.

§
jobName?: string
[src]

Required. The job name to use for the created job. The name must match the regular expression [a-z]([-a-z0-9]{0,1022}[a-z0-9])?

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

The runtime parameters to pass to the job.

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

Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced to the corresponding name prefixes of the new job.

§
update?: boolean
[src]

If set, replace the existing pipeline with the name specified by jobName with this pipeline, preserving state.