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

NameDatatypeDescription
namestringThe unique identifier of the flow validation result. Format: projects//locations//agents//flows//validationResult.
updateTimestringLast time the flow was validated.
validationMessagesarrayContains all validation messages.

Methods

NameAccessible byRequired ParamsDescription
projects_locations_agents_flows_get_validation_resultSELECTagentsId, flowsId, locationsId, projectsIdGets the latest flow validation result. Flow validation is performed when ValidateFlow is called.

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