Method: projects.histories.executions.steps.list

Lists Steps for a given Execution.

The steps are sorted by creationTime in descending order. The stepId key will be used to order the steps with the same creationTime.

May return any of the following canonical error codes:

  • PERMISSION_DENIED - if the user is not authorized to read project
  • INVALID_ARGUMENT - if the request is malformed
  • FAILED_PRECONDITION - if an argument in the request happens to be invalid; e.g. if an attempt is made to list the children of a nonexistent Step
  • NOT_FOUND - if the containing Execution does not exist

HTTP request

GET https://toolresults.googleapis.com/toolresults/v1beta3/projects/{projectId}/histories/{historyId}/executions/{executionId}/steps

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
projectId

string

A Project id.

Required.

historyId

string

A History id.

Required.

executionId

string

A Execution id.

Required.

Query parameters

Parameters
pageToken

string

A continuation token to resume the query at the next item.

Optional.

pageSize

integer

The maximum number of Steps to fetch.

Default value: 25. The server will use this default if the field is not set or has a value of 0.

Optional.

Request body

The request body must be empty.

Response body

Response message for StepService.List.

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

JSON representation
{
  "steps": [
    {
      object (Step)
    }
  ],
  "nextPageToken": string
}
Fields
steps[]

object (Step)

Steps.

nextPageToken

string

A continuation token to resume the query at the next item.

If set, indicates that there are more steps to read, by calling list again with this value in the pageToken field.

Authorization scopes

Requires the following OAuth scope:

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

For more information, see the Authentication Overview.