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

CreateJobFromTemplateRequest

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

A request to create a Cloud Dataflow job from a template.

interface CreateJobFromTemplateRequest {
environment?: RuntimeEnvironment;
gcsPath?: string;
jobName?: string;
location?: string;
parameters?: {
[key: string]: string;
}
;
}

§Properties

§

The runtime environment for the job.

§
gcsPath?: string
[src]

Required. A Cloud Storage path to the template from which to create the job. Must be a valid Cloud Storage URL, beginning with gs://.

§
jobName?: string
[src]

Required. The job name to use for the created job.

§
location?: string
[src]

The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) to which to direct the request.

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

The runtime parameters to pass to the job.