ConnectionProfileOracleForwardSshConnectivity

data class ConnectionProfileOracleForwardSshConnectivity(val hostname: String, val password: String? = null, val port: Int, val privateKey: String? = null, val username: String)

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Required. Hostname for the SSH tunnel.

Link copied to clipboard
val password: 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: Int

Port for the SSH tunnel, default value is 22.

Link copied to clipboard
val privateKey: 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

Required. Username for the SSH tunnel.