public sealed class QuotaFailure : IMessage<QuotaFailure>, IEquatable<QuotaFailure>, IDeepCloneable<QuotaFailure>, IBufferMessage, IMessage
Describes how a quota check failed.
For example if a daily limit was exceeded for the calling project,
a service could respond with a QuotaFailure detail containing the project
id and the description of the quota limit that was exceeded. If the
calling project hasn't enabled the service in the developer console, then
a service could respond with the project id and set service_disabled
to true.
Also see RetryInfo and Help types for other details about handling a quota failure.
Implements
IMessageQuotaFailure, IEquatableQuotaFailure, IDeepCloneableQuotaFailure, IBufferMessage, IMessageNamespace
Google.RpcAssembly
Google.Api.CommonProtos.dll
Constructors
QuotaFailure()
public QuotaFailure()
QuotaFailure(QuotaFailure)
public QuotaFailure(QuotaFailure other)
Parameter | |
---|---|
Name | Description |
other |
QuotaFailure |
Fields
ViolationsFieldNumber
public const int ViolationsFieldNumber = 1
Field number for the "violations" field.
Field Value | |
---|---|
Type | Description |
int |
Properties
Descriptor
public static MessageDescriptor Descriptor { get; }
Property Value | |
---|---|
Type | Description |
MessageDescriptor |
Parser
public static MessageParser<QuotaFailure> Parser { get; }
Property Value | |
---|---|
Type | Description |
MessageParserQuotaFailure |
Violations
public RepeatedField<QuotaFailure.Types.Violation> Violations { get; }
Describes all quota violations.
Property Value | |
---|---|
Type | Description |
RepeatedFieldQuotaFailureTypesViolation |
Methods
CalculateSize()
public int CalculateSize()
Calculates the size of this message in Protocol Buffer wire format, in bytes.
Returns | |
---|---|
Type | Description |
int |
The number of bytes required to write this message to a coded output stream. |
Clone()
public QuotaFailure Clone()
Creates a deep clone of this object.
Returns | |
---|---|
Type | Description |
QuotaFailure |
A deep clone of this object. |
Equals(QuotaFailure)
public bool Equals(QuotaFailure other)
Parameter | |
---|---|
Name | Description |
other |
QuotaFailure |
Returns | |
---|---|
Type | Description |
bool |
Equals(object)
public override bool Equals(object other)
Parameter | |
---|---|
Name | Description |
other |
object |
Returns | |
---|---|
Type | Description |
bool |
GetHashCode()
public override int GetHashCode()
Returns | |
---|---|
Type | Description |
int |
MergeFrom(CodedInputStream)
public void MergeFrom(CodedInputStream input)
Merges the data from the specified coded input stream with the current message.
Parameter | |
---|---|
Name | Description |
input |
CodedInputStream |
See the user guide for precise merge semantics.
MergeFrom(QuotaFailure)
public void MergeFrom(QuotaFailure other)
Merges the given message into this one.
Parameter | |
---|---|
Name | Description |
other |
QuotaFailure |
See the user guide for precise merge semantics.
ToString()
public override string ToString()
Returns | |
---|---|
Type | Description |
string |
WriteTo(CodedOutputStream)
public void WriteTo(CodedOutputStream output)
Writes the data to the given coded output stream.
Parameter | |
---|---|
Name | Description |
output |
CodedOutputStream Coded output stream to write the data to. Must not be null. |