agents_validation_result
Creates, updates, deletes, gets or lists a agents_validation_result
resource.
Overview
Name | agents_validation_result |
Type | Resource |
Id | google.dialogflow.agents_validation_result |
Fields
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_agents_get_validation_result | SELECT | agentsId, locationsId, projectsId | Gets the latest agent validation result. Agent validation is performed when ValidateAgent is called. |
SELECT
examples
Gets the latest agent validation result. Agent validation is performed when ValidateAgent is called.
SELECT
name,
flowValidationResults
FROM google.dialogflow.agents_validation_result
WHERE agentsId = '{{ agentsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';