Show / Hide Table of Contents

Class JobPigConfigGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
JobPigConfigGetArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.Dataproc.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class JobPigConfigGetArgs : ResourceArgs

Constructors

View Source

JobPigConfigGetArgs()

Declaration
public JobPigConfigGetArgs()

Properties

View Source

ContinueOnFailure

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. Defaults to false.

Declaration
public Input<bool> ContinueOnFailure { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

JarFileUris

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

Declaration
public InputList<string> JarFileUris { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

LoggingConfig

Declaration
public Input<JobPigConfigLoggingConfigGetArgs> LoggingConfig { get; set; }
Property Value
Type Description
Input<JobPigConfigLoggingConfigGetArgs>
View Source

Properties

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

Declaration
public InputMap<string> Properties { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

QueryFileUri

The HCFS URI of the script that contains SQL queries. Conflicts with query_list

Declaration
public Input<string> QueryFileUri { get; set; }
Property Value
Type Description
Input<System.String>
View Source

QueryLists

The list of SQL queries or statements to execute as part of the job. Conflicts with query_file_uri

Declaration
public InputList<string> QueryLists { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

ScriptVariables

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

Declaration
public InputMap<string> ScriptVariables { get; set; }
Property Value
Type Description
InputMap<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.