SqlUpsertSettingsArgs

data class SqlUpsertSettingsArgs(val interimSchemaName: Output<Any>? = null, val keys: Output<Any>? = null, val useTempDB: Output<Any>? = null) : ConvertibleToJava<SqlUpsertSettingsArgs>

Sql upsert option settings

Constructors

Link copied to clipboard
constructor(interimSchemaName: Output<Any>? = null, keys: Output<Any>? = null, useTempDB: Output<Any>? = null)

Properties

Link copied to clipboard
val interimSchemaName: Output<Any>? = null

Schema name for interim table. Type: string (or Expression with resultType string).

Link copied to clipboard
val keys: Output<Any>? = null

Key column names for unique row identification. Type: array of strings (or Expression with resultType array of strings).

Link copied to clipboard
val useTempDB: Output<Any>? = null

Specifies whether to use temp db for upsert interim table. Type: boolean (or Expression with resultType boolean).

Functions

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