Skip to main content

agents_validation_result

Creates, updates, deletes, gets or lists a agents_validation_result resource.

Overview

Nameagents_validation_result
TypeResource
Idgoogle.dialogflow.agents_validation_result

Fields

NameDatatypeDescription
namestringThe unique identifier of the agent validation result. Format: projects//locations//agents//validationResult.
flowValidationResultsarrayContains all flow validation results.

Methods

NameAccessible byRequired ParamsDescription
projects_locations_agents_get_validation_resultSELECTagentsId, locationsId, projectsIdGets 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 }}';