Class JobConfiguration
Inheritance
Implements
Inherited Members
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 |
---|---|
System.Nullable<System.Boolean> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
System.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 may attempt to terminate the job.
Declaration
[JsonProperty("jobTimeoutMs")]
public virtual long? JobTimeoutMs { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
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 |
---|---|
System.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 |
---|---|
System.Collections.Generic.IDictionary<System.String, System.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 |