@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
@@ -140,7 +140,8 @@ export type LinkedServiceUnion =
140
140
  | AzureFunctionLinkedService
141
141
  | SnowflakeLinkedService
142
142
  | SharePointOnlineListLinkedService
143
- | AzureSynapseArtifactsLinkedService;
143
+ | AzureSynapseArtifactsLinkedService
144
+ | LakeHouseLinkedService;
144
145
  export type DatasetUnion =
145
146
  | Dataset
146
147
  | AmazonS3Dataset
@@ -238,7 +239,8 @@ export type DatasetUnion =
238
239
  | GoogleAdWordsObjectDataset
239
240
  | SnowflakeDataset
240
241
  | SharePointOnlineListResourceDataset
241
- | AzureDatabricksDeltaLakeDataset;
242
+ | AzureDatabricksDeltaLakeDataset
243
+ | LakeHouseTableDataset;
242
244
  export type ActivityUnion =
243
245
  | Activity
244
246
  | ControlActivityUnion
@@ -277,7 +279,8 @@ export type DatasetLocationUnion =
277
279
  | FtpServerLocation
278
280
  | SftpLocation
279
281
  | HttpServerLocation
280
- | HdfsLocation;
282
+ | HdfsLocation
283
+ | LakeHouseLocation;
281
284
  export type DatasetStorageFormatUnion =
282
285
  | DatasetStorageFormat
283
286
  | TextFormat
@@ -314,7 +317,8 @@ export type StoreReadSettingsUnion =
314
317
  | FtpReadSettings
315
318
  | SftpReadSettings
316
319
  | HttpReadSettings
317
- | HdfsReadSettings;
320
+ | HdfsReadSettings
321
+ | LakeHouseReadSettings;
318
322
  export type StoreWriteSettingsUnion =
319
323
  | StoreWriteSettings
320
324
  | SftpWriteSettings
@@ -322,9 +326,11 @@ export type StoreWriteSettingsUnion =
322
326
  | AzureBlobFSWriteSettings
323
327
  | AzureDataLakeStoreWriteSettings
324
328
  | FileServerWriteSettings
325
- | AzureFileStorageWriteSettings;
329
+ | AzureFileStorageWriteSettings
330
+ | LakeHouseWriteSettings;
326
331
  export type FormatReadSettingsUnion =
327
332
  | FormatReadSettings
333
+ | ParquetReadSettings
328
334
  | DelimitedTextReadSettings
329
335
  | JsonReadSettings
330
336
  | XmlReadSettings
@@ -377,6 +383,7 @@ export type CopySourceUnion =
377
383
  | AzureDataLakeStoreSource
378
384
  | AzureBlobFSSource
379
385
  | HttpSource
386
+ | LakeHouseTableSource
380
387
  | SnowflakeSource
381
388
  | AzureDatabricksDeltaLakeSource
382
389
  | SharePointOnlineListSource;
@@ -420,7 +427,8 @@ export type CopySinkUnion =
420
427
  | SalesforceServiceCloudSink
421
428
  | MongoDbAtlasSink
422
429
  | MongoDbV2Sink
423
- | CosmosDbMongoDbApiSink;
430
+ | CosmosDbMongoDbApiSink
431
+ | LakeHouseTableSink;
424
432
  export type ExportSettingsUnion =
425
433
  | ExportSettings
426
434
  | SnowflakeExportCopyCommand
@@ -1359,7 +1367,8 @@ export interface LinkedService {
1359
1367
  | "AzureFunction"
1360
1368
  | "Snowflake"
1361
1369
  | "SharePointOnlineList"
1362
- | "AzureSynapseArtifacts";
1370
+ | "AzureSynapseArtifacts"
1371
+ | "LakeHouse";
1363
1372
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
1364
1373
  [property: string]: any;
1365
1374
  /** The integration runtime reference. */
@@ -1497,7 +1506,8 @@ export interface Dataset {
1497
1506
  | "GoogleAdWordsObject"
1498
1507
  | "SnowflakeTable"
1499
1508
  | "SharePointOnlineListResource"
1500
- | "AzureDatabricksDeltaLakeDataset";
1509
+ | "AzureDatabricksDeltaLakeDataset"
1510
+ | "LakeHouseTable";
1501
1511
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
1502
1512
  [property: string]: any;
1503
1513
  /** Dataset description. */
@@ -1591,6 +1601,10 @@ export interface Activity {
1591
1601
  name: string;
1592
1602
  /** Activity description. */
1593
1603
  description?: string;
1604
+ /** Activity state. This is an optional property and if not provided, the state will be Active by default. */
1605
+ state?: ActivityState;
1606
+ /** 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. */
1607
+ onInactiveMarkAs?: ActivityOnInactiveMarkAs;
1594
1608
  /** Activity depends on condition. */
1595
1609
  dependsOn?: ActivityDependency[];
1596
1610
  /** Activity user properties. */
@@ -2342,6 +2356,150 @@ export interface GlobalParameterListResponse {
2342
2356
  nextLink?: string;
2343
2357
  }
2344
2358
 
2359
+ /** A list of change data capture resources. */
2360
+ export interface ChangeDataCaptureListResponse {
2361
+ /** Lists all resources of type change data capture. */
2362
+ value: ChangeDataCaptureResource[];
2363
+ /** The link to the next page of results, if any remaining results exist. */
2364
+ nextLink?: string;
2365
+ }
2366
+
2367
+ /** The folder that this CDC is in. If not specified, CDC will appear at the root level. */
2368
+ export interface ChangeDataCaptureFolder {
2369
+ /** The name of the folder that this CDC is in. */
2370
+ name?: string;
2371
+ }
2372
+
2373
+ /** A object which contains list of tables and connection details for a source connection. */
2374
+ export interface MapperSourceConnectionsInfo {
2375
+ /** List of source tables for a source connection. */
2376
+ sourceEntities?: MapperTable[];
2377
+ /** Source connection details. */
2378
+ connection?: MapperConnection;
2379
+ }
2380
+
2381
+ /** CDC table details. */
2382
+ export interface MapperTable {
2383
+ /** Name of the table. */
2384
+ name?: string;
2385
+ /** List of columns for the source table. */
2386
+ schema?: MapperTableSchema[];
2387
+ /** List of name/value pairs for connection properties. */
2388
+ dslConnectorProperties?: MapperDslConnectorProperties[];
2389
+ }
2390
+
2391
+ /** Schema of a CDC table in terms of column names and their corresponding data types. */
2392
+ export interface MapperTableSchema {
2393
+ /** Name of the column. */
2394
+ name?: string;
2395
+ /** Data type of the column. */
2396
+ dataType?: string;
2397
+ }
2398
+
2399
+ /** Connector properties of a CDC table in terms of name / value pairs. */
2400
+ export interface MapperDslConnectorProperties {
2401
+ /** Name of the property. */
2402
+ name?: string;
2403
+ /** Value of the property. */
2404
+ value?: any;
2405
+ }
2406
+
2407
+ /** Source connection details. */
2408
+ export interface MapperConnection {
2409
+ /** Linked service reference. */
2410
+ linkedService?: LinkedServiceReference;
2411
+ /** Type of the linked service e.g.: AzureBlobFS. */
2412
+ linkedServiceType?: string;
2413
+ /** Type of connection via linked service or dataset. */
2414
+ type: ConnectionType;
2415
+ /** A boolean indicating whether linked service is of type inline dataset. Currently only inline datasets are supported. */
2416
+ isInlineDataset?: boolean;
2417
+ /** List of name/value pairs for connection properties. */
2418
+ commonDslConnectorProperties?: MapperDslConnectorProperties[];
2419
+ }
2420
+
2421
+ /** A object which contains list of tables and connection details for a target connection. */
2422
+ export interface MapperTargetConnectionsInfo {
2423
+ /** List of source tables for a target connection. */
2424
+ targetEntities?: MapperTable[];
2425
+ /** Source connection details. */
2426
+ connection?: MapperConnection;
2427
+ /** List of table mappings. */
2428
+ dataMapperMappings?: DataMapperMapping[];
2429
+ /** List of relationship info among the tables. */
2430
+ relationships?: any[];
2431
+ }
2432
+
2433
+ /** Source and target table mapping details. */
2434
+ export interface DataMapperMapping {
2435
+ /** Name of the target table */
2436
+ targetEntityName?: string;
2437
+ /** Name of the source table */
2438
+ sourceEntityName?: string;
2439
+ /** The connection reference for the source connection. */
2440
+ sourceConnectionReference?: MapperConnectionReference;
2441
+ /** This holds the user provided attribute mapping information. */
2442
+ attributeMappingInfo?: MapperAttributeMappings;
2443
+ /** This holds the source denormalization information used while joining multiple sources. */
2444
+ sourceDenormalizeInfo?: any;
2445
+ }
2446
+
2447
+ /** Source or target connection reference details. */
2448
+ export interface MapperConnectionReference {
2449
+ /** Name of the connection */
2450
+ connectionName?: string;
2451
+ /** Type of connection via linked service or dataset. */
2452
+ type?: ConnectionType;
2453
+ }
2454
+
2455
+ /** Attribute mapping details. */
2456
+ export interface MapperAttributeMappings {
2457
+ /** List of attribute mappings. */
2458
+ attributeMappings?: MapperAttributeMapping[];
2459
+ }
2460
+
2461
+ /** Source and target column mapping details. */
2462
+ export interface MapperAttributeMapping {
2463
+ /** Name of the target column. */
2464
+ name?: string;
2465
+ /** Type of the CDC attribute mapping. Note: 'Advanced' mapping type is also saved as 'Derived'. */
2466
+ type?: MappingType;
2467
+ /** Name of the function used for 'Aggregate' and 'Derived' (except 'Advanced') type mapping. */
2468
+ functionName?: string;
2469
+ /** Expression used for 'Aggregate' and 'Derived' type mapping. */
2470
+ expression?: string;
2471
+ /** Reference of the source column used in the mapping. It is used for 'Direct' mapping type only. */
2472
+ attributeReference?: MapperAttributeReference;
2473
+ /** List of references for source columns. It is used for 'Derived' and 'Aggregate' type mappings only. */
2474
+ attributeReferences?: MapperAttributeReference[];
2475
+ }
2476
+
2477
+ /** Attribute reference details for the referred column. */
2478
+ export interface MapperAttributeReference {
2479
+ /** Name of the column. */
2480
+ name?: string;
2481
+ /** Name of the table. */
2482
+ entity?: string;
2483
+ /** The connection reference for the connection. */
2484
+ entityConnectionReference?: MapperConnectionReference;
2485
+ }
2486
+
2487
+ /** CDC Policy. */
2488
+ export interface MapperPolicy {
2489
+ /** Mode of running the CDC: batch vs continuous. */
2490
+ mode?: string;
2491
+ /** Defines the frequency and interval for running the CDC for batch mode. */
2492
+ recurrence?: MapperPolicyRecurrence;
2493
+ }
2494
+
2495
+ /** CDC policy recurrence details. */
2496
+ export interface MapperPolicyRecurrence {
2497
+ /** Frequency of period in terms of 'Hour', 'Minute' or 'Second'. */
2498
+ frequency?: FrequencyType;
2499
+ /** Actual interval value as per chosen frequency. */
2500
+ interval?: number;
2501
+ }
2502
+
2345
2503
  /** Azure Data Factory expression definition. */
2346
2504
  export interface Expression {
2347
2505
  /** Expression type. */
@@ -2462,7 +2620,8 @@ export interface DatasetLocation {
2462
2620
  | "FtpServerLocation"
2463
2621
  | "SftpLocation"
2464
2622
  | "HttpServerLocation"
2465
- | "HdfsLocation";
2623
+ | "HdfsLocation"
2624
+ | "LakeHouseLocation";
2466
2625
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
2467
2626
  [property: string]: any;
2468
2627
  /** Specify the folder path of dataset. Type: string (or Expression with resultType string) */
@@ -2550,6 +2709,15 @@ export interface IntegrationRuntimeDataFlowProperties {
2550
2709
  timeToLive?: number;
2551
2710
  /** 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. */
2552
2711
  cleanup?: boolean;
2712
+ /** Custom properties are used to tune the data flow runtime performance. */
2713
+ customProperties?: IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem[];
2714
+ }
2715
+
2716
+ export interface IntegrationRuntimeDataFlowPropertiesCustomPropertiesItem {
2717
+ /** Name of custom property. */
2718
+ name?: string;
2719
+ /** Value of custom property. */
2720
+ value?: string;
2553
2721
  }
2554
2722
 
2555
2723
  /** VNet properties for managed integration runtime. */
@@ -2582,6 +2750,10 @@ export interface PipelineExternalComputeScaleProperties {
2582
2750
  [property: string]: any;
2583
2751
  /** Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity. */
2584
2752
  timeToLive?: number;
2753
+ /** Number of the pipeline nodes, which should be greater than 0 and less than 11. */
2754
+ numberOfPipelineNodes?: number;
2755
+ /** Number of the the external nodes, which should be greater than 0 and less than 11. */
2756
+ numberOfExternalNodes?: number;
2585
2757
  }
2586
2758
 
2587
2759
  /** SSIS properties for managed integration runtime. */
@@ -2847,7 +3019,7 @@ export interface SsisVariable {
2847
3019
 
2848
3020
  /** Sql always encrypted properties. */
2849
3021
  export interface SqlAlwaysEncryptedProperties {
2850
- /** Sql always encrypted AKV authentication type. Type: string (or Expression with resultType string). */
3022
+ /** Sql always encrypted AKV authentication type. Type: string. */
2851
3023
  alwaysEncryptedAkvAuthType: SqlAlwaysEncryptedAkvAuthType;
2852
3024
  /** The client ID of the application in Azure Active Directory used for Azure Key Vault authentication. Type: string (or Expression with resultType string). */
2853
3025
  servicePrincipalId?: any;
@@ -2909,7 +3081,8 @@ export interface StoreReadSettings {
2909
3081
  | "FtpReadSettings"
2910
3082
  | "SftpReadSettings"
2911
3083
  | "HttpReadSettings"
2912
- | "HdfsReadSettings";
3084
+ | "HdfsReadSettings"
3085
+ | "LakeHouseReadSettings";
2913
3086
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
2914
3087
  [property: string]: any;
2915
3088
  /** The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). */
@@ -2927,7 +3100,8 @@ export interface StoreWriteSettings {
2927
3100
  | "AzureBlobFSWriteSettings"
2928
3101
  | "AzureDataLakeStoreWriteSettings"
2929
3102
  | "FileServerWriteSettings"
2930
- | "AzureFileStorageWriteSettings";
3103
+ | "AzureFileStorageWriteSettings"
3104
+ | "LakeHouseWriteSettings";
2931
3105
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
2932
3106
  [property: string]: any;
2933
3107
  /** The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer). */
@@ -2952,6 +3126,7 @@ export interface DistcpSettings {
2952
3126
  export interface FormatReadSettings {
2953
3127
  /** Polymorphic discriminator, which specifies the different types this object can be */
2954
3128
  type:
3129
+ | "ParquetReadSettings"
2955
3130
  | "DelimitedTextReadSettings"
2956
3131
  | "JsonReadSettings"
2957
3132
  | "XmlReadSettings"
@@ -3078,6 +3253,7 @@ export interface CopySource {
3078
3253
  | "OracleServiceCloudSource"
3079
3254
  | "GoogleAdWordsSource"
3080
3255
  | "AmazonRedshiftSource"
3256
+ | "LakeHouseTableSource"
3081
3257
  | "SnowflakeSource"
3082
3258
  | "AzureDatabricksDeltaLakeSource"
3083
3259
  | "SharePointOnlineListSource";
@@ -3135,7 +3311,8 @@ export interface CopySink {
3135
3311
  | "SalesforceServiceCloudSink"
3136
3312
  | "MongoDbAtlasSink"
3137
3313
  | "MongoDbV2Sink"
3138
- | "CosmosDbMongoDbApiSink";
3314
+ | "CosmosDbMongoDbApiSink"
3315
+ | "LakeHouseTableSink";
3139
3316
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
3140
3317
  [property: string]: any;
3141
3318
  /** Write batch size. Type: integer (or Expression with resultType integer), minimum: 0. */
@@ -3298,6 +3475,12 @@ export interface MongoDbCursorMethodsProperties {
3298
3475
  limit?: any;
3299
3476
  }
3300
3477
 
3478
+ /** The columns to be read out from the Office 365 table. */
3479
+ export interface OutputColumn {
3480
+ /** Name of the table column. Type: string. */
3481
+ name?: string;
3482
+ }
3483
+
3301
3484
  /** The settings that will be leveraged for Netezza source partitioning. */
3302
3485
  export interface NetezzaPartitionSettings {
3303
3486
  /** The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string). */
@@ -3454,9 +3637,9 @@ export interface SsisPackageLocation {
3454
3637
 
3455
3638
  /** SSIS access credential. */
3456
3639
  export interface SsisAccessCredential {
3457
- /** Domain for windows authentication. */
3640
+ /** Domain for windows authentication. Type: string (or Expression with resultType string). */
3458
3641
  domain: any;
3459
- /** UseName for windows authentication. */
3642
+ /** UseName for windows authentication. Type: string (or Expression with resultType string). */
3460
3643
  userName: any;
3461
3644
  /** Password for windows authentication. */
3462
3645
  password: SecretBaseUnion;
@@ -3476,9 +3659,9 @@ export interface SsisChildPackage {
3476
3659
 
3477
3660
  /** SSIS package execution credential. */
3478
3661
  export interface SsisExecutionCredential {
3479
- /** Domain for windows authentication. */
3662
+ /** Domain for windows authentication. Type: string (or Expression with resultType string). */
3480
3663
  domain: any;
3481
- /** UseName for windows authentication. */
3664
+ /** UseName for windows authentication. Type: string (or Expression with resultType string). */
3482
3665
  userName: any;
3483
3666
  /** Password for windows authentication. */
3484
3667
  password: SecureString;
@@ -3560,6 +3743,14 @@ export interface AzureMLWebServiceFile {
3560
3743
  linkedServiceName: LinkedServiceReference;
3561
3744
  }
3562
3745
 
3746
+ /** Execution policy for an activity that supports secure input and output. */
3747
+ export interface SecureInputOutputPolicy {
3748
+ /** When set to true, Input from activity is considered as secure and will not be logged to monitoring. */
3749
+ secureInput?: boolean;
3750
+ /** When set to true, Output from activity is considered as secure and will not be logged to monitoring. */
3751
+ secureOutput?: boolean;
3752
+ }
3753
+
3563
3754
  /** Execute data flow activity properties. */
3564
3755
  export interface ExecuteDataFlowActivityTypeProperties {
3565
3756
  /** Data flow reference. */
@@ -3612,7 +3803,7 @@ export interface ScriptActivityParameter {
3612
3803
  name?: any;
3613
3804
  /** The type of the parameter. */
3614
3805
  type?: ScriptActivityParameterType;
3615
- /** The value of the parameter. */
3806
+ /** The value of the parameter. Type: string (or Expression with resultType string). */
3616
3807
  value?: any;
3617
3808
  /** The direction of the parameter. */
3618
3809
  direction?: ScriptActivityParameterDirection;
@@ -3652,14 +3843,6 @@ export interface NotebookParameter {
3652
3843
  type?: NotebookParameterType;
3653
3844
  }
3654
3845
 
3655
- /** Synapse spark job reference type. */
3656
- export interface SynapseSparkJobReference {
3657
- /** Synapse spark job reference type. */
3658
- type: SparkJobReferenceType;
3659
- /** Reference spark job name. Expression with resultType string. */
3660
- referenceName: any;
3661
- }
3662
-
3663
3846
  /** Spark configuration reference. */
3664
3847
  export interface SparkConfigurationParametrizationReference {
3665
3848
  /** Spark configuration reference type. */
@@ -3668,6 +3851,14 @@ export interface SparkConfigurationParametrizationReference {
3668
3851
  referenceName: any;
3669
3852
  }
3670
3853
 
3854
+ /** Synapse spark job reference type. */
3855
+ export interface SynapseSparkJobReference {
3856
+ /** Synapse spark job reference type. */
3857
+ type: SparkJobReferenceType;
3858
+ /** Reference spark job name. Expression with resultType string. */
3859
+ referenceName: any;
3860
+ }
3861
+
3671
3862
  /** The workflow trigger recurrence. */
3672
3863
  export interface ScheduleTriggerRecurrence {
3673
3864
  /** Describes unknown properties. The value of an unknown property can be of "any" type. */
@@ -3817,6 +4008,8 @@ export interface SelfHostedIntegrationRuntime extends IntegrationRuntime {
3817
4008
  type: "SelfHosted";
3818
4009
  /** The base definition of a linked integration runtime. */
3819
4010
  linkedInfo?: LinkedIntegrationRuntimeTypeUnion;
4011
+ /** An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay. */
4012
+ selfContainedInteractiveAuthoringEnabled?: boolean;
3820
4013
  }
3821
4014
 
3822
4015
  /** Integration runtime resource type. */
@@ -3916,6 +4109,26 @@ export interface GlobalParameterResource extends SubResource {
3916
4109
  properties: { [propertyName: string]: GlobalParameterSpecification };
3917
4110
  }
3918
4111
 
4112
+ /** Change data capture resource type. */
4113
+ export interface ChangeDataCaptureResource extends SubResource {
4114
+ /** Describes unknown properties. The value of an unknown property can be of "any" type. */
4115
+ [property: string]: any;
4116
+ /** The folder that this CDC is in. If not specified, CDC will appear at the root level. */
4117
+ folder?: ChangeDataCaptureFolder;
4118
+ /** The description of the change data capture. */
4119
+ description?: string;
4120
+ /** List of sources connections that can be used as sources in the CDC. */
4121
+ sourceConnectionsInfo: MapperSourceConnectionsInfo[];
4122
+ /** List of target connections that can be used as sources in the CDC. */
4123
+ targetConnectionsInfo: MapperTargetConnectionsInfo[];
4124
+ /** CDC policy */
4125
+ policy: MapperPolicy;
4126
+ /** A boolean to determine if the vnet configuration needs to be overwritten. */
4127
+ allowVNetOverride?: boolean;
4128
+ /** Status of the CDC as to if it is running or stopped. */
4129
+ status?: string;
4130
+ }
4131
+
3919
4132
  /** Credential resource type. */
3920
4133
  export interface CredentialResource extends SubResource {
3921
4134
  /** Properties of credentials. */
@@ -4028,6 +4241,11 @@ export interface SelfHostedIntegrationRuntimeStatus
4028
4241
  * NOTE: This property will not be serialized. It can only be populated by the server.
4029
4242
  */
4030
4243
  readonly autoUpdateETA?: Date;
4244
+ /**
4245
+ * An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
4246
+ * NOTE: This property will not be serialized. It can only be populated by the server.
4247
+ */
4248
+ readonly selfContainedInteractiveAuthoringEnabled?: boolean;
4031
4249
  }
4032
4250
 
4033
4251
  /** Ssis folder. */
@@ -4086,7 +4304,7 @@ export interface AzureStorageLinkedService extends LinkedService {
4086
4304
  sasUri?: any;
4087
4305
  /** The Azure key vault secret reference of sasToken in sas uri. */
4088
4306
  sasToken?: AzureKeyVaultSecretReference;
4089
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4307
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4090
4308
  encryptedCredential?: string;
4091
4309
  }
4092
4310
 
@@ -4103,7 +4321,7 @@ export interface AzureBlobStorageLinkedService extends LinkedService {
4103
4321
  /** The Azure key vault secret reference of sasToken in sas uri. */
4104
4322
  sasToken?: AzureKeyVaultSecretReference;
4105
4323
  /** Blob service endpoint of the Azure Blob Storage resource. It is mutually exclusive with connectionString, sasUri property. */
4106
- serviceEndpoint?: string;
4324
+ serviceEndpoint?: any;
4107
4325
  /** The ID of the service principal used to authenticate against Azure SQL Data Warehouse. Type: string (or Expression with resultType string). */
4108
4326
  servicePrincipalId?: any;
4109
4327
  /** The key of the service principal used to authenticate against Azure SQL Data Warehouse. */
@@ -4113,8 +4331,8 @@ export interface AzureBlobStorageLinkedService extends LinkedService {
4113
4331
  /** 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). */
4114
4332
  azureCloudType?: any;
4115
4333
  /** 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). */
4116
- accountKind?: string;
4117
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4334
+ accountKind?: any;
4335
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4118
4336
  encryptedCredential?: string;
4119
4337
  /** The credential reference containing authentication information. */
4120
4338
  credential?: CredentialReference;
@@ -4136,7 +4354,7 @@ export interface AzureTableStorageLinkedService extends LinkedService {
4136
4354
  sasUri?: any;
4137
4355
  /** The Azure key vault secret reference of sasToken in sas uri. */
4138
4356
  sasToken?: AzureKeyVaultSecretReference;
4139
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4357
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4140
4358
  encryptedCredential?: string;
4141
4359
  }
4142
4360
 
@@ -4156,8 +4374,8 @@ export interface AzureSqlDWLinkedService extends LinkedService {
4156
4374
  tenant?: any;
4157
4375
  /** 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). */
4158
4376
  azureCloudType?: any;
4159
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4160
- encryptedCredential?: any;
4377
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4378
+ encryptedCredential?: string;
4161
4379
  /** The credential reference containing authentication information. */
4162
4380
  credential?: CredentialReference;
4163
4381
  }
@@ -4172,8 +4390,8 @@ export interface SqlServerLinkedService extends LinkedService {
4172
4390
  userName?: any;
4173
4391
  /** The on-premises Windows authentication password. */
4174
4392
  password?: SecretBaseUnion;
4175
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4176
- encryptedCredential?: any;
4393
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4394
+ encryptedCredential?: string;
4177
4395
  /** Sql always encrypted properties. */
4178
4396
  alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
4179
4397
  }
@@ -4188,8 +4406,8 @@ export interface AmazonRdsForSqlServerLinkedService extends LinkedService {
4188
4406
  userName?: any;
4189
4407
  /** The on-premises Windows authentication password. */
4190
4408
  password?: SecretBaseUnion;
4191
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4192
- encryptedCredential?: any;
4409
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4410
+ encryptedCredential?: string;
4193
4411
  /** Sql always encrypted properties. */
4194
4412
  alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
4195
4413
  }
@@ -4210,8 +4428,8 @@ export interface AzureSqlDatabaseLinkedService extends LinkedService {
4210
4428
  tenant?: any;
4211
4429
  /** 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). */
4212
4430
  azureCloudType?: any;
4213
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4214
- encryptedCredential?: any;
4431
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4432
+ encryptedCredential?: string;
4215
4433
  /** Sql always encrypted properties. */
4216
4434
  alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
4217
4435
  /** The credential reference containing authentication information. */
@@ -4234,8 +4452,8 @@ export interface AzureSqlMILinkedService extends LinkedService {
4234
4452
  tenant?: any;
4235
4453
  /** 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). */
4236
4454
  azureCloudType?: any;
4237
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4238
- encryptedCredential?: any;
4455
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4456
+ encryptedCredential?: string;
4239
4457
  /** Sql always encrypted properties. */
4240
4458
  alwaysEncryptedSettings?: SqlAlwaysEncryptedProperties;
4241
4459
  /** The credential reference containing authentication information. */
@@ -4256,8 +4474,8 @@ export interface AzureBatchLinkedService extends LinkedService {
4256
4474
  poolName: any;
4257
4475
  /** The Azure Storage linked service reference. */
4258
4476
  linkedServiceName: LinkedServiceReference;
4259
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4260
- encryptedCredential?: any;
4477
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4478
+ encryptedCredential?: string;
4261
4479
  /** The credential reference containing authentication information. */
4262
4480
  credential?: CredentialReference;
4263
4481
  }
@@ -4286,18 +4504,18 @@ export interface CosmosDbLinkedService extends LinkedService {
4286
4504
  accountKey?: SecretBaseUnion;
4287
4505
  /** The client ID of the application in Azure Active Directory used for Server-To-Server authentication. Type: string (or Expression with resultType string). */
4288
4506
  servicePrincipalId?: any;
4289
- /** 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). */
4290
- servicePrincipalCredentialType?: CosmosDbServicePrincipalCredentialType;
4507
+ /** The service principal credential type to use in Server-To-Server authentication. 'ServicePrincipalKey' for key/secret, 'ServicePrincipalCert' for certificate. Type: string. */
4508
+ servicePrincipalCredentialType?: any;
4291
4509
  /** 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. */
4292
4510
  servicePrincipalCredential?: SecretBaseUnion;
4293
4511
  /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
4294
4512
  tenant?: any;
4295
4513
  /** 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). */
4296
4514
  azureCloudType?: any;
4297
- /** The connection mode used to access CosmosDB account. Type: string (or Expression with resultType string). */
4515
+ /** The connection mode used to access CosmosDB account. Type: string. */
4298
4516
  connectionMode?: CosmosDbConnectionMode;
4299
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4300
- encryptedCredential?: any;
4517
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4518
+ encryptedCredential?: string;
4301
4519
  /** The credential reference containing authentication information. */
4302
4520
  credential?: CredentialReference;
4303
4521
  }
@@ -4328,8 +4546,8 @@ export interface DynamicsLinkedService extends LinkedService {
4328
4546
  servicePrincipalCredentialType?: any;
4329
4547
  /** 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. */
4330
4548
  servicePrincipalCredential?: SecretBaseUnion;
4331
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4332
- encryptedCredential?: any;
4549
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4550
+ encryptedCredential?: string;
4333
4551
  /** The credential reference containing authentication information. */
4334
4552
  credential?: CredentialReference;
4335
4553
  }
@@ -4360,8 +4578,8 @@ export interface DynamicsCrmLinkedService extends LinkedService {
4360
4578
  servicePrincipalCredentialType?: any;
4361
4579
  /** 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. */
4362
4580
  servicePrincipalCredential?: SecretBaseUnion;
4363
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4364
- encryptedCredential?: any;
4581
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4582
+ encryptedCredential?: string;
4365
4583
  }
4366
4584
 
4367
4585
  /** Common Data Service for Apps linked service. */
@@ -4390,8 +4608,8 @@ export interface CommonDataServiceForAppsLinkedService extends LinkedService {
4390
4608
  servicePrincipalCredentialType?: any;
4391
4609
  /** 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. */
4392
4610
  servicePrincipalCredential?: SecretBaseUnion;
4393
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4394
- encryptedCredential?: any;
4611
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4612
+ encryptedCredential?: string;
4395
4613
  }
4396
4614
 
4397
4615
  /** HDInsight linked service. */
@@ -4408,8 +4626,8 @@ export interface HDInsightLinkedService extends LinkedService {
4408
4626
  linkedServiceName?: LinkedServiceReference;
4409
4627
  /** A reference to the Azure SQL linked service that points to the HCatalog database. */
4410
4628
  hcatalogLinkedServiceName?: LinkedServiceReference;
4411
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4412
- encryptedCredential?: any;
4629
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4630
+ encryptedCredential?: string;
4413
4631
  /** Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean. */
4414
4632
  isEspEnabled?: any;
4415
4633
  /** Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string). */
@@ -4426,8 +4644,8 @@ export interface FileServerLinkedService extends LinkedService {
4426
4644
  userId?: any;
4427
4645
  /** Password to logon the server. */
4428
4646
  password?: SecretBaseUnion;
4429
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4430
- encryptedCredential?: any;
4647
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4648
+ encryptedCredential?: string;
4431
4649
  }
4432
4650
 
4433
4651
  /** Azure File Storage linked service. */
@@ -4452,8 +4670,8 @@ export interface AzureFileStorageLinkedService extends LinkedService {
4452
4670
  fileShare?: any;
4453
4671
  /** The azure file share snapshot version. Type: string (or Expression with resultType string). */
4454
4672
  snapshot?: any;
4455
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4456
- encryptedCredential?: any;
4673
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4674
+ encryptedCredential?: string;
4457
4675
  }
4458
4676
 
4459
4677
  /** Linked service for Amazon S3 Compatible. */
@@ -4468,8 +4686,8 @@ export interface AmazonS3CompatibleLinkedService extends LinkedService {
4468
4686
  serviceUrl?: any;
4469
4687
  /** If true, use S3 path-style access instead of virtual hosted-style access. Default value is false. Type: boolean (or Expression with resultType boolean). */
4470
4688
  forcePathStyle?: any;
4471
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4472
- encryptedCredential?: any;
4689
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4690
+ encryptedCredential?: string;
4473
4691
  }
4474
4692
 
4475
4693
  /** Linked service for Oracle Cloud Storage. */
@@ -4482,8 +4700,8 @@ export interface OracleCloudStorageLinkedService extends LinkedService {
4482
4700
  secretAccessKey?: SecretBaseUnion;
4483
4701
  /** 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). */
4484
4702
  serviceUrl?: any;
4485
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4486
- encryptedCredential?: any;
4703
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4704
+ encryptedCredential?: string;
4487
4705
  }
4488
4706
 
4489
4707
  /** Linked service for Google Cloud Storage. */
@@ -4496,8 +4714,8 @@ export interface GoogleCloudStorageLinkedService extends LinkedService {
4496
4714
  secretAccessKey?: SecretBaseUnion;
4497
4715
  /** 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). */
4498
4716
  serviceUrl?: any;
4499
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4500
- encryptedCredential?: any;
4717
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4718
+ encryptedCredential?: string;
4501
4719
  }
4502
4720
 
4503
4721
  /** Oracle database. */
@@ -4508,8 +4726,8 @@ export interface OracleLinkedService extends LinkedService {
4508
4726
  connectionString: any;
4509
4727
  /** The Azure key vault secret reference of password in connection string. */
4510
4728
  password?: AzureKeyVaultSecretReference;
4511
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4512
- encryptedCredential?: any;
4729
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4730
+ encryptedCredential?: string;
4513
4731
  }
4514
4732
 
4515
4733
  /** AmazonRdsForOracle database. */
@@ -4520,8 +4738,8 @@ export interface AmazonRdsForOracleLinkedService extends LinkedService {
4520
4738
  connectionString: any;
4521
4739
  /** The Azure key vault secret reference of password in connection string. */
4522
4740
  password?: SecretBaseUnion;
4523
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4524
- encryptedCredential?: any;
4741
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4742
+ encryptedCredential?: string;
4525
4743
  }
4526
4744
 
4527
4745
  /** Azure MySQL database linked service. */
@@ -4532,32 +4750,32 @@ export interface AzureMySqlLinkedService extends LinkedService {
4532
4750
  connectionString: any;
4533
4751
  /** The Azure key vault secret reference of password in connection string. */
4534
4752
  password?: AzureKeyVaultSecretReference;
4535
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4536
- encryptedCredential?: any;
4753
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4754
+ encryptedCredential?: string;
4537
4755
  }
4538
4756
 
4539
4757
  /** Linked service for MySQL data source. */
4540
4758
  export interface MySqlLinkedService extends LinkedService {
4541
4759
  /** Polymorphic discriminator, which specifies the different types this object can be */
4542
4760
  type: "MySql";
4543
- /** The connection string. */
4761
+ /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
4544
4762
  connectionString: any;
4545
4763
  /** The Azure key vault secret reference of password in connection string. */
4546
4764
  password?: AzureKeyVaultSecretReference;
4547
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4548
- encryptedCredential?: any;
4765
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4766
+ encryptedCredential?: string;
4549
4767
  }
4550
4768
 
4551
4769
  /** Linked service for PostgreSQL data source. */
4552
4770
  export interface PostgreSqlLinkedService extends LinkedService {
4553
4771
  /** Polymorphic discriminator, which specifies the different types this object can be */
4554
4772
  type: "PostgreSql";
4555
- /** The connection string. */
4773
+ /** The connection string. Type: string, SecureString or AzureKeyVaultSecretReference. */
4556
4774
  connectionString: any;
4557
4775
  /** The Azure key vault secret reference of password in connection string. */
4558
4776
  password?: AzureKeyVaultSecretReference;
4559
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4560
- encryptedCredential?: any;
4777
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4778
+ encryptedCredential?: string;
4561
4779
  }
4562
4780
 
4563
4781
  /** Linked service for Sybase data source. */
@@ -4576,8 +4794,8 @@ export interface SybaseLinkedService extends LinkedService {
4576
4794
  username?: any;
4577
4795
  /** Password for authentication. */
4578
4796
  password?: SecretBaseUnion;
4579
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4580
- encryptedCredential?: any;
4797
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4798
+ encryptedCredential?: string;
4581
4799
  }
4582
4800
 
4583
4801
  /** Linked service for DB2 data source. */
@@ -4600,8 +4818,8 @@ export interface Db2LinkedService extends LinkedService {
4600
4818
  packageCollection?: any;
4601
4819
  /** Certificate Common Name when TLS is enabled. It is mutually exclusive with connectionString property. Type: string (or Expression with resultType string). */
4602
4820
  certificateCommonName?: any;
4603
- /** 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). */
4604
- encryptedCredential?: any;
4821
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. It is mutually exclusive with connectionString property. Type: string. */
4822
+ encryptedCredential?: string;
4605
4823
  }
4606
4824
 
4607
4825
  /** Linked service for Teradata data source. */
@@ -4618,8 +4836,8 @@ export interface TeradataLinkedService extends LinkedService {
4618
4836
  username?: any;
4619
4837
  /** Password for authentication. */
4620
4838
  password?: SecretBaseUnion;
4621
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4622
- encryptedCredential?: any;
4839
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4840
+ encryptedCredential?: string;
4623
4841
  }
4624
4842
 
4625
4843
  /** Azure ML Studio Web Service linked service. */
@@ -4638,8 +4856,8 @@ export interface AzureMLLinkedService extends LinkedService {
4638
4856
  servicePrincipalKey?: SecretBaseUnion;
4639
4857
  /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
4640
4858
  tenant?: any;
4641
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4642
- encryptedCredential?: any;
4859
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4860
+ encryptedCredential?: string;
4643
4861
  /** Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string). */
4644
4862
  authentication?: any;
4645
4863
  }
@@ -4654,21 +4872,23 @@ export interface AzureMLServiceLinkedService extends LinkedService {
4654
4872
  resourceGroupName: any;
4655
4873
  /** Azure ML Service workspace name. Type: string (or Expression with resultType string). */
4656
4874
  mlWorkspaceName: any;
4875
+ /** Type of authentication (Required to specify MSI) used to connect to AzureML. Type: string (or Expression with resultType string). */
4876
+ authentication?: any;
4657
4877
  /** 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). */
4658
4878
  servicePrincipalId?: any;
4659
4879
  /** The key of the service principal used to authenticate against the endpoint of a published Azure ML Service pipeline. */
4660
4880
  servicePrincipalKey?: SecretBaseUnion;
4661
4881
  /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
4662
4882
  tenant?: any;
4663
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4664
- encryptedCredential?: any;
4883
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4884
+ encryptedCredential?: string;
4665
4885
  }
4666
4886
 
4667
4887
  /** Open Database Connectivity (ODBC) linked service. */
4668
4888
  export interface OdbcLinkedService extends LinkedService {
4669
4889
  /** Polymorphic discriminator, which specifies the different types this object can be */
4670
4890
  type: "Odbc";
4671
- /** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, SecureString or AzureKeyVaultSecretReference. */
4891
+ /** 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. */
4672
4892
  connectionString: any;
4673
4893
  /** Type of authentication used to connect to the ODBC data store. Possible values are: Anonymous and Basic. Type: string (or Expression with resultType string). */
4674
4894
  authenticationType?: any;
@@ -4678,15 +4898,15 @@ export interface OdbcLinkedService extends LinkedService {
4678
4898
  userName?: any;
4679
4899
  /** Password for Basic authentication. */
4680
4900
  password?: SecretBaseUnion;
4681
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4682
- encryptedCredential?: any;
4901
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4902
+ encryptedCredential?: string;
4683
4903
  }
4684
4904
 
4685
4905
  /** Informix linked service. */
4686
4906
  export interface InformixLinkedService extends LinkedService {
4687
4907
  /** Polymorphic discriminator, which specifies the different types this object can be */
4688
4908
  type: "Informix";
4689
- /** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, SecureString or AzureKeyVaultSecretReference. */
4909
+ /** 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. */
4690
4910
  connectionString: any;
4691
4911
  /** 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). */
4692
4912
  authenticationType?: any;
@@ -4696,15 +4916,15 @@ export interface InformixLinkedService extends LinkedService {
4696
4916
  userName?: any;
4697
4917
  /** Password for Basic authentication. */
4698
4918
  password?: SecretBaseUnion;
4699
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4700
- encryptedCredential?: any;
4919
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4920
+ encryptedCredential?: string;
4701
4921
  }
4702
4922
 
4703
4923
  /** Microsoft Access linked service. */
4704
4924
  export interface MicrosoftAccessLinkedService extends LinkedService {
4705
4925
  /** Polymorphic discriminator, which specifies the different types this object can be */
4706
4926
  type: "MicrosoftAccess";
4707
- /** The non-access credential portion of the connection string as well as an optional encrypted credential. Type: string, SecureString or AzureKeyVaultSecretReference. */
4927
+ /** 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. */
4708
4928
  connectionString: any;
4709
4929
  /** 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). */
4710
4930
  authenticationType?: any;
@@ -4714,8 +4934,8 @@ export interface MicrosoftAccessLinkedService extends LinkedService {
4714
4934
  userName?: any;
4715
4935
  /** Password for Basic authentication. */
4716
4936
  password?: SecretBaseUnion;
4717
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4718
- encryptedCredential?: any;
4937
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4938
+ encryptedCredential?: string;
4719
4939
  }
4720
4940
 
4721
4941
  /** Hadoop Distributed File System (HDFS) linked service. */
@@ -4726,8 +4946,8 @@ export interface HdfsLinkedService extends LinkedService {
4726
4946
  url: any;
4727
4947
  /** Type of authentication used to connect to the HDFS. Possible values are: Anonymous and Windows. Type: string (or Expression with resultType string). */
4728
4948
  authenticationType?: any;
4729
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4730
- encryptedCredential?: any;
4949
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4950
+ encryptedCredential?: string;
4731
4951
  /** User name for Windows authentication. Type: string (or Expression with resultType string). */
4732
4952
  userName?: any;
4733
4953
  /** Password for Windows authentication. */
@@ -4764,8 +4984,8 @@ export interface ODataLinkedService extends LinkedService {
4764
4984
  servicePrincipalEmbeddedCert?: SecretBaseUnion;
4765
4985
  /** 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). */
4766
4986
  servicePrincipalEmbeddedCertPassword?: SecretBaseUnion;
4767
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4768
- encryptedCredential?: any;
4987
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
4988
+ encryptedCredential?: string;
4769
4989
  }
4770
4990
 
4771
4991
  /** Web linked service. */
@@ -4790,8 +5010,8 @@ export interface CassandraLinkedService extends LinkedService {
4790
5010
  username?: any;
4791
5011
  /** Password for authentication. */
4792
5012
  password?: SecretBaseUnion;
4793
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4794
- encryptedCredential?: any;
5013
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5014
+ encryptedCredential?: string;
4795
5015
  }
4796
5016
 
4797
5017
  /** Linked service for MongoDb data source. */
@@ -4816,8 +5036,8 @@ export interface MongoDbLinkedService extends LinkedService {
4816
5036
  enableSsl?: any;
4817
5037
  /** Specifies whether to allow self-signed certificates from the server. The default value is false. Type: boolean (or Expression with resultType boolean). */
4818
5038
  allowSelfSignedServerCert?: any;
4819
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4820
- encryptedCredential?: any;
5039
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5040
+ encryptedCredential?: string;
4821
5041
  }
4822
5042
 
4823
5043
  /** Linked service for MongoDB Atlas data source. */
@@ -4828,6 +5048,8 @@ export interface MongoDbAtlasLinkedService extends LinkedService {
4828
5048
  connectionString: any;
4829
5049
  /** The name of the MongoDB Atlas database that you want to access. Type: string (or Expression with resultType string). */
4830
5050
  database: any;
5051
+ /** The driver version that you want to choose. Allowed value are v1 and v2. Type: string (or Expression with resultType string). */
5052
+ driverVersion?: any;
4831
5053
  }
4832
5054
 
4833
5055
  /** Linked service for MongoDB data source. */
@@ -4872,8 +5094,8 @@ export interface AzureDataLakeStoreLinkedService extends LinkedService {
4872
5094
  subscriptionId?: any;
4873
5095
  /** Data Lake Store account resource group name (if different from Data Factory account). Type: string (or Expression with resultType string). */
4874
5096
  resourceGroupName?: any;
4875
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4876
- encryptedCredential?: any;
5097
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5098
+ encryptedCredential?: string;
4877
5099
  /** The credential reference containing authentication information. */
4878
5100
  credential?: CredentialReference;
4879
5101
  }
@@ -4894,8 +5116,8 @@ export interface AzureBlobFSLinkedService extends LinkedService {
4894
5116
  tenant?: any;
4895
5117
  /** 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). */
4896
5118
  azureCloudType?: any;
4897
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4898
- encryptedCredential?: any;
5119
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5120
+ encryptedCredential?: string;
4899
5121
  /** The credential reference containing authentication information. */
4900
5122
  credential?: CredentialReference;
4901
5123
  /** 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). */
@@ -4920,8 +5142,8 @@ export interface Office365LinkedService extends LinkedService {
4920
5142
  servicePrincipalId: any;
4921
5143
  /** Specify the application's key. */
4922
5144
  servicePrincipalKey: SecretBaseUnion;
4923
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4924
- encryptedCredential?: any;
5145
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5146
+ encryptedCredential?: string;
4925
5147
  }
4926
5148
 
4927
5149
  /** Linked service for Salesforce. */
@@ -4938,8 +5160,8 @@ export interface SalesforceLinkedService extends LinkedService {
4938
5160
  securityToken?: SecretBaseUnion;
4939
5161
  /** The Salesforce API version used in ADF. Type: string (or Expression with resultType string). */
4940
5162
  apiVersion?: any;
4941
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4942
- encryptedCredential?: any;
5163
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5164
+ encryptedCredential?: string;
4943
5165
  }
4944
5166
 
4945
5167
  /** Linked service for Salesforce Service Cloud. */
@@ -4958,8 +5180,8 @@ export interface SalesforceServiceCloudLinkedService extends LinkedService {
4958
5180
  apiVersion?: any;
4959
5181
  /** Extended properties appended to the connection string. Type: string (or Expression with resultType string). */
4960
5182
  extendedProperties?: any;
4961
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
4962
- encryptedCredential?: any;
5183
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5184
+ encryptedCredential?: string;
4963
5185
  }
4964
5186
 
4965
5187
  /** Linked service for SAP Cloud for Customer. */
@@ -4972,8 +5194,8 @@ export interface SapCloudForCustomerLinkedService extends LinkedService {
4972
5194
  username?: any;
4973
5195
  /** The password for Basic authentication. */
4974
5196
  password?: SecretBaseUnion;
4975
- /** 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). */
4976
- encryptedCredential?: any;
5197
+ /** 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. */
5198
+ encryptedCredential?: string;
4977
5199
  }
4978
5200
 
4979
5201
  /** Linked service for SAP ERP Central Component(SAP ECC). */
@@ -4981,12 +5203,12 @@ export interface SapEccLinkedService extends LinkedService {
4981
5203
  /** Polymorphic discriminator, which specifies the different types this object can be */
4982
5204
  type: "SapEcc";
4983
5205
  /** The URL of SAP ECC OData API. For example, '[https://hostname:port/sap/opu/odata/sap/servicename/]'. Type: string (or Expression with resultType string). */
4984
- url: string;
5206
+ url: any;
4985
5207
  /** The username for Basic authentication. Type: string (or Expression with resultType string). */
4986
- username?: string;
5208
+ username?: any;
4987
5209
  /** The password for Basic authentication. */
4988
5210
  password?: SecretBaseUnion;
4989
- /** 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). */
5211
+ /** 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. */
4990
5212
  encryptedCredential?: string;
4991
5213
  }
4992
5214
 
@@ -5014,8 +5236,8 @@ export interface SapOpenHubLinkedService extends LinkedService {
5014
5236
  messageServerService?: any;
5015
5237
  /** The Logon Group for the SAP System. Type: string (or Expression with resultType string). */
5016
5238
  logonGroup?: any;
5017
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5018
- encryptedCredential?: any;
5239
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5240
+ encryptedCredential?: string;
5019
5241
  }
5020
5242
 
5021
5243
  /** SAP ODP Linked Service. */
@@ -5056,38 +5278,38 @@ export interface SapOdpLinkedService extends LinkedService {
5056
5278
  logonGroup?: any;
5057
5279
  /** The subscriber name. Type: string (or Expression with resultType string). */
5058
5280
  subscriberName?: any;
5059
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5060
- encryptedCredential?: any;
5281
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5282
+ encryptedCredential?: string;
5061
5283
  }
5062
5284
 
5063
5285
  /** Rest Service linked service. */
5064
5286
  export interface RestServiceLinkedService extends LinkedService {
5065
5287
  /** Polymorphic discriminator, which specifies the different types this object can be */
5066
5288
  type: "RestService";
5067
- /** The base URL of the REST service. */
5289
+ /** The base URL of the REST service. Type: string (or Expression with resultType string). */
5068
5290
  url: any;
5069
5291
  /** Whether to validate server side SSL certificate when connecting to the endpoint.The default value is true. Type: boolean (or Expression with resultType boolean). */
5070
5292
  enableServerCertificateValidation?: any;
5071
5293
  /** Type of authentication used to connect to the REST service. */
5072
5294
  authenticationType: RestServiceAuthenticationType;
5073
- /** The user name used in Basic authentication type. */
5295
+ /** The user name used in Basic authentication type. Type: string (or Expression with resultType string). */
5074
5296
  userName?: any;
5075
5297
  /** The password used in Basic authentication type. */
5076
5298
  password?: SecretBaseUnion;
5077
5299
  /** The additional HTTP headers in the request to RESTful API used for authorization. Type: object (or Expression with resultType object). */
5078
5300
  authHeaders?: any;
5079
- /** The application's client ID used in AadServicePrincipal authentication type. */
5301
+ /** The application's client ID used in AadServicePrincipal authentication type. Type: string (or Expression with resultType string). */
5080
5302
  servicePrincipalId?: any;
5081
5303
  /** The application's key used in AadServicePrincipal authentication type. */
5082
5304
  servicePrincipalKey?: SecretBaseUnion;
5083
- /** The tenant information (domain name or tenant ID) used in AadServicePrincipal authentication type under which your application resides. */
5305
+ /** 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). */
5084
5306
  tenant?: any;
5085
5307
  /** 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). */
5086
5308
  azureCloudType?: any;
5087
- /** The resource you are requesting authorization to use. */
5309
+ /** The resource you are requesting authorization to use. Type: string (or Expression with resultType string). */
5088
5310
  aadResourceId?: any;
5089
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5090
- encryptedCredential?: any;
5311
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5312
+ encryptedCredential?: string;
5091
5313
  /** The credential reference containing authentication information. */
5092
5314
  credential?: CredentialReference;
5093
5315
  /** The client ID associated with your application. Type: string (or Expression with resultType string). */
@@ -5116,8 +5338,8 @@ export interface TeamDeskLinkedService extends LinkedService {
5116
5338
  password?: SecretBaseUnion;
5117
5339
  /** The api token for the TeamDesk source. */
5118
5340
  apiToken?: SecretBaseUnion;
5119
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5120
- encryptedCredential?: any;
5341
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5342
+ encryptedCredential?: string;
5121
5343
  }
5122
5344
 
5123
5345
  /** Linked service for Quickbase. */
@@ -5128,8 +5350,8 @@ export interface QuickbaseLinkedService extends LinkedService {
5128
5350
  url: any;
5129
5351
  /** The user token for the Quickbase source. */
5130
5352
  userToken: SecretBaseUnion;
5131
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5132
- encryptedCredential?: any;
5353
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5354
+ encryptedCredential?: string;
5133
5355
  }
5134
5356
 
5135
5357
  /** Linked service for Smartsheet. */
@@ -5138,8 +5360,8 @@ export interface SmartsheetLinkedService extends LinkedService {
5138
5360
  type: "Smartsheet";
5139
5361
  /** The api token for the Smartsheet source. */
5140
5362
  apiToken: SecretBaseUnion;
5141
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5142
- encryptedCredential?: any;
5363
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5364
+ encryptedCredential?: string;
5143
5365
  }
5144
5366
 
5145
5367
  /** Linked service for Zendesk. */
@@ -5156,8 +5378,8 @@ export interface ZendeskLinkedService extends LinkedService {
5156
5378
  password?: SecretBaseUnion;
5157
5379
  /** The api token for the Zendesk source. */
5158
5380
  apiToken?: SecretBaseUnion;
5159
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5160
- encryptedCredential?: any;
5381
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5382
+ encryptedCredential?: string;
5161
5383
  }
5162
5384
 
5163
5385
  /** Linked service for Dataworld. */
@@ -5166,15 +5388,15 @@ export interface DataworldLinkedService extends LinkedService {
5166
5388
  type: "Dataworld";
5167
5389
  /** The api token for the Dataworld source. */
5168
5390
  apiToken: SecretBaseUnion;
5169
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5170
- encryptedCredential?: any;
5391
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5392
+ encryptedCredential?: string;
5171
5393
  }
5172
5394
 
5173
5395
  /** Linked service for AppFigures. */
5174
5396
  export interface AppFiguresLinkedService extends LinkedService {
5175
5397
  /** Polymorphic discriminator, which specifies the different types this object can be */
5176
5398
  type: "AppFigures";
5177
- /** The username of the Appfigures source. */
5399
+ /** The username of the Appfigures source. Type: string (or Expression with resultType string). */
5178
5400
  userName: any;
5179
5401
  /** The password of the AppFigures source. */
5180
5402
  password: SecretBaseUnion;
@@ -5188,15 +5410,15 @@ export interface AsanaLinkedService extends LinkedService {
5188
5410
  type: "Asana";
5189
5411
  /** The api token for the Asana source. */
5190
5412
  apiToken: SecretBaseUnion;
5191
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5192
- encryptedCredential?: any;
5413
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5414
+ encryptedCredential?: string;
5193
5415
  }
5194
5416
 
5195
5417
  /** Linked service for Twilio. */
5196
5418
  export interface TwilioLinkedService extends LinkedService {
5197
5419
  /** Polymorphic discriminator, which specifies the different types this object can be */
5198
5420
  type: "Twilio";
5199
- /** The Account SID of Twilio service. */
5421
+ /** The Account SID of Twilio service. Type: string (or Expression with resultType string). */
5200
5422
  userName: any;
5201
5423
  /** The auth token of Twilio service. */
5202
5424
  password: SecretBaseUnion;
@@ -5208,8 +5430,8 @@ export interface GoogleSheetsLinkedService extends LinkedService {
5208
5430
  type: "GoogleSheets";
5209
5431
  /** The api token for the GoogleSheets source. */
5210
5432
  apiToken: SecretBaseUnion;
5211
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5212
- encryptedCredential?: any;
5433
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5434
+ encryptedCredential?: string;
5213
5435
  }
5214
5436
 
5215
5437
  /** Linked service for Amazon S3. */
@@ -5226,8 +5448,8 @@ export interface AmazonS3LinkedService extends LinkedService {
5226
5448
  serviceUrl?: any;
5227
5449
  /** The session token for the S3 temporary security credential. */
5228
5450
  sessionToken?: SecretBaseUnion;
5229
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5230
- encryptedCredential?: any;
5451
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5452
+ encryptedCredential?: string;
5231
5453
  }
5232
5454
 
5233
5455
  /** Linked service for Amazon Redshift. */
@@ -5244,8 +5466,8 @@ export interface AmazonRedshiftLinkedService extends LinkedService {
5244
5466
  database: any;
5245
5467
  /** 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). */
5246
5468
  port?: any;
5247
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5248
- encryptedCredential?: any;
5469
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5470
+ encryptedCredential?: string;
5249
5471
  }
5250
5472
 
5251
5473
  /** Custom linked service. */
@@ -5264,8 +5486,8 @@ export interface AzureSearchLinkedService extends LinkedService {
5264
5486
  url: any;
5265
5487
  /** Admin Key for Azure Search service */
5266
5488
  key?: SecretBaseUnion;
5267
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5268
- encryptedCredential?: any;
5489
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5490
+ encryptedCredential?: string;
5269
5491
  }
5270
5492
 
5271
5493
  /** Linked service for an HTTP source. */
@@ -5286,8 +5508,8 @@ export interface HttpLinkedService extends LinkedService {
5286
5508
  embeddedCertData?: any;
5287
5509
  /** 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). */
5288
5510
  certThumbprint?: any;
5289
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5290
- encryptedCredential?: any;
5511
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5512
+ encryptedCredential?: string;
5291
5513
  /** If true, validate the HTTPS server SSL certificate. Default value is true. Type: boolean (or Expression with resultType boolean). */
5292
5514
  enableServerCertificateValidation?: any;
5293
5515
  }
@@ -5306,8 +5528,8 @@ export interface FtpServerLinkedService extends LinkedService {
5306
5528
  userName?: any;
5307
5529
  /** Password to logon the FTP server. */
5308
5530
  password?: SecretBaseUnion;
5309
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5310
- encryptedCredential?: any;
5531
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5532
+ encryptedCredential?: string;
5311
5533
  /** If true, connect to the FTP server over SSL/TLS channel. Default value is true. Type: boolean (or Expression with resultType boolean). */
5312
5534
  enableSsl?: any;
5313
5535
  /** 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). */
@@ -5328,8 +5550,8 @@ export interface SftpServerLinkedService extends LinkedService {
5328
5550
  userName?: any;
5329
5551
  /** Password to logon the SFTP server for Basic authentication. */
5330
5552
  password?: SecretBaseUnion;
5331
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5332
- encryptedCredential?: any;
5553
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5554
+ encryptedCredential?: string;
5333
5555
  /** 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). */
5334
5556
  privateKeyPath?: any;
5335
5557
  /** 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. */
@@ -5356,8 +5578,8 @@ export interface SapBWLinkedService extends LinkedService {
5356
5578
  userName?: any;
5357
5579
  /** Password to access the SAP BW server. */
5358
5580
  password?: SecretBaseUnion;
5359
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5360
- encryptedCredential?: any;
5581
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5582
+ encryptedCredential?: string;
5361
5583
  }
5362
5584
 
5363
5585
  /** SAP HANA Linked Service. */
@@ -5374,8 +5596,8 @@ export interface SapHanaLinkedService extends LinkedService {
5374
5596
  userName?: any;
5375
5597
  /** Password to access the SAP HANA server. */
5376
5598
  password?: SecretBaseUnion;
5377
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5378
- encryptedCredential?: any;
5599
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5600
+ encryptedCredential?: string;
5379
5601
  }
5380
5602
 
5381
5603
  /** Amazon Marketplace Web Service linked service. */
@@ -5400,8 +5622,8 @@ export interface AmazonMWSLinkedService extends LinkedService {
5400
5622
  useHostVerification?: any;
5401
5623
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5402
5624
  usePeerVerification?: any;
5403
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5404
- encryptedCredential?: any;
5625
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5626
+ encryptedCredential?: string;
5405
5627
  }
5406
5628
 
5407
5629
  /** Azure PostgreSQL linked service. */
@@ -5412,8 +5634,8 @@ export interface AzurePostgreSqlLinkedService extends LinkedService {
5412
5634
  connectionString?: any;
5413
5635
  /** The Azure key vault secret reference of password in connection string. */
5414
5636
  password?: AzureKeyVaultSecretReference;
5415
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5416
- encryptedCredential?: any;
5637
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5638
+ encryptedCredential?: string;
5417
5639
  }
5418
5640
 
5419
5641
  /** Concur Service linked service. */
@@ -5434,8 +5656,8 @@ export interface ConcurLinkedService extends LinkedService {
5434
5656
  useHostVerification?: any;
5435
5657
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5436
5658
  usePeerVerification?: any;
5437
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5438
- encryptedCredential?: any;
5659
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5660
+ encryptedCredential?: string;
5439
5661
  }
5440
5662
 
5441
5663
  /** Couchbase server linked service. */
@@ -5446,8 +5668,8 @@ export interface CouchbaseLinkedService extends LinkedService {
5446
5668
  connectionString?: any;
5447
5669
  /** The Azure key vault secret reference of credString in connection string. */
5448
5670
  credString?: AzureKeyVaultSecretReference;
5449
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5450
- encryptedCredential?: any;
5671
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5672
+ encryptedCredential?: string;
5451
5673
  }
5452
5674
 
5453
5675
  /** Drill server linked service. */
@@ -5458,8 +5680,8 @@ export interface DrillLinkedService extends LinkedService {
5458
5680
  connectionString?: any;
5459
5681
  /** The Azure key vault secret reference of password in connection string. */
5460
5682
  pwd?: AzureKeyVaultSecretReference;
5461
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5462
- encryptedCredential?: any;
5683
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5684
+ encryptedCredential?: string;
5463
5685
  }
5464
5686
 
5465
5687
  /** Eloqua server linked service. */
@@ -5478,19 +5700,19 @@ export interface EloquaLinkedService extends LinkedService {
5478
5700
  useHostVerification?: any;
5479
5701
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5480
5702
  usePeerVerification?: any;
5481
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5482
- encryptedCredential?: any;
5703
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5704
+ encryptedCredential?: string;
5483
5705
  }
5484
5706
 
5485
5707
  /** Google BigQuery service linked service. */
5486
5708
  export interface GoogleBigQueryLinkedService extends LinkedService {
5487
5709
  /** Polymorphic discriminator, which specifies the different types this object can be */
5488
5710
  type: "GoogleBigQuery";
5489
- /** The default BigQuery project to query against. */
5711
+ /** The default BigQuery project to query against. Type: string (or Expression with resultType string). */
5490
5712
  project: any;
5491
- /** A comma-separated list of public BigQuery projects to access. */
5713
+ /** A comma-separated list of public BigQuery projects to access. Type: string (or Expression with resultType string). */
5492
5714
  additionalProjects?: any;
5493
- /** 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. */
5715
+ /** 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). */
5494
5716
  requestGoogleDriveScope?: any;
5495
5717
  /** The OAuth 2.0 authentication mechanism used for authentication. ServiceAuthentication can only be used on self-hosted IR. */
5496
5718
  authenticationType: GoogleBigQueryAuthenticationType;
@@ -5500,16 +5722,16 @@ export interface GoogleBigQueryLinkedService extends LinkedService {
5500
5722
  clientId?: any;
5501
5723
  /** The client secret of the google application used to acquire the refresh token. */
5502
5724
  clientSecret?: SecretBaseUnion;
5503
- /** The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. */
5725
+ /** 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). */
5504
5726
  email?: any;
5505
- /** 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. */
5727
+ /** 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). */
5506
5728
  keyFilePath?: any;
5507
- /** 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. */
5729
+ /** 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). */
5508
5730
  trustedCertPath?: any;
5509
- /** Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. */
5731
+ /** 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). */
5510
5732
  useSystemTrustStore?: any;
5511
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5512
- encryptedCredential?: any;
5733
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5734
+ encryptedCredential?: string;
5513
5735
  }
5514
5736
 
5515
5737
  /** Greenplum Database linked service. */
@@ -5520,8 +5742,8 @@ export interface GreenplumLinkedService extends LinkedService {
5520
5742
  connectionString?: any;
5521
5743
  /** The Azure key vault secret reference of password in connection string. */
5522
5744
  pwd?: AzureKeyVaultSecretReference;
5523
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5524
- encryptedCredential?: any;
5745
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5746
+ encryptedCredential?: string;
5525
5747
  }
5526
5748
 
5527
5749
  /** HBase server linked service. */
@@ -5548,8 +5770,8 @@ export interface HBaseLinkedService extends LinkedService {
5548
5770
  allowHostNameCNMismatch?: any;
5549
5771
  /** Specifies whether to allow self-signed certificates from the server. The default value is false. */
5550
5772
  allowSelfSignedServerCert?: any;
5551
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5552
- encryptedCredential?: any;
5773
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5774
+ encryptedCredential?: string;
5553
5775
  }
5554
5776
 
5555
5777
  /** Hive Server linked service. */
@@ -5588,8 +5810,8 @@ export interface HiveLinkedService extends LinkedService {
5588
5810
  allowHostNameCNMismatch?: any;
5589
5811
  /** Specifies whether to allow self-signed certificates from the server. The default value is false. */
5590
5812
  allowSelfSignedServerCert?: any;
5591
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5592
- encryptedCredential?: any;
5813
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5814
+ encryptedCredential?: string;
5593
5815
  }
5594
5816
 
5595
5817
  /** Hubspot Service linked service. */
@@ -5610,8 +5832,8 @@ export interface HubspotLinkedService extends LinkedService {
5610
5832
  useHostVerification?: any;
5611
5833
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5612
5834
  usePeerVerification?: any;
5613
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5614
- encryptedCredential?: any;
5835
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5836
+ encryptedCredential?: string;
5615
5837
  }
5616
5838
 
5617
5839
  /** Impala server linked service. */
@@ -5638,8 +5860,8 @@ export interface ImpalaLinkedService extends LinkedService {
5638
5860
  allowHostNameCNMismatch?: any;
5639
5861
  /** Specifies whether to allow self-signed certificates from the server. The default value is false. */
5640
5862
  allowSelfSignedServerCert?: any;
5641
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5642
- encryptedCredential?: any;
5863
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5864
+ encryptedCredential?: string;
5643
5865
  }
5644
5866
 
5645
5867
  /** Jira Service linked service. */
@@ -5660,8 +5882,8 @@ export interface JiraLinkedService extends LinkedService {
5660
5882
  useHostVerification?: any;
5661
5883
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5662
5884
  usePeerVerification?: any;
5663
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5664
- encryptedCredential?: any;
5885
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5886
+ encryptedCredential?: string;
5665
5887
  }
5666
5888
 
5667
5889
  /** Magento server linked service. */
@@ -5678,8 +5900,8 @@ export interface MagentoLinkedService extends LinkedService {
5678
5900
  useHostVerification?: any;
5679
5901
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5680
5902
  usePeerVerification?: any;
5681
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5682
- encryptedCredential?: any;
5903
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5904
+ encryptedCredential?: string;
5683
5905
  }
5684
5906
 
5685
5907
  /** MariaDB server linked service. */
@@ -5690,8 +5912,8 @@ export interface MariaDBLinkedService extends LinkedService {
5690
5912
  connectionString?: any;
5691
5913
  /** The Azure key vault secret reference of password in connection string. */
5692
5914
  pwd?: AzureKeyVaultSecretReference;
5693
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5694
- encryptedCredential?: any;
5915
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5916
+ encryptedCredential?: string;
5695
5917
  }
5696
5918
 
5697
5919
  /** Azure Database for MariaDB linked service. */
@@ -5702,8 +5924,8 @@ export interface AzureMariaDBLinkedService extends LinkedService {
5702
5924
  connectionString?: any;
5703
5925
  /** The Azure key vault secret reference of password in connection string. */
5704
5926
  pwd?: AzureKeyVaultSecretReference;
5705
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5706
- encryptedCredential?: any;
5927
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5928
+ encryptedCredential?: string;
5707
5929
  }
5708
5930
 
5709
5931
  /** Marketo server linked service. */
@@ -5722,15 +5944,15 @@ export interface MarketoLinkedService extends LinkedService {
5722
5944
  useHostVerification?: any;
5723
5945
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5724
5946
  usePeerVerification?: any;
5725
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5726
- encryptedCredential?: any;
5947
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5948
+ encryptedCredential?: string;
5727
5949
  }
5728
5950
 
5729
5951
  /** Paypal Service linked service. */
5730
5952
  export interface PaypalLinkedService extends LinkedService {
5731
5953
  /** Polymorphic discriminator, which specifies the different types this object can be */
5732
5954
  type: "Paypal";
5733
- /** The URL of the PayPal instance. (i.e. api.sandbox.paypal.com) */
5955
+ /** The URL of the PayPal instance. (i.e. api.sandbox.paypal.com) */
5734
5956
  host: any;
5735
5957
  /** The client ID associated with your PayPal application. */
5736
5958
  clientId: any;
@@ -5742,8 +5964,8 @@ export interface PaypalLinkedService extends LinkedService {
5742
5964
  useHostVerification?: any;
5743
5965
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5744
5966
  usePeerVerification?: any;
5745
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5746
- encryptedCredential?: any;
5967
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5968
+ encryptedCredential?: string;
5747
5969
  }
5748
5970
 
5749
5971
  /** Phoenix server linked service. */
@@ -5772,8 +5994,8 @@ export interface PhoenixLinkedService extends LinkedService {
5772
5994
  allowHostNameCNMismatch?: any;
5773
5995
  /** Specifies whether to allow self-signed certificates from the server. The default value is false. */
5774
5996
  allowSelfSignedServerCert?: any;
5775
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5776
- encryptedCredential?: any;
5997
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
5998
+ encryptedCredential?: string;
5777
5999
  }
5778
6000
 
5779
6001
  /** Presto server linked service. */
@@ -5806,8 +6028,8 @@ export interface PrestoLinkedService extends LinkedService {
5806
6028
  allowSelfSignedServerCert?: any;
5807
6029
  /** 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. */
5808
6030
  timeZoneID?: any;
5809
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5810
- encryptedCredential?: any;
6031
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6032
+ encryptedCredential?: string;
5811
6033
  }
5812
6034
 
5813
6035
  /** QuickBooks server linked service. */
@@ -5830,8 +6052,8 @@ export interface QuickBooksLinkedService extends LinkedService {
5830
6052
  accessTokenSecret?: SecretBaseUnion;
5831
6053
  /** Specifies whether the data source endpoints are encrypted using HTTPS. The default value is true. */
5832
6054
  useEncryptedEndpoints?: any;
5833
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5834
- encryptedCredential?: any;
6055
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6056
+ encryptedCredential?: string;
5835
6057
  }
5836
6058
 
5837
6059
  /** ServiceNow server linked service. */
@@ -5856,8 +6078,8 @@ export interface ServiceNowLinkedService extends LinkedService {
5856
6078
  useHostVerification?: any;
5857
6079
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5858
6080
  usePeerVerification?: any;
5859
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5860
- encryptedCredential?: any;
6081
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6082
+ encryptedCredential?: string;
5861
6083
  }
5862
6084
 
5863
6085
  /** Shopify Service linked service. */
@@ -5874,8 +6096,8 @@ export interface ShopifyLinkedService extends LinkedService {
5874
6096
  useHostVerification?: any;
5875
6097
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5876
6098
  usePeerVerification?: any;
5877
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5878
- encryptedCredential?: any;
6099
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6100
+ encryptedCredential?: string;
5879
6101
  }
5880
6102
 
5881
6103
  /** Spark Server linked service. */
@@ -5908,8 +6130,8 @@ export interface SparkLinkedService extends LinkedService {
5908
6130
  allowHostNameCNMismatch?: any;
5909
6131
  /** Specifies whether to allow self-signed certificates from the server. The default value is false. */
5910
6132
  allowSelfSignedServerCert?: any;
5911
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5912
- encryptedCredential?: any;
6133
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6134
+ encryptedCredential?: string;
5913
6135
  }
5914
6136
 
5915
6137
  /** Square Service linked service. */
@@ -5918,7 +6140,7 @@ export interface SquareLinkedService extends LinkedService {
5918
6140
  type: "Square";
5919
6141
  /** Properties used to connect to Square. It is mutually exclusive with any other properties in the linked service. Type: object. */
5920
6142
  connectionProperties?: any;
5921
- /** The URL of the Square instance. (i.e. mystore.mysquare.com) */
6143
+ /** The URL of the Square instance. (i.e. mystore.mysquare.com) */
5922
6144
  host?: any;
5923
6145
  /** The client ID associated with your Square application. */
5924
6146
  clientId?: any;
@@ -5932,8 +6154,8 @@ export interface SquareLinkedService extends LinkedService {
5932
6154
  useHostVerification?: any;
5933
6155
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5934
6156
  usePeerVerification?: any;
5935
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5936
- encryptedCredential?: any;
6157
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6158
+ encryptedCredential?: string;
5937
6159
  }
5938
6160
 
5939
6161
  /** Xero Service linked service. */
@@ -5957,8 +6179,8 @@ export interface XeroLinkedService extends LinkedService {
5957
6179
  useHostVerification?: any;
5958
6180
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5959
6181
  usePeerVerification?: any;
5960
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5961
- encryptedCredential?: any;
6182
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6183
+ encryptedCredential?: string;
5962
6184
  }
5963
6185
 
5964
6186
  /** Zoho server linked service. */
@@ -5977,8 +6199,8 @@ export interface ZohoLinkedService extends LinkedService {
5977
6199
  useHostVerification?: any;
5978
6200
  /** Specifies whether to verify the identity of the server when connecting over SSL. The default value is true. */
5979
6201
  usePeerVerification?: any;
5980
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5981
- encryptedCredential?: any;
6202
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6203
+ encryptedCredential?: string;
5982
6204
  }
5983
6205
 
5984
6206
  /** Vertica linked service. */
@@ -5989,8 +6211,8 @@ export interface VerticaLinkedService extends LinkedService {
5989
6211
  connectionString?: any;
5990
6212
  /** The Azure key vault secret reference of password in connection string. */
5991
6213
  pwd?: AzureKeyVaultSecretReference;
5992
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
5993
- encryptedCredential?: any;
6214
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6215
+ encryptedCredential?: string;
5994
6216
  }
5995
6217
 
5996
6218
  /** Netezza linked service. */
@@ -6001,8 +6223,8 @@ export interface NetezzaLinkedService extends LinkedService {
6001
6223
  connectionString?: any;
6002
6224
  /** The Azure key vault secret reference of password in connection string. */
6003
6225
  pwd?: AzureKeyVaultSecretReference;
6004
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6005
- encryptedCredential?: any;
6226
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6227
+ encryptedCredential?: string;
6006
6228
  }
6007
6229
 
6008
6230
  /** Salesforce Marketing Cloud linked service. */
@@ -6021,8 +6243,8 @@ export interface SalesforceMarketingCloudLinkedService extends LinkedService {
6021
6243
  useHostVerification?: any;
6022
6244
  /** 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). */
6023
6245
  usePeerVerification?: any;
6024
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6025
- encryptedCredential?: any;
6246
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6247
+ encryptedCredential?: string;
6026
6248
  }
6027
6249
 
6028
6250
  /** HDInsight ondemand linked service. */
@@ -6081,8 +6303,8 @@ export interface HDInsightOnDemandLinkedService extends LinkedService {
6081
6303
  stormConfiguration?: any;
6082
6304
  /** Specifies the Yarn configuration parameters (yarn-site.xml) for the HDInsight cluster. */
6083
6305
  yarnConfiguration?: any;
6084
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6085
- encryptedCredential?: any;
6306
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6307
+ encryptedCredential?: string;
6086
6308
  /** Specifies the size of the head node for the HDInsight cluster. */
6087
6309
  headNodeSize?: any;
6088
6310
  /** Specifies the size of the data node for the HDInsight cluster. */
@@ -6117,8 +6339,8 @@ export interface AzureDataLakeAnalyticsLinkedService extends LinkedService {
6117
6339
  resourceGroupName?: any;
6118
6340
  /** Azure Data Lake Analytics URI Type: string (or Expression with resultType string). */
6119
6341
  dataLakeAnalyticsUri?: any;
6120
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6121
- encryptedCredential?: any;
6342
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6343
+ encryptedCredential?: string;
6122
6344
  }
6123
6345
 
6124
6346
  /** Azure Databricks linked service. */
@@ -6157,8 +6379,8 @@ export interface AzureDatabricksLinkedService extends LinkedService {
6157
6379
  newClusterInitScripts?: any;
6158
6380
  /** 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). */
6159
6381
  newClusterEnableElasticDisk?: any;
6160
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6161
- encryptedCredential?: any;
6382
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6383
+ encryptedCredential?: string;
6162
6384
  /** 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). */
6163
6385
  policyId?: any;
6164
6386
  /** The credential reference containing authentication information. */
@@ -6175,8 +6397,8 @@ export interface AzureDatabricksDeltaLakeLinkedService extends LinkedService {
6175
6397
  accessToken?: SecretBaseUnion;
6176
6398
  /** The id of an existing interactive cluster that will be used for all runs of this job. Type: string (or Expression with resultType string). */
6177
6399
  clusterId?: any;
6178
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6179
- encryptedCredential?: any;
6400
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6401
+ encryptedCredential?: string;
6180
6402
  /** The credential reference containing authentication information. */
6181
6403
  credential?: CredentialReference;
6182
6404
  /** Workspace resource id for databricks REST API. Type: string (or Expression with resultType string). */
@@ -6199,8 +6421,8 @@ export interface ResponsysLinkedService extends LinkedService {
6199
6421
  useHostVerification?: any;
6200
6422
  /** 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). */
6201
6423
  usePeerVerification?: any;
6202
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6203
- encryptedCredential?: any;
6424
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6425
+ encryptedCredential?: string;
6204
6426
  }
6205
6427
 
6206
6428
  /** Dynamics AX linked service. */
@@ -6217,8 +6439,8 @@ export interface DynamicsAXLinkedService extends LinkedService {
6217
6439
  tenant: any;
6218
6440
  /** Specify the resource you are requesting authorization. Type: string (or Expression with resultType string). */
6219
6441
  aadResourceId: any;
6220
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6221
- encryptedCredential?: any;
6442
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6443
+ encryptedCredential?: string;
6222
6444
  }
6223
6445
 
6224
6446
  /** Oracle Service Cloud linked service. */
@@ -6237,17 +6459,17 @@ export interface OracleServiceCloudLinkedService extends LinkedService {
6237
6459
  useHostVerification?: any;
6238
6460
  /** 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). */
6239
6461
  usePeerVerification?: any;
6240
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6241
- encryptedCredential?: any;
6462
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6463
+ encryptedCredential?: string;
6242
6464
  }
6243
6465
 
6244
6466
  /** Google AdWords service linked service. */
6245
6467
  export interface GoogleAdWordsLinkedService extends LinkedService {
6246
6468
  /** Polymorphic discriminator, which specifies the different types this object can be */
6247
6469
  type: "GoogleAdWords";
6248
- /** Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object. */
6470
+ /** (Deprecated) Properties used to connect to GoogleAds. It is mutually exclusive with any other properties in the linked service. Type: object. */
6249
6471
  connectionProperties?: any;
6250
- /** The Client customer ID of the AdWords account that you want to fetch report data for. */
6472
+ /** The Client customer ID of the AdWords account that you want to fetch report data for. Type: string (or Expression with resultType string). */
6251
6473
  clientCustomerID?: any;
6252
6474
  /** The developer token associated with the manager account that you use to grant access to the AdWords API. */
6253
6475
  developerToken?: SecretBaseUnion;
@@ -6259,16 +6481,24 @@ export interface GoogleAdWordsLinkedService extends LinkedService {
6259
6481
  clientId?: any;
6260
6482
  /** The client secret of the google application used to acquire the refresh token. */
6261
6483
  clientSecret?: SecretBaseUnion;
6262
- /** The service account email ID that is used for ServiceAuthentication and can only be used on self-hosted IR. */
6484
+ /** 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). */
6263
6485
  email?: any;
6264
- /** 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. */
6486
+ /** (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). */
6265
6487
  keyFilePath?: any;
6266
- /** 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. */
6488
+ /** (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). */
6267
6489
  trustedCertPath?: any;
6268
- /** Specifies whether to use a CA certificate from the system trust store or from a specified PEM file. The default value is false. */
6490
+ /** (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). */
6269
6491
  useSystemTrustStore?: any;
6270
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6271
- encryptedCredential?: any;
6492
+ /** The private key that is used to authenticate the service account email address and can only be used on self-hosted IR. */
6493
+ privateKey?: SecretBaseUnion;
6494
+ /** 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). */
6495
+ loginCustomerID?: any;
6496
+ /** 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). */
6497
+ googleAdsApiVersion?: any;
6498
+ /** 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). */
6499
+ supportLegacyDataTypes?: any;
6500
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6501
+ encryptedCredential?: string;
6272
6502
  }
6273
6503
 
6274
6504
  /** SAP Table Linked Service. */
@@ -6305,8 +6535,8 @@ export interface SapTableLinkedService extends LinkedService {
6305
6535
  sncQop?: any;
6306
6536
  /** The Logon Group for the SAP System. Type: string (or Expression with resultType string). */
6307
6537
  logonGroup?: any;
6308
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6309
- encryptedCredential?: any;
6538
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6539
+ encryptedCredential?: string;
6310
6540
  }
6311
6541
 
6312
6542
  /** Azure Data Explorer (Kusto) linked service. */
@@ -6335,8 +6565,8 @@ export interface AzureFunctionLinkedService extends LinkedService {
6335
6565
  functionAppUrl: any;
6336
6566
  /** Function or Host key for Azure Function App. */
6337
6567
  functionKey?: SecretBaseUnion;
6338
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6339
- encryptedCredential?: any;
6568
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6569
+ encryptedCredential?: string;
6340
6570
  /** The credential reference containing authentication information. */
6341
6571
  credential?: CredentialReference;
6342
6572
  /** Allowed token audiences for azure function. */
@@ -6353,8 +6583,8 @@ export interface SnowflakeLinkedService extends LinkedService {
6353
6583
  connectionString: any;
6354
6584
  /** The Azure key vault secret reference of password in connection string. */
6355
6585
  password?: AzureKeyVaultSecretReference;
6356
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6357
- encryptedCredential?: any;
6586
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6587
+ encryptedCredential?: string;
6358
6588
  }
6359
6589
 
6360
6590
  /** SharePoint Online List linked service. */
@@ -6369,8 +6599,8 @@ export interface SharePointOnlineListLinkedService extends LinkedService {
6369
6599
  servicePrincipalId: any;
6370
6600
  /** The client secret of your application registered in Azure Active Directory. Type: string (or Expression with resultType string). */
6371
6601
  servicePrincipalKey: SecretBaseUnion;
6372
- /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string). */
6373
- encryptedCredential?: any;
6602
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6603
+ encryptedCredential?: string;
6374
6604
  }
6375
6605
 
6376
6606
  /** Azure Synapse Analytics (Artifacts) linked service. */
@@ -6385,6 +6615,28 @@ export interface AzureSynapseArtifactsLinkedService extends LinkedService {
6385
6615
  workspaceResourceId?: any;
6386
6616
  }
6387
6617
 
6618
+ /** Microsoft Fabric LakeHouse linked service. */
6619
+ export interface LakeHouseLinkedService extends LinkedService {
6620
+ /** Polymorphic discriminator, which specifies the different types this object can be */
6621
+ type: "LakeHouse";
6622
+ /** The ID of Microsoft Fabric workspace. Type: string (or Expression with resultType string). */
6623
+ workspaceId?: any;
6624
+ /** The ID of Microsoft Fabric LakeHouse artifact. Type: string (or Expression with resultType string). */
6625
+ artifactId?: any;
6626
+ /** The ID of the application used to authenticate against Microsoft Fabric LakeHouse. Type: string (or Expression with resultType string). */
6627
+ servicePrincipalId?: any;
6628
+ /** The Key of the application used to authenticate against Microsoft Fabric LakeHouse. */
6629
+ servicePrincipalKey?: SecretBaseUnion;
6630
+ /** The name or ID of the tenant to which the service principal belongs. Type: string (or Expression with resultType string). */
6631
+ tenant?: any;
6632
+ /** The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string. */
6633
+ encryptedCredential?: string;
6634
+ /** 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). */
6635
+ servicePrincipalCredentialType?: any;
6636
+ /** 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. */
6637
+ servicePrincipalCredential?: SecretBaseUnion;
6638
+ }
6639
+
6388
6640
  /** A single Amazon Simple Storage Service (S3) object or a set of S3 objects. */
6389
6641
  export interface AmazonS3Dataset extends Dataset {
6390
6642
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -6958,10 +7210,10 @@ export interface RestResourceDataset extends Dataset {
6958
7210
  requestMethod?: any;
6959
7211
  /** The HTTP request body to the RESTful API if requestMethod is POST. Type: string (or Expression with resultType string). */
6960
7212
  requestBody?: any;
6961
- /** The additional HTTP headers in the request to the RESTful API. Type: string (or Expression with resultType string). */
6962
- additionalHeaders?: any;
6963
- /** The pagination rules to compose next page requests. Type: string (or Expression with resultType string). */
6964
- paginationRules?: any;
7213
+ /** The additional HTTP headers in the request to the RESTful API. */
7214
+ additionalHeaders?: { [propertyName: string]: any };
7215
+ /** The pagination rules to compose next page requests. */
7216
+ paginationRules?: { [propertyName: string]: any };
6965
7217
  }
6966
7218
 
6967
7219
  /** SAP Table Resource properties. */
@@ -7374,6 +7626,14 @@ export interface AzureDatabricksDeltaLakeDataset extends Dataset {
7374
7626
  database?: any;
7375
7627
  }
7376
7628
 
7629
+ /** Microsoft Fabric LakeHouse Table. */
7630
+ export interface LakeHouseTableDataset extends Dataset {
7631
+ /** Polymorphic discriminator, which specifies the different types this object can be */
7632
+ type: "LakeHouseTable";
7633
+ /** The name of Microsoft Fabric LakeHouse Table. Type: string (or Expression with resultType string). */
7634
+ table?: any;
7635
+ }
7636
+
7377
7637
  /** Base class for all control activities like IfCondition, ForEach , Until. */
7378
7638
  export interface ControlActivity extends Activity {
7379
7639
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -7744,6 +8004,12 @@ export interface HdfsLocation extends DatasetLocation {
7744
8004
  type: "HdfsLocation";
7745
8005
  }
7746
8006
 
8007
+ /** The location of Microsoft Fabric LakeHouse Files dataset. */
8008
+ export interface LakeHouseLocation extends DatasetLocation {
8009
+ /** Polymorphic discriminator, which specifies the different types this object can be */
8010
+ type: "LakeHouseLocation";
8011
+ }
8012
+
7747
8013
  /** The data stored in text format. */
7748
8014
  export interface TextFormat extends DatasetStorageFormat {
7749
8015
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -7904,8 +8170,8 @@ export interface AzureBlobStorageReadSettings extends StoreReadSettings {
7904
8170
  prefix?: any;
7905
8171
  /** 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). */
7906
8172
  fileListPath?: any;
7907
- /** Indicates whether to enable partition discovery. */
7908
- enablePartitionDiscovery?: boolean;
8173
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8174
+ enablePartitionDiscovery?: any;
7909
8175
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
7910
8176
  partitionRootPath?: any;
7911
8177
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -7928,8 +8194,8 @@ export interface AzureBlobFSReadSettings extends StoreReadSettings {
7928
8194
  wildcardFileName?: any;
7929
8195
  /** 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). */
7930
8196
  fileListPath?: any;
7931
- /** Indicates whether to enable partition discovery. */
7932
- enablePartitionDiscovery?: boolean;
8197
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8198
+ enablePartitionDiscovery?: any;
7933
8199
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
7934
8200
  partitionRootPath?: any;
7935
8201
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -7956,8 +8222,8 @@ export interface AzureDataLakeStoreReadSettings extends StoreReadSettings {
7956
8222
  listAfter?: any;
7957
8223
  /** 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). */
7958
8224
  listBefore?: any;
7959
- /** Indicates whether to enable partition discovery. */
7960
- enablePartitionDiscovery?: boolean;
8225
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8226
+ enablePartitionDiscovery?: any;
7961
8227
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
7962
8228
  partitionRootPath?: any;
7963
8229
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -7982,8 +8248,8 @@ export interface AmazonS3ReadSettings extends StoreReadSettings {
7982
8248
  prefix?: any;
7983
8249
  /** 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). */
7984
8250
  fileListPath?: any;
7985
- /** Indicates whether to enable partition discovery. */
7986
- enablePartitionDiscovery?: boolean;
8251
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8252
+ enablePartitionDiscovery?: any;
7987
8253
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
7988
8254
  partitionRootPath?: any;
7989
8255
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -8006,8 +8272,8 @@ export interface FileServerReadSettings extends StoreReadSettings {
8006
8272
  wildcardFileName?: any;
8007
8273
  /** 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). */
8008
8274
  fileListPath?: any;
8009
- /** Indicates whether to enable partition discovery. */
8010
- enablePartitionDiscovery?: boolean;
8275
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8276
+ enablePartitionDiscovery?: any;
8011
8277
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
8012
8278
  partitionRootPath?: any;
8013
8279
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -8034,8 +8300,8 @@ export interface AzureFileStorageReadSettings extends StoreReadSettings {
8034
8300
  prefix?: any;
8035
8301
  /** 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). */
8036
8302
  fileListPath?: any;
8037
- /** Indicates whether to enable partition discovery. */
8038
- enablePartitionDiscovery?: boolean;
8303
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8304
+ enablePartitionDiscovery?: any;
8039
8305
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
8040
8306
  partitionRootPath?: any;
8041
8307
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -8060,8 +8326,8 @@ export interface AmazonS3CompatibleReadSettings extends StoreReadSettings {
8060
8326
  prefix?: any;
8061
8327
  /** 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). */
8062
8328
  fileListPath?: any;
8063
- /** Indicates whether to enable partition discovery. */
8064
- enablePartitionDiscovery?: boolean;
8329
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8330
+ enablePartitionDiscovery?: any;
8065
8331
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
8066
8332
  partitionRootPath?: any;
8067
8333
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -8086,8 +8352,8 @@ export interface OracleCloudStorageReadSettings extends StoreReadSettings {
8086
8352
  prefix?: any;
8087
8353
  /** 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). */
8088
8354
  fileListPath?: any;
8089
- /** Indicates whether to enable partition discovery. */
8090
- enablePartitionDiscovery?: boolean;
8355
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8356
+ enablePartitionDiscovery?: any;
8091
8357
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
8092
8358
  partitionRootPath?: any;
8093
8359
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -8112,8 +8378,8 @@ export interface GoogleCloudStorageReadSettings extends StoreReadSettings {
8112
8378
  prefix?: any;
8113
8379
  /** 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). */
8114
8380
  fileListPath?: any;
8115
- /** Indicates whether to enable partition discovery. */
8116
- enablePartitionDiscovery?: boolean;
8381
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8382
+ enablePartitionDiscovery?: any;
8117
8383
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
8118
8384
  partitionRootPath?: any;
8119
8385
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
@@ -8134,16 +8400,16 @@ export interface FtpReadSettings extends StoreReadSettings {
8134
8400
  wildcardFolderPath?: any;
8135
8401
  /** Ftp wildcardFileName. Type: string (or Expression with resultType string). */
8136
8402
  wildcardFileName?: any;
8137
- /** Indicates whether to enable partition discovery. */
8138
- enablePartitionDiscovery?: boolean;
8403
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8404
+ enablePartitionDiscovery?: any;
8139
8405
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
8140
8406
  partitionRootPath?: any;
8141
8407
  /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
8142
8408
  deleteFilesAfterCompletion?: any;
8143
8409
  /** 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). */
8144
8410
  fileListPath?: any;
8145
- /** Specify whether to use binary transfer mode for FTP stores. */
8146
- useBinaryTransfer?: boolean;
8411
+ /** Specify whether to use binary transfer mode for FTP stores. Type: boolean (or Expression with resultType boolean). */
8412
+ useBinaryTransfer?: any;
8147
8413
  /** If true, disable parallel reading within each file. Default is false. Type: boolean (or Expression with resultType boolean). */
8148
8414
  disableChunking?: any;
8149
8415
  }
@@ -8158,8 +8424,8 @@ export interface SftpReadSettings extends StoreReadSettings {
8158
8424
  wildcardFolderPath?: any;
8159
8425
  /** Sftp wildcardFileName. Type: string (or Expression with resultType string). */
8160
8426
  wildcardFileName?: any;
8161
- /** Indicates whether to enable partition discovery. */
8162
- enablePartitionDiscovery?: boolean;
8427
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8428
+ enablePartitionDiscovery?: any;
8163
8429
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
8164
8430
  partitionRootPath?: any;
8165
8431
  /** 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). */
@@ -8174,7 +8440,7 @@ export interface SftpReadSettings extends StoreReadSettings {
8174
8440
  disableChunking?: any;
8175
8441
  }
8176
8442
 
8177
- /** Sftp read settings. */
8443
+ /** Http read settings. */
8178
8444
  export interface HttpReadSettings extends StoreReadSettings {
8179
8445
  /** Polymorphic discriminator, which specifies the different types this object can be */
8180
8446
  type: "HttpReadSettings";
@@ -8184,12 +8450,10 @@ export interface HttpReadSettings extends StoreReadSettings {
8184
8450
  requestBody?: any;
8185
8451
  /** The additional HTTP headers in the request to the RESTful API. Type: string (or Expression with resultType string). */
8186
8452
  additionalHeaders?: any;
8187
- /** Specifies the timeout for a HTTP client to get HTTP response from HTTP server. */
8453
+ /** Specifies the timeout for a HTTP client to get HTTP response from HTTP server. Type: string (or Expression with resultType string). */
8188
8454
  requestTimeout?: any;
8189
- /** Indicates whether to enable partition discovery. */
8190
- enablePartitionDiscovery?: boolean;
8191
- /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
8192
- partitionRootPath?: any;
8455
+ /** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
8456
+ additionalColumns?: any;
8193
8457
  }
8194
8458
 
8195
8459
  /** HDFS read settings. */
@@ -8204,8 +8468,8 @@ export interface HdfsReadSettings extends StoreReadSettings {
8204
8468
  wildcardFileName?: any;
8205
8469
  /** 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). */
8206
8470
  fileListPath?: any;
8207
- /** Indicates whether to enable partition discovery. */
8208
- enablePartitionDiscovery?: boolean;
8471
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8472
+ enablePartitionDiscovery?: any;
8209
8473
  /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
8210
8474
  partitionRootPath?: any;
8211
8475
  /** The start of file's modified datetime. Type: string (or Expression with resultType string). */
@@ -8218,6 +8482,30 @@ export interface HdfsReadSettings extends StoreReadSettings {
8218
8482
  deleteFilesAfterCompletion?: any;
8219
8483
  }
8220
8484
 
8485
+ /** Microsoft Fabric LakeHouse Files read settings. */
8486
+ export interface LakeHouseReadSettings extends StoreReadSettings {
8487
+ /** Polymorphic discriminator, which specifies the different types this object can be */
8488
+ type: "LakeHouseReadSettings";
8489
+ /** If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean). */
8490
+ recursive?: any;
8491
+ /** Microsoft Fabric LakeHouse Files wildcardFolderPath. Type: string (or Expression with resultType string). */
8492
+ wildcardFolderPath?: any;
8493
+ /** Microsoft Fabric LakeHouse Files wildcardFileName. Type: string (or Expression with resultType string). */
8494
+ wildcardFileName?: any;
8495
+ /** 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). */
8496
+ fileListPath?: any;
8497
+ /** Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean). */
8498
+ enablePartitionDiscovery?: any;
8499
+ /** Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string). */
8500
+ partitionRootPath?: any;
8501
+ /** Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean). */
8502
+ deleteFilesAfterCompletion?: any;
8503
+ /** The start of file's modified datetime. Type: string (or Expression with resultType string). */
8504
+ modifiedDatetimeStart?: any;
8505
+ /** The end of file's modified datetime. Type: string (or Expression with resultType string). */
8506
+ modifiedDatetimeEnd?: any;
8507
+ }
8508
+
8221
8509
  /** Sftp write settings. */
8222
8510
  export interface SftpWriteSettings extends StoreWriteSettings {
8223
8511
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -8248,7 +8536,7 @@ export interface AzureBlobFSWriteSettings extends StoreWriteSettings {
8248
8536
  export interface AzureDataLakeStoreWriteSettings extends StoreWriteSettings {
8249
8537
  /** Polymorphic discriminator, which specifies the different types this object can be */
8250
8538
  type: "AzureDataLakeStoreWriteSettings";
8251
- /** 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). */
8539
+ /** 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). */
8252
8540
  expiryDateTime?: any;
8253
8541
  }
8254
8542
 
@@ -8264,6 +8552,20 @@ export interface AzureFileStorageWriteSettings extends StoreWriteSettings {
8264
8552
  type: "AzureFileStorageWriteSettings";
8265
8553
  }
8266
8554
 
8555
+ /** Microsoft Fabric LakeHouse Files write settings. */
8556
+ export interface LakeHouseWriteSettings extends StoreWriteSettings {
8557
+ /** Polymorphic discriminator, which specifies the different types this object can be */
8558
+ type: "LakeHouseWriteSettings";
8559
+ }
8560
+
8561
+ /** Parquet read settings. */
8562
+ export interface ParquetReadSettings extends FormatReadSettings {
8563
+ /** Polymorphic discriminator, which specifies the different types this object can be */
8564
+ type: "ParquetReadSettings";
8565
+ /** Compression settings. */
8566
+ compressionProperties?: CompressionReadSettingsUnion;
8567
+ }
8568
+
8267
8569
  /** Delimited text read settings. */
8268
8570
  export interface DelimitedTextReadSettings extends FormatReadSettings {
8269
8571
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -8412,6 +8714,8 @@ export interface ParquetSource extends CopySource {
8412
8714
  type: "ParquetSource";
8413
8715
  /** Parquet store settings. */
8414
8716
  storeSettings?: StoreReadSettingsUnion;
8717
+ /** Parquet format settings. */
8718
+ formatSettings?: ParquetReadSettings;
8415
8719
  /** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
8416
8720
  additionalColumns?: any;
8417
8721
  }
@@ -8652,8 +8956,8 @@ export interface SalesforceServiceCloudSource extends CopySource {
8652
8956
  type: "SalesforceServiceCloudSource";
8653
8957
  /** Database query. Type: string (or Expression with resultType string). */
8654
8958
  query?: any;
8655
- /** The read behavior for the operation. Default is Query. */
8656
- readBehavior?: SalesforceSourceReadBehavior;
8959
+ /** The read behavior for the operation. Default is Query. Allowed values: Query/QueryAll. Type: string (or Expression with resultType string). */
8960
+ readBehavior?: any;
8657
8961
  /** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
8658
8962
  additionalColumns?: any;
8659
8963
  }
@@ -8824,7 +9128,7 @@ export interface Office365Source extends CopySource {
8824
9128
  startTime?: any;
8825
9129
  /** End time of the requested range for this dataset. Type: string (or Expression with resultType string). */
8826
9130
  endTime?: any;
8827
- /** 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" } ] */
9131
+ /** 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" } ] */
8828
9132
  outputColumns?: any;
8829
9133
  }
8830
9134
 
@@ -8856,6 +9160,18 @@ export interface HttpSource extends CopySource {
8856
9160
  httpRequestTimeout?: any;
8857
9161
  }
8858
9162
 
9163
+ /** A copy activity source for Microsoft Fabric LakeHouse Table. */
9164
+ export interface LakeHouseTableSource extends CopySource {
9165
+ /** Polymorphic discriminator, which specifies the different types this object can be */
9166
+ type: "LakeHouseTableSource";
9167
+ /** Query an older snapshot by timestamp. Type: string (or Expression with resultType string). */
9168
+ timestampAsOf?: any;
9169
+ /** Query an older snapshot by version. Type: integer (or Expression with resultType integer). */
9170
+ versionAsOf?: any;
9171
+ /** Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects). */
9172
+ additionalColumns?: any;
9173
+ }
9174
+
8859
9175
  /** A copy activity snowflake source. */
8860
9176
  export interface SnowflakeSource extends CopySource {
8861
9177
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -9200,7 +9516,7 @@ export interface OracleSink extends CopySink {
9200
9516
  export interface AzureDataLakeStoreSink extends CopySink {
9201
9517
  /** Polymorphic discriminator, which specifies the different types this object can be */
9202
9518
  type: "AzureDataLakeStoreSink";
9203
- /** The type of copy behavior for copy sink. */
9519
+ /** The type of copy behavior for copy sink. Type: string (or Expression with resultType string). */
9204
9520
  copyBehavior?: any;
9205
9521
  /** Single File Parallel. */
9206
9522
  enableAdlsSingleFileParallel?: any;
@@ -9210,7 +9526,7 @@ export interface AzureDataLakeStoreSink extends CopySink {
9210
9526
  export interface AzureBlobFSSink extends CopySink {
9211
9527
  /** Polymorphic discriminator, which specifies the different types this object can be */
9212
9528
  type: "AzureBlobFSSink";
9213
- /** The type of copy behavior for copy sink. */
9529
+ /** The type of copy behavior for copy sink. Type: string (or Expression with resultType string). */
9214
9530
  copyBehavior?: any;
9215
9531
  /** Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects). */
9216
9532
  metadata?: MetadataItem[];
@@ -9344,6 +9660,18 @@ export interface CosmosDbMongoDbApiSink extends CopySink {
9344
9660
  writeBehavior?: any;
9345
9661
  }
9346
9662
 
9663
+ /** A copy activity for Microsoft Fabric LakeHouse Table sink. */
9664
+ export interface LakeHouseTableSink extends CopySink {
9665
+ /** Polymorphic discriminator, which specifies the different types this object can be */
9666
+ type: "LakeHouseTableSink";
9667
+ /** The type of table action for LakeHouse Table sink. Possible values include: "None", "Append", "Overwrite". */
9668
+ tableActionOption?: any;
9669
+ /** 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". */
9670
+ partitionOption?: any;
9671
+ /** Specify the partition column names from sink columns. Type: array of objects (or Expression with resultType array of objects). */
9672
+ partitionNameList?: any;
9673
+ }
9674
+
9347
9675
  /** Snowflake export command settings. */
9348
9676
  export interface SnowflakeExportCopyCommand extends ExportSettings {
9349
9677
  /** Polymorphic discriminator, which specifies the different types this object can be */
@@ -9490,7 +9818,7 @@ export interface ForEachActivity extends ControlActivity {
9490
9818
  export interface WaitActivity extends ControlActivity {
9491
9819
  /** Polymorphic discriminator, which specifies the different types this object can be */
9492
9820
  type: "Wait";
9493
- /** Duration in seconds. */
9821
+ /** Duration in seconds. Type: integer (or Expression with resultType integer). */
9494
9822
  waitTimeInSeconds: any;
9495
9823
  }
9496
9824
 
@@ -9510,7 +9838,7 @@ export interface UntilActivity extends ControlActivity {
9510
9838
  type: "Until";
9511
9839
  /** An expression that would evaluate to Boolean. The loop will continue until this expression evaluates to true */
9512
9840
  expression: Expression;
9513
- /** 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])). */
9841
+ /** 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])). */
9514
9842
  timeout?: any;
9515
9843
  /** List of activities to execute. */
9516
9844
  activities: ActivityUnion[];
@@ -9546,10 +9874,14 @@ export interface FilterActivity extends ControlActivity {
9546
9874
  export interface SetVariableActivity extends ControlActivity {
9547
9875
  /** Polymorphic discriminator, which specifies the different types this object can be */
9548
9876
  type: "SetVariable";
9877
+ /** Activity policy. */
9878
+ policy?: SecureInputOutputPolicy;
9549
9879
  /** Name of the variable whose value needs to be set. */
9550
9880
  variableName?: string;
9551
- /** Value to be set. Could be a static value or Expression */
9881
+ /** Value to be set. Could be a static value or Expression. */
9552
9882
  value?: any;
9883
+ /** If set to true, it sets the pipeline run return value. */
9884
+ setSystemVariable?: boolean;
9553
9885
  }
9554
9886
 
9555
9887
  /** Append value for a Variable of type Array. */
@@ -9558,7 +9890,7 @@ export interface AppendVariableActivity extends ControlActivity {
9558
9890
  type: "AppendVariable";
9559
9891
  /** Name of the variable whose value needs to be appended to. */
9560
9892
  variableName?: string;
9561
- /** Value to be appended. Could be a static value or Expression */
9893
+ /** 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 */
9562
9894
  value?: any;
9563
9895
  }
9564
9896
 
@@ -9566,6 +9898,8 @@ export interface AppendVariableActivity extends ControlActivity {
9566
9898
  export interface WebHookActivity extends ControlActivity {
9567
9899
  /** Polymorphic discriminator, which specifies the different types this object can be */
9568
9900
  type: "WebHook";
9901
+ /** Activity policy. */
9902
+ policy?: SecureInputOutputPolicy;
9569
9903
  /** Rest API method for target endpoint. */
9570
9904
  method: WebHookActivityMethod;
9571
9905
  /** WebHook activity target endpoint and path. Type: string (or Expression with resultType string). */
@@ -9639,7 +9973,7 @@ export interface HDInsightHiveActivity extends ExecutionActivity {
9639
9973
  /** Allows user to specify defines for Hive job request. */
9640
9974
  defines?: { [propertyName: string]: any };
9641
9975
  /** User specified arguments under hivevar namespace. */
9642
- variables?: any[];
9976
+ variables?: { [propertyName: string]: any };
9643
9977
  /** Query timeout value (in minutes). Effective when the HDInsight cluster is with ESP (Enterprise Security Package) */
9644
9978
  queryTimeout?: number;
9645
9979
  }
@@ -10044,8 +10378,14 @@ export interface SynapseNotebookActivity extends ExecutionActivity {
10044
10378
  conf?: any;
10045
10379
  /** 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). */
10046
10380
  driverSize?: any;
10047
- /** Number of executors to launch for this session, which will override the 'numExecutors' of the notebook you provide. */
10048
- numExecutors?: number;
10381
+ /** 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). */
10382
+ numExecutors?: any;
10383
+ /** The type of the spark config. */
10384
+ configurationType?: ConfigurationType;
10385
+ /** The spark configuration of the spark job. */
10386
+ targetSparkConfiguration?: SparkConfigurationParametrizationReference;
10387
+ /** Spark configuration property. */
10388
+ sparkConfig?: { [propertyName: string]: any };
10049
10389
  }
10050
10390
 
10051
10391
  /** Execute spark job activity. */
@@ -10220,8 +10560,8 @@ export interface SalesforceSource extends TabularSource {
10220
10560
  type: "SalesforceSource";
10221
10561
  /** Database query. Type: string (or Expression with resultType string). */
10222
10562
  query?: any;
10223
- /** The read behavior for the operation. Default is Query. */
10224
- readBehavior?: SalesforceSourceReadBehavior;
10563
+ /** The read behavior for the operation. Default is Query. Allowed values: Query/QueryAll. Type: string (or Expression with resultType string). */
10564
+ readBehavior?: any;
10225
10565
  }
10226
10566
 
10227
10567
  /** A copy activity source for SAP Cloud for Customer source. */
@@ -10338,6 +10678,8 @@ export interface SqlServerSource extends TabularSource {
10338
10678
  sqlReaderStoredProcedureName?: any;
10339
10679
  /** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
10340
10680
  storedProcedureParameters?: any;
10681
+ /** 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). */
10682
+ isolationLevel?: any;
10341
10683
  /** Which additional types to produce. */
10342
10684
  produceAdditionalTypes?: any;
10343
10685
  /** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
@@ -10356,6 +10698,8 @@ export interface AmazonRdsForSqlServerSource extends TabularSource {
10356
10698
  sqlReaderStoredProcedureName?: any;
10357
10699
  /** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
10358
10700
  storedProcedureParameters?: any;
10701
+ /** 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). */
10702
+ isolationLevel?: any;
10359
10703
  /** Which additional types to produce. */
10360
10704
  produceAdditionalTypes?: any;
10361
10705
  /** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
@@ -10374,6 +10718,8 @@ export interface AzureSqlSource extends TabularSource {
10374
10718
  sqlReaderStoredProcedureName?: any;
10375
10719
  /** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
10376
10720
  storedProcedureParameters?: any;
10721
+ /** 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). */
10722
+ isolationLevel?: any;
10377
10723
  /** Which additional types to produce. */
10378
10724
  produceAdditionalTypes?: any;
10379
10725
  /** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
@@ -10392,6 +10738,8 @@ export interface SqlMISource extends TabularSource {
10392
10738
  sqlReaderStoredProcedureName?: any;
10393
10739
  /** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". */
10394
10740
  storedProcedureParameters?: any;
10741
+ /** 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). */
10742
+ isolationLevel?: any;
10395
10743
  /** Which additional types to produce. */
10396
10744
  produceAdditionalTypes?: any;
10397
10745
  /** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
@@ -10410,6 +10758,8 @@ export interface SqlDWSource extends TabularSource {
10410
10758
  sqlReaderStoredProcedureName?: any;
10411
10759
  /** Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}". Type: object (or Expression with resultType object), itemType: StoredProcedureParameter. */
10412
10760
  storedProcedureParameters?: any;
10761
+ /** 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). */
10762
+ isolationLevel?: any;
10413
10763
  /** The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". */
10414
10764
  partitionOption?: any;
10415
10765
  /** The settings that will be leveraged for Sql source partitioning. */
@@ -11048,6 +11398,45 @@ export enum KnownType {
11048
11398
  */
11049
11399
  export type Type = string;
11050
11400
 
11401
+ /** Known values of {@link ActivityState} that the service accepts. */
11402
+ export enum KnownActivityState {
11403
+ /** Active */
11404
+ Active = "Active",
11405
+ /** Inactive */
11406
+ Inactive = "Inactive"
11407
+ }
11408
+
11409
+ /**
11410
+ * Defines values for ActivityState. \
11411
+ * {@link KnownActivityState} can be used interchangeably with ActivityState,
11412
+ * this enum contains the known values that the service supports.
11413
+ * ### Known values supported by the service
11414
+ * **Active** \
11415
+ * **Inactive**
11416
+ */
11417
+ export type ActivityState = string;
11418
+
11419
+ /** Known values of {@link ActivityOnInactiveMarkAs} that the service accepts. */
11420
+ export enum KnownActivityOnInactiveMarkAs {
11421
+ /** Succeeded */
11422
+ Succeeded = "Succeeded",
11423
+ /** Failed */
11424
+ Failed = "Failed",
11425
+ /** Skipped */
11426
+ Skipped = "Skipped"
11427
+ }
11428
+
11429
+ /**
11430
+ * Defines values for ActivityOnInactiveMarkAs. \
11431
+ * {@link KnownActivityOnInactiveMarkAs} can be used interchangeably with ActivityOnInactiveMarkAs,
11432
+ * this enum contains the known values that the service supports.
11433
+ * ### Known values supported by the service
11434
+ * **Succeeded** \
11435
+ * **Failed** \
11436
+ * **Skipped**
11437
+ */
11438
+ export type ActivityOnInactiveMarkAs = string;
11439
+
11051
11440
  /** Known values of {@link DependencyCondition} that the service accepts. */
11052
11441
  export enum KnownDependencyCondition {
11053
11442
  /** Succeeded */
@@ -11312,6 +11701,63 @@ export enum KnownDataFlowDebugCommandType {
11312
11701
  */
11313
11702
  export type DataFlowDebugCommandType = string;
11314
11703
 
11704
+ /** Known values of {@link ConnectionType} that the service accepts. */
11705
+ export enum KnownConnectionType {
11706
+ /** Linkedservicetype */
11707
+ Linkedservicetype = "linkedservicetype"
11708
+ }
11709
+
11710
+ /**
11711
+ * Defines values for ConnectionType. \
11712
+ * {@link KnownConnectionType} can be used interchangeably with ConnectionType,
11713
+ * this enum contains the known values that the service supports.
11714
+ * ### Known values supported by the service
11715
+ * **linkedservicetype**
11716
+ */
11717
+ export type ConnectionType = string;
11718
+
11719
+ /** Known values of {@link MappingType} that the service accepts. */
11720
+ export enum KnownMappingType {
11721
+ /** Direct */
11722
+ Direct = "Direct",
11723
+ /** Derived */
11724
+ Derived = "Derived",
11725
+ /** Aggregate */
11726
+ Aggregate = "Aggregate"
11727
+ }
11728
+
11729
+ /**
11730
+ * Defines values for MappingType. \
11731
+ * {@link KnownMappingType} can be used interchangeably with MappingType,
11732
+ * this enum contains the known values that the service supports.
11733
+ * ### Known values supported by the service
11734
+ * **Direct** \
11735
+ * **Derived** \
11736
+ * **Aggregate**
11737
+ */
11738
+ export type MappingType = string;
11739
+
11740
+ /** Known values of {@link FrequencyType} that the service accepts. */
11741
+ export enum KnownFrequencyType {
11742
+ /** Hour */
11743
+ Hour = "Hour",
11744
+ /** Minute */
11745
+ Minute = "Minute",
11746
+ /** Second */
11747
+ Second = "Second"
11748
+ }
11749
+
11750
+ /**
11751
+ * Defines values for FrequencyType. \
11752
+ * {@link KnownFrequencyType} can be used interchangeably with FrequencyType,
11753
+ * this enum contains the known values that the service supports.
11754
+ * ### Known values supported by the service
11755
+ * **Hour** \
11756
+ * **Minute** \
11757
+ * **Second**
11758
+ */
11759
+ export type FrequencyType = string;
11760
+
11315
11761
  /** Known values of {@link DataFlowReferenceType} that the service accepts. */
11316
11762
  export enum KnownDataFlowReferenceType {
11317
11763
  /** DataFlowReference */
@@ -11549,24 +11995,6 @@ export enum KnownSqlAlwaysEncryptedAkvAuthType {
11549
11995
  */
11550
11996
  export type SqlAlwaysEncryptedAkvAuthType = string;
11551
11997
 
11552
- /** Known values of {@link CosmosDbServicePrincipalCredentialType} that the service accepts. */
11553
- export enum KnownCosmosDbServicePrincipalCredentialType {
11554
- /** ServicePrincipalKey */
11555
- ServicePrincipalKey = "ServicePrincipalKey",
11556
- /** ServicePrincipalCert */
11557
- ServicePrincipalCert = "ServicePrincipalCert"
11558
- }
11559
-
11560
- /**
11561
- * Defines values for CosmosDbServicePrincipalCredentialType. \
11562
- * {@link KnownCosmosDbServicePrincipalCredentialType} can be used interchangeably with CosmosDbServicePrincipalCredentialType,
11563
- * this enum contains the known values that the service supports.
11564
- * ### Known values supported by the service
11565
- * **ServicePrincipalKey** \
11566
- * **ServicePrincipalCert**
11567
- */
11568
- export type CosmosDbServicePrincipalCredentialType = string;
11569
-
11570
11998
  /** Known values of {@link CosmosDbConnectionMode} that the service accepts. */
11571
11999
  export enum KnownCosmosDbConnectionMode {
11572
12000
  /** Gateway */
@@ -12131,24 +12559,6 @@ export enum KnownGoogleAdWordsAuthenticationType {
12131
12559
  */
12132
12560
  export type GoogleAdWordsAuthenticationType = string;
12133
12561
 
12134
- /** Known values of {@link SalesforceSourceReadBehavior} that the service accepts. */
12135
- export enum KnownSalesforceSourceReadBehavior {
12136
- /** Query */
12137
- Query = "Query",
12138
- /** QueryAll */
12139
- QueryAll = "QueryAll"
12140
- }
12141
-
12142
- /**
12143
- * Defines values for SalesforceSourceReadBehavior. \
12144
- * {@link KnownSalesforceSourceReadBehavior} can be used interchangeably with SalesforceSourceReadBehavior,
12145
- * this enum contains the known values that the service supports.
12146
- * ### Known values supported by the service
12147
- * **Query** \
12148
- * **QueryAll**
12149
- */
12150
- export type SalesforceSourceReadBehavior = string;
12151
-
12152
12562
  /** Known values of {@link CassandraSourceReadConsistencyLevels} that the service accepts. */
12153
12563
  export enum KnownCassandraSourceReadConsistencyLevels {
12154
12564
  /** ALL */
@@ -12602,21 +13012,6 @@ export enum KnownNotebookParameterType {
12602
13012
  */
12603
13013
  export type NotebookParameterType = string;
12604
13014
 
12605
- /** Known values of {@link SparkJobReferenceType} that the service accepts. */
12606
- export enum KnownSparkJobReferenceType {
12607
- /** SparkJobDefinitionReference */
12608
- SparkJobDefinitionReference = "SparkJobDefinitionReference"
12609
- }
12610
-
12611
- /**
12612
- * Defines values for SparkJobReferenceType. \
12613
- * {@link KnownSparkJobReferenceType} can be used interchangeably with SparkJobReferenceType,
12614
- * this enum contains the known values that the service supports.
12615
- * ### Known values supported by the service
12616
- * **SparkJobDefinitionReference**
12617
- */
12618
- export type SparkJobReferenceType = string;
12619
-
12620
13015
  /** Known values of {@link ConfigurationType} that the service accepts. */
12621
13016
  export enum KnownConfigurationType {
12622
13017
  /** Default */
@@ -12653,6 +13048,21 @@ export enum KnownSparkConfigurationReferenceType {
12653
13048
  */
12654
13049
  export type SparkConfigurationReferenceType = string;
12655
13050
 
13051
+ /** Known values of {@link SparkJobReferenceType} that the service accepts. */
13052
+ export enum KnownSparkJobReferenceType {
13053
+ /** SparkJobDefinitionReference */
13054
+ SparkJobDefinitionReference = "SparkJobDefinitionReference"
13055
+ }
13056
+
13057
+ /**
13058
+ * Defines values for SparkJobReferenceType. \
13059
+ * {@link KnownSparkJobReferenceType} can be used interchangeably with SparkJobReferenceType,
13060
+ * this enum contains the known values that the service supports.
13061
+ * ### Known values supported by the service
13062
+ * **SparkJobDefinitionReference**
13063
+ */
13064
+ export type SparkJobReferenceType = string;
13065
+
12656
13066
  /** Known values of {@link RecurrenceFrequency} that the service accepts. */
12657
13067
  export enum KnownRecurrenceFrequency {
12658
13068
  /** NotSpecified */
@@ -12965,6 +13375,24 @@ export enum KnownJsonWriteFilePattern {
12965
13375
  */
12966
13376
  export type JsonWriteFilePattern = string;
12967
13377
 
13378
+ /** Known values of {@link SalesforceSourceReadBehavior} that the service accepts. */
13379
+ export enum KnownSalesforceSourceReadBehavior {
13380
+ /** Query */
13381
+ Query = "Query",
13382
+ /** QueryAll */
13383
+ QueryAll = "QueryAll"
13384
+ }
13385
+
13386
+ /**
13387
+ * Defines values for SalesforceSourceReadBehavior. \
13388
+ * {@link KnownSalesforceSourceReadBehavior} can be used interchangeably with SalesforceSourceReadBehavior,
13389
+ * this enum contains the known values that the service supports.
13390
+ * ### Known values supported by the service
13391
+ * **Query** \
13392
+ * **QueryAll**
13393
+ */
13394
+ export type SalesforceSourceReadBehavior = string;
13395
+
12968
13396
  /** Known values of {@link AmazonRdsForOraclePartitionOption} that the service accepts. */
12969
13397
  export enum KnownAmazonRdsForOraclePartitionOption {
12970
13398
  /** None */
@@ -14029,6 +14457,62 @@ export interface GlobalParametersListByFactoryNextOptionalParams
14029
14457
  /** Contains response data for the listByFactoryNext operation. */
14030
14458
  export type GlobalParametersListByFactoryNextResponse = GlobalParameterListResponse;
14031
14459
 
14460
+ /** Optional parameters. */
14461
+ export interface ChangeDataCaptureListByFactoryOptionalParams
14462
+ extends coreClient.OperationOptions {}
14463
+
14464
+ /** Contains response data for the listByFactory operation. */
14465
+ export type ChangeDataCaptureListByFactoryResponse = ChangeDataCaptureListResponse;
14466
+
14467
+ /** Optional parameters. */
14468
+ export interface ChangeDataCaptureCreateOrUpdateOptionalParams
14469
+ extends coreClient.OperationOptions {
14470
+ /** 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. */
14471
+ ifMatch?: string;
14472
+ }
14473
+
14474
+ /** Contains response data for the createOrUpdate operation. */
14475
+ export type ChangeDataCaptureCreateOrUpdateResponse = ChangeDataCaptureResource;
14476
+
14477
+ /** Optional parameters. */
14478
+ export interface ChangeDataCaptureGetOptionalParams
14479
+ extends coreClient.OperationOptions {
14480
+ /** 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. */
14481
+ ifNoneMatch?: string;
14482
+ }
14483
+
14484
+ /** Contains response data for the get operation. */
14485
+ export type ChangeDataCaptureGetResponse = ChangeDataCaptureResource;
14486
+
14487
+ /** Optional parameters. */
14488
+ export interface ChangeDataCaptureDeleteOptionalParams
14489
+ extends coreClient.OperationOptions {}
14490
+
14491
+ /** Optional parameters. */
14492
+ export interface ChangeDataCaptureStartOptionalParams
14493
+ extends coreClient.OperationOptions {}
14494
+
14495
+ /** Optional parameters. */
14496
+ export interface ChangeDataCaptureStopOptionalParams
14497
+ extends coreClient.OperationOptions {}
14498
+
14499
+ /** Optional parameters. */
14500
+ export interface ChangeDataCaptureStatusOptionalParams
14501
+ extends coreClient.OperationOptions {}
14502
+
14503
+ /** Contains response data for the status operation. */
14504
+ export type ChangeDataCaptureStatusResponse = {
14505
+ /** The parsed response body. */
14506
+ body: string;
14507
+ };
14508
+
14509
+ /** Optional parameters. */
14510
+ export interface ChangeDataCaptureListByFactoryNextOptionalParams
14511
+ extends coreClient.OperationOptions {}
14512
+
14513
+ /** Contains response data for the listByFactoryNext operation. */
14514
+ export type ChangeDataCaptureListByFactoryNextResponse = ChangeDataCaptureListResponse;
14515
+
14032
14516
  /** Optional parameters. */
14033
14517
  export interface DataFactoryManagementClientOptionalParams
14034
14518
  extends coreClient.ServiceClientOptions {