Skip to content

Commit 709b04c

Browse files
Yao725mikeharder
andauthored
[DataFactory & Synapse] Update Oracle Linked Service (#32060)
* update Oracle linked service * minor change * fix spell check * update description * update properties to camel case * revert cspell change to test * bring spell check back * fix * fix spell error --------- Co-authored-by: Mike Harder <[email protected]>
1 parent fcd685f commit 709b04c

File tree

4 files changed

+145
-4
lines changed

4 files changed

+145
-4
lines changed

specification/datafactory/cspell.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ words:
3939
- vsts
4040
- wtgctbg
4141
- xero
42+
- tswtz
4243
overrides:
4344
- filename: >-
4445
**/specification/datafactory/resource-manager/Microsoft.DataFactory/preview/2017-09-01-preview/entityTypes/IntegrationRuntime.json

specification/datafactory/resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/LinkedService.json

+78-2
Original file line numberDiff line numberDiff line change
@@ -1655,7 +1655,7 @@
16551655
},
16561656
"OracleLinkedService": {
16571657
"x-ms-discriminator-value": "Oracle",
1658-
"description": "Oracle database.",
1658+
"description": "Oracle database. This linked service has supported version property. The Version 1.0 is scheduled for deprecation while your pipeline will continue to run after EOL but without any bug fix or new features.",
16591659
"type": "object",
16601660
"allOf": [
16611661
{
@@ -1680,12 +1680,88 @@
16801680
"connectionString": {
16811681
"type": "object",
16821682
"x-ms-format": "dfe-string",
1683-
"description": "The connection string. Type: string, SecureString or AzureKeyVaultSecretReference."
1683+
"description": "The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0."
1684+
},
1685+
"server": {
1686+
"type": "object",
1687+
"x-ms-format": "dfe-string",
1688+
"description": "The location of Oracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0."
1689+
},
1690+
"authenticationType": {
1691+
"type": "string",
1692+
"enum": [
1693+
"Basic"
1694+
],
1695+
"x-ms-enum": {
1696+
"name": "OracleAuthenticationType",
1697+
"modelAsString": true
1698+
},
1699+
"description": "Authentication type for connecting to the Oracle database. Only used for Version 2.0."
1700+
},
1701+
"username": {
1702+
"type": "object",
1703+
"x-ms-format": "dfe-string",
1704+
"description": "The Oracle database username. Type: string. Only used for Version 2.0."
16841705
},
16851706
"password": {
16861707
"$ref": "../datafactory.json#/definitions/AzureKeyVaultSecretReference",
16871708
"description": "The Azure key vault secret reference of password in connection string."
16881709
},
1710+
"encryptionClient": {
1711+
"type": "object",
1712+
"x-ms-format": "dfe-string",
1713+
"description": "Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0."
1714+
},
1715+
"encryptionTypesClient": {
1716+
"type": "object",
1717+
"x-ms-format": "dfe-string",
1718+
"description": "Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0."
1719+
},
1720+
"cryptoChecksumClient": {
1721+
"type": "object",
1722+
"x-ms-format": "dfe-string",
1723+
"description": "Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0."
1724+
},
1725+
"cryptoChecksumTypesClient": {
1726+
"type": "object",
1727+
"x-ms-format": "dfe-string",
1728+
"description": "Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0."
1729+
},
1730+
"initialLobFetchSize": {
1731+
"type": "object",
1732+
"x-ms-format": "dfe-int",
1733+
"description": "Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0."
1734+
},
1735+
"fetchSize": {
1736+
"type": "object",
1737+
"x-ms-format": "dfe-int",
1738+
"description": "Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0."
1739+
},
1740+
"statementCacheSize": {
1741+
"type": "object",
1742+
"x-ms-format": "dfe-int",
1743+
"description": "Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0."
1744+
},
1745+
"initializationString": {
1746+
"type": "object",
1747+
"x-ms-format": "dfe-string",
1748+
"description": "Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0."
1749+
},
1750+
"enableBulkLoad": {
1751+
"type": "object",
1752+
"x-ms-format": "dfe-bool",
1753+
"description": "Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0."
1754+
},
1755+
"supportV1DataTypes": {
1756+
"type": "object",
1757+
"x-ms-format": "dfe-bool",
1758+
"description": "Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0."
1759+
},
1760+
"fetchTswtzAsTimestamp": {
1761+
"type": "object",
1762+
"x-ms-format": "dfe-bool",
1763+
"description": "Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0."
1764+
},
16891765
"encryptedCredential": {
16901766
"type": "string",
16911767
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string."

specification/synapse/cspell.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ words:
6565
- wtgctbg
6666
- xero
6767
- xlargerc
68+
- tswtz
6869
overrides:
6970
- filename: >-
7071
**/specification/synapse/resource-manager/Microsoft.Synapse/preview/2019-06-01-preview/integrationRuntime.json

specification/synapse/data-plane/Microsoft.Synapse/stable/2020-12-01/entityTypes/LinkedService.json

+65-2
Original file line numberDiff line numberDiff line change
@@ -1412,7 +1412,7 @@
14121412
},
14131413
"OracleLinkedService": {
14141414
"x-ms-discriminator-value": "Oracle",
1415-
"description": "Oracle database.",
1415+
"description": "Oracle database. This linked service has supported version property. The Version 1.0 is scheduled for deprecation while your pipeline will continue to run after EOL but without any bug fix or new features.",
14161416
"type": "object",
14171417
"allOf": [
14181418
{
@@ -1435,13 +1435,76 @@
14351435
"type": "object",
14361436
"properties": {
14371437
"connectionString": {
1438-
"description": "The connection string. Type: string, SecureString or AzureKeyVaultSecretReference.",
1438+
"description": "The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. Only used for Version 1.0.",
14391439
"type": "object"
14401440
},
1441+
"server": {
1442+
"type": "object",
1443+
"description": "The location of Oracle database you want to connect to, the supported forms include connector descriptor, Easy Connect (Plus) Naming and Oracle Net Services Name (Only self-hosted IR). Type: string. Only used for Version 2.0."
1444+
},
1445+
"authenticationType": {
1446+
"type": "string",
1447+
"enum": [
1448+
"Basic"
1449+
],
1450+
"x-ms-enum": {
1451+
"name": "OracleAuthenticationType",
1452+
"modelAsString": true
1453+
},
1454+
"description": "Authentication type for connecting to the Oracle database. Only used for Version 2.0."
1455+
},
1456+
"username": {
1457+
"type": "object",
1458+
"description": "The Oracle database username. Type: string. Only used for Version 2.0."
1459+
},
14411460
"password": {
14421461
"$ref": "../artifacts.json#/definitions/AzureKeyVaultSecretReference",
14431462
"description": "The Azure key vault secret reference of password in connection string."
14441463
},
1464+
"encryptionClient": {
1465+
"type": "object",
1466+
"description": "Specifies the encryption client behavior. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0."
1467+
},
1468+
"encryptionTypesClient": {
1469+
"type": "object",
1470+
"description": "Specifies the encryption algorithms that client can use. Supported values are AES128, AES192, AES256, 3DES112, 3DES168, default value is (AES256). Type: string. Only used for Version 2.0."
1471+
},
1472+
"cryptoChecksumClient": {
1473+
"type": "object",
1474+
"description": "Specifies the desired data integrity behavior when this client connects to a server. Supported values are accepted, rejected, requested or required, default value is required. Type: string. Only used for Version 2.0."
1475+
},
1476+
"cryptoChecksumTypesClient": {
1477+
"type": "object",
1478+
"description": "Specifies the crypto-checksum algorithms that client can use. Supported values are SHA1, SHA256, SHA384, SHA512, default value is (SHA512). Type: string. Only used for Version 2.0."
1479+
},
1480+
"initialLobFetchSize": {
1481+
"type": "object",
1482+
"description": "Specifies the amount that the source initially fetches for LOB columns, default value is 0. Type: integer. Only used for Version 2.0."
1483+
},
1484+
"fetchSize": {
1485+
"type": "object",
1486+
"description": "Specifies the number of bytes that the driver allocates to fetch the data in one database round-trip, default value is 10485760. Type: integer. Only used for Version 2.0."
1487+
},
1488+
"statementCacheSize": {
1489+
"type": "object",
1490+
"description": "Specifies the number of cursors or statements to be cached for each database connection, default value is 0. Type: integer. Only used for Version 2.0."
1491+
},
1492+
"initializationString": {
1493+
"type": "object",
1494+
"description": "Specifies a command that is issued immediately after connecting to the database to manage session settings. Type: string. Only used for Version 2.0."
1495+
},
1496+
"enableBulkLoad": {
1497+
"type": "object",
1498+
"description": "Specifies whether to use bulk copy or batch insert when loading data into the database, default value is true. Type: boolean. Only used for Version 2.0."
1499+
},
1500+
"supportV1DataTypes": {
1501+
"type": "object",
1502+
"description": "Specifies whether to use the Version 1.0 data type mappings. Do not set this to true unless you want to keep backward compatibility with Version 1.0's data type mappings, default value is false. Type: boolean. Only used for Version 2.0."
1503+
},
1504+
"fetchTswtzAsTimestamp": {
1505+
"type": "object",
1506+
"description": "Specifies whether the driver returns column value with the TIMESTAMP WITH TIME ZONE data type as DateTime or string. This setting is ignored if supportV1DataTypes is not true, default value is true. Type: boolean. Only used for Version 2.0."
1507+
},
14451508
"encryptedCredential": {
14461509
"type": "object",
14471510
"description": "The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string)."

0 commit comments

Comments
 (0)