All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.deploy.v1.RolloutNotificationEvent Maven / Gradle / Ivy

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/rollout_notification_payload.proto

// Protobuf Java Version: 3.25.4
package com.google.cloud.deploy.v1;

/**
 *
 *
 * 
 * Payload proto for "clouddeploy.googleapis.com/rollout_notification"
 * Platform Log event that describes the failure to send rollout status change
 * Pub/Sub notification.
 * 
* * Protobuf type {@code google.cloud.deploy.v1.RolloutNotificationEvent} */ public final class RolloutNotificationEvent extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.deploy.v1.RolloutNotificationEvent) RolloutNotificationEventOrBuilder { private static final long serialVersionUID = 0L; // Use RolloutNotificationEvent.newBuilder() to construct. private RolloutNotificationEvent(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private RolloutNotificationEvent() { message_ = ""; pipelineUid_ = ""; releaseUid_ = ""; release_ = ""; rolloutUid_ = ""; rollout_ = ""; targetId_ = ""; type_ = 0; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new RolloutNotificationEvent(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.deploy.v1.RolloutNotificationPayloadProto .internal_static_google_cloud_deploy_v1_RolloutNotificationEvent_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.deploy.v1.RolloutNotificationPayloadProto .internal_static_google_cloud_deploy_v1_RolloutNotificationEvent_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.deploy.v1.RolloutNotificationEvent.class, com.google.cloud.deploy.v1.RolloutNotificationEvent.Builder.class); } public static final int MESSAGE_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object message_ = ""; /** * * *
   * Debug message for when a notification fails to send.
   * 
* * 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 notification fails to send.
   * 
* * 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 PIPELINE_UID_FIELD_NUMBER = 2; @SuppressWarnings("serial") private volatile java.lang.Object pipelineUid_ = ""; /** * * *
   * Unique identifier of the `DeliveryPipeline`.
   * 
* * string pipeline_uid = 2; * * @return The pipelineUid. */ @java.lang.Override public java.lang.String getPipelineUid() { java.lang.Object ref = pipelineUid_; 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(); pipelineUid_ = s; return s; } } /** * * *
   * Unique identifier of the `DeliveryPipeline`.
   * 
* * string pipeline_uid = 2; * * @return The bytes for pipelineUid. */ @java.lang.Override public com.google.protobuf.ByteString getPipelineUidBytes() { java.lang.Object ref = pipelineUid_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); pipelineUid_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int RELEASE_UID_FIELD_NUMBER = 3; @SuppressWarnings("serial") private volatile java.lang.Object releaseUid_ = ""; /** * * *
   * Unique identifier of the `Release`.
   * 
* * string release_uid = 3; * * @return The releaseUid. */ @java.lang.Override public java.lang.String getReleaseUid() { java.lang.Object ref = releaseUid_; 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(); releaseUid_ = s; return s; } } /** * * *
   * Unique identifier of the `Release`.
   * 
* * string release_uid = 3; * * @return The bytes for releaseUid. */ @java.lang.Override public com.google.protobuf.ByteString getReleaseUidBytes() { java.lang.Object ref = releaseUid_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); releaseUid_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int RELEASE_FIELD_NUMBER = 7; @SuppressWarnings("serial") private volatile java.lang.Object release_ = ""; /** * * *
   * The name of the `Release`.
   * 
* * string release = 7; * * @return The release. */ @java.lang.Override public java.lang.String getRelease() { java.lang.Object ref = release_; 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(); release_ = s; return s; } } /** * * *
   * The name of the `Release`.
   * 
* * string release = 7; * * @return The bytes for release. */ @java.lang.Override public com.google.protobuf.ByteString getReleaseBytes() { java.lang.Object ref = release_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); release_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int ROLLOUT_UID_FIELD_NUMBER = 8; @SuppressWarnings("serial") private volatile java.lang.Object rolloutUid_ = ""; /** * * *
   * Unique identifier of the `Rollout`.
   * 
* * string rollout_uid = 8; * * @return The rolloutUid. */ @java.lang.Override public java.lang.String getRolloutUid() { java.lang.Object ref = rolloutUid_; 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(); rolloutUid_ = s; return s; } } /** * * *
   * Unique identifier of the `Rollout`.
   * 
* * string rollout_uid = 8; * * @return The bytes for rolloutUid. */ @java.lang.Override public com.google.protobuf.ByteString getRolloutUidBytes() { java.lang.Object ref = rolloutUid_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); rolloutUid_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int ROLLOUT_FIELD_NUMBER = 4; @SuppressWarnings("serial") private volatile java.lang.Object rollout_ = ""; /** * * *
   * The name of the `Rollout`.
   * 
* * string rollout = 4; * * @return The rollout. */ @java.lang.Override public java.lang.String getRollout() { java.lang.Object ref = rollout_; 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(); rollout_ = s; return s; } } /** * * *
   * The name of the `Rollout`.
   * 
* * string rollout = 4; * * @return The bytes for rollout. */ @java.lang.Override public com.google.protobuf.ByteString getRolloutBytes() { java.lang.Object ref = rollout_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); rollout_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int TARGET_ID_FIELD_NUMBER = 6; @SuppressWarnings("serial") private volatile java.lang.Object targetId_ = ""; /** * * *
   * ID of the `Target` that the rollout is deployed to.
   * 
* * string target_id = 6; * * @return The targetId. */ @java.lang.Override public java.lang.String getTargetId() { java.lang.Object ref = targetId_; 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(); targetId_ = s; return s; } } /** * * *
   * ID of the `Target` that the rollout is deployed to.
   * 
* * string target_id = 6; * * @return The bytes for targetId. */ @java.lang.Override public com.google.protobuf.ByteString getTargetIdBytes() { java.lang.Object ref = targetId_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); targetId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int TYPE_FIELD_NUMBER = 5; private int type_ = 0; /** * * *
   * Type of this notification, e.g. for a Pub/Sub failure.
   * 
* * .google.cloud.deploy.v1.Type type = 5; * * @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 = 5; * * @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(pipelineUid_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, pipelineUid_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(releaseUid_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, releaseUid_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rollout_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 4, rollout_); } if (type_ != com.google.cloud.deploy.v1.Type.TYPE_UNSPECIFIED.getNumber()) { output.writeEnum(5, type_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(targetId_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 6, targetId_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(release_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 7, release_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rolloutUid_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 8, rolloutUid_); } 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(pipelineUid_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, pipelineUid_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(releaseUid_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, releaseUid_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rollout_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(4, rollout_); } if (type_ != com.google.cloud.deploy.v1.Type.TYPE_UNSPECIFIED.getNumber()) { size += com.google.protobuf.CodedOutputStream.computeEnumSize(5, type_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(targetId_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, targetId_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(release_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(7, release_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(rolloutUid_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(8, rolloutUid_); } 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.RolloutNotificationEvent)) { return super.equals(obj); } com.google.cloud.deploy.v1.RolloutNotificationEvent other = (com.google.cloud.deploy.v1.RolloutNotificationEvent) obj; if (!getMessage().equals(other.getMessage())) return false; if (!getPipelineUid().equals(other.getPipelineUid())) return false; if (!getReleaseUid().equals(other.getReleaseUid())) return false; if (!getRelease().equals(other.getRelease())) return false; if (!getRolloutUid().equals(other.getRolloutUid())) return false; if (!getRollout().equals(other.getRollout())) return false; if (!getTargetId().equals(other.getTargetId())) 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) + PIPELINE_UID_FIELD_NUMBER; hash = (53 * hash) + getPipelineUid().hashCode(); hash = (37 * hash) + RELEASE_UID_FIELD_NUMBER; hash = (53 * hash) + getReleaseUid().hashCode(); hash = (37 * hash) + RELEASE_FIELD_NUMBER; hash = (53 * hash) + getRelease().hashCode(); hash = (37 * hash) + ROLLOUT_UID_FIELD_NUMBER; hash = (53 * hash) + getRolloutUid().hashCode(); hash = (37 * hash) + ROLLOUT_FIELD_NUMBER; hash = (53 * hash) + getRollout().hashCode(); hash = (37 * hash) + TARGET_ID_FIELD_NUMBER; hash = (53 * hash) + getTargetId().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.RolloutNotificationEvent parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.deploy.v1.RolloutNotificationEvent 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.RolloutNotificationEvent parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.deploy.v1.RolloutNotificationEvent 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.RolloutNotificationEvent parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.deploy.v1.RolloutNotificationEvent 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.RolloutNotificationEvent parseFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input); } public static com.google.cloud.deploy.v1.RolloutNotificationEvent 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.RolloutNotificationEvent parseDelimitedFrom( java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input); } public static com.google.cloud.deploy.v1.RolloutNotificationEvent 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.RolloutNotificationEvent 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.RolloutNotificationEvent 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.RolloutNotificationEvent 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/rollout_notification"
   * Platform Log event that describes the failure to send rollout status change
   * Pub/Sub notification.
   * 
* * Protobuf type {@code google.cloud.deploy.v1.RolloutNotificationEvent} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.deploy.v1.RolloutNotificationEvent) com.google.cloud.deploy.v1.RolloutNotificationEventOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.deploy.v1.RolloutNotificationPayloadProto .internal_static_google_cloud_deploy_v1_RolloutNotificationEvent_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.deploy.v1.RolloutNotificationPayloadProto .internal_static_google_cloud_deploy_v1_RolloutNotificationEvent_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.deploy.v1.RolloutNotificationEvent.class, com.google.cloud.deploy.v1.RolloutNotificationEvent.Builder.class); } // Construct using com.google.cloud.deploy.v1.RolloutNotificationEvent.newBuilder() private Builder() {} private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; message_ = ""; pipelineUid_ = ""; releaseUid_ = ""; release_ = ""; rolloutUid_ = ""; rollout_ = ""; targetId_ = ""; type_ = 0; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.deploy.v1.RolloutNotificationPayloadProto .internal_static_google_cloud_deploy_v1_RolloutNotificationEvent_descriptor; } @java.lang.Override public com.google.cloud.deploy.v1.RolloutNotificationEvent getDefaultInstanceForType() { return com.google.cloud.deploy.v1.RolloutNotificationEvent.getDefaultInstance(); } @java.lang.Override public com.google.cloud.deploy.v1.RolloutNotificationEvent build() { com.google.cloud.deploy.v1.RolloutNotificationEvent result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.deploy.v1.RolloutNotificationEvent buildPartial() { com.google.cloud.deploy.v1.RolloutNotificationEvent result = new com.google.cloud.deploy.v1.RolloutNotificationEvent(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.google.cloud.deploy.v1.RolloutNotificationEvent result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.message_ = message_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.pipelineUid_ = pipelineUid_; } if (((from_bitField0_ & 0x00000004) != 0)) { result.releaseUid_ = releaseUid_; } if (((from_bitField0_ & 0x00000008) != 0)) { result.release_ = release_; } if (((from_bitField0_ & 0x00000010) != 0)) { result.rolloutUid_ = rolloutUid_; } if (((from_bitField0_ & 0x00000020) != 0)) { result.rollout_ = rollout_; } if (((from_bitField0_ & 0x00000040) != 0)) { result.targetId_ = targetId_; } if (((from_bitField0_ & 0x00000080) != 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.RolloutNotificationEvent) { return mergeFrom((com.google.cloud.deploy.v1.RolloutNotificationEvent) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.deploy.v1.RolloutNotificationEvent other) { if (other == com.google.cloud.deploy.v1.RolloutNotificationEvent.getDefaultInstance()) return this; if (!other.getMessage().isEmpty()) { message_ = other.message_; bitField0_ |= 0x00000001; onChanged(); } if (!other.getPipelineUid().isEmpty()) { pipelineUid_ = other.pipelineUid_; bitField0_ |= 0x00000002; onChanged(); } if (!other.getReleaseUid().isEmpty()) { releaseUid_ = other.releaseUid_; bitField0_ |= 0x00000004; onChanged(); } if (!other.getRelease().isEmpty()) { release_ = other.release_; bitField0_ |= 0x00000008; onChanged(); } if (!other.getRolloutUid().isEmpty()) { rolloutUid_ = other.rolloutUid_; bitField0_ |= 0x00000010; onChanged(); } if (!other.getRollout().isEmpty()) { rollout_ = other.rollout_; bitField0_ |= 0x00000020; onChanged(); } if (!other.getTargetId().isEmpty()) { targetId_ = other.targetId_; bitField0_ |= 0x00000040; 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: { pipelineUid_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000002; break; } // case 18 case 26: { releaseUid_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000004; break; } // case 26 case 34: { rollout_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000020; break; } // case 34 case 40: { type_ = input.readEnum(); bitField0_ |= 0x00000080; break; } // case 40 case 50: { targetId_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000040; break; } // case 50 case 58: { release_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000008; break; } // case 58 case 66: { rolloutUid_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000010; break; } // case 66 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 notification fails to send.
     * 
* * 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 notification fails to send.
     * 
* * 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 notification fails to send.
     * 
* * 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 notification fails to send.
     * 
* * 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 notification fails to send.
     * 
* * 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 pipelineUid_ = ""; /** * * *
     * Unique identifier of the `DeliveryPipeline`.
     * 
* * string pipeline_uid = 2; * * @return The pipelineUid. */ public java.lang.String getPipelineUid() { java.lang.Object ref = pipelineUid_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); pipelineUid_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Unique identifier of the `DeliveryPipeline`.
     * 
* * string pipeline_uid = 2; * * @return The bytes for pipelineUid. */ public com.google.protobuf.ByteString getPipelineUidBytes() { java.lang.Object ref = pipelineUid_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); pipelineUid_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Unique identifier of the `DeliveryPipeline`.
     * 
* * string pipeline_uid = 2; * * @param value The pipelineUid to set. * @return This builder for chaining. */ public Builder setPipelineUid(java.lang.String value) { if (value == null) { throw new NullPointerException(); } pipelineUid_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * Unique identifier of the `DeliveryPipeline`.
     * 
* * string pipeline_uid = 2; * * @return This builder for chaining. */ public Builder clearPipelineUid() { pipelineUid_ = getDefaultInstance().getPipelineUid(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** * * *
     * Unique identifier of the `DeliveryPipeline`.
     * 
* * string pipeline_uid = 2; * * @param value The bytes for pipelineUid to set. * @return This builder for chaining. */ public Builder setPipelineUidBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); pipelineUid_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } private java.lang.Object releaseUid_ = ""; /** * * *
     * Unique identifier of the `Release`.
     * 
* * string release_uid = 3; * * @return The releaseUid. */ public java.lang.String getReleaseUid() { java.lang.Object ref = releaseUid_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); releaseUid_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Unique identifier of the `Release`.
     * 
* * string release_uid = 3; * * @return The bytes for releaseUid. */ public com.google.protobuf.ByteString getReleaseUidBytes() { java.lang.Object ref = releaseUid_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); releaseUid_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Unique identifier of the `Release`.
     * 
* * string release_uid = 3; * * @param value The releaseUid to set. * @return This builder for chaining. */ public Builder setReleaseUid(java.lang.String value) { if (value == null) { throw new NullPointerException(); } releaseUid_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * Unique identifier of the `Release`.
     * 
* * string release_uid = 3; * * @return This builder for chaining. */ public Builder clearReleaseUid() { releaseUid_ = getDefaultInstance().getReleaseUid(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** * * *
     * Unique identifier of the `Release`.
     * 
* * string release_uid = 3; * * @param value The bytes for releaseUid to set. * @return This builder for chaining. */ public Builder setReleaseUidBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); releaseUid_ = value; bitField0_ |= 0x00000004; onChanged(); return this; } private java.lang.Object release_ = ""; /** * * *
     * The name of the `Release`.
     * 
* * string release = 7; * * @return The release. */ public java.lang.String getRelease() { java.lang.Object ref = release_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); release_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * The name of the `Release`.
     * 
* * string release = 7; * * @return The bytes for release. */ public com.google.protobuf.ByteString getReleaseBytes() { java.lang.Object ref = release_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); release_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * The name of the `Release`.
     * 
* * string release = 7; * * @param value The release to set. * @return This builder for chaining. */ public Builder setRelease(java.lang.String value) { if (value == null) { throw new NullPointerException(); } release_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** * * *
     * The name of the `Release`.
     * 
* * string release = 7; * * @return This builder for chaining. */ public Builder clearRelease() { release_ = getDefaultInstance().getRelease(); bitField0_ = (bitField0_ & ~0x00000008); onChanged(); return this; } /** * * *
     * The name of the `Release`.
     * 
* * string release = 7; * * @param value The bytes for release to set. * @return This builder for chaining. */ public Builder setReleaseBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); release_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } private java.lang.Object rolloutUid_ = ""; /** * * *
     * Unique identifier of the `Rollout`.
     * 
* * string rollout_uid = 8; * * @return The rolloutUid. */ public java.lang.String getRolloutUid() { java.lang.Object ref = rolloutUid_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); rolloutUid_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Unique identifier of the `Rollout`.
     * 
* * string rollout_uid = 8; * * @return The bytes for rolloutUid. */ public com.google.protobuf.ByteString getRolloutUidBytes() { java.lang.Object ref = rolloutUid_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); rolloutUid_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Unique identifier of the `Rollout`.
     * 
* * string rollout_uid = 8; * * @param value The rolloutUid to set. * @return This builder for chaining. */ public Builder setRolloutUid(java.lang.String value) { if (value == null) { throw new NullPointerException(); } rolloutUid_ = value; bitField0_ |= 0x00000010; onChanged(); return this; } /** * * *
     * Unique identifier of the `Rollout`.
     * 
* * string rollout_uid = 8; * * @return This builder for chaining. */ public Builder clearRolloutUid() { rolloutUid_ = getDefaultInstance().getRolloutUid(); bitField0_ = (bitField0_ & ~0x00000010); onChanged(); return this; } /** * * *
     * Unique identifier of the `Rollout`.
     * 
* * string rollout_uid = 8; * * @param value The bytes for rolloutUid to set. * @return This builder for chaining. */ public Builder setRolloutUidBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); rolloutUid_ = value; bitField0_ |= 0x00000010; onChanged(); return this; } private java.lang.Object rollout_ = ""; /** * * *
     * The name of the `Rollout`.
     * 
* * string rollout = 4; * * @return The rollout. */ public java.lang.String getRollout() { java.lang.Object ref = rollout_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); rollout_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * The name of the `Rollout`.
     * 
* * string rollout = 4; * * @return The bytes for rollout. */ public com.google.protobuf.ByteString getRolloutBytes() { java.lang.Object ref = rollout_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); rollout_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * The name of the `Rollout`.
     * 
* * string rollout = 4; * * @param value The rollout to set. * @return This builder for chaining. */ public Builder setRollout(java.lang.String value) { if (value == null) { throw new NullPointerException(); } rollout_ = value; bitField0_ |= 0x00000020; onChanged(); return this; } /** * * *
     * The name of the `Rollout`.
     * 
* * string rollout = 4; * * @return This builder for chaining. */ public Builder clearRollout() { rollout_ = getDefaultInstance().getRollout(); bitField0_ = (bitField0_ & ~0x00000020); onChanged(); return this; } /** * * *
     * The name of the `Rollout`.
     * 
* * string rollout = 4; * * @param value The bytes for rollout to set. * @return This builder for chaining. */ public Builder setRolloutBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); rollout_ = value; bitField0_ |= 0x00000020; onChanged(); return this; } private java.lang.Object targetId_ = ""; /** * * *
     * ID of the `Target` that the rollout is deployed to.
     * 
* * string target_id = 6; * * @return The targetId. */ public java.lang.String getTargetId() { java.lang.Object ref = targetId_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); targetId_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * ID of the `Target` that the rollout is deployed to.
     * 
* * string target_id = 6; * * @return The bytes for targetId. */ public com.google.protobuf.ByteString getTargetIdBytes() { java.lang.Object ref = targetId_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); targetId_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * ID of the `Target` that the rollout is deployed to.
     * 
* * string target_id = 6; * * @param value The targetId to set. * @return This builder for chaining. */ public Builder setTargetId(java.lang.String value) { if (value == null) { throw new NullPointerException(); } targetId_ = value; bitField0_ |= 0x00000040; onChanged(); return this; } /** * * *
     * ID of the `Target` that the rollout is deployed to.
     * 
* * string target_id = 6; * * @return This builder for chaining. */ public Builder clearTargetId() { targetId_ = getDefaultInstance().getTargetId(); bitField0_ = (bitField0_ & ~0x00000040); onChanged(); return this; } /** * * *
     * ID of the `Target` that the rollout is deployed to.
     * 
* * string target_id = 6; * * @param value The bytes for targetId to set. * @return This builder for chaining. */ public Builder setTargetIdBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); targetId_ = value; bitField0_ |= 0x00000040; onChanged(); return this; } private int type_ = 0; /** * * *
     * Type of this notification, e.g. for a Pub/Sub failure.
     * 
* * .google.cloud.deploy.v1.Type type = 5; * * @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 = 5; * * @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_ |= 0x00000080; onChanged(); return this; } /** * * *
     * Type of this notification, e.g. for a Pub/Sub failure.
     * 
* * .google.cloud.deploy.v1.Type type = 5; * * @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 = 5; * * @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_ |= 0x00000080; type_ = value.getNumber(); onChanged(); return this; } /** * * *
     * Type of this notification, e.g. for a Pub/Sub failure.
     * 
* * .google.cloud.deploy.v1.Type type = 5; * * @return This builder for chaining. */ public Builder clearType() { bitField0_ = (bitField0_ & ~0x00000080); 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.RolloutNotificationEvent) } // @@protoc_insertion_point(class_scope:google.cloud.deploy.v1.RolloutNotificationEvent) private static final com.google.cloud.deploy.v1.RolloutNotificationEvent DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.deploy.v1.RolloutNotificationEvent(); } public static com.google.cloud.deploy.v1.RolloutNotificationEvent getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public RolloutNotificationEvent 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.RolloutNotificationEvent getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy