Method: projects.locations.executions.list

Lists executions in a given project and location

HTTP request

GET https://notebooks.googleapis.com/v1/{parent}/executions

Path parameters

Parameters
parent

string

Required. Format: parent=projects/{projectId}/locations/{location}

Authorization requires the following IAM permission on the specified resource parent:

  • notebooks.executions.list

Query parameters

Parameters
pageSize

integer

Maximum return size of the list call.

pageToken

string

A previous returned page token that can be used to continue listing from the last result.

filter

string

Filter applied to resulting executions. Currently only supports filtering executions by a specified scheduleId. Format: scheduleId=<Schedule_ID>

orderBy

string

Sort by field.

Request body

The request body must be empty.

Response body

Response for listing scheduled notebook executions

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

JSON representation
{
  "executions": [
    {
      object (Execution)
    }
  ],
  "nextPageToken": string,
  "unreachable": [
    string
  ]
}
Fields
executions[]

object (Execution)

A list of returned instances.

nextPageToken

string

Page token that can be used to continue listing from the last result in the next list call.

unreachable[]

string

Executions IDs that could not be reached. For example:

['projects/{projectId}/location/{location}/executions/imagenet_test1',
 'projects/{projectId}/location/{location}/executions/classifier_train1']

Authorization scopes

Requires the following OAuth scope:

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

For more information, see the Authentication Overview.