Skip to main content

flows_validation_result

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

Overview

Nameflows_validation_result
TypeResource
Idgoogle.dialogflow.flows_validation_result

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringThe unique identifier of the flow validation result. Format: projects//locations//agents//flows//validationResult.
updateTimestring (google-datetime)Last time the flow was validated.
validationMessagesarrayContains all validation messages.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_agents_flows_get_validation_resultselectprojectsId, locationsId, agentsId, flowsIdlanguageCodeGets the latest flow validation result. Flow validation is performed when ValidateFlow 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
flowsIdstring
locationsIdstring
projectsIdstring
languageCodestring

SELECT examples

Gets the latest flow validation result. Flow validation is performed when ValidateFlow is called.

SELECT
name,
updateTime,
validationMessages
FROM google.dialogflow.flows_validation_result
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND agentsId = '{{ agentsId }}' -- required
AND flowsId = '{{ flowsId }}' -- required
AND languageCode = '{{ languageCode }}';