Lists all jobs that you started in the specified project. Job information is available for a six month period after creation. The job list is sorted in reverse chronological order, by job creation time. Requires the Can View project role, or the Is Owner project role if you set the allUsers property.
Arguments
projectId
string
Required. Project ID of the jobs to list
allUsers
boolean
Whether to display jobs owned by all users in the project. Default false
maxCreationTime
string ( uint64
format)
Max value for job creation time, in milliseconds since the POSIX epoch. If set, only jobs created before or at this timestamp are returned
maxResults
integer ( uint32
format)
Maximum number of results to return
minCreationTime
string ( uint64
format)
Min value for job creation time, in milliseconds since the POSIX epoch. If set, only jobs created after or at this timestamp are returned
pageToken
string
Page token, returned by a previous call, to request the next page of results
parentJobId
string
If set, retrieves only jobs whose parent is this job. Otherwise, retrieves only jobs which have no parent
projection
enum
Restrict information returned to a set of selected fields
full
minimal
stateFilter
enum
Filter for job state
done
pending
running
Raised exceptions
ConnectionError
HttpError
TimeoutError
TypeError
ValueError
Response
If successful, the response contains an instance of JobList
.
Subworkflow snippet
Some fields might be optional or required. To identify required fields, refer to the API documentation .
YAML
- list : call : googleapis.bigquery.v2.jobs.list args : projectId : ... allUsers : ... maxCreationTime : ... maxResults : ... minCreationTime : ... pageToken : ... parentJobId : ... projection : ... stateFilter : ... result : listResult
JSON
[ { "list" : { "call" : "googleapis.bigquery.v2.jobs.list" , "args" : { "projectId" : "..." , "allUsers" : "..." , "maxCreationTime" : "..." , "maxResults" : "..." , "minCreationTime" : "..." , "pageToken" : "..." , "parentJobId" : "..." , "projection" : "..." , "stateFilter" : "..." }, "result" : "listResult" } } ]

