Skip to main content

agents_validation_result

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

Overview

Nameagents_validation_result
TypeResource
Idgoogle.dialogflow.agents_validation_result

Fields

The following fields are returned by SELECT queries:

Successful response

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_agents_get_validation_resultselectprojectsId, locationsId, agentsIdlanguageCodeGets 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.

NameDatatypeDescription
agentsIdstring
locationsIdstring
projectsIdstring
languageCodestring

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 projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND agentsId = '{{ agentsId }}' -- required
AND languageCode = '{{ languageCode }}';