Class JobHiveConfigGetArgs
Inherited Members
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 JobHiveConfigGetArgs : ResourceArgs
Constructors
View SourceJobHiveConfigGetArgs()
Declaration
public JobHiveConfigGetArgs()
Properties
View SourceContinueOnFailure
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> |
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> |
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> |
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> |
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> |
ScriptVariables
Mapping of query variable names to values (equivalent to the Spark SQL command: SET name="value";).
Declaration
public InputMap<string> ScriptVariables { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.String> |