Method: projects.locations.apps.evaluations.results.list

Lists all evaluation results for a given evaluation.

HTTP request

GET https://ces.googleapis.com/v1beta/{parent=projects/*/locations/*/apps/*/evaluations/*}/results

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The resource name of the evaluation to list evaluation results from. To filter by evaluation run, use - as the evaluation ID and specify the evaluation run ID in the filter. For example: projects/{project}/locations/{location}/apps/{app}/evaluations/-

Query parameters

Parameters
pageSize

integer

Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default.

pageToken

string

Optional. The nextPageToken value returned from a previous list EvaluationService.ListEvaluationResults call.

filter

string

Optional. Filter to be applied when listing the evaluation results. See https://google.aip.dev/160 for more details.

orderBy

string

Optional. Field to sort by. Only "name" and "createTime", and "updateTime" are supported. Time fields are ordered in descending order, and the name field is ordered in ascending order. If not included, "updateTime" will be the default. See https://google.aip.dev/132#ordering for more details.

Request body

The request body must be empty.

Response body

Response message for EvaluationService.ListEvaluationResults.

If successful, the response body contains data with the following structure:

JSON representation
{
  "evaluationResults": [
    {
      object (EvaluationResult)
    }
  ],
  "nextPageToken": string
}
Fields
evaluationResults[]

object (EvaluationResult)

The list of evaluation results.

nextPageToken

string

A token that can be sent as ListEvaluationResultsRequest.page_token to retrieve the next page. Absence of this field indicates there are no subsequent pages.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

IAM Permissions

Requires the following IAM permission on the parent resource:

  • ces.evaluationResults.list

For more information, see the IAM documentation.