Service for conversational search.
Equality
Instances of this class created via copy-construction or copy-assignment always compare equal. Instances created with equal std::shared_ptr<*Connection>
objects compare equal. Objects that compare equal share the same underlying resources.
Performance
Creating a new instance of this class is a relatively expensive operation, new objects establish new connections to the service. In contrast, copy-construction, move-construction, and the corresponding assignment operations are relatively efficient as the copies share all underlying resources.
Thread Safety
Concurrent access to different instances of this class, even if they compare equal, is guaranteed to work. Two or more threads operating on the same instance of this class is not guaranteed to work. Since copy-construction and move-construction is a relatively efficient operation, consider using such a copy when using this class from multiple threads.
Constructors
ConversationalSearchServiceClient(ConversationalSearchServiceClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
ConversationalSearchServiceClient const &
|
ConversationalSearchServiceClient(ConversationalSearchServiceClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
ConversationalSearchServiceClient &&
|
ConversationalSearchServiceClient(std::shared_ptr< ConversationalSearchServiceConnection >, Options)
Parameters | |
---|---|
Name | Description |
connection |
std::shared_ptr< ConversationalSearchServiceConnection >
|
opts |
Options
|
Operators
operator=(ConversationalSearchServiceClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
ConversationalSearchServiceClient const &
|
Returns | |
---|---|
Type | Description |
ConversationalSearchServiceClient & |
operator=(ConversationalSearchServiceClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
ConversationalSearchServiceClient &&
|
Returns | |
---|---|
Type | Description |
ConversationalSearchServiceClient & |
Functions
ConverseConversation(std::string const &, google::cloud::discoveryengine::v1::TextInput const &, Options)
Converses a conversation.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the Conversation to get. Format: |
query |
google::cloud::discoveryengine::v1::TextInput const &
Required. Current user input. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::ConverseConversationResponse > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.ConverseConversationResponse) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ConverseConversation(google::cloud::discoveryengine::v1::ConverseConversationRequest const &, Options)
Converses a conversation.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::discoveryengine::v1::ConverseConversationRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::ConverseConversationResponse > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.ConverseConversationResponse) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateConversation(std::string const &, google::cloud::discoveryengine::v1::Conversation const &, Options)
Creates a Conversation.
If the Conversation to create already exists, an ALREADY_EXISTS error is returned.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. Full resource name of parent data store. Format: |
conversation |
google::cloud::discoveryengine::v1::Conversation const &
Required. The conversation to create. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Conversation > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Conversation) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateConversation(google::cloud::discoveryengine::v1::CreateConversationRequest const &, Options)
Creates a Conversation.
If the Conversation to create already exists, an ALREADY_EXISTS error is returned.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::discoveryengine::v1::CreateConversationRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Conversation > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Conversation) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
DeleteConversation(std::string const &, Options)
Deletes a Conversation.
If the Conversation to delete does not exist, a NOT_FOUND error is returned.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the Conversation to delete. Format: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
DeleteConversation(google::cloud::discoveryengine::v1::DeleteConversationRequest const &, Options)
Deletes a Conversation.
If the Conversation to delete does not exist, a NOT_FOUND error is returned.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::discoveryengine::v1::DeleteConversationRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
UpdateConversation(google::cloud::discoveryengine::v1::Conversation const &, google::protobuf::FieldMask const &, Options)
Updates a Conversation.
Conversation action type cannot be changed. If the Conversation to update does not exist, a NOT_FOUND error is returned.
Parameters | |
---|---|
Name | Description |
conversation |
google::cloud::discoveryengine::v1::Conversation const &
Required. The Conversation to update. |
update_mask |
google::protobuf::FieldMask const &
Indicates which fields in the provided Conversation to update. The following are NOT supported:
|
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Conversation > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Conversation) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
UpdateConversation(google::cloud::discoveryengine::v1::UpdateConversationRequest const &, Options)
Updates a Conversation.
Conversation action type cannot be changed. If the Conversation to update does not exist, a NOT_FOUND error is returned.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::discoveryengine::v1::UpdateConversationRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Conversation > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Conversation) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetConversation(std::string const &, Options)
Gets a Conversation.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the Conversation to get. Format: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Conversation > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Conversation) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetConversation(google::cloud::discoveryengine::v1::GetConversationRequest const &, Options)
Gets a Conversation.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::discoveryengine::v1::GetConversationRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Conversation > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Conversation) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ListConversations(std::string const &, Options)
Lists all Conversations by their parent [DataStore][google.cloud.discoveryengine.v1.DataStore].
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The data store resource name. Format: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::discoveryengine::v1::Conversation > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListConversations(google::cloud::discoveryengine::v1::ListConversationsRequest, Options)
Lists all Conversations by their parent [DataStore][google.cloud.discoveryengine.v1.DataStore].
Parameters | |
---|---|
Name | Description |
request |
google::cloud::discoveryengine::v1::ListConversationsRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::discoveryengine::v1::Conversation > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
AnswerQuery(google::cloud::discoveryengine::v1::AnswerQueryRequest const &, Options)
Answer query method.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::discoveryengine::v1::AnswerQueryRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::AnswerQueryResponse > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.AnswerQueryResponse) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetAnswer(std::string const &, Options)
Gets a Answer.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the Answer to get. Format: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Answer > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Answer) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetAnswer(google::cloud::discoveryengine::v1::GetAnswerRequest const &, Options)
Gets a Answer.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::discoveryengine::v1::GetAnswerRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Answer > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Answer) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateSession(std::string const &, google::cloud::discoveryengine::v1::Session const &, Options)
Creates a Session.
If the Session to create already exists, an ALREADY_EXISTS error is returned.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. Full resource name of parent data store. Format: |
session |
google::cloud::discoveryengine::v1::Session const &
Required. The session to create. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Session > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Session) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateSession(google::cloud::discoveryengine::v1::CreateSessionRequest const &, Options)
Creates a Session.
If the Session to create already exists, an ALREADY_EXISTS error is returned.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::discoveryengine::v1::CreateSessionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Session > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Session) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
DeleteSession(std::string const &, Options)
Deletes a Session.
If the Session to delete does not exist, a NOT_FOUND error is returned.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the Session to delete. Format: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
DeleteSession(google::cloud::discoveryengine::v1::DeleteSessionRequest const &, Options)
Deletes a Session.
If the Session to delete does not exist, a NOT_FOUND error is returned.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::discoveryengine::v1::DeleteSessionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
UpdateSession(google::cloud::discoveryengine::v1::Session const &, google::protobuf::FieldMask const &, Options)
Updates a Session.
Session action type cannot be changed. If the Session to update does not exist, a NOT_FOUND error is returned.
Parameters | |
---|---|
Name | Description |
session |
google::cloud::discoveryengine::v1::Session const &
Required. The Session to update. |
update_mask |
google::protobuf::FieldMask const &
Indicates which fields in the provided Session to update. The following are NOT supported:
|
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Session > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Session) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
UpdateSession(google::cloud::discoveryengine::v1::UpdateSessionRequest const &, Options)
Updates a Session.
Session action type cannot be changed. If the Session to update does not exist, a NOT_FOUND error is returned.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::discoveryengine::v1::UpdateSessionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Session > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Session) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetSession(std::string const &, Options)
Gets a Session.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The resource name of the Session to get. Format: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Session > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Session) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetSession(google::cloud::discoveryengine::v1::GetSessionRequest const &, Options)
Gets a Session.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::discoveryengine::v1::GetSessionRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::discoveryengine::v1::Session > |
the result of the RPC. The response message type (google.cloud.discoveryengine.v1.Session) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ListSessions(std::string const &, Options)
Lists all Sessions by their parent [DataStore][google.cloud.discoveryengine.v1.DataStore].
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The data store resource name. Format: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::discoveryengine::v1::Session > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListSessions(google::cloud::discoveryengine::v1::ListSessionsRequest, Options)
Lists all Sessions by their parent [DataStore][google.cloud.discoveryengine.v1.DataStore].
Parameters | |
---|---|
Name | Description |
request |
google::cloud::discoveryengine::v1::ListSessionsRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::discoveryengine::v1::Session > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |