nl.topicus.jdbc.shaded.com.google.api.Quota Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spanner-jdbc Show documentation
Show all versions of spanner-jdbc Show documentation
JDBC Driver for Google Cloud Spanner
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/quota.proto
package nl.topicus.jdbc.shaded.com.google.api;
/**
*
* Quota configuration helps to achieve fairness and budgeting in service
* usage.
* The quota configuration works this way:
* - The service configuration defines a set of metrics.
* - For API calls, the quota.metric_rules maps methods to metrics with
* corresponding costs.
* - The quota.limits defines limits on the metrics, which will be used for
* quota checks at runtime.
* An example quota configuration in yaml format:
* quota:
* limits:
* - name: apiWriteQpsPerProject
* metric: library.googleapis.com/write_calls
* unit: "1/min/{project}" # rate limit for consumer projects
* values:
* STANDARD: 10000
* # The metric rules bind all methods to the read_calls metric,
* # except for the UpdateBook and DeleteBook methods. These two methods
* # are mapped to the write_calls metric, with the UpdateBook method
* # consuming at twice rate as the DeleteBook method.
* metric_rules:
* - selector: "*"
* metric_costs:
* library.googleapis.com/read_calls: 1
* - selector: google.example.library.v1.LibraryService.UpdateBook
* metric_costs:
* library.googleapis.com/write_calls: 2
* - selector: google.example.library.v1.LibraryService.DeleteBook
* metric_costs:
* library.googleapis.com/write_calls: 1
* Corresponding Metric definition:
* metrics:
* - name: library.googleapis.com/read_calls
* display_name: Read requests
* metric_kind: DELTA
* value_type: INT64
* - name: library.googleapis.com/write_calls
* display_name: Write requests
* metric_kind: DELTA
* value_type: INT64
*
*
* Protobuf type {@code google.api.Quota}
*/
public final class Quota extends
nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:google.api.Quota)
QuotaOrBuilder {
private static final long serialVersionUID = 0L;
// Use Quota.newBuilder() to construct.
private Quota(nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Quota() {
limits_ = java.util.Collections.emptyList();
metricRules_ = java.util.Collections.emptyList();
}
@java.lang.Override
public final nl.topicus.jdbc.shaded.com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private Quota(
nl.topicus.jdbc.shaded.com.google.protobuf.CodedInputStream input,
nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
nl.topicus.jdbc.shaded.com.google.protobuf.UnknownFieldSet.Builder unknownFields =
nl.topicus.jdbc.shaded.com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!parseUnknownFieldProto3(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
case 26: {
if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
limits_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
limits_.add(
input.readMessage(nl.topicus.jdbc.shaded.com.google.api.QuotaLimit.parser(), extensionRegistry));
break;
}
case 34: {
if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
metricRules_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
metricRules_.add(
input.readMessage(nl.topicus.jdbc.shaded.com.google.api.MetricRule.parser(), extensionRegistry));
break;
}
}
}
} catch (nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
limits_ = java.util.Collections.unmodifiableList(limits_);
}
if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
metricRules_ = java.util.Collections.unmodifiableList(metricRules_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return nl.topicus.jdbc.shaded.com.google.api.QuotaProto.internal_static_google_api_Quota_descriptor;
}
protected nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return nl.topicus.jdbc.shaded.com.google.api.QuotaProto.internal_static_google_api_Quota_fieldAccessorTable
.ensureFieldAccessorsInitialized(
nl.topicus.jdbc.shaded.com.google.api.Quota.class, nl.topicus.jdbc.shaded.com.google.api.Quota.Builder.class);
}
public static final int LIMITS_FIELD_NUMBER = 3;
private java.util.List limits_;
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public java.util.List getLimitsList() {
return limits_;
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public java.util.List extends nl.topicus.jdbc.shaded.com.google.api.QuotaLimitOrBuilder>
getLimitsOrBuilderList() {
return limits_;
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public int getLimitsCount() {
return limits_.size();
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public nl.topicus.jdbc.shaded.com.google.api.QuotaLimit getLimits(int index) {
return limits_.get(index);
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public nl.topicus.jdbc.shaded.com.google.api.QuotaLimitOrBuilder getLimitsOrBuilder(
int index) {
return limits_.get(index);
}
public static final int METRIC_RULES_FIELD_NUMBER = 4;
private java.util.List metricRules_;
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public java.util.List getMetricRulesList() {
return metricRules_;
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public java.util.List extends nl.topicus.jdbc.shaded.com.google.api.MetricRuleOrBuilder>
getMetricRulesOrBuilderList() {
return metricRules_;
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public int getMetricRulesCount() {
return metricRules_.size();
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public nl.topicus.jdbc.shaded.com.google.api.MetricRule getMetricRules(int index) {
return metricRules_.get(index);
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public nl.topicus.jdbc.shaded.com.google.api.MetricRuleOrBuilder getMetricRulesOrBuilder(
int index) {
return metricRules_.get(index);
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(nl.topicus.jdbc.shaded.com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
for (int i = 0; i < limits_.size(); i++) {
output.writeMessage(3, limits_.get(i));
}
for (int i = 0; i < metricRules_.size(); i++) {
output.writeMessage(4, metricRules_.get(i));
}
unknownFields.writeTo(output);
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < limits_.size(); i++) {
size += nl.topicus.jdbc.shaded.com.google.protobuf.CodedOutputStream
.computeMessageSize(3, limits_.get(i));
}
for (int i = 0; i < metricRules_.size(); i++) {
size += nl.topicus.jdbc.shaded.com.google.protobuf.CodedOutputStream
.computeMessageSize(4, metricRules_.get(i));
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof nl.topicus.jdbc.shaded.com.google.api.Quota)) {
return super.equals(obj);
}
nl.topicus.jdbc.shaded.com.google.api.Quota other = (nl.topicus.jdbc.shaded.com.google.api.Quota) obj;
boolean result = true;
result = result && getLimitsList()
.equals(other.getLimitsList());
result = result && getMetricRulesList()
.equals(other.getMetricRulesList());
result = result && unknownFields.equals(other.unknownFields);
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (getLimitsCount() > 0) {
hash = (37 * hash) + LIMITS_FIELD_NUMBER;
hash = (53 * hash) + getLimitsList().hashCode();
}
if (getMetricRulesCount() > 0) {
hash = (37 * hash) + METRIC_RULES_FIELD_NUMBER;
hash = (53 * hash) + getMetricRulesList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static nl.topicus.jdbc.shaded.com.google.api.Quota parseFrom(
java.nio.ByteBuffer data)
throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static nl.topicus.jdbc.shaded.com.google.api.Quota parseFrom(
java.nio.ByteBuffer data,
nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static nl.topicus.jdbc.shaded.com.google.api.Quota parseFrom(
nl.topicus.jdbc.shaded.com.google.protobuf.ByteString data)
throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static nl.topicus.jdbc.shaded.com.google.api.Quota parseFrom(
nl.topicus.jdbc.shaded.com.google.protobuf.ByteString data,
nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static nl.topicus.jdbc.shaded.com.google.api.Quota parseFrom(byte[] data)
throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static nl.topicus.jdbc.shaded.com.google.api.Quota parseFrom(
byte[] data,
nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static nl.topicus.jdbc.shaded.com.google.api.Quota parseFrom(java.io.InputStream input)
throws java.io.IOException {
return nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static nl.topicus.jdbc.shaded.com.google.api.Quota parseFrom(
java.io.InputStream input,
nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static nl.topicus.jdbc.shaded.com.google.api.Quota parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static nl.topicus.jdbc.shaded.com.google.api.Quota parseDelimitedFrom(
java.io.InputStream input,
nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static nl.topicus.jdbc.shaded.com.google.api.Quota parseFrom(
nl.topicus.jdbc.shaded.com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static nl.topicus.jdbc.shaded.com.google.api.Quota parseFrom(
nl.topicus.jdbc.shaded.com.google.protobuf.CodedInputStream input,
nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(nl.topicus.jdbc.shaded.com.google.api.Quota prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* Quota configuration helps to achieve fairness and budgeting in service
* usage.
* The quota configuration works this way:
* - The service configuration defines a set of metrics.
* - For API calls, the quota.metric_rules maps methods to metrics with
* corresponding costs.
* - The quota.limits defines limits on the metrics, which will be used for
* quota checks at runtime.
* An example quota configuration in yaml format:
* quota:
* limits:
* - name: apiWriteQpsPerProject
* metric: library.googleapis.com/write_calls
* unit: "1/min/{project}" # rate limit for consumer projects
* values:
* STANDARD: 10000
* # The metric rules bind all methods to the read_calls metric,
* # except for the UpdateBook and DeleteBook methods. These two methods
* # are mapped to the write_calls metric, with the UpdateBook method
* # consuming at twice rate as the DeleteBook method.
* metric_rules:
* - selector: "*"
* metric_costs:
* library.googleapis.com/read_calls: 1
* - selector: google.example.library.v1.LibraryService.UpdateBook
* metric_costs:
* library.googleapis.com/write_calls: 2
* - selector: google.example.library.v1.LibraryService.DeleteBook
* metric_costs:
* library.googleapis.com/write_calls: 1
* Corresponding Metric definition:
* metrics:
* - name: library.googleapis.com/read_calls
* display_name: Read requests
* metric_kind: DELTA
* value_type: INT64
* - name: library.googleapis.com/write_calls
* display_name: Write requests
* metric_kind: DELTA
* value_type: INT64
*
*
* Protobuf type {@code google.api.Quota}
*/
public static final class Builder extends
nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:google.api.Quota)
nl.topicus.jdbc.shaded.com.google.api.QuotaOrBuilder {
public static final nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return nl.topicus.jdbc.shaded.com.google.api.QuotaProto.internal_static_google_api_Quota_descriptor;
}
protected nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return nl.topicus.jdbc.shaded.com.google.api.QuotaProto.internal_static_google_api_Quota_fieldAccessorTable
.ensureFieldAccessorsInitialized(
nl.topicus.jdbc.shaded.com.google.api.Quota.class, nl.topicus.jdbc.shaded.com.google.api.Quota.Builder.class);
}
// Construct using nl.topicus.jdbc.shaded.com.google.api.Quota.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getLimitsFieldBuilder();
getMetricRulesFieldBuilder();
}
}
public Builder clear() {
super.clear();
if (limitsBuilder_ == null) {
limits_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
limitsBuilder_.clear();
}
if (metricRulesBuilder_ == null) {
metricRules_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
} else {
metricRulesBuilder_.clear();
}
return this;
}
public nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return nl.topicus.jdbc.shaded.com.google.api.QuotaProto.internal_static_google_api_Quota_descriptor;
}
public nl.topicus.jdbc.shaded.com.google.api.Quota getDefaultInstanceForType() {
return nl.topicus.jdbc.shaded.com.google.api.Quota.getDefaultInstance();
}
public nl.topicus.jdbc.shaded.com.google.api.Quota build() {
nl.topicus.jdbc.shaded.com.google.api.Quota result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public nl.topicus.jdbc.shaded.com.google.api.Quota buildPartial() {
nl.topicus.jdbc.shaded.com.google.api.Quota result = new nl.topicus.jdbc.shaded.com.google.api.Quota(this);
int from_bitField0_ = bitField0_;
if (limitsBuilder_ == null) {
if (((bitField0_ & 0x00000001) == 0x00000001)) {
limits_ = java.util.Collections.unmodifiableList(limits_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.limits_ = limits_;
} else {
result.limits_ = limitsBuilder_.build();
}
if (metricRulesBuilder_ == null) {
if (((bitField0_ & 0x00000002) == 0x00000002)) {
metricRules_ = java.util.Collections.unmodifiableList(metricRules_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.metricRules_ = metricRules_;
} else {
result.metricRules_ = metricRulesBuilder_.build();
}
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
nl.topicus.jdbc.shaded.com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(nl.topicus.jdbc.shaded.com.google.protobuf.Message other) {
if (other instanceof nl.topicus.jdbc.shaded.com.google.api.Quota) {
return mergeFrom((nl.topicus.jdbc.shaded.com.google.api.Quota)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(nl.topicus.jdbc.shaded.com.google.api.Quota other) {
if (other == nl.topicus.jdbc.shaded.com.google.api.Quota.getDefaultInstance()) return this;
if (limitsBuilder_ == null) {
if (!other.limits_.isEmpty()) {
if (limits_.isEmpty()) {
limits_ = other.limits_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureLimitsIsMutable();
limits_.addAll(other.limits_);
}
onChanged();
}
} else {
if (!other.limits_.isEmpty()) {
if (limitsBuilder_.isEmpty()) {
limitsBuilder_.dispose();
limitsBuilder_ = null;
limits_ = other.limits_;
bitField0_ = (bitField0_ & ~0x00000001);
limitsBuilder_ =
nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getLimitsFieldBuilder() : null;
} else {
limitsBuilder_.addAllMessages(other.limits_);
}
}
}
if (metricRulesBuilder_ == null) {
if (!other.metricRules_.isEmpty()) {
if (metricRules_.isEmpty()) {
metricRules_ = other.metricRules_;
bitField0_ = (bitField0_ & ~0x00000002);
} else {
ensureMetricRulesIsMutable();
metricRules_.addAll(other.metricRules_);
}
onChanged();
}
} else {
if (!other.metricRules_.isEmpty()) {
if (metricRulesBuilder_.isEmpty()) {
metricRulesBuilder_.dispose();
metricRulesBuilder_ = null;
metricRules_ = other.metricRules_;
bitField0_ = (bitField0_ & ~0x00000002);
metricRulesBuilder_ =
nl.topicus.jdbc.shaded.com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getMetricRulesFieldBuilder() : null;
} else {
metricRulesBuilder_.addAllMessages(other.metricRules_);
}
}
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
nl.topicus.jdbc.shaded.com.google.protobuf.CodedInputStream input,
nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
nl.topicus.jdbc.shaded.com.google.api.Quota parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (nl.topicus.jdbc.shaded.com.google.api.Quota) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.util.List limits_ =
java.util.Collections.emptyList();
private void ensureLimitsIsMutable() {
if (!((bitField0_ & 0x00000001) == 0x00000001)) {
limits_ = new java.util.ArrayList(limits_);
bitField0_ |= 0x00000001;
}
}
private nl.topicus.jdbc.shaded.com.google.protobuf.RepeatedFieldBuilderV3<
nl.topicus.jdbc.shaded.com.google.api.QuotaLimit, nl.topicus.jdbc.shaded.com.google.api.QuotaLimit.Builder, nl.topicus.jdbc.shaded.com.google.api.QuotaLimitOrBuilder> limitsBuilder_;
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public java.util.List getLimitsList() {
if (limitsBuilder_ == null) {
return java.util.Collections.unmodifiableList(limits_);
} else {
return limitsBuilder_.getMessageList();
}
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public int getLimitsCount() {
if (limitsBuilder_ == null) {
return limits_.size();
} else {
return limitsBuilder_.getCount();
}
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public nl.topicus.jdbc.shaded.com.google.api.QuotaLimit getLimits(int index) {
if (limitsBuilder_ == null) {
return limits_.get(index);
} else {
return limitsBuilder_.getMessage(index);
}
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder setLimits(
int index, nl.topicus.jdbc.shaded.com.google.api.QuotaLimit value) {
if (limitsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLimitsIsMutable();
limits_.set(index, value);
onChanged();
} else {
limitsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder setLimits(
int index, nl.topicus.jdbc.shaded.com.google.api.QuotaLimit.Builder builderForValue) {
if (limitsBuilder_ == null) {
ensureLimitsIsMutable();
limits_.set(index, builderForValue.build());
onChanged();
} else {
limitsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder addLimits(nl.topicus.jdbc.shaded.com.google.api.QuotaLimit value) {
if (limitsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLimitsIsMutable();
limits_.add(value);
onChanged();
} else {
limitsBuilder_.addMessage(value);
}
return this;
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder addLimits(
int index, nl.topicus.jdbc.shaded.com.google.api.QuotaLimit value) {
if (limitsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureLimitsIsMutable();
limits_.add(index, value);
onChanged();
} else {
limitsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder addLimits(
nl.topicus.jdbc.shaded.com.google.api.QuotaLimit.Builder builderForValue) {
if (limitsBuilder_ == null) {
ensureLimitsIsMutable();
limits_.add(builderForValue.build());
onChanged();
} else {
limitsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder addLimits(
int index, nl.topicus.jdbc.shaded.com.google.api.QuotaLimit.Builder builderForValue) {
if (limitsBuilder_ == null) {
ensureLimitsIsMutable();
limits_.add(index, builderForValue.build());
onChanged();
} else {
limitsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder addAllLimits(
java.lang.Iterable extends nl.topicus.jdbc.shaded.com.google.api.QuotaLimit> values) {
if (limitsBuilder_ == null) {
ensureLimitsIsMutable();
nl.topicus.jdbc.shaded.com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, limits_);
onChanged();
} else {
limitsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder clearLimits() {
if (limitsBuilder_ == null) {
limits_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
limitsBuilder_.clear();
}
return this;
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder removeLimits(int index) {
if (limitsBuilder_ == null) {
ensureLimitsIsMutable();
limits_.remove(index);
onChanged();
} else {
limitsBuilder_.remove(index);
}
return this;
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public nl.topicus.jdbc.shaded.com.google.api.QuotaLimit.Builder getLimitsBuilder(
int index) {
return getLimitsFieldBuilder().getBuilder(index);
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public nl.topicus.jdbc.shaded.com.google.api.QuotaLimitOrBuilder getLimitsOrBuilder(
int index) {
if (limitsBuilder_ == null) {
return limits_.get(index); } else {
return limitsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public java.util.List extends nl.topicus.jdbc.shaded.com.google.api.QuotaLimitOrBuilder>
getLimitsOrBuilderList() {
if (limitsBuilder_ != null) {
return limitsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(limits_);
}
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public nl.topicus.jdbc.shaded.com.google.api.QuotaLimit.Builder addLimitsBuilder() {
return getLimitsFieldBuilder().addBuilder(
nl.topicus.jdbc.shaded.com.google.api.QuotaLimit.getDefaultInstance());
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public nl.topicus.jdbc.shaded.com.google.api.QuotaLimit.Builder addLimitsBuilder(
int index) {
return getLimitsFieldBuilder().addBuilder(
index, nl.topicus.jdbc.shaded.com.google.api.QuotaLimit.getDefaultInstance());
}
/**
*
* List of `QuotaLimit` definitions for the service.
* Used by metric-based quotas only.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public java.util.List
getLimitsBuilderList() {
return getLimitsFieldBuilder().getBuilderList();
}
private nl.topicus.jdbc.shaded.com.google.protobuf.RepeatedFieldBuilderV3<
nl.topicus.jdbc.shaded.com.google.api.QuotaLimit, nl.topicus.jdbc.shaded.com.google.api.QuotaLimit.Builder, nl.topicus.jdbc.shaded.com.google.api.QuotaLimitOrBuilder>
getLimitsFieldBuilder() {
if (limitsBuilder_ == null) {
limitsBuilder_ = new nl.topicus.jdbc.shaded.com.google.protobuf.RepeatedFieldBuilderV3<
nl.topicus.jdbc.shaded.com.google.api.QuotaLimit, nl.topicus.jdbc.shaded.com.google.api.QuotaLimit.Builder, nl.topicus.jdbc.shaded.com.google.api.QuotaLimitOrBuilder>(
limits_,
((bitField0_ & 0x00000001) == 0x00000001),
getParentForChildren(),
isClean());
limits_ = null;
}
return limitsBuilder_;
}
private java.util.List metricRules_ =
java.util.Collections.emptyList();
private void ensureMetricRulesIsMutable() {
if (!((bitField0_ & 0x00000002) == 0x00000002)) {
metricRules_ = new java.util.ArrayList(metricRules_);
bitField0_ |= 0x00000002;
}
}
private nl.topicus.jdbc.shaded.com.google.protobuf.RepeatedFieldBuilderV3<
nl.topicus.jdbc.shaded.com.google.api.MetricRule, nl.topicus.jdbc.shaded.com.google.api.MetricRule.Builder, nl.topicus.jdbc.shaded.com.google.api.MetricRuleOrBuilder> metricRulesBuilder_;
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public java.util.List getMetricRulesList() {
if (metricRulesBuilder_ == null) {
return java.util.Collections.unmodifiableList(metricRules_);
} else {
return metricRulesBuilder_.getMessageList();
}
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public int getMetricRulesCount() {
if (metricRulesBuilder_ == null) {
return metricRules_.size();
} else {
return metricRulesBuilder_.getCount();
}
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public nl.topicus.jdbc.shaded.com.google.api.MetricRule getMetricRules(int index) {
if (metricRulesBuilder_ == null) {
return metricRules_.get(index);
} else {
return metricRulesBuilder_.getMessage(index);
}
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder setMetricRules(
int index, nl.topicus.jdbc.shaded.com.google.api.MetricRule value) {
if (metricRulesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMetricRulesIsMutable();
metricRules_.set(index, value);
onChanged();
} else {
metricRulesBuilder_.setMessage(index, value);
}
return this;
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder setMetricRules(
int index, nl.topicus.jdbc.shaded.com.google.api.MetricRule.Builder builderForValue) {
if (metricRulesBuilder_ == null) {
ensureMetricRulesIsMutable();
metricRules_.set(index, builderForValue.build());
onChanged();
} else {
metricRulesBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder addMetricRules(nl.topicus.jdbc.shaded.com.google.api.MetricRule value) {
if (metricRulesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMetricRulesIsMutable();
metricRules_.add(value);
onChanged();
} else {
metricRulesBuilder_.addMessage(value);
}
return this;
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder addMetricRules(
int index, nl.topicus.jdbc.shaded.com.google.api.MetricRule value) {
if (metricRulesBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureMetricRulesIsMutable();
metricRules_.add(index, value);
onChanged();
} else {
metricRulesBuilder_.addMessage(index, value);
}
return this;
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder addMetricRules(
nl.topicus.jdbc.shaded.com.google.api.MetricRule.Builder builderForValue) {
if (metricRulesBuilder_ == null) {
ensureMetricRulesIsMutable();
metricRules_.add(builderForValue.build());
onChanged();
} else {
metricRulesBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder addMetricRules(
int index, nl.topicus.jdbc.shaded.com.google.api.MetricRule.Builder builderForValue) {
if (metricRulesBuilder_ == null) {
ensureMetricRulesIsMutable();
metricRules_.add(index, builderForValue.build());
onChanged();
} else {
metricRulesBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder addAllMetricRules(
java.lang.Iterable extends nl.topicus.jdbc.shaded.com.google.api.MetricRule> values) {
if (metricRulesBuilder_ == null) {
ensureMetricRulesIsMutable();
nl.topicus.jdbc.shaded.com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, metricRules_);
onChanged();
} else {
metricRulesBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder clearMetricRules() {
if (metricRulesBuilder_ == null) {
metricRules_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
} else {
metricRulesBuilder_.clear();
}
return this;
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder removeMetricRules(int index) {
if (metricRulesBuilder_ == null) {
ensureMetricRulesIsMutable();
metricRules_.remove(index);
onChanged();
} else {
metricRulesBuilder_.remove(index);
}
return this;
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public nl.topicus.jdbc.shaded.com.google.api.MetricRule.Builder getMetricRulesBuilder(
int index) {
return getMetricRulesFieldBuilder().getBuilder(index);
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public nl.topicus.jdbc.shaded.com.google.api.MetricRuleOrBuilder getMetricRulesOrBuilder(
int index) {
if (metricRulesBuilder_ == null) {
return metricRules_.get(index); } else {
return metricRulesBuilder_.getMessageOrBuilder(index);
}
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public java.util.List extends nl.topicus.jdbc.shaded.com.google.api.MetricRuleOrBuilder>
getMetricRulesOrBuilderList() {
if (metricRulesBuilder_ != null) {
return metricRulesBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(metricRules_);
}
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public nl.topicus.jdbc.shaded.com.google.api.MetricRule.Builder addMetricRulesBuilder() {
return getMetricRulesFieldBuilder().addBuilder(
nl.topicus.jdbc.shaded.com.google.api.MetricRule.getDefaultInstance());
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public nl.topicus.jdbc.shaded.com.google.api.MetricRule.Builder addMetricRulesBuilder(
int index) {
return getMetricRulesFieldBuilder().addBuilder(
index, nl.topicus.jdbc.shaded.com.google.api.MetricRule.getDefaultInstance());
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
* Used by metric-based quotas only.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public java.util.List
getMetricRulesBuilderList() {
return getMetricRulesFieldBuilder().getBuilderList();
}
private nl.topicus.jdbc.shaded.com.google.protobuf.RepeatedFieldBuilderV3<
nl.topicus.jdbc.shaded.com.google.api.MetricRule, nl.topicus.jdbc.shaded.com.google.api.MetricRule.Builder, nl.topicus.jdbc.shaded.com.google.api.MetricRuleOrBuilder>
getMetricRulesFieldBuilder() {
if (metricRulesBuilder_ == null) {
metricRulesBuilder_ = new nl.topicus.jdbc.shaded.com.google.protobuf.RepeatedFieldBuilderV3<
nl.topicus.jdbc.shaded.com.google.api.MetricRule, nl.topicus.jdbc.shaded.com.google.api.MetricRule.Builder, nl.topicus.jdbc.shaded.com.google.api.MetricRuleOrBuilder>(
metricRules_,
((bitField0_ & 0x00000002) == 0x00000002),
getParentForChildren(),
isClean());
metricRules_ = null;
}
return metricRulesBuilder_;
}
public final Builder setUnknownFields(
final nl.topicus.jdbc.shaded.com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFieldsProto3(unknownFields);
}
public final Builder mergeUnknownFields(
final nl.topicus.jdbc.shaded.com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.api.Quota)
}
// @@protoc_insertion_point(class_scope:google.api.Quota)
private static final nl.topicus.jdbc.shaded.com.google.api.Quota DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new nl.topicus.jdbc.shaded.com.google.api.Quota();
}
public static nl.topicus.jdbc.shaded.com.google.api.Quota getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final nl.topicus.jdbc.shaded.com.google.protobuf.Parser
PARSER = new nl.topicus.jdbc.shaded.com.google.protobuf.AbstractParser() {
public Quota parsePartialFrom(
nl.topicus.jdbc.shaded.com.google.protobuf.CodedInputStream input,
nl.topicus.jdbc.shaded.com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws nl.topicus.jdbc.shaded.com.google.protobuf.InvalidProtocolBufferException {
return new Quota(input, extensionRegistry);
}
};
public static nl.topicus.jdbc.shaded.com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public nl.topicus.jdbc.shaded.com.google.protobuf.Parser getParserForType() {
return PARSER;
}
public nl.topicus.jdbc.shaded.com.google.api.Quota getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}