Show / Hide Table of Contents

Class Job

Inheritance
System.Object
Job
Implements
Google.Apis.Requests.IDirectResponseSchema
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 Job : IDirectResponseSchema

Properties

Configuration

[Required] Describes the job configuration.

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

ETag

[Output-only] A hash of this resource.

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

Id

[Output-only] Opaque ID field of the job

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

JobReference

[Optional] Reference describing the unique-per-user name of the job.

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

Kind

[Output-only] The type of the resource.

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

SelfLink

[Output-only] A URL that can be used to access this resource again.

Declaration
[JsonProperty("selfLink")]
public virtual string SelfLink { 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

[Output-only] The status of this job. Examine this value when polling an asynchronous job to see if the job is complete.

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

UserEmail

[Output-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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top