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:

NameDatatypeDescription
namestring
flowValidationResultsarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_agents_get_validation_resultselectprojectsId, locationsId, agentsIdlanguageCode

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

Successful response

SELECT
name,
flowValidationResults
FROM google.dialogflow.agents_validation_result
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND agentsId = '{{ agentsId }}' -- required
AND languageCode = '{{ languageCode }}'
;