Method: projects.locations.apps.scheduledEvaluationRuns.list

Lists all scheduled evaluation runs in the given app.

HTTP request

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

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
parent

string

Required. The resource name of the app to list scheduled evaluation runs from.

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.ListScheduledEvaluationRuns call.

filter

string

Optional. Filter to be applied when listing the scheduled evaluation runs. See https://google.aip.dev/160 for more details. Currently supports filtering by: * request.evaluations:evaluationId * request.evaluation_dataset:evaluationDatasetId

orderBy

string

Optional. Field to sort by. Supported fields are: "name" (ascending), "createTime" (descending), "updateTime" (descending), "next_scheduled_execution" (ascending), and "lastCompletedRun.create_time" (descending). 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.ListScheduledEvaluationRuns.

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

JSON representation
{
  "scheduledEvaluationRuns": [
    {
      object (ScheduledEvaluationRun)
    }
  ],
  "nextPageToken": string
}
Fields
scheduledEvaluationRuns[]

object (ScheduledEvaluationRun)

The list of scheduled evaluation runs.

nextPageToken

string

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

Authorization scopes

Requires one of the following OAuth scopes:

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

For more information, see the Authentication Overview.