Service for managing Intents.
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
IntentsClient(IntentsClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
IntentsClient const &
|
IntentsClient(IntentsClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
IntentsClient &&
|
IntentsClient(std::shared_ptr< IntentsConnection >, Options)
Parameters | |
---|---|
Name | Description |
connection |
std::shared_ptr< IntentsConnection >
|
opts |
Options
|
Operators
operator=(IntentsClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
IntentsClient const &
|
Returns | |
---|---|
Type | Description |
IntentsClient & |
operator=(IntentsClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
IntentsClient &&
|
Returns | |
---|---|
Type | Description |
IntentsClient & |
Functions
ListIntents(std::string const &, Options)
Returns the list of all intents in the specified agent.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The agent to list all intents from. Format: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::dialogflow::v2::Intent > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListIntents(std::string const &, std::string const &, Options)
Returns the list of all intents in the specified agent.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The agent to list all intents from. Format: |
language_code |
std::string const &
Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::cloud::dialogflow::v2::Intent > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListIntents(google::cloud::dialogflow::v2::ListIntentsRequest, Options)
Returns the list of all intents in the specified agent.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::dialogflow::v2::ListIntentsRequest
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::dialogflow::v2::Intent > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
GetIntent(std::string const &, Options)
Retrieves the specified intent.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The name of the intent. Format: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::dialogflow::v2::Intent > |
the result of the RPC. The response message type (google.cloud.dialogflow.v2.Intent) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetIntent(std::string const &, std::string const &, Options)
Retrieves the specified intent.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The name of the intent. Format: |
language_code |
std::string const &
Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::dialogflow::v2::Intent > |
the result of the RPC. The response message type (google.cloud.dialogflow.v2.Intent) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetIntent(google::cloud::dialogflow::v2::GetIntentRequest const &, Options)
Retrieves the specified intent.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::dialogflow::v2::GetIntentRequest 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::dialogflow::v2::Intent > |
the result of the RPC. The response message type (google.cloud.dialogflow.v2.Intent) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateIntent(std::string const &, google::cloud::dialogflow::v2::Intent const &, Options)
Creates an intent in the specified agent.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The agent to create a intent for. Format: |
intent |
google::cloud::dialogflow::v2::Intent const &
Required. The intent to create. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::dialogflow::v2::Intent > |
the result of the RPC. The response message type (google.cloud.dialogflow.v2.Intent) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateIntent(std::string const &, google::cloud::dialogflow::v2::Intent const &, std::string const &, Options)
Creates an intent in the specified agent.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The agent to create a intent for. Format: |
intent |
google::cloud::dialogflow::v2::Intent const &
Required. The intent to create. |
language_code |
std::string const &
Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::dialogflow::v2::Intent > |
the result of the RPC. The response message type (google.cloud.dialogflow.v2.Intent) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateIntent(google::cloud::dialogflow::v2::CreateIntentRequest const &, Options)
Creates an intent in the specified agent.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::dialogflow::v2::CreateIntentRequest 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::dialogflow::v2::Intent > |
the result of the RPC. The response message type (google.cloud.dialogflow.v2.Intent) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
UpdateIntent(google::cloud::dialogflow::v2::Intent const &, std::string const &, Options)
Updates the specified intent.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters | |
---|---|
Name | Description |
intent |
google::cloud::dialogflow::v2::Intent const &
Required. The intent to update. |
language_code |
std::string const &
Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::dialogflow::v2::Intent > |
the result of the RPC. The response message type (google.cloud.dialogflow.v2.Intent) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
UpdateIntent(google::cloud::dialogflow::v2::Intent const &, std::string const &, google::protobuf::FieldMask const &, Options)
Updates the specified intent.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters | |
---|---|
Name | Description |
intent |
google::cloud::dialogflow::v2::Intent const &
Required. The intent to update. |
language_code |
std::string const &
Optional. The language used to access language-specific data. If not specified, the agent's default language is used. For more information, see Multilingual intent and entity data. |
update_mask |
google::protobuf::FieldMask const &
Optional. The mask to control which fields get updated. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::cloud::dialogflow::v2::Intent > |
the result of the RPC. The response message type (google.cloud.dialogflow.v2.Intent) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
UpdateIntent(google::cloud::dialogflow::v2::UpdateIntentRequest const &, Options)
Updates the specified intent.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::dialogflow::v2::UpdateIntentRequest 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::dialogflow::v2::Intent > |
the result of the RPC. The response message type (google.cloud.dialogflow.v2.Intent) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
DeleteIntent(std::string const &, Options)
Deletes the specified intent and its direct or indirect followup intents.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. The name of the intent to delete. If this intent has direct or indirect followup intents, we also delete them. Format: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
DeleteIntent(google::cloud::dialogflow::v2::DeleteIntentRequest const &, Options)
Deletes the specified intent and its direct or indirect followup intents.
Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::dialogflow::v2::DeleteIntentRequest 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 |
BatchUpdateIntents(std::string const &, std::string const &, Options)
Updates/Creates multiple intents in the specified agent.
This method is a long-running operation. The returned Operation
type has the following method-specific fields:
metadata
: An empty Struct messageresponse
: BatchUpdateIntentsResponse
Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The name of the agent to update or create intents in. Format: |
intent_batch_uri |
std::string const &
The URI to a Google Cloud Storage file containing intents to update or create. The file format can either be a serialized proto (of IntentBatch type) or JSON object. Note: The URI must start with "gs://". |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::dialogflow::v2::BatchUpdateIntentsResponse > > |
A |
BatchUpdateIntents(std::string const &, google::cloud::dialogflow::v2::IntentBatch const &, Options)
Updates/Creates multiple intents in the specified agent.
This method is a long-running operation. The returned Operation
type has the following method-specific fields:
metadata
: An empty Struct messageresponse
: BatchUpdateIntentsResponse
Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The name of the agent to update or create intents in. Format: |
intent_batch_inline |
google::cloud::dialogflow::v2::IntentBatch const &
The collection of intents to update or create. |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::cloud::dialogflow::v2::BatchUpdateIntentsResponse > > |
A |
BatchUpdateIntents(google::cloud::dialogflow::v2::BatchUpdateIntentsRequest const &, Options)
Updates/Creates multiple intents in the specified agent.
This method is a long-running operation. The returned Operation
type has the following method-specific fields:
metadata
: An empty Struct messageresponse
: BatchUpdateIntentsResponse
Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::dialogflow::v2::BatchUpdateIntentsRequest 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 |
future< StatusOr< google::cloud::dialogflow::v2::BatchUpdateIntentsResponse > > |
A |
BatchDeleteIntents(std::string const &, std::vector< google::cloud::dialogflow::v2::Intent > const &, Options)
Deletes intents in the specified agent.
This method is a long-running operation. The returned Operation
type has the following method-specific fields:
metadata
: An empty Struct messageresponse
: An Empty message
Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. The name of the agent to delete all entities types for. Format: |
intents |
std::vector< google::cloud::dialogflow::v2::Intent > const &
Required. The collection of intents to delete. Only intent |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
future< StatusOr< google::protobuf::Struct > > |
A |
BatchDeleteIntents(google::cloud::dialogflow::v2::BatchDeleteIntentsRequest const &, Options)
Deletes intents in the specified agent.
This method is a long-running operation. The returned Operation
type has the following method-specific fields:
metadata
: An empty Struct messageresponse
: An Empty message
Note: You should always train an agent prior to sending it queries. See the training documentation.
Parameters | |
---|---|
Name | Description |
request |
google::cloud::dialogflow::v2::BatchDeleteIntentsRequest 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 |
future< StatusOr< google::protobuf::Struct > > |
A |