Show / Hide Table of Contents

Class JobsResource.ListRequest

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.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<JobList>
BigqueryBaseServiceRequest<JobList>
JobsResource.ListRequest
Implements
IClientServiceRequest<JobList>
IClientServiceRequest
Inherited Members
BigqueryBaseServiceRequest<JobList>.Alt
BigqueryBaseServiceRequest<JobList>.Fields
BigqueryBaseServiceRequest<JobList>.Key
BigqueryBaseServiceRequest<JobList>.OauthToken
BigqueryBaseServiceRequest<JobList>.PrettyPrint
BigqueryBaseServiceRequest<JobList>.QuotaUser
BigqueryBaseServiceRequest<JobList>.UserIp
ClientServiceRequest<JobList>.Execute()
ClientServiceRequest<JobList>.ExecuteAsStream()
ClientServiceRequest<JobList>.ExecuteAsync()
ClientServiceRequest<JobList>.ExecuteAsync(CancellationToken)
ClientServiceRequest<JobList>.ExecuteAsStreamAsync()
ClientServiceRequest<JobList>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<JobList>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<JobList>.GenerateRequestUri()
ClientServiceRequest<JobList>.GetBody()
ClientServiceRequest<JobList>.GetDefaultETagAction(String)
ClientServiceRequest<JobList>.ETagAction
ClientServiceRequest<JobList>.ModifyRequest
ClientServiceRequest<JobList>.ValidateParameters
ClientServiceRequest<JobList>.RequestParameters
ClientServiceRequest<JobList>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Bigquery.v2
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class ListRequest : BigqueryBaseServiceRequest<JobList>, IClientServiceRequest<JobList>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string projectId)
Parameters
Type Name Description
IClientService service
System.String projectId

Properties

AllUsers

Whether to display jobs owned by all users in the project. Default false

Declaration
[RequestParameter("allUsers", RequestParameterType.Query)]
public virtual bool? AllUsers { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.JobList>.HttpMethod

MaxCreationTime

Max value for job creation time, in milliseconds since the POSIX epoch. If set, only jobs created before or at this timestamp are returned

Declaration
[RequestParameter("maxCreationTime", RequestParameterType.Query)]
public virtual ulong? MaxCreationTime { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

MaxResults

Maximum number of results to return

Declaration
[RequestParameter("maxResults", RequestParameterType.Query)]
public virtual long? MaxResults { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.JobList>.MethodName

MinCreationTime

Min value for job creation time, in milliseconds since the POSIX epoch. If set, only jobs created after or at this timestamp are returned

Declaration
[RequestParameter("minCreationTime", RequestParameterType.Query)]
public virtual ulong? MinCreationTime { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

PageToken

Page token, returned by a previous call, to request the next page of results

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

ParentJobId

If set, retrieves only jobs whose parent is this job. Otherwise, retrieves only jobs which have no parent

Declaration
[RequestParameter("parentJobId", RequestParameterType.Query)]
public virtual string ParentJobId { get; set; }
Property Value
Type Description
System.String

ProjectId

Project ID of the jobs to list

Declaration
[RequestParameter("projectId", RequestParameterType.Path)]
public virtual string ProjectId { get; }
Property Value
Type Description
System.String

Projection

Restrict information returned to a set of selected fields

Declaration
[RequestParameter("projection", RequestParameterType.Query)]
public virtual JobsResource.ListRequest.ProjectionEnum? Projection { get; set; }
Property Value
Type Description
System.Nullable<JobsResource.ListRequest.ProjectionEnum>

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Bigquery.v2.Data.JobList>.RestPath

StateFilter

Filter for job state

Declaration
[RequestParameter("stateFilter", RequestParameterType.Query)]
public virtual JobsResource.ListRequest.StateFilterEnum? StateFilter { get; set; }
Property Value
Type Description
System.Nullable<JobsResource.ListRequest.StateFilterEnum>

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Bigquery.v2.BigqueryBaseServiceRequest<Google.Apis.Bigquery.v2.Data.JobList>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top