WorkflowTemplateJobHiveJobArgs

data class WorkflowTemplateJobHiveJobArgs(val continueOnFailure: Output<Boolean>? = null, val jarFileUris: Output<List<String>>? = null, val properties: Output<Map<String, String>>? = null, val queryFileUri: Output<String>? = null, val queryList: Output<WorkflowTemplateJobHiveJobQueryListArgs>? = null, val scriptVariables: Output<Map<String, String>>? = null) : ConvertibleToJava<WorkflowTemplateJobHiveJobArgs>

Constructors

Link copied to clipboard
constructor(continueOnFailure: Output<Boolean>? = null, jarFileUris: Output<List<String>>? = null, properties: Output<Map<String, String>>? = null, queryFileUri: Output<String>? = null, queryList: Output<WorkflowTemplateJobHiveJobQueryListArgs>? = null, scriptVariables: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val continueOnFailure: Output<Boolean>? = null

Whether to continue executing queries if a query fails. The default value is false. Setting to true can be useful when executing independent parallel queries.

Link copied to clipboard
val jarFileUris: Output<List<String>>? = null

HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes and UDFs.

Link copied to clipboard
val properties: Output<Map<String, String>>? = null

A mapping of property names and values, used to configure Hive. Properties that conflict with values set by the Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/hive/conf/hive-site.xml, and classes in user code.

Link copied to clipboard
val queryFileUri: Output<String>? = null

The HCFS URI of the script that contains Hive queries.

Link copied to clipboard

A list of queries.

Link copied to clipboard
val scriptVariables: Output<Map<String, String>>? = null

Mapping of query variable names to values (equivalent to the Hive command: SET name="value";). */

Functions

Link copied to clipboard
open override fun toJava(): WorkflowTemplateJobHiveJobArgs