OracleProfileArgs

data class OracleProfileArgs(val connectionAttributes: Output<Map<String, String>>? = null, val databaseService: Output<String>, val hostname: Output<String>, val password: Output<String>, val port: Output<Int>? = null, val username: Output<String>) : ConvertibleToJava<OracleProfileArgs>

Oracle database profile.

Constructors

Link copied to clipboard
fun OracleProfileArgs(connectionAttributes: Output<Map<String, String>>? = null, databaseService: Output<String>, hostname: Output<String>, password: Output<String>, port: Output<Int>? = null, username: Output<String>)

Functions

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

Properties

Link copied to clipboard
val connectionAttributes: Output<Map<String, String>>? = null

Connection string attributes

Link copied to clipboard
val databaseService: Output<String>

Database for the Oracle connection.

Link copied to clipboard
val hostname: Output<String>

Hostname for the Oracle connection.

Link copied to clipboard
val password: Output<String>

Password for the Oracle connection.

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

Port for the Oracle connection, default value is 1521.

Link copied to clipboard
val username: Output<String>

Username for the Oracle connection.