Package com.google.dataflow.v1beta3
Interface JobMetricsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
JobMetrics
,JobMetrics.Builder
public interface JobMetricsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MetricUpdate
getMetrics(int index)
All metrics for this job.int
getMetricsCount()
All metrics for this job.List<MetricUpdate>
getMetricsList()
All metrics for this job.MetricUpdateOrBuilder
getMetricsOrBuilder(int index)
All metrics for this job.List<? extends MetricUpdateOrBuilder>
getMetricsOrBuilderList()
All metrics for this job.com.google.protobuf.Timestamp
getMetricTime()
Timestamp as of which metric values are current.com.google.protobuf.TimestampOrBuilder
getMetricTimeOrBuilder()
Timestamp as of which metric values are current.boolean
hasMetricTime()
Timestamp as of which metric values are current.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasMetricTime
boolean hasMetricTime()
Timestamp as of which metric values are current.
.google.protobuf.Timestamp metric_time = 1;
- Returns:
- Whether the metricTime field is set.
-
getMetricTime
com.google.protobuf.Timestamp getMetricTime()
Timestamp as of which metric values are current.
.google.protobuf.Timestamp metric_time = 1;
- Returns:
- The metricTime.
-
getMetricTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getMetricTimeOrBuilder()
Timestamp as of which metric values are current.
.google.protobuf.Timestamp metric_time = 1;
-
getMetricsList
List<MetricUpdate> getMetricsList()
All metrics for this job.
repeated .google.dataflow.v1beta3.MetricUpdate metrics = 2;
-
getMetrics
MetricUpdate getMetrics(int index)
All metrics for this job.
repeated .google.dataflow.v1beta3.MetricUpdate metrics = 2;
-
getMetricsCount
int getMetricsCount()
All metrics for this job.
repeated .google.dataflow.v1beta3.MetricUpdate metrics = 2;
-
getMetricsOrBuilderList
List<? extends MetricUpdateOrBuilder> getMetricsOrBuilderList()
All metrics for this job.
repeated .google.dataflow.v1beta3.MetricUpdate metrics = 2;
-
getMetricsOrBuilder
MetricUpdateOrBuilder getMetricsOrBuilder(int index)
All metrics for this job.
repeated .google.dataflow.v1beta3.MetricUpdate metrics = 2;
-
-