RepositoryReleaseConfigCodeCompilationConfig

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

Constructors

constructor(assertionSchema: String? = null, databaseSuffix: String? = null, defaultDatabase: String? = null, defaultLocation: String? = null, defaultSchema: String? = null, schemaSuffix: String? = null, tablePrefix: String? = null, vars: Map<String, String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val assertionSchema: String? = null

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

Link copied to clipboard
val databaseSuffix: String? = null

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

Link copied to clipboard
val defaultDatabase: String? = null

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

Link copied to clipboard
val defaultLocation: 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: String? = null

Optional. The default schema (BigQuery dataset ID).

Link copied to clipboard
val schemaSuffix: String? = null

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

Link copied to clipboard
val tablePrefix: String? = null

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

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

Optional. User-defined variables that are made available to project code during compilation. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.