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
The following fields are returned by SELECT
queries:
- projects_locations_agents_environments_continuous_test_results_list
Successful response
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 (google-datetime) | Time when the continuous testing run starts. |
testCaseResults | array | A list of individual test case results names in this continuous test run. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
projects_locations_agents_environments_continuous_test_results_list | select | projectsId , locationsId , agentsId , environmentsId | pageSize , pageToken | Fetches a list of continuous test results for a given environment. |
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 | |
environmentsId | string | |
locationsId | string | |
projectsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- projects_locations_agents_environments_continuous_test_results_list
Fetches a list of continuous test results for a given environment.
SELECT
name,
result,
runTime,
testCaseResults
FROM google.dialogflow.continuous_test_results
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND agentsId = '{{ agentsId }}' -- required
AND environmentsId = '{{ environmentsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';