flows_validation_result
Creates, updates, deletes, gets or lists a flows_validation_result resource.
Overview
| Name | flows_validation_result |
| Type | Resource |
| Id | google.dialogflow.flows_validation_result |
Fields
The following fields are returned by SELECT queries:
- projects_locations_agents_flows_get_validation_result
| Name | Datatype | Description |
|---|---|---|
name | string | The unique identifier of the flow validation result. Format: projects//locations//agents//flows//validationResult. |
updateTime | string (google-datetime) | Last time the flow was validated. |
validationMessages | array | Contains all validation messages. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
projects_locations_agents_flows_get_validation_result | select | projectsId, locationsId, agentsId, flowsId | languageCode | Gets 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.
| Name | Datatype | Description |
|---|---|---|
agentsId | string | |
flowsId | string | |
locationsId | string | |
projectsId | string | |
languageCode | string |
SELECT examples
- projects_locations_agents_flows_get_validation_result
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 }}'
;