Package com.google.monitoring.v3
Interface QueryErrorListOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
QueryErrorList
,QueryErrorList.Builder
public interface QueryErrorListOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryError
getErrors(int index)
Errors in parsing the time series query language text.int
getErrorsCount()
Errors in parsing the time series query language text.List<QueryError>
getErrorsList()
Errors in parsing the time series query language text.QueryErrorOrBuilder
getErrorsOrBuilder(int index)
Errors in parsing the time series query language text.List<? extends QueryErrorOrBuilder>
getErrorsOrBuilderList()
Errors in parsing the time series query language text.String
getErrorSummary()
A summary of all the errors.com.google.protobuf.ByteString
getErrorSummaryBytes()
A summary of all the errors.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getErrorsList
List<QueryError> getErrorsList()
Errors in parsing the time series query language text. The number of errors in the response may be limited.
repeated .google.monitoring.v3.QueryError errors = 1;
-
getErrors
QueryError getErrors(int index)
Errors in parsing the time series query language text. The number of errors in the response may be limited.
repeated .google.monitoring.v3.QueryError errors = 1;
-
getErrorsCount
int getErrorsCount()
Errors in parsing the time series query language text. The number of errors in the response may be limited.
repeated .google.monitoring.v3.QueryError errors = 1;
-
getErrorsOrBuilderList
List<? extends QueryErrorOrBuilder> getErrorsOrBuilderList()
Errors in parsing the time series query language text. The number of errors in the response may be limited.
repeated .google.monitoring.v3.QueryError errors = 1;
-
getErrorsOrBuilder
QueryErrorOrBuilder getErrorsOrBuilder(int index)
Errors in parsing the time series query language text. The number of errors in the response may be limited.
repeated .google.monitoring.v3.QueryError errors = 1;
-
getErrorSummary
String getErrorSummary()
A summary of all the errors.
string error_summary = 2;
- Returns:
- The errorSummary.
-
getErrorSummaryBytes
com.google.protobuf.ByteString getErrorSummaryBytes()
A summary of all the errors.
string error_summary = 2;
- Returns:
- The bytes for errorSummary.
-
-