@azure/arm-datafactory 10.1.1-alpha.20220208.1 → 10.2.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 +26 -10
- package/README.md +11 -0
- package/dist/index.js +336 -2
- 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/src/dataFactoryManagementClient.js +1 -1
- package/dist-esm/src/models/index.d.ts +203 -5
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +47 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +13 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +280 -1
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/package.json +14 -6
- package/review/arm-datafactory.api.md +159 -5
- package/rollup.config.js +6 -72
- package/src/dataFactoryManagementClient.ts +1 -1
- package/src/models/index.ts +232 -3
- package/src/models/mappers.ts +317 -1
- package/tsconfig.json +12 -4
- package/types/arm-datafactory.d.ts +223 -5
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"sdk-type": "mgmt",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "A generated SDK for DataFactoryManagementClient.",
|
|
6
|
-
"version": "10.
|
|
6
|
+
"version": "10.2.0",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=12.0.0"
|
|
9
9
|
},
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@microsoft/api-extractor": "^7.18.11",
|
|
32
32
|
"@rollup/plugin-commonjs": "^21.0.1",
|
|
33
|
-
"@rollup/plugin-json": "^4.
|
|
34
|
-
"@rollup/plugin-multi-entry": "^
|
|
35
|
-
"@rollup/plugin-node-resolve": "^
|
|
33
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
34
|
+
"@rollup/plugin-multi-entry": "^4.1.0",
|
|
35
|
+
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
36
36
|
"mkdirp": "^1.0.4",
|
|
37
|
-
"rollup": "^2.
|
|
38
|
-
"rollup-plugin-sourcemaps": "^0.
|
|
37
|
+
"rollup": "^2.66.1",
|
|
38
|
+
"rollup-plugin-sourcemaps": "^0.6.3",
|
|
39
39
|
"typescript": "~4.2.0",
|
|
40
40
|
"uglify-js": "^3.4.9",
|
|
41
41
|
"rimraf": "^3.0.0",
|
|
@@ -98,5 +98,13 @@
|
|
|
98
98
|
"docs": "echo skipped"
|
|
99
99
|
},
|
|
100
100
|
"sideEffects": false,
|
|
101
|
+
"//metadata": {
|
|
102
|
+
"constantPaths": [
|
|
103
|
+
{
|
|
104
|
+
"path": "src/dataFactoryManagementClient.ts",
|
|
105
|
+
"prefix": "packageDetails"
|
|
106
|
+
}
|
|
107
|
+
]
|
|
108
|
+
},
|
|
101
109
|
"autoPublish": true
|
|
102
110
|
}
|
|
@@ -23,7 +23,7 @@ export interface Activity {
|
|
|
23
23
|
dependsOn?: ActivityDependency[];
|
|
24
24
|
description?: string;
|
|
25
25
|
name: string;
|
|
26
|
-
type: "Container" | "Execution" | "Copy" | "HDInsightHive" | "HDInsightPig" | "HDInsightMapReduce" | "HDInsightStreaming" | "HDInsightSpark" | "ExecuteSSISPackage" | "Custom" | "SqlServerStoredProcedure" | "ExecutePipeline" | "Delete" | "AzureDataExplorerCommand" | "Lookup" | "WebActivity" | "GetMetadata" | "IfCondition" | "Switch" | "ForEach" | "AzureMLBatchExecution" | "AzureMLUpdateResource" | "AzureMLExecutePipeline" | "DataLakeAnalyticsU-SQL" | "Wait" | "Fail" | "Until" | "Validation" | "Filter" | "DatabricksNotebook" | "DatabricksSparkJar" | "DatabricksSparkPython" | "SetVariable" | "AppendVariable" | "AzureFunctionActivity" | "WebHook" | "ExecuteDataFlow" | "ExecuteWranglingDataflow";
|
|
26
|
+
type: "Container" | "Execution" | "Copy" | "HDInsightHive" | "HDInsightPig" | "HDInsightMapReduce" | "HDInsightStreaming" | "HDInsightSpark" | "ExecuteSSISPackage" | "Custom" | "SqlServerStoredProcedure" | "ExecutePipeline" | "Delete" | "AzureDataExplorerCommand" | "Lookup" | "WebActivity" | "GetMetadata" | "IfCondition" | "Switch" | "ForEach" | "AzureMLBatchExecution" | "AzureMLUpdateResource" | "AzureMLExecutePipeline" | "DataLakeAnalyticsU-SQL" | "Wait" | "Fail" | "Until" | "Validation" | "Filter" | "DatabricksNotebook" | "DatabricksSparkJar" | "DatabricksSparkPython" | "SetVariable" | "AppendVariable" | "AzureFunctionActivity" | "WebHook" | "ExecuteDataFlow" | "ExecuteWranglingDataflow" | "Script";
|
|
27
27
|
userProperties?: UserProperty[];
|
|
28
28
|
}
|
|
29
29
|
|
|
@@ -2462,13 +2462,13 @@ export type ExecuteWranglingDataflowActivity = Activity & {
|
|
|
2462
2462
|
|
|
2463
2463
|
// @public
|
|
2464
2464
|
export type ExecutionActivity = Activity & {
|
|
2465
|
-
type: "Execution" | "Copy" | "HDInsightHive" | "HDInsightPig" | "HDInsightMapReduce" | "HDInsightStreaming" | "HDInsightSpark" | "ExecuteSSISPackage" | "Custom" | "SqlServerStoredProcedure" | "Delete" | "AzureDataExplorerCommand" | "Lookup" | "WebActivity" | "GetMetadata" | "AzureMLBatchExecution" | "AzureMLUpdateResource" | "AzureMLExecutePipeline" | "DataLakeAnalyticsU-SQL" | "DatabricksNotebook" | "DatabricksSparkJar" | "DatabricksSparkPython" | "AzureFunctionActivity" | "ExecuteDataFlow";
|
|
2465
|
+
type: "Execution" | "Copy" | "HDInsightHive" | "HDInsightPig" | "HDInsightMapReduce" | "HDInsightStreaming" | "HDInsightSpark" | "ExecuteSSISPackage" | "Custom" | "SqlServerStoredProcedure" | "Delete" | "AzureDataExplorerCommand" | "Lookup" | "WebActivity" | "GetMetadata" | "AzureMLBatchExecution" | "AzureMLUpdateResource" | "AzureMLExecutePipeline" | "DataLakeAnalyticsU-SQL" | "DatabricksNotebook" | "DatabricksSparkJar" | "DatabricksSparkPython" | "AzureFunctionActivity" | "ExecuteDataFlow" | "Script";
|
|
2466
2466
|
linkedServiceName?: LinkedServiceReference;
|
|
2467
2467
|
policy?: ActivityPolicy;
|
|
2468
2468
|
};
|
|
2469
2469
|
|
|
2470
2470
|
// @public (undocumented)
|
|
2471
|
-
export type ExecutionActivityUnion = ExecutionActivity | CopyActivity | HDInsightHiveActivity | HDInsightPigActivity | HDInsightMapReduceActivity | HDInsightStreamingActivity | HDInsightSparkActivity | ExecuteSsisPackageActivity | CustomActivity | SqlServerStoredProcedureActivity | DeleteActivity | AzureDataExplorerCommandActivity | LookupActivity | WebActivity | GetMetadataActivity | AzureMLBatchExecutionActivity | AzureMLUpdateResourceActivity | AzureMLExecutePipelineActivity | DataLakeAnalyticsUsqlActivity | DatabricksNotebookActivity | DatabricksSparkJarActivity | DatabricksSparkPythonActivity | AzureFunctionActivity | ExecuteDataFlowActivity;
|
|
2471
|
+
export type ExecutionActivityUnion = ExecutionActivity | CopyActivity | HDInsightHiveActivity | HDInsightPigActivity | HDInsightMapReduceActivity | HDInsightStreamingActivity | HDInsightSparkActivity | ExecuteSsisPackageActivity | CustomActivity | SqlServerStoredProcedureActivity | DeleteActivity | AzureDataExplorerCommandActivity | LookupActivity | WebActivity | GetMetadataActivity | AzureMLBatchExecutionActivity | AzureMLUpdateResourceActivity | AzureMLExecutePipelineActivity | DataLakeAnalyticsUsqlActivity | DatabricksNotebookActivity | DatabricksSparkJarActivity | DatabricksSparkPythonActivity | AzureFunctionActivity | ExecuteDataFlowActivity | ScriptActivity;
|
|
2472
2472
|
|
|
2473
2473
|
// @public
|
|
2474
2474
|
export interface ExportSettings {
|
|
@@ -4669,6 +4669,60 @@ export enum KnownSapTablePartitionOption {
|
|
|
4669
4669
|
PartitionOnTime = "PartitionOnTime"
|
|
4670
4670
|
}
|
|
4671
4671
|
|
|
4672
|
+
// @public
|
|
4673
|
+
export enum KnownScriptActivityLogDestination {
|
|
4674
|
+
// (undocumented)
|
|
4675
|
+
ActivityOutput = "ActivityOutput",
|
|
4676
|
+
// (undocumented)
|
|
4677
|
+
ExternalStore = "ExternalStore"
|
|
4678
|
+
}
|
|
4679
|
+
|
|
4680
|
+
// @public
|
|
4681
|
+
export enum KnownScriptActivityParameterDirection {
|
|
4682
|
+
// (undocumented)
|
|
4683
|
+
Input = "Input",
|
|
4684
|
+
// (undocumented)
|
|
4685
|
+
InputOutput = "InputOutput",
|
|
4686
|
+
// (undocumented)
|
|
4687
|
+
Output = "Output"
|
|
4688
|
+
}
|
|
4689
|
+
|
|
4690
|
+
// @public
|
|
4691
|
+
export enum KnownScriptActivityParameterType {
|
|
4692
|
+
// (undocumented)
|
|
4693
|
+
Boolean = "Boolean",
|
|
4694
|
+
// (undocumented)
|
|
4695
|
+
DateTime = "DateTime",
|
|
4696
|
+
// (undocumented)
|
|
4697
|
+
DateTimeOffset = "DateTimeOffset",
|
|
4698
|
+
// (undocumented)
|
|
4699
|
+
Decimal = "Decimal",
|
|
4700
|
+
// (undocumented)
|
|
4701
|
+
Double = "Double",
|
|
4702
|
+
// (undocumented)
|
|
4703
|
+
Guid = "Guid",
|
|
4704
|
+
// (undocumented)
|
|
4705
|
+
Int16 = "Int16",
|
|
4706
|
+
// (undocumented)
|
|
4707
|
+
Int32 = "Int32",
|
|
4708
|
+
// (undocumented)
|
|
4709
|
+
Int64 = "Int64",
|
|
4710
|
+
// (undocumented)
|
|
4711
|
+
Single = "Single",
|
|
4712
|
+
// (undocumented)
|
|
4713
|
+
String = "String",
|
|
4714
|
+
// (undocumented)
|
|
4715
|
+
Timespan = "Timespan"
|
|
4716
|
+
}
|
|
4717
|
+
|
|
4718
|
+
// @public
|
|
4719
|
+
export enum KnownScriptType {
|
|
4720
|
+
// (undocumented)
|
|
4721
|
+
NonQuery = "NonQuery",
|
|
4722
|
+
// (undocumented)
|
|
4723
|
+
Query = "Query"
|
|
4724
|
+
}
|
|
4725
|
+
|
|
4672
4726
|
// @public
|
|
4673
4727
|
export enum KnownSelfHostedIntegrationRuntimeNodeStatus {
|
|
4674
4728
|
// (undocumented)
|
|
@@ -4839,6 +4893,14 @@ export enum KnownSybaseAuthenticationType {
|
|
|
4839
4893
|
Windows = "Windows"
|
|
4840
4894
|
}
|
|
4841
4895
|
|
|
4896
|
+
// @public
|
|
4897
|
+
export enum KnownTeamDeskAuthenticationType {
|
|
4898
|
+
// (undocumented)
|
|
4899
|
+
Basic = "Basic",
|
|
4900
|
+
// (undocumented)
|
|
4901
|
+
Token = "Token"
|
|
4902
|
+
}
|
|
4903
|
+
|
|
4842
4904
|
// @public
|
|
4843
4905
|
export enum KnownTeradataAuthenticationType {
|
|
4844
4906
|
// (undocumented)
|
|
@@ -4925,6 +4987,14 @@ export enum KnownWebHookActivityMethod {
|
|
|
4925
4987
|
Post = "POST"
|
|
4926
4988
|
}
|
|
4927
4989
|
|
|
4990
|
+
// @public
|
|
4991
|
+
export enum KnownZendeskAuthenticationType {
|
|
4992
|
+
// (undocumented)
|
|
4993
|
+
Basic = "Basic",
|
|
4994
|
+
// (undocumented)
|
|
4995
|
+
Token = "Token"
|
|
4996
|
+
}
|
|
4997
|
+
|
|
4928
4998
|
// @public
|
|
4929
4999
|
export interface LinkedIntegrationRuntime {
|
|
4930
5000
|
readonly createTime?: Date;
|
|
@@ -4969,7 +5039,7 @@ export interface LinkedService {
|
|
|
4969
5039
|
parameters?: {
|
|
4970
5040
|
[propertyName: string]: ParameterSpecification;
|
|
4971
5041
|
};
|
|
4972
|
-
type: "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" | "RestService" | "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";
|
|
5042
|
+
type: "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" | "RestService" | "AmazonS3" | "TeamDesk" | "Quickbase" | "Smartsheet" | "Zendesk" | "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";
|
|
4973
5043
|
}
|
|
4974
5044
|
|
|
4975
5045
|
// @public
|
|
@@ -5040,7 +5110,7 @@ export interface LinkedServicesListByFactoryOptionalParams extends coreClient.Op
|
|
|
5040
5110
|
export type LinkedServicesListByFactoryResponse = LinkedServiceListResponse;
|
|
5041
5111
|
|
|
5042
5112
|
// @public (undocumented)
|
|
5043
|
-
export type LinkedServiceUnion = LinkedService | AzureStorageLinkedService | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureSqlMILinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService | FileServerLinkedService | AzureFileStorageLinkedService | AmazonS3CompatibleLinkedService | OracleCloudStorageLinkedService | GoogleCloudStorageLinkedService | OracleLinkedService | AmazonRdsForOracleLinkedService | AzureMySqlLinkedService | MySqlLinkedService | PostgreSqlLinkedService | SybaseLinkedService | Db2LinkedService | TeradataLinkedService | AzureMLLinkedService | AzureMLServiceLinkedService | OdbcLinkedService | InformixLinkedService | MicrosoftAccessLinkedService | HdfsLinkedService | ODataLinkedService | WebLinkedService | CassandraLinkedService | MongoDbLinkedService | MongoDbAtlasLinkedService | MongoDbV2LinkedService | CosmosDbMongoDbApiLinkedService | AzureDataLakeStoreLinkedService | AzureBlobFSLinkedService | Office365LinkedService | SalesforceLinkedService | SalesforceServiceCloudLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | SapOpenHubLinkedService | RestServiceLinkedService | AmazonS3LinkedService | AmazonRedshiftLinkedService | CustomDataSourceLinkedService | AzureSearchLinkedService | HttpLinkedService | FtpServerLinkedService | SftpServerLinkedService | SapBWLinkedService | SapHanaLinkedService | AmazonMWSLinkedService | AzurePostgreSqlLinkedService | ConcurLinkedService | CouchbaseLinkedService | DrillLinkedService | EloquaLinkedService | GoogleBigQueryLinkedService | GreenplumLinkedService | HBaseLinkedService | HiveLinkedService | HubspotLinkedService | ImpalaLinkedService | JiraLinkedService | MagentoLinkedService | MariaDBLinkedService | AzureMariaDBLinkedService | MarketoLinkedService | PaypalLinkedService | PhoenixLinkedService | PrestoLinkedService | QuickBooksLinkedService | ServiceNowLinkedService | ShopifyLinkedService | SparkLinkedService | SquareLinkedService | XeroLinkedService | ZohoLinkedService | VerticaLinkedService | NetezzaLinkedService | SalesforceMarketingCloudLinkedService | HDInsightOnDemandLinkedService | AzureDataLakeAnalyticsLinkedService | AzureDatabricksLinkedService | AzureDatabricksDeltaLakeLinkedService | ResponsysLinkedService | DynamicsAXLinkedService | OracleServiceCloudLinkedService | GoogleAdWordsLinkedService | SapTableLinkedService | AzureDataExplorerLinkedService | AzureFunctionLinkedService | SnowflakeLinkedService | SharePointOnlineListLinkedService;
|
|
5113
|
+
export type LinkedServiceUnion = LinkedService | AzureStorageLinkedService | AzureBlobStorageLinkedService | AzureTableStorageLinkedService | AzureSqlDWLinkedService | SqlServerLinkedService | AmazonRdsForSqlServerLinkedService | AzureSqlDatabaseLinkedService | AzureSqlMILinkedService | AzureBatchLinkedService | AzureKeyVaultLinkedService | CosmosDbLinkedService | DynamicsLinkedService | DynamicsCrmLinkedService | CommonDataServiceForAppsLinkedService | HDInsightLinkedService | FileServerLinkedService | AzureFileStorageLinkedService | AmazonS3CompatibleLinkedService | OracleCloudStorageLinkedService | GoogleCloudStorageLinkedService | OracleLinkedService | AmazonRdsForOracleLinkedService | AzureMySqlLinkedService | MySqlLinkedService | PostgreSqlLinkedService | SybaseLinkedService | Db2LinkedService | TeradataLinkedService | AzureMLLinkedService | AzureMLServiceLinkedService | OdbcLinkedService | InformixLinkedService | MicrosoftAccessLinkedService | HdfsLinkedService | ODataLinkedService | WebLinkedService | CassandraLinkedService | MongoDbLinkedService | MongoDbAtlasLinkedService | MongoDbV2LinkedService | CosmosDbMongoDbApiLinkedService | AzureDataLakeStoreLinkedService | AzureBlobFSLinkedService | Office365LinkedService | SalesforceLinkedService | SalesforceServiceCloudLinkedService | SapCloudForCustomerLinkedService | SapEccLinkedService | SapOpenHubLinkedService | RestServiceLinkedService | AmazonS3LinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | AmazonRedshiftLinkedService | CustomDataSourceLinkedService | AzureSearchLinkedService | HttpLinkedService | FtpServerLinkedService | SftpServerLinkedService | SapBWLinkedService | SapHanaLinkedService | AmazonMWSLinkedService | AzurePostgreSqlLinkedService | ConcurLinkedService | CouchbaseLinkedService | DrillLinkedService | EloquaLinkedService | GoogleBigQueryLinkedService | GreenplumLinkedService | HBaseLinkedService | HiveLinkedService | HubspotLinkedService | ImpalaLinkedService | JiraLinkedService | MagentoLinkedService | MariaDBLinkedService | AzureMariaDBLinkedService | MarketoLinkedService | PaypalLinkedService | PhoenixLinkedService | PrestoLinkedService | QuickBooksLinkedService | ServiceNowLinkedService | ShopifyLinkedService | SparkLinkedService | SquareLinkedService | XeroLinkedService | ZohoLinkedService | VerticaLinkedService | NetezzaLinkedService | SalesforceMarketingCloudLinkedService | HDInsightOnDemandLinkedService | AzureDataLakeAnalyticsLinkedService | AzureDatabricksLinkedService | AzureDatabricksDeltaLakeLinkedService | ResponsysLinkedService | DynamicsAXLinkedService | OracleServiceCloudLinkedService | GoogleAdWordsLinkedService | SapTableLinkedService | AzureDataExplorerLinkedService | AzureFunctionLinkedService | SnowflakeLinkedService | SharePointOnlineListLinkedService;
|
|
5044
5114
|
|
|
5045
5115
|
// @public
|
|
5046
5116
|
export interface LogLocationSettings {
|
|
@@ -6311,6 +6381,14 @@ export interface QueryDataFlowDebugSessionsResponse {
|
|
|
6311
6381
|
value?: DataFlowDebugSessionInfo[];
|
|
6312
6382
|
}
|
|
6313
6383
|
|
|
6384
|
+
// @public
|
|
6385
|
+
export type QuickbaseLinkedService = LinkedService & {
|
|
6386
|
+
type: "Quickbase";
|
|
6387
|
+
url: Record<string, unknown>;
|
|
6388
|
+
userToken: SecretBaseUnion;
|
|
6389
|
+
encryptedCredential?: Record<string, unknown>;
|
|
6390
|
+
};
|
|
6391
|
+
|
|
6314
6392
|
// @public
|
|
6315
6393
|
export type QuickBooksLinkedService = LinkedService & {
|
|
6316
6394
|
type: "QuickBooks";
|
|
@@ -6848,6 +6926,47 @@ export interface ScriptAction {
|
|
|
6848
6926
|
uri: string;
|
|
6849
6927
|
}
|
|
6850
6928
|
|
|
6929
|
+
// @public
|
|
6930
|
+
export type ScriptActivity = ExecutionActivity & {
|
|
6931
|
+
type: "Script";
|
|
6932
|
+
scripts?: ScriptActivityScriptBlock[];
|
|
6933
|
+
logSettings?: ScriptActivityTypePropertiesLogSettings;
|
|
6934
|
+
};
|
|
6935
|
+
|
|
6936
|
+
// @public
|
|
6937
|
+
export type ScriptActivityLogDestination = string;
|
|
6938
|
+
|
|
6939
|
+
// @public
|
|
6940
|
+
export interface ScriptActivityParameter {
|
|
6941
|
+
direction?: ScriptActivityParameterDirection;
|
|
6942
|
+
name?: Record<string, unknown>;
|
|
6943
|
+
size?: number;
|
|
6944
|
+
type?: ScriptActivityParameterType;
|
|
6945
|
+
value?: Record<string, unknown>;
|
|
6946
|
+
}
|
|
6947
|
+
|
|
6948
|
+
// @public
|
|
6949
|
+
export type ScriptActivityParameterDirection = string;
|
|
6950
|
+
|
|
6951
|
+
// @public
|
|
6952
|
+
export type ScriptActivityParameterType = string;
|
|
6953
|
+
|
|
6954
|
+
// @public
|
|
6955
|
+
export interface ScriptActivityScriptBlock {
|
|
6956
|
+
parameters?: ScriptActivityParameter[];
|
|
6957
|
+
text: Record<string, unknown>;
|
|
6958
|
+
type: ScriptType;
|
|
6959
|
+
}
|
|
6960
|
+
|
|
6961
|
+
// @public
|
|
6962
|
+
export interface ScriptActivityTypePropertiesLogSettings {
|
|
6963
|
+
logDestination: ScriptActivityLogDestination;
|
|
6964
|
+
logLocationSettings?: LogLocationSettings;
|
|
6965
|
+
}
|
|
6966
|
+
|
|
6967
|
+
// @public
|
|
6968
|
+
export type ScriptType = string;
|
|
6969
|
+
|
|
6851
6970
|
// @public
|
|
6852
6971
|
export interface SecretBase {
|
|
6853
6972
|
type: "SecureString" | "AzureKeyVaultSecret";
|
|
@@ -7072,6 +7191,13 @@ export interface SkipErrorFile {
|
|
|
7072
7191
|
fileMissing?: Record<string, unknown>;
|
|
7073
7192
|
}
|
|
7074
7193
|
|
|
7194
|
+
// @public
|
|
7195
|
+
export type SmartsheetLinkedService = LinkedService & {
|
|
7196
|
+
type: "Smartsheet";
|
|
7197
|
+
apiToken: SecretBaseUnion;
|
|
7198
|
+
encryptedCredential?: Record<string, unknown>;
|
|
7199
|
+
};
|
|
7200
|
+
|
|
7075
7201
|
// @public
|
|
7076
7202
|
export type SnowflakeDataset = Dataset & {
|
|
7077
7203
|
type: "SnowflakeTable";
|
|
@@ -7651,6 +7777,20 @@ export type TarReadSettings = CompressionReadSettings & {
|
|
|
7651
7777
|
preserveCompressionFileNameAsFolder?: Record<string, unknown>;
|
|
7652
7778
|
};
|
|
7653
7779
|
|
|
7780
|
+
// @public
|
|
7781
|
+
export type TeamDeskAuthenticationType = string;
|
|
7782
|
+
|
|
7783
|
+
// @public
|
|
7784
|
+
export type TeamDeskLinkedService = LinkedService & {
|
|
7785
|
+
type: "TeamDesk";
|
|
7786
|
+
authenticationType: TeamDeskAuthenticationType;
|
|
7787
|
+
url: Record<string, unknown>;
|
|
7788
|
+
userName?: Record<string, unknown>;
|
|
7789
|
+
password?: SecretBaseUnion;
|
|
7790
|
+
apiToken?: SecretBaseUnion;
|
|
7791
|
+
encryptedCredential?: Record<string, unknown>;
|
|
7792
|
+
};
|
|
7793
|
+
|
|
7654
7794
|
// @public
|
|
7655
7795
|
export type TeradataAuthenticationType = string;
|
|
7656
7796
|
|
|
@@ -8197,6 +8337,20 @@ export type XmlSource = CopySource & {
|
|
|
8197
8337
|
additionalColumns?: Record<string, unknown>;
|
|
8198
8338
|
};
|
|
8199
8339
|
|
|
8340
|
+
// @public
|
|
8341
|
+
export type ZendeskAuthenticationType = string;
|
|
8342
|
+
|
|
8343
|
+
// @public
|
|
8344
|
+
export type ZendeskLinkedService = LinkedService & {
|
|
8345
|
+
type: "Zendesk";
|
|
8346
|
+
authenticationType: ZendeskAuthenticationType;
|
|
8347
|
+
url: Record<string, unknown>;
|
|
8348
|
+
userName?: Record<string, unknown>;
|
|
8349
|
+
password?: SecretBaseUnion;
|
|
8350
|
+
apiToken?: SecretBaseUnion;
|
|
8351
|
+
encryptedCredential?: Record<string, unknown>;
|
|
8352
|
+
};
|
|
8353
|
+
|
|
8200
8354
|
// @public
|
|
8201
8355
|
export type ZipDeflateReadSettings = CompressionReadSettings & {
|
|
8202
8356
|
type: "ZipDeflateReadSettings";
|
package/rollup.config.js
CHANGED
|
@@ -14,62 +14,14 @@ import json from "@rollup/plugin-json";
|
|
|
14
14
|
|
|
15
15
|
import nodeBuiltins from "builtin-modules";
|
|
16
16
|
|
|
17
|
-
/**
|
|
18
|
-
* Gets the proper configuration needed for rollup's commonJS plugin for @opentelemetry/api.
|
|
19
|
-
*
|
|
20
|
-
* NOTE: this manual configuration is only needed because OpenTelemetry uses an
|
|
21
|
-
* __exportStar downleveled helper function to declare its exports which confuses
|
|
22
|
-
* rollup's automatic discovery mechanism.
|
|
23
|
-
*
|
|
24
|
-
* @returns an object reference that can be `...`'d into your cjs() configuration.
|
|
25
|
-
*/
|
|
26
|
-
export function openTelemetryCommonJs() {
|
|
27
|
-
const namedExports = {};
|
|
28
|
-
|
|
29
|
-
for (const key of [
|
|
30
|
-
"@opentelemetry/api",
|
|
31
|
-
"@azure/core-tracing/node_modules/@opentelemetry/api"
|
|
32
|
-
]) {
|
|
33
|
-
namedExports[key] = [
|
|
34
|
-
"SpanKind",
|
|
35
|
-
"TraceFlags",
|
|
36
|
-
"getSpan",
|
|
37
|
-
"setSpan",
|
|
38
|
-
"SpanStatusCode",
|
|
39
|
-
"getSpanContext",
|
|
40
|
-
"setSpanContext"
|
|
41
|
-
];
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
const releasedOpenTelemetryVersions = ["0.10.2", "1.0.0-rc.0"];
|
|
45
|
-
|
|
46
|
-
for (const version of releasedOpenTelemetryVersions) {
|
|
47
|
-
namedExports[
|
|
48
|
-
// working around a limitation in the rollup common.js plugin - it's not able to resolve these modules so the named exports listed above will not get applied. We have to drill down to the actual path.
|
|
49
|
-
`../../../common/temp/node_modules/.pnpm/@opentelemetry/api@${version}/node_modules/@opentelemetry/api/build/src/index.js`
|
|
50
|
-
] = [
|
|
51
|
-
"SpanKind",
|
|
52
|
-
"TraceFlags",
|
|
53
|
-
"getSpan",
|
|
54
|
-
"setSpan",
|
|
55
|
-
"StatusCode",
|
|
56
|
-
"CanonicalCode",
|
|
57
|
-
"getSpanContext",
|
|
58
|
-
"setSpanContext"
|
|
59
|
-
];
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
return namedExports;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
17
|
// #region Warning Handler
|
|
66
18
|
|
|
67
19
|
/**
|
|
68
|
-
* A function that can determine whether a
|
|
20
|
+
* A function that can determine whether a rollup warning should be ignored. If
|
|
69
21
|
* the function returns `true`, then the warning will not be displayed.
|
|
70
22
|
*/
|
|
71
23
|
|
|
72
|
-
function
|
|
24
|
+
function ignoreNiseSinonEval(warning) {
|
|
73
25
|
return (
|
|
74
26
|
warning.code === "EVAL" &&
|
|
75
27
|
warning.id &&
|
|
@@ -78,17 +30,14 @@ function ignoreNiseSinonEvalWarnings(warning) {
|
|
|
78
30
|
);
|
|
79
31
|
}
|
|
80
32
|
|
|
81
|
-
function
|
|
33
|
+
function ignoreChaiCircularDependency(warning) {
|
|
82
34
|
return (
|
|
83
35
|
warning.code === "CIRCULAR_DEPENDENCY" &&
|
|
84
36
|
warning.importer && warning.importer.includes("node_modules/chai") === true
|
|
85
37
|
);
|
|
86
38
|
}
|
|
87
39
|
|
|
88
|
-
const warningInhibitors = [
|
|
89
|
-
ignoreChaiCircularDependencyWarnings,
|
|
90
|
-
ignoreNiseSinonEvalWarnings
|
|
91
|
-
];
|
|
40
|
+
const warningInhibitors = [ignoreChaiCircularDependency, ignoreNiseSinonEval];
|
|
92
41
|
|
|
93
42
|
/**
|
|
94
43
|
* Construct a warning handler for the shared rollup configuration
|
|
@@ -122,22 +71,7 @@ function makeBrowserTestConfig() {
|
|
|
122
71
|
nodeResolve({
|
|
123
72
|
mainFields: ["module", "browser"]
|
|
124
73
|
}),
|
|
125
|
-
cjs(
|
|
126
|
-
namedExports: {
|
|
127
|
-
// Chai's strange internal architecture makes it impossible to statically
|
|
128
|
-
// analyze its exports.
|
|
129
|
-
chai: [
|
|
130
|
-
"version",
|
|
131
|
-
"use",
|
|
132
|
-
"util",
|
|
133
|
-
"config",
|
|
134
|
-
"expect",
|
|
135
|
-
"should",
|
|
136
|
-
"assert"
|
|
137
|
-
],
|
|
138
|
-
...openTelemetryCommonJs()
|
|
139
|
-
}
|
|
140
|
-
}),
|
|
74
|
+
cjs(),
|
|
141
75
|
json(),
|
|
142
76
|
sourcemaps()
|
|
143
77
|
//viz({ filename: "dist-test/browser-stats.html", sourcemap: true })
|
|
@@ -173,7 +107,7 @@ export function makeConfig(pkg, options) {
|
|
|
173
107
|
],
|
|
174
108
|
output: { file: "dist/index.js", format: "cjs", sourcemap: true },
|
|
175
109
|
preserveSymlinks: false,
|
|
176
|
-
plugins: [sourcemaps(), nodeResolve()
|
|
110
|
+
plugins: [sourcemaps(), nodeResolve()]
|
|
177
111
|
};
|
|
178
112
|
|
|
179
113
|
const config = [baseConfig];
|
|
@@ -86,7 +86,7 @@ export class DataFactoryManagementClient extends coreClient.ServiceClient {
|
|
|
86
86
|
credential: credentials
|
|
87
87
|
};
|
|
88
88
|
|
|
89
|
-
const packageDetails = `azsdk-js-arm-datafactory/10.
|
|
89
|
+
const packageDetails = `azsdk-js-arm-datafactory/10.2.0`;
|
|
90
90
|
const userAgentPrefix =
|
|
91
91
|
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
92
92
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|