@azure/arm-datafactory 11.1.1-alpha.20231113.1 → 12.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. package/CHANGELOG.md +273 -8
  2. package/dist/index.js +2077 -727
  3. package/dist/index.js.map +1 -1
  4. package/dist/index.min.js +1 -1
  5. package/dist/index.min.js.map +1 -1
  6. package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.d.ts +2 -0
  7. package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.d.ts.map +1 -0
  8. package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.js +75 -0
  9. package/dist-esm/samples-dev/changeDataCaptureCreateOrUpdateSample.js.map +1 -0
  10. package/dist-esm/samples-dev/changeDataCaptureDeleteSample.d.ts +2 -0
  11. package/dist-esm/samples-dev/changeDataCaptureDeleteSample.d.ts.map +1 -0
  12. package/dist-esm/samples-dev/changeDataCaptureDeleteSample.js +40 -0
  13. package/dist-esm/samples-dev/changeDataCaptureDeleteSample.js.map +1 -0
  14. package/dist-esm/samples-dev/changeDataCaptureGetSample.d.ts +2 -0
  15. package/dist-esm/samples-dev/changeDataCaptureGetSample.d.ts.map +1 -0
  16. package/dist-esm/samples-dev/changeDataCaptureGetSample.js +40 -0
  17. package/dist-esm/samples-dev/changeDataCaptureGetSample.js.map +1 -0
  18. package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.d.ts +2 -0
  19. package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.d.ts.map +1 -0
  20. package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.js +55 -0
  21. package/dist-esm/samples-dev/changeDataCaptureListByFactorySample.js.map +1 -0
  22. package/dist-esm/samples-dev/changeDataCaptureStartSample.d.ts +2 -0
  23. package/dist-esm/samples-dev/changeDataCaptureStartSample.d.ts.map +1 -0
  24. package/dist-esm/samples-dev/changeDataCaptureStartSample.js +40 -0
  25. package/dist-esm/samples-dev/changeDataCaptureStartSample.js.map +1 -0
  26. package/dist-esm/samples-dev/changeDataCaptureStatusSample.d.ts +2 -0
  27. package/dist-esm/samples-dev/changeDataCaptureStatusSample.d.ts.map +1 -0
  28. package/dist-esm/samples-dev/changeDataCaptureStatusSample.js +40 -0
  29. package/dist-esm/samples-dev/changeDataCaptureStatusSample.js.map +1 -0
  30. package/dist-esm/samples-dev/changeDataCaptureStopSample.d.ts +2 -0
  31. package/dist-esm/samples-dev/changeDataCaptureStopSample.d.ts.map +1 -0
  32. package/dist-esm/samples-dev/changeDataCaptureStopSample.js +40 -0
  33. package/dist-esm/samples-dev/changeDataCaptureStopSample.js.map +1 -0
  34. package/dist-esm/src/dataFactoryManagementClient.d.ts +2 -1
  35. package/dist-esm/src/dataFactoryManagementClient.d.ts.map +1 -1
  36. package/dist-esm/src/dataFactoryManagementClient.js +3 -2
  37. package/dist-esm/src/dataFactoryManagementClient.js.map +1 -1
  38. package/dist-esm/src/models/index.d.ts +787 -361
  39. package/dist-esm/src/models/index.d.ts.map +1 -1
  40. package/dist-esm/src/models/index.js +58 -22
  41. package/dist-esm/src/models/index.js.map +1 -1
  42. package/dist-esm/src/models/mappers.d.ts +36 -1
  43. package/dist-esm/src/models/mappers.d.ts.map +1 -1
  44. package/dist-esm/src/models/mappers.js +1063 -141
  45. package/dist-esm/src/models/mappers.js.map +1 -1
  46. package/dist-esm/src/models/parameters.d.ts +2 -0
  47. package/dist-esm/src/models/parameters.d.ts.map +1 -1
  48. package/dist-esm/src/models/parameters.js +20 -1
  49. package/dist-esm/src/models/parameters.js.map +1 -1
  50. package/dist-esm/src/operations/changeDataCapture.d.ts +87 -0
  51. package/dist-esm/src/operations/changeDataCapture.d.ts.map +1 -0
  52. package/dist-esm/src/operations/changeDataCapture.js +350 -0
  53. package/dist-esm/src/operations/changeDataCapture.js.map +1 -0
  54. package/dist-esm/src/operations/index.d.ts +1 -0
  55. package/dist-esm/src/operations/index.d.ts.map +1 -1
  56. package/dist-esm/src/operations/index.js +1 -0
  57. package/dist-esm/src/operations/index.js.map +1 -1
  58. package/dist-esm/src/operationsInterfaces/changeDataCapture.d.ts +62 -0
  59. package/dist-esm/src/operationsInterfaces/changeDataCapture.d.ts.map +1 -0
  60. package/dist-esm/src/operationsInterfaces/changeDataCapture.js +9 -0
  61. package/dist-esm/src/operationsInterfaces/changeDataCapture.js.map +1 -0
  62. package/dist-esm/src/operationsInterfaces/index.d.ts +1 -0
  63. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -1
  64. package/dist-esm/src/operationsInterfaces/index.js +1 -0
  65. package/dist-esm/src/operationsInterfaces/index.js.map +1 -1
  66. package/dist-esm/test/datafactory_examples.spec.js +1 -1
  67. package/package.json +9 -7
  68. package/review/arm-datafactory.api.md +480 -150
  69. package/src/dataFactoryManagementClient.ts +7 -3
  70. package/src/models/index.ts +848 -364
  71. package/src/models/mappers.ts +1176 -155
  72. package/src/models/parameters.ts +23 -1
  73. package/src/operations/changeDataCapture.ts +472 -0
  74. package/src/operations/index.ts +1 -0
  75. package/src/operationsInterfaces/changeDataCapture.ts +118 -0
  76. package/src/operationsInterfaces/index.ts +1 -0
  77. package/types/arm-datafactory.d.ts +862 -327
@@ -24,6 +24,10 @@ export declare interface Activity {
24
24
  name: string;
25
25
  /** Activity description. */
26
26
  description?: string;
27
+ /** Activity state. This is an optional property and if not provided, the state will be Active by default. */
28
+ state?: ActivityState;
29
+ /** Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default. */
30
+ onInactiveMarkAs?: ActivityOnInactiveMarkAs;
27
31
  /** Activity depends on condition. */
28
32
  dependsOn?: ActivityDependency[];
29
33
  /** Activity user properties. */
@@ -40,6 +44,17 @@ export declare interface ActivityDependency {
40
44
  dependencyConditions: DependencyCondition[];
41
45
  }
42
46
 
47
+ /**
48
+ * Defines values for ActivityOnInactiveMarkAs. \
49
+ * {@link KnownActivityOnInactiveMarkAs} can be used interchangeably with ActivityOnInactiveMarkAs,
50
+ * this enum contains the known values that the service supports.
51
+ * ### Known values supported by the service
52
+ * **Succeeded** \
53
+ * **Failed** \
54
+ * **Skipped**
55
+ */
56
+ export declare type ActivityOnInactiveMarkAs = string;
57
+
43
58
  /** Execution policy for an activity. */
44
59
  export declare interface ActivityPolicy {
45
60
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
@@ -155,6 +170,16 @@ export declare interface ActivityRunsQueryResponse {
155
170
  continuationToken?: string;
156
171
  }
157
172
 
173
+ /**
174
+ * Defines values for ActivityState. \
175
+ * {@link KnownActivityState} can be used interchangeably with ActivityState,
176
+ * this enum contains the known values that the service supports.
177
+ * ### Known values supported by the service
178
+ * **Active** \
179
+ * **Inactive**
180
+ */
181
+ export declare type ActivityState = string;
182
+
158
183
  export declare type ActivityUnion = Activity | ControlActivityUnion | ExecutionActivityUnion | ExecuteWranglingDataflowActivity;
159
184
 
160
185
  /** Response body structure for starting data flow debug session. */
@@ -193,8 +218,8 @@ export declare interface AmazonMWSLinkedService extends LinkedService {
193
218
  useHostVerification?: any;
194
219
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
195
220
  usePeerVerification?: any;
196
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
197
- encryptedCredential?: any;
221
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
222
+ encryptedCredential?: string;
198
223
  }
199
224
 
200
225
  /** Amazon Marketplace Web Service dataset. */
@@ -221,8 +246,8 @@ export declare interface AmazonRdsForOracleLinkedService extends LinkedService {
221
246
  connectionString: any;
222
247
  /** The Azure key vault secret reference of password in connection string. */
223
248
  password?: SecretBaseUnion;
224
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
225
- encryptedCredential?: any;
249
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
250
+ encryptedCredential?: string;
226
251
  }
227
252
 
228
253
  /**
@@ -284,8 +309,8 @@ export declare interface AmazonRdsForSqlServerLinkedService extends LinkedServic
284
309
  userName?: any;
285
310
  /** The on-premises Windows authentication password. */
286
311
  password?: SecretBaseUnion;
287
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
288
- encryptedCredential?: any;
312
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
313
+ encryptedCredential?: string;
289
314
  /** Sql always encrypted properties. */
290
315
  alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
291
316
  }
@@ -300,6 +325,8 @@ export declare interface AmazonRdsForSqlServerSource extends TabularSource {
300
325
  sqlReaderStoredProcedureName?: any;
301
326
  /** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
302
327
  storedProcedureParameters?: any;
328
+ /** Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string). */
329
+ isolationLevel?: any;
303
330
  /** Which additional types to produce. */
304
331
  produceAdditionalTypes?: any;
305
332
  /** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
@@ -332,8 +359,8 @@ export declare interface AmazonRedshiftLinkedService extends LinkedService {
332
359
  database: any;
333
360
  /** The TCP port number that the Amazon Redshift server uses to listen for client connections. The default value is 5439. Type: integer (or Expression with resultType integer). */
334
361
  port?: any;
335
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
336
- encryptedCredential?: any;
362
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
363
+ encryptedCredential?: string;
337
364
  }
338
365
 
339
366
  /** A copy activity source for Amazon Redshift Source. */
@@ -370,8 +397,8 @@ export declare interface AmazonS3CompatibleLinkedService extends LinkedService {
370
397
  serviceUrl?: any;
371
398
  /** If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean). */
372
399
  forcePathStyle?: any;
373
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
374
- encryptedCredential?: any;
400
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
401
+ encryptedCredential?: string;
375
402
  }
376
403
 
377
404
  /** The location of Amazon S3 Compatible dataset. */
@@ -398,8 +425,8 @@ export declare interface AmazonS3CompatibleReadSettings extends StoreReadSetting
398
425
  prefix?: any;
399
426
  /** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
400
427
  fileListPath?: any;
401
- /** Indicates whether to enable partition discovery. */
402
- enablePartitionDiscovery?: boolean;
428
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
429
+ enablePartitionDiscovery?: any;
403
430
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
404
431
  partitionRootPath?: any;
405
432
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -446,8 +473,8 @@ export declare interface AmazonS3LinkedService extends LinkedService {
446
473
  serviceUrl?: any;
447
474
  /** The session token for the S3 temporary security credential. */
448
475
  sessionToken?: SecretBaseUnion;
449
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
450
- encryptedCredential?: any;
476
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
477
+ encryptedCredential?: string;
451
478
  }
452
479
 
453
480
  /** The location of amazon S3 dataset. */
@@ -474,8 +501,8 @@ export declare interface AmazonS3ReadSettings extends StoreReadSettings {
474
501
  prefix?: any;
475
502
  /** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
476
503
  fileListPath?: any;
477
- /** Indicates whether to enable partition discovery. */
478
- enablePartitionDiscovery?: boolean;
504
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
505
+ enablePartitionDiscovery?: any;
479
506
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
480
507
  partitionRootPath?: any;
481
508
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -492,7 +519,7 @@ export declare interface AppendVariableActivity extends ControlActivity {
492
519
  type: "AppendVariable";
493
520
  /** Name of the variable whose value needs to be appended to. */
494
521
  variableName?: string;
495
- /** Value to be appended. Could be a static value or Expression */
522
+ /** Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item */
496
523
  value?: any;
497
524
  }
498
525
 
@@ -500,7 +527,7 @@ export declare interface AppendVariableActivity extends ControlActivity {
500
527
  export declare interface AppFiguresLinkedService extends LinkedService {
501
528
  /** Polymorphic discriminator, which specifies the different types this object can be */
502
529
  type: "AppFigures";
503
- /** The username of the Appfigures source. */
530
+ /** The username of the Appfigures source. Type: string (or Expression with resultType string). */
504
531
  userName: any;
505
532
  /** The password of the AppFigures source. */
506
533
  password: SecretBaseUnion;
@@ -520,8 +547,8 @@ export declare interface AsanaLinkedService extends LinkedService {
520
547
  type: "Asana";
521
548
  /** The api token for the Asana source. */
522
549
  apiToken: SecretBaseUnion;
523
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
524
- encryptedCredential?: any;
550
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
551
+ encryptedCredential?: string;
525
552
  }
526
553
 
527
554
  /**
@@ -610,8 +637,8 @@ export declare interface AzureBatchLinkedService extends LinkedService {
610
637
  poolName: any;
611
638
  /** The Azure Storage linked service reference. */
612
639
  linkedServiceName: LinkedServiceReference;
613
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
614
- encryptedCredential?: any;
640
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
641
+ encryptedCredential?: string;
615
642
  /** The credential reference containing authentication information. */
616
643
  credential?: CredentialReference;
617
644
  }
@@ -666,8 +693,8 @@ export declare interface AzureBlobFSLinkedService extends LinkedService {
666
693
  tenant?: any;
667
694
  /** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
668
695
  azureCloudType?: any;
669
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
670
- encryptedCredential?: any;
696
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
697
+ encryptedCredential?: string;
671
698
  /** The credential reference containing authentication information. */
672
699
  credential?: CredentialReference;
673
700
  /** The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string). */
@@ -700,8 +727,8 @@ export declare interface AzureBlobFSReadSettings extends StoreReadSettings {
700
727
  wildcardFileName?: any;
701
728
  /** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
702
729
  fileListPath?: any;
703
- /** Indicates whether to enable partition discovery. */
704
- enablePartitionDiscovery?: boolean;
730
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
731
+ enablePartitionDiscovery?: any;
705
732
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
706
733
  partitionRootPath?: any;
707
734
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -716,7 +743,7 @@ export declare interface AzureBlobFSReadSettings extends StoreReadSettings {
716
743
  export declare interface AzureBlobFSSink extends CopySink {
717
744
  /** Polymorphic discriminator, which specifies the different types this object can be */
718
745
  type: "AzureBlobFSSink";
719
- /** The type of copy behavior for copy sink. */
746
+ /** The type of copy behavior for copy sink. Type: string (or Expression with resultType string). */
720
747
  copyBehavior?: any;
721
748
  /** Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects). */
722
749
  metadata?: MetadataItem[];
@@ -755,7 +782,7 @@ export declare interface AzureBlobStorageLinkedService extends LinkedService {
755
782
  /** The Azure key vault secret reference of sasToken in sas uri. */
756
783
  sasToken?: AzureKeyVaultSecretReference;
757
784
  /** Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property. */
758
- serviceEndpoint?: string;
785
+ serviceEndpoint?: any;
759
786
  /** The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string). */
760
787
  servicePrincipalId?: any;
761
788
  /** The key of the service principal used to authenticate against Azure SQL Data Warehouse. */
@@ -765,8 +792,8 @@ export declare interface AzureBlobStorageLinkedService extends LinkedService {
765
792
  /** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
766
793
  azureCloudType?: any;
767
794
  /** Specify the kind of your storage account. Allowed values are: Storage (general purpose v1), StorageV2 (general purpose v2), BlobStorage, or BlockBlobStorage. Type: string (or Expression with resultType string). */
768
- accountKind?: string;
769
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
795
+ accountKind?: any;
796
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
770
797
  encryptedCredential?: string;
771
798
  /** The credential reference containing authentication information. */
772
799
  credential?: CredentialReference;
@@ -798,8 +825,8 @@ export declare interface AzureBlobStorageReadSettings extends StoreReadSettings
798
825
  prefix?: any;
799
826
  /** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
800
827
  fileListPath?: any;
801
- /** Indicates whether to enable partition discovery. */
802
- enablePartitionDiscovery?: boolean;
828
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
829
+ enablePartitionDiscovery?: any;
803
830
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
804
831
  partitionRootPath?: any;
805
832
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -858,8 +885,8 @@ export declare interface AzureDatabricksDeltaLakeLinkedService extends LinkedSer
858
885
  accessToken?: SecretBaseUnion;
859
886
  /** The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string). */
860
887
  clusterId?: any;
861
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
862
- encryptedCredential?: any;
888
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
889
+ encryptedCredential?: string;
863
890
  /** The credential reference containing authentication information. */
864
891
  credential?: CredentialReference;
865
892
  /** Workspace resource id for databricks REST API. Type: string (or Expression with resultType string). */
@@ -928,8 +955,8 @@ export declare interface AzureDatabricksLinkedService extends LinkedService {
928
955
  newClusterInitScripts?: any;
929
956
  /** Enable the elastic disk on the new cluster. This property is now ignored, and takes the default elastic disk behavior in Databricks (elastic disks are always enabled). Type: boolean (or Expression with resultType boolean). */
930
957
  newClusterEnableElasticDisk?: any;
931
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
932
- encryptedCredential?: any;
958
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
959
+ encryptedCredential?: string;
933
960
  /** The policy id for limiting the ability to configure clusters based on a user defined set of rules. Type: string (or Expression with resultType string). */
934
961
  policyId?: any;
935
962
  /** The credential reference containing authentication information. */
@@ -1016,8 +1043,8 @@ export declare interface AzureDataLakeAnalyticsLinkedService extends LinkedServi
1016
1043
  resourceGroupName?: any;
1017
1044
  /** Azure Data Lake Analytics URI Type: string (or Expression with resultType string). */
1018
1045
  dataLakeAnalyticsUri?: any;
1019
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1020
- encryptedCredential?: any;
1046
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1047
+ encryptedCredential?: string;
1021
1048
  }
1022
1049
 
1023
1050
  /** Azure Data Lake Store dataset. */
@@ -1054,8 +1081,8 @@ export declare interface AzureDataLakeStoreLinkedService extends LinkedService {
1054
1081
  subscriptionId?: any;
1055
1082
  /** Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string). */
1056
1083
  resourceGroupName?: any;
1057
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1058
- encryptedCredential?: any;
1084
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1085
+ encryptedCredential?: string;
1059
1086
  /** The credential reference containing authentication information. */
1060
1087
  credential?: CredentialReference;
1061
1088
  }
@@ -1082,8 +1109,8 @@ export declare interface AzureDataLakeStoreReadSettings extends StoreReadSetting
1082
1109
  listAfter?: any;
1083
1110
  /** Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string). */
1084
1111
  listBefore?: any;
1085
- /** Indicates whether to enable partition discovery. */
1086
- enablePartitionDiscovery?: boolean;
1112
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
1113
+ enablePartitionDiscovery?: any;
1087
1114
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
1088
1115
  partitionRootPath?: any;
1089
1116
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -1098,7 +1125,7 @@ export declare interface AzureDataLakeStoreReadSettings extends StoreReadSetting
1098
1125
  export declare interface AzureDataLakeStoreSink extends CopySink {
1099
1126
  /** Polymorphic discriminator, which specifies the different types this object can be */
1100
1127
  type: "AzureDataLakeStoreSink";
1101
- /** The type of copy behavior for copy sink. */
1128
+ /** The type of copy behavior for copy sink. Type: string (or Expression with resultType string). */
1102
1129
  copyBehavior?: any;
1103
1130
  /** Single File Parallel. */
1104
1131
  enableAdlsSingleFileParallel?: any;
@@ -1116,7 +1143,7 @@ export declare interface AzureDataLakeStoreSource extends CopySource {
1116
1143
  export declare interface AzureDataLakeStoreWriteSettings extends StoreWriteSettings {
1117
1144
  /** Polymorphic discriminator, which specifies the different types this object can be */
1118
1145
  type: "AzureDataLakeStoreWriteSettings";
1119
- /** Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: integer (or Expression with resultType integer). */
1146
+ /** Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string). */
1120
1147
  expiryDateTime?: any;
1121
1148
  }
1122
1149
 
@@ -1142,8 +1169,8 @@ export declare interface AzureFileStorageLinkedService extends LinkedService {
1142
1169
  fileShare?: any;
1143
1170
  /** The azure file share snapshot version. Type: string (or Expression with resultType string). */
1144
1171
  snapshot?: any;
1145
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1146
- encryptedCredential?: any;
1172
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1173
+ encryptedCredential?: string;
1147
1174
  }
1148
1175
 
1149
1176
  /** The location of file server dataset. */
@@ -1166,8 +1193,8 @@ export declare interface AzureFileStorageReadSettings extends StoreReadSettings
1166
1193
  prefix?: any;
1167
1194
  /** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
1168
1195
  fileListPath?: any;
1169
- /** Indicates whether to enable partition discovery. */
1170
- enablePartitionDiscovery?: boolean;
1196
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
1197
+ enablePartitionDiscovery?: any;
1171
1198
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
1172
1199
  partitionRootPath?: any;
1173
1200
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -1221,8 +1248,8 @@ export declare interface AzureFunctionLinkedService extends LinkedService {
1221
1248
  functionAppUrl: any;
1222
1249
  /** Function or Host key for Azure Function App. */
1223
1250
  functionKey?: SecretBaseUnion;
1224
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1225
- encryptedCredential?: any;
1251
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1252
+ encryptedCredential?: string;
1226
1253
  /** The credential reference containing authentication information. */
1227
1254
  credential?: CredentialReference;
1228
1255
  /** Allowed token audiences for azure function. */
@@ -1261,8 +1288,8 @@ export declare interface AzureMariaDBLinkedService extends LinkedService {
1261
1288
  connectionString?: any;
1262
1289
  /** The Azure key vault secret reference of password in connection string. */
1263
1290
  pwd?: AzureKeyVaultSecretReference;
1264
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1265
- encryptedCredential?: any;
1291
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1292
+ encryptedCredential?: string;
1266
1293
  }
1267
1294
 
1268
1295
  /** A copy activity Azure MariaDB source. */
@@ -1337,8 +1364,8 @@ export declare interface AzureMLLinkedService extends LinkedService {
1337
1364
  servicePrincipalKey?: SecretBaseUnion;
1338
1365
  /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
1339
1366
  tenant?: any;
1340
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1341
- encryptedCredential?: any;
1367
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1368
+ encryptedCredential?: string;
1342
1369
  /** Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string). */
1343
1370
  authentication?: any;
1344
1371
  }
@@ -1353,14 +1380,16 @@ export declare interface AzureMLServiceLinkedService extends LinkedService {
1353
1380
  resourceGroupName: any;
1354
1381
  /** Azure ML Service workspace name. Type: string (or Expression with resultType string). */
1355
1382
  mlWorkspaceName: any;
1383
+ /** Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string). */
1384
+ authentication?: any;
1356
1385
  /** The ID of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. Type: string (or Expression with resultType string). */
1357
1386
  servicePrincipalId?: any;
1358
1387
  /** The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. */
1359
1388
  servicePrincipalKey?: SecretBaseUnion;
1360
1389
  /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
1361
1390
  tenant?: any;
1362
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1363
- encryptedCredential?: any;
1391
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1392
+ encryptedCredential?: string;
1364
1393
  }
1365
1394
 
1366
1395
  /** Azure ML Update Resource management activity. */
@@ -1391,8 +1420,8 @@ export declare interface AzureMySqlLinkedService extends LinkedService {
1391
1420
  connectionString: any;
1392
1421
  /** The Azure key vault secret reference of password in connection string. */
1393
1422
  password?: AzureKeyVaultSecretReference;
1394
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1395
- encryptedCredential?: any;
1423
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1424
+ encryptedCredential?: string;
1396
1425
  }
1397
1426
 
1398
1427
  /** A copy activity Azure MySql sink. */
@@ -1429,8 +1458,8 @@ export declare interface AzurePostgreSqlLinkedService extends LinkedService {
1429
1458
  connectionString?: any;
1430
1459
  /** The Azure key vault secret reference of password in connection string. */
1431
1460
  password?: AzureKeyVaultSecretReference;
1432
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1433
- encryptedCredential?: any;
1461
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1462
+ encryptedCredential?: string;
1434
1463
  }
1435
1464
 
1436
1465
  /** A copy activity Azure PostgreSQL sink. */
@@ -1501,8 +1530,8 @@ export declare interface AzureSearchLinkedService extends LinkedService {
1501
1530
  url: any;
1502
1531
  /** Admin Key for Azure Search service */
1503
1532
  key?: SecretBaseUnion;
1504
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1505
- encryptedCredential?: any;
1533
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1534
+ encryptedCredential?: string;
1506
1535
  }
1507
1536
 
1508
1537
  /** Microsoft Azure SQL Database linked service. */
@@ -1521,8 +1550,8 @@ export declare interface AzureSqlDatabaseLinkedService extends LinkedService {
1521
1550
  tenant?: any;
1522
1551
  /** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
1523
1552
  azureCloudType?: any;
1524
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1525
- encryptedCredential?: any;
1553
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1554
+ encryptedCredential?: string;
1526
1555
  /** Sql always encrypted properties. */
1527
1556
  alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
1528
1557
  /** The credential reference containing authentication information. */
@@ -1545,8 +1574,8 @@ export declare interface AzureSqlDWLinkedService extends LinkedService {
1545
1574
  tenant?: any;
1546
1575
  /** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
1547
1576
  azureCloudType?: any;
1548
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1549
- encryptedCredential?: any;
1577
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1578
+ encryptedCredential?: string;
1550
1579
  /** The credential reference containing authentication information. */
1551
1580
  credential?: CredentialReference;
1552
1581
  }
@@ -1579,8 +1608,8 @@ export declare interface AzureSqlMILinkedService extends LinkedService {
1579
1608
  tenant?: any;
1580
1609
  /** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
1581
1610
  azureCloudType?: any;
1582
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1583
- encryptedCredential?: any;
1611
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1612
+ encryptedCredential?: string;
1584
1613
  /** Sql always encrypted properties. */
1585
1614
  alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
1586
1615
  /** The credential reference containing authentication information. */
@@ -1633,6 +1662,8 @@ export declare interface AzureSqlSource extends TabularSource {
1633
1662
  sqlReaderStoredProcedureName?: any;
1634
1663
  /** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
1635
1664
  storedProcedureParameters?: any;
1665
+ /** Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string). */
1666
+ isolationLevel?: any;
1636
1667
  /** Which additional types to produce. */
1637
1668
  produceAdditionalTypes?: any;
1638
1669
  /** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
@@ -1678,7 +1709,7 @@ export declare interface AzureStorageLinkedService extends LinkedService {
1678
1709
  sasUri?: any;
1679
1710
  /** The Azure key vault secret reference of sasToken in sas uri. */
1680
1711
  sasToken?: AzureKeyVaultSecretReference;
1681
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1712
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1682
1713
  encryptedCredential?: string;
1683
1714
  }
1684
1715
 
@@ -1738,7 +1769,7 @@ export declare interface AzureTableStorageLinkedService extends LinkedService {
1738
1769
  sasUri?: any;
1739
1770
  /** The Azure key vault secret reference of sasToken in sas uri. */
1740
1771
  sasToken?: AzureKeyVaultSecretReference;
1741
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1772
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1742
1773
  encryptedCredential?: string;
1743
1774
  }
1744
1775
 
@@ -1875,8 +1906,8 @@ export declare interface CassandraLinkedService extends LinkedService {
1875
1906
  username?: any;
1876
1907
  /** Password for authentication. */
1877
1908
  password?: SecretBaseUnion;
1878
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1879
- encryptedCredential?: any;
1909
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
1910
+ encryptedCredential?: string;
1880
1911
  }
1881
1912
 
1882
1913
  /** A copy activity source for a Cassandra database. */
@@ -1929,6 +1960,154 @@ export declare interface ChainingTrigger extends Trigger {
1929
1960
  runDimension: string;
1930
1961
  }
1931
1962
 
1963
+ /** Interface representing a ChangeDataCapture. */
1964
+ export declare interface ChangeDataCapture {
1965
+ /**
1966
+ * Lists all resources of type change data capture.
1967
+ * @param resourceGroupName The resource group name.
1968
+ * @param factoryName The factory name.
1969
+ * @param options The options parameters.
1970
+ */
1971
+ listByFactory(resourceGroupName: string, factoryName: string, options?: ChangeDataCaptureListByFactoryOptionalParams): PagedAsyncIterableIterator<ChangeDataCaptureResource>;
1972
+ /**
1973
+ * Creates or updates a change data capture resource.
1974
+ * @param resourceGroupName The resource group name.
1975
+ * @param factoryName The factory name.
1976
+ * @param changeDataCaptureName The change data capture name.
1977
+ * @param changeDataCapture Change data capture resource definition.
1978
+ * @param options The options parameters.
1979
+ */
1980
+ createOrUpdate(resourceGroupName: string, factoryName: string, changeDataCaptureName: string, changeDataCapture: ChangeDataCaptureResource, options?: ChangeDataCaptureCreateOrUpdateOptionalParams): Promise<ChangeDataCaptureCreateOrUpdateResponse>;
1981
+ /**
1982
+ * Gets a change data capture.
1983
+ * @param resourceGroupName The resource group name.
1984
+ * @param factoryName The factory name.
1985
+ * @param changeDataCaptureName The change data capture name.
1986
+ * @param options The options parameters.
1987
+ */
1988
+ get(resourceGroupName: string, factoryName: string, changeDataCaptureName: string, options?: ChangeDataCaptureGetOptionalParams): Promise<ChangeDataCaptureGetResponse>;
1989
+ /**
1990
+ * Deletes a change data capture.
1991
+ * @param resourceGroupName The resource group name.
1992
+ * @param factoryName The factory name.
1993
+ * @param changeDataCaptureName The change data capture name.
1994
+ * @param options The options parameters.
1995
+ */
1996
+ delete(resourceGroupName: string, factoryName: string, changeDataCaptureName: string, options?: ChangeDataCaptureDeleteOptionalParams): Promise<void>;
1997
+ /**
1998
+ * Starts a change data capture.
1999
+ * @param resourceGroupName The resource group name.
2000
+ * @param factoryName The factory name.
2001
+ * @param changeDataCaptureName The change data capture name.
2002
+ * @param options The options parameters.
2003
+ */
2004
+ start(resourceGroupName: string, factoryName: string, changeDataCaptureName: string, options?: ChangeDataCaptureStartOptionalParams): Promise<void>;
2005
+ /**
2006
+ * Stops a change data capture.
2007
+ * @param resourceGroupName The resource group name.
2008
+ * @param factoryName The factory name.
2009
+ * @param changeDataCaptureName The change data capture name.
2010
+ * @param options The options parameters.
2011
+ */
2012
+ stop(resourceGroupName: string, factoryName: string, changeDataCaptureName: string, options?: ChangeDataCaptureStopOptionalParams): Promise<void>;
2013
+ /**
2014
+ * Gets the current status for the change data capture resource.
2015
+ * @param resourceGroupName The resource group name.
2016
+ * @param factoryName The factory name.
2017
+ * @param changeDataCaptureName The change data capture name.
2018
+ * @param options The options parameters.
2019
+ */
2020
+ status(resourceGroupName: string, factoryName: string, changeDataCaptureName: string, options?: ChangeDataCaptureStatusOptionalParams): Promise<ChangeDataCaptureStatusResponse>;
2021
+ }
2022
+
2023
+ /** Optional parameters. */
2024
+ export declare interface ChangeDataCaptureCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
2025
+ /** ETag of the change data capture entity. Should only be specified for update, for which it should match existing entity or can be * for unconditional update. */
2026
+ ifMatch?: string;
2027
+ }
2028
+
2029
+ /** Contains response data for the createOrUpdate operation. */
2030
+ export declare type ChangeDataCaptureCreateOrUpdateResponse = ChangeDataCaptureResource;
2031
+
2032
+ /** Optional parameters. */
2033
+ export declare interface ChangeDataCaptureDeleteOptionalParams extends coreClient.OperationOptions {
2034
+ }
2035
+
2036
+ /** The folder that this CDC is in. If not specified, CDC will appear at the root level. */
2037
+ export declare interface ChangeDataCaptureFolder {
2038
+ /** The name of the folder that this CDC is in. */
2039
+ name?: string;
2040
+ }
2041
+
2042
+ /** Optional parameters. */
2043
+ export declare interface ChangeDataCaptureGetOptionalParams extends coreClient.OperationOptions {
2044
+ /** ETag of the change data capture entity. Should only be specified for get. If the ETag matches the existing entity tag, or if * was provided, then no content will be returned. */
2045
+ ifNoneMatch?: string;
2046
+ }
2047
+
2048
+ /** Contains response data for the get operation. */
2049
+ export declare type ChangeDataCaptureGetResponse = ChangeDataCaptureResource;
2050
+
2051
+ /** Optional parameters. */
2052
+ export declare interface ChangeDataCaptureListByFactoryNextOptionalParams extends coreClient.OperationOptions {
2053
+ }
2054
+
2055
+ /** Contains response data for the listByFactoryNext operation. */
2056
+ export declare type ChangeDataCaptureListByFactoryNextResponse = ChangeDataCaptureListResponse;
2057
+
2058
+ /** Optional parameters. */
2059
+ export declare interface ChangeDataCaptureListByFactoryOptionalParams extends coreClient.OperationOptions {
2060
+ }
2061
+
2062
+ /** Contains response data for the listByFactory operation. */
2063
+ export declare type ChangeDataCaptureListByFactoryResponse = ChangeDataCaptureListResponse;
2064
+
2065
+ /** A list of change data capture resources. */
2066
+ export declare interface ChangeDataCaptureListResponse {
2067
+ /** Lists all resources of type change data capture. */
2068
+ value: ChangeDataCaptureResource[];
2069
+ /** The link to the next page of results, if any remaining results exist. */
2070
+ nextLink?: string;
2071
+ }
2072
+
2073
+ /** Change data capture resource type. */
2074
+ export declare interface ChangeDataCaptureResource extends SubResource {
2075
+ /** Describes unknown properties. The value of an unknown property can be of "any" type. */
2076
+ [property: string]: any;
2077
+ /** The folder that this CDC is in. If not specified, CDC will appear at the root level. */
2078
+ folder?: ChangeDataCaptureFolder;
2079
+ /** The description of the change data capture. */
2080
+ description?: string;
2081
+ /** List of sources connections that can be used as sources in the CDC. */
2082
+ sourceConnectionsInfo: MapperSourceConnectionsInfo[];
2083
+ /** List of target connections that can be used as sources in the CDC. */
2084
+ targetConnectionsInfo: MapperTargetConnectionsInfo[];
2085
+ /** CDC policy */
2086
+ policy: MapperPolicy;
2087
+ /** A boolean to determine if the vnet configuration needs to be overwritten. */
2088
+ allowVNetOverride?: boolean;
2089
+ /** Status of the CDC as to if it is running or stopped. */
2090
+ status?: string;
2091
+ }
2092
+
2093
+ /** Optional parameters. */
2094
+ export declare interface ChangeDataCaptureStartOptionalParams extends coreClient.OperationOptions {
2095
+ }
2096
+
2097
+ /** Optional parameters. */
2098
+ export declare interface ChangeDataCaptureStatusOptionalParams extends coreClient.OperationOptions {
2099
+ }
2100
+
2101
+ /** Contains response data for the status operation. */
2102
+ export declare type ChangeDataCaptureStatusResponse = {
2103
+ /** The parsed response body. */
2104
+ body: string;
2105
+ };
2106
+
2107
+ /** Optional parameters. */
2108
+ export declare interface ChangeDataCaptureStopOptionalParams extends coreClient.OperationOptions {
2109
+ }
2110
+
1932
2111
  /** The object that defines the structure of an Azure Data Factory error response. */
1933
2112
  export declare interface CloudError {
1934
2113
  /** Error code. */
@@ -1993,8 +2172,8 @@ export declare interface CommonDataServiceForAppsLinkedService extends LinkedSer
1993
2172
  servicePrincipalCredentialType?: any;
1994
2173
  /** The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. */
1995
2174
  servicePrincipalCredential?: SecretBaseUnion;
1996
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
1997
- encryptedCredential?: any;
2175
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
2176
+ encryptedCredential?: string;
1998
2177
  }
1999
2178
 
2000
2179
  /** A copy activity Common Data Service for Apps sink. */
@@ -2075,8 +2254,8 @@ export declare interface ConcurLinkedService extends LinkedService {
2075
2254
  useHostVerification?: any;
2076
2255
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
2077
2256
  usePeerVerification?: any;
2078
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
2079
- encryptedCredential?: any;
2257
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
2258
+ encryptedCredential?: string;
2080
2259
  }
2081
2260
 
2082
2261
  /** Concur Service dataset. */
@@ -2125,6 +2304,15 @@ export declare interface ConnectionStateProperties {
2125
2304
  readonly status?: string;
2126
2305
  }
2127
2306
 
2307
+ /**
2308
+ * Defines values for ConnectionType. \
2309
+ * {@link KnownConnectionType} can be used interchangeably with ConnectionType,
2310
+ * this enum contains the known values that the service supports.
2311
+ * ### Known values supported by the service
2312
+ * **linkedservicetype**
2313
+ */
2314
+ export declare type ConnectionType = string;
2315
+
2128
2316
  /** Base class for all control activities like IfCondition, ForEach , Until. */
2129
2317
  export declare interface ControlActivity extends Activity {
2130
2318
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -2205,7 +2393,7 @@ export declare interface CopyComputeScaleProperties {
2205
2393
  /** A copy activity sink. */
2206
2394
  export declare interface CopySink {
2207
2395
  /** Polymorphic discriminator, which specifies the different types this object can be */
2208
- 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";
2396
+ 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";
2209
2397
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
2210
2398
  [property: string]: any;
2211
2399
  /** Write batch size. Type: integer (or Expression with resultType integer), minimum: 0. */
@@ -2222,12 +2410,12 @@ export declare interface CopySink {
2222
2410
  disableMetricsCollection?: any;
2223
2411
  }
2224
2412
 
2225
- export declare 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;
2413
+ export declare 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;
2226
2414
 
2227
2415
  /** A copy activity source. */
2228
2416
  export declare interface CopySource {
2229
2417
  /** Polymorphic discriminator, which specifies the different types this object can be */
2230
- 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";
2418
+ 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";
2231
2419
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
2232
2420
  [property: string]: any;
2233
2421
  /** Source retry count. Type: integer (or Expression with resultType integer). */
@@ -2240,7 +2428,7 @@ export declare interface CopySource {
2240
2428
  disableMetricsCollection?: any;
2241
2429
  }
2242
2430
 
2243
- export declare 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;
2431
+ export declare 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;
2244
2432
 
2245
2433
  /** A copy activity translator. */
2246
2434
  export declare interface CopyTranslator {
@@ -2276,18 +2464,18 @@ export declare interface CosmosDbLinkedService extends LinkedService {
2276
2464
  accountKey?: SecretBaseUnion;
2277
2465
  /** The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string). */
2278
2466
  servicePrincipalId?: any;
2279
- /** The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string). */
2280
- servicePrincipalCredentialType?: CosmosDbServicePrincipalCredentialType;
2467
+ /** The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string. */
2468
+ servicePrincipalCredentialType?: any;
2281
2469
  /** The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. */
2282
2470
  servicePrincipalCredential?: SecretBaseUnion;
2283
2471
  /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
2284
2472
  tenant?: any;
2285
2473
  /** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
2286
2474
  azureCloudType?: any;
2287
- /** The connection mode used to access CosmosDB account. Type: string (or Expression with resultType string). */
2475
+ /** The connection mode used to access CosmosDB account. Type: string. */
2288
2476
  connectionMode?: CosmosDbConnectionMode;
2289
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
2290
- encryptedCredential?: any;
2477
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
2478
+ encryptedCredential?: string;
2291
2479
  /** The credential reference containing authentication information. */
2292
2480
  credential?: CredentialReference;
2293
2481
  }
@@ -2336,16 +2524,6 @@ export declare interface CosmosDbMongoDbApiSource extends CopySource {
2336
2524
  additionalColumns?: any;
2337
2525
  }
2338
2526
 
2339
- /**
2340
- * Defines values for CosmosDbServicePrincipalCredentialType. \
2341
- * {@link KnownCosmosDbServicePrincipalCredentialType} can be used interchangeably with CosmosDbServicePrincipalCredentialType,
2342
- * this enum contains the known values that the service supports.
2343
- * ### Known values supported by the service
2344
- * **ServicePrincipalKey** \
2345
- * **ServicePrincipalCert**
2346
- */
2347
- export declare type CosmosDbServicePrincipalCredentialType = string;
2348
-
2349
2527
  /** Microsoft Azure CosmosDB (SQL API) Collection dataset. */
2350
2528
  export declare interface CosmosDbSqlApiCollectionDataset extends Dataset {
2351
2529
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -2386,8 +2564,8 @@ export declare interface CouchbaseLinkedService extends LinkedService {
2386
2564
  connectionString?: any;
2387
2565
  /** The Azure key vault secret reference of credString in connection string. */
2388
2566
  credString?: AzureKeyVaultSecretReference;
2389
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
2390
- encryptedCredential?: any;
2567
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
2568
+ encryptedCredential?: string;
2391
2569
  }
2392
2570
 
2393
2571
  /** A copy activity Couchbase server source. */
@@ -2711,6 +2889,7 @@ export declare class DataFactoryManagementClient extends coreClient.ServiceClien
2711
2889
  privateEndpointConnection: PrivateEndpointConnection;
2712
2890
  privateLinkResources: PrivateLinkResources;
2713
2891
  globalParameters: GlobalParameters;
2892
+ changeDataCapture: ChangeDataCapture;
2714
2893
  }
2715
2894
 
2716
2895
  /** Optional parameters. */
@@ -3140,10 +3319,24 @@ export declare interface DataLakeAnalyticsUsqlActivity extends ExecutionActivity
3140
3319
  compilationMode?: any;
3141
3320
  }
3142
3321
 
3322
+ /** Source and target table mapping details. */
3323
+ export declare interface DataMapperMapping {
3324
+ /** Name of the target table */
3325
+ targetEntityName?: string;
3326
+ /** Name of the source table */
3327
+ sourceEntityName?: string;
3328
+ /** The connection reference for the source connection. */
3329
+ sourceConnectionReference?: MapperConnectionReference;
3330
+ /** This holds the user provided attribute mapping information. */
3331
+ attributeMappingInfo?: MapperAttributeMappings;
3332
+ /** This holds the source denormalization information used while joining multiple sources. */
3333
+ sourceDenormalizeInfo?: any;
3334
+ }
3335
+
3143
3336
  /** The Azure Data Factory nested object which identifies data within different data stores, such as tables, files, folders, and documents. */
3144
3337
  export declare interface Dataset {
3145
3338
  /** Polymorphic discriminator, which specifies the different types this object can be */
3146
- 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";
3339
+ 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";
3147
3340
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
3148
3341
  [property: string]: any;
3149
3342
  /** Dataset description. */
@@ -3215,7 +3408,7 @@ export declare interface DatasetListResponse {
3215
3408
  /** Dataset location. */
3216
3409
  export declare interface DatasetLocation {
3217
3410
  /** Polymorphic discriminator, which specifies the different types this object can be */
3218
- type: "AzureBlobStorageLocation" | "AzureBlobFSLocation" | "AzureDataLakeStoreLocation" | "AmazonS3Location" | "FileServerLocation" | "AzureFileStorageLocation" | "AmazonS3CompatibleLocation" | "OracleCloudStorageLocation" | "GoogleCloudStorageLocation" | "FtpServerLocation" | "SftpLocation" | "HttpServerLocation" | "HdfsLocation";
3411
+ type: "AzureBlobStorageLocation" | "AzureBlobFSLocation" | "AzureDataLakeStoreLocation" | "AmazonS3Location" | "FileServerLocation" | "AzureFileStorageLocation" | "AmazonS3CompatibleLocation" | "OracleCloudStorageLocation" | "GoogleCloudStorageLocation" | "FtpServerLocation" | "SftpLocation" | "HttpServerLocation" | "HdfsLocation" | "LakeHouseLocation";
3219
3412
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
3220
3413
  [property: string]: any;
3221
3414
  /** Specify the folder path of dataset. Type: string (or Expression with resultType string) */
@@ -3224,7 +3417,7 @@ export declare interface DatasetLocation {
3224
3417
  fileName?: any;
3225
3418
  }
3226
3419
 
3227
- export declare type DatasetLocationUnion = DatasetLocation | AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation;
3420
+ export declare type DatasetLocationUnion = DatasetLocation | AzureBlobStorageLocation | AzureBlobFSLocation | AzureDataLakeStoreLocation | AmazonS3Location | FileServerLocation | AzureFileStorageLocation | AmazonS3CompatibleLocation | OracleCloudStorageLocation | GoogleCloudStorageLocation | FtpServerLocation | SftpLocation | HttpServerLocation | HdfsLocation | LakeHouseLocation;
3228
3421
 
3229
3422
  /** Dataset reference type. */
3230
3423
  export declare interface DatasetReference {
@@ -3340,7 +3533,7 @@ export declare interface DatasetStorageFormat {
3340
3533
 
3341
3534
  export declare type DatasetStorageFormatUnion = DatasetStorageFormat | TextFormat | JsonFormat | AvroFormat | OrcFormat | ParquetFormat;
3342
3535
 
3343
- export declare 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;
3536
+ export declare 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;
3344
3537
 
3345
3538
  /** Linked service for Dataworld. */
3346
3539
  export declare interface DataworldLinkedService extends LinkedService {
@@ -3348,8 +3541,8 @@ export declare interface DataworldLinkedService extends LinkedService {
3348
3541
  type: "Dataworld";
3349
3542
  /** The api token for the Dataworld source. */
3350
3543
  apiToken: SecretBaseUnion;
3351
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
3352
- encryptedCredential?: any;
3544
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
3545
+ encryptedCredential?: string;
3353
3546
  }
3354
3547
 
3355
3548
  /** Defines values for DayOfWeek. */
@@ -3387,8 +3580,8 @@ export declare interface Db2LinkedService extends LinkedService {
3387
3580
  packageCollection?: any;
3388
3581
  /** Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string). */
3389
3582
  certificateCommonName?: any;
3390
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string). */
3391
- encryptedCredential?: any;
3583
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string. */
3584
+ encryptedCredential?: string;
3392
3585
  }
3393
3586
 
3394
3587
  /** A copy activity source for Db2 databases. */
@@ -3577,8 +3770,8 @@ export declare interface DrillLinkedService extends LinkedService {
3577
3770
  connectionString?: any;
3578
3771
  /** The Azure key vault secret reference of password in connection string. */
3579
3772
  pwd?: AzureKeyVaultSecretReference;
3580
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
3581
- encryptedCredential?: any;
3773
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
3774
+ encryptedCredential?: string;
3582
3775
  }
3583
3776
 
3584
3777
  /** A copy activity Drill server source. */
@@ -3644,8 +3837,8 @@ export declare interface DynamicsAXLinkedService extends LinkedService {
3644
3837
  tenant: any;
3645
3838
  /** Specify the resource you are requesting authorization. Type: string (or Expression with resultType string). */
3646
3839
  aadResourceId: any;
3647
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
3648
- encryptedCredential?: any;
3840
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
3841
+ encryptedCredential?: string;
3649
3842
  }
3650
3843
 
3651
3844
  /** The path of the Dynamics AX OData entity. */
@@ -3700,8 +3893,8 @@ export declare interface DynamicsCrmLinkedService extends LinkedService {
3700
3893
  servicePrincipalCredentialType?: any;
3701
3894
  /** The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. */
3702
3895
  servicePrincipalCredential?: SecretBaseUnion;
3703
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
3704
- encryptedCredential?: any;
3896
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
3897
+ encryptedCredential?: string;
3705
3898
  }
3706
3899
 
3707
3900
  /** A copy activity Dynamics CRM sink. */
@@ -3770,8 +3963,8 @@ export declare interface DynamicsLinkedService extends LinkedService {
3770
3963
  servicePrincipalCredentialType?: any;
3771
3964
  /** The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. */
3772
3965
  servicePrincipalCredential?: SecretBaseUnion;
3773
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
3774
- encryptedCredential?: any;
3966
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
3967
+ encryptedCredential?: string;
3775
3968
  /** The credential reference containing authentication information. */
3776
3969
  credential?: CredentialReference;
3777
3970
  }
@@ -3823,8 +4016,8 @@ export declare interface EloquaLinkedService extends LinkedService {
3823
4016
  useHostVerification?: any;
3824
4017
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
3825
4018
  usePeerVerification?: any;
3826
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
3827
- encryptedCredential?: any;
4019
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4020
+ encryptedCredential?: string;
3828
4021
  }
3829
4022
 
3830
4023
  /** Eloqua server dataset. */
@@ -4488,8 +4681,8 @@ export declare interface FileServerLinkedService extends LinkedService {
4488
4681
  userId?: any;
4489
4682
  /** Password to logon the server. */
4490
4683
  password?: SecretBaseUnion;
4491
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4492
- encryptedCredential?: any;
4684
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4685
+ encryptedCredential?: string;
4493
4686
  }
4494
4687
 
4495
4688
  /** The location of file server dataset. */
@@ -4510,8 +4703,8 @@ export declare interface FileServerReadSettings extends StoreReadSettings {
4510
4703
  wildcardFileName?: any;
4511
4704
  /** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
4512
4705
  fileListPath?: any;
4513
- /** Indicates whether to enable partition discovery. */
4514
- enablePartitionDiscovery?: boolean;
4706
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
4707
+ enablePartitionDiscovery?: any;
4515
4708
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
4516
4709
  partitionRootPath?: any;
4517
4710
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -4611,12 +4804,12 @@ export declare interface ForEachActivity extends ControlActivity {
4611
4804
  /** Format read settings. */
4612
4805
  export declare interface FormatReadSettings {
4613
4806
  /** Polymorphic discriminator, which specifies the different types this object can be */
4614
- type: "DelimitedTextReadSettings" | "JsonReadSettings" | "XmlReadSettings" | "BinaryReadSettings";
4807
+ type: "ParquetReadSettings" | "DelimitedTextReadSettings" | "JsonReadSettings" | "XmlReadSettings" | "BinaryReadSettings";
4615
4808
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
4616
4809
  [property: string]: any;
4617
4810
  }
4618
4811
 
4619
- export declare type FormatReadSettingsUnion = FormatReadSettings | DelimitedTextReadSettings | JsonReadSettings | XmlReadSettings | BinaryReadSettings;
4812
+ export declare type FormatReadSettingsUnion = FormatReadSettings | ParquetReadSettings | DelimitedTextReadSettings | JsonReadSettings | XmlReadSettings | BinaryReadSettings;
4620
4813
 
4621
4814
  /** Format write settings. */
4622
4815
  export declare interface FormatWriteSettings {
@@ -4628,6 +4821,17 @@ export declare interface FormatWriteSettings {
4628
4821
 
4629
4822
  export declare type FormatWriteSettingsUnion = FormatWriteSettings | AvroWriteSettings | OrcWriteSettings | ParquetWriteSettings | DelimitedTextWriteSettings | JsonWriteSettings;
4630
4823
 
4824
+ /**
4825
+ * Defines values for FrequencyType. \
4826
+ * {@link KnownFrequencyType} can be used interchangeably with FrequencyType,
4827
+ * this enum contains the known values that the service supports.
4828
+ * ### Known values supported by the service
4829
+ * **Hour** \
4830
+ * **Minute** \
4831
+ * **Second**
4832
+ */
4833
+ export declare type FrequencyType = string;
4834
+
4631
4835
  /**
4632
4836
  * Defines values for FtpAuthenticationType. \
4633
4837
  * {@link KnownFtpAuthenticationType} can be used interchangeably with FtpAuthenticationType,
@@ -4648,16 +4852,16 @@ export declare interface FtpReadSettings extends StoreReadSettings {
4648
4852
  wildcardFolderPath?: any;
4649
4853
  /** Ftp wildcardFileName. Type: string (or Expression with resultType string). */
4650
4854
  wildcardFileName?: any;
4651
- /** Indicates whether to enable partition discovery. */
4652
- enablePartitionDiscovery?: boolean;
4855
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
4856
+ enablePartitionDiscovery?: any;
4653
4857
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
4654
4858
  partitionRootPath?: any;
4655
4859
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
4656
4860
  deleteFilesAfterCompletion?: any;
4657
4861
  /** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
4658
4862
  fileListPath?: any;
4659
- /** Specify whether to use binary transfer mode for FTP stores. */
4660
- useBinaryTransfer?: boolean;
4863
+ /** Specify whether to use binary transfer mode for FTP stores. Type: boolean (or Expression with resultType boolean). */
4864
+ useBinaryTransfer?: any;
4661
4865
  /** If true, disable parallel reading within each file. Default is false. Type: boolean (or Expression with resultType boolean). */
4662
4866
  disableChunking?: any;
4663
4867
  }
@@ -4676,8 +4880,8 @@ export declare interface FtpServerLinkedService extends LinkedService {
4676
4880
  userName?: any;
4677
4881
  /** Password to logon the FTP server. */
4678
4882
  password?: SecretBaseUnion;
4679
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4680
- encryptedCredential?: any;
4883
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4884
+ encryptedCredential?: string;
4681
4885
  /** If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean). */
4682
4886
  enableSsl?: any;
4683
4887
  /** If true, validate the FTP server SSL certificate when connect over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean). */
@@ -4873,9 +5077,9 @@ export declare type GoogleAdWordsAuthenticationType = string;
4873
5077
  export declare interface GoogleAdWordsLinkedService extends LinkedService {
4874
5078
  /** Polymorphic discriminator, which specifies the different types this object can be */
4875
5079
  type: "GoogleAdWords";
4876
- /** Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object. */
5080
+ /** (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object. */
4877
5081
  connectionProperties?: any;
4878
- /** The Client customer ID of the AdWords account that you want to fetch report data for. */
5082
+ /** The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string). */
4879
5083
  clientCustomerID?: any;
4880
5084
  /** The developer token associated with the manager account that you use to grant access to the AdWords API. */
4881
5085
  developerToken?: SecretBaseUnion;
@@ -4887,16 +5091,24 @@ export declare interface GoogleAdWordsLinkedService extends LinkedService {
4887
5091
  clientId?: any;
4888
5092
  /** The client secret of the google application used to acquire the refresh token. */
4889
5093
  clientSecret?: SecretBaseUnion;
4890
- /** The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. */
5094
+ /** The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string). */
4891
5095
  email?: any;
4892
- /** The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. */
5096
+ /** (Deprecated) The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string). */
4893
5097
  keyFilePath?: any;
4894
- /** The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. */
5098
+ /** (Deprecated) The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string). */
4895
5099
  trustedCertPath?: any;
4896
- /** Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. */
5100
+ /** (Deprecated) Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. Type: boolean (or Expression with resultType boolean). */
4897
5101
  useSystemTrustStore?: any;
4898
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4899
- encryptedCredential?: any;
5102
+ /** The private key that is used to authenticate the service account email address and can only be used on self-hosted IR. */
5103
+ privateKey?: SecretBaseUnion;
5104
+ /** The customer ID of the Google Ads Manager account through which you want to fetch report data of specific Customer. Type: string (or Expression with resultType string). */
5105
+ loginCustomerID?: any;
5106
+ /** The Google Ads API major version such as v14. The supported major versions could be found on https://developers.google.com/google-ads/api/docs/release-notes. Type: string (or Expression with resultType string). */
5107
+ googleAdsApiVersion?: any;
5108
+ /** Specifies whether to use the legacy data type mappings, which maps float, int32 and int64 from Google to string. Do not set this to true unless you want to keep backward compatibility with legacy driver's data type mappings. Type: boolean (or Expression with resultType boolean). */
5109
+ supportLegacyDataTypes?: any;
5110
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5111
+ encryptedCredential?: string;
4900
5112
  }
4901
5113
 
4902
5114
  /** Google AdWords service dataset. */
@@ -4929,11 +5141,11 @@ export declare type GoogleBigQueryAuthenticationType = string;
4929
5141
  export declare interface GoogleBigQueryLinkedService extends LinkedService {
4930
5142
  /** Polymorphic discriminator, which specifies the different types this object can be */
4931
5143
  type: "GoogleBigQuery";
4932
- /** The default BigQuery project to query against. */
5144
+ /** The default BigQuery project to query against. Type: string (or Expression with resultType string). */
4933
5145
  project: any;
4934
- /** A comma-separated list of public BigQuery projects to access. */
5146
+ /** A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string). */
4935
5147
  additionalProjects?: any;
4936
- /** Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. */
5148
+ /** Whether to request access to Google Drive. Allowing Google Drive access enables support for federated tables that combine BigQuery data with data from Google Drive. The default value is false. Type: string (or Expression with resultType string). */
4937
5149
  requestGoogleDriveScope?: any;
4938
5150
  /** The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR. */
4939
5151
  authenticationType: GoogleBigQueryAuthenticationType;
@@ -4943,16 +5155,16 @@ export declare interface GoogleBigQueryLinkedService extends LinkedService {
4943
5155
  clientId?: any;
4944
5156
  /** The client secret of the google application used to acquire the refresh token. */
4945
5157
  clientSecret?: SecretBaseUnion;
4946
- /** The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. */
5158
+ /** The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. Type: string (or Expression with resultType string). */
4947
5159
  email?: any;
4948
- /** The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. */
5160
+ /** The full path to the .p12 key file that is used to authenticate the service account email address and can only be used on self-hosted IR. Type: string (or Expression with resultType string). */
4949
5161
  keyFilePath?: any;
4950
- /** The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. */
5162
+ /** The full path of the .pem file containing trusted CA certificates for verifying the server when connecting over SSL. This property can only be set when using SSL on self-hosted IR. The default value is the cacerts.pem file installed with the IR. Type: string (or Expression with resultType string). */
4951
5163
  trustedCertPath?: any;
4952
- /** Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. */
5164
+ /** Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false.Type: boolean (or Expression with resultType boolean). */
4953
5165
  useSystemTrustStore?: any;
4954
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4955
- encryptedCredential?: any;
5166
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5167
+ encryptedCredential?: string;
4956
5168
  }
4957
5169
 
4958
5170
  /** Google BigQuery service dataset. */
@@ -4985,8 +5197,8 @@ export declare interface GoogleCloudStorageLinkedService extends LinkedService {
4985
5197
  secretAccessKey?: SecretBaseUnion;
4986
5198
  /** This value specifies the endpoint to access with the Google Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string). */
4987
5199
  serviceUrl?: any;
4988
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4989
- encryptedCredential?: any;
5200
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5201
+ encryptedCredential?: string;
4990
5202
  }
4991
5203
 
4992
5204
  /** The location of Google Cloud Storage dataset. */
@@ -5013,8 +5225,8 @@ export declare interface GoogleCloudStorageReadSettings extends StoreReadSetting
5013
5225
  prefix?: any;
5014
5226
  /** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
5015
5227
  fileListPath?: any;
5016
- /** Indicates whether to enable partition discovery. */
5017
- enablePartitionDiscovery?: boolean;
5228
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
5229
+ enablePartitionDiscovery?: any;
5018
5230
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
5019
5231
  partitionRootPath?: any;
5020
5232
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -5031,8 +5243,8 @@ export declare interface GoogleSheetsLinkedService extends LinkedService {
5031
5243
  type: "GoogleSheets";
5032
5244
  /** The api token for the GoogleSheets source. */
5033
5245
  apiToken: SecretBaseUnion;
5034
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5035
- encryptedCredential?: any;
5246
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5247
+ encryptedCredential?: string;
5036
5248
  }
5037
5249
 
5038
5250
  /** Greenplum Database linked service. */
@@ -5043,8 +5255,8 @@ export declare interface GreenplumLinkedService extends LinkedService {
5043
5255
  connectionString?: any;
5044
5256
  /** The Azure key vault secret reference of password in connection string. */
5045
5257
  pwd?: AzureKeyVaultSecretReference;
5046
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5047
- encryptedCredential?: any;
5258
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5259
+ encryptedCredential?: string;
5048
5260
  }
5049
5261
 
5050
5262
  /** A copy activity Greenplum Database source. */
@@ -5101,8 +5313,8 @@ export declare interface HBaseLinkedService extends LinkedService {
5101
5313
  allowHostNameCNMismatch?: any;
5102
5314
  /** Specifies whether to allow self-signed certificates from the server. The default value is false. */
5103
5315
  allowSelfSignedServerCert?: any;
5104
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5105
- encryptedCredential?: any;
5316
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5317
+ encryptedCredential?: string;
5106
5318
  }
5107
5319
 
5108
5320
  /** HBase server dataset. */
@@ -5129,8 +5341,8 @@ export declare interface HdfsLinkedService extends LinkedService {
5129
5341
  url: any;
5130
5342
  /** Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string). */
5131
5343
  authenticationType?: any;
5132
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5133
- encryptedCredential?: any;
5344
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5345
+ encryptedCredential?: string;
5134
5346
  /** User name for Windows authentication. Type: string (or Expression with resultType string). */
5135
5347
  userName?: any;
5136
5348
  /** Password for Windows authentication. */
@@ -5155,8 +5367,8 @@ export declare interface HdfsReadSettings extends StoreReadSettings {
5155
5367
  wildcardFileName?: any;
5156
5368
  /** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
5157
5369
  fileListPath?: any;
5158
- /** Indicates whether to enable partition discovery. */
5159
- enablePartitionDiscovery?: boolean;
5370
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
5371
+ enablePartitionDiscovery?: any;
5160
5372
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
5161
5373
  partitionRootPath?: any;
5162
5374
  /** The start of file's modified datetime. Type: string (or Expression with resultType string). */
@@ -5220,7 +5432,9 @@ export declare interface HDInsightHiveActivity extends ExecutionActivity {
5220
5432
  [propertyName: string]: any;
5221
5433
  };
5222
5434
  /** User specified arguments under hivevar namespace. */
5223
- variables?: any[];
5435
+ variables?: {
5436
+ [propertyName: string]: any;
5437
+ };
5224
5438
  /** Query timeout value (in minutes). Effective when the HDInsight cluster is with ESP (Enterprise Security Package) */
5225
5439
  queryTimeout?: number;
5226
5440
  }
@@ -5239,8 +5453,8 @@ export declare interface HDInsightLinkedService extends LinkedService {
5239
5453
  linkedServiceName?: LinkedServiceReference;
5240
5454
  /** A reference to the Azure SQL linked service that points to the HCatalog database. */
5241
5455
  hcatalogLinkedServiceName?: LinkedServiceReference;
5242
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5243
- encryptedCredential?: any;
5456
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5457
+ encryptedCredential?: string;
5244
5458
  /** Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean. */
5245
5459
  isEspEnabled?: any;
5246
5460
  /** Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string). */
@@ -5327,8 +5541,8 @@ export declare interface HDInsightOnDemandLinkedService extends LinkedService {
5327
5541
  stormConfiguration?: any;
5328
5542
  /** Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster. */
5329
5543
  yarnConfiguration?: any;
5330
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5331
- encryptedCredential?: any;
5544
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5545
+ encryptedCredential?: string;
5332
5546
  /** Specifies the size of the head node for the HDInsight cluster. */
5333
5547
  headNodeSize?: any;
5334
5548
  /** Specifies the size of the data node for the HDInsight cluster. */
@@ -5469,8 +5683,8 @@ export declare interface HiveLinkedService extends LinkedService {
5469
5683
  allowHostNameCNMismatch?: any;
5470
5684
  /** Specifies whether to allow self-signed certificates from the server. The default value is false. */
5471
5685
  allowSelfSignedServerCert?: any;
5472
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5473
- encryptedCredential?: any;
5686
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5687
+ encryptedCredential?: string;
5474
5688
  }
5475
5689
 
5476
5690
  /** Hive Server dataset. */
@@ -5568,13 +5782,13 @@ export declare interface HttpLinkedService extends LinkedService {
5568
5782
  embeddedCertData?: any;
5569
5783
  /** Thumbprint of certificate for ClientCertificate authentication. Only valid for on-premises copy. For on-premises copy with ClientCertificate authentication, either CertThumbprint or EmbeddedCertData/Password should be specified. Type: string (or Expression with resultType string). */
5570
5784
  certThumbprint?: any;
5571
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5572
- encryptedCredential?: any;
5785
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5786
+ encryptedCredential?: string;
5573
5787
  /** If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean). */
5574
5788
  enableServerCertificateValidation?: any;
5575
5789
  }
5576
5790
 
5577
- /** Sftp read settings. */
5791
+ /** Http read settings. */
5578
5792
  export declare interface HttpReadSettings extends StoreReadSettings {
5579
5793
  /** Polymorphic discriminator, which specifies the different types this object can be */
5580
5794
  type: "HttpReadSettings";
@@ -5584,12 +5798,10 @@ export declare interface HttpReadSettings extends StoreReadSettings {
5584
5798
  requestBody?: any;
5585
5799
  /** The additional HTTP headers in the request to the RESTful API. Type: string (or Expression with resultType string). */
5586
5800
  additionalHeaders?: any;
5587
- /** Specifies the timeout for a HTTP client to get HTTP response from HTTP server. */
5801
+ /** Specifies the timeout for a HTTP client to get HTTP response from HTTP server. Type: string (or Expression with resultType string). */
5588
5802
  requestTimeout?: any;
5589
- /** Indicates whether to enable partition discovery. */
5590
- enablePartitionDiscovery?: boolean;
5591
- /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
5592
- partitionRootPath?: any;
5803
+ /** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
5804
+ additionalColumns?: any;
5593
5805
  }
5594
5806
 
5595
5807
  /** The location of http server. */
@@ -5626,8 +5838,8 @@ export declare interface HubspotLinkedService extends LinkedService {
5626
5838
  useHostVerification?: any;
5627
5839
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5628
5840
  usePeerVerification?: any;
5629
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5630
- encryptedCredential?: any;
5841
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5842
+ encryptedCredential?: string;
5631
5843
  }
5632
5844
 
5633
5845
  /** Hubspot Service dataset. */
@@ -5693,8 +5905,8 @@ export declare interface ImpalaLinkedService extends LinkedService {
5693
5905
  allowHostNameCNMismatch?: any;
5694
5906
  /** Specifies whether to allow self-signed certificates from the server. The default value is false. */
5695
5907
  allowSelfSignedServerCert?: any;
5696
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5697
- encryptedCredential?: any;
5908
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5909
+ encryptedCredential?: string;
5698
5910
  }
5699
5911
 
5700
5912
  /** Impala server dataset. */
@@ -5731,7 +5943,7 @@ export declare type ImportSettingsUnion = ImportSettings | AzureDatabricksDeltaL
5731
5943
  export declare interface InformixLinkedService extends LinkedService {
5732
5944
  /** Polymorphic discriminator, which specifies the different types this object can be */
5733
5945
  type: "Informix";
5734
- /** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, SecureString or AzureKeyVaultSecretReference. */
5946
+ /** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string. */
5735
5947
  connectionString: any;
5736
5948
  /** Type of authentication used to connect to the Informix as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string). */
5737
5949
  authenticationType?: any;
@@ -5741,8 +5953,8 @@ export declare interface InformixLinkedService extends LinkedService {
5741
5953
  userName?: any;
5742
5954
  /** Password for Basic authentication. */
5743
5955
  password?: SecretBaseUnion;
5744
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5745
- encryptedCredential?: any;
5956
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5957
+ encryptedCredential?: string;
5746
5958
  }
5747
5959
 
5748
5960
  /** A copy activity Informix sink. */
@@ -5891,6 +6103,15 @@ export declare interface IntegrationRuntimeDataFlowProperties {
5891
6103
  timeToLive?: number;
5892
6104
  /** Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true. */
5893
6105
  cleanup?: boolean;
6106
+ /** Custom properties are used to tune the data flow runtime performance. */
6107
+ customProperties?: IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem[];
6108
+ }
6109
+
6110
+ export declare interface IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem {
6111
+ /** Name of custom property. */
6112
+ name?: string;
6113
+ /** Value of custom property. */
6114
+ value?: string;
5894
6115
  }
5895
6116
 
5896
6117
  /** Data proxy properties for a managed dedicated integration runtime. */
@@ -6640,8 +6861,8 @@ export declare interface JiraLinkedService extends LinkedService {
6640
6861
  useHostVerification?: any;
6641
6862
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
6642
6863
  usePeerVerification?: any;
6643
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6644
- encryptedCredential?: any;
6864
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6865
+ encryptedCredential?: string;
6645
6866
  }
6646
6867
 
6647
6868
  /** Jira Service dataset. */
@@ -6746,6 +6967,24 @@ export declare interface JsonWriteSettings extends FormatWriteSettings {
6746
6967
  filePattern?: any;
6747
6968
  }
6748
6969
 
6970
+ /** Known values of {@link ActivityOnInactiveMarkAs} that the service accepts. */
6971
+ export declare enum KnownActivityOnInactiveMarkAs {
6972
+ /** Succeeded */
6973
+ Succeeded = "Succeeded",
6974
+ /** Failed */
6975
+ Failed = "Failed",
6976
+ /** Skipped */
6977
+ Skipped = "Skipped"
6978
+ }
6979
+
6980
+ /** Known values of {@link ActivityState} that the service accepts. */
6981
+ export declare enum KnownActivityState {
6982
+ /** Active */
6983
+ Active = "Active",
6984
+ /** Inactive */
6985
+ Inactive = "Inactive"
6986
+ }
6987
+
6749
6988
  /** Known values of {@link AmazonRdsForOraclePartitionOption} that the service accepts. */
6750
6989
  export declare enum KnownAmazonRdsForOraclePartitionOption {
6751
6990
  /** None */
@@ -6882,6 +7121,12 @@ export declare enum KnownConfigurationType {
6882
7121
  Artifact = "Artifact"
6883
7122
  }
6884
7123
 
7124
+ /** Known values of {@link ConnectionType} that the service accepts. */
7125
+ export declare enum KnownConnectionType {
7126
+ /** Linkedservicetype */
7127
+ Linkedservicetype = "linkedservicetype"
7128
+ }
7129
+
6885
7130
  /** Known values of {@link CopyBehaviorType} that the service accepts. */
6886
7131
  export declare enum KnownCopyBehaviorType {
6887
7132
  /** PreserveHierarchy */
@@ -6900,14 +7145,6 @@ export declare enum KnownCosmosDbConnectionMode {
6900
7145
  Direct = "Direct"
6901
7146
  }
6902
7147
 
6903
- /** Known values of {@link CosmosDbServicePrincipalCredentialType} that the service accepts. */
6904
- export declare enum KnownCosmosDbServicePrincipalCredentialType {
6905
- /** ServicePrincipalKey */
6906
- ServicePrincipalKey = "ServicePrincipalKey",
6907
- /** ServicePrincipalCert */
6908
- ServicePrincipalCert = "ServicePrincipalCert"
6909
- }
6910
-
6911
7148
  /** Known values of {@link CredentialReferenceType} that the service accepts. */
6912
7149
  export declare enum KnownCredentialReferenceType {
6913
7150
  /** CredentialReference */
@@ -7014,6 +7251,16 @@ export declare enum KnownFactoryIdentityType {
7014
7251
  SystemAssignedUserAssigned = "SystemAssigned,UserAssigned"
7015
7252
  }
7016
7253
 
7254
+ /** Known values of {@link FrequencyType} that the service accepts. */
7255
+ export declare enum KnownFrequencyType {
7256
+ /** Hour */
7257
+ Hour = "Hour",
7258
+ /** Minute */
7259
+ Minute = "Minute",
7260
+ /** Second */
7261
+ Second = "Second"
7262
+ }
7263
+
7017
7264
  /** Known values of {@link FtpAuthenticationType} that the service accepts. */
7018
7265
  export declare enum KnownFtpAuthenticationType {
7019
7266
  /** Basic */
@@ -7276,6 +7523,16 @@ export declare enum KnownManagedVirtualNetworkReferenceType {
7276
7523
  ManagedVirtualNetworkReference = "ManagedVirtualNetworkReference"
7277
7524
  }
7278
7525
 
7526
+ /** Known values of {@link MappingType} that the service accepts. */
7527
+ export declare enum KnownMappingType {
7528
+ /** Direct */
7529
+ Direct = "Direct",
7530
+ /** Derived */
7531
+ Derived = "Derived",
7532
+ /** Aggregate */
7533
+ Aggregate = "Aggregate"
7534
+ }
7535
+
7279
7536
  /** Known values of {@link MongoDbAuthenticationType} that the service accepts. */
7280
7537
  export declare enum KnownMongoDbAuthenticationType {
7281
7538
  /** Basic */
@@ -7918,6 +8175,96 @@ export declare enum KnownZendeskAuthenticationType {
7918
8175
  Token = "Token"
7919
8176
  }
7920
8177
 
8178
+ /** Microsoft Fabric LakeHouse linked service. */
8179
+ export declare interface LakeHouseLinkedService extends LinkedService {
8180
+ /** Polymorphic discriminator, which specifies the different types this object can be */
8181
+ type: "LakeHouse";
8182
+ /** The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string). */
8183
+ workspaceId?: any;
8184
+ /** The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string). */
8185
+ artifactId?: any;
8186
+ /** The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string). */
8187
+ servicePrincipalId?: any;
8188
+ /** The Key of the application used to authenticate against Microsoft Fabric LakeHouse. */
8189
+ servicePrincipalKey?: SecretBaseUnion;
8190
+ /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
8191
+ tenant?: any;
8192
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
8193
+ encryptedCredential?: string;
8194
+ /** The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string (or Expression with resultType string). */
8195
+ servicePrincipalCredentialType?: any;
8196
+ /** The credential of the service principal object in Azure Active Directory. If servicePrincipalCredentialType is 'ServicePrincipalKey', servicePrincipalCredential can be SecureString or AzureKeyVaultSecretReference. If servicePrincipalCredentialType is 'ServicePrincipalCert', servicePrincipalCredential can only be AzureKeyVaultSecretReference. */
8197
+ servicePrincipalCredential?: SecretBaseUnion;
8198
+ }
8199
+
8200
+ /** The location of Microsoft Fabric LakeHouse Files dataset. */
8201
+ export declare interface LakeHouseLocation extends DatasetLocation {
8202
+ /** Polymorphic discriminator, which specifies the different types this object can be */
8203
+ type: "LakeHouseLocation";
8204
+ }
8205
+
8206
+ /** Microsoft Fabric LakeHouse Files read settings. */
8207
+ export declare interface LakeHouseReadSettings extends StoreReadSettings {
8208
+ /** Polymorphic discriminator, which specifies the different types this object can be */
8209
+ type: "LakeHouseReadSettings";
8210
+ /** If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean). */
8211
+ recursive?: any;
8212
+ /** Microsoft Fabric LakeHouse Files wildcardFolderPath. Type: string (or Expression with resultType string). */
8213
+ wildcardFolderPath?: any;
8214
+ /** Microsoft Fabric LakeHouse Files wildcardFileName. Type: string (or Expression with resultType string). */
8215
+ wildcardFileName?: any;
8216
+ /** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
8217
+ fileListPath?: any;
8218
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8219
+ enablePartitionDiscovery?: any;
8220
+ /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
8221
+ partitionRootPath?: any;
8222
+ /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
8223
+ deleteFilesAfterCompletion?: any;
8224
+ /** The start of file's modified datetime. Type: string (or Expression with resultType string). */
8225
+ modifiedDatetimeStart?: any;
8226
+ /** The end of file's modified datetime. Type: string (or Expression with resultType string). */
8227
+ modifiedDatetimeEnd?: any;
8228
+ }
8229
+
8230
+ /** Microsoft Fabric LakeHouse Table. */
8231
+ export declare interface LakeHouseTableDataset extends Dataset {
8232
+ /** Polymorphic discriminator, which specifies the different types this object can be */
8233
+ type: "LakeHouseTable";
8234
+ /** The name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string). */
8235
+ table?: any;
8236
+ }
8237
+
8238
+ /** A copy activity for Microsoft Fabric LakeHouse Table sink. */
8239
+ export declare interface LakeHouseTableSink extends CopySink {
8240
+ /** Polymorphic discriminator, which specifies the different types this object can be */
8241
+ type: "LakeHouseTableSink";
8242
+ /** The type of table action for LakeHouse Table sink. Possible values include: "None", "Append", "Overwrite". */
8243
+ tableActionOption?: any;
8244
+ /** Create partitions in folder structure based on one or multiple columns. Each distinct column value (pair) will be a new partition. Possible values include: "None", "PartitionByKey". */
8245
+ partitionOption?: any;
8246
+ /** Specify the partition column names from sink columns. Type: array of objects (or Expression with resultType array of objects). */
8247
+ partitionNameList?: any;
8248
+ }
8249
+
8250
+ /** A copy activity source for Microsoft Fabric LakeHouse Table. */
8251
+ export declare interface LakeHouseTableSource extends CopySource {
8252
+ /** Polymorphic discriminator, which specifies the different types this object can be */
8253
+ type: "LakeHouseTableSource";
8254
+ /** Query an older snapshot by timestamp. Type: string (or Expression with resultType string). */
8255
+ timestampAsOf?: any;
8256
+ /** Query an older snapshot by version. Type: integer (or Expression with resultType integer). */
8257
+ versionAsOf?: any;
8258
+ /** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
8259
+ additionalColumns?: any;
8260
+ }
8261
+
8262
+ /** Microsoft Fabric LakeHouse Files write settings. */
8263
+ export declare interface LakeHouseWriteSettings extends StoreWriteSettings {
8264
+ /** Polymorphic discriminator, which specifies the different types this object can be */
8265
+ type: "LakeHouseWriteSettings";
8266
+ }
8267
+
7921
8268
  /** The linked integration runtime information. */
7922
8269
  export declare interface LinkedIntegrationRuntime {
7923
8270
  /**
@@ -7982,7 +8329,7 @@ export declare type LinkedIntegrationRuntimeTypeUnion = LinkedIntegrationRuntime
7982
8329
  /** The nested object which contains the information and credential which can be used to connect with related store or compute resource. */
7983
8330
  export declare interface LinkedService {
7984
8331
  /** Polymorphic discriminator, which specifies the different types this object can be */
7985
- 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";
8332
+ 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";
7986
8333
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
7987
8334
  [property: string]: any;
7988
8335
  /** The integration runtime reference. */
@@ -8101,7 +8448,7 @@ export declare interface LinkedServicesListByFactoryOptionalParams extends coreC
8101
8448
  /** Contains response data for the listByFactory operation. */
8102
8449
  export declare type LinkedServicesListByFactoryResponse = LinkedServiceListResponse;
8103
8450
 
8104
- export declare 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;
8451
+ export declare 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;
8105
8452
 
8106
8453
  /** Log location settings. */
8107
8454
  export declare interface LogLocationSettings {
@@ -8161,8 +8508,8 @@ export declare interface MagentoLinkedService extends LinkedService {
8161
8508
  useHostVerification?: any;
8162
8509
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
8163
8510
  usePeerVerification?: any;
8164
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
8165
- encryptedCredential?: any;
8511
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
8512
+ encryptedCredential?: string;
8166
8513
  }
8167
8514
 
8168
8515
  /** Magento server dataset. */
@@ -8553,6 +8900,122 @@ export declare interface ManagedVirtualNetworksListByFactoryOptionalParams exten
8553
8900
  /** Contains response data for the listByFactory operation. */
8554
8901
  export declare type ManagedVirtualNetworksListByFactoryResponse = ManagedVirtualNetworkListResponse;
8555
8902
 
8903
+ /** Source and target column mapping details. */
8904
+ export declare interface MapperAttributeMapping {
8905
+ /** Name of the target column. */
8906
+ name?: string;
8907
+ /** Type of the CDC attribute mapping. Note: 'Advanced' mapping type is also saved as 'Derived'. */
8908
+ type?: MappingType;
8909
+ /** Name of the function used for 'Aggregate' and 'Derived' (except 'Advanced') type mapping. */
8910
+ functionName?: string;
8911
+ /** Expression used for 'Aggregate' and 'Derived' type mapping. */
8912
+ expression?: string;
8913
+ /** Reference of the source column used in the mapping. It is used for 'Direct' mapping type only. */
8914
+ attributeReference?: MapperAttributeReference;
8915
+ /** List of references for source columns. It is used for 'Derived' and 'Aggregate' type mappings only. */
8916
+ attributeReferences?: MapperAttributeReference[];
8917
+ }
8918
+
8919
+ /** Attribute mapping details. */
8920
+ export declare interface MapperAttributeMappings {
8921
+ /** List of attribute mappings. */
8922
+ attributeMappings?: MapperAttributeMapping[];
8923
+ }
8924
+
8925
+ /** Attribute reference details for the referred column. */
8926
+ export declare interface MapperAttributeReference {
8927
+ /** Name of the column. */
8928
+ name?: string;
8929
+ /** Name of the table. */
8930
+ entity?: string;
8931
+ /** The connection reference for the connection. */
8932
+ entityConnectionReference?: MapperConnectionReference;
8933
+ }
8934
+
8935
+ /** Source connection details. */
8936
+ export declare interface MapperConnection {
8937
+ /** Linked service reference. */
8938
+ linkedService?: LinkedServiceReference;
8939
+ /** Type of the linked service e.g.: AzureBlobFS. */
8940
+ linkedServiceType?: string;
8941
+ /** Type of connection via linked service or dataset. */
8942
+ type: ConnectionType;
8943
+ /** A boolean indicating whether linked service is of type inline dataset. Currently only inline datasets are supported. */
8944
+ isInlineDataset?: boolean;
8945
+ /** List of name/value pairs for connection properties. */
8946
+ commonDslConnectorProperties?: MapperDslConnectorProperties[];
8947
+ }
8948
+
8949
+ /** Source or target connection reference details. */
8950
+ export declare interface MapperConnectionReference {
8951
+ /** Name of the connection */
8952
+ connectionName?: string;
8953
+ /** Type of connection via linked service or dataset. */
8954
+ type?: ConnectionType;
8955
+ }
8956
+
8957
+ /** Connector properties of a CDC table in terms of name / value pairs. */
8958
+ export declare interface MapperDslConnectorProperties {
8959
+ /** Name of the property. */
8960
+ name?: string;
8961
+ /** Value of the property. */
8962
+ value?: any;
8963
+ }
8964
+
8965
+ /** CDC Policy. */
8966
+ export declare interface MapperPolicy {
8967
+ /** Mode of running the CDC: batch vs continuous. */
8968
+ mode?: string;
8969
+ /** Defines the frequency and interval for running the CDC for batch mode. */
8970
+ recurrence?: MapperPolicyRecurrence;
8971
+ }
8972
+
8973
+ /** CDC policy recurrence details. */
8974
+ export declare interface MapperPolicyRecurrence {
8975
+ /** Frequency of period in terms of 'Hour', 'Minute' or 'Second'. */
8976
+ frequency?: FrequencyType;
8977
+ /** Actual interval value as per chosen frequency. */
8978
+ interval?: number;
8979
+ }
8980
+
8981
+ /** A object which contains list of tables and connection details for a source connection. */
8982
+ export declare interface MapperSourceConnectionsInfo {
8983
+ /** List of source tables for a source connection. */
8984
+ sourceEntities?: MapperTable[];
8985
+ /** Source connection details. */
8986
+ connection?: MapperConnection;
8987
+ }
8988
+
8989
+ /** CDC table details. */
8990
+ export declare interface MapperTable {
8991
+ /** Name of the table. */
8992
+ name?: string;
8993
+ /** List of columns for the source table. */
8994
+ schema?: MapperTableSchema[];
8995
+ /** List of name/value pairs for connection properties. */
8996
+ dslConnectorProperties?: MapperDslConnectorProperties[];
8997
+ }
8998
+
8999
+ /** Schema of a CDC table in terms of column names and their corresponding data types. */
9000
+ export declare interface MapperTableSchema {
9001
+ /** Name of the column. */
9002
+ name?: string;
9003
+ /** Data type of the column. */
9004
+ dataType?: string;
9005
+ }
9006
+
9007
+ /** A object which contains list of tables and connection details for a target connection. */
9008
+ export declare interface MapperTargetConnectionsInfo {
9009
+ /** List of source tables for a target connection. */
9010
+ targetEntities?: MapperTable[];
9011
+ /** Source connection details. */
9012
+ connection?: MapperConnection;
9013
+ /** List of table mappings. */
9014
+ dataMapperMappings?: DataMapperMapping[];
9015
+ /** List of relationship info among the tables. */
9016
+ relationships?: any[];
9017
+ }
9018
+
8556
9019
  /** Mapping data flow. */
8557
9020
  export declare interface MappingDataFlow extends DataFlow {
8558
9021
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -8569,6 +9032,17 @@ export declare interface MappingDataFlow extends DataFlow {
8569
9032
  scriptLines?: string[];
8570
9033
  }
8571
9034
 
9035
+ /**
9036
+ * Defines values for MappingType. \
9037
+ * {@link KnownMappingType} can be used interchangeably with MappingType,
9038
+ * this enum contains the known values that the service supports.
9039
+ * ### Known values supported by the service
9040
+ * **Direct** \
9041
+ * **Derived** \
9042
+ * **Aggregate**
9043
+ */
9044
+ export declare type MappingType = string;
9045
+
8572
9046
  /** MariaDB server linked service. */
8573
9047
  export declare interface MariaDBLinkedService extends LinkedService {
8574
9048
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -8577,8 +9051,8 @@ export declare interface MariaDBLinkedService extends LinkedService {
8577
9051
  connectionString?: any;
8578
9052
  /** The Azure key vault secret reference of password in connection string. */
8579
9053
  pwd?: AzureKeyVaultSecretReference;
8580
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
8581
- encryptedCredential?: any;
9054
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
9055
+ encryptedCredential?: string;
8582
9056
  }
8583
9057
 
8584
9058
  /** A copy activity MariaDB server source. */
@@ -8613,8 +9087,8 @@ export declare interface MarketoLinkedService extends LinkedService {
8613
9087
  useHostVerification?: any;
8614
9088
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
8615
9089
  usePeerVerification?: any;
8616
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
8617
- encryptedCredential?: any;
9090
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
9091
+ encryptedCredential?: string;
8618
9092
  }
8619
9093
 
8620
9094
  /** Marketo server dataset. */
@@ -8645,7 +9119,7 @@ export declare interface MetadataItem {
8645
9119
  export declare interface MicrosoftAccessLinkedService extends LinkedService {
8646
9120
  /** Polymorphic discriminator, which specifies the different types this object can be */
8647
9121
  type: "MicrosoftAccess";
8648
- /** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, SecureString or AzureKeyVaultSecretReference. */
9122
+ /** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string. */
8649
9123
  connectionString: any;
8650
9124
  /** Type of authentication used to connect to the Microsoft Access as ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string). */
8651
9125
  authenticationType?: any;
@@ -8655,8 +9129,8 @@ export declare interface MicrosoftAccessLinkedService extends LinkedService {
8655
9129
  userName?: any;
8656
9130
  /** Password for Basic authentication. */
8657
9131
  password?: SecretBaseUnion;
8658
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
8659
- encryptedCredential?: any;
9132
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
9133
+ encryptedCredential?: string;
8660
9134
  }
8661
9135
 
8662
9136
  /** A copy activity Microsoft Access sink. */
@@ -8701,6 +9175,8 @@ export declare interface MongoDbAtlasLinkedService extends LinkedService {
8701
9175
  connectionString: any;
8702
9176
  /** The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string). */
8703
9177
  database: any;
9178
+ /** The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string). */
9179
+ driverVersion?: any;
8704
9180
  }
8705
9181
 
8706
9182
  /** A copy activity MongoDB Atlas sink. */
@@ -8781,8 +9257,8 @@ export declare interface MongoDbLinkedService extends LinkedService {
8781
9257
  enableSsl?: any;
8782
9258
  /** Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean). */
8783
9259
  allowSelfSignedServerCert?: any;
8784
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
8785
- encryptedCredential?: any;
9260
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
9261
+ encryptedCredential?: string;
8786
9262
  }
8787
9263
 
8788
9264
  /** A copy activity source for a MongoDB database. */
@@ -8851,12 +9327,12 @@ export declare type MultiplePipelineTriggerUnion = MultiplePipelineTrigger | Sch
8851
9327
  export declare interface MySqlLinkedService extends LinkedService {
8852
9328
  /** Polymorphic discriminator, which specifies the different types this object can be */
8853
9329
  type: "MySql";
8854
- /** The connection string. */
9330
+ /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
8855
9331
  connectionString: any;
8856
9332
  /** The Azure key vault secret reference of password in connection string. */
8857
9333
  password?: AzureKeyVaultSecretReference;
8858
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
8859
- encryptedCredential?: any;
9334
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
9335
+ encryptedCredential?: string;
8860
9336
  }
8861
9337
 
8862
9338
  /** A copy activity source for MySQL databases. */
@@ -8883,8 +9359,8 @@ export declare interface NetezzaLinkedService extends LinkedService {
8883
9359
  connectionString?: any;
8884
9360
  /** The Azure key vault secret reference of password in connection string. */
8885
9361
  pwd?: AzureKeyVaultSecretReference;
8886
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
8887
- encryptedCredential?: any;
9362
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
9363
+ encryptedCredential?: string;
8888
9364
  }
8889
9365
 
8890
9366
  /**
@@ -9014,8 +9490,8 @@ export declare interface ODataLinkedService extends LinkedService {
9014
9490
  servicePrincipalEmbeddedCert?: SecretBaseUnion;
9015
9491
  /** Specify the password of your certificate if your certificate has a password and you are using AadServicePrincipal authentication. Type: string (or Expression with resultType string). */
9016
9492
  servicePrincipalEmbeddedCertPassword?: SecretBaseUnion;
9017
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
9018
- encryptedCredential?: any;
9493
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
9494
+ encryptedCredential?: string;
9019
9495
  }
9020
9496
 
9021
9497
  /** The Open Data Protocol (OData) resource dataset. */
@@ -9042,7 +9518,7 @@ export declare interface ODataSource extends CopySource {
9042
9518
  export declare interface OdbcLinkedService extends LinkedService {
9043
9519
  /** Polymorphic discriminator, which specifies the different types this object can be */
9044
9520
  type: "Odbc";
9045
- /** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, SecureString or AzureKeyVaultSecretReference. */
9521
+ /** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, or SecureString, or AzureKeyVaultSecretReference, or Expression with resultType string. */
9046
9522
  connectionString: any;
9047
9523
  /** Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string). */
9048
9524
  authenticationType?: any;
@@ -9052,8 +9528,8 @@ export declare interface OdbcLinkedService extends LinkedService {
9052
9528
  userName?: any;
9053
9529
  /** Password for Basic authentication. */
9054
9530
  password?: SecretBaseUnion;
9055
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
9056
- encryptedCredential?: any;
9531
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
9532
+ encryptedCredential?: string;
9057
9533
  }
9058
9534
 
9059
9535
  /** A copy activity ODBC sink. */
@@ -9102,8 +9578,8 @@ export declare interface Office365LinkedService extends LinkedService {
9102
9578
  servicePrincipalId: any;
9103
9579
  /** Specify the application's key. */
9104
9580
  servicePrincipalKey: SecretBaseUnion;
9105
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
9106
- encryptedCredential?: any;
9581
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
9582
+ encryptedCredential?: string;
9107
9583
  }
9108
9584
 
9109
9585
  /** A copy activity source for an Office 365 service. */
@@ -9120,7 +9596,7 @@ export declare interface Office365Source extends CopySource {
9120
9596
  startTime?: any;
9121
9597
  /** End time of the requested range for this dataset. Type: string (or Expression with resultType string). */
9122
9598
  endTime?: any;
9123
- /** The columns to be read out from the Office 365 table. Type: array of objects (or Expression with resultType array of objects). Example: [ { "name": "Id" }, { "name": "CreatedDateTime" } ] */
9599
+ /** The columns to be read out from the Office 365 table. Type: array of objects (or Expression with resultType array of objects). itemType: OutputColumn. Example: [ { "name": "Id" }, { "name": "CreatedDateTime" } ] */
9124
9600
  outputColumns?: any;
9125
9601
  }
9126
9602
 
@@ -9249,8 +9725,8 @@ export declare interface OracleCloudStorageLinkedService extends LinkedService {
9249
9725
  secretAccessKey?: SecretBaseUnion;
9250
9726
  /** This value specifies the endpoint to access with the Oracle Cloud Storage Connector. This is an optional property; change it only if you want to try a different service endpoint or want to switch between https and http. Type: string (or Expression with resultType string). */
9251
9727
  serviceUrl?: any;
9252
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
9253
- encryptedCredential?: any;
9728
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
9729
+ encryptedCredential?: string;
9254
9730
  }
9255
9731
 
9256
9732
  /** The location of Oracle Cloud Storage dataset. */
@@ -9277,8 +9753,8 @@ export declare interface OracleCloudStorageReadSettings extends StoreReadSetting
9277
9753
  prefix?: any;
9278
9754
  /** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
9279
9755
  fileListPath?: any;
9280
- /** Indicates whether to enable partition discovery. */
9281
- enablePartitionDiscovery?: boolean;
9756
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
9757
+ enablePartitionDiscovery?: any;
9282
9758
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
9283
9759
  partitionRootPath?: any;
9284
9760
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -9297,8 +9773,8 @@ export declare interface OracleLinkedService extends LinkedService {
9297
9773
  connectionString: any;
9298
9774
  /** The Azure key vault secret reference of password in connection string. */
9299
9775
  password?: AzureKeyVaultSecretReference;
9300
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
9301
- encryptedCredential?: any;
9776
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
9777
+ encryptedCredential?: string;
9302
9778
  }
9303
9779
 
9304
9780
  /**
@@ -9340,8 +9816,8 @@ export declare interface OracleServiceCloudLinkedService extends LinkedService {
9340
9816
  useHostVerification?: any;
9341
9817
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean). */
9342
9818
  usePeerVerification?: any;
9343
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
9344
- encryptedCredential?: any;
9819
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
9820
+ encryptedCredential?: string;
9345
9821
  }
9346
9822
 
9347
9823
  /** Oracle Service Cloud dataset. */
@@ -9454,6 +9930,12 @@ export declare interface OrcWriteSettings extends FormatWriteSettings {
9454
9930
  fileNamePrefix?: any;
9455
9931
  }
9456
9932
 
9933
+ /** The columns to be read out from the Office 365 table. */
9934
+ export declare interface OutputColumn {
9935
+ /** Name of the table column. Type: string. */
9936
+ name?: string;
9937
+ }
9938
+
9457
9939
  /** Package store for the SSIS integration runtime. */
9458
9940
  export declare interface PackageStore {
9459
9941
  /** The name of the package store */
@@ -9501,6 +9983,14 @@ export declare interface ParquetFormat extends DatasetStorageFormat {
9501
9983
  type: "ParquetFormat";
9502
9984
  }
9503
9985
 
9986
+ /** Parquet read settings. */
9987
+ export declare interface ParquetReadSettings extends FormatReadSettings {
9988
+ /** Polymorphic discriminator, which specifies the different types this object can be */
9989
+ type: "ParquetReadSettings";
9990
+ /** Compression settings. */
9991
+ compressionProperties?: CompressionReadSettingsUnion;
9992
+ }
9993
+
9504
9994
  /** A copy activity Parquet sink. */
9505
9995
  export declare interface ParquetSink extends CopySink {
9506
9996
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -9517,6 +10007,8 @@ export declare interface ParquetSource extends CopySource {
9517
10007
  type: "ParquetSource";
9518
10008
  /** Parquet store settings. */
9519
10009
  storeSettings?: StoreReadSettingsUnion;
10010
+ /** Parquet format settings. */
10011
+ formatSettings?: ParquetReadSettings;
9520
10012
  /** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
9521
10013
  additionalColumns?: any;
9522
10014
  }
@@ -9535,7 +10027,7 @@ export declare interface ParquetWriteSettings extends FormatWriteSettings {
9535
10027
  export declare interface PaypalLinkedService extends LinkedService {
9536
10028
  /** Polymorphic discriminator, which specifies the different types this object can be */
9537
10029
  type: "Paypal";
9538
- /** The URL of the PayPal instance. (i.e. api.sandbox.paypal.com) */
10030
+ /** The URL of the PayPal instance. (i.e. api.sandbox.paypal.com) */
9539
10031
  host: any;
9540
10032
  /** The client ID associated with your PayPal application. */
9541
10033
  clientId: any;
@@ -9547,8 +10039,8 @@ export declare interface PaypalLinkedService extends LinkedService {
9547
10039
  useHostVerification?: any;
9548
10040
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
9549
10041
  usePeerVerification?: any;
9550
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
9551
- encryptedCredential?: any;
10042
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
10043
+ encryptedCredential?: string;
9552
10044
  }
9553
10045
 
9554
10046
  /** Paypal Service dataset. */
@@ -9604,8 +10096,8 @@ export declare interface PhoenixLinkedService extends LinkedService {
9604
10096
  allowHostNameCNMismatch?: any;
9605
10097
  /** Specifies whether to allow self-signed certificates from the server. The default value is false. */
9606
10098
  allowSelfSignedServerCert?: any;
9607
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
9608
- encryptedCredential?: any;
10099
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
10100
+ encryptedCredential?: string;
9609
10101
  }
9610
10102
 
9611
10103
  /** Phoenix server dataset. */
@@ -9640,6 +10132,10 @@ export declare interface PipelineExternalComputeScaleProperties {
9640
10132
  [property: string]: any;
9641
10133
  /** Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity. */
9642
10134
  timeToLive?: number;
10135
+ /** Number of the pipeline nodes, which should be greater than 0 and less than 11. */
10136
+ numberOfPipelineNodes?: number;
10137
+ /** Number of the the external nodes, which should be greater than 0 and less than 11. */
10138
+ numberOfExternalNodes?: number;
9643
10139
  }
9644
10140
 
9645
10141
  /** The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level. */
@@ -9989,12 +10485,12 @@ export declare type PolybaseSettingsRejectType = string;
9989
10485
  export declare interface PostgreSqlLinkedService extends LinkedService {
9990
10486
  /** Polymorphic discriminator, which specifies the different types this object can be */
9991
10487
  type: "PostgreSql";
9992
- /** The connection string. */
10488
+ /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
9993
10489
  connectionString: any;
9994
10490
  /** The Azure key vault secret reference of password in connection string. */
9995
10491
  password?: AzureKeyVaultSecretReference;
9996
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
9997
- encryptedCredential?: any;
10492
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
10493
+ encryptedCredential?: string;
9998
10494
  }
9999
10495
 
10000
10496
  /** A copy activity source for PostgreSQL databases. */
@@ -10077,8 +10573,8 @@ export declare interface PrestoLinkedService extends LinkedService {
10077
10573
  allowSelfSignedServerCert?: any;
10078
10574
  /** The local time zone used by the connection. Valid values for this option are specified in the IANA Time Zone Database. The default value is the system time zone. */
10079
10575
  timeZoneID?: any;
10080
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
10081
- encryptedCredential?: any;
10576
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
10577
+ encryptedCredential?: string;
10082
10578
  }
10083
10579
 
10084
10580
  /** Presto server dataset. */
@@ -10301,8 +10797,8 @@ export declare interface QuickbaseLinkedService extends LinkedService {
10301
10797
  url: any;
10302
10798
  /** The user token for the Quickbase source. */
10303
10799
  userToken: SecretBaseUnion;
10304
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
10305
- encryptedCredential?: any;
10800
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
10801
+ encryptedCredential?: string;
10306
10802
  }
10307
10803
 
10308
10804
  /** QuickBooks server linked service. */
@@ -10325,8 +10821,8 @@ export declare interface QuickBooksLinkedService extends LinkedService {
10325
10821
  accessTokenSecret?: SecretBaseUnion;
10326
10822
  /** Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. */
10327
10823
  useEncryptedEndpoints?: any;
10328
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
10329
- encryptedCredential?: any;
10824
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
10825
+ encryptedCredential?: string;
10330
10826
  }
10331
10827
 
10332
10828
  /** QuickBooks server dataset. */
@@ -10492,8 +10988,8 @@ export declare interface ResponsysLinkedService extends LinkedService {
10492
10988
  useHostVerification?: any;
10493
10989
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean). */
10494
10990
  usePeerVerification?: any;
10495
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
10496
- encryptedCredential?: any;
10991
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
10992
+ encryptedCredential?: string;
10497
10993
  }
10498
10994
 
10499
10995
  /** Responsys dataset. */
@@ -10522,10 +11018,14 @@ export declare interface RestResourceDataset extends Dataset {
10522
11018
  requestMethod?: any;
10523
11019
  /** The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string). */
10524
11020
  requestBody?: any;
10525
- /** The additional HTTP headers in the request to the RESTful API. Type: string (or Expression with resultType string). */
10526
- additionalHeaders?: any;
10527
- /** The pagination rules to compose next page requests. Type: string (or Expression with resultType string). */
10528
- paginationRules?: any;
11021
+ /** The additional HTTP headers in the request to the RESTful API. */
11022
+ additionalHeaders?: {
11023
+ [propertyName: string]: any;
11024
+ };
11025
+ /** The pagination rules to compose next page requests. */
11026
+ paginationRules?: {
11027
+ [propertyName: string]: any;
11028
+ };
10529
11029
  }
10530
11030
 
10531
11031
  /**
@@ -10545,30 +11045,30 @@ export declare type RestServiceAuthenticationType = string;
10545
11045
  export declare interface RestServiceLinkedService extends LinkedService {
10546
11046
  /** Polymorphic discriminator, which specifies the different types this object can be */
10547
11047
  type: "RestService";
10548
- /** The base URL of the REST service. */
11048
+ /** The base URL of the REST service. Type: string (or Expression with resultType string). */
10549
11049
  url: any;
10550
11050
  /** Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean). */
10551
11051
  enableServerCertificateValidation?: any;
10552
11052
  /** Type of authentication used to connect to the REST service. */
10553
11053
  authenticationType: RestServiceAuthenticationType;
10554
- /** The user name used in Basic authentication type. */
11054
+ /** The user name used in Basic authentication type. Type: string (or Expression with resultType string). */
10555
11055
  userName?: any;
10556
11056
  /** The password used in Basic authentication type. */
10557
11057
  password?: SecretBaseUnion;
10558
11058
  /** The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object). */
10559
11059
  authHeaders?: any;
10560
- /** The application's client ID used in AadServicePrincipal authentication type. */
11060
+ /** The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string). */
10561
11061
  servicePrincipalId?: any;
10562
11062
  /** The application's key used in AadServicePrincipal authentication type. */
10563
11063
  servicePrincipalKey?: SecretBaseUnion;
10564
- /** The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. */
11064
+ /** The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. Type: string (or Expression with resultType string). */
10565
11065
  tenant?: any;
10566
11066
  /** Indicates the azure cloud type of the service principle auth. Allowed values are AzurePublic, AzureChina, AzureUsGovernment, AzureGermany. Default value is the data factory regions’ cloud type. Type: string (or Expression with resultType string). */
10567
11067
  azureCloudType?: any;
10568
- /** The resource you are requesting authorization to use. */
11068
+ /** The resource you are requesting authorization to use. Type: string (or Expression with resultType string). */
10569
11069
  aadResourceId?: any;
10570
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
10571
- encryptedCredential?: any;
11070
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
11071
+ encryptedCredential?: string;
10572
11072
  /** The credential reference containing authentication information. */
10573
11073
  credential?: CredentialReference;
10574
11074
  /** The client ID associated with your application. Type: string (or Expression with resultType string). */
@@ -10732,8 +11232,8 @@ export declare interface SalesforceLinkedService extends LinkedService {
10732
11232
  securityToken?: SecretBaseUnion;
10733
11233
  /** The Salesforce API version used in ADF. Type: string (or Expression with resultType string). */
10734
11234
  apiVersion?: any;
10735
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
10736
- encryptedCredential?: any;
11235
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
11236
+ encryptedCredential?: string;
10737
11237
  }
10738
11238
 
10739
11239
  /** Salesforce Marketing Cloud linked service. */
@@ -10752,8 +11252,8 @@ export declare interface SalesforceMarketingCloudLinkedService extends LinkedSer
10752
11252
  useHostVerification?: any;
10753
11253
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. Type: boolean (or Expression with resultType boolean). */
10754
11254
  usePeerVerification?: any;
10755
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
10756
- encryptedCredential?: any;
11255
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
11256
+ encryptedCredential?: string;
10757
11257
  }
10758
11258
 
10759
11259
  /** Salesforce Marketing Cloud dataset. */
@@ -10796,8 +11296,8 @@ export declare interface SalesforceServiceCloudLinkedService extends LinkedServi
10796
11296
  apiVersion?: any;
10797
11297
  /** Extended properties appended to the connection string. Type: string (or Expression with resultType string). */
10798
11298
  extendedProperties?: any;
10799
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
10800
- encryptedCredential?: any;
11299
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
11300
+ encryptedCredential?: string;
10801
11301
  }
10802
11302
 
10803
11303
  /** The Salesforce Service Cloud object dataset. */
@@ -10826,8 +11326,8 @@ export declare interface SalesforceServiceCloudSource extends CopySource {
10826
11326
  type: "SalesforceServiceCloudSource";
10827
11327
  /** Database query. Type: string (or Expression with resultType string). */
10828
11328
  query?: any;
10829
- /** The read behavior for the operation. Default is Query. */
10830
- readBehavior?: SalesforceSourceReadBehavior;
11329
+ /** The read behavior for the operation. Default is Query. Allowed values: Query/QueryAll. Type: string (or Expression with resultType string). */
11330
+ readBehavior?: any;
10831
11331
  /** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
10832
11332
  additionalColumns?: any;
10833
11333
  }
@@ -10860,8 +11360,8 @@ export declare interface SalesforceSource extends TabularSource {
10860
11360
  type: "SalesforceSource";
10861
11361
  /** Database query. Type: string (or Expression with resultType string). */
10862
11362
  query?: any;
10863
- /** The read behavior for the operation. Default is Query. */
10864
- readBehavior?: SalesforceSourceReadBehavior;
11363
+ /** The read behavior for the operation. Default is Query. Allowed values: Query/QueryAll. Type: string (or Expression with resultType string). */
11364
+ readBehavior?: any;
10865
11365
  }
10866
11366
 
10867
11367
  /**
@@ -10894,8 +11394,8 @@ export declare interface SapBWLinkedService extends LinkedService {
10894
11394
  userName?: any;
10895
11395
  /** Password to access the SAP BW server. */
10896
11396
  password?: SecretBaseUnion;
10897
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
10898
- encryptedCredential?: any;
11397
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
11398
+ encryptedCredential?: string;
10899
11399
  }
10900
11400
 
10901
11401
  /** A copy activity source for SapBW server via MDX. */
@@ -10916,8 +11416,8 @@ export declare interface SapCloudForCustomerLinkedService extends LinkedService
10916
11416
  username?: any;
10917
11417
  /** The password for Basic authentication. */
10918
11418
  password?: SecretBaseUnion;
10919
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string (or Expression with resultType string). */
10920
- encryptedCredential?: any;
11419
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string. */
11420
+ encryptedCredential?: string;
10921
11421
  }
10922
11422
 
10923
11423
  /** The path of the SAP Cloud for Customer OData entity. */
@@ -10963,12 +11463,12 @@ export declare interface SapEccLinkedService extends LinkedService {
10963
11463
  /** Polymorphic discriminator, which specifies the different types this object can be */
10964
11464
  type: "SapEcc";
10965
11465
  /** The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string). */
10966
- url: string;
11466
+ url: any;
10967
11467
  /** The username for Basic authentication. Type: string (or Expression with resultType string). */
10968
- username?: string;
11468
+ username?: any;
10969
11469
  /** The password for Basic authentication. */
10970
11470
  password?: SecretBaseUnion;
10971
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string (or Expression with resultType string). */
11471
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Either encryptedCredential or username/password must be provided. Type: string. */
10972
11472
  encryptedCredential?: string;
10973
11473
  }
10974
11474
 
@@ -11014,8 +11514,8 @@ export declare interface SapHanaLinkedService extends LinkedService {
11014
11514
  userName?: any;
11015
11515
  /** Password to access the SAP HANA server. */
11016
11516
  password?: SecretBaseUnion;
11017
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
11018
- encryptedCredential?: any;
11517
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
11518
+ encryptedCredential?: string;
11019
11519
  }
11020
11520
 
11021
11521
  /**
@@ -11097,8 +11597,8 @@ export declare interface SapOdpLinkedService extends LinkedService {
11097
11597
  logonGroup?: any;
11098
11598
  /** The subscriber name. Type: string (or Expression with resultType string). */
11099
11599
  subscriberName?: any;
11100
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
11101
- encryptedCredential?: any;
11600
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
11601
+ encryptedCredential?: string;
11102
11602
  }
11103
11603
 
11104
11604
  /** SAP ODP Resource properties. */
@@ -11149,8 +11649,8 @@ export declare interface SapOpenHubLinkedService extends LinkedService {
11149
11649
  messageServerService?: any;
11150
11650
  /** The Logon Group for the SAP System. Type: string (or Expression with resultType string). */
11151
11651
  logonGroup?: any;
11152
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
11153
- encryptedCredential?: any;
11652
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
11653
+ encryptedCredential?: string;
11154
11654
  }
11155
11655
 
11156
11656
  /** A copy activity source for SAP Business Warehouse Open Hub Destination source. */
@@ -11213,8 +11713,8 @@ export declare interface SapTableLinkedService extends LinkedService {
11213
11713
  sncQop?: any;
11214
11714
  /** The Logon Group for the SAP System. Type: string (or Expression with resultType string). */
11215
11715
  logonGroup?: any;
11216
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
11217
- encryptedCredential?: any;
11716
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
11717
+ encryptedCredential?: string;
11218
11718
  }
11219
11719
 
11220
11720
  /**
@@ -11341,7 +11841,7 @@ export declare interface ScriptActivityParameter {
11341
11841
  name?: any;
11342
11842
  /** The type of the parameter. */
11343
11843
  type?: ScriptActivityParameterType;
11344
- /** The value of the parameter. */
11844
+ /** The value of the parameter. Type: string (or Expression with resultType string). */
11345
11845
  value?: any;
11346
11846
  /** The direction of the parameter. */
11347
11847
  direction?: ScriptActivityParameterDirection;
@@ -11416,6 +11916,14 @@ export declare interface SecretBase {
11416
11916
 
11417
11917
  export declare type SecretBaseUnion = SecretBase | SecureString | AzureKeyVaultSecretReference;
11418
11918
 
11919
+ /** Execution policy for an activity that supports secure input and output. */
11920
+ export declare interface SecureInputOutputPolicy {
11921
+ /** When set to true, Input from activity is considered as secure and will not be logged to monitoring. */
11922
+ secureInput?: boolean;
11923
+ /** When set to true, Output from activity is considered as secure and will not be logged to monitoring. */
11924
+ secureOutput?: boolean;
11925
+ }
11926
+
11419
11927
  /** Azure Data Factory secure string definition. The string value will be masked with asterisks '*' during Get or List API calls. */
11420
11928
  export declare interface SecureString extends SecretBase {
11421
11929
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -11440,6 +11948,8 @@ export declare interface SelfHostedIntegrationRuntime extends IntegrationRuntime
11440
11948
  type: "SelfHosted";
11441
11949
  /** The base definition of a linked integration runtime. */
11442
11950
  linkedInfo?: LinkedIntegrationRuntimeTypeUnion;
11951
+ /** An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay. */
11952
+ selfContainedInteractiveAuthoringEnabled?: boolean;
11443
11953
  }
11444
11954
 
11445
11955
  /** Properties of Self-hosted integration runtime node. */
@@ -11635,6 +12145,11 @@ export declare interface SelfHostedIntegrationRuntimeStatus extends IntegrationR
11635
12145
  * NOTE: This property will not be serialized. It can only be populated by the server.
11636
12146
  */
11637
12147
  readonly autoUpdateETA?: Date;
12148
+ /**
12149
+ * An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
12150
+ * NOTE: This property will not be serialized. It can only be populated by the server.
12151
+ */
12152
+ readonly selfContainedInteractiveAuthoringEnabled?: boolean;
11638
12153
  }
11639
12154
 
11640
12155
  /**
@@ -11669,8 +12184,8 @@ export declare interface ServiceNowLinkedService extends LinkedService {
11669
12184
  useHostVerification?: any;
11670
12185
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
11671
12186
  usePeerVerification?: any;
11672
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
11673
- encryptedCredential?: any;
12187
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
12188
+ encryptedCredential?: string;
11674
12189
  }
11675
12190
 
11676
12191
  /** ServiceNow server dataset. */
@@ -11715,10 +12230,14 @@ export declare type ServicePrincipalCredentialType = string;
11715
12230
  export declare interface SetVariableActivity extends ControlActivity {
11716
12231
  /** Polymorphic discriminator, which specifies the different types this object can be */
11717
12232
  type: "SetVariable";
12233
+ /** Activity policy. */
12234
+ policy?: SecureInputOutputPolicy;
11718
12235
  /** Name of the variable whose value needs to be set. */
11719
12236
  variableName?: string;
11720
- /** Value to be set. Could be a static value or Expression */
12237
+ /** Value to be set. Could be a static value or Expression. */
11721
12238
  value?: any;
12239
+ /** If set to true, it sets the pipeline run return value. */
12240
+ setSystemVariable?: boolean;
11722
12241
  }
11723
12242
 
11724
12243
  /**
@@ -11748,8 +12267,8 @@ export declare interface SftpReadSettings extends StoreReadSettings {
11748
12267
  wildcardFolderPath?: any;
11749
12268
  /** Sftp wildcardFileName. Type: string (or Expression with resultType string). */
11750
12269
  wildcardFileName?: any;
11751
- /** Indicates whether to enable partition discovery. */
11752
- enablePartitionDiscovery?: boolean;
12270
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
12271
+ enablePartitionDiscovery?: any;
11753
12272
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
11754
12273
  partitionRootPath?: any;
11755
12274
  /** Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string). */
@@ -11778,8 +12297,8 @@ export declare interface SftpServerLinkedService extends LinkedService {
11778
12297
  userName?: any;
11779
12298
  /** Password to logon the SFTP server for Basic authentication. */
11780
12299
  password?: SecretBaseUnion;
11781
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
11782
- encryptedCredential?: any;
12300
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
12301
+ encryptedCredential?: string;
11783
12302
  /** The SSH private key file path for SshPublicKey authentication. Only valid for on-premises copy. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. Type: string (or Expression with resultType string). */
11784
12303
  privateKeyPath?: any;
11785
12304
  /** Base64 encoded SSH private key content for SshPublicKey authentication. For on-premises copy with SshPublicKey authentication, either PrivateKeyPath or PrivateKeyContent should be specified. SSH private key should be OpenSSH format. */
@@ -11814,8 +12333,8 @@ export declare interface SharePointOnlineListLinkedService extends LinkedService
11814
12333
  servicePrincipalId: any;
11815
12334
  /** The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string). */
11816
12335
  servicePrincipalKey: SecretBaseUnion;
11817
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
11818
- encryptedCredential?: any;
12336
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
12337
+ encryptedCredential?: string;
11819
12338
  }
11820
12339
 
11821
12340
  /** The sharepoint online list resource dataset. */
@@ -11850,8 +12369,8 @@ export declare interface ShopifyLinkedService extends LinkedService {
11850
12369
  useHostVerification?: any;
11851
12370
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
11852
12371
  usePeerVerification?: any;
11853
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
11854
- encryptedCredential?: any;
12372
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
12373
+ encryptedCredential?: string;
11855
12374
  }
11856
12375
 
11857
12376
  /** Shopify Service dataset. */
@@ -11884,8 +12403,8 @@ export declare interface SmartsheetLinkedService extends LinkedService {
11884
12403
  type: "Smartsheet";
11885
12404
  /** The api token for the Smartsheet source. */
11886
12405
  apiToken: SecretBaseUnion;
11887
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
11888
- encryptedCredential?: any;
12406
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
12407
+ encryptedCredential?: string;
11889
12408
  }
11890
12409
 
11891
12410
  /** The snowflake dataset. */
@@ -11934,8 +12453,8 @@ export declare interface SnowflakeLinkedService extends LinkedService {
11934
12453
  connectionString: any;
11935
12454
  /** The Azure key vault secret reference of password in connection string. */
11936
12455
  password?: AzureKeyVaultSecretReference;
11937
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
11938
- encryptedCredential?: any;
12456
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
12457
+ encryptedCredential?: string;
11939
12458
  }
11940
12459
 
11941
12460
  /** A copy activity snowflake sink. */
@@ -12026,8 +12545,8 @@ export declare interface SparkLinkedService extends LinkedService {
12026
12545
  allowHostNameCNMismatch?: any;
12027
12546
  /** Specifies whether to allow self-signed certificates from the server. The default value is false. */
12028
12547
  allowSelfSignedServerCert?: any;
12029
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
12030
- encryptedCredential?: any;
12548
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
12549
+ encryptedCredential?: string;
12031
12550
  }
12032
12551
 
12033
12552
  /** Spark Server dataset. */
@@ -12085,7 +12604,7 @@ export declare type SqlAlwaysEncryptedAkvAuthType = string;
12085
12604
 
12086
12605
  /** Sql always encrypted properties. */
12087
12606
  export declare interface SqlAlwaysEncryptedProperties {
12088
- /** Sql always encrypted AKV authentication type. Type: string (or Expression with resultType string). */
12607
+ /** Sql always encrypted AKV authentication type. Type: string. */
12089
12608
  alwaysEncryptedAkvAuthType: SqlAlwaysEncryptedAkvAuthType;
12090
12609
  /** The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string). */
12091
12610
  servicePrincipalId?: any;
@@ -12129,6 +12648,8 @@ export declare interface SqlDWSource extends TabularSource {
12129
12648
  sqlReaderStoredProcedureName?: any;
12130
12649
  /** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". Type: object (or Expression with resultType object), itemType: StoredProcedureParameter. */
12131
12650
  storedProcedureParameters?: any;
12651
+ /** Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string). */
12652
+ isolationLevel?: any;
12132
12653
  /** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
12133
12654
  partitionOption?: any;
12134
12655
  /** The settings that will be leveraged for Sql source partitioning. */
@@ -12187,6 +12708,8 @@ export declare interface SqlMISource extends TabularSource {
12187
12708
  sqlReaderStoredProcedureName?: any;
12188
12709
  /** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
12189
12710
  storedProcedureParameters?: any;
12711
+ /** Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string). */
12712
+ isolationLevel?: any;
12190
12713
  /** Which additional types to produce. */
12191
12714
  produceAdditionalTypes?: any;
12192
12715
  /** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
@@ -12226,8 +12749,8 @@ export declare interface SqlServerLinkedService extends LinkedService {
12226
12749
  userName?: any;
12227
12750
  /** The on-premises Windows authentication password. */
12228
12751
  password?: SecretBaseUnion;
12229
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
12230
- encryptedCredential?: any;
12752
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
12753
+ encryptedCredential?: string;
12231
12754
  /** Sql always encrypted properties. */
12232
12755
  alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
12233
12756
  }
@@ -12266,6 +12789,8 @@ export declare interface SqlServerSource extends TabularSource {
12266
12789
  sqlReaderStoredProcedureName?: any;
12267
12790
  /** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
12268
12791
  storedProcedureParameters?: any;
12792
+ /** Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string). */
12793
+ isolationLevel?: any;
12269
12794
  /** Which additional types to produce. */
12270
12795
  produceAdditionalTypes?: any;
12271
12796
  /** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
@@ -12365,7 +12890,7 @@ export declare interface SquareLinkedService extends LinkedService {
12365
12890
  type: "Square";
12366
12891
  /** Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object. */
12367
12892
  connectionProperties?: any;
12368
- /** The URL of the Square instance. (i.e. mystore.mysquare.com) */
12893
+ /** The URL of the Square instance. (i.e. mystore.mysquare.com) */
12369
12894
  host?: any;
12370
12895
  /** The client ID associated with your Square application. */
12371
12896
  clientId?: any;
@@ -12379,8 +12904,8 @@ export declare interface SquareLinkedService extends LinkedService {
12379
12904
  useHostVerification?: any;
12380
12905
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
12381
12906
  usePeerVerification?: any;
12382
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
12383
- encryptedCredential?: any;
12907
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
12908
+ encryptedCredential?: string;
12384
12909
  }
12385
12910
 
12386
12911
  /** Square Service dataset. */
@@ -12401,9 +12926,9 @@ export declare interface SquareSource extends TabularSource {
12401
12926
 
12402
12927
  /** SSIS access credential. */
12403
12928
  export declare interface SsisAccessCredential {
12404
- /** Domain for windows authentication. */
12929
+ /** Domain for windows authentication. Type: string (or Expression with resultType string). */
12405
12930
  domain: any;
12406
- /** UseName for windows authentication. */
12931
+ /** UseName for windows authentication. Type: string (or Expression with resultType string). */
12407
12932
  userName: any;
12408
12933
  /** Password for windows authentication. */
12409
12934
  password: SecretBaseUnion;
@@ -12445,9 +12970,9 @@ export declare interface SsisEnvironmentReference {
12445
12970
 
12446
12971
  /** SSIS package execution credential. */
12447
12972
  export declare interface SsisExecutionCredential {
12448
- /** Domain for windows authentication. */
12973
+ /** Domain for windows authentication. Type: string (or Expression with resultType string). */
12449
12974
  domain: any;
12450
- /** UseName for windows authentication. */
12975
+ /** UseName for windows authentication. Type: string (or Expression with resultType string). */
12451
12976
  userName: any;
12452
12977
  /** Password for windows authentication. */
12453
12978
  password: SecureString;
@@ -12688,7 +13213,7 @@ export declare type StoredProcedureParameterType = string;
12688
13213
  /** Connector read setting. */
12689
13214
  export declare interface StoreReadSettings {
12690
13215
  /** Polymorphic discriminator, which specifies the different types this object can be */
12691
- type: "AzureBlobStorageReadSettings" | "AzureBlobFSReadSettings" | "AzureDataLakeStoreReadSettings" | "AmazonS3ReadSettings" | "FileServerReadSettings" | "AzureFileStorageReadSettings" | "AmazonS3CompatibleReadSettings" | "OracleCloudStorageReadSettings" | "GoogleCloudStorageReadSettings" | "FtpReadSettings" | "SftpReadSettings" | "HttpReadSettings" | "HdfsReadSettings";
13216
+ type: "AzureBlobStorageReadSettings" | "AzureBlobFSReadSettings" | "AzureDataLakeStoreReadSettings" | "AmazonS3ReadSettings" | "FileServerReadSettings" | "AzureFileStorageReadSettings" | "AmazonS3CompatibleReadSettings" | "OracleCloudStorageReadSettings" | "GoogleCloudStorageReadSettings" | "FtpReadSettings" | "SftpReadSettings" | "HttpReadSettings" | "HdfsReadSettings" | "LakeHouseReadSettings";
12692
13217
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
12693
13218
  [property: string]: any;
12694
13219
  /** The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). */
@@ -12697,12 +13222,12 @@ export declare interface StoreReadSettings {
12697
13222
  disableMetricsCollection?: any;
12698
13223
  }
12699
13224
 
12700
- export declare type StoreReadSettingsUnion = StoreReadSettings | AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings;
13225
+ export declare type StoreReadSettingsUnion = StoreReadSettings | AzureBlobStorageReadSettings | AzureBlobFSReadSettings | AzureDataLakeStoreReadSettings | AmazonS3ReadSettings | FileServerReadSettings | AzureFileStorageReadSettings | AmazonS3CompatibleReadSettings | OracleCloudStorageReadSettings | GoogleCloudStorageReadSettings | FtpReadSettings | SftpReadSettings | HttpReadSettings | HdfsReadSettings | LakeHouseReadSettings;
12701
13226
 
12702
13227
  /** Connector write settings. */
12703
13228
  export declare interface StoreWriteSettings {
12704
13229
  /** Polymorphic discriminator, which specifies the different types this object can be */
12705
- type: "SftpWriteSettings" | "AzureBlobStorageWriteSettings" | "AzureBlobFSWriteSettings" | "AzureDataLakeStoreWriteSettings" | "FileServerWriteSettings" | "AzureFileStorageWriteSettings";
13230
+ type: "SftpWriteSettings" | "AzureBlobStorageWriteSettings" | "AzureBlobFSWriteSettings" | "AzureDataLakeStoreWriteSettings" | "FileServerWriteSettings" | "AzureFileStorageWriteSettings" | "LakeHouseWriteSettings";
12706
13231
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
12707
13232
  [property: string]: any;
12708
13233
  /** The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). */
@@ -12713,7 +13238,7 @@ export declare interface StoreWriteSettings {
12713
13238
  copyBehavior?: any;
12714
13239
  }
12715
13240
 
12716
- export declare type StoreWriteSettingsUnion = StoreWriteSettings | SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings;
13241
+ export declare type StoreWriteSettingsUnion = StoreWriteSettings | SftpWriteSettings | AzureBlobStorageWriteSettings | AzureBlobFSWriteSettings | AzureDataLakeStoreWriteSettings | FileServerWriteSettings | AzureFileStorageWriteSettings | LakeHouseWriteSettings;
12717
13242
 
12718
13243
  /** Azure Data Factory nested resource, which belongs to a factory. */
12719
13244
  export declare interface SubResource {
@@ -12791,8 +13316,8 @@ export declare interface SybaseLinkedService extends LinkedService {
12791
13316
  username?: any;
12792
13317
  /** Password for authentication. */
12793
13318
  password?: SecretBaseUnion;
12794
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
12795
- encryptedCredential?: any;
13319
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
13320
+ encryptedCredential?: string;
12796
13321
  }
12797
13322
 
12798
13323
  /** A copy activity source for Sybase databases. */
@@ -12829,8 +13354,16 @@ export declare interface SynapseNotebookActivity extends ExecutionActivity {
12829
13354
  conf?: any;
12830
13355
  /** Number of core and memory to be used for driver allocated in the specified Spark pool for the session, which will be used for overriding 'driverCores' and 'driverMemory' of the notebook you provide. Type: string (or Expression with resultType string). */
12831
13356
  driverSize?: any;
12832
- /** Number of executors to launch for this session, which will override the 'numExecutors' of the notebook you provide. */
12833
- numExecutors?: number;
13357
+ /** Number of executors to launch for this session, which will override the 'numExecutors' of the notebook you provide. Type: integer (or Expression with resultType integer). */
13358
+ numExecutors?: any;
13359
+ /** The type of the spark config. */
13360
+ configurationType?: ConfigurationType;
13361
+ /** The spark configuration of the spark job. */
13362
+ targetSparkConfiguration?: SparkConfigurationParametrizationReference;
13363
+ /** Spark configuration property. */
13364
+ sparkConfig?: {
13365
+ [propertyName: string]: any;
13366
+ };
12834
13367
  }
12835
13368
 
12836
13369
  /** Synapse notebook reference type. */
@@ -12961,8 +13494,8 @@ export declare interface TeamDeskLinkedService extends LinkedService {
12961
13494
  password?: SecretBaseUnion;
12962
13495
  /** The api token for the TeamDesk source. */
12963
13496
  apiToken?: SecretBaseUnion;
12964
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
12965
- encryptedCredential?: any;
13497
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
13498
+ encryptedCredential?: string;
12966
13499
  }
12967
13500
 
12968
13501
  /**
@@ -12989,8 +13522,8 @@ export declare interface TeradataLinkedService extends LinkedService {
12989
13522
  username?: any;
12990
13523
  /** Password for authentication. */
12991
13524
  password?: SecretBaseUnion;
12992
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
12993
- encryptedCredential?: any;
13525
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
13526
+ encryptedCredential?: string;
12994
13527
  }
12995
13528
 
12996
13529
  /**
@@ -13566,7 +14099,7 @@ export declare interface TumblingWindowTriggerDependencyReference extends Trigge
13566
14099
  export declare interface TwilioLinkedService extends LinkedService {
13567
14100
  /** Polymorphic discriminator, which specifies the different types this object can be */
13568
14101
  type: "Twilio";
13569
- /** The Account SID of Twilio service. */
14102
+ /** The Account SID of Twilio service. Type: string (or Expression with resultType string). */
13570
14103
  userName: any;
13571
14104
  /** The auth token of Twilio service. */
13572
14105
  password: SecretBaseUnion;
@@ -13603,7 +14136,7 @@ export declare interface UntilActivity extends ControlActivity {
13603
14136
  type: "Until";
13604
14137
  /** An expression that would evaluate to Boolean. The loop will continue until this expression evaluates to true */
13605
14138
  expression: Expression;
13606
- /** Specifies the timeout for the activity to run. If there is no value specified, it takes the value of TimeSpan.FromDays(7) which is 1 week as default. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). */
14139
+ /** Specifies the timeout for the activity to run. If there is no value specified, it takes the value of TimeSpan.FromDays(7) which is 1 week as default. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). */
13607
14140
  timeout?: any;
13608
14141
  /** List of activities to execute. */
13609
14142
  activities: ActivityUnion[];
@@ -13688,8 +14221,8 @@ export declare interface VerticaLinkedService extends LinkedService {
13688
14221
  connectionString?: any;
13689
14222
  /** The Azure key vault secret reference of password in connection string. */
13690
14223
  pwd?: AzureKeyVaultSecretReference;
13691
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
13692
- encryptedCredential?: any;
14224
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
14225
+ encryptedCredential?: string;
13693
14226
  }
13694
14227
 
13695
14228
  /** A copy activity Vertica source. */
@@ -13716,7 +14249,7 @@ export declare interface VerticaTableDataset extends Dataset {
13716
14249
  export declare interface WaitActivity extends ControlActivity {
13717
14250
  /** Polymorphic discriminator, which specifies the different types this object can be */
13718
14251
  type: "Wait";
13719
- /** Duration in seconds. */
14252
+ /** Duration in seconds. Type: integer (or Expression with resultType integer). */
13720
14253
  waitTimeInSeconds: any;
13721
14254
  }
13722
14255
 
@@ -13815,6 +14348,8 @@ export declare interface WebClientCertificateAuthentication extends WebLinkedSer
13815
14348
  export declare interface WebHookActivity extends ControlActivity {
13816
14349
  /** Polymorphic discriminator, which specifies the different types this object can be */
13817
14350
  type: "WebHook";
14351
+ /** Activity policy. */
14352
+ policy?: SecureInputOutputPolicy;
13818
14353
  /** Rest API method for target endpoint. */
13819
14354
  method: WebHookActivityMethod;
13820
14355
  /** WebHook activity target endpoint and path. Type: string (or Expression with resultType string). */
@@ -13909,8 +14444,8 @@ export declare interface XeroLinkedService extends LinkedService {
13909
14444
  useHostVerification?: any;
13910
14445
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
13911
14446
  usePeerVerification?: any;
13912
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
13913
- encryptedCredential?: any;
14447
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
14448
+ encryptedCredential?: string;
13914
14449
  }
13915
14450
 
13916
14451
  /** Xero Service dataset. */
@@ -13995,8 +14530,8 @@ export declare interface ZendeskLinkedService extends LinkedService {
13995
14530
  password?: SecretBaseUnion;
13996
14531
  /** The api token for the Zendesk source. */
13997
14532
  apiToken?: SecretBaseUnion;
13998
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
13999
- encryptedCredential?: any;
14533
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
14534
+ encryptedCredential?: string;
14000
14535
  }
14001
14536
 
14002
14537
  /** The ZipDeflate compression read settings. */
@@ -14023,8 +14558,8 @@ export declare interface ZohoLinkedService extends LinkedService {
14023
14558
  useHostVerification?: any;
14024
14559
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
14025
14560
  usePeerVerification?: any;
14026
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
14027
- encryptedCredential?: any;
14561
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
14562
+ encryptedCredential?: string;
14028
14563
  }
14029
14564
 
14030
14565
  /** Zoho server dataset. */