[BindServiceMethod(typeof(ConversationalSearchService), "BindService")]
public abstract class ConversationalSearchService.ConversationalSearchServiceBase
Reference documentation and code samples for the Discovery Engine v1beta API class ConversationalSearchService.ConversationalSearchServiceBase.
Base class for server-side implementations of ConversationalSearchService
Namespace
Google.Cloud.DiscoveryEngine.V1BetaAssembly
Google.Cloud.DiscoveryEngine.V1Beta.dll
Methods
ConverseConversation(ConverseConversationRequest, ServerCallContext)
public virtual Task<ConverseConversationResponse> ConverseConversation(ConverseConversationRequest request, ServerCallContext context)
Converses a conversation.
Parameters | |
---|---|
Name | Description |
request | ConverseConversationRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskConverseConversationResponse | The response to send back to the client (wrapped by a task). |
CreateConversation(CreateConversationRequest, ServerCallContext)
public virtual Task<Conversation> CreateConversation(CreateConversationRequest request, ServerCallContext context)
Creates a Conversation.
If the [Conversation][google.cloud.discoveryengine.v1beta.Conversation] to create already exists, an ALREADY_EXISTS error is returned.
Parameters | |
---|---|
Name | Description |
request | CreateConversationRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskConversation | The response to send back to the client (wrapped by a task). |
DeleteConversation(DeleteConversationRequest, ServerCallContext)
public virtual Task<Empty> DeleteConversation(DeleteConversationRequest request, ServerCallContext context)
Deletes a Conversation.
If the [Conversation][google.cloud.discoveryengine.v1beta.Conversation] to delete does not exist, a NOT_FOUND error is returned.
Parameters | |
---|---|
Name | Description |
request | DeleteConversationRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskEmpty | The response to send back to the client (wrapped by a task). |
GetConversation(GetConversationRequest, ServerCallContext)
public virtual Task<Conversation> GetConversation(GetConversationRequest request, ServerCallContext context)
Gets a Conversation.
Parameters | |
---|---|
Name | Description |
request | GetConversationRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskConversation | The response to send back to the client (wrapped by a task). |
ListConversations(ListConversationsRequest, ServerCallContext)
public virtual Task<ListConversationsResponse> ListConversations(ListConversationsRequest request, ServerCallContext context)
Lists all Conversations by their parent [DataStore][google.cloud.discoveryengine.v1beta.DataStore].
Parameters | |
---|---|
Name | Description |
request | ListConversationsRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskListConversationsResponse | The response to send back to the client (wrapped by a task). |
UpdateConversation(UpdateConversationRequest, ServerCallContext)
public virtual Task<Conversation> UpdateConversation(UpdateConversationRequest request, ServerCallContext context)
Updates a Conversation.
[Conversation][google.cloud.discoveryengine.v1beta.Conversation] action type cannot be changed. If the [Conversation][google.cloud.discoveryengine.v1beta.Conversation] to update does not exist, a NOT_FOUND error is returned.
Parameters | |
---|---|
Name | Description |
request | UpdateConversationRequest The request received from the client. |
context | ServerCallContext The context of the server-side call handler being invoked. |
Returns | |
---|---|
Type | Description |
TaskConversation | The response to send back to the client (wrapped by a task). |