Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update MySql & Mariadb LinkedService.json with new properties #26965

Merged
merged 2 commits into from
Dec 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1526,11 +1526,46 @@
"description": "MySQL linked service properties.",
"type": "object",
"properties": {
"driverVersion": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "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."
},
"connectionString": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The connection string. Type: string, SecureString or AzureKeyVaultSecretReference."
},
"server": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Server name for connection. Type: string."
},
"port": {
"type": "object",
"x-ms-format": "dfe-int",
"description": "The port for the connection. Type: integer."
},
"username": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Username for authentication. Type: string."
},
"database": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Database name for connection. Type: string."
},
"sslMode": {
"type": "object",
"x-ms-format": "dfe-int",
"description": "SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full."
},
"useSystemTrustStore": {
"type": "object",
"x-ms-format": "dfe-int",
"description": "Use system trust store for connection. Type: integer. 0: enable, 1: disable."
},
"password": {
"$ref": "../datafactory.json#/definitions/AzureKeyVaultSecretReference",
"description": "The Azure key vault secret reference of password in connection string."
Expand All @@ -1539,10 +1574,7 @@
"type": "string",
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string."
}
},
"required": [
"connectionString"
]
}
},
"PostgreSqlLinkedService": {
"x-ms-discriminator-value": "PostgreSql",
Expand Down Expand Up @@ -5304,12 +5336,37 @@
"description": "MariaDB server linked service properties.",
"type": "object",
"properties": {
"driverVersion": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The version of the MariaDB 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."
},
"connectionString": {
"description": "An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.",
"type": "object",
"x-ms-format": "dfe-string"
},
"pwd": {
"server": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Server name for connection. Type: string."
},
"port": {
"type": "object",
"x-ms-format": "dfe-int",
"description": "The port for the connection. Type: integer."
},
"username": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Username for authentication. Type: string."
},
"database": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Database name for connection. Type: string."
},
"password": {
"$ref": "../datafactory.json#/definitions/AzureKeyVaultSecretReference",
"description": "The Azure key vault secret reference of password in connection string."
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1310,10 +1310,45 @@
"description": "MySQL linked service properties.",
"type": "object",
"properties": {
"driverVersion": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "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."
},
"connectionString": {
"description": "The connection string.",
"type": "object"
},
"server": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Server name for connection. Type: string."
},
"port": {
"type": "object",
"x-ms-format": "dfe-int",
"description": "The port for the connection. Type: integer."
},
"username": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Username for authentication. Type: string."
},
"database": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Database name for connection. Type: string."
},
"sslMode": {
"type": "object",
"x-ms-format": "dfe-int",
"description": "SSL mode for connection. Type: integer. 0: disable, 1: prefer, 2: require, 3: verify-ca, 4: verify-full."
},
"useSystemTrustStore": {
"type": "object",
"x-ms-format": "dfe-int",
"description": "Use system trust store for connection. Type: integer. 0: enable, 1: disable."
},
"password": {
"$ref": "../artifacts.json#/definitions/AzureKeyVaultSecretReference",
"description": "The Azure key vault secret reference of password in connection string."
Expand All @@ -1322,10 +1357,7 @@
"type": "object",
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string)."
}
},
"required": [
"connectionString"
]
}
},
"PostgreSqlLinkedService": {
"x-ms-discriminator-value": "PostgreSql",
Expand Down Expand Up @@ -4846,11 +4878,36 @@
"description": "MariaDB server linked service properties.",
"type": "object",
"properties": {
"driverVersion": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "The version of the MariaDB 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."
},
"connectionString": {
"description": "An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference.",
"type": "object"
},
"pwd": {
"server": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Server name for connection. Type: string."
},
"port": {
"type": "object",
"x-ms-format": "dfe-int",
"description": "The port for the connection. Type: integer."
},
"username": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Username for authentication. Type: string."
},
"database": {
"type": "object",
"x-ms-format": "dfe-string",
"description": "Database name for connection. Type: string."
},
"password": {
"$ref": "../artifacts.json#/definitions/AzureKeyVaultSecretReference",
"description": "The Azure key vault secret reference of password in connection string."
},
Expand Down