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

SparkSqlJob

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

A Dataproc job for running Apache Spark SQL (https://spark.apache.org/sql/) queries.

interface SparkSqlJob {
jarFileUris?: string[];
loggingConfig?: LoggingConfig;
properties?: {
[key: string]: string;
}
;
queryFileUri?: string;
queryList?: QueryList;
scriptVariables?: {
[key: string]: string;
}
;
}

§Properties

§
jarFileUris?: string[]
[src]

Optional. HCFS URIs of jar files to be added to the Spark CLASSPATH.

§
loggingConfig?: LoggingConfig
[src]

Optional. The runtime log config for job execution.

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

Optional. A mapping of property names to values, used to configure Spark SQL's SparkConf. Properties that conflict with values set by the Dataproc API might be overwritten.

§
queryFileUri?: string
[src]

The HCFS URI of the script that contains SQL queries.

§
queryList?: QueryList
[src]

A list of queries.

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

Optional. Mapping of query variable names to values (equivalent to the Spark SQL command: SET name="value";).