ConnectionProfilePostgresqlProfile

data class ConnectionProfilePostgresqlProfile(val database: String, val hostname: String, val password: String? = null, val port: Int? = null, val secretManagerStoredPassword: String? = null, val username: String)

Constructors

Link copied to clipboard
constructor(database: String, hostname: String, password: String? = null, port: Int? = null, secretManagerStoredPassword: String? = null, username: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Database for the PostgreSQL connection.

Link copied to clipboard

Hostname for the PostgreSQL connection.

Link copied to clipboard
val password: String? = null

Password for the PostgreSQL connection. Note: This property is sensitive and will not be displayed in the plan.

Link copied to clipboard
val port: Int? = null

Port for the PostgreSQL connection.

Link copied to clipboard

A reference to a Secret Manager resource name storing the user's password.

Link copied to clipboard

Username for the PostgreSQL connection.