Package com.google.dataflow.v1beta3
Interface JobExecutionInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
JobExecutionInfo
,JobExecutionInfo.Builder
public interface JobExecutionInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsStages(String key)
A mapping from each stage to the information about that stage.Map<String,JobExecutionStageInfo>
getStages()
Deprecated.int
getStagesCount()
A mapping from each stage to the information about that stage.Map<String,JobExecutionStageInfo>
getStagesMap()
A mapping from each stage to the information about that stage.JobExecutionStageInfo
getStagesOrDefault(String key, JobExecutionStageInfo defaultValue)
A mapping from each stage to the information about that stage.JobExecutionStageInfo
getStagesOrThrow(String key)
A mapping from each stage to the information about that stage.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStagesCount
int getStagesCount()
A mapping from each stage to the information about that stage.
map<string, .google.dataflow.v1beta3.JobExecutionStageInfo> stages = 1;
-
containsStages
boolean containsStages(String key)
A mapping from each stage to the information about that stage.
map<string, .google.dataflow.v1beta3.JobExecutionStageInfo> stages = 1;
-
getStages
@Deprecated Map<String,JobExecutionStageInfo> getStages()
Deprecated.UsegetStagesMap()
instead.
-
getStagesMap
Map<String,JobExecutionStageInfo> getStagesMap()
A mapping from each stage to the information about that stage.
map<string, .google.dataflow.v1beta3.JobExecutionStageInfo> stages = 1;
-
getStagesOrDefault
JobExecutionStageInfo getStagesOrDefault(String key, JobExecutionStageInfo defaultValue)
A mapping from each stage to the information about that stage.
map<string, .google.dataflow.v1beta3.JobExecutionStageInfo> stages = 1;
-
getStagesOrThrow
JobExecutionStageInfo getStagesOrThrow(String key)
A mapping from each stage to the information about that stage.
map<string, .google.dataflow.v1beta3.JobExecutionStageInfo> stages = 1;
-
-