Package com.google.monitoring.v3
Interface QueryErrorOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
QueryError
,QueryError.Builder
public interface QueryErrorOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TextLocator
getLocator()
The location of the time series query language text that this error applies to.TextLocatorOrBuilder
getLocatorOrBuilder()
The location of the time series query language text that this error applies to.String
getMessage()
The error message.com.google.protobuf.ByteString
getMessageBytes()
The error message.boolean
hasLocator()
The location of the time series query language text that this error applies to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasLocator
boolean hasLocator()
The location of the time series query language text that this error applies to.
.google.monitoring.v3.TextLocator locator = 1;
- Returns:
- Whether the locator field is set.
-
getLocator
TextLocator getLocator()
The location of the time series query language text that this error applies to.
.google.monitoring.v3.TextLocator locator = 1;
- Returns:
- The locator.
-
getLocatorOrBuilder
TextLocatorOrBuilder getLocatorOrBuilder()
The location of the time series query language text that this error applies to.
.google.monitoring.v3.TextLocator locator = 1;
-
getMessage
String getMessage()
The error message.
string message = 2;
- Returns:
- The message.
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
The error message.
string message = 2;
- Returns:
- The bytes for message.
-
-