com.google.pubsub.v1.UpdateSubscriptionRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-pubsub-v1 Show documentation
Show all versions of proto-google-cloud-pubsub-v1 Show documentation
PROTO library for proto-google-cloud-pubsub-v1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/pubsub/v1/pubsub.proto
package com.google.pubsub.v1;
/**
*
*
*
* Request for the UpdateSubscription method.
*
*
* Protobuf type {@code google.pubsub.v1.UpdateSubscriptionRequest}
*/
public final class UpdateSubscriptionRequest extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.pubsub.v1.UpdateSubscriptionRequest)
UpdateSubscriptionRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use UpdateSubscriptionRequest.newBuilder() to construct.
private UpdateSubscriptionRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private UpdateSubscriptionRequest() {}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
private UpdateSubscriptionRequest(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
com.google.pubsub.v1.Subscription.Builder subBuilder = null;
if (subscription_ != null) {
subBuilder = subscription_.toBuilder();
}
subscription_ =
input.readMessage(com.google.pubsub.v1.Subscription.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(subscription_);
subscription_ = subBuilder.buildPartial();
}
break;
}
case 18:
{
com.google.protobuf.FieldMask.Builder subBuilder = null;
if (updateMask_ != null) {
subBuilder = updateMask_.toBuilder();
}
updateMask_ =
input.readMessage(com.google.protobuf.FieldMask.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(updateMask_);
updateMask_ = subBuilder.buildPartial();
}
break;
}
default:
{
if (!parseUnknownField(input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_UpdateSubscriptionRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_UpdateSubscriptionRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.pubsub.v1.UpdateSubscriptionRequest.class,
com.google.pubsub.v1.UpdateSubscriptionRequest.Builder.class);
}
public static final int SUBSCRIPTION_FIELD_NUMBER = 1;
private com.google.pubsub.v1.Subscription subscription_;
/**
*
*
*
* The updated subscription object.
*
*
* .google.pubsub.v1.Subscription subscription = 1;
*/
public boolean hasSubscription() {
return subscription_ != null;
}
/**
*
*
*
* The updated subscription object.
*
*
* .google.pubsub.v1.Subscription subscription = 1;
*/
public com.google.pubsub.v1.Subscription getSubscription() {
return subscription_ == null
? com.google.pubsub.v1.Subscription.getDefaultInstance()
: subscription_;
}
/**
*
*
*
* The updated subscription object.
*
*
* .google.pubsub.v1.Subscription subscription = 1;
*/
public com.google.pubsub.v1.SubscriptionOrBuilder getSubscriptionOrBuilder() {
return getSubscription();
}
public static final int UPDATE_MASK_FIELD_NUMBER = 2;
private com.google.protobuf.FieldMask updateMask_;
/**
*
*
*
* Indicates which fields in the provided subscription to update.
* Must be specified and non-empty.
*
*
* .google.protobuf.FieldMask update_mask = 2;
*/
public boolean hasUpdateMask() {
return updateMask_ != null;
}
/**
*
*
*
* Indicates which fields in the provided subscription to update.
* Must be specified and non-empty.
*
*
* .google.protobuf.FieldMask update_mask = 2;
*/
public com.google.protobuf.FieldMask getUpdateMask() {
return updateMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : updateMask_;
}
/**
*
*
*
* Indicates which fields in the provided subscription to update.
* Must be specified and non-empty.
*
*
* .google.protobuf.FieldMask update_mask = 2;
*/
public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() {
return getUpdateMask();
}
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 (subscription_ != null) {
output.writeMessage(1, getSubscription());
}
if (updateMask_ != null) {
output.writeMessage(2, getUpdateMask());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (subscription_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(1, getSubscription());
}
if (updateMask_ != null) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, getUpdateMask());
}
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 com.google.pubsub.v1.UpdateSubscriptionRequest)) {
return super.equals(obj);
}
com.google.pubsub.v1.UpdateSubscriptionRequest other =
(com.google.pubsub.v1.UpdateSubscriptionRequest) obj;
if (hasSubscription() != other.hasSubscription()) return false;
if (hasSubscription()) {
if (!getSubscription().equals(other.getSubscription())) return false;
}
if (hasUpdateMask() != other.hasUpdateMask()) return false;
if (hasUpdateMask()) {
if (!getUpdateMask().equals(other.getUpdateMask())) return false;
}
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasSubscription()) {
hash = (37 * hash) + SUBSCRIPTION_FIELD_NUMBER;
hash = (53 * hash) + getSubscription().hashCode();
}
if (hasUpdateMask()) {
hash = (37 * hash) + UPDATE_MASK_FIELD_NUMBER;
hash = (53 * hash) + getUpdateMask().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.pubsub.v1.UpdateSubscriptionRequest parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.pubsub.v1.UpdateSubscriptionRequest parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.pubsub.v1.UpdateSubscriptionRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.pubsub.v1.UpdateSubscriptionRequest 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.pubsub.v1.UpdateSubscriptionRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.pubsub.v1.UpdateSubscriptionRequest parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.pubsub.v1.UpdateSubscriptionRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.pubsub.v1.UpdateSubscriptionRequest 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.pubsub.v1.UpdateSubscriptionRequest parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.pubsub.v1.UpdateSubscriptionRequest 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.pubsub.v1.UpdateSubscriptionRequest parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.pubsub.v1.UpdateSubscriptionRequest 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.pubsub.v1.UpdateSubscriptionRequest 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;
}
/**
*
*
*
* Request for the UpdateSubscription method.
*
*
* Protobuf type {@code google.pubsub.v1.UpdateSubscriptionRequest}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.pubsub.v1.UpdateSubscriptionRequest)
com.google.pubsub.v1.UpdateSubscriptionRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_UpdateSubscriptionRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_UpdateSubscriptionRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.pubsub.v1.UpdateSubscriptionRequest.class,
com.google.pubsub.v1.UpdateSubscriptionRequest.Builder.class);
}
// Construct using com.google.pubsub.v1.UpdateSubscriptionRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (subscriptionBuilder_ == null) {
subscription_ = null;
} else {
subscription_ = null;
subscriptionBuilder_ = null;
}
if (updateMaskBuilder_ == null) {
updateMask_ = null;
} else {
updateMask_ = null;
updateMaskBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_UpdateSubscriptionRequest_descriptor;
}
@java.lang.Override
public com.google.pubsub.v1.UpdateSubscriptionRequest getDefaultInstanceForType() {
return com.google.pubsub.v1.UpdateSubscriptionRequest.getDefaultInstance();
}
@java.lang.Override
public com.google.pubsub.v1.UpdateSubscriptionRequest build() {
com.google.pubsub.v1.UpdateSubscriptionRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.pubsub.v1.UpdateSubscriptionRequest buildPartial() {
com.google.pubsub.v1.UpdateSubscriptionRequest result =
new com.google.pubsub.v1.UpdateSubscriptionRequest(this);
if (subscriptionBuilder_ == null) {
result.subscription_ = subscription_;
} else {
result.subscription_ = subscriptionBuilder_.build();
}
if (updateMaskBuilder_ == null) {
result.updateMask_ = updateMask_;
} else {
result.updateMask_ = updateMaskBuilder_.build();
}
onBuilt();
return result;
}
@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.pubsub.v1.UpdateSubscriptionRequest) {
return mergeFrom((com.google.pubsub.v1.UpdateSubscriptionRequest) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.pubsub.v1.UpdateSubscriptionRequest other) {
if (other == com.google.pubsub.v1.UpdateSubscriptionRequest.getDefaultInstance()) return this;
if (other.hasSubscription()) {
mergeSubscription(other.getSubscription());
}
if (other.hasUpdateMask()) {
mergeUpdateMask(other.getUpdateMask());
}
this.mergeUnknownFields(other.unknownFields);
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 {
com.google.pubsub.v1.UpdateSubscriptionRequest parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.pubsub.v1.UpdateSubscriptionRequest) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private com.google.pubsub.v1.Subscription subscription_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.pubsub.v1.Subscription,
com.google.pubsub.v1.Subscription.Builder,
com.google.pubsub.v1.SubscriptionOrBuilder>
subscriptionBuilder_;
/**
*
*
*
* The updated subscription object.
*
*
* .google.pubsub.v1.Subscription subscription = 1;
*/
public boolean hasSubscription() {
return subscriptionBuilder_ != null || subscription_ != null;
}
/**
*
*
*
* The updated subscription object.
*
*
* .google.pubsub.v1.Subscription subscription = 1;
*/
public com.google.pubsub.v1.Subscription getSubscription() {
if (subscriptionBuilder_ == null) {
return subscription_ == null
? com.google.pubsub.v1.Subscription.getDefaultInstance()
: subscription_;
} else {
return subscriptionBuilder_.getMessage();
}
}
/**
*
*
*
* The updated subscription object.
*
*
* .google.pubsub.v1.Subscription subscription = 1;
*/
public Builder setSubscription(com.google.pubsub.v1.Subscription value) {
if (subscriptionBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
subscription_ = value;
onChanged();
} else {
subscriptionBuilder_.setMessage(value);
}
return this;
}
/**
*
*
*
* The updated subscription object.
*
*
* .google.pubsub.v1.Subscription subscription = 1;
*/
public Builder setSubscription(com.google.pubsub.v1.Subscription.Builder builderForValue) {
if (subscriptionBuilder_ == null) {
subscription_ = builderForValue.build();
onChanged();
} else {
subscriptionBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* The updated subscription object.
*
*
* .google.pubsub.v1.Subscription subscription = 1;
*/
public Builder mergeSubscription(com.google.pubsub.v1.Subscription value) {
if (subscriptionBuilder_ == null) {
if (subscription_ != null) {
subscription_ =
com.google.pubsub.v1.Subscription.newBuilder(subscription_)
.mergeFrom(value)
.buildPartial();
} else {
subscription_ = value;
}
onChanged();
} else {
subscriptionBuilder_.mergeFrom(value);
}
return this;
}
/**
*
*
*
* The updated subscription object.
*
*
* .google.pubsub.v1.Subscription subscription = 1;
*/
public Builder clearSubscription() {
if (subscriptionBuilder_ == null) {
subscription_ = null;
onChanged();
} else {
subscription_ = null;
subscriptionBuilder_ = null;
}
return this;
}
/**
*
*
*
* The updated subscription object.
*
*
* .google.pubsub.v1.Subscription subscription = 1;
*/
public com.google.pubsub.v1.Subscription.Builder getSubscriptionBuilder() {
onChanged();
return getSubscriptionFieldBuilder().getBuilder();
}
/**
*
*
*
* The updated subscription object.
*
*
* .google.pubsub.v1.Subscription subscription = 1;
*/
public com.google.pubsub.v1.SubscriptionOrBuilder getSubscriptionOrBuilder() {
if (subscriptionBuilder_ != null) {
return subscriptionBuilder_.getMessageOrBuilder();
} else {
return subscription_ == null
? com.google.pubsub.v1.Subscription.getDefaultInstance()
: subscription_;
}
}
/**
*
*
*
* The updated subscription object.
*
*
* .google.pubsub.v1.Subscription subscription = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.pubsub.v1.Subscription,
com.google.pubsub.v1.Subscription.Builder,
com.google.pubsub.v1.SubscriptionOrBuilder>
getSubscriptionFieldBuilder() {
if (subscriptionBuilder_ == null) {
subscriptionBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.pubsub.v1.Subscription,
com.google.pubsub.v1.Subscription.Builder,
com.google.pubsub.v1.SubscriptionOrBuilder>(
getSubscription(), getParentForChildren(), isClean());
subscription_ = null;
}
return subscriptionBuilder_;
}
private com.google.protobuf.FieldMask updateMask_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.FieldMask,
com.google.protobuf.FieldMask.Builder,
com.google.protobuf.FieldMaskOrBuilder>
updateMaskBuilder_;
/**
*
*
*
* Indicates which fields in the provided subscription to update.
* Must be specified and non-empty.
*
*
* .google.protobuf.FieldMask update_mask = 2;
*/
public boolean hasUpdateMask() {
return updateMaskBuilder_ != null || updateMask_ != null;
}
/**
*
*
*
* Indicates which fields in the provided subscription to update.
* Must be specified and non-empty.
*
*
* .google.protobuf.FieldMask update_mask = 2;
*/
public com.google.protobuf.FieldMask getUpdateMask() {
if (updateMaskBuilder_ == null) {
return updateMask_ == null
? com.google.protobuf.FieldMask.getDefaultInstance()
: updateMask_;
} else {
return updateMaskBuilder_.getMessage();
}
}
/**
*
*
*
* Indicates which fields in the provided subscription to update.
* Must be specified and non-empty.
*
*
* .google.protobuf.FieldMask update_mask = 2;
*/
public Builder setUpdateMask(com.google.protobuf.FieldMask value) {
if (updateMaskBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
updateMask_ = value;
onChanged();
} else {
updateMaskBuilder_.setMessage(value);
}
return this;
}
/**
*
*
*
* Indicates which fields in the provided subscription to update.
* Must be specified and non-empty.
*
*
* .google.protobuf.FieldMask update_mask = 2;
*/
public Builder setUpdateMask(com.google.protobuf.FieldMask.Builder builderForValue) {
if (updateMaskBuilder_ == null) {
updateMask_ = builderForValue.build();
onChanged();
} else {
updateMaskBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
*
*
*
* Indicates which fields in the provided subscription to update.
* Must be specified and non-empty.
*
*
* .google.protobuf.FieldMask update_mask = 2;
*/
public Builder mergeUpdateMask(com.google.protobuf.FieldMask value) {
if (updateMaskBuilder_ == null) {
if (updateMask_ != null) {
updateMask_ =
com.google.protobuf.FieldMask.newBuilder(updateMask_).mergeFrom(value).buildPartial();
} else {
updateMask_ = value;
}
onChanged();
} else {
updateMaskBuilder_.mergeFrom(value);
}
return this;
}
/**
*
*
*
* Indicates which fields in the provided subscription to update.
* Must be specified and non-empty.
*
*
* .google.protobuf.FieldMask update_mask = 2;
*/
public Builder clearUpdateMask() {
if (updateMaskBuilder_ == null) {
updateMask_ = null;
onChanged();
} else {
updateMask_ = null;
updateMaskBuilder_ = null;
}
return this;
}
/**
*
*
*
* Indicates which fields in the provided subscription to update.
* Must be specified and non-empty.
*
*
* .google.protobuf.FieldMask update_mask = 2;
*/
public com.google.protobuf.FieldMask.Builder getUpdateMaskBuilder() {
onChanged();
return getUpdateMaskFieldBuilder().getBuilder();
}
/**
*
*
*
* Indicates which fields in the provided subscription to update.
* Must be specified and non-empty.
*
*
* .google.protobuf.FieldMask update_mask = 2;
*/
public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() {
if (updateMaskBuilder_ != null) {
return updateMaskBuilder_.getMessageOrBuilder();
} else {
return updateMask_ == null
? com.google.protobuf.FieldMask.getDefaultInstance()
: updateMask_;
}
}
/**
*
*
*
* Indicates which fields in the provided subscription to update.
* Must be specified and non-empty.
*
*
* .google.protobuf.FieldMask update_mask = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.FieldMask,
com.google.protobuf.FieldMask.Builder,
com.google.protobuf.FieldMaskOrBuilder>
getUpdateMaskFieldBuilder() {
if (updateMaskBuilder_ == null) {
updateMaskBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.FieldMask,
com.google.protobuf.FieldMask.Builder,
com.google.protobuf.FieldMaskOrBuilder>(
getUpdateMask(), getParentForChildren(), isClean());
updateMask_ = null;
}
return updateMaskBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.pubsub.v1.UpdateSubscriptionRequest)
}
// @@protoc_insertion_point(class_scope:google.pubsub.v1.UpdateSubscriptionRequest)
private static final com.google.pubsub.v1.UpdateSubscriptionRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.pubsub.v1.UpdateSubscriptionRequest();
}
public static com.google.pubsub.v1.UpdateSubscriptionRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public UpdateSubscriptionRequest parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new UpdateSubscriptionRequest(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.google.pubsub.v1.UpdateSubscriptionRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy