Package com.google.monitoring.v3
Interface TimeSeriesDataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TimeSeriesData
,TimeSeriesData.Builder
public interface TimeSeriesDataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LabelValue
getLabelValues(int index)
The values of the labels in the time series identifier, given in the same order as the `label_descriptors` field of the TimeSeriesDescriptor associated with this object.int
getLabelValuesCount()
The values of the labels in the time series identifier, given in the same order as the `label_descriptors` field of the TimeSeriesDescriptor associated with this object.List<LabelValue>
getLabelValuesList()
The values of the labels in the time series identifier, given in the same order as the `label_descriptors` field of the TimeSeriesDescriptor associated with this object.LabelValueOrBuilder
getLabelValuesOrBuilder(int index)
The values of the labels in the time series identifier, given in the same order as the `label_descriptors` field of the TimeSeriesDescriptor associated with this object.List<? extends LabelValueOrBuilder>
getLabelValuesOrBuilderList()
The values of the labels in the time series identifier, given in the same order as the `label_descriptors` field of the TimeSeriesDescriptor associated with this object.TimeSeriesData.PointData
getPointData(int index)
The points in the time series.int
getPointDataCount()
The points in the time series.List<TimeSeriesData.PointData>
getPointDataList()
The points in the time series.TimeSeriesData.PointDataOrBuilder
getPointDataOrBuilder(int index)
The points in the time series.List<? extends TimeSeriesData.PointDataOrBuilder>
getPointDataOrBuilderList()
The points in the time series.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLabelValuesList
List<LabelValue> getLabelValuesList()
The values of the labels in the time series identifier, given in the same order as the `label_descriptors` field of the TimeSeriesDescriptor associated with this object. Each value must have a value of the type given in the corresponding entry of `label_descriptors`.
repeated .google.monitoring.v3.LabelValue label_values = 1;
-
getLabelValues
LabelValue getLabelValues(int index)
The values of the labels in the time series identifier, given in the same order as the `label_descriptors` field of the TimeSeriesDescriptor associated with this object. Each value must have a value of the type given in the corresponding entry of `label_descriptors`.
repeated .google.monitoring.v3.LabelValue label_values = 1;
-
getLabelValuesCount
int getLabelValuesCount()
The values of the labels in the time series identifier, given in the same order as the `label_descriptors` field of the TimeSeriesDescriptor associated with this object. Each value must have a value of the type given in the corresponding entry of `label_descriptors`.
repeated .google.monitoring.v3.LabelValue label_values = 1;
-
getLabelValuesOrBuilderList
List<? extends LabelValueOrBuilder> getLabelValuesOrBuilderList()
The values of the labels in the time series identifier, given in the same order as the `label_descriptors` field of the TimeSeriesDescriptor associated with this object. Each value must have a value of the type given in the corresponding entry of `label_descriptors`.
repeated .google.monitoring.v3.LabelValue label_values = 1;
-
getLabelValuesOrBuilder
LabelValueOrBuilder getLabelValuesOrBuilder(int index)
The values of the labels in the time series identifier, given in the same order as the `label_descriptors` field of the TimeSeriesDescriptor associated with this object. Each value must have a value of the type given in the corresponding entry of `label_descriptors`.
repeated .google.monitoring.v3.LabelValue label_values = 1;
-
getPointDataList
List<TimeSeriesData.PointData> getPointDataList()
The points in the time series.
repeated .google.monitoring.v3.TimeSeriesData.PointData point_data = 2;
-
getPointData
TimeSeriesData.PointData getPointData(int index)
The points in the time series.
repeated .google.monitoring.v3.TimeSeriesData.PointData point_data = 2;
-
getPointDataCount
int getPointDataCount()
The points in the time series.
repeated .google.monitoring.v3.TimeSeriesData.PointData point_data = 2;
-
getPointDataOrBuilderList
List<? extends TimeSeriesData.PointDataOrBuilder> getPointDataOrBuilderList()
The points in the time series.
repeated .google.monitoring.v3.TimeSeriesData.PointData point_data = 2;
-
getPointDataOrBuilder
TimeSeriesData.PointDataOrBuilder getPointDataOrBuilder(int index)
The points in the time series.
repeated .google.monitoring.v3.TimeSeriesData.PointData point_data = 2;
-
-