@azure/arm-datafactory 11.1.1-alpha.20231106.1 → 12.0.0-alpha.20231121.1
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 +8 -6
- 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/types/tsdoc-metadata.json +1 -1
|
@@ -23,6 +23,8 @@ export interface Activity {
|
|
|
23
23
|
dependsOn?: ActivityDependency[];
|
|
24
24
|
description?: string;
|
|
25
25
|
name: string;
|
|
26
|
+
onInactiveMarkAs?: ActivityOnInactiveMarkAs;
|
|
27
|
+
state?: ActivityState;
|
|
26
28
|
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" | "SynapseNotebook" | "SparkJob";
|
|
27
29
|
userProperties?: UserProperty[];
|
|
28
30
|
}
|
|
@@ -34,6 +36,9 @@ export interface ActivityDependency {
|
|
|
34
36
|
dependencyConditions: DependencyCondition[];
|
|
35
37
|
}
|
|
36
38
|
|
|
39
|
+
// @public
|
|
40
|
+
export type ActivityOnInactiveMarkAs = string;
|
|
41
|
+
|
|
37
42
|
// @public
|
|
38
43
|
export interface ActivityPolicy {
|
|
39
44
|
[property: string]: any;
|
|
@@ -80,6 +85,9 @@ export interface ActivityRunsQueryResponse {
|
|
|
80
85
|
value: ActivityRun[];
|
|
81
86
|
}
|
|
82
87
|
|
|
88
|
+
// @public
|
|
89
|
+
export type ActivityState = string;
|
|
90
|
+
|
|
83
91
|
// @public (undocumented)
|
|
84
92
|
export type ActivityUnion = Activity | ControlActivityUnion | ExecutionActivityUnion | ExecuteWranglingDataflowActivity;
|
|
85
93
|
|
|
@@ -97,7 +105,7 @@ export interface AdditionalColumns {
|
|
|
97
105
|
// @public
|
|
98
106
|
export interface AmazonMWSLinkedService extends LinkedService {
|
|
99
107
|
accessKeyId: any;
|
|
100
|
-
encryptedCredential?:
|
|
108
|
+
encryptedCredential?: string;
|
|
101
109
|
endpoint: any;
|
|
102
110
|
marketplaceID: any;
|
|
103
111
|
mwsAuthToken?: SecretBaseUnion;
|
|
@@ -124,7 +132,7 @@ export interface AmazonMWSSource extends TabularSource {
|
|
|
124
132
|
// @public
|
|
125
133
|
export interface AmazonRdsForOracleLinkedService extends LinkedService {
|
|
126
134
|
connectionString: any;
|
|
127
|
-
encryptedCredential?:
|
|
135
|
+
encryptedCredential?: string;
|
|
128
136
|
password?: SecretBaseUnion;
|
|
129
137
|
type: "AmazonRdsForOracle";
|
|
130
138
|
}
|
|
@@ -161,7 +169,7 @@ export interface AmazonRdsForOracleTableDataset extends Dataset {
|
|
|
161
169
|
export interface AmazonRdsForSqlServerLinkedService extends LinkedService {
|
|
162
170
|
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
163
171
|
connectionString: any;
|
|
164
|
-
encryptedCredential?:
|
|
172
|
+
encryptedCredential?: string;
|
|
165
173
|
password?: SecretBaseUnion;
|
|
166
174
|
type: "AmazonRdsForSqlServer";
|
|
167
175
|
userName?: any;
|
|
@@ -169,6 +177,7 @@ export interface AmazonRdsForSqlServerLinkedService extends LinkedService {
|
|
|
169
177
|
|
|
170
178
|
// @public
|
|
171
179
|
export interface AmazonRdsForSqlServerSource extends TabularSource {
|
|
180
|
+
isolationLevel?: any;
|
|
172
181
|
partitionOption?: any;
|
|
173
182
|
partitionSettings?: SqlPartitionSettings;
|
|
174
183
|
produceAdditionalTypes?: any;
|
|
@@ -188,7 +197,7 @@ export interface AmazonRdsForSqlServerTableDataset extends Dataset {
|
|
|
188
197
|
// @public
|
|
189
198
|
export interface AmazonRedshiftLinkedService extends LinkedService {
|
|
190
199
|
database: any;
|
|
191
|
-
encryptedCredential?:
|
|
200
|
+
encryptedCredential?: string;
|
|
192
201
|
password?: SecretBaseUnion;
|
|
193
202
|
port?: any;
|
|
194
203
|
server: any;
|
|
@@ -214,7 +223,7 @@ export interface AmazonRedshiftTableDataset extends Dataset {
|
|
|
214
223
|
// @public
|
|
215
224
|
export interface AmazonS3CompatibleLinkedService extends LinkedService {
|
|
216
225
|
accessKeyId?: any;
|
|
217
|
-
encryptedCredential?:
|
|
226
|
+
encryptedCredential?: string;
|
|
218
227
|
forcePathStyle?: any;
|
|
219
228
|
secretAccessKey?: SecretBaseUnion;
|
|
220
229
|
serviceUrl?: any;
|
|
@@ -231,7 +240,7 @@ export interface AmazonS3CompatibleLocation extends DatasetLocation {
|
|
|
231
240
|
// @public
|
|
232
241
|
export interface AmazonS3CompatibleReadSettings extends StoreReadSettings {
|
|
233
242
|
deleteFilesAfterCompletion?: any;
|
|
234
|
-
enablePartitionDiscovery?:
|
|
243
|
+
enablePartitionDiscovery?: any;
|
|
235
244
|
fileListPath?: any;
|
|
236
245
|
modifiedDatetimeEnd?: any;
|
|
237
246
|
modifiedDatetimeStart?: any;
|
|
@@ -260,7 +269,7 @@ export interface AmazonS3Dataset extends Dataset {
|
|
|
260
269
|
export interface AmazonS3LinkedService extends LinkedService {
|
|
261
270
|
accessKeyId?: any;
|
|
262
271
|
authenticationType?: any;
|
|
263
|
-
encryptedCredential?:
|
|
272
|
+
encryptedCredential?: string;
|
|
264
273
|
secretAccessKey?: SecretBaseUnion;
|
|
265
274
|
serviceUrl?: any;
|
|
266
275
|
sessionToken?: SecretBaseUnion;
|
|
@@ -277,7 +286,7 @@ export interface AmazonS3Location extends DatasetLocation {
|
|
|
277
286
|
// @public
|
|
278
287
|
export interface AmazonS3ReadSettings extends StoreReadSettings {
|
|
279
288
|
deleteFilesAfterCompletion?: any;
|
|
280
|
-
enablePartitionDiscovery?:
|
|
289
|
+
enablePartitionDiscovery?: any;
|
|
281
290
|
fileListPath?: any;
|
|
282
291
|
modifiedDatetimeEnd?: any;
|
|
283
292
|
modifiedDatetimeStart?: any;
|
|
@@ -312,7 +321,7 @@ export interface ArmIdWrapper {
|
|
|
312
321
|
// @public
|
|
313
322
|
export interface AsanaLinkedService extends LinkedService {
|
|
314
323
|
apiToken: SecretBaseUnion;
|
|
315
|
-
encryptedCredential?:
|
|
324
|
+
encryptedCredential?: string;
|
|
316
325
|
type: "Asana";
|
|
317
326
|
}
|
|
318
327
|
|
|
@@ -368,7 +377,7 @@ export interface AzureBatchLinkedService extends LinkedService {
|
|
|
368
377
|
accountName: any;
|
|
369
378
|
batchUri: any;
|
|
370
379
|
credential?: CredentialReference;
|
|
371
|
-
encryptedCredential?:
|
|
380
|
+
encryptedCredential?: string;
|
|
372
381
|
linkedServiceName: LinkedServiceReference;
|
|
373
382
|
poolName: any;
|
|
374
383
|
type: "AzureBatch";
|
|
@@ -400,7 +409,7 @@ export interface AzureBlobFSLinkedService extends LinkedService {
|
|
|
400
409
|
accountKey?: any;
|
|
401
410
|
azureCloudType?: any;
|
|
402
411
|
credential?: CredentialReference;
|
|
403
|
-
encryptedCredential?:
|
|
412
|
+
encryptedCredential?: string;
|
|
404
413
|
sasToken?: SecretBaseUnion;
|
|
405
414
|
sasUri?: any;
|
|
406
415
|
servicePrincipalCredential?: SecretBaseUnion;
|
|
@@ -421,7 +430,7 @@ export interface AzureBlobFSLocation extends DatasetLocation {
|
|
|
421
430
|
// @public
|
|
422
431
|
export interface AzureBlobFSReadSettings extends StoreReadSettings {
|
|
423
432
|
deleteFilesAfterCompletion?: any;
|
|
424
|
-
enablePartitionDiscovery?:
|
|
433
|
+
enablePartitionDiscovery?: any;
|
|
425
434
|
fileListPath?: any;
|
|
426
435
|
modifiedDatetimeEnd?: any;
|
|
427
436
|
modifiedDatetimeStart?: any;
|
|
@@ -456,7 +465,7 @@ export interface AzureBlobFSWriteSettings extends StoreWriteSettings {
|
|
|
456
465
|
// @public
|
|
457
466
|
export interface AzureBlobStorageLinkedService extends LinkedService {
|
|
458
467
|
accountKey?: AzureKeyVaultSecretReference;
|
|
459
|
-
accountKind?:
|
|
468
|
+
accountKind?: any;
|
|
460
469
|
authenticationType?: AzureStorageAuthenticationType;
|
|
461
470
|
azureCloudType?: any;
|
|
462
471
|
connectionString?: any;
|
|
@@ -465,7 +474,7 @@ export interface AzureBlobStorageLinkedService extends LinkedService {
|
|
|
465
474
|
encryptedCredential?: string;
|
|
466
475
|
sasToken?: AzureKeyVaultSecretReference;
|
|
467
476
|
sasUri?: any;
|
|
468
|
-
serviceEndpoint?:
|
|
477
|
+
serviceEndpoint?: any;
|
|
469
478
|
servicePrincipalId?: any;
|
|
470
479
|
servicePrincipalKey?: SecretBaseUnion;
|
|
471
480
|
tenant?: any;
|
|
@@ -481,7 +490,7 @@ export interface AzureBlobStorageLocation extends DatasetLocation {
|
|
|
481
490
|
// @public
|
|
482
491
|
export interface AzureBlobStorageReadSettings extends StoreReadSettings {
|
|
483
492
|
deleteFilesAfterCompletion?: any;
|
|
484
|
-
enablePartitionDiscovery?:
|
|
493
|
+
enablePartitionDiscovery?: any;
|
|
485
494
|
fileListPath?: any;
|
|
486
495
|
modifiedDatetimeEnd?: any;
|
|
487
496
|
modifiedDatetimeStart?: any;
|
|
@@ -526,7 +535,7 @@ export interface AzureDatabricksDeltaLakeLinkedService extends LinkedService {
|
|
|
526
535
|
clusterId?: any;
|
|
527
536
|
credential?: CredentialReference;
|
|
528
537
|
domain: any;
|
|
529
|
-
encryptedCredential?:
|
|
538
|
+
encryptedCredential?: string;
|
|
530
539
|
type: "AzureDatabricksDeltaLake";
|
|
531
540
|
workspaceResourceId?: any;
|
|
532
541
|
}
|
|
@@ -551,7 +560,7 @@ export interface AzureDatabricksLinkedService extends LinkedService {
|
|
|
551
560
|
authentication?: any;
|
|
552
561
|
credential?: CredentialReference;
|
|
553
562
|
domain: any;
|
|
554
|
-
encryptedCredential?:
|
|
563
|
+
encryptedCredential?: string;
|
|
555
564
|
existingClusterId?: any;
|
|
556
565
|
instancePoolId?: any;
|
|
557
566
|
newClusterCustomTags?: {
|
|
@@ -620,7 +629,7 @@ export interface AzureDataExplorerTableDataset extends Dataset {
|
|
|
620
629
|
export interface AzureDataLakeAnalyticsLinkedService extends LinkedService {
|
|
621
630
|
accountName: any;
|
|
622
631
|
dataLakeAnalyticsUri?: any;
|
|
623
|
-
encryptedCredential?:
|
|
632
|
+
encryptedCredential?: string;
|
|
624
633
|
resourceGroupName?: any;
|
|
625
634
|
servicePrincipalId?: any;
|
|
626
635
|
servicePrincipalKey?: SecretBaseUnion;
|
|
@@ -644,7 +653,7 @@ export interface AzureDataLakeStoreLinkedService extends LinkedService {
|
|
|
644
653
|
azureCloudType?: any;
|
|
645
654
|
credential?: CredentialReference;
|
|
646
655
|
dataLakeStoreUri: any;
|
|
647
|
-
encryptedCredential?:
|
|
656
|
+
encryptedCredential?: string;
|
|
648
657
|
resourceGroupName?: any;
|
|
649
658
|
servicePrincipalId?: any;
|
|
650
659
|
servicePrincipalKey?: SecretBaseUnion;
|
|
@@ -661,7 +670,7 @@ export interface AzureDataLakeStoreLocation extends DatasetLocation {
|
|
|
661
670
|
// @public
|
|
662
671
|
export interface AzureDataLakeStoreReadSettings extends StoreReadSettings {
|
|
663
672
|
deleteFilesAfterCompletion?: any;
|
|
664
|
-
enablePartitionDiscovery?:
|
|
673
|
+
enablePartitionDiscovery?: any;
|
|
665
674
|
fileListPath?: any;
|
|
666
675
|
listAfter?: any;
|
|
667
676
|
listBefore?: any;
|
|
@@ -697,7 +706,7 @@ export interface AzureDataLakeStoreWriteSettings extends StoreWriteSettings {
|
|
|
697
706
|
export interface AzureFileStorageLinkedService extends LinkedService {
|
|
698
707
|
accountKey?: AzureKeyVaultSecretReference;
|
|
699
708
|
connectionString?: any;
|
|
700
|
-
encryptedCredential?:
|
|
709
|
+
encryptedCredential?: string;
|
|
701
710
|
fileShare?: any;
|
|
702
711
|
host?: any;
|
|
703
712
|
password?: SecretBaseUnion;
|
|
@@ -716,7 +725,7 @@ export interface AzureFileStorageLocation extends DatasetLocation {
|
|
|
716
725
|
// @public
|
|
717
726
|
export interface AzureFileStorageReadSettings extends StoreReadSettings {
|
|
718
727
|
deleteFilesAfterCompletion?: any;
|
|
719
|
-
enablePartitionDiscovery?:
|
|
728
|
+
enablePartitionDiscovery?: any;
|
|
720
729
|
fileListPath?: any;
|
|
721
730
|
modifiedDatetimeEnd?: any;
|
|
722
731
|
modifiedDatetimeStart?: any;
|
|
@@ -749,7 +758,7 @@ export type AzureFunctionActivityMethod = string;
|
|
|
749
758
|
export interface AzureFunctionLinkedService extends LinkedService {
|
|
750
759
|
authentication?: any;
|
|
751
760
|
credential?: CredentialReference;
|
|
752
|
-
encryptedCredential?:
|
|
761
|
+
encryptedCredential?: string;
|
|
753
762
|
functionAppUrl: any;
|
|
754
763
|
functionKey?: SecretBaseUnion;
|
|
755
764
|
resourceId?: any;
|
|
@@ -774,7 +783,7 @@ export interface AzureKeyVaultSecretReference extends SecretBase {
|
|
|
774
783
|
// @public
|
|
775
784
|
export interface AzureMariaDBLinkedService extends LinkedService {
|
|
776
785
|
connectionString?: any;
|
|
777
|
-
encryptedCredential?:
|
|
786
|
+
encryptedCredential?: string;
|
|
778
787
|
pwd?: AzureKeyVaultSecretReference;
|
|
779
788
|
type: "AzureMariaDB";
|
|
780
789
|
}
|
|
@@ -822,7 +831,7 @@ export interface AzureMLExecutePipelineActivity extends ExecutionActivity {
|
|
|
822
831
|
export interface AzureMLLinkedService extends LinkedService {
|
|
823
832
|
apiKey: SecretBaseUnion;
|
|
824
833
|
authentication?: any;
|
|
825
|
-
encryptedCredential?:
|
|
834
|
+
encryptedCredential?: string;
|
|
826
835
|
mlEndpoint: any;
|
|
827
836
|
servicePrincipalId?: any;
|
|
828
837
|
servicePrincipalKey?: SecretBaseUnion;
|
|
@@ -833,7 +842,8 @@ export interface AzureMLLinkedService extends LinkedService {
|
|
|
833
842
|
|
|
834
843
|
// @public
|
|
835
844
|
export interface AzureMLServiceLinkedService extends LinkedService {
|
|
836
|
-
|
|
845
|
+
authentication?: any;
|
|
846
|
+
encryptedCredential?: string;
|
|
837
847
|
mlWorkspaceName: any;
|
|
838
848
|
resourceGroupName: any;
|
|
839
849
|
servicePrincipalId?: any;
|
|
@@ -860,7 +870,7 @@ export interface AzureMLWebServiceFile {
|
|
|
860
870
|
// @public
|
|
861
871
|
export interface AzureMySqlLinkedService extends LinkedService {
|
|
862
872
|
connectionString: any;
|
|
863
|
-
encryptedCredential?:
|
|
873
|
+
encryptedCredential?: string;
|
|
864
874
|
password?: AzureKeyVaultSecretReference;
|
|
865
875
|
type: "AzureMySql";
|
|
866
876
|
}
|
|
@@ -887,7 +897,7 @@ export interface AzureMySqlTableDataset extends Dataset {
|
|
|
887
897
|
// @public
|
|
888
898
|
export interface AzurePostgreSqlLinkedService extends LinkedService {
|
|
889
899
|
connectionString?: any;
|
|
890
|
-
encryptedCredential?:
|
|
900
|
+
encryptedCredential?: string;
|
|
891
901
|
password?: AzureKeyVaultSecretReference;
|
|
892
902
|
type: "AzurePostgreSql";
|
|
893
903
|
}
|
|
@@ -934,7 +944,7 @@ export type AzureSearchIndexWriteBehaviorType = string;
|
|
|
934
944
|
|
|
935
945
|
// @public
|
|
936
946
|
export interface AzureSearchLinkedService extends LinkedService {
|
|
937
|
-
encryptedCredential?:
|
|
947
|
+
encryptedCredential?: string;
|
|
938
948
|
key?: SecretBaseUnion;
|
|
939
949
|
type: "AzureSearch";
|
|
940
950
|
url: any;
|
|
@@ -946,7 +956,7 @@ export interface AzureSqlDatabaseLinkedService extends LinkedService {
|
|
|
946
956
|
azureCloudType?: any;
|
|
947
957
|
connectionString: any;
|
|
948
958
|
credential?: CredentialReference;
|
|
949
|
-
encryptedCredential?:
|
|
959
|
+
encryptedCredential?: string;
|
|
950
960
|
password?: AzureKeyVaultSecretReference;
|
|
951
961
|
servicePrincipalId?: any;
|
|
952
962
|
servicePrincipalKey?: SecretBaseUnion;
|
|
@@ -959,7 +969,7 @@ export interface AzureSqlDWLinkedService extends LinkedService {
|
|
|
959
969
|
azureCloudType?: any;
|
|
960
970
|
connectionString: any;
|
|
961
971
|
credential?: CredentialReference;
|
|
962
|
-
encryptedCredential?:
|
|
972
|
+
encryptedCredential?: string;
|
|
963
973
|
password?: AzureKeyVaultSecretReference;
|
|
964
974
|
servicePrincipalId?: any;
|
|
965
975
|
servicePrincipalKey?: SecretBaseUnion;
|
|
@@ -981,7 +991,7 @@ export interface AzureSqlMILinkedService extends LinkedService {
|
|
|
981
991
|
azureCloudType?: any;
|
|
982
992
|
connectionString: any;
|
|
983
993
|
credential?: CredentialReference;
|
|
984
|
-
encryptedCredential?:
|
|
994
|
+
encryptedCredential?: string;
|
|
985
995
|
password?: AzureKeyVaultSecretReference;
|
|
986
996
|
servicePrincipalId?: any;
|
|
987
997
|
servicePrincipalKey?: SecretBaseUnion;
|
|
@@ -1013,6 +1023,7 @@ export interface AzureSqlSink extends CopySink {
|
|
|
1013
1023
|
|
|
1014
1024
|
// @public
|
|
1015
1025
|
export interface AzureSqlSource extends TabularSource {
|
|
1026
|
+
isolationLevel?: any;
|
|
1016
1027
|
partitionOption?: any;
|
|
1017
1028
|
partitionSettings?: SqlPartitionSettings;
|
|
1018
1029
|
produceAdditionalTypes?: any;
|
|
@@ -1160,7 +1171,7 @@ export interface BlobTrigger extends MultiplePipelineTrigger {
|
|
|
1160
1171
|
// @public
|
|
1161
1172
|
export interface CassandraLinkedService extends LinkedService {
|
|
1162
1173
|
authenticationType?: any;
|
|
1163
|
-
encryptedCredential?:
|
|
1174
|
+
encryptedCredential?: string;
|
|
1164
1175
|
host: any;
|
|
1165
1176
|
password?: SecretBaseUnion;
|
|
1166
1177
|
port?: any;
|
|
@@ -1193,6 +1204,91 @@ export interface ChainingTrigger extends Trigger {
|
|
|
1193
1204
|
type: "ChainingTrigger";
|
|
1194
1205
|
}
|
|
1195
1206
|
|
|
1207
|
+
// @public
|
|
1208
|
+
export interface ChangeDataCapture {
|
|
1209
|
+
createOrUpdate(resourceGroupName: string, factoryName: string, changeDataCaptureName: string, changeDataCapture: ChangeDataCaptureResource, options?: ChangeDataCaptureCreateOrUpdateOptionalParams): Promise<ChangeDataCaptureCreateOrUpdateResponse>;
|
|
1210
|
+
delete(resourceGroupName: string, factoryName: string, changeDataCaptureName: string, options?: ChangeDataCaptureDeleteOptionalParams): Promise<void>;
|
|
1211
|
+
get(resourceGroupName: string, factoryName: string, changeDataCaptureName: string, options?: ChangeDataCaptureGetOptionalParams): Promise<ChangeDataCaptureGetResponse>;
|
|
1212
|
+
listByFactory(resourceGroupName: string, factoryName: string, options?: ChangeDataCaptureListByFactoryOptionalParams): PagedAsyncIterableIterator<ChangeDataCaptureResource>;
|
|
1213
|
+
start(resourceGroupName: string, factoryName: string, changeDataCaptureName: string, options?: ChangeDataCaptureStartOptionalParams): Promise<void>;
|
|
1214
|
+
status(resourceGroupName: string, factoryName: string, changeDataCaptureName: string, options?: ChangeDataCaptureStatusOptionalParams): Promise<ChangeDataCaptureStatusResponse>;
|
|
1215
|
+
stop(resourceGroupName: string, factoryName: string, changeDataCaptureName: string, options?: ChangeDataCaptureStopOptionalParams): Promise<void>;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
// @public
|
|
1219
|
+
export interface ChangeDataCaptureCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1220
|
+
ifMatch?: string;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
// @public
|
|
1224
|
+
export type ChangeDataCaptureCreateOrUpdateResponse = ChangeDataCaptureResource;
|
|
1225
|
+
|
|
1226
|
+
// @public
|
|
1227
|
+
export interface ChangeDataCaptureDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
// @public
|
|
1231
|
+
export interface ChangeDataCaptureFolder {
|
|
1232
|
+
name?: string;
|
|
1233
|
+
}
|
|
1234
|
+
|
|
1235
|
+
// @public
|
|
1236
|
+
export interface ChangeDataCaptureGetOptionalParams extends coreClient.OperationOptions {
|
|
1237
|
+
ifNoneMatch?: string;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
// @public
|
|
1241
|
+
export type ChangeDataCaptureGetResponse = ChangeDataCaptureResource;
|
|
1242
|
+
|
|
1243
|
+
// @public
|
|
1244
|
+
export interface ChangeDataCaptureListByFactoryNextOptionalParams extends coreClient.OperationOptions {
|
|
1245
|
+
}
|
|
1246
|
+
|
|
1247
|
+
// @public
|
|
1248
|
+
export type ChangeDataCaptureListByFactoryNextResponse = ChangeDataCaptureListResponse;
|
|
1249
|
+
|
|
1250
|
+
// @public
|
|
1251
|
+
export interface ChangeDataCaptureListByFactoryOptionalParams extends coreClient.OperationOptions {
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
// @public
|
|
1255
|
+
export type ChangeDataCaptureListByFactoryResponse = ChangeDataCaptureListResponse;
|
|
1256
|
+
|
|
1257
|
+
// @public
|
|
1258
|
+
export interface ChangeDataCaptureListResponse {
|
|
1259
|
+
nextLink?: string;
|
|
1260
|
+
value: ChangeDataCaptureResource[];
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
// @public
|
|
1264
|
+
export interface ChangeDataCaptureResource extends SubResource {
|
|
1265
|
+
[property: string]: any;
|
|
1266
|
+
allowVNetOverride?: boolean;
|
|
1267
|
+
description?: string;
|
|
1268
|
+
folder?: ChangeDataCaptureFolder;
|
|
1269
|
+
policy: MapperPolicy;
|
|
1270
|
+
sourceConnectionsInfo: MapperSourceConnectionsInfo[];
|
|
1271
|
+
status?: string;
|
|
1272
|
+
targetConnectionsInfo: MapperTargetConnectionsInfo[];
|
|
1273
|
+
}
|
|
1274
|
+
|
|
1275
|
+
// @public
|
|
1276
|
+
export interface ChangeDataCaptureStartOptionalParams extends coreClient.OperationOptions {
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
// @public
|
|
1280
|
+
export interface ChangeDataCaptureStatusOptionalParams extends coreClient.OperationOptions {
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
// @public
|
|
1284
|
+
export type ChangeDataCaptureStatusResponse = {
|
|
1285
|
+
body: string;
|
|
1286
|
+
};
|
|
1287
|
+
|
|
1288
|
+
// @public
|
|
1289
|
+
export interface ChangeDataCaptureStopOptionalParams extends coreClient.OperationOptions {
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1196
1292
|
// @public
|
|
1197
1293
|
export interface CloudError {
|
|
1198
1294
|
code: string;
|
|
@@ -1224,7 +1320,7 @@ export interface CommonDataServiceForAppsEntityDataset extends Dataset {
|
|
|
1224
1320
|
export interface CommonDataServiceForAppsLinkedService extends LinkedService {
|
|
1225
1321
|
authenticationType: any;
|
|
1226
1322
|
deploymentType: any;
|
|
1227
|
-
encryptedCredential?:
|
|
1323
|
+
encryptedCredential?: string;
|
|
1228
1324
|
hostName?: any;
|
|
1229
1325
|
organizationName?: any;
|
|
1230
1326
|
password?: SecretBaseUnion;
|
|
@@ -1275,7 +1371,7 @@ export type CompressionReadSettingsUnion = CompressionReadSettings | ZipDeflateR
|
|
|
1275
1371
|
export interface ConcurLinkedService extends LinkedService {
|
|
1276
1372
|
clientId: any;
|
|
1277
1373
|
connectionProperties?: any;
|
|
1278
|
-
encryptedCredential?:
|
|
1374
|
+
encryptedCredential?: string;
|
|
1279
1375
|
password?: SecretBaseUnion;
|
|
1280
1376
|
type: "Concur";
|
|
1281
1377
|
useEncryptedEndpoints?: any;
|
|
@@ -1306,6 +1402,9 @@ export interface ConnectionStateProperties {
|
|
|
1306
1402
|
readonly status?: string;
|
|
1307
1403
|
}
|
|
1308
1404
|
|
|
1405
|
+
// @public
|
|
1406
|
+
export type ConnectionType = string;
|
|
1407
|
+
|
|
1309
1408
|
// @public
|
|
1310
1409
|
export interface ControlActivity extends Activity {
|
|
1311
1410
|
type: "Container" | "ExecutePipeline" | "IfCondition" | "Switch" | "ForEach" | "Wait" | "Fail" | "Until" | "Validation" | "Filter" | "SetVariable" | "AppendVariable" | "WebHook";
|
|
@@ -1359,13 +1458,13 @@ export interface CopySink {
|
|
|
1359
1458
|
maxConcurrentConnections?: any;
|
|
1360
1459
|
sinkRetryCount?: any;
|
|
1361
1460
|
sinkRetryWait?: any;
|
|
1362
|
-
type: "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";
|
|
1461
|
+
type: "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";
|
|
1363
1462
|
writeBatchSize?: any;
|
|
1364
1463
|
writeBatchTimeout?: any;
|
|
1365
1464
|
}
|
|
1366
1465
|
|
|
1367
1466
|
// @public (undocumented)
|
|
1368
|
-
export type CopySinkUnion = CopySink | 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;
|
|
1467
|
+
export type CopySinkUnion = CopySink | 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;
|
|
1369
1468
|
|
|
1370
1469
|
// @public
|
|
1371
1470
|
export interface CopySource {
|
|
@@ -1374,11 +1473,11 @@ export interface CopySource {
|
|
|
1374
1473
|
maxConcurrentConnections?: any;
|
|
1375
1474
|
sourceRetryCount?: any;
|
|
1376
1475
|
sourceRetryWait?: any;
|
|
1377
|
-
type: "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";
|
|
1476
|
+
type: "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";
|
|
1378
1477
|
}
|
|
1379
1478
|
|
|
1380
1479
|
// @public (undocumented)
|
|
1381
|
-
export type CopySourceUnion = CopySource | AvroSource | ExcelSource | ParquetSource | DelimitedTextSource | JsonSource | XmlSource | OrcSource | BinarySource | TabularSourceUnion | BlobSource | DocumentDbCollectionSource | CosmosDbSqlApiSource | DynamicsSource | DynamicsCrmSource | CommonDataServiceForAppsSource | RelationalSource | MicrosoftAccessSource | ODataSource | SalesforceServiceCloudSource | RestSource | FileSystemSource | HdfsSource | AzureDataExplorerSource | OracleSource | AmazonRdsForOracleSource | WebSource | MongoDbSource | MongoDbAtlasSource | MongoDbV2Source | CosmosDbMongoDbApiSource | Office365Source | AzureDataLakeStoreSource | AzureBlobFSSource | HttpSource | SnowflakeSource | AzureDatabricksDeltaLakeSource | SharePointOnlineListSource;
|
|
1480
|
+
export type CopySourceUnion = CopySource | AvroSource | ExcelSource | ParquetSource | DelimitedTextSource | JsonSource | XmlSource | OrcSource | BinarySource | TabularSourceUnion | BlobSource | DocumentDbCollectionSource | CosmosDbSqlApiSource | DynamicsSource | DynamicsCrmSource | CommonDataServiceForAppsSource | RelationalSource | MicrosoftAccessSource | ODataSource | SalesforceServiceCloudSource | RestSource | FileSystemSource | HdfsSource | AzureDataExplorerSource | OracleSource | AmazonRdsForOracleSource | WebSource | MongoDbSource | MongoDbAtlasSource | MongoDbV2Source | CosmosDbMongoDbApiSource | Office365Source | AzureDataLakeStoreSource | AzureBlobFSSource | HttpSource | LakeHouseTableSource | SnowflakeSource | AzureDatabricksDeltaLakeSource | SharePointOnlineListSource;
|
|
1382
1481
|
|
|
1383
1482
|
// @public
|
|
1384
1483
|
export interface CopyTranslator {
|
|
@@ -1401,9 +1500,9 @@ export interface CosmosDbLinkedService extends LinkedService {
|
|
|
1401
1500
|
connectionString?: any;
|
|
1402
1501
|
credential?: CredentialReference;
|
|
1403
1502
|
database?: any;
|
|
1404
|
-
encryptedCredential?:
|
|
1503
|
+
encryptedCredential?: string;
|
|
1405
1504
|
servicePrincipalCredential?: SecretBaseUnion;
|
|
1406
|
-
servicePrincipalCredentialType?:
|
|
1505
|
+
servicePrincipalCredentialType?: any;
|
|
1407
1506
|
servicePrincipalId?: any;
|
|
1408
1507
|
tenant?: any;
|
|
1409
1508
|
type: "CosmosDb";
|
|
@@ -1439,9 +1538,6 @@ export interface CosmosDbMongoDbApiSource extends CopySource {
|
|
|
1439
1538
|
type: "CosmosDbMongoDbApiSource";
|
|
1440
1539
|
}
|
|
1441
1540
|
|
|
1442
|
-
// @public
|
|
1443
|
-
export type CosmosDbServicePrincipalCredentialType = string;
|
|
1444
|
-
|
|
1445
1541
|
// @public
|
|
1446
1542
|
export interface CosmosDbSqlApiCollectionDataset extends Dataset {
|
|
1447
1543
|
collectionName: any;
|
|
@@ -1468,7 +1564,7 @@ export interface CosmosDbSqlApiSource extends CopySource {
|
|
|
1468
1564
|
export interface CouchbaseLinkedService extends LinkedService {
|
|
1469
1565
|
connectionString?: any;
|
|
1470
1566
|
credString?: AzureKeyVaultSecretReference;
|
|
1471
|
-
encryptedCredential?:
|
|
1567
|
+
encryptedCredential?: string;
|
|
1472
1568
|
type: "Couchbase";
|
|
1473
1569
|
}
|
|
1474
1570
|
|
|
@@ -1677,6 +1773,8 @@ export class DataFactoryManagementClient extends coreClient.ServiceClient {
|
|
|
1677
1773
|
// (undocumented)
|
|
1678
1774
|
apiVersion: string;
|
|
1679
1775
|
// (undocumented)
|
|
1776
|
+
changeDataCapture: ChangeDataCapture;
|
|
1777
|
+
// (undocumented)
|
|
1680
1778
|
credentialOperations: CredentialOperations;
|
|
1681
1779
|
// (undocumented)
|
|
1682
1780
|
dataFlowDebugSession: DataFlowDebugSession;
|
|
@@ -1981,6 +2079,15 @@ export interface DataLakeAnalyticsUsqlActivity extends ExecutionActivity {
|
|
|
1981
2079
|
type: "DataLakeAnalyticsU-SQL";
|
|
1982
2080
|
}
|
|
1983
2081
|
|
|
2082
|
+
// @public
|
|
2083
|
+
export interface DataMapperMapping {
|
|
2084
|
+
attributeMappingInfo?: MapperAttributeMappings;
|
|
2085
|
+
sourceConnectionReference?: MapperConnectionReference;
|
|
2086
|
+
sourceDenormalizeInfo?: any;
|
|
2087
|
+
sourceEntityName?: string;
|
|
2088
|
+
targetEntityName?: string;
|
|
2089
|
+
}
|
|
2090
|
+
|
|
1984
2091
|
// @public
|
|
1985
2092
|
export interface Dataset {
|
|
1986
2093
|
[property: string]: any;
|
|
@@ -1993,7 +2100,7 @@ export interface Dataset {
|
|
|
1993
2100
|
};
|
|
1994
2101
|
schema?: any;
|
|
1995
2102
|
structure?: any;
|
|
1996
|
-
type: "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";
|
|
2103
|
+
type: "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";
|
|
1997
2104
|
}
|
|
1998
2105
|
|
|
1999
2106
|
// @public
|
|
@@ -2033,11 +2140,11 @@ export interface DatasetLocation {
|
|
|
2033
2140
|
[property: string]: any;
|
|
2034
2141
|
fileName?: any;
|
|
2035
2142
|
folderPath?: any;
|
|
2036
|
-
type: "AzureBlobStorageLocation" | "AzureBlobFSLocation" | "AzureDataLakeStoreLocation" | "AmazonS3Location" | "FileServerLocation" | "AzureFileStorageLocation" | "AmazonS3CompatibleLocation" | "OracleCloudStorageLocation" | "GoogleCloudStorageLocation" | "FtpServerLocation" | "SftpLocation" | "HttpServerLocation" | "HdfsLocation";
|
|
2143
|
+
type: "AzureBlobStorageLocation" | "AzureBlobFSLocation" | "AzureDataLakeStoreLocation" | "AmazonS3Location" | "FileServerLocation" | "AzureFileStorageLocation" | "AmazonS3CompatibleLocation" | "OracleCloudStorageLocation" | "GoogleCloudStorageLocation" | "FtpServerLocation" | "SftpLocation" | "HttpServerLocation" | "HdfsLocation" | "LakeHouseLocation";
|
|
2037
2144
|
}
|
|
2038
2145
|
|
|
2039
2146
|
// @public (undocumented)
|
|
2040
|
-
export type DatasetLocationUnion = DatasetLocation | AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation;
|
|
2147
|
+
export type DatasetLocationUnion = DatasetLocation | AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation | LakeHouseLocation;
|
|
2041
2148
|
|
|
2042
2149
|
// @public
|
|
2043
2150
|
export interface DatasetReference {
|
|
@@ -2114,12 +2221,12 @@ export interface DatasetStorageFormat {
|
|
|
2114
2221
|
export type DatasetStorageFormatUnion = DatasetStorageFormat | TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat;
|
|
2115
2222
|
|
|
2116
2223
|
// @public (undocumented)
|
|
2117
|
-
export type DatasetUnion = Dataset | AmazonS3Dataset | AvroDataset | ExcelDataset | ParquetDataset | DelimitedTextDataset | JsonDataset | XmlDataset | OrcDataset | BinaryDataset | AzureBlobDataset | AzureTableDataset | AzureSqlTableDataset | AzureSqlMITableDataset | AzureSqlDWTableDataset | CassandraTableDataset | CustomDataset | CosmosDbSqlApiCollectionDataset | DocumentDbCollectionDataset | DynamicsEntityDataset | DynamicsCrmEntityDataset | CommonDataServiceForAppsEntityDataset | AzureDataLakeStoreDataset | AzureBlobFSDataset | Office365Dataset | FileShareDataset | MongoDbCollectionDataset | MongoDbAtlasCollectionDataset | MongoDbV2CollectionDataset | CosmosDbMongoDbApiCollectionDataset | ODataResourceDataset | OracleTableDataset | AmazonRdsForOracleTableDataset | TeradataTableDataset | AzureMySqlTableDataset | AmazonRedshiftTableDataset | Db2TableDataset | RelationalTableDataset | InformixTableDataset | OdbcTableDataset | MySqlTableDataset | PostgreSqlTableDataset | MicrosoftAccessTableDataset | SalesforceObjectDataset | SalesforceServiceCloudObjectDataset | SybaseTableDataset | SapBwCubeDataset | SapCloudForCustomerResourceDataset | SapEccResourceDataset | SapHanaTableDataset | SapOpenHubTableDataset | SqlServerTableDataset | AmazonRdsForSqlServerTableDataset | RestResourceDataset | SapTableResourceDataset | SapOdpResourceDataset | WebTableDataset | AzureSearchIndexDataset | HttpDataset | AmazonMWSObjectDataset | AzurePostgreSqlTableDataset | ConcurObjectDataset | CouchbaseTableDataset | DrillTableDataset | EloquaObjectDataset | GoogleBigQueryObjectDataset | GreenplumTableDataset | HBaseObjectDataset | HiveObjectDataset | HubspotObjectDataset | ImpalaObjectDataset | JiraObjectDataset | MagentoObjectDataset | MariaDBTableDataset | AzureMariaDBTableDataset | MarketoObjectDataset | PaypalObjectDataset | PhoenixObjectDataset | PrestoObjectDataset | QuickBooksObjectDataset | ServiceNowObjectDataset | ShopifyObjectDataset | SparkObjectDataset | SquareObjectDataset | XeroObjectDataset | ZohoObjectDataset | NetezzaTableDataset | VerticaTableDataset | SalesforceMarketingCloudObjectDataset | ResponsysObjectDataset | DynamicsAXResourceDataset | OracleServiceCloudObjectDataset | AzureDataExplorerTableDataset | GoogleAdWordsObjectDataset | SnowflakeDataset | SharePointOnlineListResourceDataset | AzureDatabricksDeltaLakeDataset;
|
|
2224
|
+
export type DatasetUnion = Dataset | AmazonS3Dataset | AvroDataset | ExcelDataset | ParquetDataset | DelimitedTextDataset | JsonDataset | XmlDataset | OrcDataset | BinaryDataset | AzureBlobDataset | AzureTableDataset | AzureSqlTableDataset | AzureSqlMITableDataset | AzureSqlDWTableDataset | CassandraTableDataset | CustomDataset | CosmosDbSqlApiCollectionDataset | DocumentDbCollectionDataset | DynamicsEntityDataset | DynamicsCrmEntityDataset | CommonDataServiceForAppsEntityDataset | AzureDataLakeStoreDataset | AzureBlobFSDataset | Office365Dataset | FileShareDataset | MongoDbCollectionDataset | MongoDbAtlasCollectionDataset | MongoDbV2CollectionDataset | CosmosDbMongoDbApiCollectionDataset | ODataResourceDataset | OracleTableDataset | AmazonRdsForOracleTableDataset | TeradataTableDataset | AzureMySqlTableDataset | AmazonRedshiftTableDataset | Db2TableDataset | RelationalTableDataset | InformixTableDataset | OdbcTableDataset | MySqlTableDataset | PostgreSqlTableDataset | MicrosoftAccessTableDataset | SalesforceObjectDataset | SalesforceServiceCloudObjectDataset | SybaseTableDataset | SapBwCubeDataset | SapCloudForCustomerResourceDataset | SapEccResourceDataset | SapHanaTableDataset | SapOpenHubTableDataset | SqlServerTableDataset | AmazonRdsForSqlServerTableDataset | RestResourceDataset | SapTableResourceDataset | SapOdpResourceDataset | WebTableDataset | AzureSearchIndexDataset | HttpDataset | AmazonMWSObjectDataset | AzurePostgreSqlTableDataset | ConcurObjectDataset | CouchbaseTableDataset | DrillTableDataset | EloquaObjectDataset | GoogleBigQueryObjectDataset | GreenplumTableDataset | HBaseObjectDataset | HiveObjectDataset | HubspotObjectDataset | ImpalaObjectDataset | JiraObjectDataset | MagentoObjectDataset | MariaDBTableDataset | AzureMariaDBTableDataset | MarketoObjectDataset | PaypalObjectDataset | PhoenixObjectDataset | PrestoObjectDataset | QuickBooksObjectDataset | ServiceNowObjectDataset | ShopifyObjectDataset | SparkObjectDataset | SquareObjectDataset | XeroObjectDataset | ZohoObjectDataset | NetezzaTableDataset | VerticaTableDataset | SalesforceMarketingCloudObjectDataset | ResponsysObjectDataset | DynamicsAXResourceDataset | OracleServiceCloudObjectDataset | AzureDataExplorerTableDataset | GoogleAdWordsObjectDataset | SnowflakeDataset | SharePointOnlineListResourceDataset | AzureDatabricksDeltaLakeDataset | LakeHouseTableDataset;
|
|
2118
2225
|
|
|
2119
2226
|
// @public
|
|
2120
2227
|
export interface DataworldLinkedService extends LinkedService {
|
|
2121
2228
|
apiToken: SecretBaseUnion;
|
|
2122
|
-
encryptedCredential?:
|
|
2229
|
+
encryptedCredential?: string;
|
|
2123
2230
|
type: "Dataworld";
|
|
2124
2231
|
}
|
|
2125
2232
|
|
|
@@ -2138,7 +2245,7 @@ export interface Db2LinkedService extends LinkedService {
|
|
|
2138
2245
|
certificateCommonName?: any;
|
|
2139
2246
|
connectionString?: any;
|
|
2140
2247
|
database?: any;
|
|
2141
|
-
encryptedCredential?:
|
|
2248
|
+
encryptedCredential?: string;
|
|
2142
2249
|
packageCollection?: any;
|
|
2143
2250
|
password?: SecretBaseUnion;
|
|
2144
2251
|
server?: any;
|
|
@@ -2265,7 +2372,7 @@ export interface DocumentDbCollectionSource extends CopySource {
|
|
|
2265
2372
|
// @public
|
|
2266
2373
|
export interface DrillLinkedService extends LinkedService {
|
|
2267
2374
|
connectionString?: any;
|
|
2268
|
-
encryptedCredential?:
|
|
2375
|
+
encryptedCredential?: string;
|
|
2269
2376
|
pwd?: AzureKeyVaultSecretReference;
|
|
2270
2377
|
type: "Drill";
|
|
2271
2378
|
}
|
|
@@ -2304,7 +2411,7 @@ export type DynamicsAuthenticationType = string;
|
|
|
2304
2411
|
// @public
|
|
2305
2412
|
export interface DynamicsAXLinkedService extends LinkedService {
|
|
2306
2413
|
aadResourceId: any;
|
|
2307
|
-
encryptedCredential?:
|
|
2414
|
+
encryptedCredential?: string;
|
|
2308
2415
|
servicePrincipalId: any;
|
|
2309
2416
|
servicePrincipalKey: SecretBaseUnion;
|
|
2310
2417
|
tenant: any;
|
|
@@ -2335,7 +2442,7 @@ export interface DynamicsCrmEntityDataset extends Dataset {
|
|
|
2335
2442
|
export interface DynamicsCrmLinkedService extends LinkedService {
|
|
2336
2443
|
authenticationType: any;
|
|
2337
2444
|
deploymentType: any;
|
|
2338
|
-
encryptedCredential?:
|
|
2445
|
+
encryptedCredential?: string;
|
|
2339
2446
|
hostName?: any;
|
|
2340
2447
|
organizationName?: any;
|
|
2341
2448
|
password?: SecretBaseUnion;
|
|
@@ -2377,7 +2484,7 @@ export interface DynamicsLinkedService extends LinkedService {
|
|
|
2377
2484
|
authenticationType: any;
|
|
2378
2485
|
credential?: CredentialReference;
|
|
2379
2486
|
deploymentType: any;
|
|
2380
|
-
encryptedCredential?:
|
|
2487
|
+
encryptedCredential?: string;
|
|
2381
2488
|
hostName?: any;
|
|
2382
2489
|
organizationName?: any;
|
|
2383
2490
|
password?: SecretBaseUnion;
|
|
@@ -2410,7 +2517,7 @@ export interface DynamicsSource extends CopySource {
|
|
|
2410
2517
|
|
|
2411
2518
|
// @public
|
|
2412
2519
|
export interface EloquaLinkedService extends LinkedService {
|
|
2413
|
-
encryptedCredential?:
|
|
2520
|
+
encryptedCredential?: string;
|
|
2414
2521
|
endpoint: any;
|
|
2415
2522
|
password?: SecretBaseUnion;
|
|
2416
2523
|
type: "Eloqua";
|
|
@@ -2832,7 +2939,7 @@ export interface FailActivity extends ControlActivity {
|
|
|
2832
2939
|
|
|
2833
2940
|
// @public
|
|
2834
2941
|
export interface FileServerLinkedService extends LinkedService {
|
|
2835
|
-
encryptedCredential?:
|
|
2942
|
+
encryptedCredential?: string;
|
|
2836
2943
|
host: any;
|
|
2837
2944
|
password?: SecretBaseUnion;
|
|
2838
2945
|
type: "FileServer";
|
|
@@ -2847,7 +2954,7 @@ export interface FileServerLocation extends DatasetLocation {
|
|
|
2847
2954
|
// @public
|
|
2848
2955
|
export interface FileServerReadSettings extends StoreReadSettings {
|
|
2849
2956
|
deleteFilesAfterCompletion?: any;
|
|
2850
|
-
enablePartitionDiscovery?:
|
|
2957
|
+
enablePartitionDiscovery?: any;
|
|
2851
2958
|
fileFilter?: any;
|
|
2852
2959
|
fileListPath?: any;
|
|
2853
2960
|
modifiedDatetimeEnd?: any;
|
|
@@ -2918,11 +3025,11 @@ export interface ForEachActivity extends ControlActivity {
|
|
|
2918
3025
|
// @public
|
|
2919
3026
|
export interface FormatReadSettings {
|
|
2920
3027
|
[property: string]: any;
|
|
2921
|
-
type: "DelimitedTextReadSettings" | "JsonReadSettings" | "XmlReadSettings" | "BinaryReadSettings";
|
|
3028
|
+
type: "ParquetReadSettings" | "DelimitedTextReadSettings" | "JsonReadSettings" | "XmlReadSettings" | "BinaryReadSettings";
|
|
2922
3029
|
}
|
|
2923
3030
|
|
|
2924
3031
|
// @public (undocumented)
|
|
2925
|
-
export type FormatReadSettingsUnion = FormatReadSettings | DelimitedTextReadSettings | JsonReadSettings | XmlReadSettings | BinaryReadSettings;
|
|
3032
|
+
export type FormatReadSettingsUnion = FormatReadSettings | ParquetReadSettings | DelimitedTextReadSettings | JsonReadSettings | XmlReadSettings | BinaryReadSettings;
|
|
2926
3033
|
|
|
2927
3034
|
// @public
|
|
2928
3035
|
export interface FormatWriteSettings {
|
|
@@ -2933,6 +3040,9 @@ export interface FormatWriteSettings {
|
|
|
2933
3040
|
// @public (undocumented)
|
|
2934
3041
|
export type FormatWriteSettingsUnion = FormatWriteSettings | AvroWriteSettings | OrcWriteSettings | ParquetWriteSettings | DelimitedTextWriteSettings | JsonWriteSettings;
|
|
2935
3042
|
|
|
3043
|
+
// @public
|
|
3044
|
+
export type FrequencyType = string;
|
|
3045
|
+
|
|
2936
3046
|
// @public
|
|
2937
3047
|
export type FtpAuthenticationType = string;
|
|
2938
3048
|
|
|
@@ -2940,12 +3050,12 @@ export type FtpAuthenticationType = string;
|
|
|
2940
3050
|
export interface FtpReadSettings extends StoreReadSettings {
|
|
2941
3051
|
deleteFilesAfterCompletion?: any;
|
|
2942
3052
|
disableChunking?: any;
|
|
2943
|
-
enablePartitionDiscovery?:
|
|
3053
|
+
enablePartitionDiscovery?: any;
|
|
2944
3054
|
fileListPath?: any;
|
|
2945
3055
|
partitionRootPath?: any;
|
|
2946
3056
|
recursive?: any;
|
|
2947
3057
|
type: "FtpReadSettings";
|
|
2948
|
-
useBinaryTransfer?:
|
|
3058
|
+
useBinaryTransfer?: any;
|
|
2949
3059
|
wildcardFileName?: any;
|
|
2950
3060
|
wildcardFolderPath?: any;
|
|
2951
3061
|
}
|
|
@@ -2955,7 +3065,7 @@ export interface FtpServerLinkedService extends LinkedService {
|
|
|
2955
3065
|
authenticationType?: FtpAuthenticationType;
|
|
2956
3066
|
enableServerCertificateValidation?: any;
|
|
2957
3067
|
enableSsl?: any;
|
|
2958
|
-
encryptedCredential?:
|
|
3068
|
+
encryptedCredential?: string;
|
|
2959
3069
|
host: any;
|
|
2960
3070
|
password?: SecretBaseUnion;
|
|
2961
3071
|
port?: any;
|
|
@@ -3084,9 +3194,13 @@ export interface GoogleAdWordsLinkedService extends LinkedService {
|
|
|
3084
3194
|
connectionProperties?: any;
|
|
3085
3195
|
developerToken?: SecretBaseUnion;
|
|
3086
3196
|
email?: any;
|
|
3087
|
-
encryptedCredential?:
|
|
3197
|
+
encryptedCredential?: string;
|
|
3198
|
+
googleAdsApiVersion?: any;
|
|
3088
3199
|
keyFilePath?: any;
|
|
3200
|
+
loginCustomerID?: any;
|
|
3201
|
+
privateKey?: SecretBaseUnion;
|
|
3089
3202
|
refreshToken?: SecretBaseUnion;
|
|
3203
|
+
supportLegacyDataTypes?: any;
|
|
3090
3204
|
trustedCertPath?: any;
|
|
3091
3205
|
type: "GoogleAdWords";
|
|
3092
3206
|
useSystemTrustStore?: any;
|
|
@@ -3114,7 +3228,7 @@ export interface GoogleBigQueryLinkedService extends LinkedService {
|
|
|
3114
3228
|
clientId?: any;
|
|
3115
3229
|
clientSecret?: SecretBaseUnion;
|
|
3116
3230
|
email?: any;
|
|
3117
|
-
encryptedCredential?:
|
|
3231
|
+
encryptedCredential?: string;
|
|
3118
3232
|
keyFilePath?: any;
|
|
3119
3233
|
project: any;
|
|
3120
3234
|
refreshToken?: SecretBaseUnion;
|
|
@@ -3141,7 +3255,7 @@ export interface GoogleBigQuerySource extends TabularSource {
|
|
|
3141
3255
|
// @public
|
|
3142
3256
|
export interface GoogleCloudStorageLinkedService extends LinkedService {
|
|
3143
3257
|
accessKeyId?: any;
|
|
3144
|
-
encryptedCredential?:
|
|
3258
|
+
encryptedCredential?: string;
|
|
3145
3259
|
secretAccessKey?: SecretBaseUnion;
|
|
3146
3260
|
serviceUrl?: any;
|
|
3147
3261
|
type: "GoogleCloudStorage";
|
|
@@ -3157,7 +3271,7 @@ export interface GoogleCloudStorageLocation extends DatasetLocation {
|
|
|
3157
3271
|
// @public
|
|
3158
3272
|
export interface GoogleCloudStorageReadSettings extends StoreReadSettings {
|
|
3159
3273
|
deleteFilesAfterCompletion?: any;
|
|
3160
|
-
enablePartitionDiscovery?:
|
|
3274
|
+
enablePartitionDiscovery?: any;
|
|
3161
3275
|
fileListPath?: any;
|
|
3162
3276
|
modifiedDatetimeEnd?: any;
|
|
3163
3277
|
modifiedDatetimeStart?: any;
|
|
@@ -3172,14 +3286,14 @@ export interface GoogleCloudStorageReadSettings extends StoreReadSettings {
|
|
|
3172
3286
|
// @public
|
|
3173
3287
|
export interface GoogleSheetsLinkedService extends LinkedService {
|
|
3174
3288
|
apiToken: SecretBaseUnion;
|
|
3175
|
-
encryptedCredential?:
|
|
3289
|
+
encryptedCredential?: string;
|
|
3176
3290
|
type: "GoogleSheets";
|
|
3177
3291
|
}
|
|
3178
3292
|
|
|
3179
3293
|
// @public
|
|
3180
3294
|
export interface GreenplumLinkedService extends LinkedService {
|
|
3181
3295
|
connectionString?: any;
|
|
3182
|
-
encryptedCredential?:
|
|
3296
|
+
encryptedCredential?: string;
|
|
3183
3297
|
pwd?: AzureKeyVaultSecretReference;
|
|
3184
3298
|
type: "Greenplum";
|
|
3185
3299
|
}
|
|
@@ -3207,7 +3321,7 @@ export interface HBaseLinkedService extends LinkedService {
|
|
|
3207
3321
|
allowSelfSignedServerCert?: any;
|
|
3208
3322
|
authenticationType: HBaseAuthenticationType;
|
|
3209
3323
|
enableSsl?: any;
|
|
3210
|
-
encryptedCredential?:
|
|
3324
|
+
encryptedCredential?: string;
|
|
3211
3325
|
host: any;
|
|
3212
3326
|
httpPath?: any;
|
|
3213
3327
|
password?: SecretBaseUnion;
|
|
@@ -3232,7 +3346,7 @@ export interface HBaseSource extends TabularSource {
|
|
|
3232
3346
|
// @public
|
|
3233
3347
|
export interface HdfsLinkedService extends LinkedService {
|
|
3234
3348
|
authenticationType?: any;
|
|
3235
|
-
encryptedCredential?:
|
|
3349
|
+
encryptedCredential?: string;
|
|
3236
3350
|
password?: SecretBaseUnion;
|
|
3237
3351
|
type: "Hdfs";
|
|
3238
3352
|
url: any;
|
|
@@ -3248,7 +3362,7 @@ export interface HdfsLocation extends DatasetLocation {
|
|
|
3248
3362
|
export interface HdfsReadSettings extends StoreReadSettings {
|
|
3249
3363
|
deleteFilesAfterCompletion?: any;
|
|
3250
3364
|
distcpSettings?: DistcpSettings;
|
|
3251
|
-
enablePartitionDiscovery?:
|
|
3365
|
+
enablePartitionDiscovery?: any;
|
|
3252
3366
|
fileListPath?: any;
|
|
3253
3367
|
modifiedDatetimeEnd?: any;
|
|
3254
3368
|
modifiedDatetimeStart?: any;
|
|
@@ -3284,13 +3398,15 @@ export interface HDInsightHiveActivity extends ExecutionActivity {
|
|
|
3284
3398
|
scriptPath?: any;
|
|
3285
3399
|
storageLinkedServices?: LinkedServiceReference[];
|
|
3286
3400
|
type: "HDInsightHive";
|
|
3287
|
-
variables?:
|
|
3401
|
+
variables?: {
|
|
3402
|
+
[propertyName: string]: any;
|
|
3403
|
+
};
|
|
3288
3404
|
}
|
|
3289
3405
|
|
|
3290
3406
|
// @public
|
|
3291
3407
|
export interface HDInsightLinkedService extends LinkedService {
|
|
3292
3408
|
clusterUri: any;
|
|
3293
|
-
encryptedCredential?:
|
|
3409
|
+
encryptedCredential?: string;
|
|
3294
3410
|
fileSystem?: any;
|
|
3295
3411
|
hcatalogLinkedServiceName?: LinkedServiceReference;
|
|
3296
3412
|
isEspEnabled?: any;
|
|
@@ -3329,7 +3445,7 @@ export interface HDInsightOnDemandLinkedService extends LinkedService {
|
|
|
3329
3445
|
coreConfiguration?: any;
|
|
3330
3446
|
credential?: CredentialReference;
|
|
3331
3447
|
dataNodeSize?: any;
|
|
3332
|
-
encryptedCredential?:
|
|
3448
|
+
encryptedCredential?: string;
|
|
3333
3449
|
hBaseConfiguration?: any;
|
|
3334
3450
|
hcatalogLinkedServiceName?: LinkedServiceReference;
|
|
3335
3451
|
hdfsConfiguration?: any;
|
|
@@ -3410,7 +3526,7 @@ export interface HiveLinkedService extends LinkedService {
|
|
|
3410
3526
|
allowSelfSignedServerCert?: any;
|
|
3411
3527
|
authenticationType: HiveAuthenticationType;
|
|
3412
3528
|
enableSsl?: any;
|
|
3413
|
-
encryptedCredential?:
|
|
3529
|
+
encryptedCredential?: string;
|
|
3414
3530
|
host: any;
|
|
3415
3531
|
httpPath?: any;
|
|
3416
3532
|
password?: SecretBaseUnion;
|
|
@@ -3467,7 +3583,7 @@ export interface HttpLinkedService extends LinkedService {
|
|
|
3467
3583
|
certThumbprint?: any;
|
|
3468
3584
|
embeddedCertData?: any;
|
|
3469
3585
|
enableServerCertificateValidation?: any;
|
|
3470
|
-
encryptedCredential?:
|
|
3586
|
+
encryptedCredential?: string;
|
|
3471
3587
|
password?: SecretBaseUnion;
|
|
3472
3588
|
type: "HttpServer";
|
|
3473
3589
|
url: any;
|
|
@@ -3476,9 +3592,8 @@ export interface HttpLinkedService extends LinkedService {
|
|
|
3476
3592
|
|
|
3477
3593
|
// @public
|
|
3478
3594
|
export interface HttpReadSettings extends StoreReadSettings {
|
|
3595
|
+
additionalColumns?: any;
|
|
3479
3596
|
additionalHeaders?: any;
|
|
3480
|
-
enablePartitionDiscovery?: boolean;
|
|
3481
|
-
partitionRootPath?: any;
|
|
3482
3597
|
requestBody?: any;
|
|
3483
3598
|
requestMethod?: any;
|
|
3484
3599
|
requestTimeout?: any;
|
|
@@ -3502,7 +3617,7 @@ export interface HubspotLinkedService extends LinkedService {
|
|
|
3502
3617
|
accessToken?: SecretBaseUnion;
|
|
3503
3618
|
clientId: any;
|
|
3504
3619
|
clientSecret?: SecretBaseUnion;
|
|
3505
|
-
encryptedCredential?:
|
|
3620
|
+
encryptedCredential?: string;
|
|
3506
3621
|
refreshToken?: SecretBaseUnion;
|
|
3507
3622
|
type: "Hubspot";
|
|
3508
3623
|
useEncryptedEndpoints?: any;
|
|
@@ -3539,7 +3654,7 @@ export interface ImpalaLinkedService extends LinkedService {
|
|
|
3539
3654
|
allowSelfSignedServerCert?: any;
|
|
3540
3655
|
authenticationType: ImpalaAuthenticationType;
|
|
3541
3656
|
enableSsl?: any;
|
|
3542
|
-
encryptedCredential?:
|
|
3657
|
+
encryptedCredential?: string;
|
|
3543
3658
|
host: any;
|
|
3544
3659
|
password?: SecretBaseUnion;
|
|
3545
3660
|
port?: any;
|
|
@@ -3577,7 +3692,7 @@ export interface InformixLinkedService extends LinkedService {
|
|
|
3577
3692
|
authenticationType?: any;
|
|
3578
3693
|
connectionString: any;
|
|
3579
3694
|
credential?: SecretBaseUnion;
|
|
3580
|
-
encryptedCredential?:
|
|
3695
|
+
encryptedCredential?: string;
|
|
3581
3696
|
password?: SecretBaseUnion;
|
|
3582
3697
|
type: "Informix";
|
|
3583
3698
|
userName?: any;
|
|
@@ -3661,9 +3776,16 @@ export interface IntegrationRuntimeDataFlowProperties {
|
|
|
3661
3776
|
cleanup?: boolean;
|
|
3662
3777
|
computeType?: DataFlowComputeType;
|
|
3663
3778
|
coreCount?: number;
|
|
3779
|
+
customProperties?: IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem[];
|
|
3664
3780
|
timeToLive?: number;
|
|
3665
3781
|
}
|
|
3666
3782
|
|
|
3783
|
+
// @public (undocumented)
|
|
3784
|
+
export interface IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem {
|
|
3785
|
+
name?: string;
|
|
3786
|
+
value?: string;
|
|
3787
|
+
}
|
|
3788
|
+
|
|
3667
3789
|
// @public
|
|
3668
3790
|
export interface IntegrationRuntimeDataProxyProperties {
|
|
3669
3791
|
connectVia?: EntityReference;
|
|
@@ -4028,7 +4150,7 @@ export interface IntegrationRuntimeVNetProperties {
|
|
|
4028
4150
|
|
|
4029
4151
|
// @public
|
|
4030
4152
|
export interface JiraLinkedService extends LinkedService {
|
|
4031
|
-
encryptedCredential?:
|
|
4153
|
+
encryptedCredential?: string;
|
|
4032
4154
|
host: any;
|
|
4033
4155
|
password?: SecretBaseUnion;
|
|
4034
4156
|
port?: any;
|
|
@@ -4102,6 +4224,19 @@ export interface JsonWriteSettings extends FormatWriteSettings {
|
|
|
4102
4224
|
type: "JsonWriteSettings";
|
|
4103
4225
|
}
|
|
4104
4226
|
|
|
4227
|
+
// @public
|
|
4228
|
+
export enum KnownActivityOnInactiveMarkAs {
|
|
4229
|
+
Failed = "Failed",
|
|
4230
|
+
Skipped = "Skipped",
|
|
4231
|
+
Succeeded = "Succeeded"
|
|
4232
|
+
}
|
|
4233
|
+
|
|
4234
|
+
// @public
|
|
4235
|
+
export enum KnownActivityState {
|
|
4236
|
+
Active = "Active",
|
|
4237
|
+
Inactive = "Inactive"
|
|
4238
|
+
}
|
|
4239
|
+
|
|
4105
4240
|
// @public
|
|
4106
4241
|
export enum KnownAmazonRdsForOraclePartitionOption {
|
|
4107
4242
|
DynamicRange = "DynamicRange",
|
|
@@ -4190,6 +4325,11 @@ export enum KnownConfigurationType {
|
|
|
4190
4325
|
Default = "Default"
|
|
4191
4326
|
}
|
|
4192
4327
|
|
|
4328
|
+
// @public
|
|
4329
|
+
export enum KnownConnectionType {
|
|
4330
|
+
Linkedservicetype = "linkedservicetype"
|
|
4331
|
+
}
|
|
4332
|
+
|
|
4193
4333
|
// @public
|
|
4194
4334
|
export enum KnownCopyBehaviorType {
|
|
4195
4335
|
FlattenHierarchy = "FlattenHierarchy",
|
|
@@ -4203,12 +4343,6 @@ export enum KnownCosmosDbConnectionMode {
|
|
|
4203
4343
|
Gateway = "Gateway"
|
|
4204
4344
|
}
|
|
4205
4345
|
|
|
4206
|
-
// @public
|
|
4207
|
-
export enum KnownCosmosDbServicePrincipalCredentialType {
|
|
4208
|
-
ServicePrincipalCert = "ServicePrincipalCert",
|
|
4209
|
-
ServicePrincipalKey = "ServicePrincipalKey"
|
|
4210
|
-
}
|
|
4211
|
-
|
|
4212
4346
|
// @public
|
|
4213
4347
|
export enum KnownCredentialReferenceType {
|
|
4214
4348
|
CredentialReference = "CredentialReference"
|
|
@@ -4286,6 +4420,13 @@ export enum KnownFactoryIdentityType {
|
|
|
4286
4420
|
UserAssigned = "UserAssigned"
|
|
4287
4421
|
}
|
|
4288
4422
|
|
|
4423
|
+
// @public
|
|
4424
|
+
export enum KnownFrequencyType {
|
|
4425
|
+
Hour = "Hour",
|
|
4426
|
+
Minute = "Minute",
|
|
4427
|
+
Second = "Second"
|
|
4428
|
+
}
|
|
4429
|
+
|
|
4289
4430
|
// @public
|
|
4290
4431
|
export enum KnownFtpAuthenticationType {
|
|
4291
4432
|
Anonymous = "Anonymous",
|
|
@@ -4469,6 +4610,13 @@ export enum KnownManagedVirtualNetworkReferenceType {
|
|
|
4469
4610
|
ManagedVirtualNetworkReference = "ManagedVirtualNetworkReference"
|
|
4470
4611
|
}
|
|
4471
4612
|
|
|
4613
|
+
// @public
|
|
4614
|
+
export enum KnownMappingType {
|
|
4615
|
+
Aggregate = "Aggregate",
|
|
4616
|
+
Derived = "Derived",
|
|
4617
|
+
Direct = "Direct"
|
|
4618
|
+
}
|
|
4619
|
+
|
|
4472
4620
|
// @public
|
|
4473
4621
|
export enum KnownMongoDbAuthenticationType {
|
|
4474
4622
|
Anonymous = "Anonymous",
|
|
@@ -4910,6 +5058,65 @@ export enum KnownZendeskAuthenticationType {
|
|
|
4910
5058
|
Token = "Token"
|
|
4911
5059
|
}
|
|
4912
5060
|
|
|
5061
|
+
// @public
|
|
5062
|
+
export interface LakeHouseLinkedService extends LinkedService {
|
|
5063
|
+
artifactId?: any;
|
|
5064
|
+
encryptedCredential?: string;
|
|
5065
|
+
servicePrincipalCredential?: SecretBaseUnion;
|
|
5066
|
+
servicePrincipalCredentialType?: any;
|
|
5067
|
+
servicePrincipalId?: any;
|
|
5068
|
+
servicePrincipalKey?: SecretBaseUnion;
|
|
5069
|
+
tenant?: any;
|
|
5070
|
+
type: "LakeHouse";
|
|
5071
|
+
workspaceId?: any;
|
|
5072
|
+
}
|
|
5073
|
+
|
|
5074
|
+
// @public
|
|
5075
|
+
export interface LakeHouseLocation extends DatasetLocation {
|
|
5076
|
+
type: "LakeHouseLocation";
|
|
5077
|
+
}
|
|
5078
|
+
|
|
5079
|
+
// @public
|
|
5080
|
+
export interface LakeHouseReadSettings extends StoreReadSettings {
|
|
5081
|
+
deleteFilesAfterCompletion?: any;
|
|
5082
|
+
enablePartitionDiscovery?: any;
|
|
5083
|
+
fileListPath?: any;
|
|
5084
|
+
modifiedDatetimeEnd?: any;
|
|
5085
|
+
modifiedDatetimeStart?: any;
|
|
5086
|
+
partitionRootPath?: any;
|
|
5087
|
+
recursive?: any;
|
|
5088
|
+
type: "LakeHouseReadSettings";
|
|
5089
|
+
wildcardFileName?: any;
|
|
5090
|
+
wildcardFolderPath?: any;
|
|
5091
|
+
}
|
|
5092
|
+
|
|
5093
|
+
// @public
|
|
5094
|
+
export interface LakeHouseTableDataset extends Dataset {
|
|
5095
|
+
table?: any;
|
|
5096
|
+
type: "LakeHouseTable";
|
|
5097
|
+
}
|
|
5098
|
+
|
|
5099
|
+
// @public
|
|
5100
|
+
export interface LakeHouseTableSink extends CopySink {
|
|
5101
|
+
partitionNameList?: any;
|
|
5102
|
+
partitionOption?: any;
|
|
5103
|
+
tableActionOption?: any;
|
|
5104
|
+
type: "LakeHouseTableSink";
|
|
5105
|
+
}
|
|
5106
|
+
|
|
5107
|
+
// @public
|
|
5108
|
+
export interface LakeHouseTableSource extends CopySource {
|
|
5109
|
+
additionalColumns?: any;
|
|
5110
|
+
timestampAsOf?: any;
|
|
5111
|
+
type: "LakeHouseTableSource";
|
|
5112
|
+
versionAsOf?: any;
|
|
5113
|
+
}
|
|
5114
|
+
|
|
5115
|
+
// @public
|
|
5116
|
+
export interface LakeHouseWriteSettings extends StoreWriteSettings {
|
|
5117
|
+
type: "LakeHouseWriteSettings";
|
|
5118
|
+
}
|
|
5119
|
+
|
|
4913
5120
|
// @public
|
|
4914
5121
|
export interface LinkedIntegrationRuntime {
|
|
4915
5122
|
readonly createTime?: Date;
|
|
@@ -4954,7 +5161,7 @@ export interface LinkedService {
|
|
|
4954
5161
|
parameters?: {
|
|
4955
5162
|
[propertyName: string]: ParameterSpecification;
|
|
4956
5163
|
};
|
|
4957
|
-
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" | "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";
|
|
5164
|
+
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" | "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";
|
|
4958
5165
|
}
|
|
4959
5166
|
|
|
4960
5167
|
// @public
|
|
@@ -5025,7 +5232,7 @@ export interface LinkedServicesListByFactoryOptionalParams extends coreClient.Op
|
|
|
5025
5232
|
export type LinkedServicesListByFactoryResponse = LinkedServiceListResponse;
|
|
5026
5233
|
|
|
5027
5234
|
// @public (undocumented)
|
|
5028
|
-
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 | SapOdpLinkedService | RestServiceLinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | DataworldLinkedService | AppFiguresLinkedService | AsanaLinkedService | TwilioLinkedService | GoogleSheetsLinkedService | 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 | AzureSynapseArtifactsLinkedService;
|
|
5235
|
+
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 | SapOdpLinkedService | RestServiceLinkedService | TeamDeskLinkedService | QuickbaseLinkedService | SmartsheetLinkedService | ZendeskLinkedService | DataworldLinkedService | AppFiguresLinkedService | AsanaLinkedService | TwilioLinkedService | GoogleSheetsLinkedService | 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 | AzureSynapseArtifactsLinkedService | LakeHouseLinkedService;
|
|
5029
5236
|
|
|
5030
5237
|
// @public
|
|
5031
5238
|
export interface LogLocationSettings {
|
|
@@ -5060,7 +5267,7 @@ export interface LookupActivity extends ExecutionActivity {
|
|
|
5060
5267
|
// @public
|
|
5061
5268
|
export interface MagentoLinkedService extends LinkedService {
|
|
5062
5269
|
accessToken?: SecretBaseUnion;
|
|
5063
|
-
encryptedCredential?:
|
|
5270
|
+
encryptedCredential?: string;
|
|
5064
5271
|
host: any;
|
|
5065
5272
|
type: "Magento";
|
|
5066
5273
|
useEncryptedEndpoints?: any;
|
|
@@ -5269,6 +5476,88 @@ export interface ManagedVirtualNetworksListByFactoryOptionalParams extends coreC
|
|
|
5269
5476
|
// @public
|
|
5270
5477
|
export type ManagedVirtualNetworksListByFactoryResponse = ManagedVirtualNetworkListResponse;
|
|
5271
5478
|
|
|
5479
|
+
// @public
|
|
5480
|
+
export interface MapperAttributeMapping {
|
|
5481
|
+
attributeReference?: MapperAttributeReference;
|
|
5482
|
+
attributeReferences?: MapperAttributeReference[];
|
|
5483
|
+
expression?: string;
|
|
5484
|
+
functionName?: string;
|
|
5485
|
+
name?: string;
|
|
5486
|
+
type?: MappingType;
|
|
5487
|
+
}
|
|
5488
|
+
|
|
5489
|
+
// @public
|
|
5490
|
+
export interface MapperAttributeMappings {
|
|
5491
|
+
attributeMappings?: MapperAttributeMapping[];
|
|
5492
|
+
}
|
|
5493
|
+
|
|
5494
|
+
// @public
|
|
5495
|
+
export interface MapperAttributeReference {
|
|
5496
|
+
entity?: string;
|
|
5497
|
+
entityConnectionReference?: MapperConnectionReference;
|
|
5498
|
+
name?: string;
|
|
5499
|
+
}
|
|
5500
|
+
|
|
5501
|
+
// @public
|
|
5502
|
+
export interface MapperConnection {
|
|
5503
|
+
commonDslConnectorProperties?: MapperDslConnectorProperties[];
|
|
5504
|
+
isInlineDataset?: boolean;
|
|
5505
|
+
linkedService?: LinkedServiceReference;
|
|
5506
|
+
linkedServiceType?: string;
|
|
5507
|
+
type: ConnectionType;
|
|
5508
|
+
}
|
|
5509
|
+
|
|
5510
|
+
// @public
|
|
5511
|
+
export interface MapperConnectionReference {
|
|
5512
|
+
connectionName?: string;
|
|
5513
|
+
type?: ConnectionType;
|
|
5514
|
+
}
|
|
5515
|
+
|
|
5516
|
+
// @public
|
|
5517
|
+
export interface MapperDslConnectorProperties {
|
|
5518
|
+
name?: string;
|
|
5519
|
+
value?: any;
|
|
5520
|
+
}
|
|
5521
|
+
|
|
5522
|
+
// @public
|
|
5523
|
+
export interface MapperPolicy {
|
|
5524
|
+
mode?: string;
|
|
5525
|
+
recurrence?: MapperPolicyRecurrence;
|
|
5526
|
+
}
|
|
5527
|
+
|
|
5528
|
+
// @public
|
|
5529
|
+
export interface MapperPolicyRecurrence {
|
|
5530
|
+
frequency?: FrequencyType;
|
|
5531
|
+
interval?: number;
|
|
5532
|
+
}
|
|
5533
|
+
|
|
5534
|
+
// @public
|
|
5535
|
+
export interface MapperSourceConnectionsInfo {
|
|
5536
|
+
connection?: MapperConnection;
|
|
5537
|
+
sourceEntities?: MapperTable[];
|
|
5538
|
+
}
|
|
5539
|
+
|
|
5540
|
+
// @public
|
|
5541
|
+
export interface MapperTable {
|
|
5542
|
+
dslConnectorProperties?: MapperDslConnectorProperties[];
|
|
5543
|
+
name?: string;
|
|
5544
|
+
schema?: MapperTableSchema[];
|
|
5545
|
+
}
|
|
5546
|
+
|
|
5547
|
+
// @public
|
|
5548
|
+
export interface MapperTableSchema {
|
|
5549
|
+
dataType?: string;
|
|
5550
|
+
name?: string;
|
|
5551
|
+
}
|
|
5552
|
+
|
|
5553
|
+
// @public
|
|
5554
|
+
export interface MapperTargetConnectionsInfo {
|
|
5555
|
+
connection?: MapperConnection;
|
|
5556
|
+
dataMapperMappings?: DataMapperMapping[];
|
|
5557
|
+
relationships?: any[];
|
|
5558
|
+
targetEntities?: MapperTable[];
|
|
5559
|
+
}
|
|
5560
|
+
|
|
5272
5561
|
// @public
|
|
5273
5562
|
export interface MappingDataFlow extends DataFlow {
|
|
5274
5563
|
script?: string;
|
|
@@ -5279,10 +5568,13 @@ export interface MappingDataFlow extends DataFlow {
|
|
|
5279
5568
|
type: "MappingDataFlow";
|
|
5280
5569
|
}
|
|
5281
5570
|
|
|
5571
|
+
// @public
|
|
5572
|
+
export type MappingType = string;
|
|
5573
|
+
|
|
5282
5574
|
// @public
|
|
5283
5575
|
export interface MariaDBLinkedService extends LinkedService {
|
|
5284
5576
|
connectionString?: any;
|
|
5285
|
-
encryptedCredential?:
|
|
5577
|
+
encryptedCredential?: string;
|
|
5286
5578
|
pwd?: AzureKeyVaultSecretReference;
|
|
5287
5579
|
type: "MariaDB";
|
|
5288
5580
|
}
|
|
@@ -5303,7 +5595,7 @@ export interface MariaDBTableDataset extends Dataset {
|
|
|
5303
5595
|
export interface MarketoLinkedService extends LinkedService {
|
|
5304
5596
|
clientId: any;
|
|
5305
5597
|
clientSecret?: SecretBaseUnion;
|
|
5306
|
-
encryptedCredential?:
|
|
5598
|
+
encryptedCredential?: string;
|
|
5307
5599
|
endpoint: any;
|
|
5308
5600
|
type: "Marketo";
|
|
5309
5601
|
useEncryptedEndpoints?: any;
|
|
@@ -5334,7 +5626,7 @@ export interface MicrosoftAccessLinkedService extends LinkedService {
|
|
|
5334
5626
|
authenticationType?: any;
|
|
5335
5627
|
connectionString: any;
|
|
5336
5628
|
credential?: SecretBaseUnion;
|
|
5337
|
-
encryptedCredential?:
|
|
5629
|
+
encryptedCredential?: string;
|
|
5338
5630
|
password?: SecretBaseUnion;
|
|
5339
5631
|
type: "MicrosoftAccess";
|
|
5340
5632
|
userName?: any;
|
|
@@ -5369,6 +5661,7 @@ export interface MongoDbAtlasCollectionDataset extends Dataset {
|
|
|
5369
5661
|
export interface MongoDbAtlasLinkedService extends LinkedService {
|
|
5370
5662
|
connectionString: any;
|
|
5371
5663
|
database: any;
|
|
5664
|
+
driverVersion?: any;
|
|
5372
5665
|
type: "MongoDbAtlas";
|
|
5373
5666
|
}
|
|
5374
5667
|
|
|
@@ -5413,7 +5706,7 @@ export interface MongoDbLinkedService extends LinkedService {
|
|
|
5413
5706
|
authSource?: any;
|
|
5414
5707
|
databaseName: any;
|
|
5415
5708
|
enableSsl?: any;
|
|
5416
|
-
encryptedCredential?:
|
|
5709
|
+
encryptedCredential?: string;
|
|
5417
5710
|
password?: SecretBaseUnion;
|
|
5418
5711
|
port?: any;
|
|
5419
5712
|
server: any;
|
|
@@ -5469,7 +5762,7 @@ export type MultiplePipelineTriggerUnion = MultiplePipelineTrigger | ScheduleTri
|
|
|
5469
5762
|
// @public
|
|
5470
5763
|
export interface MySqlLinkedService extends LinkedService {
|
|
5471
5764
|
connectionString: any;
|
|
5472
|
-
encryptedCredential?:
|
|
5765
|
+
encryptedCredential?: string;
|
|
5473
5766
|
password?: AzureKeyVaultSecretReference;
|
|
5474
5767
|
type: "MySql";
|
|
5475
5768
|
}
|
|
@@ -5489,7 +5782,7 @@ export interface MySqlTableDataset extends Dataset {
|
|
|
5489
5782
|
// @public
|
|
5490
5783
|
export interface NetezzaLinkedService extends LinkedService {
|
|
5491
5784
|
connectionString?: any;
|
|
5492
|
-
encryptedCredential?:
|
|
5785
|
+
encryptedCredential?: string;
|
|
5493
5786
|
pwd?: AzureKeyVaultSecretReference;
|
|
5494
5787
|
type: "Netezza";
|
|
5495
5788
|
}
|
|
@@ -5545,7 +5838,7 @@ export interface ODataLinkedService extends LinkedService {
|
|
|
5545
5838
|
authenticationType?: ODataAuthenticationType;
|
|
5546
5839
|
authHeaders?: any;
|
|
5547
5840
|
azureCloudType?: any;
|
|
5548
|
-
encryptedCredential?:
|
|
5841
|
+
encryptedCredential?: string;
|
|
5549
5842
|
password?: SecretBaseUnion;
|
|
5550
5843
|
servicePrincipalEmbeddedCert?: SecretBaseUnion;
|
|
5551
5844
|
servicePrincipalEmbeddedCertPassword?: SecretBaseUnion;
|
|
@@ -5576,7 +5869,7 @@ export interface OdbcLinkedService extends LinkedService {
|
|
|
5576
5869
|
authenticationType?: any;
|
|
5577
5870
|
connectionString: any;
|
|
5578
5871
|
credential?: SecretBaseUnion;
|
|
5579
|
-
encryptedCredential?:
|
|
5872
|
+
encryptedCredential?: string;
|
|
5580
5873
|
password?: SecretBaseUnion;
|
|
5581
5874
|
type: "Odbc";
|
|
5582
5875
|
userName?: any;
|
|
@@ -5609,7 +5902,7 @@ export interface Office365Dataset extends Dataset {
|
|
|
5609
5902
|
|
|
5610
5903
|
// @public
|
|
5611
5904
|
export interface Office365LinkedService extends LinkedService {
|
|
5612
|
-
encryptedCredential?:
|
|
5905
|
+
encryptedCredential?: string;
|
|
5613
5906
|
office365TenantId: any;
|
|
5614
5907
|
servicePrincipalId: any;
|
|
5615
5908
|
servicePrincipalKey: SecretBaseUnion;
|
|
@@ -5712,7 +6005,7 @@ export type OperationsListResponse = OperationListResponse;
|
|
|
5712
6005
|
// @public
|
|
5713
6006
|
export interface OracleCloudStorageLinkedService extends LinkedService {
|
|
5714
6007
|
accessKeyId?: any;
|
|
5715
|
-
encryptedCredential?:
|
|
6008
|
+
encryptedCredential?: string;
|
|
5716
6009
|
secretAccessKey?: SecretBaseUnion;
|
|
5717
6010
|
serviceUrl?: any;
|
|
5718
6011
|
type: "OracleCloudStorage";
|
|
@@ -5728,7 +6021,7 @@ export interface OracleCloudStorageLocation extends DatasetLocation {
|
|
|
5728
6021
|
// @public
|
|
5729
6022
|
export interface OracleCloudStorageReadSettings extends StoreReadSettings {
|
|
5730
6023
|
deleteFilesAfterCompletion?: any;
|
|
5731
|
-
enablePartitionDiscovery?:
|
|
6024
|
+
enablePartitionDiscovery?: any;
|
|
5732
6025
|
fileListPath?: any;
|
|
5733
6026
|
modifiedDatetimeEnd?: any;
|
|
5734
6027
|
modifiedDatetimeStart?: any;
|
|
@@ -5743,7 +6036,7 @@ export interface OracleCloudStorageReadSettings extends StoreReadSettings {
|
|
|
5743
6036
|
// @public
|
|
5744
6037
|
export interface OracleLinkedService extends LinkedService {
|
|
5745
6038
|
connectionString: any;
|
|
5746
|
-
encryptedCredential?:
|
|
6039
|
+
encryptedCredential?: string;
|
|
5747
6040
|
password?: AzureKeyVaultSecretReference;
|
|
5748
6041
|
type: "Oracle";
|
|
5749
6042
|
}
|
|
@@ -5761,7 +6054,7 @@ export interface OraclePartitionSettings {
|
|
|
5761
6054
|
|
|
5762
6055
|
// @public
|
|
5763
6056
|
export interface OracleServiceCloudLinkedService extends LinkedService {
|
|
5764
|
-
encryptedCredential?:
|
|
6057
|
+
encryptedCredential?: string;
|
|
5765
6058
|
host: any;
|
|
5766
6059
|
password: SecretBaseUnion;
|
|
5767
6060
|
type: "OracleServiceCloud";
|
|
@@ -5843,6 +6136,11 @@ export interface OrcWriteSettings extends FormatWriteSettings {
|
|
|
5843
6136
|
type: "OrcWriteSettings";
|
|
5844
6137
|
}
|
|
5845
6138
|
|
|
6139
|
+
// @public
|
|
6140
|
+
export interface OutputColumn {
|
|
6141
|
+
name?: string;
|
|
6142
|
+
}
|
|
6143
|
+
|
|
5846
6144
|
// @public
|
|
5847
6145
|
export interface PackageStore {
|
|
5848
6146
|
name: string;
|
|
@@ -5870,6 +6168,12 @@ export interface ParquetFormat extends DatasetStorageFormat {
|
|
|
5870
6168
|
type: "ParquetFormat";
|
|
5871
6169
|
}
|
|
5872
6170
|
|
|
6171
|
+
// @public
|
|
6172
|
+
export interface ParquetReadSettings extends FormatReadSettings {
|
|
6173
|
+
compressionProperties?: CompressionReadSettingsUnion;
|
|
6174
|
+
type: "ParquetReadSettings";
|
|
6175
|
+
}
|
|
6176
|
+
|
|
5873
6177
|
// @public
|
|
5874
6178
|
export interface ParquetSink extends CopySink {
|
|
5875
6179
|
formatSettings?: ParquetWriteSettings;
|
|
@@ -5880,6 +6184,7 @@ export interface ParquetSink extends CopySink {
|
|
|
5880
6184
|
// @public
|
|
5881
6185
|
export interface ParquetSource extends CopySource {
|
|
5882
6186
|
additionalColumns?: any;
|
|
6187
|
+
formatSettings?: ParquetReadSettings;
|
|
5883
6188
|
storeSettings?: StoreReadSettingsUnion;
|
|
5884
6189
|
type: "ParquetSource";
|
|
5885
6190
|
}
|
|
@@ -5895,7 +6200,7 @@ export interface ParquetWriteSettings extends FormatWriteSettings {
|
|
|
5895
6200
|
export interface PaypalLinkedService extends LinkedService {
|
|
5896
6201
|
clientId: any;
|
|
5897
6202
|
clientSecret?: SecretBaseUnion;
|
|
5898
|
-
encryptedCredential?:
|
|
6203
|
+
encryptedCredential?: string;
|
|
5899
6204
|
host: any;
|
|
5900
6205
|
type: "Paypal";
|
|
5901
6206
|
useEncryptedEndpoints?: any;
|
|
@@ -5924,7 +6229,7 @@ export interface PhoenixLinkedService extends LinkedService {
|
|
|
5924
6229
|
allowSelfSignedServerCert?: any;
|
|
5925
6230
|
authenticationType: PhoenixAuthenticationType;
|
|
5926
6231
|
enableSsl?: any;
|
|
5927
|
-
encryptedCredential?:
|
|
6232
|
+
encryptedCredential?: string;
|
|
5928
6233
|
host: any;
|
|
5929
6234
|
httpPath?: any;
|
|
5930
6235
|
password?: SecretBaseUnion;
|
|
@@ -5957,6 +6262,8 @@ export interface PipelineElapsedTimeMetricPolicy {
|
|
|
5957
6262
|
// @public
|
|
5958
6263
|
export interface PipelineExternalComputeScaleProperties {
|
|
5959
6264
|
[property: string]: any;
|
|
6265
|
+
numberOfExternalNodes?: number;
|
|
6266
|
+
numberOfPipelineNodes?: number;
|
|
5960
6267
|
timeToLive?: number;
|
|
5961
6268
|
}
|
|
5962
6269
|
|
|
@@ -6138,7 +6445,7 @@ export type PolybaseSettingsRejectType = string;
|
|
|
6138
6445
|
// @public
|
|
6139
6446
|
export interface PostgreSqlLinkedService extends LinkedService {
|
|
6140
6447
|
connectionString: any;
|
|
6141
|
-
encryptedCredential?:
|
|
6448
|
+
encryptedCredential?: string;
|
|
6142
6449
|
password?: AzureKeyVaultSecretReference;
|
|
6143
6450
|
type: "PostgreSql";
|
|
6144
6451
|
}
|
|
@@ -6183,7 +6490,7 @@ export interface PrestoLinkedService extends LinkedService {
|
|
|
6183
6490
|
authenticationType: PrestoAuthenticationType;
|
|
6184
6491
|
catalog: any;
|
|
6185
6492
|
enableSsl?: any;
|
|
6186
|
-
encryptedCredential?:
|
|
6493
|
+
encryptedCredential?: string;
|
|
6187
6494
|
host: any;
|
|
6188
6495
|
password?: SecretBaseUnion;
|
|
6189
6496
|
port?: any;
|
|
@@ -6335,7 +6642,7 @@ export interface QueryDataFlowDebugSessionsResponse {
|
|
|
6335
6642
|
|
|
6336
6643
|
// @public
|
|
6337
6644
|
export interface QuickbaseLinkedService extends LinkedService {
|
|
6338
|
-
encryptedCredential?:
|
|
6645
|
+
encryptedCredential?: string;
|
|
6339
6646
|
type: "Quickbase";
|
|
6340
6647
|
url: any;
|
|
6341
6648
|
userToken: SecretBaseUnion;
|
|
@@ -6349,7 +6656,7 @@ export interface QuickBooksLinkedService extends LinkedService {
|
|
|
6349
6656
|
connectionProperties?: any;
|
|
6350
6657
|
consumerKey?: any;
|
|
6351
6658
|
consumerSecret?: SecretBaseUnion;
|
|
6352
|
-
encryptedCredential?:
|
|
6659
|
+
encryptedCredential?: string;
|
|
6353
6660
|
endpoint?: any;
|
|
6354
6661
|
type: "QuickBooks";
|
|
6355
6662
|
useEncryptedEndpoints?: any;
|
|
@@ -6445,7 +6752,7 @@ export interface Resource {
|
|
|
6445
6752
|
export interface ResponsysLinkedService extends LinkedService {
|
|
6446
6753
|
clientId: any;
|
|
6447
6754
|
clientSecret?: SecretBaseUnion;
|
|
6448
|
-
encryptedCredential?:
|
|
6755
|
+
encryptedCredential?: string;
|
|
6449
6756
|
endpoint: any;
|
|
6450
6757
|
type: "Responsys";
|
|
6451
6758
|
useEncryptedEndpoints?: any;
|
|
@@ -6467,8 +6774,12 @@ export interface ResponsysSource extends TabularSource {
|
|
|
6467
6774
|
|
|
6468
6775
|
// @public
|
|
6469
6776
|
export interface RestResourceDataset extends Dataset {
|
|
6470
|
-
additionalHeaders?:
|
|
6471
|
-
|
|
6777
|
+
additionalHeaders?: {
|
|
6778
|
+
[propertyName: string]: any;
|
|
6779
|
+
};
|
|
6780
|
+
paginationRules?: {
|
|
6781
|
+
[propertyName: string]: any;
|
|
6782
|
+
};
|
|
6472
6783
|
relativeUrl?: any;
|
|
6473
6784
|
requestBody?: any;
|
|
6474
6785
|
requestMethod?: any;
|
|
@@ -6488,7 +6799,7 @@ export interface RestServiceLinkedService extends LinkedService {
|
|
|
6488
6799
|
clientSecret?: SecretBaseUnion;
|
|
6489
6800
|
credential?: CredentialReference;
|
|
6490
6801
|
enableServerCertificateValidation?: any;
|
|
6491
|
-
encryptedCredential?:
|
|
6802
|
+
encryptedCredential?: string;
|
|
6492
6803
|
password?: SecretBaseUnion;
|
|
6493
6804
|
resource?: any;
|
|
6494
6805
|
scope?: any;
|
|
@@ -6566,7 +6877,7 @@ export type RunQueryOrderByField = string;
|
|
|
6566
6877
|
// @public
|
|
6567
6878
|
export interface SalesforceLinkedService extends LinkedService {
|
|
6568
6879
|
apiVersion?: any;
|
|
6569
|
-
encryptedCredential?:
|
|
6880
|
+
encryptedCredential?: string;
|
|
6570
6881
|
environmentUrl?: any;
|
|
6571
6882
|
password?: SecretBaseUnion;
|
|
6572
6883
|
securityToken?: SecretBaseUnion;
|
|
@@ -6579,7 +6890,7 @@ export interface SalesforceMarketingCloudLinkedService extends LinkedService {
|
|
|
6579
6890
|
clientId?: any;
|
|
6580
6891
|
clientSecret?: SecretBaseUnion;
|
|
6581
6892
|
connectionProperties?: any;
|
|
6582
|
-
encryptedCredential?:
|
|
6893
|
+
encryptedCredential?: string;
|
|
6583
6894
|
type: "SalesforceMarketingCloud";
|
|
6584
6895
|
useEncryptedEndpoints?: any;
|
|
6585
6896
|
useHostVerification?: any;
|
|
@@ -6607,7 +6918,7 @@ export interface SalesforceObjectDataset extends Dataset {
|
|
|
6607
6918
|
// @public
|
|
6608
6919
|
export interface SalesforceServiceCloudLinkedService extends LinkedService {
|
|
6609
6920
|
apiVersion?: any;
|
|
6610
|
-
encryptedCredential?:
|
|
6921
|
+
encryptedCredential?: string;
|
|
6611
6922
|
environmentUrl?: any;
|
|
6612
6923
|
extendedProperties?: any;
|
|
6613
6924
|
password?: SecretBaseUnion;
|
|
@@ -6634,7 +6945,7 @@ export interface SalesforceServiceCloudSink extends CopySink {
|
|
|
6634
6945
|
export interface SalesforceServiceCloudSource extends CopySource {
|
|
6635
6946
|
additionalColumns?: any;
|
|
6636
6947
|
query?: any;
|
|
6637
|
-
readBehavior?:
|
|
6948
|
+
readBehavior?: any;
|
|
6638
6949
|
type: "SalesforceServiceCloudSource";
|
|
6639
6950
|
}
|
|
6640
6951
|
|
|
@@ -6652,7 +6963,7 @@ export type SalesforceSinkWriteBehavior = string;
|
|
|
6652
6963
|
// @public
|
|
6653
6964
|
export interface SalesforceSource extends TabularSource {
|
|
6654
6965
|
query?: any;
|
|
6655
|
-
readBehavior?:
|
|
6966
|
+
readBehavior?: any;
|
|
6656
6967
|
type: "SalesforceSource";
|
|
6657
6968
|
}
|
|
6658
6969
|
|
|
@@ -6667,7 +6978,7 @@ export interface SapBwCubeDataset extends Dataset {
|
|
|
6667
6978
|
// @public
|
|
6668
6979
|
export interface SapBWLinkedService extends LinkedService {
|
|
6669
6980
|
clientId: any;
|
|
6670
|
-
encryptedCredential?:
|
|
6981
|
+
encryptedCredential?: string;
|
|
6671
6982
|
password?: SecretBaseUnion;
|
|
6672
6983
|
server: any;
|
|
6673
6984
|
systemNumber: any;
|
|
@@ -6683,7 +6994,7 @@ export interface SapBwSource extends TabularSource {
|
|
|
6683
6994
|
|
|
6684
6995
|
// @public
|
|
6685
6996
|
export interface SapCloudForCustomerLinkedService extends LinkedService {
|
|
6686
|
-
encryptedCredential?:
|
|
6997
|
+
encryptedCredential?: string;
|
|
6687
6998
|
password?: SecretBaseUnion;
|
|
6688
6999
|
type: "SapCloudForCustomer";
|
|
6689
7000
|
url: any;
|
|
@@ -6718,8 +7029,8 @@ export interface SapEccLinkedService extends LinkedService {
|
|
|
6718
7029
|
encryptedCredential?: string;
|
|
6719
7030
|
password?: SecretBaseUnion;
|
|
6720
7031
|
type: "SapEcc";
|
|
6721
|
-
url:
|
|
6722
|
-
username?:
|
|
7032
|
+
url: any;
|
|
7033
|
+
username?: any;
|
|
6723
7034
|
}
|
|
6724
7035
|
|
|
6725
7036
|
// @public
|
|
@@ -6742,7 +7053,7 @@ export type SapHanaAuthenticationType = string;
|
|
|
6742
7053
|
export interface SapHanaLinkedService extends LinkedService {
|
|
6743
7054
|
authenticationType?: SapHanaAuthenticationType;
|
|
6744
7055
|
connectionString?: any;
|
|
6745
|
-
encryptedCredential?:
|
|
7056
|
+
encryptedCredential?: string;
|
|
6746
7057
|
password?: SecretBaseUnion;
|
|
6747
7058
|
server?: any;
|
|
6748
7059
|
type: "SapHana";
|
|
@@ -6776,7 +7087,7 @@ export interface SapHanaTableDataset extends Dataset {
|
|
|
6776
7087
|
// @public
|
|
6777
7088
|
export interface SapOdpLinkedService extends LinkedService {
|
|
6778
7089
|
clientId?: any;
|
|
6779
|
-
encryptedCredential?:
|
|
7090
|
+
encryptedCredential?: string;
|
|
6780
7091
|
language?: any;
|
|
6781
7092
|
logonGroup?: any;
|
|
6782
7093
|
messageServer?: any;
|
|
@@ -6815,7 +7126,7 @@ export interface SapOdpSource extends TabularSource {
|
|
|
6815
7126
|
// @public
|
|
6816
7127
|
export interface SapOpenHubLinkedService extends LinkedService {
|
|
6817
7128
|
clientId?: any;
|
|
6818
|
-
encryptedCredential?:
|
|
7129
|
+
encryptedCredential?: string;
|
|
6819
7130
|
language?: any;
|
|
6820
7131
|
logonGroup?: any;
|
|
6821
7132
|
messageServer?: any;
|
|
@@ -6848,7 +7159,7 @@ export interface SapOpenHubTableDataset extends Dataset {
|
|
|
6848
7159
|
// @public
|
|
6849
7160
|
export interface SapTableLinkedService extends LinkedService {
|
|
6850
7161
|
clientId?: any;
|
|
6851
|
-
encryptedCredential?:
|
|
7162
|
+
encryptedCredential?: string;
|
|
6852
7163
|
language?: any;
|
|
6853
7164
|
logonGroup?: any;
|
|
6854
7165
|
messageServer?: any;
|
|
@@ -6972,6 +7283,12 @@ export interface SecretBase {
|
|
|
6972
7283
|
// @public (undocumented)
|
|
6973
7284
|
export type SecretBaseUnion = SecretBase | SecureString | AzureKeyVaultSecretReference;
|
|
6974
7285
|
|
|
7286
|
+
// @public
|
|
7287
|
+
export interface SecureInputOutputPolicy {
|
|
7288
|
+
secureInput?: boolean;
|
|
7289
|
+
secureOutput?: boolean;
|
|
7290
|
+
}
|
|
7291
|
+
|
|
6975
7292
|
// @public
|
|
6976
7293
|
export interface SecureString extends SecretBase {
|
|
6977
7294
|
type: "SecureString";
|
|
@@ -6988,6 +7305,7 @@ export interface SelfDependencyTumblingWindowTriggerReference extends Dependency
|
|
|
6988
7305
|
// @public
|
|
6989
7306
|
export interface SelfHostedIntegrationRuntime extends IntegrationRuntime {
|
|
6990
7307
|
linkedInfo?: LinkedIntegrationRuntimeTypeUnion;
|
|
7308
|
+
selfContainedInteractiveAuthoringEnabled?: boolean;
|
|
6991
7309
|
type: "SelfHosted";
|
|
6992
7310
|
}
|
|
6993
7311
|
|
|
@@ -7034,6 +7352,7 @@ export interface SelfHostedIntegrationRuntimeStatus extends IntegrationRuntimeSt
|
|
|
7034
7352
|
nodes?: SelfHostedIntegrationRuntimeNode[];
|
|
7035
7353
|
readonly pushedVersion?: string;
|
|
7036
7354
|
readonly scheduledUpdateDate?: Date;
|
|
7355
|
+
readonly selfContainedInteractiveAuthoringEnabled?: boolean;
|
|
7037
7356
|
readonly serviceUrls?: string[];
|
|
7038
7357
|
readonly taskQueueId?: string;
|
|
7039
7358
|
type: "SelfHosted";
|
|
@@ -7050,7 +7369,7 @@ export interface ServiceNowLinkedService extends LinkedService {
|
|
|
7050
7369
|
authenticationType: ServiceNowAuthenticationType;
|
|
7051
7370
|
clientId?: any;
|
|
7052
7371
|
clientSecret?: SecretBaseUnion;
|
|
7053
|
-
encryptedCredential?:
|
|
7372
|
+
encryptedCredential?: string;
|
|
7054
7373
|
endpoint: any;
|
|
7055
7374
|
password?: SecretBaseUnion;
|
|
7056
7375
|
type: "ServiceNow";
|
|
@@ -7085,6 +7404,8 @@ export type ServicePrincipalCredentialType = string;
|
|
|
7085
7404
|
|
|
7086
7405
|
// @public
|
|
7087
7406
|
export interface SetVariableActivity extends ControlActivity {
|
|
7407
|
+
policy?: SecureInputOutputPolicy;
|
|
7408
|
+
setSystemVariable?: boolean;
|
|
7088
7409
|
type: "SetVariable";
|
|
7089
7410
|
value?: any;
|
|
7090
7411
|
variableName?: string;
|
|
@@ -7102,7 +7423,7 @@ export interface SftpLocation extends DatasetLocation {
|
|
|
7102
7423
|
export interface SftpReadSettings extends StoreReadSettings {
|
|
7103
7424
|
deleteFilesAfterCompletion?: any;
|
|
7104
7425
|
disableChunking?: any;
|
|
7105
|
-
enablePartitionDiscovery?:
|
|
7426
|
+
enablePartitionDiscovery?: any;
|
|
7106
7427
|
fileListPath?: any;
|
|
7107
7428
|
modifiedDatetimeEnd?: any;
|
|
7108
7429
|
modifiedDatetimeStart?: any;
|
|
@@ -7116,7 +7437,7 @@ export interface SftpReadSettings extends StoreReadSettings {
|
|
|
7116
7437
|
// @public
|
|
7117
7438
|
export interface SftpServerLinkedService extends LinkedService {
|
|
7118
7439
|
authenticationType?: SftpAuthenticationType;
|
|
7119
|
-
encryptedCredential?:
|
|
7440
|
+
encryptedCredential?: string;
|
|
7120
7441
|
host: any;
|
|
7121
7442
|
hostKeyFingerprint?: any;
|
|
7122
7443
|
passPhrase?: SecretBaseUnion;
|
|
@@ -7138,7 +7459,7 @@ export interface SftpWriteSettings extends StoreWriteSettings {
|
|
|
7138
7459
|
|
|
7139
7460
|
// @public
|
|
7140
7461
|
export interface SharePointOnlineListLinkedService extends LinkedService {
|
|
7141
|
-
encryptedCredential?:
|
|
7462
|
+
encryptedCredential?: string;
|
|
7142
7463
|
servicePrincipalId: any;
|
|
7143
7464
|
servicePrincipalKey: SecretBaseUnion;
|
|
7144
7465
|
siteUrl: any;
|
|
@@ -7162,7 +7483,7 @@ export interface SharePointOnlineListSource extends CopySource {
|
|
|
7162
7483
|
// @public
|
|
7163
7484
|
export interface ShopifyLinkedService extends LinkedService {
|
|
7164
7485
|
accessToken?: SecretBaseUnion;
|
|
7165
|
-
encryptedCredential?:
|
|
7486
|
+
encryptedCredential?: string;
|
|
7166
7487
|
host: any;
|
|
7167
7488
|
type: "Shopify";
|
|
7168
7489
|
useEncryptedEndpoints?: any;
|
|
@@ -7191,7 +7512,7 @@ export interface SkipErrorFile {
|
|
|
7191
7512
|
// @public
|
|
7192
7513
|
export interface SmartsheetLinkedService extends LinkedService {
|
|
7193
7514
|
apiToken: SecretBaseUnion;
|
|
7194
|
-
encryptedCredential?:
|
|
7515
|
+
encryptedCredential?: string;
|
|
7195
7516
|
type: "Smartsheet";
|
|
7196
7517
|
}
|
|
7197
7518
|
|
|
@@ -7227,7 +7548,7 @@ export interface SnowflakeImportCopyCommand extends ImportSettings {
|
|
|
7227
7548
|
// @public
|
|
7228
7549
|
export interface SnowflakeLinkedService extends LinkedService {
|
|
7229
7550
|
connectionString: any;
|
|
7230
|
-
encryptedCredential?:
|
|
7551
|
+
encryptedCredential?: string;
|
|
7231
7552
|
password?: AzureKeyVaultSecretReference;
|
|
7232
7553
|
type: "Snowflake";
|
|
7233
7554
|
}
|
|
@@ -7267,7 +7588,7 @@ export interface SparkLinkedService extends LinkedService {
|
|
|
7267
7588
|
allowSelfSignedServerCert?: any;
|
|
7268
7589
|
authenticationType: SparkAuthenticationType;
|
|
7269
7590
|
enableSsl?: any;
|
|
7270
|
-
encryptedCredential?:
|
|
7591
|
+
encryptedCredential?: string;
|
|
7271
7592
|
host: any;
|
|
7272
7593
|
httpPath?: any;
|
|
7273
7594
|
password?: SecretBaseUnion;
|
|
@@ -7327,6 +7648,7 @@ export interface SqlDWSink extends CopySink {
|
|
|
7327
7648
|
|
|
7328
7649
|
// @public
|
|
7329
7650
|
export interface SqlDWSource extends TabularSource {
|
|
7651
|
+
isolationLevel?: any;
|
|
7330
7652
|
partitionOption?: any;
|
|
7331
7653
|
partitionSettings?: SqlPartitionSettings;
|
|
7332
7654
|
sqlReaderQuery?: any;
|
|
@@ -7360,6 +7682,7 @@ export interface SqlMISink extends CopySink {
|
|
|
7360
7682
|
|
|
7361
7683
|
// @public
|
|
7362
7684
|
export interface SqlMISource extends TabularSource {
|
|
7685
|
+
isolationLevel?: any;
|
|
7363
7686
|
partitionOption?: any;
|
|
7364
7687
|
partitionSettings?: SqlPartitionSettings;
|
|
7365
7688
|
produceAdditionalTypes?: any;
|
|
@@ -7383,7 +7706,7 @@ export interface SqlPartitionSettings {
|
|
|
7383
7706
|
export interface SqlServerLinkedService extends LinkedService {
|
|
7384
7707
|
alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
|
|
7385
7708
|
connectionString: any;
|
|
7386
|
-
encryptedCredential?:
|
|
7709
|
+
encryptedCredential?: string;
|
|
7387
7710
|
password?: SecretBaseUnion;
|
|
7388
7711
|
type: "SqlServer";
|
|
7389
7712
|
userName?: any;
|
|
@@ -7405,6 +7728,7 @@ export interface SqlServerSink extends CopySink {
|
|
|
7405
7728
|
|
|
7406
7729
|
// @public
|
|
7407
7730
|
export interface SqlServerSource extends TabularSource {
|
|
7731
|
+
isolationLevel?: any;
|
|
7408
7732
|
partitionOption?: any;
|
|
7409
7733
|
partitionSettings?: SqlPartitionSettings;
|
|
7410
7734
|
produceAdditionalTypes?: any;
|
|
@@ -7469,7 +7793,7 @@ export interface SquareLinkedService extends LinkedService {
|
|
|
7469
7793
|
clientId?: any;
|
|
7470
7794
|
clientSecret?: SecretBaseUnion;
|
|
7471
7795
|
connectionProperties?: any;
|
|
7472
|
-
encryptedCredential?:
|
|
7796
|
+
encryptedCredential?: string;
|
|
7473
7797
|
host?: any;
|
|
7474
7798
|
redirectUri?: any;
|
|
7475
7799
|
type: "Square";
|
|
@@ -7666,11 +7990,11 @@ export interface StoreReadSettings {
|
|
|
7666
7990
|
[property: string]: any;
|
|
7667
7991
|
disableMetricsCollection?: any;
|
|
7668
7992
|
maxConcurrentConnections?: any;
|
|
7669
|
-
type: "AzureBlobStorageReadSettings" | "AzureBlobFSReadSettings" | "AzureDataLakeStoreReadSettings" | "AmazonS3ReadSettings" | "FileServerReadSettings" | "AzureFileStorageReadSettings" | "AmazonS3CompatibleReadSettings" | "OracleCloudStorageReadSettings" | "GoogleCloudStorageReadSettings" | "FtpReadSettings" | "SftpReadSettings" | "HttpReadSettings" | "HdfsReadSettings";
|
|
7993
|
+
type: "AzureBlobStorageReadSettings" | "AzureBlobFSReadSettings" | "AzureDataLakeStoreReadSettings" | "AmazonS3ReadSettings" | "FileServerReadSettings" | "AzureFileStorageReadSettings" | "AmazonS3CompatibleReadSettings" | "OracleCloudStorageReadSettings" | "GoogleCloudStorageReadSettings" | "FtpReadSettings" | "SftpReadSettings" | "HttpReadSettings" | "HdfsReadSettings" | "LakeHouseReadSettings";
|
|
7670
7994
|
}
|
|
7671
7995
|
|
|
7672
7996
|
// @public (undocumented)
|
|
7673
|
-
export type StoreReadSettingsUnion = StoreReadSettings | AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings;
|
|
7997
|
+
export type StoreReadSettingsUnion = StoreReadSettings | AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings | LakeHouseReadSettings;
|
|
7674
7998
|
|
|
7675
7999
|
// @public
|
|
7676
8000
|
export interface StoreWriteSettings {
|
|
@@ -7678,11 +8002,11 @@ export interface StoreWriteSettings {
|
|
|
7678
8002
|
copyBehavior?: any;
|
|
7679
8003
|
disableMetricsCollection?: any;
|
|
7680
8004
|
maxConcurrentConnections?: any;
|
|
7681
|
-
type: "SftpWriteSettings" | "AzureBlobStorageWriteSettings" | "AzureBlobFSWriteSettings" | "AzureDataLakeStoreWriteSettings" | "FileServerWriteSettings" | "AzureFileStorageWriteSettings";
|
|
8005
|
+
type: "SftpWriteSettings" | "AzureBlobStorageWriteSettings" | "AzureBlobFSWriteSettings" | "AzureDataLakeStoreWriteSettings" | "FileServerWriteSettings" | "AzureFileStorageWriteSettings" | "LakeHouseWriteSettings";
|
|
7682
8006
|
}
|
|
7683
8007
|
|
|
7684
8008
|
// @public (undocumented)
|
|
7685
|
-
export type StoreWriteSettingsUnion = StoreWriteSettings | SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings;
|
|
8009
|
+
export type StoreWriteSettingsUnion = StoreWriteSettings | SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings | LakeHouseWriteSettings;
|
|
7686
8010
|
|
|
7687
8011
|
// @public
|
|
7688
8012
|
export interface SubResource {
|
|
@@ -7718,7 +8042,7 @@ export type SybaseAuthenticationType = string;
|
|
|
7718
8042
|
export interface SybaseLinkedService extends LinkedService {
|
|
7719
8043
|
authenticationType?: SybaseAuthenticationType;
|
|
7720
8044
|
database: any;
|
|
7721
|
-
encryptedCredential?:
|
|
8045
|
+
encryptedCredential?: string;
|
|
7722
8046
|
password?: SecretBaseUnion;
|
|
7723
8047
|
schema?: any;
|
|
7724
8048
|
server: any;
|
|
@@ -7741,14 +8065,19 @@ export interface SybaseTableDataset extends Dataset {
|
|
|
7741
8065
|
// @public
|
|
7742
8066
|
export interface SynapseNotebookActivity extends ExecutionActivity {
|
|
7743
8067
|
conf?: any;
|
|
8068
|
+
configurationType?: ConfigurationType;
|
|
7744
8069
|
driverSize?: any;
|
|
7745
8070
|
executorSize?: any;
|
|
7746
8071
|
notebook: SynapseNotebookReference;
|
|
7747
|
-
numExecutors?:
|
|
8072
|
+
numExecutors?: any;
|
|
7748
8073
|
parameters?: {
|
|
7749
8074
|
[propertyName: string]: NotebookParameter;
|
|
7750
8075
|
};
|
|
8076
|
+
sparkConfig?: {
|
|
8077
|
+
[propertyName: string]: any;
|
|
8078
|
+
};
|
|
7751
8079
|
sparkPool?: BigDataPoolParametrizationReference;
|
|
8080
|
+
targetSparkConfiguration?: SparkConfigurationParametrizationReference;
|
|
7752
8081
|
type: "SynapseNotebook";
|
|
7753
8082
|
}
|
|
7754
8083
|
|
|
@@ -7828,7 +8157,7 @@ export type TeamDeskAuthenticationType = string;
|
|
|
7828
8157
|
export interface TeamDeskLinkedService extends LinkedService {
|
|
7829
8158
|
apiToken?: SecretBaseUnion;
|
|
7830
8159
|
authenticationType: TeamDeskAuthenticationType;
|
|
7831
|
-
encryptedCredential?:
|
|
8160
|
+
encryptedCredential?: string;
|
|
7832
8161
|
password?: SecretBaseUnion;
|
|
7833
8162
|
type: "TeamDesk";
|
|
7834
8163
|
url: any;
|
|
@@ -7842,7 +8171,7 @@ export type TeradataAuthenticationType = string;
|
|
|
7842
8171
|
export interface TeradataLinkedService extends LinkedService {
|
|
7843
8172
|
authenticationType?: TeradataAuthenticationType;
|
|
7844
8173
|
connectionString?: any;
|
|
7845
|
-
encryptedCredential?:
|
|
8174
|
+
encryptedCredential?: string;
|
|
7846
8175
|
password?: SecretBaseUnion;
|
|
7847
8176
|
server?: any;
|
|
7848
8177
|
type: "Teradata";
|
|
@@ -8217,7 +8546,7 @@ export type VariableType = string;
|
|
|
8217
8546
|
// @public
|
|
8218
8547
|
export interface VerticaLinkedService extends LinkedService {
|
|
8219
8548
|
connectionString?: any;
|
|
8220
|
-
encryptedCredential?:
|
|
8549
|
+
encryptedCredential?: string;
|
|
8221
8550
|
pwd?: AzureKeyVaultSecretReference;
|
|
8222
8551
|
type: "Vertica";
|
|
8223
8552
|
}
|
|
@@ -8298,6 +8627,7 @@ export interface WebHookActivity extends ControlActivity {
|
|
|
8298
8627
|
body?: any;
|
|
8299
8628
|
headers?: any;
|
|
8300
8629
|
method: WebHookActivityMethod;
|
|
8630
|
+
policy?: SecureInputOutputPolicy;
|
|
8301
8631
|
reportStatusOnCallBack?: any;
|
|
8302
8632
|
timeout?: string;
|
|
8303
8633
|
type: "WebHook";
|
|
@@ -8347,7 +8677,7 @@ export interface WranglingDataFlow extends DataFlow {
|
|
|
8347
8677
|
export interface XeroLinkedService extends LinkedService {
|
|
8348
8678
|
connectionProperties?: any;
|
|
8349
8679
|
consumerKey?: SecretBaseUnion;
|
|
8350
|
-
encryptedCredential?:
|
|
8680
|
+
encryptedCredential?: string;
|
|
8351
8681
|
host?: any;
|
|
8352
8682
|
privateKey?: SecretBaseUnion;
|
|
8353
8683
|
type: "Xero";
|
|
@@ -8402,7 +8732,7 @@ export type ZendeskAuthenticationType = string;
|
|
|
8402
8732
|
export interface ZendeskLinkedService extends LinkedService {
|
|
8403
8733
|
apiToken?: SecretBaseUnion;
|
|
8404
8734
|
authenticationType: ZendeskAuthenticationType;
|
|
8405
|
-
encryptedCredential?:
|
|
8735
|
+
encryptedCredential?: string;
|
|
8406
8736
|
password?: SecretBaseUnion;
|
|
8407
8737
|
type: "Zendesk";
|
|
8408
8738
|
url: any;
|
|
@@ -8419,7 +8749,7 @@ export interface ZipDeflateReadSettings extends CompressionReadSettings {
|
|
|
8419
8749
|
export interface ZohoLinkedService extends LinkedService {
|
|
8420
8750
|
accessToken?: SecretBaseUnion;
|
|
8421
8751
|
connectionProperties?: any;
|
|
8422
|
-
encryptedCredential?:
|
|
8752
|
+
encryptedCredential?: string;
|
|
8423
8753
|
endpoint?: any;
|
|
8424
8754
|
type: "Zoho";
|
|
8425
8755
|
useEncryptedEndpoints?: any;
|