SecretBackendConnectionMssqlArgs

data class SecretBackendConnectionMssqlArgs(val connectionUrl: Output<String>? = null, val containedDb: Output<Boolean>? = null, val disableEscaping: Output<Boolean>? = null, val maxConnectionLifetime: Output<Int>? = null, val maxIdleConnections: Output<Int>? = null, val maxOpenConnections: Output<Int>? = null, val password: Output<String>? = null, val username: Output<String>? = null, val usernameTemplate: Output<String>? = null) : ConvertibleToJava<SecretBackendConnectionMssqlArgs>

Constructors

Link copied to clipboard
constructor(connectionUrl: Output<String>? = null, containedDb: Output<Boolean>? = null, disableEscaping: Output<Boolean>? = null, maxConnectionLifetime: Output<Int>? = null, maxIdleConnections: Output<Int>? = null, maxOpenConnections: Output<Int>? = null, password: Output<String>? = null, username: Output<String>? = null, usernameTemplate: Output<String>? = null)

Properties

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

Connection string to use to connect to the database.

Link copied to clipboard
val containedDb: Output<Boolean>? = null

Set to true when the target is a Contained Database, e.g. AzureSQL.

Link copied to clipboard
val disableEscaping: Output<Boolean>? = null

Disable special character escaping in username and password

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

Maximum number of seconds a connection may be reused.

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

Maximum number of idle connections to the database.

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

Maximum number of open connections to the database.

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

The root credential password used in the connection URL

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

The root credential username used in the connection URL

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

Username generation template.

Functions

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