Show / Hide Table of Contents

Class JobList.JobsData

List of jobs that were requested.

Inheritance
System.Object
JobList.JobsData
Inherited Members
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.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class JobsData

Properties

Configuration

[Full-projection-only] Specifies the job configuration.

Declaration
[JsonProperty("configuration")]
public virtual JobConfiguration Configuration { get; set; }
Property Value
Type Description
JobConfiguration

ErrorResult

A result object that will be present only if the job has failed.

Declaration
[JsonProperty("errorResult")]
public virtual ErrorProto ErrorResult { get; set; }
Property Value
Type Description
ErrorProto

Id

Unique opaque ID of the job.

Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type Description
System.String

JobReference

Job reference uniquely identifying the job.

Declaration
[JsonProperty("jobReference")]
public virtual JobReference JobReference { get; set; }
Property Value
Type Description
JobReference

Kind

The resource type.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

State

Running state of the job. When the state is DONE, errorResult can be checked to determine whether the job succeeded or failed.

Declaration
[JsonProperty("state")]
public virtual string State { get; set; }
Property Value
Type Description
System.String

Statistics

[Output-only] Information about the job, including starting time and ending time of the job.

Declaration
[JsonProperty("statistics")]
public virtual JobStatistics Statistics { get; set; }
Property Value
Type Description
JobStatistics

Status

[Full-projection-only] Describes the state of the job.

Declaration
[JsonProperty("status")]
public virtual JobStatus Status { get; set; }
Property Value
Type Description
JobStatus

UserEmail

[Full-projection-only] Email address of the user who ran the job.

Declaration
[JsonProperty("user_email")]
public virtual string UserEmail { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top