results
Creates, updates, deletes, gets or lists a results resource.
Overview
| Name | results |
| Type | Resource |
| Id | google.dialogflow.results |
Fields
The following fields are returned by SELECT queries:
- projects_locations_agents_test_cases_results_get
- projects_locations_agents_test_cases_results_list
| Name | Datatype | Description |
|---|---|---|
name | string | |
conversationTurns | array | |
environment | string | |
testResult | string | (TEST_RESULT_UNSPECIFIED, PASSED, FAILED) |
testTime | string (google-datetime) |
| Name | Datatype | Description |
|---|---|---|
name | string | |
conversationTurns | array | |
environment | string | |
testResult | string | (TEST_RESULT_UNSPECIFIED, PASSED, FAILED) |
testTime | string (google-datetime) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
projects_locations_agents_test_cases_results_get | select | projectsId, locationsId, agentsId, testCasesId, resultsId | ||
projects_locations_agents_test_cases_results_list | select | projectsId, locationsId, agentsId, testCasesId | pageSize, filter, 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.
| Name | Datatype | Description |
|---|---|---|
agentsId | string | |
locationsId | string | |
projectsId | string | |
resultsId | string | |
testCasesId | string | |
filter | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT examples
- projects_locations_agents_test_cases_results_get
- projects_locations_agents_test_cases_results_list
Successful response
SELECT
name,
conversationTurns,
environment,
testResult,
testTime
FROM google.dialogflow.results
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND agentsId = '{{ agentsId }}' -- required
AND testCasesId = '{{ testCasesId }}' -- required
AND resultsId = '{{ resultsId }}' -- required
;
Successful response
SELECT
name,
conversationTurns,
environment,
testResult,
testTime
FROM google.dialogflow.results
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND agentsId = '{{ agentsId }}' -- required
AND testCasesId = '{{ testCasesId }}' -- required
AND pageSize = '{{ pageSize }}'
AND filter = '{{ filter }}'
AND pageToken = '{{ pageToken }}'
;