AzureSqlDatabaseOutputDataSourceArgs

data class AzureSqlDatabaseOutputDataSourceArgs(val authenticationMode: Output<Either<String, AuthenticationMode>>? = null, val database: Output<String>? = null, val maxBatchCount: Output<Double>? = null, val maxWriterCount: Output<Double>? = null, val password: Output<String>? = null, val server: Output<String>? = null, val table: Output<String>? = null, val type: Output<String>, val user: Output<String>? = null) : ConvertibleToJava<AzureSqlDatabaseOutputDataSourceArgs>

Describes an Azure SQL database output data source.

Constructors

Link copied to clipboard
constructor(authenticationMode: Output<Either<String, AuthenticationMode>>? = null, database: Output<String>? = null, maxBatchCount: Output<Double>? = null, maxWriterCount: Output<Double>? = null, password: Output<String>? = null, server: Output<String>? = null, table: Output<String>? = null, type: Output<String>, user: Output<String>? = null)

Properties

Link copied to clipboard
val authenticationMode: Output<Either<String, AuthenticationMode>>? = null

Authentication Mode.

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

The name of the Azure SQL database. Required on PUT (CreateOrReplace) requests.

Link copied to clipboard
val maxBatchCount: Output<Double>? = null

Max Batch count for write to Sql database, the default value is 10,000. Optional on PUT requests.

Link copied to clipboard
val maxWriterCount: Output<Double>? = null

Max Writer count, currently only 1(single writer) and 0(based on query partition) are available. Optional on PUT requests.

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

The password that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.

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

The name of the SQL server containing the Azure SQL database. Required on PUT (CreateOrReplace) requests.

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

The name of the table in the Azure SQL database. Required on PUT (CreateOrReplace) requests.

Link copied to clipboard
val type: Output<String>

Indicates the type of data source output will be written to. Required on PUT (CreateOrReplace) requests. Expected value is 'Microsoft.Sql/Server/Database'.

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

The user name that will be used to connect to the Azure SQL database. Required on PUT (CreateOrReplace) requests.

Functions

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