SqlConnectionInformationResponse

data class SqlConnectionInformationResponse(val authentication: String? = null, val dataSource: String? = null, val encryptConnection: Boolean? = null, val password: String? = null, val trustServerCertificate: Boolean? = null, val userName: String? = null)

Source SQL Connection

Constructors

Link copied to clipboard
constructor(authentication: String? = null, dataSource: String? = null, encryptConnection: Boolean? = null, password: String? = null, trustServerCertificate: Boolean? = null, userName: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val authentication: String? = null

Authentication type.

Link copied to clipboard
val dataSource: String? = null

Data source.

Link copied to clipboard

Whether to encrypt connection or not.

Link copied to clipboard
val password: String? = null

Password to connect to source SQL.

Link copied to clipboard

Whether to trust server certificate or not.

Link copied to clipboard
val userName: String? = null

User name to connect to source SQL.