Package com.google.dataflow.v1beta3
Interface StageSummaryOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StageSummary,StageSummary.Builder
public interface StageSummaryOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetEndTime()End time of this stage.com.google.protobuf.TimestampOrBuildergetEndTimeOrBuilder()End time of this stage.MetricUpdategetMetrics(int index)Metrics for this stage.intgetMetricsCount()Metrics for this stage.List<MetricUpdate>getMetricsList()Metrics for this stage.MetricUpdateOrBuildergetMetricsOrBuilder(int index)Metrics for this stage.List<? extends MetricUpdateOrBuilder>getMetricsOrBuilderList()Metrics for this stage.ProgressTimeseriesgetProgress()Progress for this stage.ProgressTimeseriesOrBuildergetProgressOrBuilder()Progress for this stage.StringgetStageId()ID of this stagecom.google.protobuf.ByteStringgetStageIdBytes()ID of this stagecom.google.protobuf.TimestampgetStartTime()Start time of this stage.com.google.protobuf.TimestampOrBuildergetStartTimeOrBuilder()Start time of this stage.ExecutionStategetState()State of this stage.intgetStateValue()State of this stage.booleanhasEndTime()End time of this stage.booleanhasProgress()Progress for this stage.booleanhasStartTime()Start time of this stage.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getStageId
String getStageId()
ID of this stage
string stage_id = 1;- Returns:
- The stageId.
-
getStageIdBytes
com.google.protobuf.ByteString getStageIdBytes()
ID of this stage
string stage_id = 1;- Returns:
- The bytes for stageId.
-
getStateValue
int getStateValue()
State of this stage.
.google.dataflow.v1beta3.ExecutionState state = 2;- Returns:
- The enum numeric value on the wire for state.
-
getState
ExecutionState getState()
State of this stage.
.google.dataflow.v1beta3.ExecutionState state = 2;- Returns:
- The state.
-
hasStartTime
boolean hasStartTime()
Start time of this stage.
.google.protobuf.Timestamp start_time = 3;- Returns:
- Whether the startTime field is set.
-
getStartTime
com.google.protobuf.Timestamp getStartTime()
Start time of this stage.
.google.protobuf.Timestamp start_time = 3;- Returns:
- The startTime.
-
getStartTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
Start time of this stage.
.google.protobuf.Timestamp start_time = 3;
-
hasEndTime
boolean hasEndTime()
End time of this stage. If the work item is completed, this is the actual end time of the stage. Otherwise, it is the predicted end time.
.google.protobuf.Timestamp end_time = 4;- Returns:
- Whether the endTime field is set.
-
getEndTime
com.google.protobuf.Timestamp getEndTime()
End time of this stage. If the work item is completed, this is the actual end time of the stage. Otherwise, it is the predicted end time.
.google.protobuf.Timestamp end_time = 4;- Returns:
- The endTime.
-
getEndTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder()
End time of this stage. If the work item is completed, this is the actual end time of the stage. Otherwise, it is the predicted end time.
.google.protobuf.Timestamp end_time = 4;
-
hasProgress
boolean hasProgress()
Progress for this stage. Only applicable to Batch jobs.
.google.dataflow.v1beta3.ProgressTimeseries progress = 5;- Returns:
- Whether the progress field is set.
-
getProgress
ProgressTimeseries getProgress()
Progress for this stage. Only applicable to Batch jobs.
.google.dataflow.v1beta3.ProgressTimeseries progress = 5;- Returns:
- The progress.
-
getProgressOrBuilder
ProgressTimeseriesOrBuilder getProgressOrBuilder()
Progress for this stage. Only applicable to Batch jobs.
.google.dataflow.v1beta3.ProgressTimeseries progress = 5;
-
getMetricsList
List<MetricUpdate> getMetricsList()
Metrics for this stage.
repeated .google.dataflow.v1beta3.MetricUpdate metrics = 6;
-
getMetrics
MetricUpdate getMetrics(int index)
Metrics for this stage.
repeated .google.dataflow.v1beta3.MetricUpdate metrics = 6;
-
getMetricsCount
int getMetricsCount()
Metrics for this stage.
repeated .google.dataflow.v1beta3.MetricUpdate metrics = 6;
-
getMetricsOrBuilderList
List<? extends MetricUpdateOrBuilder> getMetricsOrBuilderList()
Metrics for this stage.
repeated .google.dataflow.v1beta3.MetricUpdate metrics = 6;
-
getMetricsOrBuilder
MetricUpdateOrBuilder getMetricsOrBuilder(int index)
Metrics for this stage.
repeated .google.dataflow.v1beta3.MetricUpdate metrics = 6;
-
-