com.google.cloud.dialogflow.cx.v3beta1.Deployment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
PROTO library for proto-google-cloud-dialogflow-cx-v3beta1
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/dialogflow/cx/v3beta1/deployment.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.cx.v3beta1;
/**
*
*
*
* Represents a deployment in an environment. A deployment happens when a flow
* version configured to be active in the environment. You can configure running
* pre-deployment steps, e.g. running validation test cases, experiment
* auto-rollout, etc.
*
*
* Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.Deployment}
*/
public final class Deployment extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.dialogflow.cx.v3beta1.Deployment)
DeploymentOrBuilder {
private static final long serialVersionUID = 0L;
// Use Deployment.newBuilder() to construct.
private Deployment(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Deployment() {
name_ = "";
flowVersion_ = "";
state_ = 0;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new Deployment();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.cx.v3beta1.DeploymentProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Deployment_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.cx.v3beta1.DeploymentProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Deployment_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.cx.v3beta1.Deployment.class,
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Builder.class);
}
/**
*
*
*
* The state of the deployment.
*
*
* Protobuf enum {@code google.cloud.dialogflow.cx.v3beta1.Deployment.State}
*/
public enum State implements com.google.protobuf.ProtocolMessageEnum {
/**
*
*
*
* State unspecified.
*
*
* STATE_UNSPECIFIED = 0;
*/
STATE_UNSPECIFIED(0),
/**
*
*
*
* The deployment is running.
*
*
* RUNNING = 1;
*/
RUNNING(1),
/**
*
*
*
* The deployment succeeded.
*
*
* SUCCEEDED = 2;
*/
SUCCEEDED(2),
/**
*
*
*
* The deployment failed.
*
*
* FAILED = 3;
*/
FAILED(3),
UNRECOGNIZED(-1),
;
/**
*
*
*
* State unspecified.
*
*
* STATE_UNSPECIFIED = 0;
*/
public static final int STATE_UNSPECIFIED_VALUE = 0;
/**
*
*
*
* The deployment is running.
*
*
* RUNNING = 1;
*/
public static final int RUNNING_VALUE = 1;
/**
*
*
*
* The deployment succeeded.
*
*
* SUCCEEDED = 2;
*/
public static final int SUCCEEDED_VALUE = 2;
/**
*
*
*
* The deployment failed.
*
*
* FAILED = 3;
*/
public static final int FAILED_VALUE = 3;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static State valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static State forNumber(int value) {
switch (value) {
case 0:
return STATE_UNSPECIFIED;
case 1:
return RUNNING;
case 2:
return SUCCEEDED;
case 3:
return FAILED;
default:
return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public State findValueByNumber(int number) {
return State.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() {
return com.google.cloud.dialogflow.cx.v3beta1.Deployment.getDescriptor()
.getEnumTypes()
.get(0);
}
private static final State[] VALUES = values();
public static State valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException("EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private State(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:google.cloud.dialogflow.cx.v3beta1.Deployment.State)
}
public interface ResultOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.cx.v3beta1.Deployment.Result)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @return A list containing the deploymentTestResults.
*/
java.util.List getDeploymentTestResultsList();
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @return The count of deploymentTestResults.
*/
int getDeploymentTestResultsCount();
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @param index The index of the element to return.
* @return The deploymentTestResults at the given index.
*/
java.lang.String getDeploymentTestResults(int index);
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @param index The index of the value to return.
* @return The bytes of the deploymentTestResults at the given index.
*/
com.google.protobuf.ByteString getDeploymentTestResultsBytes(int index);
/**
*
*
*
* The name of the experiment triggered by this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/experiments/<ExperimentID>.
*
*
* string experiment = 2 [(.google.api.resource_reference) = { ... }
*
* @return The experiment.
*/
java.lang.String getExperiment();
/**
*
*
*
* The name of the experiment triggered by this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/experiments/<ExperimentID>.
*
*
* string experiment = 2 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for experiment.
*/
com.google.protobuf.ByteString getExperimentBytes();
}
/**
*
*
*
* Result of the deployment.
*
*
* Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.Deployment.Result}
*/
public static final class Result extends com.google.protobuf.GeneratedMessageV3
implements
// @@protoc_insertion_point(message_implements:google.cloud.dialogflow.cx.v3beta1.Deployment.Result)
ResultOrBuilder {
private static final long serialVersionUID = 0L;
// Use Result.newBuilder() to construct.
private Result(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Result() {
deploymentTestResults_ = com.google.protobuf.LazyStringArrayList.emptyList();
experiment_ = "";
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(UnusedPrivateParameter unused) {
return new Result();
}
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.cx.v3beta1.DeploymentProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Deployment_Result_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.cx.v3beta1.DeploymentProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Deployment_Result_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.class,
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.Builder.class);
}
public static final int DEPLOYMENT_TEST_RESULTS_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList deploymentTestResults_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @return A list containing the deploymentTestResults.
*/
public com.google.protobuf.ProtocolStringList getDeploymentTestResultsList() {
return deploymentTestResults_;
}
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @return The count of deploymentTestResults.
*/
public int getDeploymentTestResultsCount() {
return deploymentTestResults_.size();
}
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @param index The index of the element to return.
* @return The deploymentTestResults at the given index.
*/
public java.lang.String getDeploymentTestResults(int index) {
return deploymentTestResults_.get(index);
}
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @param index The index of the value to return.
* @return The bytes of the deploymentTestResults at the given index.
*/
public com.google.protobuf.ByteString getDeploymentTestResultsBytes(int index) {
return deploymentTestResults_.getByteString(index);
}
public static final int EXPERIMENT_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object experiment_ = "";
/**
*
*
*
* The name of the experiment triggered by this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/experiments/<ExperimentID>.
*
*
* string experiment = 2 [(.google.api.resource_reference) = { ... }
*
* @return The experiment.
*/
@java.lang.Override
public java.lang.String getExperiment() {
java.lang.Object ref = experiment_;
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();
experiment_ = s;
return s;
}
}
/**
*
*
*
* The name of the experiment triggered by this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/experiments/<ExperimentID>.
*
*
* string experiment = 2 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for experiment.
*/
@java.lang.Override
public com.google.protobuf.ByteString getExperimentBytes() {
java.lang.Object ref = experiment_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
experiment_ = 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 {
for (int i = 0; i < deploymentTestResults_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(
output, 1, deploymentTestResults_.getRaw(i));
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(experiment_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, experiment_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
{
int dataSize = 0;
for (int i = 0; i < deploymentTestResults_.size(); i++) {
dataSize += computeStringSizeNoTag(deploymentTestResults_.getRaw(i));
}
size += dataSize;
size += 1 * getDeploymentTestResultsList().size();
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(experiment_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, experiment_);
}
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.dialogflow.cx.v3beta1.Deployment.Result)) {
return super.equals(obj);
}
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result other =
(com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result) obj;
if (!getDeploymentTestResultsList().equals(other.getDeploymentTestResultsList()))
return false;
if (!getExperiment().equals(other.getExperiment())) 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();
if (getDeploymentTestResultsCount() > 0) {
hash = (37 * hash) + DEPLOYMENT_TEST_RESULTS_FIELD_NUMBER;
hash = (53 * hash) + getDeploymentTestResultsList().hashCode();
}
hash = (37 * hash) + EXPERIMENT_FIELD_NUMBER;
hash = (53 * hash) + getExperiment().hashCode();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result 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.dialogflow.cx.v3beta1.Deployment.Result parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result 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.dialogflow.cx.v3beta1.Deployment.Result parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result 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.dialogflow.cx.v3beta1.Deployment.Result parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result 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.dialogflow.cx.v3beta1.Deployment.Result parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result 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.dialogflow.cx.v3beta1.Deployment.Result 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;
}
/**
*
*
*
* Result of the deployment.
*
*
* Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.Deployment.Result}
*/
public static final class Builder
extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.cx.v3beta1.Deployment.Result)
com.google.cloud.dialogflow.cx.v3beta1.Deployment.ResultOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.cx.v3beta1.DeploymentProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Deployment_Result_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.cx.v3beta1.DeploymentProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Deployment_Result_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.class,
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.Builder.class);
}
// Construct using com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.newBuilder()
private Builder() {}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
deploymentTestResults_ = com.google.protobuf.LazyStringArrayList.emptyList();
experiment_ = "";
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.dialogflow.cx.v3beta1.DeploymentProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Deployment_Result_descriptor;
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result getDefaultInstanceForType() {
return com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result build() {
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result buildPartial() {
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result result =
new com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
deploymentTestResults_.makeImmutable();
result.deploymentTestResults_ = deploymentTestResults_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.experiment_ = experiment_;
}
}
@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.dialogflow.cx.v3beta1.Deployment.Result) {
return mergeFrom((com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result other) {
if (other == com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.getDefaultInstance())
return this;
if (!other.deploymentTestResults_.isEmpty()) {
if (deploymentTestResults_.isEmpty()) {
deploymentTestResults_ = other.deploymentTestResults_;
bitField0_ |= 0x00000001;
} else {
ensureDeploymentTestResultsIsMutable();
deploymentTestResults_.addAll(other.deploymentTestResults_);
}
onChanged();
}
if (!other.getExperiment().isEmpty()) {
experiment_ = other.experiment_;
bitField0_ |= 0x00000002;
onChanged();
}
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:
{
java.lang.String s = input.readStringRequireUtf8();
ensureDeploymentTestResultsIsMutable();
deploymentTestResults_.add(s);
break;
} // case 10
case 18:
{
experiment_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
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 com.google.protobuf.LazyStringArrayList deploymentTestResults_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureDeploymentTestResultsIsMutable() {
if (!deploymentTestResults_.isModifiable()) {
deploymentTestResults_ =
new com.google.protobuf.LazyStringArrayList(deploymentTestResults_);
}
bitField0_ |= 0x00000001;
}
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @return A list containing the deploymentTestResults.
*/
public com.google.protobuf.ProtocolStringList getDeploymentTestResultsList() {
deploymentTestResults_.makeImmutable();
return deploymentTestResults_;
}
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @return The count of deploymentTestResults.
*/
public int getDeploymentTestResultsCount() {
return deploymentTestResults_.size();
}
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @param index The index of the element to return.
* @return The deploymentTestResults at the given index.
*/
public java.lang.String getDeploymentTestResults(int index) {
return deploymentTestResults_.get(index);
}
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @param index The index of the value to return.
* @return The bytes of the deploymentTestResults at the given index.
*/
public com.google.protobuf.ByteString getDeploymentTestResultsBytes(int index) {
return deploymentTestResults_.getByteString(index);
}
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @param index The index to set the value at.
* @param value The deploymentTestResults to set.
* @return This builder for chaining.
*/
public Builder setDeploymentTestResults(int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureDeploymentTestResultsIsMutable();
deploymentTestResults_.set(index, value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @param value The deploymentTestResults to add.
* @return This builder for chaining.
*/
public Builder addDeploymentTestResults(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureDeploymentTestResultsIsMutable();
deploymentTestResults_.add(value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @param values The deploymentTestResults to add.
* @return This builder for chaining.
*/
public Builder addAllDeploymentTestResults(java.lang.Iterable values) {
ensureDeploymentTestResultsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(values, deploymentTestResults_);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @return This builder for chaining.
*/
public Builder clearDeploymentTestResults() {
deploymentTestResults_ = com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
;
onChanged();
return this;
}
/**
*
*
*
* Results of test cases running before the deployment.
* Format:
* `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/testCases/<TestCaseID>/results/<TestCaseResultID>`.
*
*
*
* repeated string deployment_test_results = 1 [(.google.api.resource_reference) = { ... }
*
*
* @param value The bytes of the deploymentTestResults to add.
* @return This builder for chaining.
*/
public Builder addDeploymentTestResultsBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureDeploymentTestResultsIsMutable();
deploymentTestResults_.add(value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object experiment_ = "";
/**
*
*
*
* The name of the experiment triggered by this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/experiments/<ExperimentID>.
*
*
* string experiment = 2 [(.google.api.resource_reference) = { ... }
*
* @return The experiment.
*/
public java.lang.String getExperiment() {
java.lang.Object ref = experiment_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
experiment_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The name of the experiment triggered by this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/experiments/<ExperimentID>.
*
*
* string experiment = 2 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for experiment.
*/
public com.google.protobuf.ByteString getExperimentBytes() {
java.lang.Object ref = experiment_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
experiment_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The name of the experiment triggered by this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/experiments/<ExperimentID>.
*
*
* string experiment = 2 [(.google.api.resource_reference) = { ... }
*
* @param value The experiment to set.
* @return This builder for chaining.
*/
public Builder setExperiment(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
experiment_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* The name of the experiment triggered by this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/experiments/<ExperimentID>.
*
*
* string experiment = 2 [(.google.api.resource_reference) = { ... }
*
* @return This builder for chaining.
*/
public Builder clearExperiment() {
experiment_ = getDefaultInstance().getExperiment();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
*
*
* The name of the experiment triggered by this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/experiments/<ExperimentID>.
*
*
* string experiment = 2 [(.google.api.resource_reference) = { ... }
*
* @param value The bytes for experiment to set.
* @return This builder for chaining.
*/
public Builder setExperimentBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
experiment_ = value;
bitField0_ |= 0x00000002;
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.dialogflow.cx.v3beta1.Deployment.Result)
}
// @@protoc_insertion_point(class_scope:google.cloud.dialogflow.cx.v3beta1.Deployment.Result)
private static final com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result();
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Result 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.dialogflow.cx.v3beta1.Deployment.Result getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
private int bitField0_;
public static final int NAME_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
/**
*
*
*
* The name of the deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/deployments/<DeploymentID>.
*
*
* string name = 1;
*
* @return The name.
*/
@java.lang.Override
public java.lang.String getName() {
java.lang.Object ref = name_;
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();
name_ = s;
return s;
}
}
/**
*
*
*
* The name of the deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/deployments/<DeploymentID>.
*
*
* string name = 1;
*
* @return The bytes for name.
*/
@java.lang.Override
public com.google.protobuf.ByteString getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int FLOW_VERSION_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object flowVersion_ = "";
/**
*
*
*
* The name of the flow version for this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/versions/<VerionID>.
*
*
* string flow_version = 2 [(.google.api.resource_reference) = { ... }
*
* @return The flowVersion.
*/
@java.lang.Override
public java.lang.String getFlowVersion() {
java.lang.Object ref = flowVersion_;
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();
flowVersion_ = s;
return s;
}
}
/**
*
*
*
* The name of the flow version for this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/versions/<VerionID>.
*
*
* string flow_version = 2 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for flowVersion.
*/
@java.lang.Override
public com.google.protobuf.ByteString getFlowVersionBytes() {
java.lang.Object ref = flowVersion_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
flowVersion_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int STATE_FIELD_NUMBER = 3;
private int state_ = 0;
/**
*
*
*
* The current state of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.State state = 3;
*
* @return The enum numeric value on the wire for state.
*/
@java.lang.Override
public int getStateValue() {
return state_;
}
/**
*
*
*
* The current state of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.State state = 3;
*
* @return The state.
*/
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Deployment.State getState() {
com.google.cloud.dialogflow.cx.v3beta1.Deployment.State result =
com.google.cloud.dialogflow.cx.v3beta1.Deployment.State.forNumber(state_);
return result == null
? com.google.cloud.dialogflow.cx.v3beta1.Deployment.State.UNRECOGNIZED
: result;
}
public static final int RESULT_FIELD_NUMBER = 4;
private com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result result_;
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*
* @return Whether the result field is set.
*/
@java.lang.Override
public boolean hasResult() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*
* @return The result.
*/
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result getResult() {
return result_ == null
? com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.getDefaultInstance()
: result_;
}
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*/
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Deployment.ResultOrBuilder getResultOrBuilder() {
return result_ == null
? com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.getDefaultInstance()
: result_;
}
public static final int START_TIME_FIELD_NUMBER = 5;
private com.google.protobuf.Timestamp startTime_;
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*
* @return Whether the startTime field is set.
*/
@java.lang.Override
public boolean hasStartTime() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*
* @return The startTime.
*/
@java.lang.Override
public com.google.protobuf.Timestamp getStartTime() {
return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_;
}
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*/
@java.lang.Override
public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_;
}
public static final int END_TIME_FIELD_NUMBER = 6;
private com.google.protobuf.Timestamp endTime_;
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*
* @return Whether the endTime field is set.
*/
@java.lang.Override
public boolean hasEndTime() {
return ((bitField0_ & 0x00000004) != 0);
}
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*
* @return The endTime.
*/
@java.lang.Override
public com.google.protobuf.Timestamp getEndTime() {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
}
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*/
@java.lang.Override
public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
}
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(name_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, name_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(flowVersion_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, flowVersion_);
}
if (state_
!= com.google.cloud.dialogflow.cx.v3beta1.Deployment.State.STATE_UNSPECIFIED.getNumber()) {
output.writeEnum(3, state_);
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(4, getResult());
}
if (((bitField0_ & 0x00000002) != 0)) {
output.writeMessage(5, getStartTime());
}
if (((bitField0_ & 0x00000004) != 0)) {
output.writeMessage(6, getEndTime());
}
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(name_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, name_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(flowVersion_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, flowVersion_);
}
if (state_
!= com.google.cloud.dialogflow.cx.v3beta1.Deployment.State.STATE_UNSPECIFIED.getNumber()) {
size += com.google.protobuf.CodedOutputStream.computeEnumSize(3, state_);
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(4, getResult());
}
if (((bitField0_ & 0x00000002) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, getStartTime());
}
if (((bitField0_ & 0x00000004) != 0)) {
size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, getEndTime());
}
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.dialogflow.cx.v3beta1.Deployment)) {
return super.equals(obj);
}
com.google.cloud.dialogflow.cx.v3beta1.Deployment other =
(com.google.cloud.dialogflow.cx.v3beta1.Deployment) obj;
if (!getName().equals(other.getName())) return false;
if (!getFlowVersion().equals(other.getFlowVersion())) return false;
if (state_ != other.state_) return false;
if (hasResult() != other.hasResult()) return false;
if (hasResult()) {
if (!getResult().equals(other.getResult())) return false;
}
if (hasStartTime() != other.hasStartTime()) return false;
if (hasStartTime()) {
if (!getStartTime().equals(other.getStartTime())) return false;
}
if (hasEndTime() != other.hasEndTime()) return false;
if (hasEndTime()) {
if (!getEndTime().equals(other.getEndTime())) 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) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
hash = (37 * hash) + FLOW_VERSION_FIELD_NUMBER;
hash = (53 * hash) + getFlowVersion().hashCode();
hash = (37 * hash) + STATE_FIELD_NUMBER;
hash = (53 * hash) + state_;
if (hasResult()) {
hash = (37 * hash) + RESULT_FIELD_NUMBER;
hash = (53 * hash) + getResult().hashCode();
}
if (hasStartTime()) {
hash = (37 * hash) + START_TIME_FIELD_NUMBER;
hash = (53 * hash) + getStartTime().hashCode();
}
if (hasEndTime()) {
hash = (37 * hash) + END_TIME_FIELD_NUMBER;
hash = (53 * hash) + getEndTime().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment parseFrom(
java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment 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.dialogflow.cx.v3beta1.Deployment parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment 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.dialogflow.cx.v3beta1.Deployment parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment parseFrom(
byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment parseFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment 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.dialogflow.cx.v3beta1.Deployment parseDelimitedFrom(
java.io.InputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseDelimitedWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment 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.dialogflow.cx.v3beta1.Deployment parseFrom(
com.google.protobuf.CodedInputStream input) throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3.parseWithIOException(PARSER, input);
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment 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.dialogflow.cx.v3beta1.Deployment 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;
}
/**
*
*
*
* Represents a deployment in an environment. A deployment happens when a flow
* version configured to be active in the environment. You can configure running
* pre-deployment steps, e.g. running validation test cases, experiment
* auto-rollout, etc.
*
*
* Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.Deployment}
*/
public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder
implements
// @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.cx.v3beta1.Deployment)
com.google.cloud.dialogflow.cx.v3beta1.DeploymentOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
return com.google.cloud.dialogflow.cx.v3beta1.DeploymentProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Deployment_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.google.cloud.dialogflow.cx.v3beta1.DeploymentProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Deployment_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.google.cloud.dialogflow.cx.v3beta1.Deployment.class,
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Builder.class);
}
// Construct using com.google.cloud.dialogflow.cx.v3beta1.Deployment.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) {
getResultFieldBuilder();
getStartTimeFieldBuilder();
getEndTimeFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
name_ = "";
flowVersion_ = "";
state_ = 0;
result_ = null;
if (resultBuilder_ != null) {
resultBuilder_.dispose();
resultBuilder_ = null;
}
startTime_ = null;
if (startTimeBuilder_ != null) {
startTimeBuilder_.dispose();
startTimeBuilder_ = null;
}
endTime_ = null;
if (endTimeBuilder_ != null) {
endTimeBuilder_.dispose();
endTimeBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() {
return com.google.cloud.dialogflow.cx.v3beta1.DeploymentProto
.internal_static_google_cloud_dialogflow_cx_v3beta1_Deployment_descriptor;
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Deployment getDefaultInstanceForType() {
return com.google.cloud.dialogflow.cx.v3beta1.Deployment.getDefaultInstance();
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Deployment build() {
com.google.cloud.dialogflow.cx.v3beta1.Deployment result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Deployment buildPartial() {
com.google.cloud.dialogflow.cx.v3beta1.Deployment result =
new com.google.cloud.dialogflow.cx.v3beta1.Deployment(this);
if (bitField0_ != 0) {
buildPartial0(result);
}
onBuilt();
return result;
}
private void buildPartial0(com.google.cloud.dialogflow.cx.v3beta1.Deployment result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.name_ = name_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.flowVersion_ = flowVersion_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.state_ = state_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000008) != 0)) {
result.result_ = resultBuilder_ == null ? result_ : resultBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
result.startTime_ = startTimeBuilder_ == null ? startTime_ : startTimeBuilder_.build();
to_bitField0_ |= 0x00000002;
}
if (((from_bitField0_ & 0x00000020) != 0)) {
result.endTime_ = endTimeBuilder_ == null ? endTime_ : endTimeBuilder_.build();
to_bitField0_ |= 0x00000004;
}
result.bitField0_ |= to_bitField0_;
}
@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.dialogflow.cx.v3beta1.Deployment) {
return mergeFrom((com.google.cloud.dialogflow.cx.v3beta1.Deployment) other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.google.cloud.dialogflow.cx.v3beta1.Deployment other) {
if (other == com.google.cloud.dialogflow.cx.v3beta1.Deployment.getDefaultInstance())
return this;
if (!other.getName().isEmpty()) {
name_ = other.name_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getFlowVersion().isEmpty()) {
flowVersion_ = other.flowVersion_;
bitField0_ |= 0x00000002;
onChanged();
}
if (other.state_ != 0) {
setStateValue(other.getStateValue());
}
if (other.hasResult()) {
mergeResult(other.getResult());
}
if (other.hasStartTime()) {
mergeStartTime(other.getStartTime());
}
if (other.hasEndTime()) {
mergeEndTime(other.getEndTime());
}
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:
{
name_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 10
case 18:
{
flowVersion_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 24:
{
state_ = input.readEnum();
bitField0_ |= 0x00000004;
break;
} // case 24
case 34:
{
input.readMessage(getResultFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000008;
break;
} // case 34
case 42:
{
input.readMessage(getStartTimeFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000010;
break;
} // case 42
case 50:
{
input.readMessage(getEndTimeFieldBuilder().getBuilder(), extensionRegistry);
bitField0_ |= 0x00000020;
break;
} // case 50
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 name_ = "";
/**
*
*
*
* The name of the deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/deployments/<DeploymentID>.
*
*
* string name = 1;
*
* @return The name.
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The name of the deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/deployments/<DeploymentID>.
*
*
* string name = 1;
*
* @return The bytes for name.
*/
public com.google.protobuf.ByteString getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The name of the deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/deployments/<DeploymentID>.
*
*
* string name = 1;
*
* @param value The name to set.
* @return This builder for chaining.
*/
public Builder setName(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
name_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*
* The name of the deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/deployments/<DeploymentID>.
*
*
* string name = 1;
*
* @return This builder for chaining.
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*
* The name of the deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/environments/<EnvironmentID>/deployments/<DeploymentID>.
*
*
* string name = 1;
*
* @param value The bytes for name to set.
* @return This builder for chaining.
*/
public Builder setNameBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
name_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object flowVersion_ = "";
/**
*
*
*
* The name of the flow version for this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/versions/<VerionID>.
*
*
* string flow_version = 2 [(.google.api.resource_reference) = { ... }
*
* @return The flowVersion.
*/
public java.lang.String getFlowVersion() {
java.lang.Object ref = flowVersion_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
flowVersion_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*
* The name of the flow version for this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/versions/<VerionID>.
*
*
* string flow_version = 2 [(.google.api.resource_reference) = { ... }
*
* @return The bytes for flowVersion.
*/
public com.google.protobuf.ByteString getFlowVersionBytes() {
java.lang.Object ref = flowVersion_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref);
flowVersion_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*
* The name of the flow version for this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/versions/<VerionID>.
*
*
* string flow_version = 2 [(.google.api.resource_reference) = { ... }
*
* @param value The flowVersion to set.
* @return This builder for chaining.
*/
public Builder setFlowVersion(java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
flowVersion_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*
* The name of the flow version for this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/versions/<VerionID>.
*
*
* string flow_version = 2 [(.google.api.resource_reference) = { ... }
*
* @return This builder for chaining.
*/
public Builder clearFlowVersion() {
flowVersion_ = getDefaultInstance().getFlowVersion();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
*
*
* The name of the flow version for this deployment.
* Format:
* projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/flows/<FlowID>/versions/<VerionID>.
*
*
* string flow_version = 2 [(.google.api.resource_reference) = { ... }
*
* @param value The bytes for flowVersion to set.
* @return This builder for chaining.
*/
public Builder setFlowVersionBytes(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
flowVersion_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private int state_ = 0;
/**
*
*
*
* The current state of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.State state = 3;
*
* @return The enum numeric value on the wire for state.
*/
@java.lang.Override
public int getStateValue() {
return state_;
}
/**
*
*
*
* The current state of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.State state = 3;
*
* @param value The enum numeric value on the wire for state to set.
* @return This builder for chaining.
*/
public Builder setStateValue(int value) {
state_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*
* The current state of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.State state = 3;
*
* @return The state.
*/
@java.lang.Override
public com.google.cloud.dialogflow.cx.v3beta1.Deployment.State getState() {
com.google.cloud.dialogflow.cx.v3beta1.Deployment.State result =
com.google.cloud.dialogflow.cx.v3beta1.Deployment.State.forNumber(state_);
return result == null
? com.google.cloud.dialogflow.cx.v3beta1.Deployment.State.UNRECOGNIZED
: result;
}
/**
*
*
*
* The current state of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.State state = 3;
*
* @param value The state to set.
* @return This builder for chaining.
*/
public Builder setState(com.google.cloud.dialogflow.cx.v3beta1.Deployment.State value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000004;
state_ = value.getNumber();
onChanged();
return this;
}
/**
*
*
*
* The current state of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.State state = 3;
*
* @return This builder for chaining.
*/
public Builder clearState() {
bitField0_ = (bitField0_ & ~0x00000004);
state_ = 0;
onChanged();
return this;
}
private com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result result_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result,
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.Builder,
com.google.cloud.dialogflow.cx.v3beta1.Deployment.ResultOrBuilder>
resultBuilder_;
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*
* @return Whether the result field is set.
*/
public boolean hasResult() {
return ((bitField0_ & 0x00000008) != 0);
}
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*
* @return The result.
*/
public com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result getResult() {
if (resultBuilder_ == null) {
return result_ == null
? com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.getDefaultInstance()
: result_;
} else {
return resultBuilder_.getMessage();
}
}
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*/
public Builder setResult(com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result value) {
if (resultBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
result_ = value;
} else {
resultBuilder_.setMessage(value);
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*/
public Builder setResult(
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.Builder builderForValue) {
if (resultBuilder_ == null) {
result_ = builderForValue.build();
} else {
resultBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*/
public Builder mergeResult(com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result value) {
if (resultBuilder_ == null) {
if (((bitField0_ & 0x00000008) != 0)
&& result_ != null
&& result_
!= com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.getDefaultInstance()) {
getResultBuilder().mergeFrom(value);
} else {
result_ = value;
}
} else {
resultBuilder_.mergeFrom(value);
}
if (result_ != null) {
bitField0_ |= 0x00000008;
onChanged();
}
return this;
}
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*/
public Builder clearResult() {
bitField0_ = (bitField0_ & ~0x00000008);
result_ = null;
if (resultBuilder_ != null) {
resultBuilder_.dispose();
resultBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*/
public com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.Builder getResultBuilder() {
bitField0_ |= 0x00000008;
onChanged();
return getResultFieldBuilder().getBuilder();
}
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*/
public com.google.cloud.dialogflow.cx.v3beta1.Deployment.ResultOrBuilder getResultOrBuilder() {
if (resultBuilder_ != null) {
return resultBuilder_.getMessageOrBuilder();
} else {
return result_ == null
? com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.getDefaultInstance()
: result_;
}
}
/**
*
*
*
* Result of the deployment.
*
*
* .google.cloud.dialogflow.cx.v3beta1.Deployment.Result result = 4;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result,
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.Builder,
com.google.cloud.dialogflow.cx.v3beta1.Deployment.ResultOrBuilder>
getResultFieldBuilder() {
if (resultBuilder_ == null) {
resultBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result,
com.google.cloud.dialogflow.cx.v3beta1.Deployment.Result.Builder,
com.google.cloud.dialogflow.cx.v3beta1.Deployment.ResultOrBuilder>(
getResult(), getParentForChildren(), isClean());
result_ = null;
}
return resultBuilder_;
}
private com.google.protobuf.Timestamp startTime_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
startTimeBuilder_;
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*
* @return Whether the startTime field is set.
*/
public boolean hasStartTime() {
return ((bitField0_ & 0x00000010) != 0);
}
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*
* @return The startTime.
*/
public com.google.protobuf.Timestamp getStartTime() {
if (startTimeBuilder_ == null) {
return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_;
} else {
return startTimeBuilder_.getMessage();
}
}
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*/
public Builder setStartTime(com.google.protobuf.Timestamp value) {
if (startTimeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
startTime_ = value;
} else {
startTimeBuilder_.setMessage(value);
}
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*/
public Builder setStartTime(com.google.protobuf.Timestamp.Builder builderForValue) {
if (startTimeBuilder_ == null) {
startTime_ = builderForValue.build();
} else {
startTimeBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*/
public Builder mergeStartTime(com.google.protobuf.Timestamp value) {
if (startTimeBuilder_ == null) {
if (((bitField0_ & 0x00000010) != 0)
&& startTime_ != null
&& startTime_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
getStartTimeBuilder().mergeFrom(value);
} else {
startTime_ = value;
}
} else {
startTimeBuilder_.mergeFrom(value);
}
if (startTime_ != null) {
bitField0_ |= 0x00000010;
onChanged();
}
return this;
}
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*/
public Builder clearStartTime() {
bitField0_ = (bitField0_ & ~0x00000010);
startTime_ = null;
if (startTimeBuilder_ != null) {
startTimeBuilder_.dispose();
startTimeBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*/
public com.google.protobuf.Timestamp.Builder getStartTimeBuilder() {
bitField0_ |= 0x00000010;
onChanged();
return getStartTimeFieldBuilder().getBuilder();
}
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*/
public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
if (startTimeBuilder_ != null) {
return startTimeBuilder_.getMessageOrBuilder();
} else {
return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_;
}
}
/**
*
*
*
* Start time of this deployment.
*
*
* .google.protobuf.Timestamp start_time = 5;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
getStartTimeFieldBuilder() {
if (startTimeBuilder_ == null) {
startTimeBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>(
getStartTime(), getParentForChildren(), isClean());
startTime_ = null;
}
return startTimeBuilder_;
}
private com.google.protobuf.Timestamp endTime_;
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
endTimeBuilder_;
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*
* @return Whether the endTime field is set.
*/
public boolean hasEndTime() {
return ((bitField0_ & 0x00000020) != 0);
}
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*
* @return The endTime.
*/
public com.google.protobuf.Timestamp getEndTime() {
if (endTimeBuilder_ == null) {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
} else {
return endTimeBuilder_.getMessage();
}
}
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*/
public Builder setEndTime(com.google.protobuf.Timestamp value) {
if (endTimeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
endTime_ = value;
} else {
endTimeBuilder_.setMessage(value);
}
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*/
public Builder setEndTime(com.google.protobuf.Timestamp.Builder builderForValue) {
if (endTimeBuilder_ == null) {
endTime_ = builderForValue.build();
} else {
endTimeBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*/
public Builder mergeEndTime(com.google.protobuf.Timestamp value) {
if (endTimeBuilder_ == null) {
if (((bitField0_ & 0x00000020) != 0)
&& endTime_ != null
&& endTime_ != com.google.protobuf.Timestamp.getDefaultInstance()) {
getEndTimeBuilder().mergeFrom(value);
} else {
endTime_ = value;
}
} else {
endTimeBuilder_.mergeFrom(value);
}
if (endTime_ != null) {
bitField0_ |= 0x00000020;
onChanged();
}
return this;
}
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*/
public Builder clearEndTime() {
bitField0_ = (bitField0_ & ~0x00000020);
endTime_ = null;
if (endTimeBuilder_ != null) {
endTimeBuilder_.dispose();
endTimeBuilder_ = null;
}
onChanged();
return this;
}
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*/
public com.google.protobuf.Timestamp.Builder getEndTimeBuilder() {
bitField0_ |= 0x00000020;
onChanged();
return getEndTimeFieldBuilder().getBuilder();
}
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*/
public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() {
if (endTimeBuilder_ != null) {
return endTimeBuilder_.getMessageOrBuilder();
} else {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
}
}
/**
*
*
*
* End time of this deployment.
*
*
* .google.protobuf.Timestamp end_time = 6;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
getEndTimeFieldBuilder() {
if (endTimeBuilder_ == null) {
endTimeBuilder_ =
new com.google.protobuf.SingleFieldBuilderV3<
com.google.protobuf.Timestamp,
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>(
getEndTime(), getParentForChildren(), isClean());
endTime_ = null;
}
return endTimeBuilder_;
}
@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.dialogflow.cx.v3beta1.Deployment)
}
// @@protoc_insertion_point(class_scope:google.cloud.dialogflow.cx.v3beta1.Deployment)
private static final com.google.cloud.dialogflow.cx.v3beta1.Deployment DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.google.cloud.dialogflow.cx.v3beta1.Deployment();
}
public static com.google.cloud.dialogflow.cx.v3beta1.Deployment getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser PARSER =
new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Deployment 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.dialogflow.cx.v3beta1.Deployment getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}