OracleConnectionInfoArgs

data class OracleConnectionInfoArgs(val authentication: Output<Either<String, AuthenticationType>>? = null, val dataSource: Output<String>, val password: Output<String>? = null, val port: Output<Int>? = null, val serverName: Output<String>? = null, val serverVersion: Output<String>? = null, val type: Output<String>, val userName: Output<String>? = null) : ConvertibleToJava<OracleConnectionInfoArgs>

Information for connecting to Oracle server

Constructors

Link copied to clipboard
constructor(authentication: Output<Either<String, AuthenticationType>>? = null, dataSource: Output<String>, password: Output<String>? = null, port: Output<Int>? = null, serverName: Output<String>? = null, serverVersion: Output<String>? = null, type: Output<String>, userName: Output<String>? = null)

Properties

Link copied to clipboard
val authentication: Output<Either<String, AuthenticationType>>? = null

Authentication type to use for connection

Link copied to clipboard
val dataSource: Output<String>

EZConnect or TNSName connection string.

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

Password credential.

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

port for server

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

name of the server

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

server version

Link copied to clipboard
val type: Output<String>

Type of connection info Expected value is 'OracleConnectionInfo'.

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

User name

Functions

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