@Generated("by gapic-generator-java")
Package com.google.cloud.discoveryengine.v1
The interfaces provided are listed below, along with usage samples.
======================= CompletionServiceClient =======================
Service Description: Service for Auto-Completion.
Sample for CompletionServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (CompletionServiceClient completionServiceClient = CompletionServiceClient.create()) {
CompleteQueryRequest request =
CompleteQueryRequest.newBuilder()
.setDataStore(
DataStoreName.ofProjectLocationDataStoreName(
"[PROJECT]", "[LOCATION]", "[DATA_STORE]")
.toString())
.setQuery("query107944136")
.setQueryModel("queryModel-184930495")
.setUserPseudoId("userPseudoId-1155274652")
.setIncludeTailSuggestions(true)
.build();
CompleteQueryResponse response = completionServiceClient.completeQuery(request);
}
======================= ConversationalSearchServiceClient =======================
Service Description: Service for conversational search.
Sample for ConversationalSearchServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ConversationalSearchServiceClient conversationalSearchServiceClient =
ConversationalSearchServiceClient.create()) {
ConversationName name =
ConversationName.ofProjectLocationDataStoreConversationName(
"[PROJECT]", "[LOCATION]", "[DATA_STORE]", "[CONVERSATION]");
TextInput query = TextInput.newBuilder().build();
ConverseConversationResponse response =
conversationalSearchServiceClient.converseConversation(name, query);
}
======================= DocumentServiceClient =======================
Service Description: Service for ingesting [Document][google.cloud.discoveryengine.v1.Document] information of the customer's website.
Sample for DocumentServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (DocumentServiceClient documentServiceClient = DocumentServiceClient.create()) {
DocumentName name =
DocumentName.ofProjectLocationDataStoreBranchDocumentName(
"[PROJECT]", "[LOCATION]", "[DATA_STORE]", "[BRANCH]", "[DOCUMENT]");
Document response = documentServiceClient.getDocument(name);
}
======================= SchemaServiceClient =======================
Service Description: Service for managing [Schema][google.cloud.discoveryengine.v1.Schema]s.
Sample for SchemaServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (SchemaServiceClient schemaServiceClient = SchemaServiceClient.create()) {
SchemaName name =
SchemaName.ofProjectLocationDataStoreSchemaName(
"[PROJECT]", "[LOCATION]", "[DATA_STORE]", "[SCHEMA]");
Schema response = schemaServiceClient.getSchema(name);
}
======================= SearchServiceClient =======================
Service Description: Service for search.
Sample for SearchServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (SearchServiceClient searchServiceClient = SearchServiceClient.create()) {
SearchRequest request =
SearchRequest.newBuilder()
.setServingConfig(
ServingConfigName.ofProjectLocationDataStoreServingConfigName(
"[PROJECT]", "[LOCATION]", "[DATA_STORE]", "[SERVING_CONFIG]")
.toString())
.setBranch(
BranchName.ofProjectLocationDataStoreBranchName(
"[PROJECT]", "[LOCATION]", "[DATA_STORE]", "[BRANCH]")
.toString())
.setQuery("query107944136")
.setImageQuery(SearchRequest.ImageQuery.newBuilder().build())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setOffset(-1019779949)
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.setUserInfo(UserInfo.newBuilder().build())
.addAllFacetSpecs(new ArrayList<SearchRequest.FacetSpec>())
.setBoostSpec(SearchRequest.BoostSpec.newBuilder().build())
.putAllParams(new HashMap<String, Value>())
.setQueryExpansionSpec(SearchRequest.QueryExpansionSpec.newBuilder().build())
.setSpellCorrectionSpec(SearchRequest.SpellCorrectionSpec.newBuilder().build())
.setUserPseudoId("userPseudoId-1155274652")
.setContentSearchSpec(SearchRequest.ContentSearchSpec.newBuilder().build())
.setSafeSearch(true)
.putAllUserLabels(new HashMap<String, String>())
.build();
for (SearchResponse.SearchResult element : searchServiceClient.search(request).iterateAll()) {
// doThingsWith(element);
}
}
======================= UserEventServiceClient =======================
Service Description: Service for ingesting end user actions on a website to Discovery Engine API.
Sample for UserEventServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (UserEventServiceClient userEventServiceClient = UserEventServiceClient.create()) {
WriteUserEventRequest request =
WriteUserEventRequest.newBuilder()
.setParent(
DataStoreName.ofProjectLocationDataStoreName(
"[PROJECT]", "[LOCATION]", "[DATA_STORE]")
.toString())
.setUserEvent(UserEvent.newBuilder().build())
.build();
UserEvent response = userEventServiceClient.writeUserEvent(request);
}
-
Class Summary Class Description BigQuerySource BigQuery source import data from.BigQuerySource.Builder BigQuery source import data from.BranchName BranchName.Builder Builder for projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}.BranchName.ProjectLocationCollectionDataStoreBranchBuilder Builder for projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}.CollectUserEventRequest Request message for CollectUserEvent method.CollectUserEventRequest.Builder Request message for CollectUserEvent method.CommonProto CompleteQueryRequest Request message for [CompletionService.CompleteQuery][google.cloud.discoveryengine.v1.CompletionService.CompleteQuery] method.CompleteQueryRequest.Builder Request message for [CompletionService.CompleteQuery][google.cloud.discoveryengine.v1.CompletionService.CompleteQuery] method.CompleteQueryResponse Response message for [CompletionService.CompleteQuery][google.cloud.discoveryengine.v1.CompletionService.CompleteQuery] method.CompleteQueryResponse.Builder Response message for [CompletionService.CompleteQuery][google.cloud.discoveryengine.v1.CompletionService.CompleteQuery] method.CompleteQueryResponse.QuerySuggestion Suggestions as search queries.CompleteQueryResponse.QuerySuggestion.Builder Suggestions as search queries.CompletionInfo Detailed completion information including completion attribution token and clicked completion info.CompletionInfo.Builder Detailed completion information including completion attribution token and clicked completion info.CompletionServiceClient Service Description: Service for Auto-Completion.CompletionServiceGrpc Service for Auto-Completion.CompletionServiceGrpc.CompletionServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service CompletionService.CompletionServiceGrpc.CompletionServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service CompletionService.CompletionServiceGrpc.CompletionServiceImplBase Base class for the server implementation of the service CompletionService.CompletionServiceGrpc.CompletionServiceStub A stub to allow clients to do asynchronous rpc calls to service CompletionService.CompletionServiceProto CompletionServiceSettings Settings class to configure an instance ofCompletionServiceClient
.CompletionServiceSettings.Builder Builder for CompletionServiceSettings.Conversation External conversation proto definition.Conversation.Builder External conversation proto definition.ConversationalSearchServiceClient Service Description: Service for conversational search.ConversationalSearchServiceClient.ListConversationsFixedSizeCollection ConversationalSearchServiceClient.ListConversationsPage ConversationalSearchServiceClient.ListConversationsPagedResponse ConversationalSearchServiceGrpc Service for conversational search.ConversationalSearchServiceGrpc.ConversationalSearchServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service ConversationalSearchService.ConversationalSearchServiceGrpc.ConversationalSearchServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service ConversationalSearchService.ConversationalSearchServiceGrpc.ConversationalSearchServiceImplBase Base class for the server implementation of the service ConversationalSearchService.ConversationalSearchServiceGrpc.ConversationalSearchServiceStub A stub to allow clients to do asynchronous rpc calls to service ConversationalSearchService.ConversationalSearchServiceProto ConversationalSearchServiceSettings Settings class to configure an instance ofConversationalSearchServiceClient
.ConversationalSearchServiceSettings.Builder Builder for ConversationalSearchServiceSettings.ConversationContext Defines context of the conversationConversationContext.Builder Defines context of the conversationConversationMessage Defines a conversation message.ConversationMessage.Builder Defines a conversation message.ConversationName ConversationName.Builder Builder for projects/{project}/locations/{location}/dataStores/{data_store}/conversations/{conversation}.ConversationName.ProjectLocationCollectionDataStoreConversationBuilder Builder for projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/conversations/{conversation}.ConversationProto ConverseConversationRequest Request message for [ConversationalSearchService.ConverseConversation][google.cloud.discoveryengine.v1.ConversationalSearchService.ConverseConversation] method.ConverseConversationRequest.Builder Request message for [ConversationalSearchService.ConverseConversation][google.cloud.discoveryengine.v1.ConversationalSearchService.ConverseConversation] method.ConverseConversationResponse Response message for [ConversationalSearchService.ConverseConversation][google.cloud.discoveryengine.v1.ConversationalSearchService.ConverseConversation] method.ConverseConversationResponse.Builder Response message for [ConversationalSearchService.ConverseConversation][google.cloud.discoveryengine.v1.ConversationalSearchService.ConverseConversation] method.CreateConversationRequest Request for CreateConversation method.CreateConversationRequest.Builder Request for CreateConversation method.CreateDocumentRequest Request message for [DocumentService.CreateDocument][google.cloud.discoveryengine.v1.DocumentService.CreateDocument] method.CreateDocumentRequest.Builder Request message for [DocumentService.CreateDocument][google.cloud.discoveryengine.v1.DocumentService.CreateDocument] method.CreateSchemaMetadata Metadata for Create Schema LRO.CreateSchemaMetadata.Builder Metadata for Create Schema LRO.CreateSchemaRequest Request message for [SchemaService.CreateSchema][google.cloud.discoveryengine.v1.SchemaService.CreateSchema] method.CreateSchemaRequest.Builder Request message for [SchemaService.CreateSchema][google.cloud.discoveryengine.v1.SchemaService.CreateSchema] method.CustomAttribute A custom attribute that is not explicitly modeled in a resource, e.g.CustomAttribute.Builder A custom attribute that is not explicitly modeled in a resource, e.g.DataStoreName DataStoreName.Builder Builder for projects/{project}/locations/{location}/dataStores/{data_store}.DataStoreName.ProjectLocationCollectionDataStoreBuilder Builder for projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}.DeleteConversationRequest Request for DeleteConversation method.DeleteConversationRequest.Builder Request for DeleteConversation method.DeleteDocumentRequest Request message for [DocumentService.DeleteDocument][google.cloud.discoveryengine.v1.DocumentService.DeleteDocument] method.DeleteDocumentRequest.Builder Request message for [DocumentService.DeleteDocument][google.cloud.discoveryengine.v1.DocumentService.DeleteDocument] method.DeleteSchemaMetadata Metadata for DeleteSchema LRO.DeleteSchemaMetadata.Builder Metadata for DeleteSchema LRO.DeleteSchemaRequest Request message for [SchemaService.DeleteSchema][google.cloud.discoveryengine.v1.SchemaService.DeleteSchema] method.DeleteSchemaRequest.Builder Request message for [SchemaService.DeleteSchema][google.cloud.discoveryengine.v1.SchemaService.DeleteSchema] method.Document Document captures all raw metadata information of items to be recommended or searched.Document.Builder Document captures all raw metadata information of items to be recommended or searched.Document.Content Unstructured data linked to this document.Document.Content.Builder Unstructured data linked to this document.DocumentInfo Detailed document information associated with a user event.DocumentInfo.Builder Detailed document information associated with a user event.DocumentName DocumentName.Builder Builder for projects/{project}/locations/{location}/dataStores/{data_store}/branches/{branch}/documents/{document}.DocumentName.ProjectLocationCollectionDataStoreBranchDocumentBuilder Builder for projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}/documents/{document}.DocumentProto DocumentServiceClient Service Description: Service for ingesting [Document][google.cloud.discoveryengine.v1.Document] information of the customer's website.DocumentServiceClient.ListDocumentsFixedSizeCollection DocumentServiceClient.ListDocumentsPage DocumentServiceClient.ListDocumentsPagedResponse DocumentServiceGrpc Service for ingesting [Document][google.cloud.discoveryengine.v1.Document] information of the customer's website.DocumentServiceGrpc.DocumentServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service DocumentService.DocumentServiceGrpc.DocumentServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service DocumentService.DocumentServiceGrpc.DocumentServiceImplBase Base class for the server implementation of the service DocumentService.DocumentServiceGrpc.DocumentServiceStub A stub to allow clients to do asynchronous rpc calls to service DocumentService.DocumentServiceProto DocumentServiceSettings Settings class to configure an instance ofDocumentServiceClient
.DocumentServiceSettings.Builder Builder for DocumentServiceSettings.GcsSource Cloud Storage location for input content.GcsSource.Builder Cloud Storage location for input content.GetConversationRequest Request for GetConversation method.GetConversationRequest.Builder Request for GetConversation method.GetDocumentRequest Request message for [DocumentService.GetDocument][google.cloud.discoveryengine.v1.DocumentService.GetDocument] method.GetDocumentRequest.Builder Request message for [DocumentService.GetDocument][google.cloud.discoveryengine.v1.DocumentService.GetDocument] method.GetSchemaRequest Request message for [SchemaService.GetSchema][google.cloud.discoveryengine.v1.SchemaService.GetSchema] method.GetSchemaRequest.Builder Request message for [SchemaService.GetSchema][google.cloud.discoveryengine.v1.SchemaService.GetSchema] method.ImportConfigProto ImportDocumentsMetadata Metadata related to the progress of the ImportDocuments operation.ImportDocumentsMetadata.Builder Metadata related to the progress of the ImportDocuments operation.ImportDocumentsRequest Request message for Import methods.ImportDocumentsRequest.Builder Request message for Import methods.ImportDocumentsRequest.InlineSource The inline source for the input config for ImportDocuments method.ImportDocumentsRequest.InlineSource.Builder The inline source for the input config for ImportDocuments method.ImportDocumentsResponse Response of the [ImportDocumentsRequest][google.cloud.discoveryengine.v1.ImportDocumentsRequest].ImportDocumentsResponse.Builder Response of the [ImportDocumentsRequest][google.cloud.discoveryengine.v1.ImportDocumentsRequest].ImportErrorConfig Configuration of destination for Import related errors.ImportErrorConfig.Builder Configuration of destination for Import related errors.ImportUserEventsMetadata Metadata related to the progress of the Import operation.ImportUserEventsMetadata.Builder Metadata related to the progress of the Import operation.ImportUserEventsRequest Request message for the ImportUserEvents request.ImportUserEventsRequest.Builder Request message for the ImportUserEvents request.ImportUserEventsRequest.InlineSource The inline source for the input config for ImportUserEvents method.ImportUserEventsRequest.InlineSource.Builder The inline source for the input config for ImportUserEvents method.ImportUserEventsResponse Response of the ImportUserEventsRequest.ImportUserEventsResponse.Builder Response of the ImportUserEventsRequest.Interval A floating point interval.Interval.Builder A floating point interval.ListConversationsRequest Request for ListConversations method.ListConversationsRequest.Builder Request for ListConversations method.ListConversationsResponse Response for ListConversations method.ListConversationsResponse.Builder Response for ListConversations method.ListDocumentsRequest Request message for [DocumentService.ListDocuments][google.cloud.discoveryengine.v1.DocumentService.ListDocuments] method.ListDocumentsRequest.Builder Request message for [DocumentService.ListDocuments][google.cloud.discoveryengine.v1.DocumentService.ListDocuments] method.ListDocumentsResponse Response message for [DocumentService.ListDocuments][google.cloud.discoveryengine.v1.DocumentService.ListDocuments] method.ListDocumentsResponse.Builder Response message for [DocumentService.ListDocuments][google.cloud.discoveryengine.v1.DocumentService.ListDocuments] method.ListSchemasRequest Request message for [SchemaService.ListSchemas][google.cloud.discoveryengine.v1.SchemaService.ListSchemas] method.ListSchemasRequest.Builder Request message for [SchemaService.ListSchemas][google.cloud.discoveryengine.v1.SchemaService.ListSchemas] method.ListSchemasResponse Response message for [SchemaService.ListSchemas][google.cloud.discoveryengine.v1.SchemaService.ListSchemas] method.ListSchemasResponse.Builder Response message for [SchemaService.ListSchemas][google.cloud.discoveryengine.v1.SchemaService.ListSchemas] method.MediaInfo Media-specific user event information.MediaInfo.Builder Media-specific user event information.PageInfo Detailed page information.PageInfo.Builder Detailed page information.PanelInfo Detailed panel information associated with a user event.PanelInfo.Builder Detailed panel information associated with a user event.PurgeConfigProto PurgeDocumentsMetadata Metadata related to the progress of the PurgeDocuments operation.PurgeDocumentsMetadata.Builder Metadata related to the progress of the PurgeDocuments operation.PurgeDocumentsRequest Request message for [DocumentService.PurgeDocuments][google.cloud.discoveryengine.v1.DocumentService.PurgeDocuments] method.PurgeDocumentsRequest.Builder Request message for [DocumentService.PurgeDocuments][google.cloud.discoveryengine.v1.DocumentService.PurgeDocuments] method.PurgeDocumentsResponse Response message for [DocumentService.PurgeDocuments][google.cloud.discoveryengine.v1.DocumentService.PurgeDocuments] method.PurgeDocumentsResponse.Builder Response message for [DocumentService.PurgeDocuments][google.cloud.discoveryengine.v1.DocumentService.PurgeDocuments] method.Reply Defines a reply message to user.Reply.Builder Defines a reply message to user.Schema Defines the structure and layout of a type of document data.Schema.Builder Defines the structure and layout of a type of document data.SchemaName SchemaName.Builder Builder for projects/{project}/locations/{location}/dataStores/{data_store}/schemas/{schema}.SchemaName.ProjectLocationCollectionDataStoreSchemaBuilder Builder for projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/schemas/{schema}.SchemaProto SchemaServiceClient Service Description: Service for managing [Schema][google.cloud.discoveryengine.v1.Schema]s.SchemaServiceClient.ListSchemasFixedSizeCollection SchemaServiceClient.ListSchemasPage SchemaServiceClient.ListSchemasPagedResponse SchemaServiceGrpc Service for managing [Schema][google.cloud.discoveryengine.v1.Schema]s.SchemaServiceGrpc.SchemaServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service SchemaService.SchemaServiceGrpc.SchemaServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service SchemaService.SchemaServiceGrpc.SchemaServiceImplBase Base class for the server implementation of the service SchemaService.SchemaServiceGrpc.SchemaServiceStub A stub to allow clients to do asynchronous rpc calls to service SchemaService.SchemaServiceProto SchemaServiceSettings Settings class to configure an instance ofSchemaServiceClient
.SchemaServiceSettings.Builder Builder for SchemaServiceSettings.SearchInfo Detailed search information.SearchInfo.Builder Detailed search information.SearchRequest Request message for [SearchService.Search][google.cloud.discoveryengine.v1.SearchService.Search] method.SearchRequest.BoostSpec Boost specification to boost certain documents.SearchRequest.BoostSpec.Builder Boost specification to boost certain documents.SearchRequest.BoostSpec.ConditionBoostSpec Boost applies to documents which match a condition.SearchRequest.BoostSpec.ConditionBoostSpec.Builder Boost applies to documents which match a condition.SearchRequest.Builder Request message for [SearchService.Search][google.cloud.discoveryengine.v1.SearchService.Search] method.SearchRequest.ContentSearchSpec A specification for configuring the behavior of content search.SearchRequest.ContentSearchSpec.Builder A specification for configuring the behavior of content search.SearchRequest.ContentSearchSpec.SnippetSpec A specification for configuring snippets in a search response.SearchRequest.ContentSearchSpec.SnippetSpec.Builder A specification for configuring snippets in a search response.SearchRequest.ContentSearchSpec.SummarySpec A specification for configuring a summary returned in a search response.SearchRequest.ContentSearchSpec.SummarySpec.Builder A specification for configuring a summary returned in a search response.SearchRequest.FacetSpec A facet specification to perform faceted search.SearchRequest.FacetSpec.Builder A facet specification to perform faceted search.SearchRequest.FacetSpec.FacetKey Specifies how a facet is computed.SearchRequest.FacetSpec.FacetKey.Builder Specifies how a facet is computed.SearchRequest.ImageQuery Specifies the image query input.SearchRequest.ImageQuery.Builder Specifies the image query input.SearchRequest.QueryExpansionSpec Specification to determine under which conditions query expansion should occur.SearchRequest.QueryExpansionSpec.Builder Specification to determine under which conditions query expansion should occur.SearchRequest.SpellCorrectionSpec The specification for query spell correction.SearchRequest.SpellCorrectionSpec.Builder The specification for query spell correction.SearchResponse Response message for [SearchService.Search][google.cloud.discoveryengine.v1.SearchService.Search] method.SearchResponse.Builder Response message for [SearchService.Search][google.cloud.discoveryengine.v1.SearchService.Search] method.SearchResponse.Facet A facet result.SearchResponse.Facet.Builder A facet result.SearchResponse.Facet.FacetValue A facet value which contains value names and their count.SearchResponse.Facet.FacetValue.Builder A facet value which contains value names and their count.SearchResponse.QueryExpansionInfo Information describing query expansion including whether expansion has occurred.SearchResponse.QueryExpansionInfo.Builder Information describing query expansion including whether expansion has occurred.SearchResponse.SearchResult Represents the search results.SearchResponse.SearchResult.Builder Represents the search results.SearchResponse.Summary Summary of the top N search result specified by the summary spec.SearchResponse.Summary.Builder Summary of the top N search result specified by the summary spec.SearchResponse.Summary.SafetyAttributes Safety Attribute categories and their associated confidence scores.SearchResponse.Summary.SafetyAttributes.Builder Safety Attribute categories and their associated confidence scores.SearchServiceClient Service Description: Service for search.SearchServiceClient.SearchFixedSizeCollection SearchServiceClient.SearchPage SearchServiceClient.SearchPagedResponse SearchServiceGrpc Service for search.SearchServiceGrpc.SearchServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service SearchService.SearchServiceGrpc.SearchServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service SearchService.SearchServiceGrpc.SearchServiceImplBase Base class for the server implementation of the service SearchService.SearchServiceGrpc.SearchServiceStub A stub to allow clients to do asynchronous rpc calls to service SearchService.SearchServiceProto SearchServiceSettings Settings class to configure an instance ofSearchServiceClient
.SearchServiceSettings.Builder Builder for SearchServiceSettings.ServingConfigName ServingConfigName.Builder Builder for projects/{project}/locations/{location}/dataStores/{data_store}/servingConfigs/{serving_config}.ServingConfigName.ProjectLocationCollectionDataStoreServingConfigBuilder Builder for projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/servingConfigs/{serving_config}.TextInput Defines text input.TextInput.Builder Defines text input.TransactionInfo A transaction represents the entire purchase transaction.TransactionInfo.Builder A transaction represents the entire purchase transaction.UpdateConversationRequest Request for UpdateConversation method.UpdateConversationRequest.Builder Request for UpdateConversation method.UpdateDocumentRequest Request message for [DocumentService.UpdateDocument][google.cloud.discoveryengine.v1.DocumentService.UpdateDocument] method.UpdateDocumentRequest.Builder Request message for [DocumentService.UpdateDocument][google.cloud.discoveryengine.v1.DocumentService.UpdateDocument] method.UpdateSchemaMetadata Metadata for UpdateSchema LRO.UpdateSchemaMetadata.Builder Metadata for UpdateSchema LRO.UpdateSchemaRequest Request message for [SchemaService.UpdateSchema][google.cloud.discoveryengine.v1.SchemaService.UpdateSchema] method.UpdateSchemaRequest.Builder Request message for [SchemaService.UpdateSchema][google.cloud.discoveryengine.v1.SchemaService.UpdateSchema] method.UserEvent UserEvent captures all metadata information Discovery Engine API needs to know about how end users interact with customers' website.UserEvent.Builder UserEvent captures all metadata information Discovery Engine API needs to know about how end users interact with customers' website.UserEventProto UserEventServiceClient Service Description: Service for ingesting end user actions on a website to Discovery Engine API.UserEventServiceGrpc Service for ingesting end user actions on a website to Discovery Engine API.UserEventServiceGrpc.UserEventServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service UserEventService.UserEventServiceGrpc.UserEventServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service UserEventService.UserEventServiceGrpc.UserEventServiceImplBase Base class for the server implementation of the service UserEventService.UserEventServiceGrpc.UserEventServiceStub A stub to allow clients to do asynchronous rpc calls to service UserEventService.UserEventServiceProto UserEventServiceSettings Settings class to configure an instance ofUserEventServiceClient
.UserEventServiceSettings.Builder Builder for UserEventServiceSettings.UserInfo Information of an end user.UserInfo.Builder Information of an end user.WriteUserEventRequest Request message for WriteUserEvent method.WriteUserEventRequest.Builder Request message for WriteUserEvent method. -
Enum Summary Enum Description BigQuerySource.PartitionCase Conversation.State Enumeration of the state of the conversation.ConversationMessage.MessageCase Document.Content.ContentCase Document.DataCase DocumentInfo.DocumentDescriptorCase ImportDocumentsRequest.ReconciliationMode Indicates how imported documents are reconciled with the existing documents created or imported before.ImportDocumentsRequest.SourceCase ImportErrorConfig.DestinationCase ImportUserEventsRequest.SourceCase Interval.MaxCase Interval.MinCase Schema.SchemaCase SearchRequest.ImageQuery.ImageCase SearchRequest.QueryExpansionSpec.Condition Enum describing under which condition query expansion should occur.SearchRequest.SpellCorrectionSpec.Mode Enum describing under which mode spell correction should occur.SearchResponse.Facet.FacetValue.FacetValueCase SearchResponse.Summary.SummarySkippedReason An Enum for summary-skipped reasons.