Method: evaluationRuns.list

Full name: projects.locations.evaluationRuns.list

Lists Evaluation Runs.

Endpoint

get https://aiplatform.googleapis.com/v1/{parent}/evaluationRuns

Path parameters

parent string

Required. The resource name of the Location from which to list the Evaluation Runs. Format: projects/{project}/locations/{location}

Query parameters

pageSize integer

Optional. The maximum number of Evaluation Runs to return.

pageToken string

Optional. A page token, received from a previous evaluationRuns.list call. Provide this to retrieve the subsequent page.

filter string

Optional. Filter expression that matches a subset of the EvaluationRuns to show. For field names both snake_case and camelCase are supported. For more information about filter syntax, see AIP-160.

orderBy string

Optional. A comma-separated list of fields to order by, sorted in ascending order by default. Use desc after a field name for descending.

Request body

The request body must be empty.

Response body

Response message for EvaluationManagementService.ListEvaluationRuns.

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

Fields
evaluationRuns[] object (EvaluationRun)

List of EvaluationRuns in the requested page.

nextPageToken string

A token to retrieve the next page of results.

JSON representation
{
  "evaluationRuns": [
    {
      object (EvaluationRun)
    }
  ],
  "nextPageToken": string
}