View Source GoogleApi.BigQuery.V2.Model.JobConfigurationQuery (google_api_big_query v0.79.0)

JobConfigurationQuery configures a BigQuery query job.

Attributes

  • allowLargeResults (type: boolean(), default: false) - 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 GoogleSQL 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.
  • clustering (type: GoogleApi.BigQuery.V2.Model.Clustering.t, default: nil) - Clustering specification for the destination table.
  • connectionProperties (type: list(GoogleApi.BigQuery.V2.Model.ConnectionProperty.t), default: nil) - Connection properties which can modify the query behavior.
  • continuous (type: boolean(), default: nil) - [Optional] Specifies whether the query should be executed as a continuous query. The default value is false.
  • createDisposition (type: String.t, default: nil) - 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.
  • createSession (type: boolean(), default: nil) - If this property is true, the job creates a new session using a randomly generated session_id. To continue using a created session with subsequent queries, pass the existing session identifier as a ConnectionProperty value. The session identifier is returned as part of the SessionInfo message within the query statistics. The new session's location will be set to Job.JobReference.location if it is present, otherwise it's set to the default location based on existing routing logic.
  • defaultDataset (type: GoogleApi.BigQuery.V2.Model.DatasetReference.t, default: nil) - Optional. Specifies the default dataset to use for unqualified table names in the query. This setting does not alter behavior of unqualified dataset names. Setting the system variable @@dataset_id achieves the same behavior. See https://cloud.google.com/bigquery/docs/reference/system-variables for more information on system variables.
  • destinationEncryptionConfiguration (type: GoogleApi.BigQuery.V2.Model.EncryptionConfiguration.t, default: nil) - Custom encryption configuration (e.g., Cloud KMS keys)
  • destinationTable (type: GoogleApi.BigQuery.V2.Model.TableReference.t, default: nil) - Optional. Describes the table where the query results should be stored. This property must be set for large results that exceed the maximum response size. For queries that produce anonymous (cached) results, this field will be populated by BigQuery.
  • flattenResults (type: boolean(), default: true) - 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 GoogleSQL queries, this flag is ignored and results are never flattened.
  • maximumBillingTier (type: integer(), default: 1) - Optional. [Deprecated] Maximum billing tier allowed for this query. The billing tier controls the amount of compute resources allotted to the query, and multiplies the on-demand cost of the query accordingly. A query that runs within its allotted resources will succeed and indicate its billing tier in statistics.query.billingTier, but if the query exceeds its allotted resources, it will fail with billingTierLimitExceeded. WARNING: The billed byte amount can be multiplied by an amount up to this number! Most users should not need to alter this setting, and we recommend that you avoid introducing new uses of it.
  • maximumBytesBilled (type: String.t, default: nil) - 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.
  • parameterMode (type: String.t, default: nil) - GoogleSQL only. Set to POSITIONAL to use positional (?) query parameters or to NAMED to use named (@myparam) query parameters in this query.
  • preserveNulls (type: boolean(), default: nil) - [Deprecated] This property is deprecated.
  • priority (type: String.t, default: nil) - Optional. Specifies a priority for the query. Possible values include INTERACTIVE and BATCH. The default value is INTERACTIVE.
  • query (type: String.t, default: nil) - [Required] SQL query text to execute. The useLegacySql field can be used to indicate whether the query uses legacy SQL or GoogleSQL.
  • queryParameters (type: list(GoogleApi.BigQuery.V2.Model.QueryParameter.t), default: nil) - Query parameters for GoogleSQL queries.
  • rangePartitioning (type: GoogleApi.BigQuery.V2.Model.RangePartitioning.t, default: nil) - Range partitioning specification for the destination table. Only one of timePartitioning and rangePartitioning should be specified.
  • schemaUpdateOptions (type: list(String.t), default: nil) - 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.
  • scriptOptions (type: GoogleApi.BigQuery.V2.Model.ScriptOptions.t, default: nil) - Options controlling the execution of scripts.
  • systemVariables (type: GoogleApi.BigQuery.V2.Model.SystemVariables.t, default: nil) - Output only. System variables for GoogleSQL queries. A system variable is output if the variable is settable and its value differs from the system default. "@@" prefix is not included in the name of the System variables.
  • tableDefinitions (type: %{optional(String.t) => GoogleApi.BigQuery.V2.Model.ExternalDataConfiguration.t}, default: nil) - Optional. You can specify external table definitions, which operate as ephemeral tables that can be queried. These definitions are configured using a JSON map, where the string key represents the table identifier, and the value is the corresponding external data configuration object.
  • timePartitioning (type: GoogleApi.BigQuery.V2.Model.TimePartitioning.t, default: nil) - Time-based partitioning specification for the destination table. Only one of timePartitioning and rangePartitioning should be specified.
  • useLegacySql (type: boolean(), default: true) - Optional. 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 GoogleSQL: 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.
  • useQueryCache (type: boolean(), default: true) - 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.
  • userDefinedFunctionResources (type: list(GoogleApi.BigQuery.V2.Model.UserDefinedFunctionResource.t), default: nil) - Describes user-defined function resources used in the query.
  • writeDisposition (type: String.t, default: nil) - 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 data, removes the constraints, 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.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.BigQuery.V2.Model.JobConfigurationQuery{
  allowLargeResults: boolean() | nil,
  clustering: GoogleApi.BigQuery.V2.Model.Clustering.t() | nil,
  connectionProperties:
    [GoogleApi.BigQuery.V2.Model.ConnectionProperty.t()] | nil,
  continuous: boolean() | nil,
  createDisposition: String.t() | nil,
  createSession: boolean() | nil,
  defaultDataset: GoogleApi.BigQuery.V2.Model.DatasetReference.t() | nil,
  destinationEncryptionConfiguration:
    GoogleApi.BigQuery.V2.Model.EncryptionConfiguration.t() | nil,
  destinationTable: GoogleApi.BigQuery.V2.Model.TableReference.t() | nil,
  flattenResults: boolean() | nil,
  maximumBillingTier: integer() | nil,
  maximumBytesBilled: String.t() | nil,
  parameterMode: String.t() | nil,
  preserveNulls: boolean() | nil,
  priority: String.t() | nil,
  query: String.t() | nil,
  queryParameters: [GoogleApi.BigQuery.V2.Model.QueryParameter.t()] | nil,
  rangePartitioning: GoogleApi.BigQuery.V2.Model.RangePartitioning.t() | nil,
  schemaUpdateOptions: [String.t()] | nil,
  scriptOptions: GoogleApi.BigQuery.V2.Model.ScriptOptions.t() | nil,
  systemVariables: GoogleApi.BigQuery.V2.Model.SystemVariables.t() | nil,
  tableDefinitions:
    %{
      optional(String.t()) =>
        GoogleApi.BigQuery.V2.Model.ExternalDataConfiguration.t()
    }
    | nil,
  timePartitioning: GoogleApi.BigQuery.V2.Model.TimePartitioning.t() | nil,
  useLegacySql: boolean() | nil,
  useQueryCache: boolean() | nil,
  userDefinedFunctionResources:
    [GoogleApi.BigQuery.V2.Model.UserDefinedFunctionResource.t()] | nil,
  writeDisposition: String.t() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.