@azure/synapse-artifacts 1.0.0-beta.6 → 1.0.0-beta.9

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 (66) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/README.md +1 -1
  3. package/dist/index.js +1597 -611
  4. package/dist/index.js.map +1 -1
  5. package/dist-esm/src/artifactsClient.js +31 -4
  6. package/dist-esm/src/artifactsClient.js.map +1 -1
  7. package/dist-esm/src/index.js +0 -1
  8. package/dist-esm/src/index.js.map +1 -1
  9. package/dist-esm/src/models/index.js +83 -0
  10. package/dist-esm/src/models/index.js.map +1 -1
  11. package/dist-esm/src/models/mappers.js +792 -317
  12. package/dist-esm/src/models/mappers.js.map +1 -1
  13. package/dist-esm/src/models/parameters.js +43 -3
  14. package/dist-esm/src/models/parameters.js.map +1 -1
  15. package/dist-esm/src/operations/bigDataPools.js +2 -2
  16. package/dist-esm/src/operations/bigDataPools.js.map +1 -1
  17. package/dist-esm/src/operations/dataFlowDebugSession.js +6 -6
  18. package/dist-esm/src/operations/dataFlowDebugSession.js.map +1 -1
  19. package/dist-esm/src/operations/dataFlowOperations.js +6 -6
  20. package/dist-esm/src/operations/dataFlowOperations.js.map +1 -1
  21. package/dist-esm/src/operations/datasetOperations.js +6 -6
  22. package/dist-esm/src/operations/datasetOperations.js.map +1 -1
  23. package/dist-esm/src/operations/index.js +1 -0
  24. package/dist-esm/src/operations/index.js.map +1 -1
  25. package/dist-esm/src/operations/integrationRuntimes.js +2 -2
  26. package/dist-esm/src/operations/integrationRuntimes.js.map +1 -1
  27. package/dist-esm/src/operations/kqlScriptOperations.js.map +1 -1
  28. package/dist-esm/src/operations/kqlScripts.js.map +1 -1
  29. package/dist-esm/src/operations/library.js +8 -8
  30. package/dist-esm/src/operations/library.js.map +1 -1
  31. package/dist-esm/src/operations/linkedServiceOperations.js +6 -6
  32. package/dist-esm/src/operations/linkedServiceOperations.js.map +1 -1
  33. package/dist-esm/src/operations/metastore.js +182 -0
  34. package/dist-esm/src/operations/metastore.js.map +1 -0
  35. package/dist-esm/src/operations/notebookOperationResult.js +1 -1
  36. package/dist-esm/src/operations/notebookOperationResult.js.map +1 -1
  37. package/dist-esm/src/operations/notebookOperations.js +8 -8
  38. package/dist-esm/src/operations/notebookOperations.js.map +1 -1
  39. package/dist-esm/src/operations/pipelineOperations.js +7 -7
  40. package/dist-esm/src/operations/pipelineOperations.js.map +1 -1
  41. package/dist-esm/src/operations/pipelineRunOperations.js +4 -4
  42. package/dist-esm/src/operations/pipelineRunOperations.js.map +1 -1
  43. package/dist-esm/src/operations/sparkConfigurationOperations.js +6 -6
  44. package/dist-esm/src/operations/sparkConfigurationOperations.js.map +1 -1
  45. package/dist-esm/src/operations/sparkJobDefinitionOperations.js +8 -8
  46. package/dist-esm/src/operations/sparkJobDefinitionOperations.js.map +1 -1
  47. package/dist-esm/src/operations/sqlPools.js +2 -2
  48. package/dist-esm/src/operations/sqlPools.js.map +1 -1
  49. package/dist-esm/src/operations/sqlScriptOperations.js +6 -6
  50. package/dist-esm/src/operations/sqlScriptOperations.js.map +1 -1
  51. package/dist-esm/src/operations/triggerOperations.js +10 -10
  52. package/dist-esm/src/operations/triggerOperations.js.map +1 -1
  53. package/dist-esm/src/operations/triggerRunOperations.js +3 -3
  54. package/dist-esm/src/operations/triggerRunOperations.js.map +1 -1
  55. package/dist-esm/src/operations/workspaceGitRepoManagement.js +1 -1
  56. package/dist-esm/src/operations/workspaceGitRepoManagement.js.map +1 -1
  57. package/dist-esm/src/operations/workspaceOperations.js +1 -1
  58. package/dist-esm/src/operations/workspaceOperations.js.map +1 -1
  59. package/dist-esm/src/operationsInterfaces/index.js +1 -0
  60. package/dist-esm/src/operationsInterfaces/index.js.map +1 -1
  61. package/dist-esm/src/operationsInterfaces/metastore.js +9 -0
  62. package/dist-esm/src/operationsInterfaces/metastore.js.map +1 -0
  63. package/package.json +17 -18
  64. package/types/synapse-artifacts.d.ts +511 -94
  65. package/dist-esm/src/artifactsClientContext.js +0 -47
  66. package/dist-esm/src/artifactsClientContext.js.map +0 -1
@@ -132,6 +132,18 @@ export const KqlScriptContentCurrentConnection = {
132
132
  name: "String"
133
133
  }
134
134
  },
135
+ poolName: {
136
+ serializedName: "poolName",
137
+ type: {
138
+ name: "String"
139
+ }
140
+ },
141
+ databaseName: {
142
+ serializedName: "databaseName",
143
+ type: {
144
+ name: "String"
145
+ }
146
+ },
135
147
  type: {
136
148
  serializedName: "type",
137
149
  type: {
@@ -252,26 +264,28 @@ export const ArtifactRenameRequest = {
252
264
  }
253
265
  }
254
266
  };
255
- export const SparkConfigurationListResponse = {
267
+ export const MetastoreRegisterObject = {
256
268
  type: {
257
269
  name: "Composite",
258
- className: "SparkConfigurationListResponse",
270
+ className: "MetastoreRegisterObject",
259
271
  modelProperties: {
260
- value: {
261
- serializedName: "value",
272
+ inputFolder: {
273
+ serializedName: "inputFolder",
262
274
  required: true,
263
275
  type: {
264
- name: "Sequence",
265
- element: {
266
- type: {
267
- name: "Composite",
268
- className: "SparkConfigurationResource"
269
- }
270
- }
276
+ name: "String"
271
277
  }
272
- },
273
- nextLink: {
274
- serializedName: "nextLink",
278
+ }
279
+ }
280
+ }
281
+ };
282
+ export const MetastoreRegistrationResponse = {
283
+ type: {
284
+ name: "Composite",
285
+ className: "MetastoreRegistrationResponse",
286
+ modelProperties: {
287
+ status: {
288
+ serializedName: "status",
275
289
  type: {
276
290
  name: "String"
277
291
  }
@@ -279,28 +293,69 @@ export const SparkConfigurationListResponse = {
279
293
  }
280
294
  }
281
295
  };
282
- export const Resource = {
296
+ export const MetastoreRequestSuccessResponse = {
283
297
  type: {
284
298
  name: "Composite",
285
- className: "Resource",
299
+ className: "MetastoreRequestSuccessResponse",
286
300
  modelProperties: {
287
- id: {
288
- serializedName: "id",
289
- readOnly: true,
301
+ status: {
302
+ serializedName: "status",
290
303
  type: {
291
304
  name: "String"
292
305
  }
293
- },
294
- name: {
295
- serializedName: "name",
296
- readOnly: true,
306
+ }
307
+ }
308
+ }
309
+ };
310
+ export const MetastoreUpdateObject = {
311
+ type: {
312
+ name: "Composite",
313
+ className: "MetastoreUpdateObject",
314
+ modelProperties: {
315
+ inputFolder: {
316
+ serializedName: "inputFolder",
317
+ required: true,
318
+ type: {
319
+ name: "String"
320
+ }
321
+ }
322
+ }
323
+ }
324
+ };
325
+ export const MetastoreUpdationResponse = {
326
+ type: {
327
+ name: "Composite",
328
+ className: "MetastoreUpdationResponse",
329
+ modelProperties: {
330
+ status: {
331
+ serializedName: "status",
297
332
  type: {
298
333
  name: "String"
299
334
  }
335
+ }
336
+ }
337
+ }
338
+ };
339
+ export const SparkConfigurationListResponse = {
340
+ type: {
341
+ name: "Composite",
342
+ className: "SparkConfigurationListResponse",
343
+ modelProperties: {
344
+ value: {
345
+ serializedName: "value",
346
+ required: true,
347
+ type: {
348
+ name: "Sequence",
349
+ element: {
350
+ type: {
351
+ name: "Composite",
352
+ className: "SparkConfigurationResource"
353
+ }
354
+ }
355
+ }
300
356
  },
301
- type: {
302
- serializedName: "type",
303
- readOnly: true,
357
+ nextLink: {
358
+ serializedName: "nextLink",
304
359
  type: {
305
360
  name: "String"
306
361
  }
@@ -366,6 +421,35 @@ export const SparkConfiguration = {
366
421
  }
367
422
  }
368
423
  };
424
+ export const Resource = {
425
+ type: {
426
+ name: "Composite",
427
+ className: "Resource",
428
+ modelProperties: {
429
+ id: {
430
+ serializedName: "id",
431
+ readOnly: true,
432
+ type: {
433
+ name: "String"
434
+ }
435
+ },
436
+ name: {
437
+ serializedName: "name",
438
+ readOnly: true,
439
+ type: {
440
+ name: "String"
441
+ }
442
+ },
443
+ type: {
444
+ serializedName: "type",
445
+ readOnly: true,
446
+ type: {
447
+ name: "String"
448
+ }
449
+ }
450
+ }
451
+ }
452
+ };
369
453
  export const CloudError = {
370
454
  type: {
371
455
  name: "Composite",
@@ -729,20 +813,6 @@ export const CreateDataFlowDebugSessionRequest = {
729
813
  }
730
814
  }
731
815
  };
732
- export const SubResourceDebugResource = {
733
- type: {
734
- name: "Composite",
735
- className: "SubResourceDebugResource",
736
- modelProperties: {
737
- name: {
738
- serializedName: "name",
739
- type: {
740
- name: "String"
741
- }
742
- }
743
- }
744
- }
745
- };
746
816
  export const IntegrationRuntime = {
747
817
  serializedName: "IntegrationRuntime",
748
818
  type: {
@@ -771,6 +841,20 @@ export const IntegrationRuntime = {
771
841
  }
772
842
  }
773
843
  };
844
+ export const SubResourceDebugResource = {
845
+ type: {
846
+ name: "Composite",
847
+ className: "SubResourceDebugResource",
848
+ modelProperties: {
849
+ name: {
850
+ serializedName: "name",
851
+ type: {
852
+ name: "String"
853
+ }
854
+ }
855
+ }
856
+ }
857
+ };
774
858
  export const CreateDataFlowDebugSessionResponse = {
775
859
  type: {
776
860
  name: "Composite",
@@ -893,6 +977,18 @@ export const DataFlowDebugPackage = {
893
977
  className: "DataFlowDebugResource"
894
978
  }
895
979
  },
980
+ dataFlows: {
981
+ serializedName: "dataFlows",
982
+ type: {
983
+ name: "Sequence",
984
+ element: {
985
+ type: {
986
+ name: "Composite",
987
+ className: "DataFlowDebugResource"
988
+ }
989
+ }
990
+ }
991
+ },
896
992
  datasets: {
897
993
  serializedName: "datasets",
898
994
  type: {
@@ -4248,6 +4344,13 @@ export const DataFlowReference = {
4248
4344
  type: {
4249
4345
  name: "any"
4250
4346
  }
4347
+ },
4348
+ parameters: {
4349
+ serializedName: "parameters",
4350
+ type: {
4351
+ name: "Dictionary",
4352
+ value: { type: { name: "any" } }
4353
+ }
4251
4354
  }
4252
4355
  }
4253
4356
  }
@@ -4417,7 +4520,7 @@ export const SynapseNotebookReference = {
4417
4520
  serializedName: "referenceName",
4418
4521
  required: true,
4419
4522
  type: {
4420
- name: "String"
4523
+ name: "any"
4421
4524
  }
4422
4525
  }
4423
4526
  }
@@ -4467,6 +4570,28 @@ export const SqlPoolReference = {
4467
4570
  }
4468
4571
  }
4469
4572
  };
4573
+ export const BigDataPoolParametrizationReference = {
4574
+ type: {
4575
+ name: "Composite",
4576
+ className: "BigDataPoolParametrizationReference",
4577
+ modelProperties: {
4578
+ type: {
4579
+ serializedName: "type",
4580
+ required: true,
4581
+ type: {
4582
+ name: "String"
4583
+ }
4584
+ },
4585
+ referenceName: {
4586
+ serializedName: "referenceName",
4587
+ required: true,
4588
+ type: {
4589
+ name: "any"
4590
+ }
4591
+ }
4592
+ }
4593
+ }
4594
+ };
4470
4595
  export const StartDataFlowDebugSessionRequest = {
4471
4596
  type: {
4472
4597
  name: "Composite",
@@ -4485,6 +4610,18 @@ export const StartDataFlowDebugSessionRequest = {
4485
4610
  className: "DataFlowResource"
4486
4611
  }
4487
4612
  },
4613
+ dataFlows: {
4614
+ serializedName: "dataFlows",
4615
+ type: {
4616
+ name: "Sequence",
4617
+ element: {
4618
+ type: {
4619
+ name: "Composite",
4620
+ className: "DataFlowResource"
4621
+ }
4622
+ }
4623
+ }
4624
+ },
4488
4625
  datasets: {
4489
4626
  serializedName: "datasets",
4490
4627
  type: {
@@ -4702,6 +4839,27 @@ export const Transformation = {
4702
4839
  type: {
4703
4840
  name: "String"
4704
4841
  }
4842
+ },
4843
+ dataset: {
4844
+ serializedName: "dataset",
4845
+ type: {
4846
+ name: "Composite",
4847
+ className: "DatasetReference"
4848
+ }
4849
+ },
4850
+ linkedService: {
4851
+ serializedName: "linkedService",
4852
+ type: {
4853
+ name: "Composite",
4854
+ className: "LinkedServiceReference"
4855
+ }
4856
+ },
4857
+ flowlet: {
4858
+ serializedName: "flowlet",
4859
+ type: {
4860
+ name: "Composite",
4861
+ className: "DataFlowReference"
4862
+ }
4705
4863
  }
4706
4864
  }
4707
4865
  }
@@ -4816,22 +4974,22 @@ export const DatasetStorageFormat = {
4816
4974
  }
4817
4975
  };
4818
4976
  export const DatasetCompression = {
4819
- serializedName: "DatasetCompression",
4820
4977
  type: {
4821
4978
  name: "Composite",
4822
4979
  className: "DatasetCompression",
4823
- uberParent: "DatasetCompression",
4824
4980
  additionalProperties: { type: { name: "Object" } },
4825
- polymorphicDiscriminator: {
4826
- serializedName: "type",
4827
- clientName: "type"
4828
- },
4829
4981
  modelProperties: {
4830
4982
  type: {
4831
4983
  serializedName: "type",
4832
4984
  required: true,
4833
4985
  type: {
4834
- name: "String"
4986
+ name: "any"
4987
+ }
4988
+ },
4989
+ level: {
4990
+ serializedName: "level",
4991
+ type: {
4992
+ name: "any"
4835
4993
  }
4836
4994
  }
4837
4995
  }
@@ -5416,6 +5574,7 @@ export const StoredProcedureParameter = {
5416
5574
  modelProperties: {
5417
5575
  value: {
5418
5576
  serializedName: "value",
5577
+ nullable: true,
5419
5578
  type: {
5420
5579
  name: "any"
5421
5580
  }
@@ -5670,6 +5829,27 @@ export const ImportSettings = {
5670
5829
  }
5671
5830
  }
5672
5831
  };
5832
+ export const NotebookParameter = {
5833
+ type: {
5834
+ name: "Composite",
5835
+ className: "NotebookParameter",
5836
+ modelProperties: {
5837
+ value: {
5838
+ serializedName: "value",
5839
+ nullable: true,
5840
+ type: {
5841
+ name: "any"
5842
+ }
5843
+ },
5844
+ type: {
5845
+ serializedName: "type",
5846
+ type: {
5847
+ name: "String"
5848
+ }
5849
+ }
5850
+ }
5851
+ }
5852
+ };
5673
5853
  export const PolybaseSettings = {
5674
5854
  type: {
5675
5855
  name: "Composite",
@@ -6217,16 +6397,110 @@ export const ExecuteDataFlowActivityTypePropertiesCompute = {
6217
6397
  }
6218
6398
  }
6219
6399
  };
6220
- export const ScheduleTriggerRecurrence = {
6400
+ export const ScriptActivityScriptBlock = {
6221
6401
  type: {
6222
6402
  name: "Composite",
6223
- className: "ScheduleTriggerRecurrence",
6224
- additionalProperties: { type: { name: "Object" } },
6403
+ className: "ScriptActivityScriptBlock",
6225
6404
  modelProperties: {
6226
- frequency: {
6227
- serializedName: "frequency",
6405
+ text: {
6406
+ serializedName: "text",
6407
+ required: true,
6228
6408
  type: {
6229
- name: "String"
6409
+ name: "any"
6410
+ }
6411
+ },
6412
+ type: {
6413
+ serializedName: "type",
6414
+ required: true,
6415
+ type: {
6416
+ name: "String"
6417
+ }
6418
+ },
6419
+ parameters: {
6420
+ serializedName: "parameters",
6421
+ type: {
6422
+ name: "Sequence",
6423
+ element: {
6424
+ type: {
6425
+ name: "Composite",
6426
+ className: "ScriptActivityParameter"
6427
+ }
6428
+ }
6429
+ }
6430
+ }
6431
+ }
6432
+ }
6433
+ };
6434
+ export const ScriptActivityParameter = {
6435
+ type: {
6436
+ name: "Composite",
6437
+ className: "ScriptActivityParameter",
6438
+ modelProperties: {
6439
+ name: {
6440
+ serializedName: "name",
6441
+ type: {
6442
+ name: "any"
6443
+ }
6444
+ },
6445
+ type: {
6446
+ serializedName: "type",
6447
+ type: {
6448
+ name: "String"
6449
+ }
6450
+ },
6451
+ value: {
6452
+ serializedName: "value",
6453
+ type: {
6454
+ name: "any"
6455
+ }
6456
+ },
6457
+ direction: {
6458
+ serializedName: "direction",
6459
+ type: {
6460
+ name: "String"
6461
+ }
6462
+ },
6463
+ size: {
6464
+ serializedName: "size",
6465
+ type: {
6466
+ name: "Number"
6467
+ }
6468
+ }
6469
+ }
6470
+ }
6471
+ };
6472
+ export const ScriptActivityTypePropertiesLogSettings = {
6473
+ type: {
6474
+ name: "Composite",
6475
+ className: "ScriptActivityTypePropertiesLogSettings",
6476
+ modelProperties: {
6477
+ logDestination: {
6478
+ serializedName: "logDestination",
6479
+ required: true,
6480
+ type: {
6481
+ name: "String"
6482
+ }
6483
+ },
6484
+ logLocationSettings: {
6485
+ serializedName: "logLocationSettings",
6486
+ type: {
6487
+ name: "Composite",
6488
+ className: "LogLocationSettings"
6489
+ }
6490
+ }
6491
+ }
6492
+ }
6493
+ };
6494
+ export const ScheduleTriggerRecurrence = {
6495
+ type: {
6496
+ name: "Composite",
6497
+ className: "ScheduleTriggerRecurrence",
6498
+ additionalProperties: { type: { name: "Object" } },
6499
+ modelProperties: {
6500
+ frequency: {
6501
+ serializedName: "frequency",
6502
+ type: {
6503
+ name: "String"
6230
6504
  }
6231
6505
  },
6232
6506
  interval: {
@@ -6862,57 +7136,73 @@ export const MappingDataFlow = {
6862
7136
  type: {
6863
7137
  name: "String"
6864
7138
  }
6865
- } })
6866
- }
6867
- };
6868
- export const IntegrationRuntimeDebugResource = {
6869
- type: {
6870
- name: "Composite",
6871
- className: "IntegrationRuntimeDebugResource",
6872
- modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
6873
- serializedName: "properties",
7139
+ }, scriptLines: {
7140
+ serializedName: "typeProperties.scriptLines",
6874
7141
  type: {
6875
- name: "Composite",
6876
- className: "IntegrationRuntime"
7142
+ name: "Sequence",
7143
+ element: {
7144
+ type: {
7145
+ name: "String"
7146
+ }
7147
+ }
6877
7148
  }
6878
7149
  } })
6879
7150
  }
6880
7151
  };
6881
- export const DataFlowDebugResource = {
7152
+ export const Flowlet = {
7153
+ serializedName: "Flowlet",
6882
7154
  type: {
6883
7155
  name: "Composite",
6884
- className: "DataFlowDebugResource",
6885
- modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
6886
- serializedName: "properties",
7156
+ className: "Flowlet",
7157
+ uberParent: "DataFlow",
7158
+ polymorphicDiscriminator: DataFlow.type.polymorphicDiscriminator,
7159
+ modelProperties: Object.assign(Object.assign({}, DataFlow.type.modelProperties), { sources: {
7160
+ serializedName: "typeProperties.sources",
6887
7161
  type: {
6888
- name: "Composite",
6889
- className: "DataFlow"
7162
+ name: "Sequence",
7163
+ element: {
7164
+ type: {
7165
+ name: "Composite",
7166
+ className: "DataFlowSource"
7167
+ }
7168
+ }
6890
7169
  }
6891
- } })
6892
- }
6893
- };
6894
- export const DatasetDebugResource = {
6895
- type: {
6896
- name: "Composite",
6897
- className: "DatasetDebugResource",
6898
- modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
6899
- serializedName: "properties",
7170
+ }, sinks: {
7171
+ serializedName: "typeProperties.sinks",
6900
7172
  type: {
6901
- name: "Composite",
6902
- className: "Dataset"
7173
+ name: "Sequence",
7174
+ element: {
7175
+ type: {
7176
+ name: "Composite",
7177
+ className: "DataFlowSink"
7178
+ }
7179
+ }
6903
7180
  }
6904
- } })
6905
- }
6906
- };
6907
- export const LinkedServiceDebugResource = {
6908
- type: {
6909
- name: "Composite",
6910
- className: "LinkedServiceDebugResource",
6911
- modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
6912
- serializedName: "properties",
7181
+ }, transformations: {
7182
+ serializedName: "typeProperties.transformations",
6913
7183
  type: {
6914
- name: "Composite",
6915
- className: "LinkedService"
7184
+ name: "Sequence",
7185
+ element: {
7186
+ type: {
7187
+ name: "Composite",
7188
+ className: "Transformation"
7189
+ }
7190
+ }
7191
+ }
7192
+ }, script: {
7193
+ serializedName: "typeProperties.script",
7194
+ type: {
7195
+ name: "String"
7196
+ }
7197
+ }, scriptLines: {
7198
+ serializedName: "typeProperties.scriptLines",
7199
+ type: {
7200
+ name: "Sequence",
7201
+ element: {
7202
+ type: {
7203
+ name: "String"
7204
+ }
7205
+ }
6916
7206
  }
6917
7207
  } })
6918
7208
  }
@@ -6969,6 +7259,58 @@ export const SelfHostedIntegrationRuntime = {
6969
7259
  } })
6970
7260
  }
6971
7261
  };
7262
+ export const IntegrationRuntimeDebugResource = {
7263
+ type: {
7264
+ name: "Composite",
7265
+ className: "IntegrationRuntimeDebugResource",
7266
+ modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
7267
+ serializedName: "properties",
7268
+ type: {
7269
+ name: "Composite",
7270
+ className: "IntegrationRuntime"
7271
+ }
7272
+ } })
7273
+ }
7274
+ };
7275
+ export const DataFlowDebugResource = {
7276
+ type: {
7277
+ name: "Composite",
7278
+ className: "DataFlowDebugResource",
7279
+ modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
7280
+ serializedName: "properties",
7281
+ type: {
7282
+ name: "Composite",
7283
+ className: "DataFlow"
7284
+ }
7285
+ } })
7286
+ }
7287
+ };
7288
+ export const DatasetDebugResource = {
7289
+ type: {
7290
+ name: "Composite",
7291
+ className: "DatasetDebugResource",
7292
+ modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
7293
+ serializedName: "properties",
7294
+ type: {
7295
+ name: "Composite",
7296
+ className: "Dataset"
7297
+ }
7298
+ } })
7299
+ }
7300
+ };
7301
+ export const LinkedServiceDebugResource = {
7302
+ type: {
7303
+ name: "Composite",
7304
+ className: "LinkedServiceDebugResource",
7305
+ modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
7306
+ serializedName: "properties",
7307
+ type: {
7308
+ name: "Composite",
7309
+ className: "LinkedService"
7310
+ }
7311
+ } })
7312
+ }
7313
+ };
6972
7314
  export const AmazonS3Dataset = {
6973
7315
  serializedName: "AmazonS3Object",
6974
7316
  type: {
@@ -10867,6 +11209,17 @@ export const AzureBlobFSLinkedService = {
10867
11209
  type: {
10868
11210
  name: "any"
10869
11211
  }
11212
+ }, servicePrincipalCredentialType: {
11213
+ serializedName: "typeProperties.servicePrincipalCredentialType",
11214
+ type: {
11215
+ name: "any"
11216
+ }
11217
+ }, servicePrincipalCredential: {
11218
+ serializedName: "typeProperties.servicePrincipalCredential",
11219
+ type: {
11220
+ name: "Composite",
11221
+ className: "SecretBase"
11222
+ }
10870
11223
  }, encryptedCredential: {
10871
11224
  serializedName: "typeProperties.encryptedCredential",
10872
11225
  type: {
@@ -11039,11 +11392,229 @@ export const SapCloudForCustomerLinkedService = {
11039
11392
  } })
11040
11393
  }
11041
11394
  };
11042
- export const SapEccLinkedService = {
11043
- serializedName: "SapEcc",
11395
+ export const SapEccLinkedService = {
11396
+ serializedName: "SapEcc",
11397
+ type: {
11398
+ name: "Composite",
11399
+ className: "SapEccLinkedService",
11400
+ uberParent: "LinkedService",
11401
+ additionalProperties: { type: { name: "Object" } },
11402
+ polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
11403
+ modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { url: {
11404
+ serializedName: "typeProperties.url",
11405
+ required: true,
11406
+ type: {
11407
+ name: "String"
11408
+ }
11409
+ }, username: {
11410
+ serializedName: "typeProperties.username",
11411
+ type: {
11412
+ name: "String"
11413
+ }
11414
+ }, password: {
11415
+ serializedName: "typeProperties.password",
11416
+ type: {
11417
+ name: "Composite",
11418
+ className: "SecretBase"
11419
+ }
11420
+ }, encryptedCredential: {
11421
+ serializedName: "typeProperties.encryptedCredential",
11422
+ type: {
11423
+ name: "String"
11424
+ }
11425
+ } })
11426
+ }
11427
+ };
11428
+ export const SapOpenHubLinkedService = {
11429
+ serializedName: "SapOpenHub",
11430
+ type: {
11431
+ name: "Composite",
11432
+ className: "SapOpenHubLinkedService",
11433
+ uberParent: "LinkedService",
11434
+ additionalProperties: { type: { name: "Object" } },
11435
+ polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
11436
+ modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { server: {
11437
+ serializedName: "typeProperties.server",
11438
+ required: true,
11439
+ type: {
11440
+ name: "any"
11441
+ }
11442
+ }, systemNumber: {
11443
+ serializedName: "typeProperties.systemNumber",
11444
+ required: true,
11445
+ type: {
11446
+ name: "any"
11447
+ }
11448
+ }, clientId: {
11449
+ serializedName: "typeProperties.clientId",
11450
+ required: true,
11451
+ type: {
11452
+ name: "any"
11453
+ }
11454
+ }, language: {
11455
+ serializedName: "typeProperties.language",
11456
+ type: {
11457
+ name: "any"
11458
+ }
11459
+ }, systemId: {
11460
+ serializedName: "typeProperties.systemId",
11461
+ type: {
11462
+ name: "any"
11463
+ }
11464
+ }, userName: {
11465
+ serializedName: "typeProperties.userName",
11466
+ type: {
11467
+ name: "any"
11468
+ }
11469
+ }, password: {
11470
+ serializedName: "typeProperties.password",
11471
+ type: {
11472
+ name: "Composite",
11473
+ className: "SecretBase"
11474
+ }
11475
+ }, messageServer: {
11476
+ serializedName: "typeProperties.messageServer",
11477
+ type: {
11478
+ name: "any"
11479
+ }
11480
+ }, messageServerService: {
11481
+ serializedName: "typeProperties.messageServerService",
11482
+ type: {
11483
+ name: "any"
11484
+ }
11485
+ }, logonGroup: {
11486
+ serializedName: "typeProperties.logonGroup",
11487
+ type: {
11488
+ name: "any"
11489
+ }
11490
+ }, encryptedCredential: {
11491
+ serializedName: "typeProperties.encryptedCredential",
11492
+ type: {
11493
+ name: "any"
11494
+ }
11495
+ } })
11496
+ }
11497
+ };
11498
+ export const RestServiceLinkedService = {
11499
+ serializedName: "RestService",
11500
+ type: {
11501
+ name: "Composite",
11502
+ className: "RestServiceLinkedService",
11503
+ uberParent: "LinkedService",
11504
+ additionalProperties: { type: { name: "Object" } },
11505
+ polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
11506
+ modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { url: {
11507
+ serializedName: "typeProperties.url",
11508
+ required: true,
11509
+ type: {
11510
+ name: "any"
11511
+ }
11512
+ }, enableServerCertificateValidation: {
11513
+ serializedName: "typeProperties.enableServerCertificateValidation",
11514
+ type: {
11515
+ name: "any"
11516
+ }
11517
+ }, authenticationType: {
11518
+ serializedName: "typeProperties.authenticationType",
11519
+ required: true,
11520
+ type: {
11521
+ name: "String"
11522
+ }
11523
+ }, userName: {
11524
+ serializedName: "typeProperties.userName",
11525
+ type: {
11526
+ name: "any"
11527
+ }
11528
+ }, password: {
11529
+ serializedName: "typeProperties.password",
11530
+ type: {
11531
+ name: "Composite",
11532
+ className: "SecretBase"
11533
+ }
11534
+ }, servicePrincipalId: {
11535
+ serializedName: "typeProperties.servicePrincipalId",
11536
+ type: {
11537
+ name: "any"
11538
+ }
11539
+ }, servicePrincipalKey: {
11540
+ serializedName: "typeProperties.servicePrincipalKey",
11541
+ type: {
11542
+ name: "Composite",
11543
+ className: "SecretBase"
11544
+ }
11545
+ }, tenant: {
11546
+ serializedName: "typeProperties.tenant",
11547
+ type: {
11548
+ name: "any"
11549
+ }
11550
+ }, azureCloudType: {
11551
+ serializedName: "typeProperties.azureCloudType",
11552
+ type: {
11553
+ name: "any"
11554
+ }
11555
+ }, aadResourceId: {
11556
+ serializedName: "typeProperties.aadResourceId",
11557
+ type: {
11558
+ name: "any"
11559
+ }
11560
+ }, encryptedCredential: {
11561
+ serializedName: "typeProperties.encryptedCredential",
11562
+ type: {
11563
+ name: "any"
11564
+ }
11565
+ } })
11566
+ }
11567
+ };
11568
+ export const TeamDeskLinkedService = {
11569
+ serializedName: "TeamDesk",
11570
+ type: {
11571
+ name: "Composite",
11572
+ className: "TeamDeskLinkedService",
11573
+ uberParent: "LinkedService",
11574
+ additionalProperties: { type: { name: "Object" } },
11575
+ polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
11576
+ modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { authenticationType: {
11577
+ serializedName: "typeProperties.authenticationType",
11578
+ required: true,
11579
+ type: {
11580
+ name: "String"
11581
+ }
11582
+ }, url: {
11583
+ serializedName: "typeProperties.url",
11584
+ required: true,
11585
+ type: {
11586
+ name: "any"
11587
+ }
11588
+ }, userName: {
11589
+ serializedName: "typeProperties.userName",
11590
+ type: {
11591
+ name: "any"
11592
+ }
11593
+ }, password: {
11594
+ serializedName: "typeProperties.password",
11595
+ type: {
11596
+ name: "Composite",
11597
+ className: "SecretBase"
11598
+ }
11599
+ }, apiToken: {
11600
+ serializedName: "typeProperties.apiToken",
11601
+ type: {
11602
+ name: "Composite",
11603
+ className: "SecretBase"
11604
+ }
11605
+ }, encryptedCredential: {
11606
+ serializedName: "typeProperties.encryptedCredential",
11607
+ type: {
11608
+ name: "any"
11609
+ }
11610
+ } })
11611
+ }
11612
+ };
11613
+ export const QuickbaseLinkedService = {
11614
+ serializedName: "Quickbase",
11044
11615
  type: {
11045
11616
  name: "Composite",
11046
- className: "SapEccLinkedService",
11617
+ className: "QuickbaseLinkedService",
11047
11618
  uberParent: "LinkedService",
11048
11619
  additionalProperties: { type: { name: "Object" } },
11049
11620
  polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
@@ -11051,15 +11622,10 @@ export const SapEccLinkedService = {
11051
11622
  serializedName: "typeProperties.url",
11052
11623
  required: true,
11053
11624
  type: {
11054
- name: "String"
11055
- }
11056
- }, username: {
11057
- serializedName: "typeProperties.username",
11058
- type: {
11059
- name: "String"
11625
+ name: "any"
11060
11626
  }
11061
- }, password: {
11062
- serializedName: "typeProperties.password",
11627
+ }, userToken: {
11628
+ serializedName: "typeProperties.userToken",
11063
11629
  type: {
11064
11630
  name: "Composite",
11065
11631
  className: "SecretBase"
@@ -11067,73 +11633,25 @@ export const SapEccLinkedService = {
11067
11633
  }, encryptedCredential: {
11068
11634
  serializedName: "typeProperties.encryptedCredential",
11069
11635
  type: {
11070
- name: "String"
11636
+ name: "any"
11071
11637
  }
11072
11638
  } })
11073
11639
  }
11074
11640
  };
11075
- export const SapOpenHubLinkedService = {
11076
- serializedName: "SapOpenHub",
11641
+ export const SmartsheetLinkedService = {
11642
+ serializedName: "Smartsheet",
11077
11643
  type: {
11078
11644
  name: "Composite",
11079
- className: "SapOpenHubLinkedService",
11645
+ className: "SmartsheetLinkedService",
11080
11646
  uberParent: "LinkedService",
11081
11647
  additionalProperties: { type: { name: "Object" } },
11082
11648
  polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
11083
- modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { server: {
11084
- serializedName: "typeProperties.server",
11085
- required: true,
11086
- type: {
11087
- name: "any"
11088
- }
11089
- }, systemNumber: {
11090
- serializedName: "typeProperties.systemNumber",
11091
- required: true,
11092
- type: {
11093
- name: "any"
11094
- }
11095
- }, clientId: {
11096
- serializedName: "typeProperties.clientId",
11097
- required: true,
11098
- type: {
11099
- name: "any"
11100
- }
11101
- }, language: {
11102
- serializedName: "typeProperties.language",
11103
- type: {
11104
- name: "any"
11105
- }
11106
- }, systemId: {
11107
- serializedName: "typeProperties.systemId",
11108
- type: {
11109
- name: "any"
11110
- }
11111
- }, userName: {
11112
- serializedName: "typeProperties.userName",
11113
- type: {
11114
- name: "any"
11115
- }
11116
- }, password: {
11117
- serializedName: "typeProperties.password",
11649
+ modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { apiToken: {
11650
+ serializedName: "typeProperties.apiToken",
11118
11651
  type: {
11119
11652
  name: "Composite",
11120
11653
  className: "SecretBase"
11121
11654
  }
11122
- }, messageServer: {
11123
- serializedName: "typeProperties.messageServer",
11124
- type: {
11125
- name: "any"
11126
- }
11127
- }, messageServerService: {
11128
- serializedName: "typeProperties.messageServerService",
11129
- type: {
11130
- name: "any"
11131
- }
11132
- }, logonGroup: {
11133
- serializedName: "typeProperties.logonGroup",
11134
- type: {
11135
- name: "any"
11136
- }
11137
11655
  }, encryptedCredential: {
11138
11656
  serializedName: "typeProperties.encryptedCredential",
11139
11657
  type: {
@@ -11142,30 +11660,25 @@ export const SapOpenHubLinkedService = {
11142
11660
  } })
11143
11661
  }
11144
11662
  };
11145
- export const RestServiceLinkedService = {
11146
- serializedName: "RestService",
11663
+ export const ZendeskLinkedService = {
11664
+ serializedName: "Zendesk",
11147
11665
  type: {
11148
11666
  name: "Composite",
11149
- className: "RestServiceLinkedService",
11667
+ className: "ZendeskLinkedService",
11150
11668
  uberParent: "LinkedService",
11151
11669
  additionalProperties: { type: { name: "Object" } },
11152
11670
  polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
11153
- modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { url: {
11154
- serializedName: "typeProperties.url",
11671
+ modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { authenticationType: {
11672
+ serializedName: "typeProperties.authenticationType",
11155
11673
  required: true,
11156
11674
  type: {
11157
- name: "any"
11158
- }
11159
- }, enableServerCertificateValidation: {
11160
- serializedName: "typeProperties.enableServerCertificateValidation",
11161
- type: {
11162
- name: "any"
11675
+ name: "String"
11163
11676
  }
11164
- }, authenticationType: {
11165
- serializedName: "typeProperties.authenticationType",
11677
+ }, url: {
11678
+ serializedName: "typeProperties.url",
11166
11679
  required: true,
11167
11680
  type: {
11168
- name: "String"
11681
+ name: "any"
11169
11682
  }
11170
11683
  }, userName: {
11171
11684
  serializedName: "typeProperties.userName",
@@ -11178,32 +11691,12 @@ export const RestServiceLinkedService = {
11178
11691
  name: "Composite",
11179
11692
  className: "SecretBase"
11180
11693
  }
11181
- }, servicePrincipalId: {
11182
- serializedName: "typeProperties.servicePrincipalId",
11183
- type: {
11184
- name: "any"
11185
- }
11186
- }, servicePrincipalKey: {
11187
- serializedName: "typeProperties.servicePrincipalKey",
11694
+ }, apiToken: {
11695
+ serializedName: "typeProperties.apiToken",
11188
11696
  type: {
11189
11697
  name: "Composite",
11190
11698
  className: "SecretBase"
11191
11699
  }
11192
- }, tenant: {
11193
- serializedName: "typeProperties.tenant",
11194
- type: {
11195
- name: "any"
11196
- }
11197
- }, azureCloudType: {
11198
- serializedName: "typeProperties.azureCloudType",
11199
- type: {
11200
- name: "any"
11201
- }
11202
- }, aadResourceId: {
11203
- serializedName: "typeProperties.aadResourceId",
11204
- type: {
11205
- name: "any"
11206
- }
11207
11700
  }, encryptedCredential: {
11208
11701
  serializedName: "typeProperties.encryptedCredential",
11209
11702
  type: {
@@ -13725,9 +14218,13 @@ export const GoogleAdWordsLinkedService = {
13725
14218
  uberParent: "LinkedService",
13726
14219
  additionalProperties: { type: { name: "Object" } },
13727
14220
  polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
13728
- modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { clientCustomerID: {
14221
+ modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { connectionProperties: {
14222
+ serializedName: "typeProperties.connectionProperties",
14223
+ type: {
14224
+ name: "any"
14225
+ }
14226
+ }, clientCustomerID: {
13729
14227
  serializedName: "typeProperties.clientCustomerID",
13730
- required: true,
13731
14228
  type: {
13732
14229
  name: "any"
13733
14230
  }
@@ -13739,7 +14236,6 @@ export const GoogleAdWordsLinkedService = {
13739
14236
  }
13740
14237
  }, authenticationType: {
13741
14238
  serializedName: "typeProperties.authenticationType",
13742
- required: true,
13743
14239
  type: {
13744
14240
  name: "String"
13745
14241
  }
@@ -14304,19 +14800,7 @@ export const DataFlowSource = {
14304
14800
  type: {
14305
14801
  name: "Composite",
14306
14802
  className: "DataFlowSource",
14307
- modelProperties: Object.assign(Object.assign({}, Transformation.type.modelProperties), { dataset: {
14308
- serializedName: "dataset",
14309
- type: {
14310
- name: "Composite",
14311
- className: "DatasetReference"
14312
- }
14313
- }, linkedService: {
14314
- serializedName: "linkedService",
14315
- type: {
14316
- name: "Composite",
14317
- className: "LinkedServiceReference"
14318
- }
14319
- }, schemaLinkedService: {
14803
+ modelProperties: Object.assign(Object.assign({}, Transformation.type.modelProperties), { schemaLinkedService: {
14320
14804
  serializedName: "schemaLinkedService",
14321
14805
  type: {
14322
14806
  name: "Composite",
@@ -14329,19 +14813,7 @@ export const DataFlowSink = {
14329
14813
  type: {
14330
14814
  name: "Composite",
14331
14815
  className: "DataFlowSink",
14332
- modelProperties: Object.assign(Object.assign({}, Transformation.type.modelProperties), { dataset: {
14333
- serializedName: "dataset",
14334
- type: {
14335
- name: "Composite",
14336
- className: "DatasetReference"
14337
- }
14338
- }, linkedService: {
14339
- serializedName: "linkedService",
14340
- type: {
14341
- name: "Composite",
14342
- className: "LinkedServiceReference"
14343
- }
14344
- }, schemaLinkedService: {
14816
+ modelProperties: Object.assign(Object.assign({}, Transformation.type.modelProperties), { schemaLinkedService: {
14345
14817
  serializedName: "schemaLinkedService",
14346
14818
  type: {
14347
14819
  name: "Composite",
@@ -14631,92 +15103,6 @@ export const ParquetFormat = {
14631
15103
  modelProperties: Object.assign({}, DatasetStorageFormat.type.modelProperties)
14632
15104
  }
14633
15105
  };
14634
- export const DatasetBZip2Compression = {
14635
- serializedName: "BZip2",
14636
- type: {
14637
- name: "Composite",
14638
- className: "DatasetBZip2Compression",
14639
- uberParent: "DatasetCompression",
14640
- additionalProperties: { type: { name: "Object" } },
14641
- polymorphicDiscriminator: DatasetCompression.type.polymorphicDiscriminator,
14642
- modelProperties: Object.assign({}, DatasetCompression.type.modelProperties)
14643
- }
14644
- };
14645
- export const DatasetGZipCompression = {
14646
- serializedName: "GZip",
14647
- type: {
14648
- name: "Composite",
14649
- className: "DatasetGZipCompression",
14650
- uberParent: "DatasetCompression",
14651
- additionalProperties: { type: { name: "Object" } },
14652
- polymorphicDiscriminator: DatasetCompression.type.polymorphicDiscriminator,
14653
- modelProperties: Object.assign(Object.assign({}, DatasetCompression.type.modelProperties), { level: {
14654
- serializedName: "level",
14655
- type: {
14656
- name: "any"
14657
- }
14658
- } })
14659
- }
14660
- };
14661
- export const DatasetDeflateCompression = {
14662
- serializedName: "Deflate",
14663
- type: {
14664
- name: "Composite",
14665
- className: "DatasetDeflateCompression",
14666
- uberParent: "DatasetCompression",
14667
- additionalProperties: { type: { name: "Object" } },
14668
- polymorphicDiscriminator: DatasetCompression.type.polymorphicDiscriminator,
14669
- modelProperties: Object.assign(Object.assign({}, DatasetCompression.type.modelProperties), { level: {
14670
- serializedName: "level",
14671
- type: {
14672
- name: "any"
14673
- }
14674
- } })
14675
- }
14676
- };
14677
- export const DatasetZipDeflateCompression = {
14678
- serializedName: "ZipDeflate",
14679
- type: {
14680
- name: "Composite",
14681
- className: "DatasetZipDeflateCompression",
14682
- uberParent: "DatasetCompression",
14683
- additionalProperties: { type: { name: "Object" } },
14684
- polymorphicDiscriminator: DatasetCompression.type.polymorphicDiscriminator,
14685
- modelProperties: Object.assign(Object.assign({}, DatasetCompression.type.modelProperties), { level: {
14686
- serializedName: "level",
14687
- type: {
14688
- name: "any"
14689
- }
14690
- } })
14691
- }
14692
- };
14693
- export const DatasetTarCompression = {
14694
- serializedName: "Tar",
14695
- type: {
14696
- name: "Composite",
14697
- className: "DatasetTarCompression",
14698
- uberParent: "DatasetCompression",
14699
- additionalProperties: { type: { name: "Object" } },
14700
- polymorphicDiscriminator: DatasetCompression.type.polymorphicDiscriminator,
14701
- modelProperties: Object.assign({}, DatasetCompression.type.modelProperties)
14702
- }
14703
- };
14704
- export const DatasetTarGZipCompression = {
14705
- serializedName: "TarGZip",
14706
- type: {
14707
- name: "Composite",
14708
- className: "DatasetTarGZipCompression",
14709
- uberParent: "DatasetCompression",
14710
- additionalProperties: { type: { name: "Object" } },
14711
- polymorphicDiscriminator: DatasetCompression.type.polymorphicDiscriminator,
14712
- modelProperties: Object.assign(Object.assign({}, DatasetCompression.type.modelProperties), { level: {
14713
- serializedName: "level",
14714
- type: {
14715
- name: "any"
14716
- }
14717
- } })
14718
- }
14719
- };
14720
15106
  export const WebAnonymousAuthentication = {
14721
15107
  serializedName: "Anonymous",
14722
15108
  type: {
@@ -15246,6 +15632,11 @@ export const FtpReadSettings = {
15246
15632
  type: {
15247
15633
  name: "Boolean"
15248
15634
  }
15635
+ }, disableChunking: {
15636
+ serializedName: "disableChunking",
15637
+ type: {
15638
+ name: "any"
15639
+ }
15249
15640
  } })
15250
15641
  }
15251
15642
  };
@@ -15302,6 +15693,11 @@ export const SftpReadSettings = {
15302
15693
  type: {
15303
15694
  name: "any"
15304
15695
  }
15696
+ }, disableChunking: {
15697
+ serializedName: "disableChunking",
15698
+ type: {
15699
+ name: "any"
15700
+ }
15305
15701
  } })
15306
15702
  }
15307
15703
  };
@@ -19708,6 +20104,34 @@ export const ExecuteDataFlowActivity = {
19708
20104
  } })
19709
20105
  }
19710
20106
  };
20107
+ export const ScriptActivity = {
20108
+ serializedName: "Script",
20109
+ type: {
20110
+ name: "Composite",
20111
+ className: "ScriptActivity",
20112
+ uberParent: "Activity",
20113
+ additionalProperties: { type: { name: "Object" } },
20114
+ polymorphicDiscriminator: Activity.type.polymorphicDiscriminator,
20115
+ modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { scripts: {
20116
+ serializedName: "typeProperties.scripts",
20117
+ type: {
20118
+ name: "Sequence",
20119
+ element: {
20120
+ type: {
20121
+ name: "Composite",
20122
+ className: "ScriptActivityScriptBlock"
20123
+ }
20124
+ }
20125
+ }
20126
+ }, logSettings: {
20127
+ serializedName: "typeProperties.logSettings",
20128
+ type: {
20129
+ name: "Composite",
20130
+ className: "ScriptActivityTypePropertiesLogSettings"
20131
+ }
20132
+ } })
20133
+ }
20134
+ };
19711
20135
  export const SynapseNotebookActivity = {
19712
20136
  serializedName: "SynapseNotebook",
19713
20137
  type: {
@@ -19722,11 +20146,17 @@ export const SynapseNotebookActivity = {
19722
20146
  name: "Composite",
19723
20147
  className: "SynapseNotebookReference"
19724
20148
  }
20149
+ }, sparkPool: {
20150
+ serializedName: "typeProperties.sparkPool",
20151
+ type: {
20152
+ name: "Composite",
20153
+ className: "BigDataPoolParametrizationReference"
20154
+ }
19725
20155
  }, parameters: {
19726
20156
  serializedName: "typeProperties.parameters",
19727
20157
  type: {
19728
20158
  name: "Dictionary",
19729
- value: { type: { name: "any" } }
20159
+ value: { type: { name: "Composite", className: "NotebookParameter" } }
19730
20160
  }
19731
20161
  } })
19732
20162
  }
@@ -19755,6 +20185,52 @@ export const SynapseSparkJobDefinitionActivity = {
19755
20185
  }
19756
20186
  }
19757
20187
  }
20188
+ }, file: {
20189
+ serializedName: "typeProperties.file",
20190
+ type: {
20191
+ name: "any"
20192
+ }
20193
+ }, className: {
20194
+ serializedName: "typeProperties.className",
20195
+ type: {
20196
+ name: "any"
20197
+ }
20198
+ }, files: {
20199
+ serializedName: "typeProperties.files",
20200
+ type: {
20201
+ name: "Sequence",
20202
+ element: {
20203
+ type: {
20204
+ name: "any"
20205
+ }
20206
+ }
20207
+ }
20208
+ }, targetBigDataPool: {
20209
+ serializedName: "typeProperties.targetBigDataPool",
20210
+ type: {
20211
+ name: "Composite",
20212
+ className: "BigDataPoolParametrizationReference"
20213
+ }
20214
+ }, executorSize: {
20215
+ serializedName: "typeProperties.executorSize",
20216
+ type: {
20217
+ name: "any"
20218
+ }
20219
+ }, conf: {
20220
+ serializedName: "typeProperties.conf",
20221
+ type: {
20222
+ name: "any"
20223
+ }
20224
+ }, driverSize: {
20225
+ serializedName: "typeProperties.driverSize",
20226
+ type: {
20227
+ name: "any"
20228
+ }
20229
+ }, numExecutors: {
20230
+ serializedName: "typeProperties.numExecutors",
20231
+ type: {
20232
+ name: "Number"
20233
+ }
19758
20234
  } })
19759
20235
  }
19760
20236
  };
@@ -21364,7 +21840,6 @@ export let discriminators = {
21364
21840
  SecretBase: SecretBase,
21365
21841
  DatasetLocation: DatasetLocation,
21366
21842
  DatasetStorageFormat: DatasetStorageFormat,
21367
- DatasetCompression: DatasetCompression,
21368
21843
  WebLinkedServiceTypeProperties: WebLinkedServiceTypeProperties,
21369
21844
  StoreReadSettings: StoreReadSettings,
21370
21845
  StoreWriteSettings: StoreWriteSettings,
@@ -21380,6 +21855,7 @@ export let discriminators = {
21380
21855
  "CustomSetupBase.undefined": CustomSetupBase,
21381
21856
  LinkedIntegrationRuntimeType: LinkedIntegrationRuntimeType,
21382
21857
  "DataFlow.MappingDataFlow": MappingDataFlow,
21858
+ "DataFlow.Flowlet": Flowlet,
21383
21859
  "IntegrationRuntime.Managed": ManagedIntegrationRuntime,
21384
21860
  "IntegrationRuntime.SelfHosted": SelfHostedIntegrationRuntime,
21385
21861
  "Dataset.AmazonS3Object": AmazonS3Dataset,
@@ -21525,6 +22001,10 @@ export let discriminators = {
21525
22001
  "LinkedService.SapEcc": SapEccLinkedService,
21526
22002
  "LinkedService.SapOpenHub": SapOpenHubLinkedService,
21527
22003
  "LinkedService.RestService": RestServiceLinkedService,
22004
+ "LinkedService.TeamDesk": TeamDeskLinkedService,
22005
+ "LinkedService.Quickbase": QuickbaseLinkedService,
22006
+ "LinkedService.Smartsheet": SmartsheetLinkedService,
22007
+ "LinkedService.Zendesk": ZendeskLinkedService,
21528
22008
  "LinkedService.AmazonS3": AmazonS3LinkedService,
21529
22009
  "LinkedService.AmazonRedshift": AmazonRedshiftLinkedService,
21530
22010
  "LinkedService.CustomDataSource": CustomDataSourceLinkedService,
@@ -21602,12 +22082,6 @@ export let discriminators = {
21602
22082
  "DatasetStorageFormat.AvroFormat": AvroFormat,
21603
22083
  "DatasetStorageFormat.OrcFormat": OrcFormat,
21604
22084
  "DatasetStorageFormat.ParquetFormat": ParquetFormat,
21605
- "DatasetCompression.BZip2": DatasetBZip2Compression,
21606
- "DatasetCompression.GZip": DatasetGZipCompression,
21607
- "DatasetCompression.Deflate": DatasetDeflateCompression,
21608
- "DatasetCompression.ZipDeflate": DatasetZipDeflateCompression,
21609
- "DatasetCompression.Tar": DatasetTarCompression,
21610
- "DatasetCompression.TarGZip": DatasetTarGZipCompression,
21611
22085
  "WebLinkedServiceTypeProperties.Anonymous": WebAnonymousAuthentication,
21612
22086
  "WebLinkedServiceTypeProperties.Basic": WebBasicAuthentication,
21613
22087
  "WebLinkedServiceTypeProperties.ClientCertificate": WebClientCertificateAuthentication,
@@ -21757,6 +22231,7 @@ export let discriminators = {
21757
22231
  "Activity.DatabricksSparkPython": DatabricksSparkPythonActivity,
21758
22232
  "Activity.AzureFunctionActivity": AzureFunctionActivity,
21759
22233
  "Activity.ExecuteDataFlow": ExecuteDataFlowActivity,
22234
+ "Activity.Script": ScriptActivity,
21760
22235
  "Activity.SynapseNotebook": SynapseNotebookActivity,
21761
22236
  "Activity.SparkJob": SynapseSparkJobDefinitionActivity,
21762
22237
  "Trigger.ScheduleTrigger": ScheduleTrigger,