MySqlLinkedServiceResponse

data class MySqlLinkedServiceResponse(val annotations: List<Any>? = null, val connectVia: IntegrationRuntimeReferenceResponse? = null, val connectionString: Any? = null, val database: Any? = null, val description: String? = null, val driverVersion: Any? = null, val encryptedCredential: String? = null, val parameters: Map<String, ParameterSpecificationResponse>? = null, val password: AzureKeyVaultSecretReferenceResponse? = null, val port: Any? = null, val server: Any? = null, val sslMode: Any? = null, val type: String, val useSystemTrustStore: Any? = null, val username: Any? = null)

Linked service for MySQL data source.

Constructors

Link copied to clipboard
constructor(annotations: List<Any>? = null, connectVia: IntegrationRuntimeReferenceResponse? = null, connectionString: Any? = null, database: Any? = null, description: String? = null, driverVersion: Any? = null, encryptedCredential: String? = null, parameters: Map<String, ParameterSpecificationResponse>? = null, password: AzureKeyVaultSecretReferenceResponse? = null, port: Any? = null, server: Any? = null, sslMode: Any? = null, type: String, useSystemTrustStore: Any? = null, username: Any? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val annotations: List<Any>? = null

List of tags that can be used for describing the linked service.

Link copied to clipboard
val connectionString: Any? = null

The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.

Link copied to clipboard

The integration runtime reference.

Link copied to clipboard
val database: Any? = null

Database name for connection. Type: string.

Link copied to clipboard
val description: String? = null

Linked service description.

Link copied to clipboard
val driverVersion: Any? = null

The version of the MySQL driver. Type: string. V1 or empty for legacy driver, V2 for new driver. V1 can support connection string and property bag, V2 can only support connection string.

Link copied to clipboard

The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.

Link copied to clipboard

Parameters for linked service.

Link copied to clipboard

The Azure key vault secret reference of password in connection string.

Link copied to clipboard
val port: Any? = null

The port for the connection. Type: integer.

Link copied to clipboard
val server: Any? = null

Server name for connection. Type: string.

Link copied to clipboard
val sslMode: Any? = null

SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full.

Link copied to clipboard

Type of linked service. Expected value is 'MySql'.

Link copied to clipboard
val username: Any? = null

Username for authentication. Type: string.

Link copied to clipboard

Use system trust store for connection. Type: integer. 0: enable, 1: disable.