Skip to content
This repository was archived by the owner on Sep 16, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,24 @@ public DriverCase getDriverCase() {
}

public static final int MAIN_JAR_FILE_URI_FIELD_NUMBER = 1;
/**
*
*
* <pre>
* 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'
* </pre>
*
* <code>string main_jar_file_uri = 1;</code>
*
* @return Whether the mainJarFileUri field is set.
*/
public boolean hasMainJarFileUri() {
return driverCase_ == 1;
}
/**
*
*
Expand Down Expand Up @@ -332,6 +350,21 @@ public com.google.protobuf.ByteString getMainJarFileUriBytes() {
}

public static final int MAIN_CLASS_FIELD_NUMBER = 2;
/**
*
*
* <pre>
* 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`.
* </pre>
*
* <code>string main_class = 2;</code>
*
* @return Whether the mainClass field is set.
*/
public boolean hasMainClass() {
return driverCase_ == 2;
}
/**
*
*
Expand Down Expand Up @@ -1419,6 +1452,25 @@ public Builder clearDriver() {

private int bitField0_;

/**
*
*
* <pre>
* 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'
* </pre>
*
* <code>string main_jar_file_uri = 1;</code>
*
* @return Whether the mainJarFileUri field is set.
*/
@java.lang.Override
public boolean hasMainJarFileUri() {
return driverCase_ == 1;
}
/**
*
*
Expand Down Expand Up @@ -1558,6 +1610,22 @@ public Builder setMainJarFileUriBytes(com.google.protobuf.ByteString value) {
return this;
}

/**
*
*
* <pre>
* 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`.
* </pre>
*
* <code>string main_class = 2;</code>
*
* @return Whether the mainClass field is set.
*/
@java.lang.Override
public boolean hasMainClass() {
return driverCase_ == 2;
}
/**
*
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,22 @@ public interface HadoopJobOrBuilder
// @@protoc_insertion_point(interface_extends:google.cloud.dataproc.v1.HadoopJob)
com.google.protobuf.MessageOrBuilder {

/**
*
*
* <pre>
* 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'
* </pre>
*
* <code>string main_jar_file_uri = 1;</code>
*
* @return Whether the mainJarFileUri field is set.
*/
boolean hasMainJarFileUri();
/**
*
*
Expand Down Expand Up @@ -56,6 +72,19 @@ public interface HadoopJobOrBuilder
*/
com.google.protobuf.ByteString getMainJarFileUriBytes();

/**
*
*
* <pre>
* 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`.
* </pre>
*
* <code>string main_class = 2;</code>
*
* @return Whether the mainClass field is set.
*/
boolean hasMainClass();
/**
*
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,20 @@ public QueriesCase getQueriesCase() {
}

public static final int QUERY_FILE_URI_FIELD_NUMBER = 1;
/**
*
*
* <pre>
* The HCFS URI of the script that contains Hive queries.
* </pre>
*
* <code>string query_file_uri = 1;</code>
*
* @return Whether the queryFileUri field is set.
*/
public boolean hasQueryFileUri() {
return queriesCase_ == 1;
}
/**
*
*
Expand Down Expand Up @@ -1156,6 +1170,21 @@ public Builder clearQueries() {

private int bitField0_;

/**
*
*
* <pre>
* The HCFS URI of the script that contains Hive queries.
* </pre>
*
* <code>string query_file_uri = 1;</code>
*
* @return Whether the queryFileUri field is set.
*/
@java.lang.Override
public boolean hasQueryFileUri() {
return queriesCase_ == 1;
}
/**
*
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ public interface HiveJobOrBuilder
// @@protoc_insertion_point(interface_extends:google.cloud.dataproc.v1.HiveJob)
com.google.protobuf.MessageOrBuilder {

/**
*
*
* <pre>
* The HCFS URI of the script that contains Hive queries.
* </pre>
*
* <code>string query_file_uri = 1;</code>
*
* @return Whether the queryFileUri field is set.
*/
boolean hasQueryFileUri();
/**
*
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,20 @@ public QueriesCase getQueriesCase() {
}

public static final int QUERY_FILE_URI_FIELD_NUMBER = 1;
/**
*
*
* <pre>
* The HCFS URI of the script that contains the Pig queries.
* </pre>
*
* <code>string query_file_uri = 1;</code>
*
* @return Whether the queryFileUri field is set.
*/
public boolean hasQueryFileUri() {
return queriesCase_ == 1;
}
/**
*
*
Expand Down Expand Up @@ -1250,6 +1264,21 @@ public Builder clearQueries() {

private int bitField0_;

/**
*
*
* <pre>
* The HCFS URI of the script that contains the Pig queries.
* </pre>
*
* <code>string query_file_uri = 1;</code>
*
* @return Whether the queryFileUri field is set.
*/
@java.lang.Override
public boolean hasQueryFileUri() {
return queriesCase_ == 1;
}
/**
*
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ public interface PigJobOrBuilder
// @@protoc_insertion_point(interface_extends:google.cloud.dataproc.v1.PigJob)
com.google.protobuf.MessageOrBuilder {

/**
*
*
* <pre>
* The HCFS URI of the script that contains the Pig queries.
* </pre>
*
* <code>string query_file_uri = 1;</code>
*
* @return Whether the queryFileUri field is set.
*/
boolean hasQueryFileUri();
/**
*
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,20 @@ public QueriesCase getQueriesCase() {
}

public static final int QUERY_FILE_URI_FIELD_NUMBER = 1;
/**
*
*
* <pre>
* The HCFS URI of the script that contains SQL queries.
* </pre>
*
* <code>string query_file_uri = 1;</code>
*
* @return Whether the queryFileUri field is set.
*/
public boolean hasQueryFileUri() {
return queriesCase_ == 1;
}
/**
*
*
Expand Down Expand Up @@ -1172,6 +1186,21 @@ public Builder clearQueries() {

private int bitField0_;

/**
*
*
* <pre>
* The HCFS URI of the script that contains SQL queries.
* </pre>
*
* <code>string query_file_uri = 1;</code>
*
* @return Whether the queryFileUri field is set.
*/
@java.lang.Override
public boolean hasQueryFileUri() {
return queriesCase_ == 1;
}
/**
*
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ public interface PrestoJobOrBuilder
// @@protoc_insertion_point(interface_extends:google.cloud.dataproc.v1.PrestoJob)
com.google.protobuf.MessageOrBuilder {

/**
*
*
* <pre>
* The HCFS URI of the script that contains SQL queries.
* </pre>
*
* <code>string query_file_uri = 1;</code>
*
* @return Whether the queryFileUri field is set.
*/
boolean hasQueryFileUri();
/**
*
*
Expand Down
Loading