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:

NameDatatypeDescription
namestring
updateTimestring (google-datetime)
validationMessagesarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_agents_flows_get_validation_resultselectprojectsId, locationsId, agentsId, flowsIdlanguageCode

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

Successful response

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 }}'
;