Package com.google.dataflow.v1beta3
Interface JobExecutionDetailsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
JobExecutionDetails
,JobExecutionDetails.Builder
public interface JobExecutionDetailsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getNextPageToken()
If present, this response does not contain all requested tasks.com.google.protobuf.ByteString
getNextPageTokenBytes()
If present, this response does not contain all requested tasks.StageSummary
getStages(int index)
The stages of the job execution.int
getStagesCount()
The stages of the job execution.List<StageSummary>
getStagesList()
The stages of the job execution.StageSummaryOrBuilder
getStagesOrBuilder(int index)
The stages of the job execution.List<? extends StageSummaryOrBuilder>
getStagesOrBuilderList()
The stages of the job execution.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStagesList
List<StageSummary> getStagesList()
The stages of the job execution.
repeated .google.dataflow.v1beta3.StageSummary stages = 1;
-
getStages
StageSummary getStages(int index)
The stages of the job execution.
repeated .google.dataflow.v1beta3.StageSummary stages = 1;
-
getStagesCount
int getStagesCount()
The stages of the job execution.
repeated .google.dataflow.v1beta3.StageSummary stages = 1;
-
getStagesOrBuilderList
List<? extends StageSummaryOrBuilder> getStagesOrBuilderList()
The stages of the job execution.
repeated .google.dataflow.v1beta3.StageSummary stages = 1;
-
getStagesOrBuilder
StageSummaryOrBuilder getStagesOrBuilder(int index)
The stages of the job execution.
repeated .google.dataflow.v1beta3.StageSummary stages = 1;
-
getNextPageToken
String getNextPageToken()
If present, this response does not contain all requested tasks. To obtain the next page of results, repeat the request with page_token set to this value.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
If present, this response does not contain all requested tasks. To obtain the next page of results, repeat the request with page_token set to this value.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
-