Secret Backend Connection Mssql Args
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
Connection string to use to connect to the database.
Link copied to clipboard
Set to true when the target is a Contained Database, e.g. AzureSQL.
Link copied to clipboard
Disable special character escaping in username and password
Link copied to clipboard
Maximum number of seconds a connection may be reused.
Link copied to clipboard
Maximum number of idle connections to the database.
Link copied to clipboard
Maximum number of open connections to the database.
Link copied to clipboard
Username generation template.