Package com.google.cloud.dataproc.v1
Interface ListJobsResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListJobsResponse
,ListJobsResponse.Builder
public interface ListJobsResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Job
getJobs(int index)
Output only.int
getJobsCount()
Output only.List<Job>
getJobsList()
Output only.JobOrBuilder
getJobsOrBuilder(int index)
Output only.List<? extends JobOrBuilder>
getJobsOrBuilderList()
Output only.String
getNextPageToken()
Optional.com.google.protobuf.ByteString
getNextPageTokenBytes()
Optional.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getJobsList
List<Job> getJobsList()
Output only. Jobs list.
repeated .google.cloud.dataproc.v1.Job jobs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getJobs
Job getJobs(int index)
Output only. Jobs list.
repeated .google.cloud.dataproc.v1.Job jobs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getJobsCount
int getJobsCount()
Output only. Jobs list.
repeated .google.cloud.dataproc.v1.Job jobs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getJobsOrBuilderList
List<? extends JobOrBuilder> getJobsOrBuilderList()
Output only. Jobs list.
repeated .google.cloud.dataproc.v1.Job jobs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getJobsOrBuilder
JobOrBuilder getJobsOrBuilder(int index)
Output only. Jobs list.
repeated .google.cloud.dataproc.v1.Job jobs = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
-
getNextPageToken
String getNextPageToken()
Optional. This token is included in the response if there are more results to fetch. To fetch additional results, provide this value as the `page_token` in a subsequent <code>ListJobsRequest</code>.
string next_page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
Optional. This token is included in the response if there are more results to fetch. To fetch additional results, provide this value as the `page_token` in a subsequent <code>ListJobsRequest</code>.
string next_page_token = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The bytes for nextPageToken.
-
-