Secret Backend Connection Oracle
data class SecretBackendConnectionOracle(val connectionUrl: String? = null, val disconnectSessions: Boolean? = null, val maxConnectionLifetime: Int? = null, val maxIdleConnections: Int? = null, val maxOpenConnections: Int? = null, val password: String? = null, val splitStatements: Boolean? = null, val username: String? = null, val usernameTemplate: String? = null)
Constructors
Link copied to clipboard
constructor(connectionUrl: String? = null, disconnectSessions: Boolean? = null, maxConnectionLifetime: Int? = null, maxIdleConnections: Int? = null, maxOpenConnections: Int? = null, password: String? = null, splitStatements: Boolean? = null, username: String? = null, usernameTemplate: String? = null)
Properties
Link copied to clipboard
Connection string to use to connect to the database.
Link copied to clipboard
Set to true to disconnect any open sessions prior to running the revocation statements.
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
Set to true in order to split statements after semi-colons.
Link copied to clipboard
Username generation template.