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

OrderedJob

import type { OrderedJob } from "https://googleapis.deno.dev/v1/dataproc:v1.ts";

A job executed by the workflow.

interface OrderedJob {
flinkJob?: FlinkJob;
hadoopJob?: HadoopJob;
hiveJob?: HiveJob;
labels?: {
[key: string]: string;
}
;
pigJob?: PigJob;
prerequisiteStepIds?: string[];
prestoJob?: PrestoJob;
pysparkJob?: PySparkJob;
scheduling?: JobScheduling;
sparkJob?: SparkJob;
sparkRJob?: SparkRJob;
sparkSqlJob?: SparkSqlJob;
stepId?: string;
trinoJob?: TrinoJob;
}

§Properties

§
flinkJob?: FlinkJob
[src]

Optional. Job is a Flink job.

§
hadoopJob?: HadoopJob
[src]

Optional. Job is a Hadoop job.

§
hiveJob?: HiveJob
[src]

Optional. Job is a Hive job.

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

Optional. The labels to associate with this job.Label keys must be between 1 and 63 characters long, and must conform to the following regular expression: \p{Ll}\p{Lo}{0,62}Label values must be between 1 and 63 characters long, and must conform to the following regular expression: \p{Ll}\p{Lo}\p{N}_-{0,63}No more than 32 labels can be associated with a given job.

§
pigJob?: PigJob
[src]

Optional. Job is a Pig job.

§
prerequisiteStepIds?: string[]
[src]

Optional. The optional list of prerequisite job step_ids. If not specified, the job will start at the beginning of workflow.

§
prestoJob?: PrestoJob
[src]

Optional. Job is a Presto job.

§
pysparkJob?: PySparkJob
[src]

Optional. Job is a PySpark job.

§
scheduling?: JobScheduling
[src]

Optional. Job scheduling configuration.

§
sparkJob?: SparkJob
[src]

Optional. Job is a Spark job.

§
sparkRJob?: SparkRJob
[src]

Optional. Job is a SparkR job.

§
sparkSqlJob?: SparkSqlJob
[src]

Optional. Job is a SparkSql job.

§
stepId?: string
[src]

Required. The step id. The id must be unique among all jobs within the template.The step id is used as prefix for job id, as job goog-dataproc-workflow-step-id label, and in prerequisiteStepIds field from other steps.The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of between 3 and 50 characters.

§
trinoJob?: TrinoJob
[src]

Optional. Job is a Trino job.