com.google.cloud.deploy.v1.DeployPolicyNotificationEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-deploy-v1 Show documentation
Show all versions of proto-google-cloud-deploy-v1 Show documentation
Proto library for google-cloud-deploy
The newest version!
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/deploy/v1/deploypolicy_notification_payload.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.deploy.v1;
/**
*
*
*
* Payload proto for "clouddeploy.googleapis.com/deploypolicy_notification".
* Platform Log event that describes the failure to send a pub/sub notification
* when there is a DeployPolicy status change.
*
*
* Protobuf type {@code google.cloud.deploy.v1.DeployPolicyNotificationEvent}
*/
public final class DeployPolicyNotificationEvent extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.deploy.v1.DeployPolicyNotificationEvent)
DeployPolicyNotificationEventOrBuilder {
private static final long serialVersionUID = 0L;
// Use DeployPolicyNotificationEvent.newBuilder() to construct.
private DeployPolicyNotificationEvent(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private DeployPolicyNotificationEvent() {
message_ = "";
deployPolicy_ = "";
deployPolicyUid_ = "";
type_ = 0;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new DeployPolicyNotificationEvent();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.deploy.v1.DeployPolicyNotificationPayloadProto
.internal_static_google_cloud_deploy_v1_DeployPolicyNotificationEvent_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.deploy.v1.DeployPolicyNotificationPayloadProto
.internal_static_google_cloud_deploy_v1_DeployPolicyNotificationEvent_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.deploy.v1.DeployPolicyNotificationEvent.class,
com.google.cloud.deploy.v1.DeployPolicyNotificationEvent.Builder.class);
}
public static final int MESSAGE_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object message_ = "";
/**
*
*
*
* Debug message for when a deploy policy fails to send a pub/sub
* notification.
*
*
* string message = 1;
*
* @return The message.
*/
@java.lang.Override
public java.lang.String getMessage() {
java.lang.Object ref = message_;
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();
message_ = s;
return s;
}
}
/**
*
*
*
* Debug message for when a deploy policy fails to send a pub/sub
* notification.
*
*
* string message = 1;
*
* @return The bytes for message.
*/
@java.lang.Override
public com.google.protobuf.ByteString getMessageBytes() {
java.lang.Object ref = message_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
message_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int DEPLOY_POLICY_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object deployPolicy_ = "";
/**
*
*
*
* The name of the `DeployPolicy`.
*
*
* string deploy_policy = 2;
*
* @return The deployPolicy.
*/
@java.lang.Override
public java.lang.String getDeployPolicy() {
java.lang.Object ref = deployPolicy_;
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();
deployPolicy_ = s;
return s;
}
}
/**
*
*
*
* The name of the `DeployPolicy`.
*
*
* string deploy_policy = 2;
*
* @return The bytes for deployPolicy.
*/
@java.lang.Override
public com.google.protobuf.ByteString getDeployPolicyBytes() {
java.lang.Object ref = deployPolicy_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
deployPolicy_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int DEPLOY_POLICY_UID_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private volatile java.lang.Object deployPolicyUid_ = "";
/**
*
*
*
* Unique identifier of the deploy policy.
*
*
* string deploy_policy_uid = 3;
*
* @return The deployPolicyUid.
*/
@java.lang.Override
public java.lang.String getDeployPolicyUid() {
java.lang.Object ref = deployPolicyUid_;
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();
deployPolicyUid_ = s;
return s;
}
}
/**
*
*
*
* Unique identifier of the deploy policy.
*
*
* string deploy_policy_uid = 3;
*
* @return The bytes for deployPolicyUid.
*/
@java.lang.Override
public com.google.protobuf.ByteString getDeployPolicyUidBytes() {
java.lang.Object ref = deployPolicyUid_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
deployPolicyUid_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TYPE_FIELD_NUMBER = 4;
private int type_ = 0;
/**
*
*
*
* Type of this notification, e.g. for a Pub/Sub failure.
*
*
* .google.cloud.deploy.v1.Type type = 4;
*
* @return The enum numeric value on the wire for type.
*/
@java.lang.Override
public int getTypeValue() {
return type_;
}
/**
*
*
*
* Type of this notification, e.g. for a Pub/Sub failure.
*
*
* .google.cloud.deploy.v1.Type type = 4;
*
* @return The type.
*/
@java.lang.Override
public com.google.cloud.deploy.v1.Type getType() {
com.google.cloud.deploy.v1.Type result = com.google.cloud.deploy.v1.Type.forNumber(type_);
return result == null ? com.google.cloud.deploy.v1.Type.UNRECOGNIZED : result;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException {
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(message_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, message_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(deployPolicy_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, deployPolicy_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(deployPolicyUid_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, deployPolicyUid_);
}
if (type_ != com.google.cloud.deploy.v1.Type.TYPE_UNSPECIFIED.getNumber()) {
output.writeEnum(4, type_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(message_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, message_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(deployPolicy_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, deployPolicy_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(deployPolicyUid_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, deployPolicyUid_);
}
if (type_ != com.google.cloud.deploy.v1.Type.TYPE_UNSPECIFIED.getNumber()) {
size += com.google.protobuf.CodedOutputStream.computeEnumSize(4, type_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.google.cloud.deploy.v1.DeployPolicyNotificationEvent)) {
return super.equals(obj);
}
com.google.cloud.deploy.v1.DeployPolicyNotificationEvent other =
(com.google.cloud.deploy.v1.DeployPolicyNotificationEvent) obj;
if (!getMessage().equals(other.getMessage())) return false;
if (!getDeployPolicy().equals(other.getDeployPolicy())) return false;
if (!getDeployPolicyUid().equals(other.getDeployPolicyUid())) return false;
if (type_ != other.type_) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + MESSAGE_FIELD_NUMBER;
hash = (53 * hash) + getMessage().hashCode();
hash = (37 * hash) + DEPLOY_POLICY_FIELD_NUMBER;
hash = (53 * hash) + getDeployPolicy().hashCode();
hash = (37 * hash) + DEPLOY_POLICY_UID_FIELD_NUMBER;
hash = (53 * hash) + getDeployPolicyUid().hashCode();
hash = (37 * hash) + TYPE_FIELD_NUMBER;
hash = (53 * hash) + type_;
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.deploy.v1.DeployPolicyNotificationEvent parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.deploy.v1.DeployPolicyNotificationEvent parseFrom(
java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.deploy.v1.DeployPolicyNotificationEvent parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.deploy.v1.DeployPolicyNotificationEvent 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.cloud.deploy.v1.DeployPolicyNotificationEvent parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.deploy.v1.DeployPolicyNotificationEvent parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.deploy.v1.DeployPolicyNotificationEvent parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.deploy.v1.DeployPolicyNotificationEvent 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.cloud.deploy.v1.DeployPolicyNotificationEvent parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.deploy.v1.DeployPolicyNotificationEvent 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.cloud.deploy.v1.DeployPolicyNotificationEvent parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.deploy.v1.DeployPolicyNotificationEvent 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.cloud.deploy.v1.DeployPolicyNotificationEvent 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;
}
/**
*
*
*
* Payload proto for "clouddeploy.googleapis.com/deploypolicy_notification".
* Platform Log event that describes the failure to send a pub/sub notification
* when there is a DeployPolicy status change.
*
*
* Protobuf type {@code google.cloud.deploy.v1.DeployPolicyNotificationEvent}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.deploy.v1.DeployPolicyNotificationEvent)
com.google.cloud.deploy.v1.DeployPolicyNotificationEventOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.deploy.v1.DeployPolicyNotificationPayloadProto
.internal_static_google_cloud_deploy_v1_DeployPolicyNotificationEvent_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.deploy.v1.DeployPolicyNotificationPayloadProto
.internal_static_google_cloud_deploy_v1_DeployPolicyNotificationEvent_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.deploy.v1.DeployPolicyNotificationEvent.class,
com.google.cloud.deploy.v1.DeployPolicyNotificationEvent.Builder.class);
}
// Construct using com.google.cloud.deploy.v1.DeployPolicyNotificationEvent.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
message_ = "";
deployPolicy_ = "";
deployPolicyUid_ = "";
type_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.deploy.v1.DeployPolicyNotificationPayloadProto
.internal_static_google_cloud_deploy_v1_DeployPolicyNotificationEvent_descriptor;
}
@java.lang.Override
public com.google.cloud.deploy.v1.DeployPolicyNotificationEvent getDefaultInstanceForType() {
return com.google.cloud.deploy.v1.DeployPolicyNotificationEvent.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.deploy.v1.DeployPolicyNotificationEvent build() {
com.google.cloud.deploy.v1.DeployPolicyNotificationEvent result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.deploy.v1.DeployPolicyNotificationEvent buildPartial() {
com.google.cloud.deploy.v1.DeployPolicyNotificationEvent result =
new com.google.cloud.deploy.v1.DeployPolicyNotificationEvent(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.deploy.v1.DeployPolicyNotificationEvent result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.message_ = message_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.deployPolicy_ = deployPolicy_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.deployPolicyUid_ = deployPolicyUid_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.type_ = type_;
}
}
@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.cloud.deploy.v1.DeployPolicyNotificationEvent) {
return mergeFrom((com.google.cloud.deploy.v1.DeployPolicyNotificationEvent) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.deploy.v1.DeployPolicyNotificationEvent other) {
if (other == com.google.cloud.deploy.v1.DeployPolicyNotificationEvent.getDefaultInstance())
return this;
if (!other.getMessage().isEmpty()) {
message_ = other.message_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getDeployPolicy().isEmpty()) {
deployPolicy_ = other.deployPolicy_;
bitField0_ |= 0x00000002;
onChanged();
}
if (!other.getDeployPolicyUid().isEmpty()) {
deployPolicyUid_ = other.deployPolicyUid_;
bitField0_ |= 0x00000004;
onChanged();
}
if (other.type_ != 0) {
setTypeValue(other.getTypeValue());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10:
{
message_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
deployPolicy_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 26:
{
deployPolicyUid_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000004;
break;
} // case 26
case 32:
{
type_ = input.readEnum();
bitField0_ |= 0x00000008;
break;
} // case 32
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object message_ = "";
/**
*
*
*
* Debug message for when a deploy policy fails to send a pub/sub
* notification.
*
*
* string message = 1;
*
* @return The message.
*/
public java.lang.String getMessage() {
java.lang.Object ref = message_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
message_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Debug message for when a deploy policy fails to send a pub/sub
* notification.
*
*
* string message = 1;
*
* @return The bytes for message.
*/
public com.google.protobuf.ByteString getMessageBytes() {
java.lang.Object ref = message_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
message_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Debug message for when a deploy policy fails to send a pub/sub
* notification.
*
*
* string message = 1;
*
* @param value The message to set.
* @return This builder for chaining.
*/
public Builder setMessage(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
message_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Debug message for when a deploy policy fails to send a pub/sub
* notification.
*
*
* string message = 1;
*
* @return This builder for chaining.
*/
public Builder clearMessage() {
message_ = getDefaultInstance().getMessage();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* Debug message for when a deploy policy fails to send a pub/sub
* notification.
*
*
* string message = 1;
*
* @param value The bytes for message to set.
* @return This builder for chaining.
*/
public Builder setMessageBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
message_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object deployPolicy_ = "";
/**
*
*
*
* The name of the `DeployPolicy`.
*
*
* string deploy_policy = 2;
*
* @return The deployPolicy.
*/
public java.lang.String getDeployPolicy() {
java.lang.Object ref = deployPolicy_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
deployPolicy_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The name of the `DeployPolicy`.
*
*
* string deploy_policy = 2;
*
* @return The bytes for deployPolicy.
*/
public com.google.protobuf.ByteString getDeployPolicyBytes() {
java.lang.Object ref = deployPolicy_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
deployPolicy_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The name of the `DeployPolicy`.
*
*
* string deploy_policy = 2;
*
* @param value The deployPolicy to set.
* @return This builder for chaining.
*/
public Builder setDeployPolicy(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
deployPolicy_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* The name of the `DeployPolicy`.
*
*
* string deploy_policy = 2;
*
* @return This builder for chaining.
*/
public Builder clearDeployPolicy() {
deployPolicy_ = getDefaultInstance().getDeployPolicy();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
*
*
* The name of the `DeployPolicy`.
*
*
* string deploy_policy = 2;
*
* @param value The bytes for deployPolicy to set.
* @return This builder for chaining.
*/
public Builder setDeployPolicyBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
deployPolicy_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private java.lang.Object deployPolicyUid_ = "";
/**
*
*
*
* Unique identifier of the deploy policy.
*
*
* string deploy_policy_uid = 3;
*
* @return The deployPolicyUid.
*/
public java.lang.String getDeployPolicyUid() {
java.lang.Object ref = deployPolicyUid_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
deployPolicyUid_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* Unique identifier of the deploy policy.
*
*
* string deploy_policy_uid = 3;
*
* @return The bytes for deployPolicyUid.
*/
public com.google.protobuf.ByteString getDeployPolicyUidBytes() {
java.lang.Object ref = deployPolicyUid_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
deployPolicyUid_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* Unique identifier of the deploy policy.
*
*
* string deploy_policy_uid = 3;
*
* @param value The deployPolicyUid to set.
* @return This builder for chaining.
*/
public Builder setDeployPolicyUid(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
deployPolicyUid_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* Unique identifier of the deploy policy.
*
*
* string deploy_policy_uid = 3;
*
* @return This builder for chaining.
*/
public Builder clearDeployPolicyUid() {
deployPolicyUid_ = getDefaultInstance().getDeployPolicyUid();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
return this;
}
/**
*
*
*
* Unique identifier of the deploy policy.
*
*
* string deploy_policy_uid = 3;
*
* @param value The bytes for deployPolicyUid to set.
* @return This builder for chaining.
*/
public Builder setDeployPolicyUidBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
deployPolicyUid_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
private int type_ = 0;
/**
*
*
*
* Type of this notification, e.g. for a Pub/Sub failure.
*
*
* .google.cloud.deploy.v1.Type type = 4;
*
* @return The enum numeric value on the wire for type.
*/
@java.lang.Override
public int getTypeValue() {
return type_;
}
/**
*
*
*
* Type of this notification, e.g. for a Pub/Sub failure.
*
*
* .google.cloud.deploy.v1.Type type = 4;
*
* @param value The enum numeric value on the wire for type to set.
* @return This builder for chaining.
*/
public Builder setTypeValue(int value) {
type_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Type of this notification, e.g. for a Pub/Sub failure.
*
*
* .google.cloud.deploy.v1.Type type = 4;
*
* @return The type.
*/
@java.lang.Override
public com.google.cloud.deploy.v1.Type getType() {
com.google.cloud.deploy.v1.Type result = com.google.cloud.deploy.v1.Type.forNumber(type_);
return result == null ? com.google.cloud.deploy.v1.Type.UNRECOGNIZED : result;
}
/**
*
*
*
* Type of this notification, e.g. for a Pub/Sub failure.
*
*
* .google.cloud.deploy.v1.Type type = 4;
*
* @param value The type to set.
* @return This builder for chaining.
*/
public Builder setType(com.google.cloud.deploy.v1.Type value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000008;
type_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*
* Type of this notification, e.g. for a Pub/Sub failure.
*
*
* .google.cloud.deploy.v1.Type type = 4;
*
* @return This builder for chaining.
*/
public Builder clearType() {
bitField0_ = (bitField0_ & ~0x00000008);
type_ = 0;
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.cloud.deploy.v1.DeployPolicyNotificationEvent)
}
// @@protoc_insertion_point(class_scope:google.cloud.deploy.v1.DeployPolicyNotificationEvent)
private static final com.google.cloud.deploy.v1.DeployPolicyNotificationEvent DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.deploy.v1.DeployPolicyNotificationEvent();
}
public static com.google.cloud.deploy.v1.DeployPolicyNotificationEvent getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public DeployPolicyNotificationEvent parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
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.cloud.deploy.v1.DeployPolicyNotificationEvent getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}