AzureSqlDatabaseOutputDataSourceResponse

data class AzureSqlDatabaseOutputDataSourceResponse(val database: String? = null, val password: String? = null, val server: String? = null, val table: String? = null, val type: String, val user: String? = null)

Describes an Azure SQL database output data source.

Constructors

Link copied to clipboard
constructor(database: String? = null, password: String? = null, server: String? = null, table: String? = null, type: String, user: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val database: String? = null

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

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

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

Link copied to clipboard
val table: String? = null

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

Link copied to clipboard

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: String? = null

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