Show / Hide Table of Contents

Class JobConfiguration

Inheritance
object
JobConfiguration
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class JobConfiguration : IDirectResponseSchema

Properties

Copy

[Pick one] Copies a table.

Declaration
[JsonProperty("copy")]
public virtual JobConfigurationTableCopy Copy { get; set; }
Property Value
Type Description
JobConfigurationTableCopy

DryRun

Optional. If set, don't actually run this job. A valid query will return a mostly empty response with some processing statistics, while an invalid query will return the same error it would if it wasn't a dry run. Behavior of non-query jobs is undefined.

Declaration
[JsonProperty("dryRun")]
public virtual bool? DryRun { get; set; }
Property Value
Type Description
bool?

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Extract

[Pick one] Configures an extract job.

Declaration
[JsonProperty("extract")]
public virtual JobConfigurationExtract Extract { get; set; }
Property Value
Type Description
JobConfigurationExtract

JobTimeoutMs

Optional. Job timeout in milliseconds. If this time limit is exceeded, BigQuery might attempt to stop the job.

Declaration
[JsonProperty("jobTimeoutMs")]
public virtual long? JobTimeoutMs { get; set; }
Property Value
Type Description
long?

JobType

Output only. The type of the job. Can be QUERY, LOAD, EXTRACT, COPY or UNKNOWN.

Declaration
[JsonProperty("jobType")]
public virtual string JobType { get; set; }
Property Value
Type Description
string

Labels

The labels associated with this job. You can use these to organize and group your jobs. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter and each label in the list must have a different key.

Declaration
[JsonProperty("labels")]
public virtual IDictionary<string, string> Labels { get; set; }
Property Value
Type Description
IDictionary<string, string>

Load

[Pick one] Configures a load job.

Declaration
[JsonProperty("load")]
public virtual JobConfigurationLoad Load { get; set; }
Property Value
Type Description
JobConfigurationLoad

Query

[Pick one] Configures a query job.

Declaration
[JsonProperty("query")]
public virtual JobConfigurationQuery Query { get; set; }
Property Value
Type Description
JobConfigurationQuery

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX