continuous_test_results
Creates, updates, deletes, gets or lists a continuous_test_results
resource.
Overview
Name | continuous_test_results |
Type | Resource |
Id | google.dialogflow.continuous_test_results |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The resource name for the continuous test result. Format: projects//locations//agents//environments//continuousTestResults/ . |
result | string | The result of this continuous test run, i.e. whether all the tests in this continuous test run pass or not. |
runTime | string | Time when the continuous testing run starts. |
testCaseResults | array | A list of individual test case results names in this continuous test run. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_agents_environments_continuous_test_results_list | SELECT | agentsId, environmentsId, locationsId, projectsId | Fetches a list of continuous test results for a given environment. |
SELECT
examples
Fetches a list of continuous test results for a given environment.
SELECT
name,
result,
runTime,
testCaseResults
FROM google.dialogflow.continuous_test_results
WHERE agentsId = '{{ agentsId }}'
AND environmentsId = '{{ environmentsId }}'
AND locationsId = '{{ locationsId }}'
AND projectsId = '{{ projectsId }}';