Package com.google.rpc
Interface QuotaFailure.ViolationOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
QuotaFailure.Violation
,QuotaFailure.Violation.Builder
- Enclosing class:
- QuotaFailure
public static interface QuotaFailure.ViolationOrBuilder
extends com.google.protobuf.MessageLiteOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionA description of how the quota check failed.com.google.protobuf.ByteString
A description of how the quota check failed.The subject on which the quota check failed.com.google.protobuf.ByteString
The subject on which the quota check failed.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType, isInitialized
-
Method Details
-
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 [json_name = "subject"];
- 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 [json_name = "subject"];
- 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 [json_name = "description"];
- 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 [json_name = "description"];
- Returns:
- The bytes for description.
-