Interface QuotaFailure.ViolationOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getDescription()
      A description of how the quota check failed.
      com.google.protobuf.ByteString getDescriptionBytes()
      A description of how the quota check failed.
      String getSubject()
      The subject on which the quota check failed.
      com.google.protobuf.ByteString getSubjectBytes()
      The subject on which the quota check failed.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getSubject

        String getSubject()
         The subject on which the quota check failed.
         For example, "clientip:<ip address of client>" or "project:<Google
         developer project id>".
         
        string subject = 1;
        Returns:
        The subject.
      • getSubjectBytes

        com.google.protobuf.ByteString getSubjectBytes()
         The subject on which the quota check failed.
         For example, "clientip:<ip address of client>" or "project:<Google
         developer project id>".
         
        string subject = 1;
        Returns:
        The bytes for subject.
      • getDescription

        String getDescription()
         A description of how the quota check failed. Clients can use this
         description to find more about the quota configuration in the service's
         public documentation, or find the relevant quota limit to adjust through
         developer console.
         For example: "Service disabled" or "Daily Limit for read operations
         exceeded".
         
        string description = 2;
        Returns:
        The description.
      • getDescriptionBytes

        com.google.protobuf.ByteString getDescriptionBytes()
         A description of how the quota check failed. Clients can use this
         description to find more about the quota configuration in the service's
         public documentation, or find the relevant quota limit to adjust through
         developer console.
         For example: "Service disabled" or "Daily Limit for read operations
         exceeded".
         
        string description = 2;
        Returns:
        The bytes for description.