Show / Hide Table of Contents

Class JobHadoopConfigGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
JobHadoopConfigGetArgs
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 JobHadoopConfigGetArgs : ResourceArgs

Constructors

View Source

JobHadoopConfigGetArgs()

Declaration
public JobHadoopConfigGetArgs()

Properties

View Source

ArchiveUris

HCFS URIs of archives to be extracted in the working directory of .jar, .tar, .tar.gz, .tgz, and .zip.

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

Args

The arguments to pass to the driver. Do not include arguments, such as -libjars or -Dfoo=bar, that can be set as job properties, since a collision may occur that causes an incorrect job submission.

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

FileUris

HCFS URIs of files to be copied to the working directory of Hadoop drivers and distributed tasks. Useful for naively parallel tasks.

Declaration
public InputList<string> FileUris { get; set; }
Property Value
Type Description
InputList<System.String>
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<JobHadoopConfigLoggingConfigGetArgs> LoggingConfig { get; set; }
Property Value
Type Description
Input<JobHadoopConfigLoggingConfigGetArgs>
View Source

MainClass

The name of the driver's main class. The jar file containing the class must be in the default CLASSPATH or specified in jar_file_uris. Conflicts with main_jar_file_uri

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

MainJarFileUri

The HCFS URI of the jar file containing the main class. Examples: 'gs://foo-bucket/analytics-binaries/extract-useful-metrics-mr.jar' 'hdfs:/tmp/test-samples/custom-wordcount.jar' 'file:///home/usr/lib/hadoop-mapreduce/hadoop-mapreduce-examples.jar'. Conflicts with main_class

Declaration
public Input<string> MainJarFileUri { get; set; }
Property Value
Type Description
Input<System.String>
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
Back to top Copyright 2016-2020, Pulumi Corporation.