Method: projects.locations.processes.runs.lineageEvents.list

Lists lineage events in the given project and location. The list order is not defined.

HTTP request

GET https://datalineage.googleapis.com/v1/{parent}/lineageEvents

Path parameters

Parameters
parent

string

Required. The name of the run that owns the collection of lineage events to get. It takes the form projects/{project}/locations/{location}/processes/{processes}/runs/{run}.

Query parameters

Parameters
pageSize

integer

The maximum number of lineage events to return.

The service may return fewer events than this value. If unspecified, at most 50 events are returned. The maximum value is 100; values greater than 100 are cut to 100.

pageToken

string

The page token received from a previous lineageEvents.list call. Specify it to get the next page.

When paginating, all other parameters specified in this call must match the parameters of the call that provided the page token.

Request body

The request body must be empty.

Response body

Response message for lineageEvents.list.

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

JSON representation
{
  "lineageEvents": [
    {
      object (LineageEvent)
    }
  ],
  "nextPageToken": string
}
Fields
lineageEvents[]

object (LineageEvent)

Lineage events from the specified project and location.

nextPageToken

string

The token to specify as pageToken in the next call to get the next page. If this field is omitted, 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:

  • datalineage.events.list

For more information, see the IAM documentation.