@azure/arm-datafactory 11.1.1-alpha.20231113.1 → 12.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +273 -8
- package/dist/index.js +2077 -727
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.js +75 -0
- package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureDeleteSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureDeleteSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureDeleteSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureDeleteSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureGetSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureGetSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureGetSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureGetSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.js +55 -0
- package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStartSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureStartSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStartSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureStartSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStatusSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureStatusSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStatusSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureStatusSample.js.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStopSample.d.ts +2 -0
- package/dist-esm/samples-dev/changeDataCaptureStopSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/changeDataCaptureStopSample.js +40 -0
- package/dist-esm/samples-dev/changeDataCaptureStopSample.js.map +1 -0
- package/dist-esm/src/dataFactoryManagementClient.d.ts +2 -1
- package/dist-esm/src/dataFactoryManagementClient.d.ts.map +1 -1
- package/dist-esm/src/dataFactoryManagementClient.js +3 -2
- package/dist-esm/src/dataFactoryManagementClient.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +787 -361
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +58 -22
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +36 -1
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +1063 -141
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.d.ts +2 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -1
- package/dist-esm/src/models/parameters.js +20 -1
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/changeDataCapture.d.ts +87 -0
- package/dist-esm/src/operations/changeDataCapture.d.ts.map +1 -0
- package/dist-esm/src/operations/changeDataCapture.js +350 -0
- package/dist-esm/src/operations/changeDataCapture.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +1 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -1
- package/dist-esm/src/operations/index.js +1 -0
- package/dist-esm/src/operations/index.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/changeDataCapture.d.ts +62 -0
- package/dist-esm/src/operationsInterfaces/changeDataCapture.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/changeDataCapture.js +9 -0
- package/dist-esm/src/operationsInterfaces/changeDataCapture.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -1
- package/dist-esm/src/operationsInterfaces/index.js +1 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -1
- package/dist-esm/test/datafactory_examples.spec.js +1 -1
- package/package.json +9 -7
- package/review/arm-datafactory.api.md +480 -150
- package/src/dataFactoryManagementClient.ts +7 -3
- package/src/models/index.ts +848 -364
- package/src/models/mappers.ts +1176 -155
- package/src/models/parameters.ts +23 -1
- package/src/operations/changeDataCapture.ts +472 -0
- package/src/operations/index.ts +1 -0
- package/src/operationsInterfaces/changeDataCapture.ts +118 -0
- package/src/operationsInterfaces/index.ts +1 -0
- package/types/arm-datafactory.d.ts +862 -327
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,280 @@
|
|
|
1
1
|
# Release History
|
|
2
|
+
|
|
3
|
+
## 12.0.0 (2023-11-10)
|
|
4
|
+
|
|
5
|
+
**Features**
|
|
2
6
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
- Added operation group ChangeDataCapture
|
|
8
|
+
- Added Interface ChangeDataCaptureCreateOrUpdateOptionalParams
|
|
9
|
+
- Added Interface ChangeDataCaptureDeleteOptionalParams
|
|
10
|
+
- Added Interface ChangeDataCaptureFolder
|
|
11
|
+
- Added Interface ChangeDataCaptureGetOptionalParams
|
|
12
|
+
- Added Interface ChangeDataCaptureListByFactoryNextOptionalParams
|
|
13
|
+
- Added Interface ChangeDataCaptureListByFactoryOptionalParams
|
|
14
|
+
- Added Interface ChangeDataCaptureListResponse
|
|
15
|
+
- Added Interface ChangeDataCaptureResource
|
|
16
|
+
- Added Interface ChangeDataCaptureStartOptionalParams
|
|
17
|
+
- Added Interface ChangeDataCaptureStatusOptionalParams
|
|
18
|
+
- Added Interface ChangeDataCaptureStopOptionalParams
|
|
19
|
+
- Added Interface DataMapperMapping
|
|
20
|
+
- Added Interface IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem
|
|
21
|
+
- Added Interface LakeHouseLinkedService
|
|
22
|
+
- Added Interface LakeHouseLocation
|
|
23
|
+
- Added Interface LakeHouseReadSettings
|
|
24
|
+
- Added Interface LakeHouseTableDataset
|
|
25
|
+
- Added Interface LakeHouseTableSink
|
|
26
|
+
- Added Interface LakeHouseTableSource
|
|
27
|
+
- Added Interface LakeHouseWriteSettings
|
|
28
|
+
- Added Interface MapperAttributeMapping
|
|
29
|
+
- Added Interface MapperAttributeMappings
|
|
30
|
+
- Added Interface MapperAttributeReference
|
|
31
|
+
- Added Interface MapperConnection
|
|
32
|
+
- Added Interface MapperConnectionReference
|
|
33
|
+
- Added Interface MapperDslConnectorProperties
|
|
34
|
+
- Added Interface MapperPolicy
|
|
35
|
+
- Added Interface MapperPolicyRecurrence
|
|
36
|
+
- Added Interface MapperSourceConnectionsInfo
|
|
37
|
+
- Added Interface MapperTable
|
|
38
|
+
- Added Interface MapperTableSchema
|
|
39
|
+
- Added Interface MapperTargetConnectionsInfo
|
|
40
|
+
- Added Interface OutputColumn
|
|
41
|
+
- Added Interface ParquetReadSettings
|
|
42
|
+
- Added Interface SecureInputOutputPolicy
|
|
43
|
+
- Added Type Alias ActivityOnInactiveMarkAs
|
|
44
|
+
- Added Type Alias ActivityState
|
|
45
|
+
- Added Type Alias ChangeDataCaptureCreateOrUpdateResponse
|
|
46
|
+
- Added Type Alias ChangeDataCaptureGetResponse
|
|
47
|
+
- Added Type Alias ChangeDataCaptureListByFactoryNextResponse
|
|
48
|
+
- Added Type Alias ChangeDataCaptureListByFactoryResponse
|
|
49
|
+
- Added Type Alias ChangeDataCaptureStatusResponse
|
|
50
|
+
- Added Type Alias ConnectionType
|
|
51
|
+
- Added Type Alias FrequencyType
|
|
52
|
+
- Added Type Alias MappingType
|
|
53
|
+
- Interface Activity has a new optional parameter onInactiveMarkAs
|
|
54
|
+
- Interface Activity has a new optional parameter state
|
|
55
|
+
- Interface AmazonRdsForSqlServerSource has a new optional parameter isolationLevel
|
|
56
|
+
- Interface AzureMLServiceLinkedService has a new optional parameter authentication
|
|
57
|
+
- Interface AzureSqlSource has a new optional parameter isolationLevel
|
|
58
|
+
- Interface GoogleAdWordsLinkedService has a new optional parameter googleAdsApiVersion
|
|
59
|
+
- Interface GoogleAdWordsLinkedService has a new optional parameter loginCustomerID
|
|
60
|
+
- Interface GoogleAdWordsLinkedService has a new optional parameter privateKey
|
|
61
|
+
- Interface GoogleAdWordsLinkedService has a new optional parameter supportLegacyDataTypes
|
|
62
|
+
- Interface HttpReadSettings has a new optional parameter additionalColumns
|
|
63
|
+
- Interface IntegrationRuntimeDataFlowProperties has a new optional parameter customProperties
|
|
64
|
+
- Interface MongoDbAtlasLinkedService has a new optional parameter driverVersion
|
|
65
|
+
- Interface ParquetSource has a new optional parameter formatSettings
|
|
66
|
+
- Interface PipelineExternalComputeScaleProperties has a new optional parameter numberOfExternalNodes
|
|
67
|
+
- Interface PipelineExternalComputeScaleProperties has a new optional parameter numberOfPipelineNodes
|
|
68
|
+
- Interface SelfHostedIntegrationRuntime has a new optional parameter selfContainedInteractiveAuthoringEnabled
|
|
69
|
+
- Interface SelfHostedIntegrationRuntimeStatus has a new optional parameter selfContainedInteractiveAuthoringEnabled
|
|
70
|
+
- Interface SetVariableActivity has a new optional parameter policy
|
|
71
|
+
- Interface SetVariableActivity has a new optional parameter setSystemVariable
|
|
72
|
+
- Interface SqlDWSource has a new optional parameter isolationLevel
|
|
73
|
+
- Interface SqlMISource has a new optional parameter isolationLevel
|
|
74
|
+
- Interface SqlServerSource has a new optional parameter isolationLevel
|
|
75
|
+
- Interface SynapseNotebookActivity has a new optional parameter configurationType
|
|
76
|
+
- Interface SynapseNotebookActivity has a new optional parameter sparkConfig
|
|
77
|
+
- Interface SynapseNotebookActivity has a new optional parameter targetSparkConfiguration
|
|
78
|
+
- Interface WebHookActivity has a new optional parameter policy
|
|
79
|
+
- Type of parameter type of interface CopySink is changed from
|
|
80
|
+
|
|
81
|
+
```
|
|
82
|
+
"DelimitedTextSink" | "JsonSink" | "OrcSink" | "RestSink" | "AzurePostgreSqlSink" | "AzureMySqlSink" | "AzureDatabricksDeltaLakeSink" | "SapCloudForCustomerSink" | "AzureQueueSink" | "AzureTableSink" | "AvroSink" | "ParquetSink" | "BinarySink" | "BlobSink" | "FileSystemSink" | "DocumentDbCollectionSink" | "CosmosDbSqlApiSink" | "SqlSink" | "SqlServerSink" | "AzureSqlSink" | "SqlMISink" | "SqlDWSink" | "SnowflakeSink" | "OracleSink" | "AzureDataLakeStoreSink" | "AzureBlobFSSink" | "AzureSearchIndexSink" | "OdbcSink" | "InformixSink" | "MicrosoftAccessSink" | "DynamicsSink" | "DynamicsCrmSink" | "CommonDataServiceForAppsSink" | "AzureDataExplorerSink" | "SalesforceSink" | "SalesforceServiceCloudSink" | "MongoDbAtlasSink" | "MongoDbV2Sink" | "CosmosDbMongoDbApiSink"
|
|
83
|
+
```
|
|
84
|
+
to
|
|
85
|
+
```
|
|
86
|
+
"DelimitedTextSink" | "JsonSink" | "OrcSink" | "RestSink" | "AzurePostgreSqlSink" | "AzureMySqlSink" | "AzureDatabricksDeltaLakeSink" | "SapCloudForCustomerSink" | "AzureQueueSink" | "AzureTableSink" | "AvroSink" | "ParquetSink" | "BinarySink" | "BlobSink" | "FileSystemSink" | "DocumentDbCollectionSink" | "CosmosDbSqlApiSink" | "SqlSink" | "SqlServerSink" | "AzureSqlSink" | "SqlMISink" | "SqlDWSink" | "SnowflakeSink" | "OracleSink" | "AzureDataLakeStoreSink" | "AzureBlobFSSink" | "AzureSearchIndexSink" | "OdbcSink" | "InformixSink" | "MicrosoftAccessSink" | "DynamicsSink" | "DynamicsCrmSink" | "CommonDataServiceForAppsSink" | "AzureDataExplorerSink" | "SalesforceSink" | "SalesforceServiceCloudSink" | "MongoDbAtlasSink" | "MongoDbV2Sink" | "CosmosDbMongoDbApiSink" | "LakeHouseTableSink"
|
|
87
|
+
```
|
|
88
|
+
- Type of parameter type of interface CopySource is changed from ```
|
|
89
|
+
"AvroSource" | "ExcelSource" | "ParquetSource" | "DelimitedTextSource" | "JsonSource" | "XmlSource" | "OrcSource" | "BinarySource" | "TabularSource" | "AzureTableSource" | "BlobSource" | "DocumentDbCollectionSource" | "CosmosDbSqlApiSource" | "DynamicsSource" | "DynamicsCrmSource" | "CommonDataServiceForAppsSource" | "RelationalSource" | "InformixSource" | "MicrosoftAccessSource" | "Db2Source" | "OdbcSource" | "MySqlSource" | "PostgreSqlSource" | "SybaseSource" | "SapBwSource" | "ODataSource" | "SalesforceSource" | "SalesforceServiceCloudSource" | "SapCloudForCustomerSource" | "SapEccSource" | "SapHanaSource" | "SapOpenHubSource" | "SapOdpSource" | "SapTableSource" | "RestSource" | "SqlSource" | "SqlServerSource" | "AmazonRdsForSqlServerSource" | "AzureSqlSource" | "SqlMISource" | "SqlDWSource" | "FileSystemSource" | "HdfsSource" | "AzureMySqlSource" | "AzureDataExplorerSource" | "OracleSource" | "AmazonRdsForOracleSource" | "TeradataSource" | "WebSource" | "CassandraSource" | "MongoDbSource" | "MongoDbAtlasSource" | "MongoDbV2Source" | "CosmosDbMongoDbApiSource" | "Office365Source" | "AzureDataLakeStoreSource" | "AzureBlobFSSource" | "HttpSource" | "AmazonMWSSource" | "AzurePostgreSqlSource" | "ConcurSource" | "CouchbaseSource" | "DrillSource" | "EloquaSource" | "GoogleBigQuerySource" | "GreenplumSource" | "HBaseSource" | "HiveSource" | "HubspotSource" | "ImpalaSource" | "JiraSource" | "MagentoSource" | "MariaDBSource" | "AzureMariaDBSource" | "MarketoSource" | "PaypalSource" | "PhoenixSource" | "PrestoSource" | "QuickBooksSource" | "ServiceNowSource" | "ShopifySource" | "SparkSource" | "SquareSource" | "XeroSource" | "ZohoSource" | "NetezzaSource" | "VerticaSource" | "SalesforceMarketingCloudSource" | "ResponsysSource" | "DynamicsAXSource" | "OracleServiceCloudSource" | "GoogleAdWordsSource" | "AmazonRedshiftSource" | "SnowflakeSource" | "AzureDatabricksDeltaLakeSource" | "SharePointOnlineListSource"
|
|
90
|
+
```
|
|
91
|
+
to
|
|
92
|
+
```
|
|
93
|
+
"AvroSource" | "ExcelSource" | "ParquetSource" | "DelimitedTextSource" | "JsonSource" | "XmlSource" | "OrcSource" | "BinarySource" | "TabularSource" | "AzureTableSource" | "BlobSource" | "DocumentDbCollectionSource" | "CosmosDbSqlApiSource" | "DynamicsSource" | "DynamicsCrmSource" | "CommonDataServiceForAppsSource" | "RelationalSource" | "InformixSource" | "MicrosoftAccessSource" | "Db2Source" | "OdbcSource" | "MySqlSource" | "PostgreSqlSource" | "SybaseSource" | "SapBwSource" | "ODataSource" | "SalesforceSource" | "SalesforceServiceCloudSource" | "SapCloudForCustomerSource" | "SapEccSource" | "SapHanaSource" | "SapOpenHubSource" | "SapOdpSource" | "SapTableSource" | "RestSource" | "SqlSource" | "SqlServerSource" | "AmazonRdsForSqlServerSource" | "AzureSqlSource" | "SqlMISource" | "SqlDWSource" | "FileSystemSource" | "HdfsSource" | "AzureMySqlSource" | "AzureDataExplorerSource" | "OracleSource" | "AmazonRdsForOracleSource" | "TeradataSource" | "WebSource" | "CassandraSource" | "MongoDbSource" | "MongoDbAtlasSource" | "MongoDbV2Source" | "CosmosDbMongoDbApiSource" | "Office365Source" | "AzureDataLakeStoreSource" | "AzureBlobFSSource" | "HttpSource" | "AmazonMWSSource" | "AzurePostgreSqlSource" | "ConcurSource" | "CouchbaseSource" | "DrillSource" | "EloquaSource" | "GoogleBigQuerySource" | "GreenplumSource" | "HBaseSource" | "HiveSource" | "HubspotSource" | "ImpalaSource" | "JiraSource" | "MagentoSource" | "MariaDBSource" | "AzureMariaDBSource" | "MarketoSource" | "PaypalSource" | "PhoenixSource" | "PrestoSource" | "QuickBooksSource" | "ServiceNowSource" | "ShopifySource" | "SparkSource" | "SquareSource" | "XeroSource" | "ZohoSource" | "NetezzaSource" | "VerticaSource" | "SalesforceMarketingCloudSource" | "ResponsysSource" | "DynamicsAXSource" | "OracleServiceCloudSource" | "GoogleAdWordsSource" | "AmazonRedshiftSource" | "LakeHouseTableSource" | "SnowflakeSource" | "AzureDatabricksDeltaLakeSource" | "SharePointOnlineListSource"
|
|
94
|
+
```
|
|
95
|
+
- Type of parameter type of interface Dataset is changed from ```
|
|
96
|
+
"AmazonS3Object" | "Avro" | "Excel" | "Parquet" | "DelimitedText" | "Json" | "Xml" | "Orc" | "Binary" | "AzureBlob" | "AzureTable" | "AzureSqlTable" | "AzureSqlMITable" | "AzureSqlDWTable" | "CassandraTable" | "CustomDataset" | "CosmosDbSqlApiCollection" | "DocumentDbCollection" | "DynamicsEntity" | "DynamicsCrmEntity" | "CommonDataServiceForAppsEntity" | "AzureDataLakeStoreFile" | "AzureBlobFSFile" | "Office365Table" | "FileShare" | "MongoDbCollection" | "MongoDbAtlasCollection" | "MongoDbV2Collection" | "CosmosDbMongoDbApiCollection" | "ODataResource" | "OracleTable" | "AmazonRdsForOracleTable" | "TeradataTable" | "AzureMySqlTable" | "AmazonRedshiftTable" | "Db2Table" | "RelationalTable" | "InformixTable" | "OdbcTable" | "MySqlTable" | "PostgreSqlTable" | "MicrosoftAccessTable" | "SalesforceObject" | "SalesforceServiceCloudObject" | "SybaseTable" | "SapBwCube" | "SapCloudForCustomerResource" | "SapEccResource" | "SapHanaTable" | "SapOpenHubTable" | "SqlServerTable" | "AmazonRdsForSqlServerTable" | "RestResource" | "SapTableResource" | "SapOdpResource" | "WebTable" | "AzureSearchIndex" | "HttpFile" | "AmazonMWSObject" | "AzurePostgreSqlTable" | "ConcurObject" | "CouchbaseTable" | "DrillTable" | "EloquaObject" | "GoogleBigQueryObject" | "GreenplumTable" | "HBaseObject" | "HiveObject" | "HubspotObject" | "ImpalaObject" | "JiraObject" | "MagentoObject" | "MariaDBTable" | "AzureMariaDBTable" | "MarketoObject" | "PaypalObject" | "PhoenixObject" | "PrestoObject" | "QuickBooksObject" | "ServiceNowObject" | "ShopifyObject" | "SparkObject" | "SquareObject" | "XeroObject" | "ZohoObject" | "NetezzaTable" | "VerticaTable" | "SalesforceMarketingCloudObject" | "ResponsysObject" | "DynamicsAXResource" | "OracleServiceCloudObject" | "AzureDataExplorerTable" | "GoogleAdWordsObject" | "SnowflakeTable" | "SharePointOnlineListResource" | "AzureDatabricksDeltaLakeDataset"
|
|
97
|
+
```
|
|
98
|
+
to
|
|
99
|
+
```
|
|
100
|
+
"AmazonS3Object" | "Avro" | "Excel" | "Parquet" | "DelimitedText" | "Json" | "Xml" | "Orc" | "Binary" | "AzureBlob" | "AzureTable" | "AzureSqlTable" | "AzureSqlMITable" | "AzureSqlDWTable" | "CassandraTable" | "CustomDataset" | "CosmosDbSqlApiCollection" | "DocumentDbCollection" | "DynamicsEntity" | "DynamicsCrmEntity" | "CommonDataServiceForAppsEntity" | "AzureDataLakeStoreFile" | "AzureBlobFSFile" | "Office365Table" | "FileShare" | "MongoDbCollection" | "MongoDbAtlasCollection" | "MongoDbV2Collection" | "CosmosDbMongoDbApiCollection" | "ODataResource" | "OracleTable" | "AmazonRdsForOracleTable" | "TeradataTable" | "AzureMySqlTable" | "AmazonRedshiftTable" | "Db2Table" | "RelationalTable" | "InformixTable" | "OdbcTable" | "MySqlTable" | "PostgreSqlTable" | "MicrosoftAccessTable" | "SalesforceObject" | "SalesforceServiceCloudObject" | "SybaseTable" | "SapBwCube" | "SapCloudForCustomerResource" | "SapEccResource" | "SapHanaTable" | "SapOpenHubTable" | "SqlServerTable" | "AmazonRdsForSqlServerTable" | "RestResource" | "SapTableResource" | "SapOdpResource" | "WebTable" | "AzureSearchIndex" | "HttpFile" | "AmazonMWSObject" | "AzurePostgreSqlTable" | "ConcurObject" | "CouchbaseTable" | "DrillTable" | "EloquaObject" | "GoogleBigQueryObject" | "GreenplumTable" | "HBaseObject" | "HiveObject" | "HubspotObject" | "ImpalaObject" | "JiraObject" | "MagentoObject" | "MariaDBTable" | "AzureMariaDBTable" | "MarketoObject" | "PaypalObject" | "PhoenixObject" | "PrestoObject" | "QuickBooksObject" | "ServiceNowObject" | "ShopifyObject" | "SparkObject" | "SquareObject" | "XeroObject" | "ZohoObject" | "NetezzaTable" | "VerticaTable" | "SalesforceMarketingCloudObject" | "ResponsysObject" | "DynamicsAXResource" | "OracleServiceCloudObject" | "AzureDataExplorerTable" | "GoogleAdWordsObject" | "SnowflakeTable" | "SharePointOnlineListResource" | "AzureDatabricksDeltaLakeDataset" | "LakeHouseTable"
|
|
101
|
+
```
|
|
102
|
+
- Type of parameter type of interface DatasetLocation is changed from
|
|
103
|
+
```
|
|
104
|
+
"AzureBlobStorageLocation" | "AzureBlobFSLocation" | "AzureDataLakeStoreLocation" | "AmazonS3Location" | "FileServerLocation" | "AzureFileStorageLocation" | "AmazonS3CompatibleLocation" | "OracleCloudStorageLocation" | "GoogleCloudStorageLocation" | "FtpServerLocation" | "SftpLocation" | "HttpServerLocation" | "HdfsLocation"
|
|
105
|
+
```
|
|
106
|
+
to
|
|
107
|
+
```
|
|
108
|
+
"AzureBlobStorageLocation" | "AzureBlobFSLocation" | "AzureDataLakeStoreLocation" | "AmazonS3Location" | "FileServerLocation" | "AzureFileStorageLocation" | "AmazonS3CompatibleLocation" | "OracleCloudStorageLocation" | "GoogleCloudStorageLocation" | "FtpServerLocation" | "SftpLocation" | "HttpServerLocation" | "HdfsLocation" | "LakeHouseLocation"
|
|
109
|
+
```
|
|
110
|
+
- Type of parameter type of interface FormatReadSettings is changed from
|
|
111
|
+
```
|
|
112
|
+
"DelimitedTextReadSettings" | "JsonReadSettings" | "XmlReadSettings" | "BinaryReadSettings"
|
|
113
|
+
```
|
|
114
|
+
to
|
|
115
|
+
```
|
|
116
|
+
"ParquetReadSettings" | "DelimitedTextReadSettings" | "JsonReadSettings" | "XmlReadSettings" | "BinaryReadSettings"
|
|
117
|
+
```
|
|
118
|
+
- Type of parameter type of interface LinkedService is changed from
|
|
119
|
+
```
|
|
120
|
+
"AzureStorage" | "AzureBlobStorage" | "AzureTableStorage" | "AzureSqlDW" | "SqlServer" | "AmazonRdsForSqlServer" | "AzureSqlDatabase" | "AzureSqlMI" | "AzureBatch" | "AzureKeyVault" | "CosmosDb" | "Dynamics" | "DynamicsCrm" | "CommonDataServiceForApps" | "HDInsight" | "FileServer" | "AzureFileStorage" | "AmazonS3Compatible" | "OracleCloudStorage" | "GoogleCloudStorage" | "Oracle" | "AmazonRdsForOracle" | "AzureMySql" | "MySql" | "PostgreSql" | "Sybase" | "Db2" | "Teradata" | "AzureML" | "AzureMLService" | "Odbc" | "Informix" | "MicrosoftAccess" | "Hdfs" | "OData" | "Web" | "Cassandra" | "MongoDb" | "MongoDbAtlas" | "MongoDbV2" | "CosmosDbMongoDbApi" | "AzureDataLakeStore" | "AzureBlobFS" | "Office365" | "Salesforce" | "SalesforceServiceCloud" | "SapCloudForCustomer" | "SapEcc" | "SapOpenHub" | "SapOdp" | "RestService" | "TeamDesk" | "Quickbase" | "Smartsheet" | "Zendesk" | "Dataworld" | "AppFigures" | "Asana" | "Twilio" | "GoogleSheets" | "AmazonS3" | "AmazonRedshift" | "CustomDataSource" | "AzureSearch" | "HttpServer" | "FtpServer" | "Sftp" | "SapBW" | "SapHana" | "AmazonMWS" | "AzurePostgreSql" | "Concur" | "Couchbase" | "Drill" | "Eloqua" | "GoogleBigQuery" | "Greenplum" | "HBase" | "Hive" | "Hubspot" | "Impala" | "Jira" | "Magento" | "MariaDB" | "AzureMariaDB" | "Marketo" | "Paypal" | "Phoenix" | "Presto" | "QuickBooks" | "ServiceNow" | "Shopify" | "Spark" | "Square" | "Xero" | "Zoho" | "Vertica" | "Netezza" | "SalesforceMarketingCloud" | "HDInsightOnDemand" | "AzureDataLakeAnalytics" | "AzureDatabricks" | "AzureDatabricksDeltaLake" | "Responsys" | "DynamicsAX" | "OracleServiceCloud" | "GoogleAdWords" | "SapTable" | "AzureDataExplorer" | "AzureFunction" | "Snowflake" | "SharePointOnlineList" | "AzureSynapseArtifacts"
|
|
121
|
+
```
|
|
122
|
+
to
|
|
123
|
+
```
|
|
124
|
+
"AzureStorage" | "AzureBlobStorage" | "AzureTableStorage" | "AzureSqlDW" | "SqlServer" | "AmazonRdsForSqlServer" | "AzureSqlDatabase" | "AzureSqlMI" | "AzureBatch" | "AzureKeyVault" | "CosmosDb" | "Dynamics" | "DynamicsCrm" | "CommonDataServiceForApps" | "HDInsight" | "FileServer" | "AzureFileStorage" | "AmazonS3Compatible" | "OracleCloudStorage" | "GoogleCloudStorage" | "Oracle" | "AmazonRdsForOracle" | "AzureMySql" | "MySql" | "PostgreSql" | "Sybase" | "Db2" | "Teradata" | "AzureML" | "AzureMLService" | "Odbc" | "Informix" | "MicrosoftAccess" | "Hdfs" | "OData" | "Web" | "Cassandra" | "MongoDb" | "MongoDbAtlas" | "MongoDbV2" | "CosmosDbMongoDbApi" | "AzureDataLakeStore" | "AzureBlobFS" | "Office365" | "Salesforce" | "SalesforceServiceCloud" | "SapCloudForCustomer" | "SapEcc" | "SapOpenHub" | "SapOdp" | "RestService" | "TeamDesk" | "Quickbase" | "Smartsheet" | "Zendesk" | "Dataworld" | "AppFigures" | "Asana" | "Twilio" | "GoogleSheets" | "AmazonS3" | "AmazonRedshift" | "CustomDataSource" | "AzureSearch" | "HttpServer" | "FtpServer" | "Sftp" | "SapBW" | "SapHana" | "AmazonMWS" | "AzurePostgreSql" | "Concur" | "Couchbase" | "Drill" | "Eloqua" | "GoogleBigQuery" | "Greenplum" | "HBase" | "Hive" | "Hubspot" | "Impala" | "Jira" | "Magento" | "MariaDB" | "AzureMariaDB" | "Marketo" | "Paypal" | "Phoenix" | "Presto" | "QuickBooks" | "ServiceNow" | "Shopify" | "Spark" | "Square" | "Xero" | "Zoho" | "Vertica" | "Netezza" | "SalesforceMarketingCloud" | "HDInsightOnDemand" | "AzureDataLakeAnalytics" | "AzureDatabricks" | "AzureDatabricksDeltaLake" | "Responsys" | "DynamicsAX" | "OracleServiceCloud" | "GoogleAdWords" | "SapTable" | "AzureDataExplorer" | "AzureFunction" | "Snowflake" | "SharePointOnlineList" | "AzureSynapseArtifacts" | "LakeHouse"
|
|
125
|
+
```
|
|
126
|
+
- Type of parameter type of interface StoreReadSettings is changed from
|
|
127
|
+
```
|
|
128
|
+
"AzureBlobStorageReadSettings" | "AzureBlobFSReadSettings" | "AzureDataLakeStoreReadSettings" | "AmazonS3ReadSettings" | "FileServerReadSettings" | "AzureFileStorageReadSettings" | "AmazonS3CompatibleReadSettings" | "OracleCloudStorageReadSettings" | "GoogleCloudStorageReadSettings" | "FtpReadSettings" | "SftpReadSettings" | "HttpReadSettings" | "HdfsReadSettings"
|
|
129
|
+
```
|
|
130
|
+
to
|
|
131
|
+
```
|
|
132
|
+
"AzureBlobStorageReadSettings" | "AzureBlobFSReadSettings" | "AzureDataLakeStoreReadSettings" | "AmazonS3ReadSettings" | "FileServerReadSettings" | "AzureFileStorageReadSettings" | "AmazonS3CompatibleReadSettings" | "OracleCloudStorageReadSettings" | "GoogleCloudStorageReadSettings" | "FtpReadSettings" | "SftpReadSettings" | "HttpReadSettings" | "HdfsReadSettings" | "LakeHouseReadSettings"
|
|
133
|
+
```
|
|
134
|
+
- Type of parameter type of interface StoreWriteSettings is changed from
|
|
135
|
+
```
|
|
136
|
+
"SftpWriteSettings" | "AzureBlobStorageWriteSettings" | "AzureBlobFSWriteSettings" | "AzureDataLakeStoreWriteSettings" | "FileServerWriteSettings" | "AzureFileStorageWriteSettings"
|
|
137
|
+
```
|
|
138
|
+
to
|
|
139
|
+
```
|
|
140
|
+
"SftpWriteSettings" | "AzureBlobStorageWriteSettings" | "AzureBlobFSWriteSettings" | "AzureDataLakeStoreWriteSettings" | "FileServerWriteSettings" | "AzureFileStorageWriteSettings" | "LakeHouseWriteSettings"
|
|
141
|
+
```
|
|
142
|
+
- Added Enum KnownActivityOnInactiveMarkAs
|
|
143
|
+
- Added Enum KnownActivityState
|
|
144
|
+
- Added Enum KnownConnectionType
|
|
145
|
+
- Added Enum KnownFrequencyType
|
|
146
|
+
- Added Enum KnownMappingType
|
|
10
147
|
|
|
11
|
-
|
|
148
|
+
**Breaking Changes**
|
|
12
149
|
|
|
150
|
+
- Interface HttpReadSettings no longer has parameter enablePartitionDiscovery
|
|
151
|
+
- Interface HttpReadSettings no longer has parameter partitionRootPath
|
|
152
|
+
- Type of parameter encryptedCredential of interface AmazonMWSLinkedService is changed from any to string
|
|
153
|
+
- Type of parameter encryptedCredential of interface AmazonRdsForOracleLinkedService is changed from any to string
|
|
154
|
+
- Type of parameter encryptedCredential of interface AmazonRdsForSqlServerLinkedService is changed from any to string
|
|
155
|
+
- Type of parameter encryptedCredential of interface AmazonRedshiftLinkedService is changed from any to string
|
|
156
|
+
- Type of parameter encryptedCredential of interface AmazonS3CompatibleLinkedService is changed from any to string
|
|
157
|
+
- Type of parameter enablePartitionDiscovery of interface AmazonS3CompatibleReadSettings is changed from boolean to any
|
|
158
|
+
- Type of parameter encryptedCredential of interface AmazonS3LinkedService is changed from any to string
|
|
159
|
+
- Type of parameter enablePartitionDiscovery of interface AmazonS3ReadSettings is changed from boolean to any
|
|
160
|
+
- Type of parameter encryptedCredential of interface AsanaLinkedService is changed from any to string
|
|
161
|
+
- Type of parameter encryptedCredential of interface AzureBatchLinkedService is changed from any to string
|
|
162
|
+
- Type of parameter encryptedCredential of interface AzureBlobFSLinkedService is changed from any to string
|
|
163
|
+
- Type of parameter enablePartitionDiscovery of interface AzureBlobFSReadSettings is changed from boolean to any
|
|
164
|
+
- Type of parameter accountKind of interface AzureBlobStorageLinkedService is changed from string to any
|
|
165
|
+
- Type of parameter serviceEndpoint of interface AzureBlobStorageLinkedService is changed from string to any
|
|
166
|
+
- Type of parameter enablePartitionDiscovery of interface AzureBlobStorageReadSettings is changed from boolean to any
|
|
167
|
+
- Type of parameter encryptedCredential of interface AzureDatabricksDeltaLakeLinkedService is changed from any to string
|
|
168
|
+
- Type of parameter encryptedCredential of interface AzureDatabricksLinkedService is changed from any to string
|
|
169
|
+
- Type of parameter encryptedCredential of interface AzureDataLakeAnalyticsLinkedService is changed from any to string
|
|
170
|
+
- Type of parameter encryptedCredential of interface AzureDataLakeStoreLinkedService is changed from any to string
|
|
171
|
+
- Type of parameter enablePartitionDiscovery of interface AzureDataLakeStoreReadSettings is changed from boolean to any
|
|
172
|
+
- Type of parameter encryptedCredential of interface AzureFileStorageLinkedService is changed from any to string
|
|
173
|
+
- Type of parameter enablePartitionDiscovery of interface AzureFileStorageReadSettings is changed from boolean to any
|
|
174
|
+
- Type of parameter encryptedCredential of interface AzureFunctionLinkedService is changed from any to string
|
|
175
|
+
- Type of parameter encryptedCredential of interface AzureMariaDBLinkedService is changed from any to string
|
|
176
|
+
- Type of parameter encryptedCredential of interface AzureMLLinkedService is changed from any to string
|
|
177
|
+
- Type of parameter encryptedCredential of interface AzureMLServiceLinkedService is changed from any to string
|
|
178
|
+
- Type of parameter encryptedCredential of interface AzureMySqlLinkedService is changed from any to string
|
|
179
|
+
- Type of parameter encryptedCredential of interface AzurePostgreSqlLinkedService is changed from any to string
|
|
180
|
+
- Type of parameter encryptedCredential of interface AzureSearchLinkedService is changed from any to string
|
|
181
|
+
- Type of parameter encryptedCredential of interface AzureSqlDatabaseLinkedService is changed from any to string
|
|
182
|
+
- Type of parameter encryptedCredential of interface AzureSqlDWLinkedService is changed from any to string
|
|
183
|
+
- Type of parameter encryptedCredential of interface AzureSqlMILinkedService is changed from any to string
|
|
184
|
+
- Type of parameter encryptedCredential of interface CassandraLinkedService is changed from any to string
|
|
185
|
+
- Type of parameter encryptedCredential of interface CommonDataServiceForAppsLinkedService is changed from any to string
|
|
186
|
+
- Type of parameter encryptedCredential of interface ConcurLinkedService is changed from any to string
|
|
187
|
+
- Type of parameter encryptedCredential of interface CosmosDbLinkedService is changed from any to string
|
|
188
|
+
- Type of parameter servicePrincipalCredentialType of interface CosmosDbLinkedService is changed from CosmosDbServicePrincipalCredentialType to any
|
|
189
|
+
- Type of parameter encryptedCredential of interface CouchbaseLinkedService is changed from any to string
|
|
190
|
+
- Type of parameter encryptedCredential of interface DataworldLinkedService is changed from any to string
|
|
191
|
+
- Type of parameter encryptedCredential of interface Db2LinkedService is changed from any to string
|
|
192
|
+
- Type of parameter encryptedCredential of interface DrillLinkedService is changed from any to string
|
|
193
|
+
- Type of parameter encryptedCredential of interface DynamicsAXLinkedService is changed from any to string
|
|
194
|
+
- Type of parameter encryptedCredential of interface DynamicsCrmLinkedService is changed from any to string
|
|
195
|
+
- Type of parameter encryptedCredential of interface DynamicsLinkedService is changed from any to string
|
|
196
|
+
- Type of parameter encryptedCredential of interface EloquaLinkedService is changed from any to string
|
|
197
|
+
- Type of parameter encryptedCredential of interface FileServerLinkedService is changed from any to string
|
|
198
|
+
- Type of parameter enablePartitionDiscovery of interface FileServerReadSettings is changed from boolean to any
|
|
199
|
+
- Type of parameter enablePartitionDiscovery of interface FtpReadSettings is changed from boolean to any
|
|
200
|
+
- Type of parameter useBinaryTransfer of interface FtpReadSettings is changed from boolean to any
|
|
201
|
+
- Type of parameter encryptedCredential of interface FtpServerLinkedService is changed from any to string
|
|
202
|
+
- Type of parameter encryptedCredential of interface GoogleAdWordsLinkedService is changed from any to string
|
|
203
|
+
- Type of parameter encryptedCredential of interface GoogleBigQueryLinkedService is changed from any to string
|
|
204
|
+
- Type of parameter encryptedCredential of interface GoogleCloudStorageLinkedService is changed from any to string
|
|
205
|
+
- Type of parameter enablePartitionDiscovery of interface GoogleCloudStorageReadSettings is changed from boolean to any
|
|
206
|
+
- Type of parameter encryptedCredential of interface GoogleSheetsLinkedService is changed from any to string
|
|
207
|
+
- Type of parameter encryptedCredential of interface GreenplumLinkedService is changed from any to string
|
|
208
|
+
- Type of parameter encryptedCredential of interface HBaseLinkedService is changed from any to string
|
|
209
|
+
- Type of parameter encryptedCredential of interface HdfsLinkedService is changed from any to string
|
|
210
|
+
- Type of parameter enablePartitionDiscovery of interface HdfsReadSettings is changed from boolean to any
|
|
211
|
+
- Type of parameter variables of interface HDInsightHiveActivity is changed from any[] to { [propertyName: string]: any; }
|
|
212
|
+
- Type of parameter encryptedCredential of interface HDInsightLinkedService is changed from any to string
|
|
213
|
+
- Type of parameter encryptedCredential of interface HDInsightOnDemandLinkedService is changed from any to string
|
|
214
|
+
- Type of parameter encryptedCredential of interface HiveLinkedService is changed from any to string
|
|
215
|
+
- Type of parameter encryptedCredential of interface HttpLinkedService is changed from any to string
|
|
216
|
+
- Type of parameter encryptedCredential of interface HubspotLinkedService is changed from any to string
|
|
217
|
+
- Type of parameter encryptedCredential of interface ImpalaLinkedService is changed from any to string
|
|
218
|
+
- Type of parameter encryptedCredential of interface InformixLinkedService is changed from any to string
|
|
219
|
+
- Type of parameter encryptedCredential of interface JiraLinkedService is changed from any to string
|
|
220
|
+
- Type of parameter encryptedCredential of interface MagentoLinkedService is changed from any to string
|
|
221
|
+
- Type of parameter encryptedCredential of interface MariaDBLinkedService is changed from any to string
|
|
222
|
+
- Type of parameter encryptedCredential of interface MarketoLinkedService is changed from any to string
|
|
223
|
+
- Type of parameter encryptedCredential of interface MicrosoftAccessLinkedService is changed from any to string
|
|
224
|
+
- Type of parameter encryptedCredential of interface MongoDbLinkedService is changed from any to string
|
|
225
|
+
- Type of parameter encryptedCredential of interface MySqlLinkedService is changed from any to string
|
|
226
|
+
- Type of parameter encryptedCredential of interface NetezzaLinkedService is changed from any to string
|
|
227
|
+
- Type of parameter encryptedCredential of interface ODataLinkedService is changed from any to string
|
|
228
|
+
- Type of parameter encryptedCredential of interface OdbcLinkedService is changed from any to string
|
|
229
|
+
- Type of parameter encryptedCredential of interface Office365LinkedService is changed from any to string
|
|
230
|
+
- Type of parameter encryptedCredential of interface OracleCloudStorageLinkedService is changed from any to string
|
|
231
|
+
- Type of parameter enablePartitionDiscovery of interface OracleCloudStorageReadSettings is changed from boolean to any
|
|
232
|
+
- Type of parameter encryptedCredential of interface OracleLinkedService is changed from any to string
|
|
233
|
+
- Type of parameter encryptedCredential of interface OracleServiceCloudLinkedService is changed from any to string
|
|
234
|
+
- Type of parameter encryptedCredential of interface PaypalLinkedService is changed from any to string
|
|
235
|
+
- Type of parameter encryptedCredential of interface PhoenixLinkedService is changed from any to string
|
|
236
|
+
- Type of parameter encryptedCredential of interface PostgreSqlLinkedService is changed from any to string
|
|
237
|
+
- Type of parameter encryptedCredential of interface PrestoLinkedService is changed from any to string
|
|
238
|
+
- Type of parameter encryptedCredential of interface QuickbaseLinkedService is changed from any to string
|
|
239
|
+
- Type of parameter encryptedCredential of interface QuickBooksLinkedService is changed from any to string
|
|
240
|
+
- Type of parameter encryptedCredential of interface ResponsysLinkedService is changed from any to string
|
|
241
|
+
- Type of parameter additionalHeaders of interface RestResourceDataset is changed from any to { [propertyName: string]: any; }
|
|
242
|
+
- Type of parameter paginationRules of interface RestResourceDataset is changed from any to { [propertyName: string]: any; }
|
|
243
|
+
- Type of parameter encryptedCredential of interface RestServiceLinkedService is changed from any to string
|
|
244
|
+
- Type of parameter encryptedCredential of interface SalesforceLinkedService is changed from any to string
|
|
245
|
+
- Type of parameter encryptedCredential of interface SalesforceMarketingCloudLinkedService is changed from any to string
|
|
246
|
+
- Type of parameter encryptedCredential of interface SalesforceServiceCloudLinkedService is changed from any to string
|
|
247
|
+
- Type of parameter readBehavior of interface SalesforceServiceCloudSource is changed from SalesforceSourceReadBehavior to any
|
|
248
|
+
- Type of parameter readBehavior of interface SalesforceSource is changed from SalesforceSourceReadBehavior to any
|
|
249
|
+
- Type of parameter encryptedCredential of interface SapBWLinkedService is changed from any to string
|
|
250
|
+
- Type of parameter encryptedCredential of interface SapCloudForCustomerLinkedService is changed from any to string
|
|
251
|
+
- Type of parameter url of interface SapEccLinkedService is changed from string to any
|
|
252
|
+
- Type of parameter username of interface SapEccLinkedService is changed from string to any
|
|
253
|
+
- Type of parameter encryptedCredential of interface SapHanaLinkedService is changed from any to string
|
|
254
|
+
- Type of parameter encryptedCredential of interface SapOdpLinkedService is changed from any to string
|
|
255
|
+
- Type of parameter encryptedCredential of interface SapOpenHubLinkedService is changed from any to string
|
|
256
|
+
- Type of parameter encryptedCredential of interface SapTableLinkedService is changed from any to string
|
|
257
|
+
- Type of parameter encryptedCredential of interface ServiceNowLinkedService is changed from any to string
|
|
258
|
+
- Type of parameter enablePartitionDiscovery of interface SftpReadSettings is changed from boolean to any
|
|
259
|
+
- Type of parameter encryptedCredential of interface SftpServerLinkedService is changed from any to string
|
|
260
|
+
- Type of parameter encryptedCredential of interface SharePointOnlineListLinkedService is changed from any to string
|
|
261
|
+
- Type of parameter encryptedCredential of interface ShopifyLinkedService is changed from any to string
|
|
262
|
+
- Type of parameter encryptedCredential of interface SmartsheetLinkedService is changed from any to string
|
|
263
|
+
- Type of parameter encryptedCredential of interface SnowflakeLinkedService is changed from any to string
|
|
264
|
+
- Type of parameter encryptedCredential of interface SparkLinkedService is changed from any to string
|
|
265
|
+
- Type of parameter encryptedCredential of interface SqlServerLinkedService is changed from any to string
|
|
266
|
+
- Type of parameter encryptedCredential of interface SquareLinkedService is changed from any to string
|
|
267
|
+
- Type of parameter encryptedCredential of interface SybaseLinkedService is changed from any to string
|
|
268
|
+
- Type of parameter numExecutors of interface SynapseNotebookActivity is changed from number to any
|
|
269
|
+
- Type of parameter encryptedCredential of interface TeamDeskLinkedService is changed from any to string
|
|
270
|
+
- Type of parameter encryptedCredential of interface TeradataLinkedService is changed from any to string
|
|
271
|
+
- Type of parameter encryptedCredential of interface VerticaLinkedService is changed from any to string
|
|
272
|
+
- Type of parameter encryptedCredential of interface XeroLinkedService is changed from any to string
|
|
273
|
+
- Type of parameter encryptedCredential of interface ZendeskLinkedService is changed from any to string
|
|
274
|
+
- Type of parameter encryptedCredential of interface ZohoLinkedService is changed from any to string
|
|
275
|
+
- Removed Enum KnownCosmosDbServicePrincipalCredentialType
|
|
276
|
+
|
|
277
|
+
|
|
13
278
|
## 11.1.0 (2023-03-02)
|
|
14
279
|
|
|
15
280
|
**Features**
|