AzureSynapseOutputDataSourceArgs

data class AzureSynapseOutputDataSourceArgs(val database: Output<String>? = 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<AzureSynapseOutputDataSourceArgs>

Describes an Azure Synapse output data source.

Constructors

Link copied to clipboard
constructor(database: Output<String>? = 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 database: Output<String>? = null

The name of the Azure SQL database. Required on PUT (CreateOrReplace) 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/DataWarehouse'.

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(): AzureSynapseOutputDataSourceArgs