BigQuery v0.0.6 BigQuery.Types.Query
A BigQuery Query Resource. See https://cloud.google.com/bigquery/docs/reference/v2/jobs/query for detailed information about the fields.
Fields:
- kind - bigquery#queryRequest
- query - [Required] A BigQuery query string.
- maxResults - [Optional] The maximum number of rows of data to return per page of results.
- defaultDataset - [Optional] Specifies the default datasetId and projectId to assume for any unqualified table names in the query.
- timeoutMs - [Optional] How long to wait for the query to complete, in milliseconds. The query will continue running if timeoutMs is exceeded, but the initial query request will return.
- dryRun - [Optional] Don’t actually execute the query.
- useQueryCache - [Optional] Whether to look for the result in the query cache.
Summary
Types
t :: %BigQuery.Types.Query{defaultDataset: BigQuery.Types.DatasetReference.t, dryRun: boolean, kind: String.t, maxResults: non_neg_integer, query: String.t, timeoutMs: non_neg_integer, useQueryCache: boolean}