TableViewArgs

data class TableViewArgs(val query: Output<String>, val useLegacySql: Output<Boolean>? = null) : ConvertibleToJava<TableViewArgs>

Constructors

Link copied to clipboard
fun TableViewArgs(query: Output<String>, useLegacySql: Output<Boolean>? = null)

Functions

Link copied to clipboard
open override fun toJava(): TableViewArgs

Properties

Link copied to clipboard
val query: Output<String>

A query that BigQuery executes when the view is referenced.

Link copied to clipboard
val useLegacySql: Output<Boolean>? = null

Specifies whether to use BigQuery's legacy SQL for this view. The default value is true. If set to false, the view will use BigQuery's standard SQL.