Package com.google.monitoring.v3
Interface ListTimeSeriesResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListTimeSeriesResponse
,ListTimeSeriesResponse.Builder
public interface ListTimeSeriesResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.rpc.Status
getExecutionErrors(int index)
Query execution errors that may have caused the time series data returned to be incomplete.int
getExecutionErrorsCount()
Query execution errors that may have caused the time series data returned to be incomplete.List<com.google.rpc.Status>
getExecutionErrorsList()
Query execution errors that may have caused the time series data returned to be incomplete.com.google.rpc.StatusOrBuilder
getExecutionErrorsOrBuilder(int index)
Query execution errors that may have caused the time series data returned to be incomplete.List<? extends com.google.rpc.StatusOrBuilder>
getExecutionErrorsOrBuilderList()
Query execution errors that may have caused the time series data returned to be incomplete.String
getNextPageToken()
If there are more results than have been returned, then this field is set to a non-empty value.com.google.protobuf.ByteString
getNextPageTokenBytes()
If there are more results than have been returned, then this field is set to a non-empty value.TimeSeries
getTimeSeries(int index)
One or more time series that match the filter included in the request.int
getTimeSeriesCount()
One or more time series that match the filter included in the request.List<TimeSeries>
getTimeSeriesList()
One or more time series that match the filter included in the request.TimeSeriesOrBuilder
getTimeSeriesOrBuilder(int index)
One or more time series that match the filter included in the request.List<? extends TimeSeriesOrBuilder>
getTimeSeriesOrBuilderList()
One or more time series that match the filter included in the request.String
getUnit()
The unit in which all `time_series` point values are reported.com.google.protobuf.ByteString
getUnitBytes()
The unit in which all `time_series` point values are reported.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTimeSeriesList
List<TimeSeries> getTimeSeriesList()
One or more time series that match the filter included in the request.
repeated .google.monitoring.v3.TimeSeries time_series = 1;
-
getTimeSeries
TimeSeries getTimeSeries(int index)
One or more time series that match the filter included in the request.
repeated .google.monitoring.v3.TimeSeries time_series = 1;
-
getTimeSeriesCount
int getTimeSeriesCount()
One or more time series that match the filter included in the request.
repeated .google.monitoring.v3.TimeSeries time_series = 1;
-
getTimeSeriesOrBuilderList
List<? extends TimeSeriesOrBuilder> getTimeSeriesOrBuilderList()
One or more time series that match the filter included in the request.
repeated .google.monitoring.v3.TimeSeries time_series = 1;
-
getTimeSeriesOrBuilder
TimeSeriesOrBuilder getTimeSeriesOrBuilder(int index)
One or more time series that match the filter included in the request.
repeated .google.monitoring.v3.TimeSeries time_series = 1;
-
getNextPageToken
String getNextPageToken()
If there are more results than have been returned, then this field is set to a non-empty value. To see the additional results, use that value as `page_token` in the next call to this method.
string next_page_token = 2;
- Returns:
- The nextPageToken.
-
getNextPageTokenBytes
com.google.protobuf.ByteString getNextPageTokenBytes()
If there are more results than have been returned, then this field is set to a non-empty value. To see the additional results, use that value as `page_token` in the next call to this method.
string next_page_token = 2;
- Returns:
- The bytes for nextPageToken.
-
getExecutionErrorsList
List<com.google.rpc.Status> getExecutionErrorsList()
Query execution errors that may have caused the time series data returned to be incomplete.
repeated .google.rpc.Status execution_errors = 3;
-
getExecutionErrors
com.google.rpc.Status getExecutionErrors(int index)
Query execution errors that may have caused the time series data returned to be incomplete.
repeated .google.rpc.Status execution_errors = 3;
-
getExecutionErrorsCount
int getExecutionErrorsCount()
Query execution errors that may have caused the time series data returned to be incomplete.
repeated .google.rpc.Status execution_errors = 3;
-
getExecutionErrorsOrBuilderList
List<? extends com.google.rpc.StatusOrBuilder> getExecutionErrorsOrBuilderList()
Query execution errors that may have caused the time series data returned to be incomplete.
repeated .google.rpc.Status execution_errors = 3;
-
getExecutionErrorsOrBuilder
com.google.rpc.StatusOrBuilder getExecutionErrorsOrBuilder(int index)
Query execution errors that may have caused the time series data returned to be incomplete.
repeated .google.rpc.Status execution_errors = 3;
-
getUnit
String getUnit()
The unit in which all `time_series` point values are reported. `unit` follows the UCUM format for units as seen in https://unitsofmeasure.org/ucum.html. If different `time_series` have different units (for example, because they come from different metric types, or a unit is absent), then `unit` will be "{not_a_unit}".
string unit = 5;
- Returns:
- The unit.
-
getUnitBytes
com.google.protobuf.ByteString getUnitBytes()
The unit in which all `time_series` point values are reported. `unit` follows the UCUM format for units as seen in https://unitsofmeasure.org/ucum.html. If different `time_series` have different units (for example, because they come from different metric types, or a unit is absent), then `unit` will be "{not_a_unit}".
string unit = 5;
- Returns:
- The bytes for unit.
-
-