Class JobConfigurationQuery
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class JobConfigurationQuery : IDirectResponseSchema
Properties
AllowLargeResults
[Optional] If true and query uses legacy SQL dialect, allows the query to produce arbitrarily large result tables at a slight cost in performance. Requires destinationTable to be set. For standard SQL queries, this flag is ignored and large results are always allowed. However, you must still set destinationTable when result size exceeds the allowed maximum response size.
Declaration
[JsonProperty("allowLargeResults")]
public virtual bool? AllowLargeResults { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
Clustering
[Beta] Clustering specification for the destination table. Must be specified with time-based partitioning, data in the table will be first partitioned and subsequently clustered.
Declaration
[JsonProperty("clustering")]
public virtual Clustering Clustering { get; set; }
Property Value
Type | Description |
---|---|
Clustering |
ConnectionProperties
Connection properties.
Declaration
[JsonProperty("connectionProperties")]
public virtual IList<ConnectionProperty> ConnectionProperties { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<ConnectionProperty> |
CreateDisposition
[Optional] Specifies whether the job is allowed to create new tables. The following values are supported: CREATE_IF_NEEDED: If the table does not exist, BigQuery creates the table. CREATE_NEVER: The table must already exist. If it does not, a 'notFound' error is returned in the job result. The default value is CREATE_IF_NEEDED. Creation, truncation and append actions occur as one atomic update upon job completion.
Declaration
[JsonProperty("createDisposition")]
public virtual string CreateDisposition { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CreateSession
If true, creates a new session, where session id will be a server generated random id. If false, runs query with an existing session_id passed in ConnectionProperty, otherwise runs query in non-session mode.
Declaration
[JsonProperty("createSession")]
public virtual bool? CreateSession { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
DefaultDataset
[Optional] Specifies the default dataset to use for unqualified table names in the query. Note that this does not alter behavior of unqualified dataset names.
Declaration
[JsonProperty("defaultDataset")]
public virtual DatasetReference DefaultDataset { get; set; }
Property Value
Type | Description |
---|---|
DatasetReference |
DestinationEncryptionConfiguration
Custom encryption configuration (e.g., Cloud KMS keys).
Declaration
[JsonProperty("destinationEncryptionConfiguration")]
public virtual EncryptionConfiguration DestinationEncryptionConfiguration { get; set; }
Property Value
Type | Description |
---|---|
EncryptionConfiguration |
DestinationTable
[Optional] Describes the table where the query results should be stored. If not present, a new table will be created to store the results. This property must be set for large results that exceed the maximum response size.
Declaration
[JsonProperty("destinationTable")]
public virtual TableReference DestinationTable { get; set; }
Property Value
Type | Description |
---|---|
TableReference |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FlattenResults
[Optional] If true and query uses legacy SQL dialect, flattens all nested and repeated fields in the query results. allowLargeResults must be true if this is set to false. For standard SQL queries, this flag is ignored and results are never flattened.
Declaration
[JsonProperty("flattenResults")]
public virtual bool? FlattenResults { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
MaximumBillingTier
[Optional] Limits the billing tier for this job. Queries that have resource usage beyond this tier will fail (without incurring a charge). If unspecified, this will be set to your project default.
Declaration
[JsonProperty("maximumBillingTier")]
public virtual int? MaximumBillingTier { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
MaximumBytesBilled
[Optional] Limits the bytes billed for this job. Queries that will have bytes billed beyond this limit will fail (without incurring a charge). If unspecified, this will be set to your project default.
Declaration
[JsonProperty("maximumBytesBilled")]
public virtual long? MaximumBytesBilled { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int64> |
ParameterMode
Standard SQL only. Set to POSITIONAL to use positional (?) query parameters or to NAMED to use named (@myparam) query parameters in this query.
Declaration
[JsonProperty("parameterMode")]
public virtual string ParameterMode { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PreserveNulls
[Deprecated] This property is deprecated.
Declaration
[JsonProperty("preserveNulls")]
public virtual bool? PreserveNulls { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
Priority
[Optional] Specifies a priority for the query. Possible values include INTERACTIVE and BATCH. The default value is INTERACTIVE.
Declaration
[JsonProperty("priority")]
public virtual string Priority { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Query
[Required] SQL query text to execute. The useLegacySql field can be used to indicate whether the query uses legacy SQL or standard SQL.
Declaration
[JsonProperty("query")]
public virtual string Query { get; set; }
Property Value
Type | Description |
---|---|
System.String |
QueryParameters
Query parameters for standard SQL queries.
Declaration
[JsonProperty("queryParameters")]
public virtual IList<QueryParameter> QueryParameters { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<QueryParameter> |
RangePartitioning
[TrustedTester] Range partitioning specification for this table. Only one of timePartitioning and rangePartitioning should be specified.
Declaration
[JsonProperty("rangePartitioning")]
public virtual RangePartitioning RangePartitioning { get; set; }
Property Value
Type | Description |
---|---|
RangePartitioning |
SchemaUpdateOptions
Allows the schema of the destination table to be updated as a side effect of the query job. Schema update options are supported in two cases: when writeDisposition is WRITE_APPEND; when writeDisposition is WRITE_TRUNCATE and the destination table is a partition of a table, specified by partition decorators. For normal tables, WRITE_TRUNCATE will always overwrite the schema. One or more of the following values are specified: ALLOW_FIELD_ADDITION: allow adding a nullable field to the schema. ALLOW_FIELD_RELAXATION: allow relaxing a required field in the original schema to nullable.
Declaration
[JsonProperty("schemaUpdateOptions")]
public virtual IList<string> SchemaUpdateOptions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<System.String> |
TableDefinitions
[Optional] If querying an external data source outside of BigQuery, describes the data format, location and other properties of the data source. By defining these properties, the data source can then be queried as if it were a standard BigQuery table.
Declaration
[JsonProperty("tableDefinitions")]
public virtual IDictionary<string, ExternalDataConfiguration> TableDefinitions { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, ExternalDataConfiguration> |
TimePartitioning
Time-based partitioning specification for the destination table. Only one of timePartitioning and rangePartitioning should be specified.
Declaration
[JsonProperty("timePartitioning")]
public virtual TimePartitioning TimePartitioning { get; set; }
Property Value
Type | Description |
---|---|
TimePartitioning |
UseLegacySql
Specifies whether to use BigQuery's legacy SQL dialect for this query. The default value is true. If set to false, the query will use BigQuery's standard SQL: https://cloud.google.com/bigquery/sql-reference/ When useLegacySql is set to false, the value of flattenResults is ignored; query will be run as if flattenResults is false.
Declaration
[JsonProperty("useLegacySql")]
public virtual bool? UseLegacySql { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
UseQueryCache
[Optional] Whether to look for the result in the query cache. The query cache is a best-effort cache that will be flushed whenever tables in the query are modified. Moreover, the query cache is only available when a query does not have a destination table specified. The default value is true.
Declaration
[JsonProperty("useQueryCache")]
public virtual bool? UseQueryCache { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
UserDefinedFunctionResources
Describes user-defined function resources used in the query.
Declaration
[JsonProperty("userDefinedFunctionResources")]
public virtual IList<UserDefinedFunctionResource> UserDefinedFunctionResources { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<UserDefinedFunctionResource> |
WriteDisposition
[Optional] Specifies the action that occurs if the destination table already exists. The following values are supported: WRITE_TRUNCATE: If the table already exists, BigQuery overwrites the table data and uses the schema from the query result. WRITE_APPEND: If the table already exists, BigQuery appends the data to the table. WRITE_EMPTY: If the table already exists and contains data, a 'duplicate' error is returned in the job result. The default value is WRITE_EMPTY. Each action is atomic and only occurs if BigQuery is able to complete the job successfully. Creation, truncation and append actions occur as one atomic update upon job completion.
Declaration
[JsonProperty("writeDisposition")]
public virtual string WriteDisposition { get; set; }
Property Value
Type | Description |
---|---|
System.String |