Class ErrorInfo

  • All Implemented Interfaces:
    com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, ErrorInfoOrBuilder, Serializable

    public final class ErrorInfo
    extends com.google.protobuf.GeneratedMessageV3
    implements ErrorInfoOrBuilder
     Describes the cause of the error with structured details.
     Example of an error when contacting the "pubsub.googleapis.com" API when it
     is not enabled:
         { "reason": "API_DISABLED"
           "domain": "googleapis.com"
           "metadata": {
             "resource": "projects/123",
             "service": "pubsub.googleapis.com"
           }
         }
     This response indicates that the pubsub.googleapis.com API is not enabled.
     Example of an error that is returned when attempting to create a Spanner
     instance in a region that is out of stock:
         { "reason": "STOCKOUT"
           "domain": "spanner.googleapis.com",
           "metadata": {
             "availableRegions": "us-central1,us-east2"
           }
         }
     
    Protobuf type google.rpc.ErrorInfo
    See Also:
    Serialized Form
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  ErrorInfo.Builder
      Describes the cause of the error with structured details.
      • Nested classes/interfaces inherited from class com.google.protobuf.GeneratedMessageV3

        com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,​BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,​BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter
      • Nested classes/interfaces inherited from class com.google.protobuf.AbstractMessageLite

        com.google.protobuf.AbstractMessageLite.InternalOneOfEnum
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int DOMAIN_FIELD_NUMBER  
      static int METADATA_FIELD_NUMBER  
      static int REASON_FIELD_NUMBER  
      • Fields inherited from class com.google.protobuf.GeneratedMessageV3

        alwaysUseFieldBuilders, unknownFields
      • Fields inherited from class com.google.protobuf.AbstractMessage

        memoizedSize
      • Fields inherited from class com.google.protobuf.AbstractMessageLite

        memoizedHashCode
    • Method Detail

      • newInstance

        protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
        Overrides:
        newInstance in class com.google.protobuf.GeneratedMessageV3
      • getUnknownFields

        public final com.google.protobuf.UnknownFieldSet getUnknownFields()
        Specified by:
        getUnknownFields in interface com.google.protobuf.MessageOrBuilder
        Overrides:
        getUnknownFields in class com.google.protobuf.GeneratedMessageV3
      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetMapField

        protected com.google.protobuf.MapField internalGetMapField​(int number)
        Overrides:
        internalGetMapField in class com.google.protobuf.GeneratedMessageV3
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
      • getReason

        public String getReason()
         The reason of the error. This is a constant value that identifies the
         proximate cause of the error. Error reasons are unique within a particular
         domain of errors. This should be at most 63 characters and match a
         regular expression of `[A-Z][A-Z0-9_]+[A-Z0-9]`, which represents
         UPPER_SNAKE_CASE.
         
        string reason = 1;
        Specified by:
        getReason in interface ErrorInfoOrBuilder
        Returns:
        The reason.
      • getReasonBytes

        public com.google.protobuf.ByteString getReasonBytes()
         The reason of the error. This is a constant value that identifies the
         proximate cause of the error. Error reasons are unique within a particular
         domain of errors. This should be at most 63 characters and match a
         regular expression of `[A-Z][A-Z0-9_]+[A-Z0-9]`, which represents
         UPPER_SNAKE_CASE.
         
        string reason = 1;
        Specified by:
        getReasonBytes in interface ErrorInfoOrBuilder
        Returns:
        The bytes for reason.
      • getDomain

        public String getDomain()
         The logical grouping to which the "reason" belongs. The error domain
         is typically the registered service name of the tool or product that
         generates the error. Example: "pubsub.googleapis.com". If the error is
         generated by some common infrastructure, the error domain must be a
         globally unique value that identifies the infrastructure. For Google API
         infrastructure, the error domain is "googleapis.com".
         
        string domain = 2;
        Specified by:
        getDomain in interface ErrorInfoOrBuilder
        Returns:
        The domain.
      • getDomainBytes

        public com.google.protobuf.ByteString getDomainBytes()
         The logical grouping to which the "reason" belongs. The error domain
         is typically the registered service name of the tool or product that
         generates the error. Example: "pubsub.googleapis.com". If the error is
         generated by some common infrastructure, the error domain must be a
         globally unique value that identifies the infrastructure. For Google API
         infrastructure, the error domain is "googleapis.com".
         
        string domain = 2;
        Specified by:
        getDomainBytes in interface ErrorInfoOrBuilder
        Returns:
        The bytes for domain.
      • getMetadataCount

        public int getMetadataCount()
        Description copied from interface: ErrorInfoOrBuilder
         Additional structured details about this error.
         Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
         length. When identifying the current value of an exceeded limit, the units
         should be contained in the key, not the value.  For example, rather than
         {"instanceLimit": "100/request"}, should be returned as,
         {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
         instances that can be created in a single (batch) request.
         
        map<string, string> metadata = 3;
        Specified by:
        getMetadataCount in interface ErrorInfoOrBuilder
      • containsMetadata

        public boolean containsMetadata​(String key)
         Additional structured details about this error.
         Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
         length. When identifying the current value of an exceeded limit, the units
         should be contained in the key, not the value.  For example, rather than
         {"instanceLimit": "100/request"}, should be returned as,
         {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
         instances that can be created in a single (batch) request.
         
        map<string, string> metadata = 3;
        Specified by:
        containsMetadata in interface ErrorInfoOrBuilder
      • getMetadataMap

        public Map<String,​String> getMetadataMap()
         Additional structured details about this error.
         Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
         length. When identifying the current value of an exceeded limit, the units
         should be contained in the key, not the value.  For example, rather than
         {"instanceLimit": "100/request"}, should be returned as,
         {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
         instances that can be created in a single (batch) request.
         
        map<string, string> metadata = 3;
        Specified by:
        getMetadataMap in interface ErrorInfoOrBuilder
      • getMetadataOrDefault

        public String getMetadataOrDefault​(String key,
                                           String defaultValue)
         Additional structured details about this error.
         Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
         length. When identifying the current value of an exceeded limit, the units
         should be contained in the key, not the value.  For example, rather than
         {"instanceLimit": "100/request"}, should be returned as,
         {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
         instances that can be created in a single (batch) request.
         
        map<string, string> metadata = 3;
        Specified by:
        getMetadataOrDefault in interface ErrorInfoOrBuilder
      • getMetadataOrThrow

        public String getMetadataOrThrow​(String key)
         Additional structured details about this error.
         Keys should match /[a-zA-Z0-9-_]/ and be limited to 64 characters in
         length. When identifying the current value of an exceeded limit, the units
         should be contained in the key, not the value.  For example, rather than
         {"instanceLimit": "100/request"}, should be returned as,
         {"instanceLimitPerRequest": "100"}, if the client exceeds the number of
         instances that can be created in a single (batch) request.
         
        map<string, string> metadata = 3;
        Specified by:
        getMetadataOrThrow in interface ErrorInfoOrBuilder
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3
      • writeTo

        public void writeTo​(com.google.protobuf.CodedOutputStream output)
                     throws IOException
        Specified by:
        writeTo in interface com.google.protobuf.MessageLite
        Overrides:
        writeTo in class com.google.protobuf.GeneratedMessageV3
        Throws:
        IOException
      • getSerializedSize

        public int getSerializedSize()
        Specified by:
        getSerializedSize in interface com.google.protobuf.MessageLite
        Overrides:
        getSerializedSize in class com.google.protobuf.GeneratedMessageV3
      • equals

        public boolean equals​(Object obj)
        Specified by:
        equals in interface com.google.protobuf.Message
        Overrides:
        equals in class com.google.protobuf.AbstractMessage
      • hashCode

        public int hashCode()
        Specified by:
        hashCode in interface com.google.protobuf.Message
        Overrides:
        hashCode in class com.google.protobuf.AbstractMessage
      • parseFrom

        public static ErrorInfo parseFrom​(ByteBuffer data)
                                   throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static ErrorInfo parseFrom​(ByteBuffer data,
                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                   throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static ErrorInfo parseFrom​(com.google.protobuf.ByteString data)
                                   throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static ErrorInfo parseFrom​(com.google.protobuf.ByteString data,
                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                   throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static ErrorInfo parseFrom​(byte[] data)
                                   throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static ErrorInfo parseFrom​(byte[] data,
                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                   throws com.google.protobuf.InvalidProtocolBufferException
        Throws:
        com.google.protobuf.InvalidProtocolBufferException
      • parseFrom

        public static ErrorInfo parseFrom​(com.google.protobuf.CodedInputStream input,
                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                   throws IOException
        Throws:
        IOException
      • newBuilderForType

        public ErrorInfo.Builder newBuilderForType()
        Specified by:
        newBuilderForType in interface com.google.protobuf.Message
        Specified by:
        newBuilderForType in interface com.google.protobuf.MessageLite
      • toBuilder

        public ErrorInfo.Builder toBuilder()
        Specified by:
        toBuilder in interface com.google.protobuf.Message
        Specified by:
        toBuilder in interface com.google.protobuf.MessageLite
      • newBuilderForType

        protected ErrorInfo.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
        Specified by:
        newBuilderForType in class com.google.protobuf.GeneratedMessageV3
      • getDefaultInstance

        public static ErrorInfo getDefaultInstance()
      • parser

        public static com.google.protobuf.Parser<ErrorInfo> parser()
      • getParserForType

        public com.google.protobuf.Parser<ErrorInfo> getParserForType()
        Specified by:
        getParserForType in interface com.google.protobuf.Message
        Specified by:
        getParserForType in interface com.google.protobuf.MessageLite
        Overrides:
        getParserForType in class com.google.protobuf.GeneratedMessageV3
      • getDefaultInstanceForType

        public ErrorInfo getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder