lightstep.com.google.api.Quota Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/quota.proto
package lightstep.lightstep.lightstep.com.google.api;
/**
*
* Quota configuration helps to achieve fairness and budgeting in service
* usage.
* The metric based 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
lightstep.com.lightstep.lightstep.lightstep.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(lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Quota() {
limits_ = java.util.Collections.emptyList();
metricRules_ = java.util.Collections.emptyList();
}
@Override
public final lightstep.com.lightstep.lightstep.lightstep.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private Quota(
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedInputStream input,
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new NullPointerException();
}
int mutable_bitField0_ = 0;
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.UnknownFieldSet.Builder unknownFields =
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 26: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
limits_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
limits_.add(
input.readMessage(lightstep.lightstep.lightstep.com.google.api.QuotaLimit.parser(), extensionRegistry));
break;
}
case 34: {
if (!((mutable_bitField0_ & 0x00000002) != 0)) {
metricRules_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000002;
}
metricRules_.add(
input.readMessage(lightstep.lightstep.lightstep.com.google.api.MetricRule.parser(), extensionRegistry));
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
limits_ = java.util.Collections.unmodifiableList(limits_);
}
if (((mutable_bitField0_ & 0x00000002) != 0)) {
metricRules_ = java.util.Collections.unmodifiableList(metricRules_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return lightstep.lightstep.lightstep.com.google.api.QuotaProto.internal_static_google_api_Quota_descriptor;
}
@Override
protected FieldAccessorTable
internalGetFieldAccessorTable() {
return lightstep.lightstep.lightstep.com.google.api.QuotaProto.internal_static_google_api_Quota_fieldAccessorTable
.ensureFieldAccessorsInitialized(
Quota.class, Builder.class);
}
public static final int LIMITS_FIELD_NUMBER = 3;
private java.util.List limits_;
/**
*
* List of `QuotaLimit` definitions for the service.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public java.util.List getLimitsList() {
return limits_;
}
/**
*
* List of `QuotaLimit` definitions for the service.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public java.util.List extends lightstep.lightstep.lightstep.com.google.api.QuotaLimitOrBuilder>
getLimitsOrBuilderList() {
return limits_;
}
/**
*
* List of `QuotaLimit` definitions for the service.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public int getLimitsCount() {
return limits_.size();
}
/**
*
* List of `QuotaLimit` definitions for the service.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public lightstep.lightstep.lightstep.com.google.api.QuotaLimit getLimits(int index) {
return limits_.get(index);
}
/**
*
* List of `QuotaLimit` definitions for the service.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public lightstep.lightstep.lightstep.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.
*
*
* 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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public java.util.List extends lightstep.lightstep.lightstep.com.google.api.MetricRuleOrBuilder>
getMetricRulesOrBuilderList() {
return metricRules_;
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
*
*
* 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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public lightstep.lightstep.lightstep.com.google.api.MetricRuleOrBuilder getMetricRulesOrBuilder(
int index) {
return metricRules_.get(index);
}
private byte memoizedIsInitialized = -1;
@Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@Override
public void writeTo(lightstep.com.lightstep.lightstep.lightstep.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);
}
@Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < limits_.size(); i++) {
size += lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedOutputStream
.computeMessageSize(3, limits_.get(i));
}
for (int i = 0; i < metricRules_.size(); i++) {
size += lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedOutputStream
.computeMessageSize(4, metricRules_.get(i));
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@Override
public boolean equals(final Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof Quota)) {
return super.equals(obj);
}
Quota other = (Quota) obj;
if (!getLimitsList()
.equals(other.getLimitsList())) return false;
if (!getMetricRulesList()
.equals(other.getMetricRulesList())) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@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 Quota parseFrom(
java.nio.ByteBuffer data)
throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static Quota parseFrom(
java.nio.ByteBuffer data,
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static Quota parseFrom(
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ByteString data)
throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static Quota parseFrom(
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ByteString data,
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static Quota parseFrom(byte[] data)
throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static Quota parseFrom(
byte[] data,
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static Quota parseFrom(java.io.InputStream input)
throws java.io.IOException {
return lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static Quota parseFrom(
java.io.InputStream input,
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static Quota parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static Quota parseDelimitedFrom(
java.io.InputStream input,
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static Quota parseFrom(
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static Quota parseFrom(
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedInputStream input,
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(Quota prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@Override
protected Builder newBuilderForType(
BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* Quota configuration helps to achieve fairness and budgeting in service
* usage.
* The metric based 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
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:google.api.Quota)
lightstep.lightstep.lightstep.com.google.api.QuotaOrBuilder {
public static final lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return lightstep.lightstep.lightstep.com.google.api.QuotaProto.internal_static_google_api_Quota_descriptor;
}
@Override
protected FieldAccessorTable
internalGetFieldAccessorTable() {
return lightstep.lightstep.lightstep.com.google.api.QuotaProto.internal_static_google_api_Quota_fieldAccessorTable
.ensureFieldAccessorsInitialized(
Quota.class, Builder.class);
}
// Construct using lightstep.lightstep.lightstep.com.google.api.Quota.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getLimitsFieldBuilder();
getMetricRulesFieldBuilder();
}
}
@Override
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;
}
@Override
public lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return lightstep.lightstep.lightstep.com.google.api.QuotaProto.internal_static_google_api_Quota_descriptor;
}
@Override
public Quota getDefaultInstanceForType() {
return Quota.getDefaultInstance();
}
@Override
public Quota build() {
Quota result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@Override
public Quota buildPartial() {
Quota result = new Quota(this);
int from_bitField0_ = bitField0_;
if (limitsBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
limits_ = java.util.Collections.unmodifiableList(limits_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.limits_ = limits_;
} else {
result.limits_ = limitsBuilder_.build();
}
if (metricRulesBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0)) {
metricRules_ = java.util.Collections.unmodifiableList(metricRules_);
bitField0_ = (bitField0_ & ~0x00000002);
}
result.metricRules_ = metricRules_;
} else {
result.metricRules_ = metricRulesBuilder_.build();
}
onBuilt();
return result;
}
@Override
public Builder clone() {
return super.clone();
}
@Override
public Builder setField(
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return super.setField(field, value);
}
@Override
public Builder clearField(
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@Override
public Builder clearOneof(
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@Override
public Builder setRepeatedField(
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.FieldDescriptor field,
int index, Object value) {
return super.setRepeatedField(field, index, value);
}
@Override
public Builder addRepeatedField(
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return super.addRepeatedField(field, value);
}
@Override
public Builder mergeFrom(lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Message other) {
if (other instanceof Quota) {
return mergeFrom((Quota)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(Quota other) {
if (other == 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_ =
lightstep.com.lightstep.lightstep.lightstep.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_ =
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getMetricRulesFieldBuilder() : null;
} else {
metricRulesBuilder_.addAllMessages(other.metricRules_);
}
}
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@Override
public final boolean isInitialized() {
return true;
}
@Override
public Builder mergeFrom(
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedInputStream input,
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
Quota parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (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) != 0)) {
limits_ = new java.util.ArrayList(limits_);
bitField0_ |= 0x00000001;
}
}
private lightstep.com.lightstep.lightstep.lightstep.google.protobuf.RepeatedFieldBuilderV3<
lightstep.lightstep.lightstep.com.google.api.QuotaLimit, lightstep.lightstep.lightstep.com.google.api.QuotaLimit.Builder, lightstep.lightstep.lightstep.com.google.api.QuotaLimitOrBuilder> limitsBuilder_;
/**
*
* List of `QuotaLimit` definitions for the service.
*
*
* 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.
*
*
* 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.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder setLimits(
int index, lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder setLimits(
int index, lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder addLimits(lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder addLimits(
int index, lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder addLimits(
lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder addLimits(
int index, lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public Builder addAllLimits(
Iterable extends lightstep.lightstep.lightstep.com.google.api.QuotaLimit> values) {
if (limitsBuilder_ == null) {
ensureLimitsIsMutable();
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.AbstractMessageLite.Builder.addAll(
values, limits_);
onChanged();
} else {
limitsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
* List of `QuotaLimit` definitions for the service.
*
*
* 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.
*
*
* 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.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public lightstep.lightstep.lightstep.com.google.api.QuotaLimit.Builder getLimitsBuilder(
int index) {
return getLimitsFieldBuilder().getBuilder(index);
}
/**
*
* List of `QuotaLimit` definitions for the service.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public java.util.List extends lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public lightstep.lightstep.lightstep.com.google.api.QuotaLimit.Builder addLimitsBuilder() {
return getLimitsFieldBuilder().addBuilder(
lightstep.lightstep.lightstep.com.google.api.QuotaLimit.getDefaultInstance());
}
/**
*
* List of `QuotaLimit` definitions for the service.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public lightstep.lightstep.lightstep.com.google.api.QuotaLimit.Builder addLimitsBuilder(
int index) {
return getLimitsFieldBuilder().addBuilder(
index, lightstep.lightstep.lightstep.com.google.api.QuotaLimit.getDefaultInstance());
}
/**
*
* List of `QuotaLimit` definitions for the service.
*
*
* repeated .google.api.QuotaLimit limits = 3;
*/
public java.util.List
getLimitsBuilderList() {
return getLimitsFieldBuilder().getBuilderList();
}
private lightstep.com.lightstep.lightstep.lightstep.google.protobuf.RepeatedFieldBuilderV3<
lightstep.lightstep.lightstep.com.google.api.QuotaLimit, lightstep.lightstep.lightstep.com.google.api.QuotaLimit.Builder, lightstep.lightstep.lightstep.com.google.api.QuotaLimitOrBuilder>
getLimitsFieldBuilder() {
if (limitsBuilder_ == null) {
limitsBuilder_ = new lightstep.com.lightstep.lightstep.lightstep.google.protobuf.RepeatedFieldBuilderV3<
lightstep.lightstep.lightstep.com.google.api.QuotaLimit, lightstep.lightstep.lightstep.com.google.api.QuotaLimit.Builder, lightstep.lightstep.lightstep.com.google.api.QuotaLimitOrBuilder>(
limits_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
limits_ = null;
}
return limitsBuilder_;
}
private java.util.List metricRules_ =
java.util.Collections.emptyList();
private void ensureMetricRulesIsMutable() {
if (!((bitField0_ & 0x00000002) != 0)) {
metricRules_ = new java.util.ArrayList(metricRules_);
bitField0_ |= 0x00000002;
}
}
private lightstep.com.lightstep.lightstep.lightstep.google.protobuf.RepeatedFieldBuilderV3<
lightstep.lightstep.lightstep.com.google.api.MetricRule, lightstep.lightstep.lightstep.com.google.api.MetricRule.Builder, lightstep.lightstep.lightstep.com.google.api.MetricRuleOrBuilder> metricRulesBuilder_;
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
*
*
* 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.
*
*
* 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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder setMetricRules(
int index, lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder setMetricRules(
int index, lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder addMetricRules(lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder addMetricRules(
int index, lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder addMetricRules(
lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder addMetricRules(
int index, lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public Builder addAllMetricRules(
Iterable extends lightstep.lightstep.lightstep.com.google.api.MetricRule> values) {
if (metricRulesBuilder_ == null) {
ensureMetricRulesIsMutable();
lightstep.com.lightstep.lightstep.lightstep.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.
*
*
* 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.
*
*
* 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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public java.util.List extends lightstep.lightstep.lightstep.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.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public lightstep.lightstep.lightstep.com.google.api.MetricRule.Builder addMetricRulesBuilder() {
return getMetricRulesFieldBuilder().addBuilder(
lightstep.lightstep.lightstep.com.google.api.MetricRule.getDefaultInstance());
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public lightstep.lightstep.lightstep.com.google.api.MetricRule.Builder addMetricRulesBuilder(
int index) {
return getMetricRulesFieldBuilder().addBuilder(
index, lightstep.lightstep.lightstep.com.google.api.MetricRule.getDefaultInstance());
}
/**
*
* List of `MetricRule` definitions, each one mapping a selected method to one
* or more metrics.
*
*
* repeated .google.api.MetricRule metric_rules = 4;
*/
public java.util.List
getMetricRulesBuilderList() {
return getMetricRulesFieldBuilder().getBuilderList();
}
private lightstep.com.lightstep.lightstep.lightstep.google.protobuf.RepeatedFieldBuilderV3<
lightstep.lightstep.lightstep.com.google.api.MetricRule, lightstep.lightstep.lightstep.com.google.api.MetricRule.Builder, lightstep.lightstep.lightstep.com.google.api.MetricRuleOrBuilder>
getMetricRulesFieldBuilder() {
if (metricRulesBuilder_ == null) {
metricRulesBuilder_ = new lightstep.com.lightstep.lightstep.lightstep.google.protobuf.RepeatedFieldBuilderV3<
lightstep.lightstep.lightstep.com.google.api.MetricRule, lightstep.lightstep.lightstep.com.google.api.MetricRule.Builder, lightstep.lightstep.lightstep.com.google.api.MetricRuleOrBuilder>(
metricRules_,
((bitField0_ & 0x00000002) != 0),
getParentForChildren(),
isClean());
metricRules_ = null;
}
return metricRulesBuilder_;
}
@Override
public final Builder setUnknownFields(
final lightstep.com.lightstep.lightstep.lightstep.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@Override
public final Builder mergeUnknownFields(
final lightstep.com.lightstep.lightstep.lightstep.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 Quota DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new Quota();
}
public static Quota getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Parser
PARSER = new lightstep.com.lightstep.lightstep.lightstep.google.protobuf.AbstractParser() {
@Override
public Quota parsePartialFrom(
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.CodedInputStream input,
lightstep.com.lightstep.lightstep.lightstep.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws lightstep.com.lightstep.lightstep.lightstep.google.protobuf.InvalidProtocolBufferException {
return new Quota(input, extensionRegistry);
}
};
public static lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Parser parser() {
return PARSER;
}
@Override
public lightstep.com.lightstep.lightstep.lightstep.google.protobuf.Parser getParserForType() {
return PARSER;
}
@Override
public Quota getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy