agents_validation_result
Creates, updates, deletes, gets or lists an agents_validation_result resource.
Overview
| Name | agents_validation_result |
| Type | Resource |
| Id | google.dialogflow.agents_validation_result |
Fields
The following fields are returned by SELECT queries:
- projects_locations_agents_get_validation_result
| Name | Datatype | Description |
|---|---|---|
name | string | The unique identifier of the agent validation result. Format: projects//locations//agents//validationResult. |
flowValidationResults | array | Contains all flow validation results. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
projects_locations_agents_get_validation_result | select | projectsId, locationsId, agentsId | languageCode | Gets the latest agent validation result. Agent validation is performed when ValidateAgent is called. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
agentsId | string | |
locationsId | string | |
projectsId | string | |
languageCode | string |
SELECT examples
- projects_locations_agents_get_validation_result
Gets the latest agent validation result. Agent validation is performed when ValidateAgent is called.
SELECT
name,
flowValidationResults
FROM google.dialogflow.agents_validation_result
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND agentsId = '{{ agentsId }}' -- required
AND languageCode = '{{ languageCode }}'
;