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

com.google.cloud.dialogflow.cx.v3beta1.ToolUse 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/dialogflow/cx/v3beta1/example.proto

// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.cx.v3beta1;

/**
 *
 *
 * 
 * Stores metadata of the invocation of an action supported by a tool.
 * 
* * Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.ToolUse} */ public final class ToolUse extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:google.cloud.dialogflow.cx.v3beta1.ToolUse) ToolUseOrBuilder { private static final long serialVersionUID = 0L; // Use ToolUse.newBuilder() to construct. private ToolUse(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private ToolUse() { tool_ = ""; action_ = ""; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance(UnusedPrivateParameter unused) { return new ToolUse(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dialogflow.cx.v3beta1.ExampleProto .internal_static_google_cloud_dialogflow_cx_v3beta1_ToolUse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.cx.v3beta1.ExampleProto .internal_static_google_cloud_dialogflow_cx_v3beta1_ToolUse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.cx.v3beta1.ToolUse.class, com.google.cloud.dialogflow.cx.v3beta1.ToolUse.Builder.class); } private int bitField0_; public static final int TOOL_FIELD_NUMBER = 1; @SuppressWarnings("serial") private volatile java.lang.Object tool_ = ""; /** * * *
   * Required. The [tool][google.cloud.dialogflow.cx.v3beta1.Tool] that should
   * be used. Format:
   * `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/tools/<ToolID>`.
   * 
* * * string tool = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return The tool. */ @java.lang.Override public java.lang.String getTool() { java.lang.Object ref = tool_; 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(); tool_ = s; return s; } } /** * * *
   * Required. The [tool][google.cloud.dialogflow.cx.v3beta1.Tool] that should
   * be used. Format:
   * `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/tools/<ToolID>`.
   * 
* * * string tool = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return The bytes for tool. */ @java.lang.Override public com.google.protobuf.ByteString getToolBytes() { java.lang.Object ref = tool_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); tool_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int ACTION_FIELD_NUMBER = 2; @SuppressWarnings("serial") private volatile java.lang.Object action_ = ""; /** * * *
   * Optional. Name of the action to be called during the tool use.
   * 
* * string action = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @return The action. */ @java.lang.Override public java.lang.String getAction() { java.lang.Object ref = action_; 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(); action_ = s; return s; } } /** * * *
   * Optional. Name of the action to be called during the tool use.
   * 
* * string action = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @return The bytes for action. */ @java.lang.Override public com.google.protobuf.ByteString getActionBytes() { java.lang.Object ref = action_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); action_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int INPUT_ACTION_PARAMETERS_FIELD_NUMBER = 5; private com.google.protobuf.Struct inputActionParameters_; /** * * *
   * Optional. A list of input parameters for the action.
   * 
* * * .google.protobuf.Struct input_action_parameters = 5 [(.google.api.field_behavior) = OPTIONAL]; * * * @return Whether the inputActionParameters field is set. */ @java.lang.Override public boolean hasInputActionParameters() { return ((bitField0_ & 0x00000001) != 0); } /** * * *
   * Optional. A list of input parameters for the action.
   * 
* * * .google.protobuf.Struct input_action_parameters = 5 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The inputActionParameters. */ @java.lang.Override public com.google.protobuf.Struct getInputActionParameters() { return inputActionParameters_ == null ? com.google.protobuf.Struct.getDefaultInstance() : inputActionParameters_; } /** * * *
   * Optional. A list of input parameters for the action.
   * 
* * * .google.protobuf.Struct input_action_parameters = 5 [(.google.api.field_behavior) = OPTIONAL]; * */ @java.lang.Override public com.google.protobuf.StructOrBuilder getInputActionParametersOrBuilder() { return inputActionParameters_ == null ? com.google.protobuf.Struct.getDefaultInstance() : inputActionParameters_; } public static final int OUTPUT_ACTION_PARAMETERS_FIELD_NUMBER = 6; private com.google.protobuf.Struct outputActionParameters_; /** * * *
   * Optional. A list of output parameters generated by the action.
   * 
* * * .google.protobuf.Struct output_action_parameters = 6 [(.google.api.field_behavior) = OPTIONAL]; * * * @return Whether the outputActionParameters field is set. */ @java.lang.Override public boolean hasOutputActionParameters() { return ((bitField0_ & 0x00000002) != 0); } /** * * *
   * Optional. A list of output parameters generated by the action.
   * 
* * * .google.protobuf.Struct output_action_parameters = 6 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The outputActionParameters. */ @java.lang.Override public com.google.protobuf.Struct getOutputActionParameters() { return outputActionParameters_ == null ? com.google.protobuf.Struct.getDefaultInstance() : outputActionParameters_; } /** * * *
   * Optional. A list of output parameters generated by the action.
   * 
* * * .google.protobuf.Struct output_action_parameters = 6 [(.google.api.field_behavior) = OPTIONAL]; * */ @java.lang.Override public com.google.protobuf.StructOrBuilder getOutputActionParametersOrBuilder() { return outputActionParameters_ == null ? com.google.protobuf.Struct.getDefaultInstance() : outputActionParameters_; } 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(tool_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 1, tool_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(action_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, action_); } if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(5, getInputActionParameters()); } if (((bitField0_ & 0x00000002) != 0)) { output.writeMessage(6, getOutputActionParameters()); } 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(tool_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, tool_); } if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(action_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, action_); } if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(5, getInputActionParameters()); } if (((bitField0_ & 0x00000002) != 0)) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(6, getOutputActionParameters()); } 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.ToolUse)) { return super.equals(obj); } com.google.cloud.dialogflow.cx.v3beta1.ToolUse other = (com.google.cloud.dialogflow.cx.v3beta1.ToolUse) obj; if (!getTool().equals(other.getTool())) return false; if (!getAction().equals(other.getAction())) return false; if (hasInputActionParameters() != other.hasInputActionParameters()) return false; if (hasInputActionParameters()) { if (!getInputActionParameters().equals(other.getInputActionParameters())) return false; } if (hasOutputActionParameters() != other.hasOutputActionParameters()) return false; if (hasOutputActionParameters()) { if (!getOutputActionParameters().equals(other.getOutputActionParameters())) 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) + TOOL_FIELD_NUMBER; hash = (53 * hash) + getTool().hashCode(); hash = (37 * hash) + ACTION_FIELD_NUMBER; hash = (53 * hash) + getAction().hashCode(); if (hasInputActionParameters()) { hash = (37 * hash) + INPUT_ACTION_PARAMETERS_FIELD_NUMBER; hash = (53 * hash) + getInputActionParameters().hashCode(); } if (hasOutputActionParameters()) { hash = (37 * hash) + OUTPUT_ACTION_PARAMETERS_FIELD_NUMBER; hash = (53 * hash) + getOutputActionParameters().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.google.cloud.dialogflow.cx.v3beta1.ToolUse parseFrom(java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.cx.v3beta1.ToolUse 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.ToolUse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.cx.v3beta1.ToolUse 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.ToolUse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.google.cloud.dialogflow.cx.v3beta1.ToolUse 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.ToolUse 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.ToolUse 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.ToolUse 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.ToolUse 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.ToolUse 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.ToolUse 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.ToolUse 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; } /** * * *
   * Stores metadata of the invocation of an action supported by a tool.
   * 
* * Protobuf type {@code google.cloud.dialogflow.cx.v3beta1.ToolUse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:google.cloud.dialogflow.cx.v3beta1.ToolUse) com.google.cloud.dialogflow.cx.v3beta1.ToolUseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.google.cloud.dialogflow.cx.v3beta1.ExampleProto .internal_static_google_cloud_dialogflow_cx_v3beta1_ToolUse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.google.cloud.dialogflow.cx.v3beta1.ExampleProto .internal_static_google_cloud_dialogflow_cx_v3beta1_ToolUse_fieldAccessorTable .ensureFieldAccessorsInitialized( com.google.cloud.dialogflow.cx.v3beta1.ToolUse.class, com.google.cloud.dialogflow.cx.v3beta1.ToolUse.Builder.class); } // Construct using com.google.cloud.dialogflow.cx.v3beta1.ToolUse.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders) { getInputActionParametersFieldBuilder(); getOutputActionParametersFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; tool_ = ""; action_ = ""; inputActionParameters_ = null; if (inputActionParametersBuilder_ != null) { inputActionParametersBuilder_.dispose(); inputActionParametersBuilder_ = null; } outputActionParameters_ = null; if (outputActionParametersBuilder_ != null) { outputActionParametersBuilder_.dispose(); outputActionParametersBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.google.cloud.dialogflow.cx.v3beta1.ExampleProto .internal_static_google_cloud_dialogflow_cx_v3beta1_ToolUse_descriptor; } @java.lang.Override public com.google.cloud.dialogflow.cx.v3beta1.ToolUse getDefaultInstanceForType() { return com.google.cloud.dialogflow.cx.v3beta1.ToolUse.getDefaultInstance(); } @java.lang.Override public com.google.cloud.dialogflow.cx.v3beta1.ToolUse build() { com.google.cloud.dialogflow.cx.v3beta1.ToolUse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.google.cloud.dialogflow.cx.v3beta1.ToolUse buildPartial() { com.google.cloud.dialogflow.cx.v3beta1.ToolUse result = new com.google.cloud.dialogflow.cx.v3beta1.ToolUse(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.google.cloud.dialogflow.cx.v3beta1.ToolUse result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.tool_ = tool_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.action_ = action_; } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000004) != 0)) { result.inputActionParameters_ = inputActionParametersBuilder_ == null ? inputActionParameters_ : inputActionParametersBuilder_.build(); to_bitField0_ |= 0x00000001; } if (((from_bitField0_ & 0x00000008) != 0)) { result.outputActionParameters_ = outputActionParametersBuilder_ == null ? outputActionParameters_ : outputActionParametersBuilder_.build(); to_bitField0_ |= 0x00000002; } 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.ToolUse) { return mergeFrom((com.google.cloud.dialogflow.cx.v3beta1.ToolUse) other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.google.cloud.dialogflow.cx.v3beta1.ToolUse other) { if (other == com.google.cloud.dialogflow.cx.v3beta1.ToolUse.getDefaultInstance()) return this; if (!other.getTool().isEmpty()) { tool_ = other.tool_; bitField0_ |= 0x00000001; onChanged(); } if (!other.getAction().isEmpty()) { action_ = other.action_; bitField0_ |= 0x00000002; onChanged(); } if (other.hasInputActionParameters()) { mergeInputActionParameters(other.getInputActionParameters()); } if (other.hasOutputActionParameters()) { mergeOutputActionParameters(other.getOutputActionParameters()); } 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: { tool_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000001; break; } // case 10 case 18: { action_ = input.readStringRequireUtf8(); bitField0_ |= 0x00000002; break; } // case 18 case 42: { input.readMessage( getInputActionParametersFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000004; break; } // case 42 case 50: { input.readMessage( getOutputActionParametersFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000008; 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 tool_ = ""; /** * * *
     * Required. The [tool][google.cloud.dialogflow.cx.v3beta1.Tool] that should
     * be used. Format:
     * `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/tools/<ToolID>`.
     * 
* * * string tool = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return The tool. */ public java.lang.String getTool() { java.lang.Object ref = tool_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); tool_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Required. The [tool][google.cloud.dialogflow.cx.v3beta1.Tool] that should
     * be used. Format:
     * `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/tools/<ToolID>`.
     * 
* * * string tool = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return The bytes for tool. */ public com.google.protobuf.ByteString getToolBytes() { java.lang.Object ref = tool_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); tool_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Required. The [tool][google.cloud.dialogflow.cx.v3beta1.Tool] that should
     * be used. Format:
     * `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/tools/<ToolID>`.
     * 
* * * string tool = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @param value The tool to set. * @return This builder for chaining. */ public Builder setTool(java.lang.String value) { if (value == null) { throw new NullPointerException(); } tool_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * * *
     * Required. The [tool][google.cloud.dialogflow.cx.v3beta1.Tool] that should
     * be used. Format:
     * `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/tools/<ToolID>`.
     * 
* * * string tool = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @return This builder for chaining. */ public Builder clearTool() { tool_ = getDefaultInstance().getTool(); bitField0_ = (bitField0_ & ~0x00000001); onChanged(); return this; } /** * * *
     * Required. The [tool][google.cloud.dialogflow.cx.v3beta1.Tool] that should
     * be used. Format:
     * `projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>/tools/<ToolID>`.
     * 
* * * string tool = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... } * * * @param value The bytes for tool to set. * @return This builder for chaining. */ public Builder setToolBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); tool_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } private java.lang.Object action_ = ""; /** * * *
     * Optional. Name of the action to be called during the tool use.
     * 
* * string action = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @return The action. */ public java.lang.String getAction() { java.lang.Object ref = action_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); action_ = s; return s; } else { return (java.lang.String) ref; } } /** * * *
     * Optional. Name of the action to be called during the tool use.
     * 
* * string action = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @return The bytes for action. */ public com.google.protobuf.ByteString getActionBytes() { java.lang.Object ref = action_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); action_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * * *
     * Optional. Name of the action to be called during the tool use.
     * 
* * string action = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @param value The action to set. * @return This builder for chaining. */ public Builder setAction(java.lang.String value) { if (value == null) { throw new NullPointerException(); } action_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** * * *
     * Optional. Name of the action to be called during the tool use.
     * 
* * string action = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @return This builder for chaining. */ public Builder clearAction() { action_ = getDefaultInstance().getAction(); bitField0_ = (bitField0_ & ~0x00000002); onChanged(); return this; } /** * * *
     * Optional. Name of the action to be called during the tool use.
     * 
* * string action = 2 [(.google.api.field_behavior) = OPTIONAL]; * * @param value The bytes for action to set. * @return This builder for chaining. */ public Builder setActionBytes(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); action_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } private com.google.protobuf.Struct inputActionParameters_; private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder> inputActionParametersBuilder_; /** * * *
     * Optional. A list of input parameters for the action.
     * 
* * * .google.protobuf.Struct input_action_parameters = 5 [(.google.api.field_behavior) = OPTIONAL]; * * * @return Whether the inputActionParameters field is set. */ public boolean hasInputActionParameters() { return ((bitField0_ & 0x00000004) != 0); } /** * * *
     * Optional. A list of input parameters for the action.
     * 
* * * .google.protobuf.Struct input_action_parameters = 5 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The inputActionParameters. */ public com.google.protobuf.Struct getInputActionParameters() { if (inputActionParametersBuilder_ == null) { return inputActionParameters_ == null ? com.google.protobuf.Struct.getDefaultInstance() : inputActionParameters_; } else { return inputActionParametersBuilder_.getMessage(); } } /** * * *
     * Optional. A list of input parameters for the action.
     * 
* * * .google.protobuf.Struct input_action_parameters = 5 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder setInputActionParameters(com.google.protobuf.Struct value) { if (inputActionParametersBuilder_ == null) { if (value == null) { throw new NullPointerException(); } inputActionParameters_ = value; } else { inputActionParametersBuilder_.setMessage(value); } bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * Optional. A list of input parameters for the action.
     * 
* * * .google.protobuf.Struct input_action_parameters = 5 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder setInputActionParameters(com.google.protobuf.Struct.Builder builderForValue) { if (inputActionParametersBuilder_ == null) { inputActionParameters_ = builderForValue.build(); } else { inputActionParametersBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000004; onChanged(); return this; } /** * * *
     * Optional. A list of input parameters for the action.
     * 
* * * .google.protobuf.Struct input_action_parameters = 5 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder mergeInputActionParameters(com.google.protobuf.Struct value) { if (inputActionParametersBuilder_ == null) { if (((bitField0_ & 0x00000004) != 0) && inputActionParameters_ != null && inputActionParameters_ != com.google.protobuf.Struct.getDefaultInstance()) { getInputActionParametersBuilder().mergeFrom(value); } else { inputActionParameters_ = value; } } else { inputActionParametersBuilder_.mergeFrom(value); } if (inputActionParameters_ != null) { bitField0_ |= 0x00000004; onChanged(); } return this; } /** * * *
     * Optional. A list of input parameters for the action.
     * 
* * * .google.protobuf.Struct input_action_parameters = 5 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder clearInputActionParameters() { bitField0_ = (bitField0_ & ~0x00000004); inputActionParameters_ = null; if (inputActionParametersBuilder_ != null) { inputActionParametersBuilder_.dispose(); inputActionParametersBuilder_ = null; } onChanged(); return this; } /** * * *
     * Optional. A list of input parameters for the action.
     * 
* * * .google.protobuf.Struct input_action_parameters = 5 [(.google.api.field_behavior) = OPTIONAL]; * */ public com.google.protobuf.Struct.Builder getInputActionParametersBuilder() { bitField0_ |= 0x00000004; onChanged(); return getInputActionParametersFieldBuilder().getBuilder(); } /** * * *
     * Optional. A list of input parameters for the action.
     * 
* * * .google.protobuf.Struct input_action_parameters = 5 [(.google.api.field_behavior) = OPTIONAL]; * */ public com.google.protobuf.StructOrBuilder getInputActionParametersOrBuilder() { if (inputActionParametersBuilder_ != null) { return inputActionParametersBuilder_.getMessageOrBuilder(); } else { return inputActionParameters_ == null ? com.google.protobuf.Struct.getDefaultInstance() : inputActionParameters_; } } /** * * *
     * Optional. A list of input parameters for the action.
     * 
* * * .google.protobuf.Struct input_action_parameters = 5 [(.google.api.field_behavior) = OPTIONAL]; * */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder> getInputActionParametersFieldBuilder() { if (inputActionParametersBuilder_ == null) { inputActionParametersBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder>( getInputActionParameters(), getParentForChildren(), isClean()); inputActionParameters_ = null; } return inputActionParametersBuilder_; } private com.google.protobuf.Struct outputActionParameters_; private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder> outputActionParametersBuilder_; /** * * *
     * Optional. A list of output parameters generated by the action.
     * 
* * * .google.protobuf.Struct output_action_parameters = 6 [(.google.api.field_behavior) = OPTIONAL]; * * * @return Whether the outputActionParameters field is set. */ public boolean hasOutputActionParameters() { return ((bitField0_ & 0x00000008) != 0); } /** * * *
     * Optional. A list of output parameters generated by the action.
     * 
* * * .google.protobuf.Struct output_action_parameters = 6 [(.google.api.field_behavior) = OPTIONAL]; * * * @return The outputActionParameters. */ public com.google.protobuf.Struct getOutputActionParameters() { if (outputActionParametersBuilder_ == null) { return outputActionParameters_ == null ? com.google.protobuf.Struct.getDefaultInstance() : outputActionParameters_; } else { return outputActionParametersBuilder_.getMessage(); } } /** * * *
     * Optional. A list of output parameters generated by the action.
     * 
* * * .google.protobuf.Struct output_action_parameters = 6 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder setOutputActionParameters(com.google.protobuf.Struct value) { if (outputActionParametersBuilder_ == null) { if (value == null) { throw new NullPointerException(); } outputActionParameters_ = value; } else { outputActionParametersBuilder_.setMessage(value); } bitField0_ |= 0x00000008; onChanged(); return this; } /** * * *
     * Optional. A list of output parameters generated by the action.
     * 
* * * .google.protobuf.Struct output_action_parameters = 6 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder setOutputActionParameters(com.google.protobuf.Struct.Builder builderForValue) { if (outputActionParametersBuilder_ == null) { outputActionParameters_ = builderForValue.build(); } else { outputActionParametersBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000008; onChanged(); return this; } /** * * *
     * Optional. A list of output parameters generated by the action.
     * 
* * * .google.protobuf.Struct output_action_parameters = 6 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder mergeOutputActionParameters(com.google.protobuf.Struct value) { if (outputActionParametersBuilder_ == null) { if (((bitField0_ & 0x00000008) != 0) && outputActionParameters_ != null && outputActionParameters_ != com.google.protobuf.Struct.getDefaultInstance()) { getOutputActionParametersBuilder().mergeFrom(value); } else { outputActionParameters_ = value; } } else { outputActionParametersBuilder_.mergeFrom(value); } if (outputActionParameters_ != null) { bitField0_ |= 0x00000008; onChanged(); } return this; } /** * * *
     * Optional. A list of output parameters generated by the action.
     * 
* * * .google.protobuf.Struct output_action_parameters = 6 [(.google.api.field_behavior) = OPTIONAL]; * */ public Builder clearOutputActionParameters() { bitField0_ = (bitField0_ & ~0x00000008); outputActionParameters_ = null; if (outputActionParametersBuilder_ != null) { outputActionParametersBuilder_.dispose(); outputActionParametersBuilder_ = null; } onChanged(); return this; } /** * * *
     * Optional. A list of output parameters generated by the action.
     * 
* * * .google.protobuf.Struct output_action_parameters = 6 [(.google.api.field_behavior) = OPTIONAL]; * */ public com.google.protobuf.Struct.Builder getOutputActionParametersBuilder() { bitField0_ |= 0x00000008; onChanged(); return getOutputActionParametersFieldBuilder().getBuilder(); } /** * * *
     * Optional. A list of output parameters generated by the action.
     * 
* * * .google.protobuf.Struct output_action_parameters = 6 [(.google.api.field_behavior) = OPTIONAL]; * */ public com.google.protobuf.StructOrBuilder getOutputActionParametersOrBuilder() { if (outputActionParametersBuilder_ != null) { return outputActionParametersBuilder_.getMessageOrBuilder(); } else { return outputActionParameters_ == null ? com.google.protobuf.Struct.getDefaultInstance() : outputActionParameters_; } } /** * * *
     * Optional. A list of output parameters generated by the action.
     * 
* * * .google.protobuf.Struct output_action_parameters = 6 [(.google.api.field_behavior) = OPTIONAL]; * */ private com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder> getOutputActionParametersFieldBuilder() { if (outputActionParametersBuilder_ == null) { outputActionParametersBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< com.google.protobuf.Struct, com.google.protobuf.Struct.Builder, com.google.protobuf.StructOrBuilder>( getOutputActionParameters(), getParentForChildren(), isClean()); outputActionParameters_ = null; } return outputActionParametersBuilder_; } @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.ToolUse) } // @@protoc_insertion_point(class_scope:google.cloud.dialogflow.cx.v3beta1.ToolUse) private static final com.google.cloud.dialogflow.cx.v3beta1.ToolUse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.google.cloud.dialogflow.cx.v3beta1.ToolUse(); } public static com.google.cloud.dialogflow.cx.v3beta1.ToolUse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public ToolUse 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.ToolUse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy