com.google.pubsub.v1.PushConfig 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;
/**
*
*
*
* Configuration for a push delivery endpoint.
*
*
* Protobuf type {@code google.pubsub.v1.PushConfig}
*/
public final class PushConfig extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.pubsub.v1.PushConfig)
PushConfigOrBuilder {
private static final long serialVersionUID = 0L;
// Use PushConfig.newBuilder() to construct.
private PushConfig(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private PushConfig() {
pushEndpoint_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
private PushConfig(
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:
{
java.lang.String s = input.readStringRequireUtf8();
pushEndpoint_ = s;
break;
}
case 18:
{
if (!((mutable_bitField0_ & 0x00000002) != 0)) {
attributes_ =
com.google.protobuf.MapField.newMapField(
AttributesDefaultEntryHolder.defaultEntry);
mutable_bitField0_ |= 0x00000002;
}
com.google.protobuf.MapEntry attributes__ =
input.readMessage(
AttributesDefaultEntryHolder.defaultEntry.getParserForType(),
extensionRegistry);
attributes_.getMutableMap().put(attributes__.getKey(), attributes__.getValue());
break;
}
case 26:
{
com.google.pubsub.v1.PushConfig.OidcToken.Builder subBuilder = null;
if (authenticationMethodCase_ == 3) {
subBuilder =
((com.google.pubsub.v1.PushConfig.OidcToken) authenticationMethod_).toBuilder();
}
authenticationMethod_ =
input.readMessage(
com.google.pubsub.v1.PushConfig.OidcToken.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(
(com.google.pubsub.v1.PushConfig.OidcToken) authenticationMethod_);
authenticationMethod_ = subBuilder.buildPartial();
}
authenticationMethodCase_ = 3;
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_PushConfig_descriptor;
}
@SuppressWarnings({"rawtypes"})
@java.lang.Override
protected com.google.protobuf.MapField internalGetMapField(int number) {
switch (number) {
case 2:
return internalGetAttributes();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_PushConfig_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.pubsub.v1.PushConfig.class, com.google.pubsub.v1.PushConfig.Builder.class);
}
public interface OidcTokenOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.pubsub.v1.PushConfig.OidcToken)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* [Service account
* email](https://cloud.google.com/iam/docs/service-accounts)
* to be used for generating the OIDC token. The caller (for
* CreateSubscription, UpdateSubscription, and ModifyPushConfig RPCs) must
* have the iam.serviceAccounts.actAs permission for the service account.
*
*
* string service_account_email = 1;
*/
java.lang.String getServiceAccountEmail();
/**
*
*
*
* [Service account
* email](https://cloud.google.com/iam/docs/service-accounts)
* to be used for generating the OIDC token. The caller (for
* CreateSubscription, UpdateSubscription, and ModifyPushConfig RPCs) must
* have the iam.serviceAccounts.actAs permission for the service account.
*
*
* string service_account_email = 1;
*/
com.google.protobuf.ByteString getServiceAccountEmailBytes();
/**
*
*
*
* Audience to be used when generating OIDC token. The audience claim
* identifies the recipients that the JWT is intended for. The audience
* value is a single case-sensitive string. Having multiple values (array)
* for the audience field is not supported. More info about the OIDC JWT
* token audience here: https://tools.ietf.org/html/rfc7519#section-4.1.3
* Note: if not specified, the Push endpoint URL will be used.
*
*
* string audience = 2;
*/
java.lang.String getAudience();
/**
*
*
*
* Audience to be used when generating OIDC token. The audience claim
* identifies the recipients that the JWT is intended for. The audience
* value is a single case-sensitive string. Having multiple values (array)
* for the audience field is not supported. More info about the OIDC JWT
* token audience here: https://tools.ietf.org/html/rfc7519#section-4.1.3
* Note: if not specified, the Push endpoint URL will be used.
*
*
* string audience = 2;
*/
com.google.protobuf.ByteString getAudienceBytes();
}
/**
*
*
*
* Contains information needed for generating an
* [OpenID Connect
* token](https://developers.google.com/identity/protocols/OpenIDConnect).
*
*
* Protobuf type {@code google.pubsub.v1.PushConfig.OidcToken}
*/
public static final class OidcToken extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.pubsub.v1.PushConfig.OidcToken)
OidcTokenOrBuilder {
private static final long serialVersionUID = 0L;
// Use OidcToken.newBuilder() to construct.
private OidcToken(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private OidcToken() {
serviceAccountEmail_ = "";
audience_ = "";
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet getUnknownFields() {
return this.unknownFields;
}
private OidcToken(
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:
{
java.lang.String s = input.readStringRequireUtf8();
serviceAccountEmail_ = s;
break;
}
case 18:
{
java.lang.String s = input.readStringRequireUtf8();
audience_ = s;
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_PushConfig_OidcToken_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_PushConfig_OidcToken_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.pubsub.v1.PushConfig.OidcToken.class,
com.google.pubsub.v1.PushConfig.OidcToken.Builder.class);
}
public static final int SERVICE_ACCOUNT_EMAIL_FIELD_NUMBER = 1;
private volatile java.lang.Object serviceAccountEmail_;
/**
*
*
*
* [Service account
* email](https://cloud.google.com/iam/docs/service-accounts)
* to be used for generating the OIDC token. The caller (for
* CreateSubscription, UpdateSubscription, and ModifyPushConfig RPCs) must
* have the iam.serviceAccounts.actAs permission for the service account.
*
*
* string service_account_email = 1;
*/
public java.lang.String getServiceAccountEmail() {
java.lang.Object ref = serviceAccountEmail_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
serviceAccountEmail_ = s;
return s;
}
}
/**
*
*
*
* [Service account
* email](https://cloud.google.com/iam/docs/service-accounts)
* to be used for generating the OIDC token. The caller (for
* CreateSubscription, UpdateSubscription, and ModifyPushConfig RPCs) must
* have the iam.serviceAccounts.actAs permission for the service account.
*
*
* string service_account_email = 1;
*/
public com.google.protobuf.ByteString getServiceAccountEmailBytes() {
java.lang.Object ref = serviceAccountEmail_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
serviceAccountEmail_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int AUDIENCE_FIELD_NUMBER = 2;
private volatile java.lang.Object audience_;
/**
*
*
*
* Audience to be used when generating OIDC token. The audience claim
* identifies the recipients that the JWT is intended for. The audience
* value is a single case-sensitive string. Having multiple values (array)
* for the audience field is not supported. More info about the OIDC JWT
* token audience here: https://tools.ietf.org/html/rfc7519#section-4.1.3
* Note: if not specified, the Push endpoint URL will be used.
*
*
* string audience = 2;
*/
public java.lang.String getAudience() {
java.lang.Object ref = audience_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
audience_ = s;
return s;
}
}
/**
*
*
*
* Audience to be used when generating OIDC token. The audience claim
* identifies the recipients that the JWT is intended for. The audience
* value is a single case-sensitive string. Having multiple values (array)
* for the audience field is not supported. More info about the OIDC JWT
* token audience here: https://tools.ietf.org/html/rfc7519#section-4.1.3
* Note: if not specified, the Push endpoint URL will be used.
*
*
* string audience = 2;
*/
public com.google.protobuf.ByteString getAudienceBytes() {
java.lang.Object ref = audience_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
audience_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
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 (!getServiceAccountEmailBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, serviceAccountEmail_);
}
if (!getAudienceBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, audience_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getServiceAccountEmailBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, serviceAccountEmail_);
}
if (!getAudienceBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, audience_);
}
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.PushConfig.OidcToken)) {
return super.equals(obj);
}
com.google.pubsub.v1.PushConfig.OidcToken other =
(com.google.pubsub.v1.PushConfig.OidcToken) obj;
if (!getServiceAccountEmail().equals(other.getServiceAccountEmail())) return false;
if (!getAudience().equals(other.getAudience())) 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();
hash = (37 * hash) + SERVICE_ACCOUNT_EMAIL_FIELD_NUMBER;
hash = (53 * hash) + getServiceAccountEmail().hashCode();
hash = (37 * hash) + AUDIENCE_FIELD_NUMBER;
hash = (53 * hash) + getAudience().hashCode();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.pubsub.v1.PushConfig.OidcToken parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.pubsub.v1.PushConfig.OidcToken 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.PushConfig.OidcToken parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.pubsub.v1.PushConfig.OidcToken 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.PushConfig.OidcToken parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.pubsub.v1.PushConfig.OidcToken parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.pubsub.v1.PushConfig.OidcToken parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.pubsub.v1.PushConfig.OidcToken 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.PushConfig.OidcToken parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.pubsub.v1.PushConfig.OidcToken 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.PushConfig.OidcToken parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.pubsub.v1.PushConfig.OidcToken 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.PushConfig.OidcToken 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;
}
/**
*
*
*
* Contains information needed for generating an
* [OpenID Connect
* token](https://developers.google.com/identity/protocols/OpenIDConnect).
*
*
* Protobuf type {@code google.pubsub.v1.PushConfig.OidcToken}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.pubsub.v1.PushConfig.OidcToken)
com.google.pubsub.v1.PushConfig.OidcTokenOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_PushConfig_OidcToken_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_PushConfig_OidcToken_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.pubsub.v1.PushConfig.OidcToken.class,
com.google.pubsub.v1.PushConfig.OidcToken.Builder.class);
}
// Construct using com.google.pubsub.v1.PushConfig.OidcToken.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();
serviceAccountEmail_ = "";
audience_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_PushConfig_OidcToken_descriptor;
}
@java.lang.Override
public com.google.pubsub.v1.PushConfig.OidcToken getDefaultInstanceForType() {
return com.google.pubsub.v1.PushConfig.OidcToken.getDefaultInstance();
}
@java.lang.Override
public com.google.pubsub.v1.PushConfig.OidcToken build() {
com.google.pubsub.v1.PushConfig.OidcToken result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.pubsub.v1.PushConfig.OidcToken buildPartial() {
com.google.pubsub.v1.PushConfig.OidcToken result =
new com.google.pubsub.v1.PushConfig.OidcToken(this);
result.serviceAccountEmail_ = serviceAccountEmail_;
result.audience_ = audience_;
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.PushConfig.OidcToken) {
return mergeFrom((com.google.pubsub.v1.PushConfig.OidcToken) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.pubsub.v1.PushConfig.OidcToken other) {
if (other == com.google.pubsub.v1.PushConfig.OidcToken.getDefaultInstance()) return this;
if (!other.getServiceAccountEmail().isEmpty()) {
serviceAccountEmail_ = other.serviceAccountEmail_;
onChanged();
}
if (!other.getAudience().isEmpty()) {
audience_ = other.audience_;
onChanged();
}
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.PushConfig.OidcToken parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.pubsub.v1.PushConfig.OidcToken) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private java.lang.Object serviceAccountEmail_ = "";
/**
*
*
*
* [Service account
* email](https://cloud.google.com/iam/docs/service-accounts)
* to be used for generating the OIDC token. The caller (for
* CreateSubscription, UpdateSubscription, and ModifyPushConfig RPCs) must
* have the iam.serviceAccounts.actAs permission for the service account.
*
*
* string service_account_email = 1;
*/
public java.lang.String getServiceAccountEmail() {
java.lang.Object ref = serviceAccountEmail_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
serviceAccountEmail_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* [Service account
* email](https://cloud.google.com/iam/docs/service-accounts)
* to be used for generating the OIDC token. The caller (for
* CreateSubscription, UpdateSubscription, and ModifyPushConfig RPCs) must
* have the iam.serviceAccounts.actAs permission for the service account.
*
*
* string service_account_email = 1;
*/
public com.google.protobuf.ByteString getServiceAccountEmailBytes() {
java.lang.Object ref = serviceAccountEmail_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
serviceAccountEmail_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* [Service account
* email](https://cloud.google.com/iam/docs/service-accounts)
* to be used for generating the OIDC token. The caller (for
* CreateSubscription, UpdateSubscription, and ModifyPushConfig RPCs) must
* have the iam.serviceAccounts.actAs permission for the service account.
*
*
* string service_account_email = 1;
*/
public Builder setServiceAccountEmail(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
serviceAccountEmail_ = value;
onChanged();
return this;
}
/**
*
*
*
* [Service account
* email](https://cloud.google.com/iam/docs/service-accounts)
* to be used for generating the OIDC token. The caller (for
* CreateSubscription, UpdateSubscription, and ModifyPushConfig RPCs) must
* have the iam.serviceAccounts.actAs permission for the service account.
*
*
* string service_account_email = 1;
*/
public Builder clearServiceAccountEmail() {
serviceAccountEmail_ = getDefaultInstance().getServiceAccountEmail();
onChanged();
return this;
}
/**
*
*
*
* [Service account
* email](https://cloud.google.com/iam/docs/service-accounts)
* to be used for generating the OIDC token. The caller (for
* CreateSubscription, UpdateSubscription, and ModifyPushConfig RPCs) must
* have the iam.serviceAccounts.actAs permission for the service account.
*
*
* string service_account_email = 1;
*/
public Builder setServiceAccountEmailBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
serviceAccountEmail_ = value;
onChanged();
return this;
}
private java.lang.Object audience_ = "";
/**
*
*
*
* Audience to be used when generating OIDC token. The audience claim
* identifies the recipients that the JWT is intended for. The audience
* value is a single case-sensitive string. Having multiple values (array)
* for the audience field is not supported. More info about the OIDC JWT
* token audience here: https://tools.ietf.org/html/rfc7519#section-4.1.3
* Note: if not specified, the Push endpoint URL will be used.
*
*
* string audience = 2;
*/
public java.lang.String getAudience() {
java.lang.Object ref = audience_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
audience_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Audience to be used when generating OIDC token. The audience claim
* identifies the recipients that the JWT is intended for. The audience
* value is a single case-sensitive string. Having multiple values (array)
* for the audience field is not supported. More info about the OIDC JWT
* token audience here: https://tools.ietf.org/html/rfc7519#section-4.1.3
* Note: if not specified, the Push endpoint URL will be used.
*
*
* string audience = 2;
*/
public com.google.protobuf.ByteString getAudienceBytes() {
java.lang.Object ref = audience_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
audience_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Audience to be used when generating OIDC token. The audience claim
* identifies the recipients that the JWT is intended for. The audience
* value is a single case-sensitive string. Having multiple values (array)
* for the audience field is not supported. More info about the OIDC JWT
* token audience here: https://tools.ietf.org/html/rfc7519#section-4.1.3
* Note: if not specified, the Push endpoint URL will be used.
*
*
* string audience = 2;
*/
public Builder setAudience(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
audience_ = value;
onChanged();
return this;
}
/**
*
*
*
* Audience to be used when generating OIDC token. The audience claim
* identifies the recipients that the JWT is intended for. The audience
* value is a single case-sensitive string. Having multiple values (array)
* for the audience field is not supported. More info about the OIDC JWT
* token audience here: https://tools.ietf.org/html/rfc7519#section-4.1.3
* Note: if not specified, the Push endpoint URL will be used.
*
*
* string audience = 2;
*/
public Builder clearAudience() {
audience_ = getDefaultInstance().getAudience();
onChanged();
return this;
}
/**
*
*
*
* Audience to be used when generating OIDC token. The audience claim
* identifies the recipients that the JWT is intended for. The audience
* value is a single case-sensitive string. Having multiple values (array)
* for the audience field is not supported. More info about the OIDC JWT
* token audience here: https://tools.ietf.org/html/rfc7519#section-4.1.3
* Note: if not specified, the Push endpoint URL will be used.
*
*
* string audience = 2;
*/
public Builder setAudienceBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
audience_ = value;
onChanged();
return this;
}
@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.PushConfig.OidcToken)
}
// @@protoc_insertion_point(class_scope:google.pubsub.v1.PushConfig.OidcToken)
private static final com.google.pubsub.v1.PushConfig.OidcToken DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.pubsub.v1.PushConfig.OidcToken();
}
public static com.google.pubsub.v1.PushConfig.OidcToken getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public OidcToken parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new OidcToken(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.PushConfig.OidcToken getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int bitField0_;
private int authenticationMethodCase_ = 0;
private java.lang.Object authenticationMethod_;
public enum AuthenticationMethodCase implements com.google.protobuf.Internal.EnumLite {
OIDC_TOKEN(3),
AUTHENTICATIONMETHOD_NOT_SET(0);
private final int value;
private AuthenticationMethodCase(int value) {
this.value = value;
}
/** @deprecated Use {@link #forNumber(int)} instead. */
@java.lang.Deprecated
public static AuthenticationMethodCase valueOf(int value) {
return forNumber(value);
}
public static AuthenticationMethodCase forNumber(int value) {
switch (value) {
case 3:
return OIDC_TOKEN;
case 0:
return AUTHENTICATIONMETHOD_NOT_SET;
default:
return null;
}
}
public int getNumber() {
return this.value;
}
};
public AuthenticationMethodCase getAuthenticationMethodCase() {
return AuthenticationMethodCase.forNumber(authenticationMethodCase_);
}
public static final int PUSH_ENDPOINT_FIELD_NUMBER = 1;
private volatile java.lang.Object pushEndpoint_;
/**
*
*
*
* A URL locating the endpoint to which messages should be pushed.
* For example, a Webhook endpoint might use "https://example.com/push".
*
*
* string push_endpoint = 1;
*/
public java.lang.String getPushEndpoint() {
java.lang.Object ref = pushEndpoint_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
pushEndpoint_ = s;
return s;
}
}
/**
*
*
*
* A URL locating the endpoint to which messages should be pushed.
* For example, a Webhook endpoint might use "https://example.com/push".
*
*
* string push_endpoint = 1;
*/
public com.google.protobuf.ByteString getPushEndpointBytes() {
java.lang.Object ref = pushEndpoint_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
pushEndpoint_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int ATTRIBUTES_FIELD_NUMBER = 2;
private static final class AttributesDefaultEntryHolder {
static final com.google.protobuf.MapEntry defaultEntry =
com.google.protobuf.MapEntry.newDefaultInstance(
com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_PushConfig_AttributesEntry_descriptor,
com.google.protobuf.WireFormat.FieldType.STRING,
"",
com.google.protobuf.WireFormat.FieldType.STRING,
"");
}
private com.google.protobuf.MapField attributes_;
private com.google.protobuf.MapField internalGetAttributes() {
if (attributes_ == null) {
return com.google.protobuf.MapField.emptyMapField(AttributesDefaultEntryHolder.defaultEntry);
}
return attributes_;
}
public int getAttributesCount() {
return internalGetAttributes().getMap().size();
}
/**
*
*
*
* Endpoint configuration attributes that can be used to control different
* aspects of the message delivery.
* The only currently supported attribute is `x-goog-version`, which you can
* use to change the format of the pushed message. This attribute
* indicates the version of the data expected by the endpoint. This
* controls the shape of the pushed message (i.e., its fields and metadata).
* If not present during the `CreateSubscription` call, it will default to
* the version of the Pub/Sub API used to make such call. If not present in a
* `ModifyPushConfig` call, its value will not be changed. `GetSubscription`
* calls will always return a valid version, even if the subscription was
* created without this attribute.
* The only supported values for the `x-goog-version` attribute are:
* * `v1beta1`: uses the push format defined in the v1beta1 Pub/Sub API.
* * `v1` or `v1beta2`: uses the push format defined in the v1 Pub/Sub API.
* For example:
* <pre><code>attributes { "x-goog-version": "v1" } </code></pre>
*
*
* map<string, string> attributes = 2;
*/
public boolean containsAttributes(java.lang.String key) {
if (key == null) {
throw new java.lang.NullPointerException();
}
return internalGetAttributes().getMap().containsKey(key);
}
/** Use {@link #getAttributesMap()} instead. */
@java.lang.Deprecated
public java.util.Map getAttributes() {
return getAttributesMap();
}
/**
*
*
*
* Endpoint configuration attributes that can be used to control different
* aspects of the message delivery.
* The only currently supported attribute is `x-goog-version`, which you can
* use to change the format of the pushed message. This attribute
* indicates the version of the data expected by the endpoint. This
* controls the shape of the pushed message (i.e., its fields and metadata).
* If not present during the `CreateSubscription` call, it will default to
* the version of the Pub/Sub API used to make such call. If not present in a
* `ModifyPushConfig` call, its value will not be changed. `GetSubscription`
* calls will always return a valid version, even if the subscription was
* created without this attribute.
* The only supported values for the `x-goog-version` attribute are:
* * `v1beta1`: uses the push format defined in the v1beta1 Pub/Sub API.
* * `v1` or `v1beta2`: uses the push format defined in the v1 Pub/Sub API.
* For example:
* <pre><code>attributes { "x-goog-version": "v1" } </code></pre>
*
*
* map<string, string> attributes = 2;
*/
public java.util.Map getAttributesMap() {
return internalGetAttributes().getMap();
}
/**
*
*
*
* Endpoint configuration attributes that can be used to control different
* aspects of the message delivery.
* The only currently supported attribute is `x-goog-version`, which you can
* use to change the format of the pushed message. This attribute
* indicates the version of the data expected by the endpoint. This
* controls the shape of the pushed message (i.e., its fields and metadata).
* If not present during the `CreateSubscription` call, it will default to
* the version of the Pub/Sub API used to make such call. If not present in a
* `ModifyPushConfig` call, its value will not be changed. `GetSubscription`
* calls will always return a valid version, even if the subscription was
* created without this attribute.
* The only supported values for the `x-goog-version` attribute are:
* * `v1beta1`: uses the push format defined in the v1beta1 Pub/Sub API.
* * `v1` or `v1beta2`: uses the push format defined in the v1 Pub/Sub API.
* For example:
* <pre><code>attributes { "x-goog-version": "v1" } </code></pre>
*
*
* map<string, string> attributes = 2;
*/
public java.lang.String getAttributesOrDefault(
java.lang.String key, java.lang.String defaultValue) {
if (key == null) {
throw new java.lang.NullPointerException();
}
java.util.Map map = internalGetAttributes().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
*
*
* Endpoint configuration attributes that can be used to control different
* aspects of the message delivery.
* The only currently supported attribute is `x-goog-version`, which you can
* use to change the format of the pushed message. This attribute
* indicates the version of the data expected by the endpoint. This
* controls the shape of the pushed message (i.e., its fields and metadata).
* If not present during the `CreateSubscription` call, it will default to
* the version of the Pub/Sub API used to make such call. If not present in a
* `ModifyPushConfig` call, its value will not be changed. `GetSubscription`
* calls will always return a valid version, even if the subscription was
* created without this attribute.
* The only supported values for the `x-goog-version` attribute are:
* * `v1beta1`: uses the push format defined in the v1beta1 Pub/Sub API.
* * `v1` or `v1beta2`: uses the push format defined in the v1 Pub/Sub API.
* For example:
* <pre><code>attributes { "x-goog-version": "v1" } </code></pre>
*
*
* map<string, string> attributes = 2;
*/
public java.lang.String getAttributesOrThrow(java.lang.String key) {
if (key == null) {
throw new java.lang.NullPointerException();
}
java.util.Map map = internalGetAttributes().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public static final int OIDC_TOKEN_FIELD_NUMBER = 3;
/**
*
*
*
* If specified, Pub/Sub will generate and attach an OIDC JWT token as an
* `Authorization` header in the HTTP request for every pushed message.
*
*
* .google.pubsub.v1.PushConfig.OidcToken oidc_token = 3;
*/
public boolean hasOidcToken() {
return authenticationMethodCase_ == 3;
}
/**
*
*
*
* If specified, Pub/Sub will generate and attach an OIDC JWT token as an
* `Authorization` header in the HTTP request for every pushed message.
*
*
* .google.pubsub.v1.PushConfig.OidcToken oidc_token = 3;
*/
public com.google.pubsub.v1.PushConfig.OidcToken getOidcToken() {
if (authenticationMethodCase_ == 3) {
return (com.google.pubsub.v1.PushConfig.OidcToken) authenticationMethod_;
}
return com.google.pubsub.v1.PushConfig.OidcToken.getDefaultInstance();
}
/**
*
*
*
* If specified, Pub/Sub will generate and attach an OIDC JWT token as an
* `Authorization` header in the HTTP request for every pushed message.
*
*
* .google.pubsub.v1.PushConfig.OidcToken oidc_token = 3;
*/
public com.google.pubsub.v1.PushConfig.OidcTokenOrBuilder getOidcTokenOrBuilder() {
if (authenticationMethodCase_ == 3) {
return (com.google.pubsub.v1.PushConfig.OidcToken) authenticationMethod_;
}
return com.google.pubsub.v1.PushConfig.OidcToken.getDefaultInstance();
}
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 (!getPushEndpointBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, pushEndpoint_);
}
com.google.protobuf.GeneratedMessageV3.serializeStringMapTo(
output, internalGetAttributes(), AttributesDefaultEntryHolder.defaultEntry, 2);
if (authenticationMethodCase_ == 3) {
output.writeMessage(3, (com.google.pubsub.v1.PushConfig.OidcToken) authenticationMethod_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getPushEndpointBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, pushEndpoint_);
}
for (java.util.Map.Entry entry :
internalGetAttributes().getMap().entrySet()) {
com.google.protobuf.MapEntry attributes__ =
AttributesDefaultEntryHolder.defaultEntry
.newBuilderForType()
.setKey(entry.getKey())
.setValue(entry.getValue())
.build();
size += com.google.protobuf.CodedOutputStream.computeMessageSize(2, attributes__);
}
if (authenticationMethodCase_ == 3) {
size +=
com.google.protobuf.CodedOutputStream.computeMessageSize(
3, (com.google.pubsub.v1.PushConfig.OidcToken) authenticationMethod_);
}
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.PushConfig)) {
return super.equals(obj);
}
com.google.pubsub.v1.PushConfig other = (com.google.pubsub.v1.PushConfig) obj;
if (!getPushEndpoint().equals(other.getPushEndpoint())) return false;
if (!internalGetAttributes().equals(other.internalGetAttributes())) return false;
if (!getAuthenticationMethodCase().equals(other.getAuthenticationMethodCase())) return false;
switch (authenticationMethodCase_) {
case 3:
if (!getOidcToken().equals(other.getOidcToken())) return false;
break;
case 0:
default:
}
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();
hash = (37 * hash) + PUSH_ENDPOINT_FIELD_NUMBER;
hash = (53 * hash) + getPushEndpoint().hashCode();
if (!internalGetAttributes().getMap().isEmpty()) {
hash = (37 * hash) + ATTRIBUTES_FIELD_NUMBER;
hash = (53 * hash) + internalGetAttributes().hashCode();
}
switch (authenticationMethodCase_) {
case 3:
hash = (37 * hash) + OIDC_TOKEN_FIELD_NUMBER;
hash = (53 * hash) + getOidcToken().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.pubsub.v1.PushConfig parseFrom(java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.pubsub.v1.PushConfig 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.PushConfig parseFrom(com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.pubsub.v1.PushConfig 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.PushConfig parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.pubsub.v1.PushConfig parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.pubsub.v1.PushConfig parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.pubsub.v1.PushConfig 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.PushConfig parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.pubsub.v1.PushConfig 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.PushConfig parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.pubsub.v1.PushConfig 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.PushConfig 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;
}
/**
*
*
*
* Configuration for a push delivery endpoint.
*
*
* Protobuf type {@code google.pubsub.v1.PushConfig}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.pubsub.v1.PushConfig)
com.google.pubsub.v1.PushConfigOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_PushConfig_descriptor;
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMapField(int number) {
switch (number) {
case 2:
return internalGetAttributes();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@SuppressWarnings({"rawtypes"})
protected com.google.protobuf.MapField internalGetMutableMapField(int number) {
switch (number) {
case 2:
return internalGetMutableAttributes();
default:
throw new RuntimeException("Invalid map field number: " + number);
}
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_PushConfig_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.pubsub.v1.PushConfig.class, com.google.pubsub.v1.PushConfig.Builder.class);
}
// Construct using com.google.pubsub.v1.PushConfig.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();
pushEndpoint_ = "";
internalGetMutableAttributes().clear();
authenticationMethodCase_ = 0;
authenticationMethod_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.pubsub.v1.PubsubProto
.internal_static_google_pubsub_v1_PushConfig_descriptor;
}
@java.lang.Override
public com.google.pubsub.v1.PushConfig getDefaultInstanceForType() {
return com.google.pubsub.v1.PushConfig.getDefaultInstance();
}
@java.lang.Override
public com.google.pubsub.v1.PushConfig build() {
com.google.pubsub.v1.PushConfig result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.pubsub.v1.PushConfig buildPartial() {
com.google.pubsub.v1.PushConfig result = new com.google.pubsub.v1.PushConfig(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.pushEndpoint_ = pushEndpoint_;
result.attributes_ = internalGetAttributes();
result.attributes_.makeImmutable();
if (authenticationMethodCase_ == 3) {
if (oidcTokenBuilder_ == null) {
result.authenticationMethod_ = authenticationMethod_;
} else {
result.authenticationMethod_ = oidcTokenBuilder_.build();
}
}
result.bitField0_ = to_bitField0_;
result.authenticationMethodCase_ = authenticationMethodCase_;
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.PushConfig) {
return mergeFrom((com.google.pubsub.v1.PushConfig) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.pubsub.v1.PushConfig other) {
if (other == com.google.pubsub.v1.PushConfig.getDefaultInstance()) return this;
if (!other.getPushEndpoint().isEmpty()) {
pushEndpoint_ = other.pushEndpoint_;
onChanged();
}
internalGetMutableAttributes().mergeFrom(other.internalGetAttributes());
switch (other.getAuthenticationMethodCase()) {
case OIDC_TOKEN:
{
mergeOidcToken(other.getOidcToken());
break;
}
case AUTHENTICATIONMETHOD_NOT_SET:
{
break;
}
}
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.PushConfig parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.google.pubsub.v1.PushConfig) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int authenticationMethodCase_ = 0;
private java.lang.Object authenticationMethod_;
public AuthenticationMethodCase getAuthenticationMethodCase() {
return AuthenticationMethodCase.forNumber(authenticationMethodCase_);
}
public Builder clearAuthenticationMethod() {
authenticationMethodCase_ = 0;
authenticationMethod_ = null;
onChanged();
return this;
}
private int bitField0_;
private java.lang.Object pushEndpoint_ = "";
/**
*
*
*
* A URL locating the endpoint to which messages should be pushed.
* For example, a Webhook endpoint might use "https://example.com/push".
*
*
* string push_endpoint = 1;
*/
public java.lang.String getPushEndpoint() {
java.lang.Object ref = pushEndpoint_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
pushEndpoint_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* A URL locating the endpoint to which messages should be pushed.
* For example, a Webhook endpoint might use "https://example.com/push".
*
*
* string push_endpoint = 1;
*/
public com.google.protobuf.ByteString getPushEndpointBytes() {
java.lang.Object ref = pushEndpoint_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
pushEndpoint_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* A URL locating the endpoint to which messages should be pushed.
* For example, a Webhook endpoint might use "https://example.com/push".
*
*
* string push_endpoint = 1;
*/
public Builder setPushEndpoint(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
pushEndpoint_ = value;
onChanged();
return this;
}
/**
*
*
*
* A URL locating the endpoint to which messages should be pushed.
* For example, a Webhook endpoint might use "https://example.com/push".
*
*
* string push_endpoint = 1;
*/
public Builder clearPushEndpoint() {
pushEndpoint_ = getDefaultInstance().getPushEndpoint();
onChanged();
return this;
}
/**
*
*
*
* A URL locating the endpoint to which messages should be pushed.
* For example, a Webhook endpoint might use "https://example.com/push".
*
*
* string push_endpoint = 1;
*/
public Builder setPushEndpointBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
pushEndpoint_ = value;
onChanged();
return this;
}
private com.google.protobuf.MapField attributes_;
private com.google.protobuf.MapField
internalGetAttributes() {
if (attributes_ == null) {
return com.google.protobuf.MapField.emptyMapField(
AttributesDefaultEntryHolder.defaultEntry);
}
return attributes_;
}
private com.google.protobuf.MapField
internalGetMutableAttributes() {
onChanged();
;
if (attributes_ == null) {
attributes_ =
com.google.protobuf.MapField.newMapField(AttributesDefaultEntryHolder.defaultEntry);
}
if (!attributes_.isMutable()) {
attributes_ = attributes_.copy();
}
return attributes_;
}
public int getAttributesCount() {
return internalGetAttributes().getMap().size();
}
/**
*
*
*
* Endpoint configuration attributes that can be used to control different
* aspects of the message delivery.
* The only currently supported attribute is `x-goog-version`, which you can
* use to change the format of the pushed message. This attribute
* indicates the version of the data expected by the endpoint. This
* controls the shape of the pushed message (i.e., its fields and metadata).
* If not present during the `CreateSubscription` call, it will default to
* the version of the Pub/Sub API used to make such call. If not present in a
* `ModifyPushConfig` call, its value will not be changed. `GetSubscription`
* calls will always return a valid version, even if the subscription was
* created without this attribute.
* The only supported values for the `x-goog-version` attribute are:
* * `v1beta1`: uses the push format defined in the v1beta1 Pub/Sub API.
* * `v1` or `v1beta2`: uses the push format defined in the v1 Pub/Sub API.
* For example:
* <pre><code>attributes { "x-goog-version": "v1" } </code></pre>
*
*
* map<string, string> attributes = 2;
*/
public boolean containsAttributes(java.lang.String key) {
if (key == null) {
throw new java.lang.NullPointerException();
}
return internalGetAttributes().getMap().containsKey(key);
}
/** Use {@link #getAttributesMap()} instead. */
@java.lang.Deprecated
public java.util.Map getAttributes() {
return getAttributesMap();
}
/**
*
*
*
* Endpoint configuration attributes that can be used to control different
* aspects of the message delivery.
* The only currently supported attribute is `x-goog-version`, which you can
* use to change the format of the pushed message. This attribute
* indicates the version of the data expected by the endpoint. This
* controls the shape of the pushed message (i.e., its fields and metadata).
* If not present during the `CreateSubscription` call, it will default to
* the version of the Pub/Sub API used to make such call. If not present in a
* `ModifyPushConfig` call, its value will not be changed. `GetSubscription`
* calls will always return a valid version, even if the subscription was
* created without this attribute.
* The only supported values for the `x-goog-version` attribute are:
* * `v1beta1`: uses the push format defined in the v1beta1 Pub/Sub API.
* * `v1` or `v1beta2`: uses the push format defined in the v1 Pub/Sub API.
* For example:
* <pre><code>attributes { "x-goog-version": "v1" } </code></pre>
*
*
* map<string, string> attributes = 2;
*/
public java.util.Map getAttributesMap() {
return internalGetAttributes().getMap();
}
/**
*
*
*
* Endpoint configuration attributes that can be used to control different
* aspects of the message delivery.
* The only currently supported attribute is `x-goog-version`, which you can
* use to change the format of the pushed message. This attribute
* indicates the version of the data expected by the endpoint. This
* controls the shape of the pushed message (i.e., its fields and metadata).
* If not present during the `CreateSubscription` call, it will default to
* the version of the Pub/Sub API used to make such call. If not present in a
* `ModifyPushConfig` call, its value will not be changed. `GetSubscription`
* calls will always return a valid version, even if the subscription was
* created without this attribute.
* The only supported values for the `x-goog-version` attribute are:
* * `v1beta1`: uses the push format defined in the v1beta1 Pub/Sub API.
* * `v1` or `v1beta2`: uses the push format defined in the v1 Pub/Sub API.
* For example:
* <pre><code>attributes { "x-goog-version": "v1" } </code></pre>
*
*
* map<string, string> attributes = 2;
*/
public java.lang.String getAttributesOrDefault(
java.lang.String key, java.lang.String defaultValue) {
if (key == null) {
throw new java.lang.NullPointerException();
}
java.util.Map map = internalGetAttributes().getMap();
return map.containsKey(key) ? map.get(key) : defaultValue;
}
/**
*
*
*
* Endpoint configuration attributes that can be used to control different
* aspects of the message delivery.
* The only currently supported attribute is `x-goog-version`, which you can
* use to change the format of the pushed message. This attribute
* indicates the version of the data expected by the endpoint. This
* controls the shape of the pushed message (i.e., its fields and metadata).
* If not present during the `CreateSubscription` call, it will default to
* the version of the Pub/Sub API used to make such call. If not present in a
* `ModifyPushConfig` call, its value will not be changed. `GetSubscription`
* calls will always return a valid version, even if the subscription was
* created without this attribute.
* The only supported values for the `x-goog-version` attribute are:
* * `v1beta1`: uses the push format defined in the v1beta1 Pub/Sub API.
* * `v1` or `v1beta2`: uses the push format defined in the v1 Pub/Sub API.
* For example:
* <pre><code>attributes { "x-goog-version": "v1" } </code></pre>
*
*
* map<string, string> attributes = 2;
*/
public java.lang.String getAttributesOrThrow(java.lang.String key) {
if (key == null) {
throw new java.lang.NullPointerException();
}
java.util.Map map = internalGetAttributes().getMap();
if (!map.containsKey(key)) {
throw new java.lang.IllegalArgumentException();
}
return map.get(key);
}
public Builder clearAttributes() {
internalGetMutableAttributes().getMutableMap().clear();
return this;
}
/**
*
*
*
* Endpoint configuration attributes that can be used to control different
* aspects of the message delivery.
* The only currently supported attribute is `x-goog-version`, which you can
* use to change the format of the pushed message. This attribute
* indicates the version of the data expected by the endpoint. This
* controls the shape of the pushed message (i.e., its fields and metadata).
* If not present during the `CreateSubscription` call, it will default to
* the version of the Pub/Sub API used to make such call. If not present in a
* `ModifyPushConfig` call, its value will not be changed. `GetSubscription`
* calls will always return a valid version, even if the subscription was
* created without this attribute.
* The only supported values for the `x-goog-version` attribute are:
* * `v1beta1`: uses the push format defined in the v1beta1 Pub/Sub API.
* * `v1` or `v1beta2`: uses the push format defined in the v1 Pub/Sub API.
* For example:
* <pre><code>attributes { "x-goog-version": "v1" } </code></pre>
*
*
* map<string, string> attributes = 2;
*/
public Builder removeAttributes(java.lang.String key) {
if (key == null) {
throw new java.lang.NullPointerException();
}
internalGetMutableAttributes().getMutableMap().remove(key);
return this;
}
/** Use alternate mutation accessors instead. */
@java.lang.Deprecated
public java.util.Map getMutableAttributes() {
return internalGetMutableAttributes().getMutableMap();
}
/**
*
*
*
* Endpoint configuration attributes that can be used to control different
* aspects of the message delivery.
* The only currently supported attribute is `x-goog-version`, which you can
* use to change the format of the pushed message. This attribute
* indicates the version of the data expected by the endpoint. This
* controls the shape of the pushed message (i.e., its fields and metadata).
* If not present during the `CreateSubscription` call, it will default to
* the version of the Pub/Sub API used to make such call. If not present in a
* `ModifyPushConfig` call, its value will not be changed. `GetSubscription`
* calls will always return a valid version, even if the subscription was
* created without this attribute.
* The only supported values for the `x-goog-version` attribute are:
* * `v1beta1`: uses the push format defined in the v1beta1 Pub/Sub API.
* * `v1` or `v1beta2`: uses the push format defined in the v1 Pub/Sub API.
* For example:
* <pre><code>attributes { "x-goog-version": "v1" } </code></pre>
*
*
* map<string, string> attributes = 2;
*/
public Builder putAttributes(java.lang.String key, java.lang.String value) {
if (key == null) {
throw new java.lang.NullPointerException();
}
if (value == null) {
throw new java.lang.NullPointerException();
}
internalGetMutableAttributes().getMutableMap().put(key, value);
return this;
}
/**
*
*
*
* Endpoint configuration attributes that can be used to control different
* aspects of the message delivery.
* The only currently supported attribute is `x-goog-version`, which you can
* use to change the format of the pushed message. This attribute
* indicates the version of the data expected by the endpoint. This
* controls the shape of the pushed message (i.e., its fields and metadata).
* If not present during the `CreateSubscription` call, it will default to
* the version of the Pub/Sub API used to make such call. If not present in a
* `ModifyPushConfig` call, its value will not be changed. `GetSubscription`
* calls will always return a valid version, even if the subscription was
* created without this attribute.
* The only supported values for the `x-goog-version` attribute are:
* * `v1beta1`: uses the push format defined in the v1beta1 Pub/Sub API.
* * `v1` or `v1beta2`: uses the push format defined in the v1 Pub/Sub API.
* For example:
* <pre><code>attributes { "x-goog-version": "v1" } </code></pre>
*
*
* map<string, string> attributes = 2;
*/
public Builder putAllAttributes(java.util.Map values) {
internalGetMutableAttributes().getMutableMap().putAll(values);
return this;
}
private com.google.protobuf.SingleFieldBuilderV3<
com.google.pubsub.v1.PushConfig.OidcToken,
com.google.pubsub.v1.PushConfig.OidcToken.Builder,
com.google.pubsub.v1.PushConfig.OidcTokenOrBuilder>
oidcTokenBuilder_;
/**
*
*
*
* If specified, Pub/Sub will generate and attach an OIDC JWT token as an
* `Authorization` header in the HTTP request for every pushed message.
*
*
* .google.pubsub.v1.PushConfig.OidcToken oidc_token = 3;
*/
public boolean hasOidcToken() {
return authenticationMethodCase_ == 3;
}
/**
*
*
*
* If specified, Pub/Sub will generate and attach an OIDC JWT token as an
* `Authorization` header in the HTTP request for every pushed message.
*
*
* .google.pubsub.v1.PushConfig.OidcToken oidc_token = 3;
*/
public com.google.pubsub.v1.PushConfig.OidcToken getOidcToken() {
if (oidcTokenBuilder_ == null) {
if (authenticationMethodCase_ == 3) {
return (com.google.pubsub.v1.PushConfig.OidcToken) authenticationMethod_;
}
return com.google.pubsub.v1.PushConfig.OidcToken.getDefaultInstance();
} else {
if (authenticationMethodCase_ == 3) {
return oidcTokenBuilder_.getMessage();
}
return com.google.pubsub.v1.PushConfig.OidcToken.getDefaultInstance();
}
}
/**
*
*
*
* If specified, Pub/Sub will generate and attach an OIDC JWT token as an
* `Authorization` header in the HTTP request for every pushed message.
*
*
* .google.pubsub.v1.PushConfig.OidcToken oidc_token = 3;
*/
public Builder setOidcToken(com.google.pubsub.v1.PushConfig.OidcToken value) {
if (oidcTokenBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
authenticationMethod_ = value;
onChanged();
} else {
oidcTokenBuilder_.setMessage(value);
}
authenticationMethodCase_ = 3;
return this;
}
/**
*
*
*
* If specified, Pub/Sub will generate and attach an OIDC JWT token as an
* `Authorization` header in the HTTP request for every pushed message.
*
*
* .google.pubsub.v1.PushConfig.OidcToken oidc_token = 3;
*/
public Builder setOidcToken(com.google.pubsub.v1.PushConfig.OidcToken.Builder builderForValue) {
if (oidcTokenBuilder_ == null) {
authenticationMethod_ = builderForValue.build();
onChanged();
} else {
oidcTokenBuilder_.setMessage(builderForValue.build());
}
authenticationMethodCase_ = 3;
return this;
}
/**
*
*
*
* If specified, Pub/Sub will generate and attach an OIDC JWT token as an
* `Authorization` header in the HTTP request for every pushed message.
*
*
* .google.pubsub.v1.PushConfig.OidcToken oidc_token = 3;
*/
public Builder mergeOidcToken(com.google.pubsub.v1.PushConfig.OidcToken value) {
if (oidcTokenBuilder_ == null) {
if (authenticationMethodCase_ == 3
&& authenticationMethod_
!= com.google.pubsub.v1.PushConfig.OidcToken.getDefaultInstance()) {
authenticationMethod_ =
com.google.pubsub.v1.PushConfig.OidcToken.newBuilder(
(com.google.pubsub.v1.PushConfig.OidcToken) authenticationMethod_)
.mergeFrom(value)
.buildPartial();
} else {
authenticationMethod_ = value;
}
onChanged();
} else {
if (authenticationMethodCase_ == 3) {
oidcTokenBuilder_.mergeFrom(value);
}
oidcTokenBuilder_.setMessage(value);
}
authenticationMethodCase_ = 3;
return this;
}
/**
*
*
*
* If specified, Pub/Sub will generate and attach an OIDC JWT token as an
* `Authorization` header in the HTTP request for every pushed message.
*
*
* .google.pubsub.v1.PushConfig.OidcToken oidc_token = 3;
*/
public Builder clearOidcToken() {
if (oidcTokenBuilder_ == null) {
if (authenticationMethodCase_ == 3) {
authenticationMethodCase_ = 0;
authenticationMethod_ = null;
onChanged();
}
} else {
if (authenticationMethodCase_ == 3) {
authenticationMethodCase_ = 0;
authenticationMethod_ = null;
}
oidcTokenBuilder_.clear();
}
return this;
}
/**
*
*
*
* If specified, Pub/Sub will generate and attach an OIDC JWT token as an
* `Authorization` header in the HTTP request for every pushed message.
*
*
* .google.pubsub.v1.PushConfig.OidcToken oidc_token = 3;
*/
public com.google.pubsub.v1.PushConfig.OidcToken.Builder getOidcTokenBuilder() {
return getOidcTokenFieldBuilder().getBuilder();
}
/**
*
*
*
* If specified, Pub/Sub will generate and attach an OIDC JWT token as an
* `Authorization` header in the HTTP request for every pushed message.
*
*
* .google.pubsub.v1.PushConfig.OidcToken oidc_token = 3;
*/
public com.google.pubsub.v1.PushConfig.OidcTokenOrBuilder getOidcTokenOrBuilder() {
if ((authenticationMethodCase_ == 3) && (oidcTokenBuilder_ != null)) {
return oidcTokenBuilder_.getMessageOrBuilder();
} else {
if (authenticationMethodCase_ == 3) {
return (com.google.pubsub.v1.PushConfig.OidcToken) authenticationMethod_;
}
return com.google.pubsub.v1.PushConfig.OidcToken.getDefaultInstance();
}
}
/**
*
*
*
* If specified, Pub/Sub will generate and attach an OIDC JWT token as an
* `Authorization` header in the HTTP request for every pushed message.
*
*
* .google.pubsub.v1.PushConfig.OidcToken oidc_token = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.pubsub.v1.PushConfig.OidcToken,
com.google.pubsub.v1.PushConfig.OidcToken.Builder,
com.google.pubsub.v1.PushConfig.OidcTokenOrBuilder>
getOidcTokenFieldBuilder() {
if (oidcTokenBuilder_ == null) {
if (!(authenticationMethodCase_ == 3)) {
authenticationMethod_ = com.google.pubsub.v1.PushConfig.OidcToken.getDefaultInstance();
}
oidcTokenBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.pubsub.v1.PushConfig.OidcToken,
com.google.pubsub.v1.PushConfig.OidcToken.Builder,
com.google.pubsub.v1.PushConfig.OidcTokenOrBuilder>(
(com.google.pubsub.v1.PushConfig.OidcToken) authenticationMethod_,
getParentForChildren(),
isClean());
authenticationMethod_ = null;
}
authenticationMethodCase_ = 3;
onChanged();
;
return oidcTokenBuilder_;
}
@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.PushConfig)
}
// @@protoc_insertion_point(class_scope:google.pubsub.v1.PushConfig)
private static final com.google.pubsub.v1.PushConfig DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.pubsub.v1.PushConfig();
}
public static com.google.pubsub.v1.PushConfig getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public PushConfig parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new PushConfig(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.PushConfig getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy