A Service that manage/custom customer specified SynonymSets.
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
SynonymSetServiceClient(SynonymSetServiceClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
SynonymSetServiceClient const &
|
SynonymSetServiceClient(SynonymSetServiceClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
SynonymSetServiceClient &&
|
SynonymSetServiceClient(std::shared_ptr< SynonymSetServiceConnection >, Options)
Parameters | |
---|---|
Name | Description |
connection |
std::shared_ptr< SynonymSetServiceConnection >
|
opts |
Options
|
Operators
operator=(SynonymSetServiceClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
SynonymSetServiceClient const &
|
Returns | |
---|---|
Type | Description |
SynonymSetServiceClient & |
operator=(SynonymSetServiceClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
SynonymSetServiceClient &&
|
Returns | |
---|---|
Type | Description |
SynonymSetServiceClient & |
Functions
CreateSynonymSet(std::string const &, google::cloud::contentwarehouse::v1::SynonymSet const &, Options)
Creates a SynonymSet for a single context.
Throws an ALREADY_EXISTS exception if a synonymset already exists for the context.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The parent name. Format: projects/{project_number}/locations/{location}. |
synonym_set |
google::cloud::contentwarehouse::v1::SynonymSet const &
Required. The synonymSet to be created for a context |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::contentwarehouse::v1::SynonymSet > |
the result of the RPC. The response message type (google.cloud.contentwarehouse.v1.SynonymSet) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateSynonymSet(google::cloud::contentwarehouse::v1::CreateSynonymSetRequest const &, Options)
Creates a SynonymSet for a single context.
Throws an ALREADY_EXISTS exception if a synonymset already exists for the context.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::contentwarehouse::v1::CreateSynonymSetRequest 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::contentwarehouse::v1::SynonymSet > |
the result of the RPC. The response message type (google.cloud.contentwarehouse.v1.SynonymSet) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetSynonymSet(std::string const &, Options)
Gets a SynonymSet for a particular context.
Throws a NOT_FOUND exception if the Synonymset does not exist
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The name of the synonymSet to retrieve Format: projects/{project_number}/locations/{location}/synonymSets/{context}. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::contentwarehouse::v1::SynonymSet > |
the result of the RPC. The response message type (google.cloud.contentwarehouse.v1.SynonymSet) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetSynonymSet(google::cloud::contentwarehouse::v1::GetSynonymSetRequest const &, Options)
Gets a SynonymSet for a particular context.
Throws a NOT_FOUND exception if the Synonymset does not exist
Parameters | |
---|---|
Name | Description |
request |
google::cloud::contentwarehouse::v1::GetSynonymSetRequest 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::contentwarehouse::v1::SynonymSet > |
the result of the RPC. The response message type (google.cloud.contentwarehouse.v1.SynonymSet) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
UpdateSynonymSet(std::string const &, google::cloud::contentwarehouse::v1::SynonymSet const &, Options)
Remove the existing SynonymSet for the context and replaces it with a new one.
Throws a NOT_FOUND exception if the SynonymSet is not found.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The name of the synonymSet to update Format: projects/{project_number}/locations/{location}/synonymSets/{context}. |
synonym_set |
google::cloud::contentwarehouse::v1::SynonymSet const &
Required. The synonymSet to be updated for the customer |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::contentwarehouse::v1::SynonymSet > |
the result of the RPC. The response message type (google.cloud.contentwarehouse.v1.SynonymSet) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
UpdateSynonymSet(google::cloud::contentwarehouse::v1::UpdateSynonymSetRequest const &, Options)
Remove the existing SynonymSet for the context and replaces it with a new one.
Throws a NOT_FOUND exception if the SynonymSet is not found.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::contentwarehouse::v1::UpdateSynonymSetRequest 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::contentwarehouse::v1::SynonymSet > |
the result of the RPC. The response message type (google.cloud.contentwarehouse.v1.SynonymSet) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
DeleteSynonymSet(std::string const &, Options)
Deletes a SynonymSet for a given context.
Throws a NOT_FOUND exception if the SynonymSet is not found.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The name of the synonymSet to delete Format: projects/{project_number}/locations/{location}/synonymSets/{context}. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
DeleteSynonymSet(google::cloud::contentwarehouse::v1::DeleteSynonymSetRequest const &, Options)
Deletes a SynonymSet for a given context.
Throws a NOT_FOUND exception if the SynonymSet is not found.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::contentwarehouse::v1::DeleteSynonymSetRequest 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 |
ListSynonymSets(std::string const &, Options)
Returns all SynonymSets (for all contexts) for the specified location.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The parent name. Format: projects/{project_number}/locations/{location}. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::contentwarehouse::v1::SynonymSet > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListSynonymSets(google::cloud::contentwarehouse::v1::ListSynonymSetsRequest, Options)
Returns all SynonymSets (for all contexts) for the specified location.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::contentwarehouse::v1::ListSynonymSetsRequest
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::contentwarehouse::v1::SynonymSet > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |