com.google.cloud.vertexai.api.RetrievalOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-vertexai-v1 Show documentation
Show all versions of proto-google-cloud-vertexai-v1 Show documentation
Proto library for google-cloud-vertexai
/*
* 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/vertexai/v1/tool.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.vertexai.api;
public interface RetrievalOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.vertexai.v1.Retrieval)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Set to use data source powered by Vertex AI Search.
*
*
* .google.cloud.vertexai.v1.VertexAISearch vertex_ai_search = 2;
*
* @return Whether the vertexAiSearch field is set.
*/
boolean hasVertexAiSearch();
/**
*
*
*
* Set to use data source powered by Vertex AI Search.
*
*
* .google.cloud.vertexai.v1.VertexAISearch vertex_ai_search = 2;
*
* @return The vertexAiSearch.
*/
com.google.cloud.vertexai.api.VertexAISearch getVertexAiSearch();
/**
*
*
*
* Set to use data source powered by Vertex AI Search.
*
*
* .google.cloud.vertexai.v1.VertexAISearch vertex_ai_search = 2;
*/
com.google.cloud.vertexai.api.VertexAISearchOrBuilder getVertexAiSearchOrBuilder();
/**
*
*
*
* Optional. Deprecated. This option is no longer supported.
*
*
*
* bool disable_attribution = 3 [deprecated = true, (.google.api.field_behavior) = OPTIONAL];
*
*
* @deprecated google.cloud.vertexai.v1.Retrieval.disable_attribution is deprecated. See
* google/cloud/vertexai/v1/tool.proto;l=130
* @return The disableAttribution.
*/
@java.lang.Deprecated
boolean getDisableAttribution();
com.google.cloud.vertexai.api.Retrieval.SourceCase getSourceCase();
}