ConnectionProfileOracleForwardSshConnectivityArgs

data class ConnectionProfileOracleForwardSshConnectivityArgs(val hostname: Output<String>, val password: Output<String>? = null, val port: Output<Int>, val privateKey: Output<String>? = null, val username: Output<String>) : ConvertibleToJava<ConnectionProfileOracleForwardSshConnectivityArgs>

Constructors

constructor(hostname: Output<String>, password: Output<String>? = null, port: Output<Int>, privateKey: Output<String>? = null, username: Output<String>)

Properties

Link copied to clipboard
val hostname: Output<String>

Required. Hostname for the SSH tunnel.

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

Input only. SSH password. Only one of password and private_key can be configured. Note: This property is sensitive and will not be displayed in the plan.

Link copied to clipboard
val port: Output<Int>

Port for the SSH tunnel, default value is 22.

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

Input only. SSH private key. Only one of password and private_key can be configured. Note: This property is sensitive and will not be displayed in the plan.

Link copied to clipboard
val username: Output<String>

Required. Username for the SSH tunnel.

Functions

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