PostgreSqlConnectionInfoArgs

data class PostgreSqlConnectionInfoArgs(val additionalSettings: Output<String>? = null, val authentication: Output<Either<String, AuthenticationType>>? = null, val dataSource: Output<String>? = null, val databaseName: Output<String>? = null, val encryptConnection: Output<Boolean>? = null, val password: Output<String>? = null, val port: Output<Int>, val serverBrandVersion: Output<String>? = null, val serverName: Output<String>, val serverVersion: Output<String>? = null, val trustServerCertificate: Output<Boolean>? = null, val type: Output<String>, val userName: Output<String>? = null) : ConvertibleToJava<PostgreSqlConnectionInfoArgs>

Information for connecting to PostgreSQL server

Constructors

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

Properties

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

Additional connection settings

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

Authentication type to use for connection

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

Name of the database

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

Data source

Link copied to clipboard
val encryptConnection: Output<Boolean>? = null

Whether to encrypt the connection

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

Password credential.

Link copied to clipboard
val port: Output<Int>

Port for Server

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

server brand version

Link copied to clipboard
val serverName: Output<String>

Name of the server

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

server version

Link copied to clipboard
val trustServerCertificate: Output<Boolean>? = null

Whether to trust the server certificate

Link copied to clipboard
val type: Output<String>

Type of connection info Expected value is 'PostgreSqlConnectionInfo'.

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

User name

Functions

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