CodeCompilationConfigArgs

data class CodeCompilationConfigArgs(val assertionSchema: Output<String>? = null, val databaseSuffix: Output<String>? = null, val defaultDatabase: Output<String>? = null, val defaultLocation: Output<String>? = null, val defaultSchema: Output<String>? = null, val schemaSuffix: Output<String>? = null, val tablePrefix: Output<String>? = null, val vars: Output<Map<String, String>>? = null) : ConvertibleToJava<CodeCompilationConfigArgs>

Configures various aspects of Dataform code compilation.

Constructors

Link copied to clipboard
fun CodeCompilationConfigArgs(assertionSchema: Output<String>? = null, databaseSuffix: Output<String>? = null, defaultDatabase: Output<String>? = null, defaultLocation: Output<String>? = null, defaultSchema: Output<String>? = null, schemaSuffix: Output<String>? = null, tablePrefix: Output<String>? = null, vars: Output<Map<String, String>>? = null)

Functions

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

Properties

Link copied to clipboard
val assertionSchema: Output<String>? = null

Optional. The default schema (BigQuery dataset ID) for assertions.

Link copied to clipboard
val databaseSuffix: Output<String>? = null

Optional. The suffix that should be appended to all database (Google Cloud project ID) names.

Link copied to clipboard
val defaultDatabase: Output<String>? = null

Optional. The default database (Google Cloud project ID).

Link copied to clipboard
val defaultLocation: Output<String>? = null

Optional. The default BigQuery location to use. Defaults to "US". See the BigQuery docs for a full list of locations: https://cloud.google.com/bigquery/docs/locations.

Link copied to clipboard
val defaultSchema: Output<String>? = null

Optional. The default schema (BigQuery dataset ID).

Link copied to clipboard
val schemaSuffix: Output<String>? = null

Optional. The suffix that should be appended to all schema (BigQuery dataset ID) names.

Link copied to clipboard
val tablePrefix: Output<String>? = null

Optional. The prefix that should be prepended to all table names.

Link copied to clipboard
val vars: Output<Map<String, String>>? = null

Optional. User-defined variables that are made available to project code during compilation.