Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/config_change.proto
// Protobuf Java Version: 3.25.3
package com.google.api;
/**
*
*
*
* Output generated from semantically comparing two versions of a service
* configuration.
*
* Includes detailed information about a field that have changed with
* applicable advice about potential consequences for the change, such as
* backwards-incompatibility.
*
*
* Protobuf type {@code google.api.ConfigChange}
*/
public final class ConfigChange extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.api.ConfigChange)
ConfigChangeOrBuilder {
private static final long serialVersionUID = 0L;
// Use ConfigChange.newBuilder() to construct.
private ConfigChange(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ConfigChange() {
element_ = "";
oldValue_ = "";
newValue_ = "";
changeType_ = 0;
advices_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new ConfigChange();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.api.ConfigChangeProto.internal_static_google_api_ConfigChange_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.api.ConfigChangeProto
.internal_static_google_api_ConfigChange_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.api.ConfigChange.class, com.google.api.ConfigChange.Builder.class);
}
public static final int ELEMENT_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object element_ = "";
/**
*
*
*
* Object hierarchy path to the change, with levels separated by a '.'
* character. For repeated fields, an applicable unique identifier field is
* used for the index (usually selector, name, or id). For maps, the term
* 'key' is used. If the field has no unique identifier, the numeric index
* is used.
* Examples:
* - visibility.rules[selector=="google.LibraryService.ListBooks"].restriction
* - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
* - logging.producer_destinations[0]
*
* Object hierarchy path to the change, with levels separated by a '.'
* character. For repeated fields, an applicable unique identifier field is
* used for the index (usually selector, name, or id). For maps, the term
* 'key' is used. If the field has no unique identifier, the numeric index
* is used.
* Examples:
* - visibility.rules[selector=="google.LibraryService.ListBooks"].restriction
* - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
* - logging.producer_destinations[0]
*
*
* string element = 1;
*
* @return The bytes for element.
*/
@java.lang.Override
public com.google.protobuf.ByteString getElementBytes() {
java.lang.Object ref = element_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
element_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int OLD_VALUE_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object oldValue_ = "";
/**
*
*
*
* Value of the changed object in the old Service configuration,
* in JSON format. This field will not be populated if ChangeType == ADDED.
*
* Value of the changed object in the new Service configuration,
* in JSON format. This field will not be populated if ChangeType == REMOVED.
*
*
* string new_value = 3;
*
* @return The bytes for newValue.
*/
@java.lang.Override
public com.google.protobuf.ByteString getNewValueBytes() {
java.lang.Object ref = newValue_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
newValue_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int CHANGE_TYPE_FIELD_NUMBER = 4;
private int changeType_ = 0;
/**
*
*
*
* The type for this change, either ADDED, REMOVED, or MODIFIED.
*
*
* .google.api.ChangeType change_type = 4;
*
* @return The enum numeric value on the wire for changeType.
*/
@java.lang.Override
public int getChangeTypeValue() {
return changeType_;
}
/**
*
*
*
* The type for this change, either ADDED, REMOVED, or MODIFIED.
*
*
* .google.api.ChangeType change_type = 4;
*
* @return The changeType.
*/
@java.lang.Override
public com.google.api.ChangeType getChangeType() {
com.google.api.ChangeType result = com.google.api.ChangeType.forNumber(changeType_);
return result == null ? com.google.api.ChangeType.UNRECOGNIZED : result;
}
public static final int ADVICES_FIELD_NUMBER = 5;
@SuppressWarnings("serial")
private java.util.List advices_;
/**
*
*
*
* Collection of advice provided for this change, useful for determining the
* possible impact of this change.
*
* Collection of advice provided for this change, useful for determining the
* possible impact of this change.
*
*
* repeated .google.api.Advice advices = 5;
*/
@java.lang.Override
public com.google.api.AdviceOrBuilder getAdvicesOrBuilder(int index) {
return advices_.get(index);
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(element_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, element_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(oldValue_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, oldValue_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(newValue_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, newValue_);
}
if (changeType_ != com.google.api.ChangeType.CHANGE_TYPE_UNSPECIFIED.getNumber()) {
output.writeEnum(4, changeType_);
}
for (int i = 0; i < advices_.size(); i++) {
output.writeMessage(5, advices_.get(i));
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(element_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, element_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(oldValue_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, oldValue_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(newValue_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, newValue_);
}
if (changeType_ != com.google.api.ChangeType.CHANGE_TYPE_UNSPECIFIED.getNumber()) {
size += com.google.protobuf.CodedOutputStream.computeEnumSize(4, changeType_);
}
for (int i = 0; i < advices_.size(); i++) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, advices_.get(i));
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.api.ConfigChange)) {
return super.equals(obj);
}
com.google.api.ConfigChange other = (com.google.api.ConfigChange) obj;
if (!getElement().equals(other.getElement())) return false;
if (!getOldValue().equals(other.getOldValue())) return false;
if (!getNewValue().equals(other.getNewValue())) return false;
if (changeType_ != other.changeType_) return false;
if (!getAdvicesList().equals(other.getAdvicesList())) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + ELEMENT_FIELD_NUMBER;
hash = (53 * hash) + getElement().hashCode();
hash = (37 * hash) + OLD_VALUE_FIELD_NUMBER;
hash = (53 * hash) + getOldValue().hashCode();
hash = (37 * hash) + NEW_VALUE_FIELD_NUMBER;
hash = (53 * hash) + getNewValue().hashCode();
hash = (37 * hash) + CHANGE_TYPE_FIELD_NUMBER;
hash = (53 * hash) + changeType_;
if (getAdvicesCount() > 0) {
hash = (37 * hash) + ADVICES_FIELD_NUMBER;
hash = (53 * hash) + getAdvicesList().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.api.ConfigChange parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.api.ConfigChange parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.api.ConfigChange parseFrom(com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.api.ConfigChange parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.api.ConfigChange parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.api.ConfigChange parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.api.ConfigChange parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.api.ConfigChange parseFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.api.ConfigChange parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.api.ConfigChange parseDelimitedFrom(
java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(
PARSER, input, extensionRegistry);
}
public static com.google.api.ConfigChange parseFrom(com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.api.ConfigChange parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(
PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() {
return newBuilder();
}
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.google.api.ConfigChange prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*
* Output generated from semantically comparing two versions of a service
* configuration.
*
* Includes detailed information about a field that have changed with
* applicable advice about potential consequences for the change, such as
* backwards-incompatibility.
*
*
* Protobuf type {@code google.api.ConfigChange}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.api.ConfigChange)
com.google.api.ConfigChangeOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.api.ConfigChangeProto.internal_static_google_api_ConfigChange_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.api.ConfigChangeProto
.internal_static_google_api_ConfigChange_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.api.ConfigChange.class, com.google.api.ConfigChange.Builder.class);
}
// Construct using com.google.api.ConfigChange.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
element_ = "";
oldValue_ = "";
newValue_ = "";
changeType_ = 0;
if (advicesBuilder_ == null) {
advices_ = java.util.Collections.emptyList();
} else {
advices_ = null;
advicesBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000010);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.api.ConfigChangeProto.internal_static_google_api_ConfigChange_descriptor;
}
@java.lang.Override
public com.google.api.ConfigChange getDefaultInstanceForType() {
return com.google.api.ConfigChange.getDefaultInstance();
}
@java.lang.Override
public com.google.api.ConfigChange build() {
com.google.api.ConfigChange result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.api.ConfigChange buildPartial() {
com.google.api.ConfigChange result = new com.google.api.ConfigChange(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartialRepeatedFields(com.google.api.ConfigChange result) {
if (advicesBuilder_ == null) {
if (((bitField0_ & 0x00000010) != 0)) {
advices_ = java.util.Collections.unmodifiableList(advices_);
bitField0_ = (bitField0_ & ~0x00000010);
}
result.advices_ = advices_;
} else {
result.advices_ = advicesBuilder_.build();
}
}
private void buildPartial0(com.google.api.ConfigChange result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.element_ = element_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.oldValue_ = oldValue_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.newValue_ = newValue_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.changeType_ = changeType_;
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field, java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.google.api.ConfigChange) {
return mergeFrom((com.google.api.ConfigChange) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.api.ConfigChange other) {
if (other == com.google.api.ConfigChange.getDefaultInstance()) return this;
if (!other.getElement().isEmpty()) {
element_ = other.element_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getOldValue().isEmpty()) {
oldValue_ = other.oldValue_;
bitField0_ |= 0x00000002;
onChanged();
}
if (!other.getNewValue().isEmpty()) {
newValue_ = other.newValue_;
bitField0_ |= 0x00000004;
onChanged();
}
if (other.changeType_ != 0) {
setChangeTypeValue(other.getChangeTypeValue());
}
if (advicesBuilder_ == null) {
if (!other.advices_.isEmpty()) {
if (advices_.isEmpty()) {
advices_ = other.advices_;
bitField0_ = (bitField0_ & ~0x00000010);
} else {
ensureAdvicesIsMutable();
advices_.addAll(other.advices_);
}
onChanged();
}
} else {
if (!other.advices_.isEmpty()) {
if (advicesBuilder_.isEmpty()) {
advicesBuilder_.dispose();
advicesBuilder_ = null;
advices_ = other.advices_;
bitField0_ = (bitField0_ & ~0x00000010);
advicesBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders
? getAdvicesFieldBuilder()
: null;
} else {
advicesBuilder_.addAllMessages(other.advices_);
}
}
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
element_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
oldValue_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 26:
{
newValue_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000004;
break;
} // case 26
case 32:
{
changeType_ = input.readEnum();
bitField0_ |= 0x00000008;
break;
} // case 32
case 42:
{
com.google.api.Advice m =
input.readMessage(com.google.api.Advice.parser(), extensionRegistry);
if (advicesBuilder_ == null) {
ensureAdvicesIsMutable();
advices_.add(m);
} else {
advicesBuilder_.addMessage(m);
}
break;
} // case 42
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object element_ = "";
/**
*
*
*
* Object hierarchy path to the change, with levels separated by a '.'
* character. For repeated fields, an applicable unique identifier field is
* used for the index (usually selector, name, or id). For maps, the term
* 'key' is used. If the field has no unique identifier, the numeric index
* is used.
* Examples:
* - visibility.rules[selector=="google.LibraryService.ListBooks"].restriction
* - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
* - logging.producer_destinations[0]
*
* Object hierarchy path to the change, with levels separated by a '.'
* character. For repeated fields, an applicable unique identifier field is
* used for the index (usually selector, name, or id). For maps, the term
* 'key' is used. If the field has no unique identifier, the numeric index
* is used.
* Examples:
* - visibility.rules[selector=="google.LibraryService.ListBooks"].restriction
* - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
* - logging.producer_destinations[0]
*
*
* string element = 1;
*
* @return The bytes for element.
*/
public com.google.protobuf.ByteString getElementBytes() {
java.lang.Object ref = element_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
element_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Object hierarchy path to the change, with levels separated by a '.'
* character. For repeated fields, an applicable unique identifier field is
* used for the index (usually selector, name, or id). For maps, the term
* 'key' is used. If the field has no unique identifier, the numeric index
* is used.
* Examples:
* - visibility.rules[selector=="google.LibraryService.ListBooks"].restriction
* - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
* - logging.producer_destinations[0]
*
*
* string element = 1;
*
* @param value The element to set.
* @return This builder for chaining.
*/
public Builder setElement(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
element_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Object hierarchy path to the change, with levels separated by a '.'
* character. For repeated fields, an applicable unique identifier field is
* used for the index (usually selector, name, or id). For maps, the term
* 'key' is used. If the field has no unique identifier, the numeric index
* is used.
* Examples:
* - visibility.rules[selector=="google.LibraryService.ListBooks"].restriction
* - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
* - logging.producer_destinations[0]
*
*
* string element = 1;
*
* @return This builder for chaining.
*/
public Builder clearElement() {
element_ = getDefaultInstance().getElement();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* Object hierarchy path to the change, with levels separated by a '.'
* character. For repeated fields, an applicable unique identifier field is
* used for the index (usually selector, name, or id). For maps, the term
* 'key' is used. If the field has no unique identifier, the numeric index
* is used.
* Examples:
* - visibility.rules[selector=="google.LibraryService.ListBooks"].restriction
* - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
* - logging.producer_destinations[0]
*
*
* string element = 1;
*
* @param value The bytes for element to set.
* @return This builder for chaining.
*/
public Builder setElementBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
element_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object oldValue_ = "";
/**
*
*
*
* Value of the changed object in the old Service configuration,
* in JSON format. This field will not be populated if ChangeType == ADDED.
*
* Value of the changed object in the new Service configuration,
* in JSON format. This field will not be populated if ChangeType == REMOVED.
*
*
* string new_value = 3;
*
* @param value The bytes for newValue to set.
* @return This builder for chaining.
*/
public Builder setNewValueBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
newValue_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
private int changeType_ = 0;
/**
*
*
*
* The type for this change, either ADDED, REMOVED, or MODIFIED.
*
*
* .google.api.ChangeType change_type = 4;
*
* @return The enum numeric value on the wire for changeType.
*/
@java.lang.Override
public int getChangeTypeValue() {
return changeType_;
}
/**
*
*
*
* The type for this change, either ADDED, REMOVED, or MODIFIED.
*
*
* .google.api.ChangeType change_type = 4;
*
* @param value The enum numeric value on the wire for changeType to set.
* @return This builder for chaining.
*/
public Builder setChangeTypeValue(int value) {
changeType_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* The type for this change, either ADDED, REMOVED, or MODIFIED.
*
*
* .google.api.ChangeType change_type = 4;
*
* @return The changeType.
*/
@java.lang.Override
public com.google.api.ChangeType getChangeType() {
com.google.api.ChangeType result = com.google.api.ChangeType.forNumber(changeType_);
return result == null ? com.google.api.ChangeType.UNRECOGNIZED : result;
}
/**
*
*
*
* The type for this change, either ADDED, REMOVED, or MODIFIED.
*
*
* .google.api.ChangeType change_type = 4;
*
* @param value The changeType to set.
* @return This builder for chaining.
*/
public Builder setChangeType(com.google.api.ChangeType value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
changeType_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*
* The type for this change, either ADDED, REMOVED, or MODIFIED.
*