Skip to main content

continuous_test_results

Creates, updates, deletes, gets or lists a continuous_test_results resource.

Overview

Namecontinuous_test_results
TypeResource
Idgoogle.dialogflow.continuous_test_results

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringThe resource name for the continuous test result. Format: projects//locations//agents//environments//continuousTestResults/.
resultstringThe result of this continuous test run, i.e. whether all the tests in this continuous test run pass or not.
runTimestring (google-datetime)Time when the continuous testing run starts.
testCaseResultsarrayA list of individual test case results names in this continuous test run.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_agents_environments_continuous_test_results_listselectprojectsId, locationsId, agentsId, environmentsIdpageSize, pageTokenFetches 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.

NameDatatypeDescription
agentsIdstring
environmentsIdstring
locationsIdstring
projectsIdstring
pageSizeinteger (int32)
pageTokenstring

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 projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND agentsId = '{{ agentsId }}' -- required
AND environmentsId = '{{ environmentsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';