ListTasksLog

Details on the ListTasks request and response.

Note: If more than 500 tasks were returned in the query, only the first 500 tasks will be logged.

Note: This log is subject to splitting on the response.tasks field if the total log size exceeds 256 KB. See Split Logs / for more details.

JSON representation
{
  "header": {
    object (DeliveryRequestHeaderLog)
  },
  "request": {
    object (ListTasksRequestLog)
  },
  "response": {
    object (ListTasksResponseLog)
  },
  "errorResponse": {
    object (ErrorResponseLog)
  }
}
Fields
header

object (DeliveryRequestHeaderLog)

Request header.

request

object (ListTasksRequestLog)

The request sent to the Deliveries API.

response

object (ListTasksResponseLog)

The response returned to the client. It will be unset if the RPC call resulted in an error.

errorResponse

object (ErrorResponseLog)

The error response returned to the client. It will be unset if the RPC call succeeded.

ListTasksRequestLog

Details on the ListTasks request.

JSON representation
{
  "pageSize": integer,
  "pageToken": string,
  "filter": string
}
Fields
pageSize

integer

The maximum number of Tasks to return. The service may return fewer than this value. If unspecified, the server decides the number of results to return.

pageToken

string

A page token, received from a previous ListTasks call.

filter

string

A filter query to apply when listing tasks. If no value is specified or filter is an empty string, all tasks are returned.

ListTasksResponseLog

Details on the ListTasks response.

JSON representation
{
  "tasks": [
    {
      object (TaskLog)
    }
  ]
}
Fields
tasks[]

object (TaskLog)

The tasks matching the filter query specified in the request, or all tasks if no filter query was specified.