ConnectionProfileSqlServerProfileArgs

data class ConnectionProfileSqlServerProfileArgs(val database: Output<String>, val hostname: Output<String>, val password: Output<String>, val port: Output<Int>? = null, val username: Output<String>) : ConvertibleToJava<ConnectionProfileSqlServerProfileArgs>

Constructors

Link copied to clipboard
constructor(database: Output<String>, hostname: Output<String>, password: Output<String>, port: Output<Int>? = null, username: Output<String>)

Properties

Link copied to clipboard
val database: Output<String>

Database for the SQL Server connection.

Link copied to clipboard
val hostname: Output<String>

Hostname for the SQL Server connection.

Link copied to clipboard
val password: Output<String>

Password for the SQL Server connection. Note: This property is sensitive and will not be displayed in the plan.

Link copied to clipboard
val port: Output<Int>? = null

Port for the SQL Server connection.

Link copied to clipboard
val username: Output<String>

Username for the SQL Server connection.

Functions

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