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:

NameDatatypeDescription
namestring
resultstring (AGGREGATED_TEST_RESULT_UNSPECIFIED, PASSED, FAILED)
runTimestring (google-datetime)
testCaseResultsarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_agents_environments_continuous_test_results_listselectprojectsId, locationsId, agentsId, environmentsIdpageSize, pageToken

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

Successful response

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