PostgreSqlConnectionProfileArgs

data class PostgreSqlConnectionProfileArgs(val cloudSqlId: Output<String>? = null, val host: Output<String>, val password: Output<String>, val port: Output<Int>, val privateServiceConnectConnectivity: Output<PrivateServiceConnectConnectivityArgs>? = null, val ssl: Output<SslConfigArgs>? = null, val staticIpConnectivity: Output<StaticIpConnectivityArgs>? = null, val username: Output<String>) : ConvertibleToJava<PostgreSqlConnectionProfileArgs>

Specifies connection parameters required specifically for PostgreSQL databases.

Constructors

Link copied to clipboard
fun PostgreSqlConnectionProfileArgs(cloudSqlId: Output<String>? = null, host: Output<String>, password: Output<String>, port: Output<Int>, privateServiceConnectConnectivity: Output<PrivateServiceConnectConnectivityArgs>? = null, ssl: Output<SslConfigArgs>? = null, staticIpConnectivity: Output<StaticIpConnectivityArgs>? = null, username: Output<String>)

Functions

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

Properties

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

If the source is a Cloud SQL database, use this field to provide the Cloud SQL instance ID of the source.

Link copied to clipboard
val host: Output<String>

The IP or hostname of the source PostgreSQL database.

Link copied to clipboard
val password: Output<String>

Input only. The password for the user that Database Migration Service will be using to connect to the database. This field is not returned on request, and the value is encrypted when stored in Database Migration Service.

Link copied to clipboard
val port: Output<Int>

The network port of the source PostgreSQL database.

Link copied to clipboard

Private service connect connectivity.

Link copied to clipboard
val ssl: Output<SslConfigArgs>? = null

SSL configuration for the destination to connect to the source database.

Link copied to clipboard

Static ip connectivity data (default, no additional details needed).

Link copied to clipboard
val username: Output<String>

The username that Database Migration Service will use to connect to the database. The value is encrypted when stored in Database Migration Service.