@azure/arm-datafactory 16.0.1-alpha.20240827.1 → 17.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 +63 -33
- package/dist/index.js +231 -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 +94 -9
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +4 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +3 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +223 -1
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/package.json +5 -5
- package/review/arm-datafactory.api.md +51 -2
- package/src/dataFactoryManagementClient.ts +1 -1
- package/src/models/index.ts +96 -7
- package/src/models/mappers.ts +255 -1
- package/types/arm-datafactory.d.ts +97 -9
package/package.json
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
"sdk-type": "mgmt",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "A generated SDK for DataFactoryManagementClient.",
|
|
6
|
-
"version": "
|
|
6
|
+
"version": "17.0.0",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=18.0.0"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@azure/core-lro": "^2.5.4",
|
|
12
|
-
"@azure/abort-controller": "^1.
|
|
12
|
+
"@azure/abort-controller": "^2.1.2",
|
|
13
13
|
"@azure/core-paging": "^1.2.0",
|
|
14
14
|
"@azure/core-client": "^1.7.0",
|
|
15
15
|
"@azure/core-auth": "^1.6.0",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"uglify-js": "^3.4.9",
|
|
35
35
|
"rimraf": "^5.0.0",
|
|
36
36
|
"dotenv": "^16.0.0",
|
|
37
|
-
"@azure/dev-tool": "
|
|
38
|
-
"@azure/identity": "^4.
|
|
37
|
+
"@azure/dev-tool": "^1.0.0",
|
|
38
|
+
"@azure/identity": "^4.2.1",
|
|
39
39
|
"@azure-tools/test-recorder": "^3.0.0",
|
|
40
40
|
"@azure-tools/test-credential": "^1.1.0",
|
|
41
41
|
"mocha": "^10.0.0",
|
|
@@ -115,4 +115,4 @@
|
|
|
115
115
|
"disableDocsMs": true,
|
|
116
116
|
"apiRefLink": "https://docs.microsoft.com/javascript/api/@azure/arm-datafactory?view=azure-node-preview"
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
@@ -739,12 +739,14 @@ export interface AzureDataLakeStoreWriteSettings extends StoreWriteSettings {
|
|
|
739
739
|
export interface AzureFileStorageLinkedService extends LinkedService {
|
|
740
740
|
accountKey?: AzureKeyVaultSecretReference;
|
|
741
741
|
connectionString?: any;
|
|
742
|
+
credential?: CredentialReference;
|
|
742
743
|
encryptedCredential?: string;
|
|
743
744
|
fileShare?: any;
|
|
744
745
|
host?: any;
|
|
745
746
|
password?: SecretBaseUnion;
|
|
746
747
|
sasToken?: AzureKeyVaultSecretReference;
|
|
747
748
|
sasUri?: any;
|
|
749
|
+
serviceEndpoint?: any;
|
|
748
750
|
snapshot?: any;
|
|
749
751
|
type: "AzureFileStorage";
|
|
750
752
|
userId?: any;
|
|
@@ -1217,6 +1219,15 @@ export interface AzureStorageLinkedService extends LinkedService {
|
|
|
1217
1219
|
type: "AzureStorage";
|
|
1218
1220
|
}
|
|
1219
1221
|
|
|
1222
|
+
// @public
|
|
1223
|
+
export interface AzureStorageLinkedServiceTypeProperties {
|
|
1224
|
+
accountKey?: AzureKeyVaultSecretReference;
|
|
1225
|
+
connectionString?: any;
|
|
1226
|
+
encryptedCredential?: string;
|
|
1227
|
+
sasToken?: AzureKeyVaultSecretReference;
|
|
1228
|
+
sasUri?: any;
|
|
1229
|
+
}
|
|
1230
|
+
|
|
1220
1231
|
// @public
|
|
1221
1232
|
export interface AzureSynapseArtifactsLinkedService extends LinkedService {
|
|
1222
1233
|
authentication?: any;
|
|
@@ -1251,12 +1262,20 @@ export interface AzureTableSource extends TabularSource {
|
|
|
1251
1262
|
export interface AzureTableStorageLinkedService extends LinkedService {
|
|
1252
1263
|
accountKey?: AzureKeyVaultSecretReference;
|
|
1253
1264
|
connectionString?: any;
|
|
1265
|
+
credential?: CredentialReference;
|
|
1254
1266
|
encryptedCredential?: string;
|
|
1255
1267
|
sasToken?: AzureKeyVaultSecretReference;
|
|
1256
1268
|
sasUri?: any;
|
|
1269
|
+
serviceEndpoint?: any;
|
|
1257
1270
|
type: "AzureTableStorage";
|
|
1258
1271
|
}
|
|
1259
1272
|
|
|
1273
|
+
// @public
|
|
1274
|
+
export interface AzureTableStorageLinkedServiceTypeProperties extends AzureStorageLinkedServiceTypeProperties {
|
|
1275
|
+
credential?: CredentialReference;
|
|
1276
|
+
serviceEndpoint?: any;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1260
1279
|
// @public
|
|
1261
1280
|
export interface BigDataPoolParametrizationReference {
|
|
1262
1281
|
referenceName: any;
|
|
@@ -1483,6 +1502,7 @@ export interface CommonDataServiceForAppsEntityDataset extends Dataset {
|
|
|
1483
1502
|
export interface CommonDataServiceForAppsLinkedService extends LinkedService {
|
|
1484
1503
|
authenticationType: any;
|
|
1485
1504
|
deploymentType: any;
|
|
1505
|
+
domain?: any;
|
|
1486
1506
|
encryptedCredential?: string;
|
|
1487
1507
|
hostName?: any;
|
|
1488
1508
|
organizationName?: any;
|
|
@@ -1568,6 +1588,13 @@ export interface ConnectionStateProperties {
|
|
|
1568
1588
|
// @public
|
|
1569
1589
|
export type ConnectionType = string;
|
|
1570
1590
|
|
|
1591
|
+
// @public
|
|
1592
|
+
export interface ContinuationSettingsReference {
|
|
1593
|
+
continuationTtlInMinutes?: any;
|
|
1594
|
+
customizedCheckpointKey?: any;
|
|
1595
|
+
idleCondition?: any;
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1571
1598
|
// @public
|
|
1572
1599
|
export interface ControlActivity extends Activity {
|
|
1573
1600
|
type: "Container" | "ExecutePipeline" | "IfCondition" | "Switch" | "ForEach" | "Wait" | "Fail" | "Until" | "Validation" | "Filter" | "SetVariable" | "AppendVariable" | "WebHook";
|
|
@@ -2606,6 +2633,7 @@ export interface DynamicsCrmLinkedService extends LinkedService {
|
|
|
2606
2633
|
authenticationType: any;
|
|
2607
2634
|
credential?: CredentialReference;
|
|
2608
2635
|
deploymentType: any;
|
|
2636
|
+
domain?: any;
|
|
2609
2637
|
encryptedCredential?: string;
|
|
2610
2638
|
hostName?: any;
|
|
2611
2639
|
organizationName?: any;
|
|
@@ -2648,6 +2676,7 @@ export interface DynamicsLinkedService extends LinkedService {
|
|
|
2648
2676
|
authenticationType: any;
|
|
2649
2677
|
credential?: CredentialReference;
|
|
2650
2678
|
deploymentType: any;
|
|
2679
|
+
domain?: any;
|
|
2651
2680
|
encryptedCredential?: string;
|
|
2652
2681
|
hostName?: any;
|
|
2653
2682
|
organizationName?: any;
|
|
@@ -2749,6 +2778,7 @@ export interface ExcelSource extends CopySource {
|
|
|
2749
2778
|
// @public
|
|
2750
2779
|
export interface ExecuteDataFlowActivity extends ExecutionActivity {
|
|
2751
2780
|
compute?: ExecuteDataFlowActivityTypePropertiesCompute;
|
|
2781
|
+
continuationSettings?: ContinuationSettingsReference;
|
|
2752
2782
|
continueOnError?: any;
|
|
2753
2783
|
dataFlow: DataFlowReference;
|
|
2754
2784
|
integrationRuntime?: IntegrationRuntimeReference;
|
|
@@ -2762,6 +2792,7 @@ export interface ExecuteDataFlowActivity extends ExecutionActivity {
|
|
|
2762
2792
|
// @public
|
|
2763
2793
|
export interface ExecuteDataFlowActivityTypeProperties {
|
|
2764
2794
|
compute?: ExecuteDataFlowActivityTypePropertiesCompute;
|
|
2795
|
+
continuationSettings?: ContinuationSettingsReference;
|
|
2765
2796
|
continueOnError?: any;
|
|
2766
2797
|
dataFlow: DataFlowReference;
|
|
2767
2798
|
integrationRuntime?: IntegrationRuntimeReference;
|
|
@@ -2836,6 +2867,7 @@ export interface ExecuteSsisPackageActivity extends ExecutionActivity {
|
|
|
2836
2867
|
// @public
|
|
2837
2868
|
export interface ExecuteWranglingDataflowActivity extends Activity {
|
|
2838
2869
|
compute?: ExecuteDataFlowActivityTypePropertiesCompute;
|
|
2870
|
+
continuationSettings?: ContinuationSettingsReference;
|
|
2839
2871
|
continueOnError?: any;
|
|
2840
2872
|
dataFlow: DataFlowReference;
|
|
2841
2873
|
integrationRuntime?: IntegrationRuntimeReference;
|
|
@@ -3667,7 +3699,7 @@ export interface HDInsightOnDemandLinkedService extends LinkedService {
|
|
|
3667
3699
|
tenant: any;
|
|
3668
3700
|
timeToLive: any;
|
|
3669
3701
|
type: "HDInsightOnDemand";
|
|
3670
|
-
|
|
3702
|
+
versionTypePropertiesVersion: any;
|
|
3671
3703
|
virtualNetworkId?: any;
|
|
3672
3704
|
yarnConfiguration?: any;
|
|
3673
3705
|
zookeeperNodeSize?: any;
|
|
@@ -4622,6 +4654,7 @@ export enum KnownDependencyCondition {
|
|
|
4622
4654
|
// @public
|
|
4623
4655
|
export enum KnownDynamicsAuthenticationType {
|
|
4624
4656
|
AADServicePrincipal = "AADServicePrincipal",
|
|
4657
|
+
ActiveDirectory = "Active Directory",
|
|
4625
4658
|
Ifd = "Ifd",
|
|
4626
4659
|
Office365 = "Office365"
|
|
4627
4660
|
}
|
|
@@ -5200,6 +5233,7 @@ export enum KnownSqlPartitionOption {
|
|
|
5200
5233
|
// @public
|
|
5201
5234
|
export enum KnownSqlServerAuthenticationType {
|
|
5202
5235
|
SQL = "SQL",
|
|
5236
|
+
UserAssignedManagedIdentity = "UserAssignedManagedIdentity",
|
|
5203
5237
|
Windows = "Windows"
|
|
5204
5238
|
}
|
|
5205
5239
|
|
|
@@ -5436,6 +5470,7 @@ export interface LinkedService {
|
|
|
5436
5470
|
[propertyName: string]: ParameterSpecification;
|
|
5437
5471
|
};
|
|
5438
5472
|
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" | "PostgreSqlV2" | "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" | "GoogleBigQueryV2" | "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" | "SnowflakeV2" | "SharePointOnlineList" | "AzureSynapseArtifacts" | "LakeHouse" | "SalesforceV2" | "SalesforceServiceCloudV2" | "Warehouse" | "ServiceNowV2";
|
|
5473
|
+
version?: string;
|
|
5439
5474
|
}
|
|
5440
5475
|
|
|
5441
5476
|
// @public
|
|
@@ -7121,6 +7156,9 @@ export interface RestServiceLinkedService extends LinkedService {
|
|
|
7121
7156
|
password?: SecretBaseUnion;
|
|
7122
7157
|
resource?: any;
|
|
7123
7158
|
scope?: any;
|
|
7159
|
+
servicePrincipalCredentialType?: any;
|
|
7160
|
+
servicePrincipalEmbeddedCert?: SecretBaseUnion;
|
|
7161
|
+
servicePrincipalEmbeddedCertPassword?: SecretBaseUnion;
|
|
7124
7162
|
servicePrincipalId?: any;
|
|
7125
7163
|
servicePrincipalKey?: SecretBaseUnion;
|
|
7126
7164
|
tenant?: any;
|
|
@@ -7878,8 +7916,11 @@ export interface SftpWriteSettings extends StoreWriteSettings {
|
|
|
7878
7916
|
// @public
|
|
7879
7917
|
export interface SharePointOnlineListLinkedService extends LinkedService {
|
|
7880
7918
|
encryptedCredential?: string;
|
|
7919
|
+
servicePrincipalCredentialType?: any;
|
|
7920
|
+
servicePrincipalEmbeddedCert?: SecretBaseUnion;
|
|
7921
|
+
servicePrincipalEmbeddedCertPassword?: SecretBaseUnion;
|
|
7881
7922
|
servicePrincipalId: any;
|
|
7882
|
-
servicePrincipalKey
|
|
7923
|
+
servicePrincipalKey?: SecretBaseUnion;
|
|
7883
7924
|
siteUrl: any;
|
|
7884
7925
|
tenantId: any;
|
|
7885
7926
|
type: "SharePointOnlineList";
|
|
@@ -7952,6 +7993,7 @@ export interface SnowflakeExportCopyCommand extends ExportSettings {
|
|
|
7952
7993
|
additionalFormatOptions?: {
|
|
7953
7994
|
[propertyName: string]: any;
|
|
7954
7995
|
};
|
|
7996
|
+
storageIntegration?: any;
|
|
7955
7997
|
type: "SnowflakeExportCopyCommand";
|
|
7956
7998
|
}
|
|
7957
7999
|
|
|
@@ -7963,6 +8005,7 @@ export interface SnowflakeImportCopyCommand extends ImportSettings {
|
|
|
7963
8005
|
additionalFormatOptions?: {
|
|
7964
8006
|
[propertyName: string]: any;
|
|
7965
8007
|
};
|
|
8008
|
+
storageIntegration?: any;
|
|
7966
8009
|
type: "SnowflakeImportCopyCommand";
|
|
7967
8010
|
}
|
|
7968
8011
|
|
|
@@ -8198,6 +8241,7 @@ export interface SqlServerLinkedService extends LinkedService {
|
|
|
8198
8241
|
connectRetryCount?: any;
|
|
8199
8242
|
connectRetryInterval?: any;
|
|
8200
8243
|
connectTimeout?: any;
|
|
8244
|
+
credential?: CredentialReference;
|
|
8201
8245
|
database?: any;
|
|
8202
8246
|
encrypt?: any;
|
|
8203
8247
|
encryptedCredential?: string;
|
|
@@ -8223,6 +8267,7 @@ export interface SqlServerLinkedServiceTypeProperties extends SqlServerBaseLinke
|
|
|
8223
8267
|
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
8224
8268
|
authenticationType?: SqlServerAuthenticationType;
|
|
8225
8269
|
connectionString?: any;
|
|
8270
|
+
credential?: CredentialReference;
|
|
8226
8271
|
encryptedCredential?: string;
|
|
8227
8272
|
password?: SecretBaseUnion;
|
|
8228
8273
|
userName?: any;
|
|
@@ -9063,9 +9108,13 @@ export type VariableType = string;
|
|
|
9063
9108
|
// @public
|
|
9064
9109
|
export interface VerticaLinkedService extends LinkedService {
|
|
9065
9110
|
connectionString?: any;
|
|
9111
|
+
database?: any;
|
|
9066
9112
|
encryptedCredential?: string;
|
|
9113
|
+
port?: any;
|
|
9067
9114
|
pwd?: AzureKeyVaultSecretReference;
|
|
9115
|
+
server?: any;
|
|
9068
9116
|
type: "Vertica";
|
|
9117
|
+
uid?: any;
|
|
9069
9118
|
}
|
|
9070
9119
|
|
|
9071
9120
|
// @public
|
|
@@ -98,7 +98,7 @@ export class DataFactoryManagementClient extends coreClient.ServiceClient {
|
|
|
98
98
|
credential: credentials,
|
|
99
99
|
};
|
|
100
100
|
|
|
101
|
-
const packageDetails = `azsdk-js-arm-datafactory/
|
|
101
|
+
const packageDetails = `azsdk-js-arm-datafactory/17.0.0`;
|
|
102
102
|
const userAgentPrefix =
|
|
103
103
|
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
104
104
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
package/src/models/index.ts
CHANGED
|
@@ -1403,6 +1403,8 @@ export interface LinkedService {
|
|
|
1403
1403
|
| "ServiceNowV2";
|
|
1404
1404
|
/** Describes unknown properties. The value of an unknown property can be of "any" type. */
|
|
1405
1405
|
[property: string]: any;
|
|
1406
|
+
/** Version of the linked service. */
|
|
1407
|
+
version?: string;
|
|
1406
1408
|
/** The integration runtime reference. */
|
|
1407
1409
|
connectVia?: IntegrationRuntimeReference;
|
|
1408
1410
|
/** Linked service description. */
|
|
@@ -3056,6 +3058,20 @@ export interface SsisVariable {
|
|
|
3056
3058
|
sensitiveValue?: string;
|
|
3057
3059
|
}
|
|
3058
3060
|
|
|
3061
|
+
/** Azure Storage linked service properties. */
|
|
3062
|
+
export interface AzureStorageLinkedServiceTypeProperties {
|
|
3063
|
+
/** The connection string. It is mutually exclusive with sasUri property. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
3064
|
+
connectionString?: any;
|
|
3065
|
+
/** The Azure key vault secret reference of accountKey in connection string. */
|
|
3066
|
+
accountKey?: AzureKeyVaultSecretReference;
|
|
3067
|
+
/** SAS URI of the Azure Storage resource. It is mutually exclusive with connectionString property. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
3068
|
+
sasUri?: any;
|
|
3069
|
+
/** The Azure key vault secret reference of sasToken in sas uri. */
|
|
3070
|
+
sasToken?: AzureKeyVaultSecretReference;
|
|
3071
|
+
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
3072
|
+
encryptedCredential?: string;
|
|
3073
|
+
}
|
|
3074
|
+
|
|
3059
3075
|
/** Sql Server family connector common linked service properties. */
|
|
3060
3076
|
export interface SqlServerBaseLinkedServiceTypeProperties {
|
|
3061
3077
|
/** The name or network address of the instance of SQL Server to which to connect, used by recommended version. Type: string (or Expression with resultType string). */
|
|
@@ -3853,6 +3869,8 @@ export interface ExecuteDataFlowActivityTypeProperties {
|
|
|
3853
3869
|
staging?: DataFlowStagingInfo;
|
|
3854
3870
|
/** The integration runtime reference. */
|
|
3855
3871
|
integrationRuntime?: IntegrationRuntimeReference;
|
|
3872
|
+
/** Continuation settings for execute data flow activity. */
|
|
3873
|
+
continuationSettings?: ContinuationSettingsReference;
|
|
3856
3874
|
/** Compute properties for data flow activity. */
|
|
3857
3875
|
compute?: ExecuteDataFlowActivityTypePropertiesCompute;
|
|
3858
3876
|
/** Trace level setting used for data flow monitoring output. Supported values are: 'coarse', 'fine', and 'none'. Type: string (or Expression with resultType string) */
|
|
@@ -3865,6 +3883,16 @@ export interface ExecuteDataFlowActivityTypeProperties {
|
|
|
3865
3883
|
sourceStagingConcurrency?: any;
|
|
3866
3884
|
}
|
|
3867
3885
|
|
|
3886
|
+
/** Continuation settings for execute data flow activity. */
|
|
3887
|
+
export interface ContinuationSettingsReference {
|
|
3888
|
+
/** Continuation TTL in minutes. */
|
|
3889
|
+
continuationTtlInMinutes?: any;
|
|
3890
|
+
/** Idle condition. */
|
|
3891
|
+
idleCondition?: any;
|
|
3892
|
+
/** Customized checkpoint key. */
|
|
3893
|
+
customizedCheckpointKey?: any;
|
|
3894
|
+
}
|
|
3895
|
+
|
|
3868
3896
|
/** Compute properties for data flow activity. */
|
|
3869
3897
|
export interface ExecuteDataFlowActivityTypePropertiesCompute {
|
|
3870
3898
|
/** Compute type of the cluster which will execute data flow job. Possible values include: 'General', 'MemoryOptimized', 'ComputeOptimized'. Type: string (or Expression with resultType string) */
|
|
@@ -4456,6 +4484,10 @@ export interface AzureTableStorageLinkedService extends LinkedService {
|
|
|
4456
4484
|
sasToken?: AzureKeyVaultSecretReference;
|
|
4457
4485
|
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4458
4486
|
encryptedCredential?: string;
|
|
4487
|
+
/** Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property. */
|
|
4488
|
+
serviceEndpoint?: any;
|
|
4489
|
+
/** The credential reference containing authentication information. */
|
|
4490
|
+
credential?: CredentialReference;
|
|
4459
4491
|
}
|
|
4460
4492
|
|
|
4461
4493
|
/** Azure SQL Data Warehouse linked service. */
|
|
@@ -4580,6 +4612,8 @@ export interface SqlServerLinkedService extends LinkedService {
|
|
|
4580
4612
|
encryptedCredential?: string;
|
|
4581
4613
|
/** Sql always encrypted properties. */
|
|
4582
4614
|
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
4615
|
+
/** The credential reference containing authentication information. */
|
|
4616
|
+
credential?: CredentialReference;
|
|
4583
4617
|
}
|
|
4584
4618
|
|
|
4585
4619
|
/** Amazon RDS for SQL Server linked service. */
|
|
@@ -4852,8 +4886,10 @@ export interface DynamicsLinkedService extends LinkedService {
|
|
|
4852
4886
|
serviceUri?: any;
|
|
4853
4887
|
/** The organization name of the Dynamics instance. The property is required for on-prem and required for online when there are more than one Dynamics instances associated with the user. Type: string (or Expression with resultType string). */
|
|
4854
4888
|
organizationName?: any;
|
|
4855
|
-
/** The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string). */
|
|
4889
|
+
/** The authentication type to connect to Dynamics server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string). */
|
|
4856
4890
|
authenticationType: any;
|
|
4891
|
+
/** The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string). */
|
|
4892
|
+
domain?: any;
|
|
4857
4893
|
/** User name to access the Dynamics instance. Type: string (or Expression with resultType string). */
|
|
4858
4894
|
username?: any;
|
|
4859
4895
|
/** Password to access the Dynamics instance. */
|
|
@@ -4884,8 +4920,10 @@ export interface DynamicsCrmLinkedService extends LinkedService {
|
|
|
4884
4920
|
serviceUri?: any;
|
|
4885
4921
|
/** The organization name of the Dynamics CRM instance. The property is required for on-prem and required for online when there are more than one Dynamics CRM instances associated with the user. Type: string (or Expression with resultType string). */
|
|
4886
4922
|
organizationName?: any;
|
|
4887
|
-
/** The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string). */
|
|
4923
|
+
/** The authentication type to connect to Dynamics CRM server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario, 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string). */
|
|
4888
4924
|
authenticationType: any;
|
|
4925
|
+
/** The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string). */
|
|
4926
|
+
domain?: any;
|
|
4889
4927
|
/** User name to access the Dynamics CRM instance. Type: string (or Expression with resultType string). */
|
|
4890
4928
|
username?: any;
|
|
4891
4929
|
/** Password to access the Dynamics CRM instance. */
|
|
@@ -4916,8 +4954,10 @@ export interface CommonDataServiceForAppsLinkedService extends LinkedService {
|
|
|
4916
4954
|
serviceUri?: any;
|
|
4917
4955
|
/** The organization name of the Common Data Service for Apps instance. The property is required for on-prem and required for online when there are more than one Common Data Service for Apps instances associated with the user. Type: string (or Expression with resultType string). */
|
|
4918
4956
|
organizationName?: any;
|
|
4919
|
-
/** The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario. Type: string (or Expression with resultType string). */
|
|
4957
|
+
/** The authentication type to connect to Common Data Service for Apps server. 'Office365' for online scenario, 'Ifd' for on-premises with Ifd scenario. 'AADServicePrincipal' for Server-To-Server authentication in online scenario, 'Active Directory' for Dynamics on-premises with IFD. Type: string (or Expression with resultType string). */
|
|
4920
4958
|
authenticationType: any;
|
|
4959
|
+
/** The Active Directory domain that will verify user credentials. Type: string (or Expression with resultType string). */
|
|
4960
|
+
domain?: any;
|
|
4921
4961
|
/** User name to access the Common Data Service for Apps instance. Type: string (or Expression with resultType string). */
|
|
4922
4962
|
username?: any;
|
|
4923
4963
|
/** Password to access the Common Data Service for Apps instance. */
|
|
@@ -4992,6 +5032,10 @@ export interface AzureFileStorageLinkedService extends LinkedService {
|
|
|
4992
5032
|
snapshot?: any;
|
|
4993
5033
|
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
4994
5034
|
encryptedCredential?: string;
|
|
5035
|
+
/** File service endpoint of the Azure File Storage resource. It is mutually exclusive with connectionString, sasUri property. */
|
|
5036
|
+
serviceEndpoint?: any;
|
|
5037
|
+
/** The credential reference containing authentication information. */
|
|
5038
|
+
credential?: CredentialReference;
|
|
4995
5039
|
}
|
|
4996
5040
|
|
|
4997
5041
|
/** Linked service for Amazon S3 Compatible. */
|
|
@@ -5700,6 +5744,12 @@ export interface RestServiceLinkedService extends LinkedService {
|
|
|
5700
5744
|
resource?: any;
|
|
5701
5745
|
/** The scope of the access required. It describes what kind of access will be requested. Type: string (or Expression with resultType string). */
|
|
5702
5746
|
scope?: any;
|
|
5747
|
+
/** The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string). */
|
|
5748
|
+
servicePrincipalCredentialType?: any;
|
|
5749
|
+
/** Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string). */
|
|
5750
|
+
servicePrincipalEmbeddedCert?: SecretBaseUnion;
|
|
5751
|
+
/** Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string). */
|
|
5752
|
+
servicePrincipalEmbeddedCertPassword?: SecretBaseUnion;
|
|
5703
5753
|
}
|
|
5704
5754
|
|
|
5705
5755
|
/** Linked service for TeamDesk. */
|
|
@@ -6617,6 +6667,14 @@ export interface VerticaLinkedService extends LinkedService {
|
|
|
6617
6667
|
type: "Vertica";
|
|
6618
6668
|
/** An ODBC connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
|
|
6619
6669
|
connectionString?: any;
|
|
6670
|
+
/** Server name for connection. Type: string. */
|
|
6671
|
+
server?: any;
|
|
6672
|
+
/** The port for the connection. Type: integer. */
|
|
6673
|
+
port?: any;
|
|
6674
|
+
/** Username for authentication. Type: string. */
|
|
6675
|
+
uid?: any;
|
|
6676
|
+
/** Database name for connection. Type: string. */
|
|
6677
|
+
database?: any;
|
|
6620
6678
|
/** The Azure key vault secret reference of password in connection string. */
|
|
6621
6679
|
pwd?: AzureKeyVaultSecretReference;
|
|
6622
6680
|
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
@@ -6664,7 +6722,7 @@ export interface HDInsightOnDemandLinkedService extends LinkedService {
|
|
|
6664
6722
|
/** The allowed idle time for the on-demand HDInsight cluster. Specifies how long the on-demand HDInsight cluster stays alive after completion of an activity run if there are no other active jobs in the cluster. The minimum value is 5 mins. Type: string (or Expression with resultType string). */
|
|
6665
6723
|
timeToLive: any;
|
|
6666
6724
|
/** Version of the HDInsight cluster. Type: string (or Expression with resultType string). */
|
|
6667
|
-
|
|
6725
|
+
versionTypePropertiesVersion: any;
|
|
6668
6726
|
/** Azure Storage linked service to be used by the on-demand cluster for storing and processing data. */
|
|
6669
6727
|
linkedServiceName: LinkedServiceReference;
|
|
6670
6728
|
/** The customer’s subscription to host the cluster. Type: string (or Expression with resultType string). */
|
|
@@ -7038,7 +7096,13 @@ export interface SharePointOnlineListLinkedService extends LinkedService {
|
|
|
7038
7096
|
/** The application (client) ID of your application registered in Azure Active Directory. Make sure to grant SharePoint site permission to this application. Type: string (or Expression with resultType string). */
|
|
7039
7097
|
servicePrincipalId: any;
|
|
7040
7098
|
/** The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string). */
|
|
7041
|
-
servicePrincipalKey
|
|
7099
|
+
servicePrincipalKey?: SecretBaseUnion;
|
|
7100
|
+
/** The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string). */
|
|
7101
|
+
servicePrincipalCredentialType?: any;
|
|
7102
|
+
/** Specify the base64 encoded certificate of your application registered in Azure Active Directory. Type: string (or Expression with resultType string). */
|
|
7103
|
+
servicePrincipalEmbeddedCert?: SecretBaseUnion;
|
|
7104
|
+
/** Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string). */
|
|
7105
|
+
servicePrincipalEmbeddedCertPassword?: SecretBaseUnion;
|
|
7042
7106
|
/** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
|
|
7043
7107
|
encryptedCredential?: string;
|
|
7044
7108
|
}
|
|
@@ -8294,6 +8358,8 @@ export interface ExecuteWranglingDataflowActivity extends Activity {
|
|
|
8294
8358
|
staging?: DataFlowStagingInfo;
|
|
8295
8359
|
/** The integration runtime reference. */
|
|
8296
8360
|
integrationRuntime?: IntegrationRuntimeReference;
|
|
8361
|
+
/** Continuation settings for execute data flow activity. */
|
|
8362
|
+
continuationSettings?: ContinuationSettingsReference;
|
|
8297
8363
|
/** Compute properties for data flow activity. */
|
|
8298
8364
|
compute?: ExecuteDataFlowActivityTypePropertiesCompute;
|
|
8299
8365
|
/** Trace level setting used for data flow monitoring output. Supported values are: 'coarse', 'fine', and 'none'. Type: string (or Expression with resultType string) */
|
|
@@ -8720,6 +8786,15 @@ export interface LinkedIntegrationRuntimeRbacAuthorization
|
|
|
8720
8786
|
credential?: CredentialReference;
|
|
8721
8787
|
}
|
|
8722
8788
|
|
|
8789
|
+
/** Azure Table Storage linked service properties. */
|
|
8790
|
+
export interface AzureTableStorageLinkedServiceTypeProperties
|
|
8791
|
+
extends AzureStorageLinkedServiceTypeProperties {
|
|
8792
|
+
/** Table service endpoint of the Azure Table Storage resource. It is mutually exclusive with connectionString, sasUri property. */
|
|
8793
|
+
serviceEndpoint?: any;
|
|
8794
|
+
/** The credential reference containing authentication information. */
|
|
8795
|
+
credential?: CredentialReference;
|
|
8796
|
+
}
|
|
8797
|
+
|
|
8723
8798
|
/** Azure SQL Data Warehouse linked service properties. */
|
|
8724
8799
|
export interface AzureSqlDWLinkedServiceTypeProperties
|
|
8725
8800
|
extends SqlServerBaseLinkedServiceTypeProperties {
|
|
@@ -8764,6 +8839,8 @@ export interface SqlServerLinkedServiceTypeProperties
|
|
|
8764
8839
|
encryptedCredential?: string;
|
|
8765
8840
|
/** Sql always encrypted properties. */
|
|
8766
8841
|
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
8842
|
+
/** The credential reference containing authentication information. */
|
|
8843
|
+
credential?: CredentialReference;
|
|
8767
8844
|
}
|
|
8768
8845
|
|
|
8769
8846
|
/** Amazon Rds for SQL Server linked service properties. */
|
|
@@ -10476,6 +10553,8 @@ export interface SnowflakeExportCopyCommand extends ExportSettings {
|
|
|
10476
10553
|
additionalCopyOptions?: { [propertyName: string]: any };
|
|
10477
10554
|
/** Additional format options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalFormatOptions": { "OVERWRITE": "TRUE", "MAX_FILE_SIZE": "'FALSE'" } */
|
|
10478
10555
|
additionalFormatOptions?: { [propertyName: string]: any };
|
|
10556
|
+
/** The name of the snowflake storage integration to use for the copy operation. Type: string (or Expression with resultType string). */
|
|
10557
|
+
storageIntegration?: any;
|
|
10479
10558
|
}
|
|
10480
10559
|
|
|
10481
10560
|
/** Azure Databricks Delta Lake export command settings. */
|
|
@@ -10506,6 +10585,8 @@ export interface SnowflakeImportCopyCommand extends ImportSettings {
|
|
|
10506
10585
|
additionalCopyOptions?: { [propertyName: string]: any };
|
|
10507
10586
|
/** Additional format options directly passed to snowflake Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalFormatOptions": { "FORCE": "TRUE", "LOAD_UNCERTAIN_FILES": "'FALSE'" } */
|
|
10508
10587
|
additionalFormatOptions?: { [propertyName: string]: any };
|
|
10588
|
+
/** The name of the snowflake storage integration to use for the copy operation. Type: string (or Expression with resultType string). */
|
|
10589
|
+
storageIntegration?: any;
|
|
10509
10590
|
}
|
|
10510
10591
|
|
|
10511
10592
|
/** A copy activity tabular translator. */
|
|
@@ -11138,6 +11219,8 @@ export interface ExecuteDataFlowActivity extends ExecutionActivity {
|
|
|
11138
11219
|
staging?: DataFlowStagingInfo;
|
|
11139
11220
|
/** The integration runtime reference. */
|
|
11140
11221
|
integrationRuntime?: IntegrationRuntimeReference;
|
|
11222
|
+
/** Continuation settings for execute data flow activity. */
|
|
11223
|
+
continuationSettings?: ContinuationSettingsReference;
|
|
11141
11224
|
/** Compute properties for data flow activity. */
|
|
11142
11225
|
compute?: ExecuteDataFlowActivityTypePropertiesCompute;
|
|
11143
11226
|
/** Trace level setting used for data flow monitoring output. Supported values are: 'coarse', 'fine', and 'none'. Type: string (or Expression with resultType string) */
|
|
@@ -12858,6 +12941,8 @@ export enum KnownSqlServerAuthenticationType {
|
|
|
12858
12941
|
SQL = "SQL",
|
|
12859
12942
|
/** Windows */
|
|
12860
12943
|
Windows = "Windows",
|
|
12944
|
+
/** UserAssignedManagedIdentity */
|
|
12945
|
+
UserAssignedManagedIdentity = "UserAssignedManagedIdentity",
|
|
12861
12946
|
}
|
|
12862
12947
|
|
|
12863
12948
|
/**
|
|
@@ -12866,7 +12951,8 @@ export enum KnownSqlServerAuthenticationType {
|
|
|
12866
12951
|
* this enum contains the known values that the service supports.
|
|
12867
12952
|
* ### Known values supported by the service
|
|
12868
12953
|
* **SQL** \
|
|
12869
|
-
* **Windows**
|
|
12954
|
+
* **Windows** \
|
|
12955
|
+
* **UserAssignedManagedIdentity**
|
|
12870
12956
|
*/
|
|
12871
12957
|
export type SqlServerAuthenticationType = string;
|
|
12872
12958
|
|
|
@@ -14351,6 +14437,8 @@ export enum KnownDynamicsAuthenticationType {
|
|
|
14351
14437
|
Ifd = "Ifd",
|
|
14352
14438
|
/** AADServicePrincipal */
|
|
14353
14439
|
AADServicePrincipal = "AADServicePrincipal",
|
|
14440
|
+
/** ActiveDirectory */
|
|
14441
|
+
ActiveDirectory = "Active Directory",
|
|
14354
14442
|
}
|
|
14355
14443
|
|
|
14356
14444
|
/**
|
|
@@ -14360,7 +14448,8 @@ export enum KnownDynamicsAuthenticationType {
|
|
|
14360
14448
|
* ### Known values supported by the service
|
|
14361
14449
|
* **Office365** \
|
|
14362
14450
|
* **Ifd** \
|
|
14363
|
-
* **AADServicePrincipal**
|
|
14451
|
+
* **AADServicePrincipal** \
|
|
14452
|
+
* **Active Directory**
|
|
14364
14453
|
*/
|
|
14365
14454
|
export type DynamicsAuthenticationType = string;
|
|
14366
14455
|
|