Class QuotaOperation (1.45.0)

public final class QuotaOperation extends GeneratedMessageV3 implements QuotaOperationOrBuilder

Represents information regarding a quota operation.

Protobuf type google.api.servicecontrol.v1.QuotaOperation

Static Fields

CONSUMER_ID_FIELD_NUMBER

public static final int CONSUMER_ID_FIELD_NUMBER
Field Value
Type Description
int

LABELS_FIELD_NUMBER

public static final int LABELS_FIELD_NUMBER
Field Value
Type Description
int

METHOD_NAME_FIELD_NUMBER

public static final int METHOD_NAME_FIELD_NUMBER
Field Value
Type Description
int

OPERATION_ID_FIELD_NUMBER

public static final int OPERATION_ID_FIELD_NUMBER
Field Value
Type Description
int

QUOTA_METRICS_FIELD_NUMBER

public static final int QUOTA_METRICS_FIELD_NUMBER
Field Value
Type Description
int

QUOTA_MODE_FIELD_NUMBER

public static final int QUOTA_MODE_FIELD_NUMBER
Field Value
Type Description
int

Static Methods

getDefaultInstance()

public static QuotaOperation getDefaultInstance()
Returns
Type Description
QuotaOperation

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

newBuilder()

public static QuotaOperation.Builder newBuilder()
Returns
Type Description
QuotaOperation.Builder

newBuilder(QuotaOperation prototype)

public static QuotaOperation.Builder newBuilder(QuotaOperation prototype)
Parameter
Name Description
prototype QuotaOperation
Returns
Type Description
QuotaOperation.Builder

parseDelimitedFrom(InputStream input)

public static QuotaOperation parseDelimitedFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
QuotaOperation
Exceptions
Type Description
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static QuotaOperation parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
QuotaOperation
Exceptions
Type Description
IOException

parseFrom(byte[] data)

public static QuotaOperation parseFrom(byte[] data)
Parameter
Name Description
data byte[]
Returns
Type Description
QuotaOperation
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static QuotaOperation parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data byte[]
extensionRegistry ExtensionRegistryLite
Returns
Type Description
QuotaOperation
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data)

public static QuotaOperation parseFrom(ByteString data)
Parameter
Name Description
data ByteString
Returns
Type Description
QuotaOperation
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static QuotaOperation parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteString
extensionRegistry ExtensionRegistryLite
Returns
Type Description
QuotaOperation
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static QuotaOperation parseFrom(CodedInputStream input)
Parameter
Name Description
input CodedInputStream
Returns
Type Description
QuotaOperation
Exceptions
Type Description
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static QuotaOperation parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
QuotaOperation
Exceptions
Type Description
IOException

parseFrom(InputStream input)

public static QuotaOperation parseFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
QuotaOperation
Exceptions
Type Description
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static QuotaOperation parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
QuotaOperation
Exceptions
Type Description
IOException

parseFrom(ByteBuffer data)

public static QuotaOperation parseFrom(ByteBuffer data)
Parameter
Name Description
data ByteBuffer
Returns
Type Description
QuotaOperation
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static QuotaOperation parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteBuffer
extensionRegistry ExtensionRegistryLite
Returns
Type Description
QuotaOperation
Exceptions
Type Description
InvalidProtocolBufferException

parser()

public static Parser<QuotaOperation> parser()
Returns
Type Description
Parser<QuotaOperation>

Methods

containsLabels(String key)

public boolean containsLabels(String key)

Labels describing the operation.

map<string, string> labels = 4;

Parameter
Name Description
key String
Returns
Type Description
boolean

equals(Object obj)

public boolean equals(Object obj)
Parameter
Name Description
obj Object
Returns
Type Description
boolean
Overrides

getConsumerId()

public String getConsumerId()

Identity of the consumer for whom this quota operation is being performed.

This can be in one of the following formats: project:<project_id>, project_number:<project_number>, api_key:<api_key>.

string consumer_id = 3;

Returns
Type Description
String

The consumerId.

getConsumerIdBytes()

public ByteString getConsumerIdBytes()

Identity of the consumer for whom this quota operation is being performed.

This can be in one of the following formats: project:<project_id>, project_number:<project_number>, api_key:<api_key>.

string consumer_id = 3;

Returns
Type Description
ByteString

The bytes for consumerId.

getDefaultInstanceForType()

public QuotaOperation getDefaultInstanceForType()
Returns
Type Description
QuotaOperation

getLabels() (deprecated)

public Map<String,String> getLabels()

Use #getLabelsMap() instead.

Returns
Type Description
Map<String,String>

getLabelsCount()

public int getLabelsCount()

Labels describing the operation.

map<string, string> labels = 4;

Returns
Type Description
int

getLabelsMap()

public Map<String,String> getLabelsMap()

Labels describing the operation.

map<string, string> labels = 4;

Returns
Type Description
Map<String,String>

getLabelsOrDefault(String key, String defaultValue)

public String getLabelsOrDefault(String key, String defaultValue)

Labels describing the operation.

map<string, string> labels = 4;

Parameters
Name Description
key String
defaultValue String
Returns
Type Description
String

getLabelsOrThrow(String key)

public String getLabelsOrThrow(String key)

Labels describing the operation.

map<string, string> labels = 4;

Parameter
Name Description
key String
Returns
Type Description
String

getMethodName()

public String getMethodName()

Fully qualified name of the API method for which this quota operation is requested. This name is used for matching quota rules or metric rules and billing status rules defined in service configuration.

This field should not be set if any of the following is true: (1) the quota operation is performed on non-API resources. (2) quota_metrics is set because the caller is doing quota override.

Example of an RPC method name: google.example.library.v1.LibraryService.CreateShelf

string method_name = 2;

Returns
Type Description
String

The methodName.

getMethodNameBytes()

public ByteString getMethodNameBytes()

Fully qualified name of the API method for which this quota operation is requested. This name is used for matching quota rules or metric rules and billing status rules defined in service configuration.

This field should not be set if any of the following is true: (1) the quota operation is performed on non-API resources. (2) quota_metrics is set because the caller is doing quota override.

Example of an RPC method name: google.example.library.v1.LibraryService.CreateShelf

string method_name = 2;

Returns
Type Description
ByteString

The bytes for methodName.

getOperationId()

public String getOperationId()

Identity of the operation. This is expected to be unique within the scope of the service that generated the operation, and guarantees idempotency in case of retries.

In order to ensure best performance and latency in the Quota backends, operation_ids are optimally associated with time, so that related operations can be accessed fast in storage. For this reason, the recommended token for services that intend to operate at a high QPS is Unix time in nanos + UUID

string operation_id = 1;

Returns
Type Description
String

The operationId.

getOperationIdBytes()

public ByteString getOperationIdBytes()

Identity of the operation. This is expected to be unique within the scope of the service that generated the operation, and guarantees idempotency in case of retries.

In order to ensure best performance and latency in the Quota backends, operation_ids are optimally associated with time, so that related operations can be accessed fast in storage. For this reason, the recommended token for services that intend to operate at a high QPS is Unix time in nanos + UUID

string operation_id = 1;

Returns
Type Description
ByteString

The bytes for operationId.

getParserForType()

public Parser<QuotaOperation> getParserForType()
Returns
Type Description
Parser<QuotaOperation>
Overrides

getQuotaMetrics(int index)

public MetricValueSet getQuotaMetrics(int index)

Represents information about this operation. Each MetricValueSet corresponds to a metric defined in the service configuration. The data type used in the MetricValueSet must agree with the data type specified in the metric definition.

Within a single operation, it is not allowed to have more than one MetricValue instances that have the same metric names and identical label value combinations. If a request has such duplicated MetricValue instances, the entire request is rejected with an invalid argument error.

This field is mutually exclusive with method_name.

repeated .google.api.servicecontrol.v1.MetricValueSet quota_metrics = 5;

Parameter
Name Description
index int
Returns
Type Description
MetricValueSet

getQuotaMetricsCount()

public int getQuotaMetricsCount()

Represents information about this operation. Each MetricValueSet corresponds to a metric defined in the service configuration. The data type used in the MetricValueSet must agree with the data type specified in the metric definition.

Within a single operation, it is not allowed to have more than one MetricValue instances that have the same metric names and identical label value combinations. If a request has such duplicated MetricValue instances, the entire request is rejected with an invalid argument error.

This field is mutually exclusive with method_name.

repeated .google.api.servicecontrol.v1.MetricValueSet quota_metrics = 5;

Returns
Type Description
int

getQuotaMetricsList()

public List<MetricValueSet> getQuotaMetricsList()

Represents information about this operation. Each MetricValueSet corresponds to a metric defined in the service configuration. The data type used in the MetricValueSet must agree with the data type specified in the metric definition.

Within a single operation, it is not allowed to have more than one MetricValue instances that have the same metric names and identical label value combinations. If a request has such duplicated MetricValue instances, the entire request is rejected with an invalid argument error.

This field is mutually exclusive with method_name.

repeated .google.api.servicecontrol.v1.MetricValueSet quota_metrics = 5;

Returns
Type Description
List<MetricValueSet>

getQuotaMetricsOrBuilder(int index)

public MetricValueSetOrBuilder getQuotaMetricsOrBuilder(int index)

Represents information about this operation. Each MetricValueSet corresponds to a metric defined in the service configuration. The data type used in the MetricValueSet must agree with the data type specified in the metric definition.

Within a single operation, it is not allowed to have more than one MetricValue instances that have the same metric names and identical label value combinations. If a request has such duplicated MetricValue instances, the entire request is rejected with an invalid argument error.

This field is mutually exclusive with method_name.

repeated .google.api.servicecontrol.v1.MetricValueSet quota_metrics = 5;

Parameter
Name Description
index int
Returns
Type Description
MetricValueSetOrBuilder

getQuotaMetricsOrBuilderList()

public List<? extends MetricValueSetOrBuilder> getQuotaMetricsOrBuilderList()

Represents information about this operation. Each MetricValueSet corresponds to a metric defined in the service configuration. The data type used in the MetricValueSet must agree with the data type specified in the metric definition.

Within a single operation, it is not allowed to have more than one MetricValue instances that have the same metric names and identical label value combinations. If a request has such duplicated MetricValue instances, the entire request is rejected with an invalid argument error.

This field is mutually exclusive with method_name.

repeated .google.api.servicecontrol.v1.MetricValueSet quota_metrics = 5;

Returns
Type Description
List<? extends com.google.api.servicecontrol.v1.MetricValueSetOrBuilder>

getQuotaMode()

public QuotaOperation.QuotaMode getQuotaMode()

Quota mode for this operation.

.google.api.servicecontrol.v1.QuotaOperation.QuotaMode quota_mode = 6;

Returns
Type Description
QuotaOperation.QuotaMode

The quotaMode.

getQuotaModeValue()

public int getQuotaModeValue()

Quota mode for this operation.

.google.api.servicecontrol.v1.QuotaOperation.QuotaMode quota_mode = 6;

Returns
Type Description
int

The enum numeric value on the wire for quotaMode.

getSerializedSize()

public int getSerializedSize()
Returns
Type Description
int
Overrides

hashCode()

public int hashCode()
Returns
Type Description
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

internalGetMapFieldReflection(int number)

protected MapFieldReflectionAccessor internalGetMapFieldReflection(int number)
Parameter
Name Description
number int
Returns
Type Description
com.google.protobuf.MapFieldReflectionAccessor
Overrides
com.google.protobuf.GeneratedMessageV3.internalGetMapFieldReflection(int)

isInitialized()

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

newBuilderForType()

public QuotaOperation.Builder newBuilderForType()
Returns
Type Description
QuotaOperation.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected QuotaOperation.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
Name Description
parent BuilderParent
Returns
Type Description
QuotaOperation.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
Name Description
unused UnusedPrivateParameter
Returns
Type Description
Object
Overrides

toBuilder()

public QuotaOperation.Builder toBuilder()
Returns
Type Description
QuotaOperation.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
Name Description
output CodedOutputStream
Overrides
Exceptions
Type Description
IOException