@azure/synapse-artifacts 1.0.0-beta.10 → 1.0.0-beta.11

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 (62) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +1375 -1791
  3. package/dist/index.js.map +1 -1
  4. package/dist-esm/src/artifactsClient.js +18 -1
  5. package/dist-esm/src/artifactsClient.js.map +1 -1
  6. package/dist-esm/src/models/index.js +378 -0
  7. package/dist-esm/src/models/index.js.map +1 -1
  8. package/dist-esm/src/models/mappers.js +583 -29
  9. package/dist-esm/src/models/mappers.js.map +1 -1
  10. package/dist-esm/src/models/parameters.js +1 -1
  11. package/dist-esm/src/models/parameters.js.map +1 -1
  12. package/dist-esm/src/operations/bigDataPools.js +7 -32
  13. package/dist-esm/src/operations/bigDataPools.js.map +1 -1
  14. package/dist-esm/src/operations/dataFlowDebugSession.js +19 -92
  15. package/dist-esm/src/operations/dataFlowDebugSession.js.map +1 -1
  16. package/dist-esm/src/operations/dataFlowOperations.js +19 -92
  17. package/dist-esm/src/operations/dataFlowOperations.js.map +1 -1
  18. package/dist-esm/src/operations/datasetOperations.js +19 -92
  19. package/dist-esm/src/operations/datasetOperations.js.map +1 -1
  20. package/dist-esm/src/operations/integrationRuntimes.js +7 -32
  21. package/dist-esm/src/operations/integrationRuntimes.js.map +1 -1
  22. package/dist-esm/src/operations/kqlScriptOperations.js +13 -62
  23. package/dist-esm/src/operations/kqlScriptOperations.js.map +1 -1
  24. package/dist-esm/src/operations/kqlScripts.js +7 -32
  25. package/dist-esm/src/operations/kqlScripts.js.map +1 -1
  26. package/dist-esm/src/operations/library.js +25 -122
  27. package/dist-esm/src/operations/library.js.map +1 -1
  28. package/dist-esm/src/operations/linkConnectionOperations.js +37 -182
  29. package/dist-esm/src/operations/linkConnectionOperations.js.map +1 -1
  30. package/dist-esm/src/operations/linkedServiceOperations.js +19 -92
  31. package/dist-esm/src/operations/linkedServiceOperations.js.map +1 -1
  32. package/dist-esm/src/operations/metastore.js +13 -62
  33. package/dist-esm/src/operations/metastore.js.map +1 -1
  34. package/dist-esm/src/operations/notebookOperationResult.js +4 -17
  35. package/dist-esm/src/operations/notebookOperationResult.js.map +1 -1
  36. package/dist-esm/src/operations/notebookOperations.js +25 -122
  37. package/dist-esm/src/operations/notebookOperations.js.map +1 -1
  38. package/dist-esm/src/operations/pipelineOperations.js +22 -107
  39. package/dist-esm/src/operations/pipelineOperations.js.map +1 -1
  40. package/dist-esm/src/operations/pipelineRunOperations.js +13 -62
  41. package/dist-esm/src/operations/pipelineRunOperations.js.map +1 -1
  42. package/dist-esm/src/operations/sparkConfigurationOperations.js +19 -92
  43. package/dist-esm/src/operations/sparkConfigurationOperations.js.map +1 -1
  44. package/dist-esm/src/operations/sparkJobDefinitionOperations.js +25 -122
  45. package/dist-esm/src/operations/sparkJobDefinitionOperations.js.map +1 -1
  46. package/dist-esm/src/operations/sqlPools.js +7 -32
  47. package/dist-esm/src/operations/sqlPools.js.map +1 -1
  48. package/dist-esm/src/operations/sqlScriptOperations.js +19 -92
  49. package/dist-esm/src/operations/sqlScriptOperations.js.map +1 -1
  50. package/dist-esm/src/operations/triggerOperations.js +31 -152
  51. package/dist-esm/src/operations/triggerOperations.js.map +1 -1
  52. package/dist-esm/src/operations/triggerRunOperations.js +10 -47
  53. package/dist-esm/src/operations/triggerRunOperations.js.map +1 -1
  54. package/dist-esm/src/operations/workspaceGitRepoManagement.js +4 -17
  55. package/dist-esm/src/operations/workspaceGitRepoManagement.js.map +1 -1
  56. package/dist-esm/src/operations/workspaceOperations.js +4 -17
  57. package/dist-esm/src/operations/workspaceOperations.js.map +1 -1
  58. package/dist-esm/src/tracing.js +4 -3
  59. package/dist-esm/src/tracing.js.map +1 -1
  60. package/package.json +5 -5
  61. package/types/synapse-artifacts.d.ts +1557 -948
  62. package/CHANGELOG.md +0 -65
@@ -8,815 +8,1193 @@
8
8
  /** Known values of {@link Type} that the service accepts. */
9
9
  export var KnownType;
10
10
  (function (KnownType) {
11
+ /** LinkedServiceReference */
11
12
  KnownType["LinkedServiceReference"] = "LinkedServiceReference";
12
13
  })(KnownType || (KnownType = {}));
13
14
  /** Known values of {@link RequestStatus} that the service accepts. */
14
15
  export var KnownRequestStatus;
15
16
  (function (KnownRequestStatus) {
17
+ /** Running */
16
18
  KnownRequestStatus["Running"] = "Running";
19
+ /** Completed */
17
20
  KnownRequestStatus["Completed"] = "Completed";
21
+ /** Failed */
18
22
  KnownRequestStatus["Failed"] = "Failed";
19
23
  })(KnownRequestStatus || (KnownRequestStatus = {}));
20
24
  /** Known values of {@link ResourceStatus} that the service accepts. */
21
25
  export var KnownResourceStatus;
22
26
  (function (KnownResourceStatus) {
27
+ /** Creating */
23
28
  KnownResourceStatus["Creating"] = "Creating";
29
+ /** Created */
24
30
  KnownResourceStatus["Created"] = "Created";
31
+ /** Failed */
25
32
  KnownResourceStatus["Failed"] = "Failed";
26
33
  })(KnownResourceStatus || (KnownResourceStatus = {}));
27
34
  /** Known values of {@link NodeSize} that the service accepts. */
28
35
  export var KnownNodeSize;
29
36
  (function (KnownNodeSize) {
37
+ /** None */
30
38
  KnownNodeSize["None"] = "None";
39
+ /** Small */
31
40
  KnownNodeSize["Small"] = "Small";
41
+ /** Medium */
32
42
  KnownNodeSize["Medium"] = "Medium";
43
+ /** Large */
33
44
  KnownNodeSize["Large"] = "Large";
45
+ /** XLarge */
34
46
  KnownNodeSize["XLarge"] = "XLarge";
47
+ /** XXLarge */
35
48
  KnownNodeSize["XXLarge"] = "XXLarge";
49
+ /** XXXLarge */
36
50
  KnownNodeSize["XXXLarge"] = "XXXLarge";
37
51
  })(KnownNodeSize || (KnownNodeSize = {}));
38
52
  /** Known values of {@link NodeSizeFamily} that the service accepts. */
39
53
  export var KnownNodeSizeFamily;
40
54
  (function (KnownNodeSizeFamily) {
55
+ /** None */
41
56
  KnownNodeSizeFamily["None"] = "None";
57
+ /** MemoryOptimized */
42
58
  KnownNodeSizeFamily["MemoryOptimized"] = "MemoryOptimized";
43
59
  })(KnownNodeSizeFamily || (KnownNodeSizeFamily = {}));
44
60
  /** Known values of {@link IntegrationRuntimeType} that the service accepts. */
45
61
  export var KnownIntegrationRuntimeType;
46
62
  (function (KnownIntegrationRuntimeType) {
63
+ /** Managed */
47
64
  KnownIntegrationRuntimeType["Managed"] = "Managed";
65
+ /** SelfHosted */
48
66
  KnownIntegrationRuntimeType["SelfHosted"] = "SelfHosted";
49
67
  })(KnownIntegrationRuntimeType || (KnownIntegrationRuntimeType = {}));
50
68
  /** Known values of {@link ParameterType} that the service accepts. */
51
69
  export var KnownParameterType;
52
70
  (function (KnownParameterType) {
71
+ /** Object */
53
72
  KnownParameterType["Object"] = "Object";
73
+ /** String */
54
74
  KnownParameterType["String"] = "String";
75
+ /** Int */
55
76
  KnownParameterType["Int"] = "Int";
77
+ /** Float */
56
78
  KnownParameterType["Float"] = "Float";
79
+ /** Bool */
57
80
  KnownParameterType["Bool"] = "Bool";
81
+ /** Array */
58
82
  KnownParameterType["Array"] = "Array";
83
+ /** SecureString */
59
84
  KnownParameterType["SecureString"] = "SecureString";
60
85
  })(KnownParameterType || (KnownParameterType = {}));
61
86
  /** Known values of {@link IntegrationRuntimeReferenceType} that the service accepts. */
62
87
  export var KnownIntegrationRuntimeReferenceType;
63
88
  (function (KnownIntegrationRuntimeReferenceType) {
89
+ /** IntegrationRuntimeReference */
64
90
  KnownIntegrationRuntimeReferenceType["IntegrationRuntimeReference"] = "IntegrationRuntimeReference";
65
91
  })(KnownIntegrationRuntimeReferenceType || (KnownIntegrationRuntimeReferenceType = {}));
66
92
  /** Known values of {@link DataFlowDebugCommandType} that the service accepts. */
67
93
  export var KnownDataFlowDebugCommandType;
68
94
  (function (KnownDataFlowDebugCommandType) {
95
+ /** ExecutePreviewQuery */
69
96
  KnownDataFlowDebugCommandType["ExecutePreviewQuery"] = "executePreviewQuery";
97
+ /** ExecuteStatisticsQuery */
70
98
  KnownDataFlowDebugCommandType["ExecuteStatisticsQuery"] = "executeStatisticsQuery";
99
+ /** ExecuteExpressionQuery */
71
100
  KnownDataFlowDebugCommandType["ExecuteExpressionQuery"] = "executeExpressionQuery";
72
101
  })(KnownDataFlowDebugCommandType || (KnownDataFlowDebugCommandType = {}));
73
102
  /** Known values of {@link BigDataPoolReferenceType} that the service accepts. */
74
103
  export var KnownBigDataPoolReferenceType;
75
104
  (function (KnownBigDataPoolReferenceType) {
105
+ /** BigDataPoolReference */
76
106
  KnownBigDataPoolReferenceType["BigDataPoolReference"] = "BigDataPoolReference";
77
107
  })(KnownBigDataPoolReferenceType || (KnownBigDataPoolReferenceType = {}));
108
+ /** Known values of {@link SparkConfigurationReferenceType} that the service accepts. */
109
+ export var KnownSparkConfigurationReferenceType;
110
+ (function (KnownSparkConfigurationReferenceType) {
111
+ /** SparkConfigurationReference */
112
+ KnownSparkConfigurationReferenceType["SparkConfigurationReference"] = "SparkConfigurationReference";
113
+ })(KnownSparkConfigurationReferenceType || (KnownSparkConfigurationReferenceType = {}));
78
114
  /** Known values of {@link CellOutputType} that the service accepts. */
79
115
  export var KnownCellOutputType;
80
116
  (function (KnownCellOutputType) {
117
+ /** ExecuteResult */
81
118
  KnownCellOutputType["ExecuteResult"] = "execute_result";
119
+ /** DisplayData */
82
120
  KnownCellOutputType["DisplayData"] = "display_data";
121
+ /** Stream */
83
122
  KnownCellOutputType["Stream"] = "stream";
123
+ /** Error */
84
124
  KnownCellOutputType["Error"] = "error";
85
125
  })(KnownCellOutputType || (KnownCellOutputType = {}));
86
126
  /** Known values of {@link DependencyCondition} that the service accepts. */
87
127
  export var KnownDependencyCondition;
88
128
  (function (KnownDependencyCondition) {
129
+ /** Succeeded */
89
130
  KnownDependencyCondition["Succeeded"] = "Succeeded";
131
+ /** Failed */
90
132
  KnownDependencyCondition["Failed"] = "Failed";
133
+ /** Skipped */
91
134
  KnownDependencyCondition["Skipped"] = "Skipped";
135
+ /** Completed */
92
136
  KnownDependencyCondition["Completed"] = "Completed";
93
137
  })(KnownDependencyCondition || (KnownDependencyCondition = {}));
94
138
  /** Known values of {@link VariableType} that the service accepts. */
95
139
  export var KnownVariableType;
96
140
  (function (KnownVariableType) {
141
+ /** String */
97
142
  KnownVariableType["String"] = "String";
143
+ /** Bool */
98
144
  KnownVariableType["Bool"] = "Bool";
145
+ /** Boolean */
99
146
  KnownVariableType["Boolean"] = "Boolean";
147
+ /** Array */
100
148
  KnownVariableType["Array"] = "Array";
101
149
  })(KnownVariableType || (KnownVariableType = {}));
102
150
  /** Known values of {@link RunQueryFilterOperand} that the service accepts. */
103
151
  export var KnownRunQueryFilterOperand;
104
152
  (function (KnownRunQueryFilterOperand) {
153
+ /** PipelineName */
105
154
  KnownRunQueryFilterOperand["PipelineName"] = "PipelineName";
155
+ /** Status */
106
156
  KnownRunQueryFilterOperand["Status"] = "Status";
157
+ /** RunStart */
107
158
  KnownRunQueryFilterOperand["RunStart"] = "RunStart";
159
+ /** RunEnd */
108
160
  KnownRunQueryFilterOperand["RunEnd"] = "RunEnd";
161
+ /** ActivityName */
109
162
  KnownRunQueryFilterOperand["ActivityName"] = "ActivityName";
163
+ /** ActivityRunStart */
110
164
  KnownRunQueryFilterOperand["ActivityRunStart"] = "ActivityRunStart";
165
+ /** ActivityRunEnd */
111
166
  KnownRunQueryFilterOperand["ActivityRunEnd"] = "ActivityRunEnd";
167
+ /** ActivityType */
112
168
  KnownRunQueryFilterOperand["ActivityType"] = "ActivityType";
169
+ /** TriggerName */
113
170
  KnownRunQueryFilterOperand["TriggerName"] = "TriggerName";
171
+ /** TriggerRunTimestamp */
114
172
  KnownRunQueryFilterOperand["TriggerRunTimestamp"] = "TriggerRunTimestamp";
173
+ /** RunGroupId */
115
174
  KnownRunQueryFilterOperand["RunGroupId"] = "RunGroupId";
175
+ /** LatestOnly */
116
176
  KnownRunQueryFilterOperand["LatestOnly"] = "LatestOnly";
117
177
  })(KnownRunQueryFilterOperand || (KnownRunQueryFilterOperand = {}));
118
178
  /** Known values of {@link RunQueryFilterOperator} that the service accepts. */
119
179
  export var KnownRunQueryFilterOperator;
120
180
  (function (KnownRunQueryFilterOperator) {
181
+ /** Equals */
121
182
  KnownRunQueryFilterOperator["Equals"] = "Equals";
183
+ /** NotEquals */
122
184
  KnownRunQueryFilterOperator["NotEquals"] = "NotEquals";
185
+ /** In */
123
186
  KnownRunQueryFilterOperator["In"] = "In";
187
+ /** NotIn */
124
188
  KnownRunQueryFilterOperator["NotIn"] = "NotIn";
125
189
  })(KnownRunQueryFilterOperator || (KnownRunQueryFilterOperator = {}));
126
190
  /** Known values of {@link RunQueryOrderByField} that the service accepts. */
127
191
  export var KnownRunQueryOrderByField;
128
192
  (function (KnownRunQueryOrderByField) {
193
+ /** RunStart */
129
194
  KnownRunQueryOrderByField["RunStart"] = "RunStart";
195
+ /** RunEnd */
130
196
  KnownRunQueryOrderByField["RunEnd"] = "RunEnd";
197
+ /** PipelineName */
131
198
  KnownRunQueryOrderByField["PipelineName"] = "PipelineName";
199
+ /** Status */
132
200
  KnownRunQueryOrderByField["Status"] = "Status";
201
+ /** ActivityName */
133
202
  KnownRunQueryOrderByField["ActivityName"] = "ActivityName";
203
+ /** ActivityRunStart */
134
204
  KnownRunQueryOrderByField["ActivityRunStart"] = "ActivityRunStart";
205
+ /** ActivityRunEnd */
135
206
  KnownRunQueryOrderByField["ActivityRunEnd"] = "ActivityRunEnd";
207
+ /** TriggerName */
136
208
  KnownRunQueryOrderByField["TriggerName"] = "TriggerName";
209
+ /** TriggerRunTimestamp */
137
210
  KnownRunQueryOrderByField["TriggerRunTimestamp"] = "TriggerRunTimestamp";
138
211
  })(KnownRunQueryOrderByField || (KnownRunQueryOrderByField = {}));
139
212
  /** Known values of {@link RunQueryOrder} that the service accepts. */
140
213
  export var KnownRunQueryOrder;
141
214
  (function (KnownRunQueryOrder) {
215
+ /** ASC */
142
216
  KnownRunQueryOrder["ASC"] = "ASC";
217
+ /** Desc */
143
218
  KnownRunQueryOrder["Desc"] = "DESC";
144
219
  })(KnownRunQueryOrder || (KnownRunQueryOrder = {}));
145
220
  /** Known values of {@link SparkJobType} that the service accepts. */
146
221
  export var KnownSparkJobType;
147
222
  (function (KnownSparkJobType) {
223
+ /** SparkBatch */
148
224
  KnownSparkJobType["SparkBatch"] = "SparkBatch";
225
+ /** SparkSession */
149
226
  KnownSparkJobType["SparkSession"] = "SparkSession";
150
227
  })(KnownSparkJobType || (KnownSparkJobType = {}));
151
228
  /** Known values of {@link SparkBatchJobResultType} that the service accepts. */
152
229
  export var KnownSparkBatchJobResultType;
153
230
  (function (KnownSparkBatchJobResultType) {
231
+ /** Uncertain */
154
232
  KnownSparkBatchJobResultType["Uncertain"] = "Uncertain";
233
+ /** Succeeded */
155
234
  KnownSparkBatchJobResultType["Succeeded"] = "Succeeded";
235
+ /** Failed */
156
236
  KnownSparkBatchJobResultType["Failed"] = "Failed";
237
+ /** Cancelled */
157
238
  KnownSparkBatchJobResultType["Cancelled"] = "Cancelled";
158
239
  })(KnownSparkBatchJobResultType || (KnownSparkBatchJobResultType = {}));
159
240
  /** Known values of {@link SchedulerCurrentState} that the service accepts. */
160
241
  export var KnownSchedulerCurrentState;
161
242
  (function (KnownSchedulerCurrentState) {
243
+ /** Queued */
162
244
  KnownSchedulerCurrentState["Queued"] = "Queued";
245
+ /** Scheduled */
163
246
  KnownSchedulerCurrentState["Scheduled"] = "Scheduled";
247
+ /** Ended */
164
248
  KnownSchedulerCurrentState["Ended"] = "Ended";
165
249
  })(KnownSchedulerCurrentState || (KnownSchedulerCurrentState = {}));
166
250
  /** Known values of {@link PluginCurrentState} that the service accepts. */
167
251
  export var KnownPluginCurrentState;
168
252
  (function (KnownPluginCurrentState) {
253
+ /** Preparation */
169
254
  KnownPluginCurrentState["Preparation"] = "Preparation";
255
+ /** ResourceAcquisition */
170
256
  KnownPluginCurrentState["ResourceAcquisition"] = "ResourceAcquisition";
257
+ /** Queued */
171
258
  KnownPluginCurrentState["Queued"] = "Queued";
259
+ /** Submission */
172
260
  KnownPluginCurrentState["Submission"] = "Submission";
261
+ /** Monitoring */
173
262
  KnownPluginCurrentState["Monitoring"] = "Monitoring";
263
+ /** Cleanup */
174
264
  KnownPluginCurrentState["Cleanup"] = "Cleanup";
265
+ /** Ended */
175
266
  KnownPluginCurrentState["Ended"] = "Ended";
176
267
  })(KnownPluginCurrentState || (KnownPluginCurrentState = {}));
177
268
  /** Known values of {@link SparkErrorSource} that the service accepts. */
178
269
  export var KnownSparkErrorSource;
179
270
  (function (KnownSparkErrorSource) {
271
+ /** System */
180
272
  KnownSparkErrorSource["System"] = "System";
273
+ /** User */
181
274
  KnownSparkErrorSource["User"] = "User";
275
+ /** Unknown */
182
276
  KnownSparkErrorSource["Unknown"] = "Unknown";
277
+ /** Dependency */
183
278
  KnownSparkErrorSource["Dependency"] = "Dependency";
184
279
  })(KnownSparkErrorSource || (KnownSparkErrorSource = {}));
185
280
  /** Known values of {@link LivyStates} that the service accepts. */
186
281
  export var KnownLivyStates;
187
282
  (function (KnownLivyStates) {
283
+ /** NotStarted */
188
284
  KnownLivyStates["NotStarted"] = "not_started";
285
+ /** Starting */
189
286
  KnownLivyStates["Starting"] = "starting";
287
+ /** Idle */
190
288
  KnownLivyStates["Idle"] = "idle";
289
+ /** Busy */
191
290
  KnownLivyStates["Busy"] = "busy";
291
+ /** ShuttingDown */
192
292
  KnownLivyStates["ShuttingDown"] = "shutting_down";
293
+ /** Error */
193
294
  KnownLivyStates["Error"] = "error";
295
+ /** Dead */
194
296
  KnownLivyStates["Dead"] = "dead";
297
+ /** Killed */
195
298
  KnownLivyStates["Killed"] = "killed";
299
+ /** Success */
196
300
  KnownLivyStates["Success"] = "success";
301
+ /** Running */
197
302
  KnownLivyStates["Running"] = "running";
303
+ /** Recovering */
198
304
  KnownLivyStates["Recovering"] = "recovering";
199
305
  })(KnownLivyStates || (KnownLivyStates = {}));
200
306
  /** Known values of {@link CreateMode} that the service accepts. */
201
307
  export var KnownCreateMode;
202
308
  (function (KnownCreateMode) {
309
+ /** Default */
203
310
  KnownCreateMode["Default"] = "Default";
311
+ /** PointInTimeRestore */
204
312
  KnownCreateMode["PointInTimeRestore"] = "PointInTimeRestore";
313
+ /** Recovery */
205
314
  KnownCreateMode["Recovery"] = "Recovery";
315
+ /** Restore */
206
316
  KnownCreateMode["Restore"] = "Restore";
207
317
  })(KnownCreateMode || (KnownCreateMode = {}));
208
318
  /** Known values of {@link SqlScriptType} that the service accepts. */
209
319
  export var KnownSqlScriptType;
210
320
  (function (KnownSqlScriptType) {
321
+ /** SqlQuery */
211
322
  KnownSqlScriptType["SqlQuery"] = "SqlQuery";
212
323
  })(KnownSqlScriptType || (KnownSqlScriptType = {}));
213
324
  /** Known values of {@link SqlConnectionType} that the service accepts. */
214
325
  export var KnownSqlConnectionType;
215
326
  (function (KnownSqlConnectionType) {
327
+ /** SqlOnDemand */
216
328
  KnownSqlConnectionType["SqlOnDemand"] = "SqlOnDemand";
329
+ /** SqlPool */
217
330
  KnownSqlConnectionType["SqlPool"] = "SqlPool";
218
331
  })(KnownSqlConnectionType || (KnownSqlConnectionType = {}));
219
332
  /** Known values of {@link TriggerRuntimeState} that the service accepts. */
220
333
  export var KnownTriggerRuntimeState;
221
334
  (function (KnownTriggerRuntimeState) {
335
+ /** Started */
222
336
  KnownTriggerRuntimeState["Started"] = "Started";
337
+ /** Stopped */
223
338
  KnownTriggerRuntimeState["Stopped"] = "Stopped";
339
+ /** Disabled */
224
340
  KnownTriggerRuntimeState["Disabled"] = "Disabled";
225
341
  })(KnownTriggerRuntimeState || (KnownTriggerRuntimeState = {}));
226
342
  /** Known values of {@link EventSubscriptionStatus} that the service accepts. */
227
343
  export var KnownEventSubscriptionStatus;
228
344
  (function (KnownEventSubscriptionStatus) {
345
+ /** Enabled */
229
346
  KnownEventSubscriptionStatus["Enabled"] = "Enabled";
347
+ /** Provisioning */
230
348
  KnownEventSubscriptionStatus["Provisioning"] = "Provisioning";
349
+ /** Deprovisioning */
231
350
  KnownEventSubscriptionStatus["Deprovisioning"] = "Deprovisioning";
351
+ /** Disabled */
232
352
  KnownEventSubscriptionStatus["Disabled"] = "Disabled";
353
+ /** Unknown */
233
354
  KnownEventSubscriptionStatus["Unknown"] = "Unknown";
234
355
  })(KnownEventSubscriptionStatus || (KnownEventSubscriptionStatus = {}));
235
356
  /** Known values of {@link TriggerRunStatus} that the service accepts. */
236
357
  export var KnownTriggerRunStatus;
237
358
  (function (KnownTriggerRunStatus) {
359
+ /** Succeeded */
238
360
  KnownTriggerRunStatus["Succeeded"] = "Succeeded";
361
+ /** Failed */
239
362
  KnownTriggerRunStatus["Failed"] = "Failed";
363
+ /** Inprogress */
240
364
  KnownTriggerRunStatus["Inprogress"] = "Inprogress";
241
365
  })(KnownTriggerRunStatus || (KnownTriggerRunStatus = {}));
242
366
  /** Known values of {@link ExpressionType} that the service accepts. */
243
367
  export var KnownExpressionType;
244
368
  (function (KnownExpressionType) {
369
+ /** Expression */
245
370
  KnownExpressionType["Expression"] = "Expression";
246
371
  })(KnownExpressionType || (KnownExpressionType = {}));
247
372
  /** Known values of {@link PipelineReferenceType} that the service accepts. */
248
373
  export var KnownPipelineReferenceType;
249
374
  (function (KnownPipelineReferenceType) {
375
+ /** PipelineReference */
250
376
  KnownPipelineReferenceType["PipelineReference"] = "PipelineReference";
251
377
  })(KnownPipelineReferenceType || (KnownPipelineReferenceType = {}));
252
378
  /** Known values of {@link DatasetReferenceType} that the service accepts. */
253
379
  export var KnownDatasetReferenceType;
254
380
  (function (KnownDatasetReferenceType) {
381
+ /** DatasetReference */
255
382
  KnownDatasetReferenceType["DatasetReference"] = "DatasetReference";
256
383
  })(KnownDatasetReferenceType || (KnownDatasetReferenceType = {}));
257
384
  /** Known values of {@link DataFlowReferenceType} that the service accepts. */
258
385
  export var KnownDataFlowReferenceType;
259
386
  (function (KnownDataFlowReferenceType) {
387
+ /** DataFlowReference */
260
388
  KnownDataFlowReferenceType["DataFlowReference"] = "DataFlowReference";
261
389
  })(KnownDataFlowReferenceType || (KnownDataFlowReferenceType = {}));
262
390
  /** Known values of {@link NotebookReferenceType} that the service accepts. */
263
391
  export var KnownNotebookReferenceType;
264
392
  (function (KnownNotebookReferenceType) {
393
+ /** NotebookReference */
265
394
  KnownNotebookReferenceType["NotebookReference"] = "NotebookReference";
266
395
  })(KnownNotebookReferenceType || (KnownNotebookReferenceType = {}));
267
396
  /** Known values of {@link SparkJobReferenceType} that the service accepts. */
268
397
  export var KnownSparkJobReferenceType;
269
398
  (function (KnownSparkJobReferenceType) {
399
+ /** SparkJobDefinitionReference */
270
400
  KnownSparkJobReferenceType["SparkJobDefinitionReference"] = "SparkJobDefinitionReference";
271
401
  })(KnownSparkJobReferenceType || (KnownSparkJobReferenceType = {}));
272
402
  /** Known values of {@link SqlPoolReferenceType} that the service accepts. */
273
403
  export var KnownSqlPoolReferenceType;
274
404
  (function (KnownSqlPoolReferenceType) {
405
+ /** SqlPoolReference */
275
406
  KnownSqlPoolReferenceType["SqlPoolReference"] = "SqlPoolReference";
276
407
  })(KnownSqlPoolReferenceType || (KnownSqlPoolReferenceType = {}));
277
408
  /** Known values of {@link SybaseAuthenticationType} that the service accepts. */
278
409
  export var KnownSybaseAuthenticationType;
279
410
  (function (KnownSybaseAuthenticationType) {
411
+ /** Basic */
280
412
  KnownSybaseAuthenticationType["Basic"] = "Basic";
413
+ /** Windows */
281
414
  KnownSybaseAuthenticationType["Windows"] = "Windows";
282
415
  })(KnownSybaseAuthenticationType || (KnownSybaseAuthenticationType = {}));
283
416
  /** Known values of {@link Db2AuthenticationType} that the service accepts. */
284
417
  export var KnownDb2AuthenticationType;
285
418
  (function (KnownDb2AuthenticationType) {
419
+ /** Basic */
286
420
  KnownDb2AuthenticationType["Basic"] = "Basic";
287
421
  })(KnownDb2AuthenticationType || (KnownDb2AuthenticationType = {}));
288
422
  /** Known values of {@link TeradataAuthenticationType} that the service accepts. */
289
423
  export var KnownTeradataAuthenticationType;
290
424
  (function (KnownTeradataAuthenticationType) {
425
+ /** Basic */
291
426
  KnownTeradataAuthenticationType["Basic"] = "Basic";
427
+ /** Windows */
292
428
  KnownTeradataAuthenticationType["Windows"] = "Windows";
293
429
  })(KnownTeradataAuthenticationType || (KnownTeradataAuthenticationType = {}));
294
430
  /** Known values of {@link ODataAuthenticationType} that the service accepts. */
295
431
  export var KnownODataAuthenticationType;
296
432
  (function (KnownODataAuthenticationType) {
433
+ /** Basic */
297
434
  KnownODataAuthenticationType["Basic"] = "Basic";
435
+ /** Anonymous */
298
436
  KnownODataAuthenticationType["Anonymous"] = "Anonymous";
437
+ /** Windows */
299
438
  KnownODataAuthenticationType["Windows"] = "Windows";
439
+ /** AadServicePrincipal */
300
440
  KnownODataAuthenticationType["AadServicePrincipal"] = "AadServicePrincipal";
441
+ /** ManagedServiceIdentity */
301
442
  KnownODataAuthenticationType["ManagedServiceIdentity"] = "ManagedServiceIdentity";
302
443
  })(KnownODataAuthenticationType || (KnownODataAuthenticationType = {}));
303
444
  /** Known values of {@link ODataAadServicePrincipalCredentialType} that the service accepts. */
304
445
  export var KnownODataAadServicePrincipalCredentialType;
305
446
  (function (KnownODataAadServicePrincipalCredentialType) {
447
+ /** ServicePrincipalKey */
306
448
  KnownODataAadServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
449
+ /** ServicePrincipalCert */
307
450
  KnownODataAadServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
308
451
  })(KnownODataAadServicePrincipalCredentialType || (KnownODataAadServicePrincipalCredentialType = {}));
309
452
  /** Known values of {@link WebAuthenticationType} that the service accepts. */
310
453
  export var KnownWebAuthenticationType;
311
454
  (function (KnownWebAuthenticationType) {
455
+ /** Basic */
312
456
  KnownWebAuthenticationType["Basic"] = "Basic";
457
+ /** Anonymous */
313
458
  KnownWebAuthenticationType["Anonymous"] = "Anonymous";
459
+ /** ClientCertificate */
314
460
  KnownWebAuthenticationType["ClientCertificate"] = "ClientCertificate";
315
461
  })(KnownWebAuthenticationType || (KnownWebAuthenticationType = {}));
316
462
  /** Known values of {@link MongoDbAuthenticationType} that the service accepts. */
317
463
  export var KnownMongoDbAuthenticationType;
318
464
  (function (KnownMongoDbAuthenticationType) {
465
+ /** Basic */
319
466
  KnownMongoDbAuthenticationType["Basic"] = "Basic";
467
+ /** Anonymous */
320
468
  KnownMongoDbAuthenticationType["Anonymous"] = "Anonymous";
321
469
  })(KnownMongoDbAuthenticationType || (KnownMongoDbAuthenticationType = {}));
322
470
  /** Known values of {@link RestServiceAuthenticationType} that the service accepts. */
323
471
  export var KnownRestServiceAuthenticationType;
324
472
  (function (KnownRestServiceAuthenticationType) {
473
+ /** Anonymous */
325
474
  KnownRestServiceAuthenticationType["Anonymous"] = "Anonymous";
475
+ /** Basic */
326
476
  KnownRestServiceAuthenticationType["Basic"] = "Basic";
477
+ /** AadServicePrincipal */
327
478
  KnownRestServiceAuthenticationType["AadServicePrincipal"] = "AadServicePrincipal";
479
+ /** ManagedServiceIdentity */
328
480
  KnownRestServiceAuthenticationType["ManagedServiceIdentity"] = "ManagedServiceIdentity";
481
+ /** OAuth2ClientCredential */
482
+ KnownRestServiceAuthenticationType["OAuth2ClientCredential"] = "OAuth2ClientCredential";
329
483
  })(KnownRestServiceAuthenticationType || (KnownRestServiceAuthenticationType = {}));
330
484
  /** Known values of {@link TeamDeskAuthenticationType} that the service accepts. */
331
485
  export var KnownTeamDeskAuthenticationType;
332
486
  (function (KnownTeamDeskAuthenticationType) {
487
+ /** Basic */
333
488
  KnownTeamDeskAuthenticationType["Basic"] = "Basic";
489
+ /** Token */
334
490
  KnownTeamDeskAuthenticationType["Token"] = "Token";
335
491
  })(KnownTeamDeskAuthenticationType || (KnownTeamDeskAuthenticationType = {}));
336
492
  /** Known values of {@link ZendeskAuthenticationType} that the service accepts. */
337
493
  export var KnownZendeskAuthenticationType;
338
494
  (function (KnownZendeskAuthenticationType) {
495
+ /** Basic */
339
496
  KnownZendeskAuthenticationType["Basic"] = "Basic";
497
+ /** Token */
340
498
  KnownZendeskAuthenticationType["Token"] = "Token";
341
499
  })(KnownZendeskAuthenticationType || (KnownZendeskAuthenticationType = {}));
342
500
  /** Known values of {@link HttpAuthenticationType} that the service accepts. */
343
501
  export var KnownHttpAuthenticationType;
344
502
  (function (KnownHttpAuthenticationType) {
503
+ /** Basic */
345
504
  KnownHttpAuthenticationType["Basic"] = "Basic";
505
+ /** Anonymous */
346
506
  KnownHttpAuthenticationType["Anonymous"] = "Anonymous";
507
+ /** Digest */
347
508
  KnownHttpAuthenticationType["Digest"] = "Digest";
509
+ /** Windows */
348
510
  KnownHttpAuthenticationType["Windows"] = "Windows";
511
+ /** ClientCertificate */
349
512
  KnownHttpAuthenticationType["ClientCertificate"] = "ClientCertificate";
350
513
  })(KnownHttpAuthenticationType || (KnownHttpAuthenticationType = {}));
351
514
  /** Known values of {@link FtpAuthenticationType} that the service accepts. */
352
515
  export var KnownFtpAuthenticationType;
353
516
  (function (KnownFtpAuthenticationType) {
517
+ /** Basic */
354
518
  KnownFtpAuthenticationType["Basic"] = "Basic";
519
+ /** Anonymous */
355
520
  KnownFtpAuthenticationType["Anonymous"] = "Anonymous";
356
521
  })(KnownFtpAuthenticationType || (KnownFtpAuthenticationType = {}));
357
522
  /** Known values of {@link SftpAuthenticationType} that the service accepts. */
358
523
  export var KnownSftpAuthenticationType;
359
524
  (function (KnownSftpAuthenticationType) {
525
+ /** Basic */
360
526
  KnownSftpAuthenticationType["Basic"] = "Basic";
527
+ /** SshPublicKey */
361
528
  KnownSftpAuthenticationType["SshPublicKey"] = "SshPublicKey";
362
529
  })(KnownSftpAuthenticationType || (KnownSftpAuthenticationType = {}));
363
530
  /** Known values of {@link SapHanaAuthenticationType} that the service accepts. */
364
531
  export var KnownSapHanaAuthenticationType;
365
532
  (function (KnownSapHanaAuthenticationType) {
533
+ /** Basic */
366
534
  KnownSapHanaAuthenticationType["Basic"] = "Basic";
535
+ /** Windows */
367
536
  KnownSapHanaAuthenticationType["Windows"] = "Windows";
368
537
  })(KnownSapHanaAuthenticationType || (KnownSapHanaAuthenticationType = {}));
369
538
  /** Known values of {@link GoogleBigQueryAuthenticationType} that the service accepts. */
370
539
  export var KnownGoogleBigQueryAuthenticationType;
371
540
  (function (KnownGoogleBigQueryAuthenticationType) {
541
+ /** ServiceAuthentication */
372
542
  KnownGoogleBigQueryAuthenticationType["ServiceAuthentication"] = "ServiceAuthentication";
543
+ /** UserAuthentication */
373
544
  KnownGoogleBigQueryAuthenticationType["UserAuthentication"] = "UserAuthentication";
374
545
  })(KnownGoogleBigQueryAuthenticationType || (KnownGoogleBigQueryAuthenticationType = {}));
375
546
  /** Known values of {@link HBaseAuthenticationType} that the service accepts. */
376
547
  export var KnownHBaseAuthenticationType;
377
548
  (function (KnownHBaseAuthenticationType) {
549
+ /** Anonymous */
378
550
  KnownHBaseAuthenticationType["Anonymous"] = "Anonymous";
551
+ /** Basic */
379
552
  KnownHBaseAuthenticationType["Basic"] = "Basic";
380
553
  })(KnownHBaseAuthenticationType || (KnownHBaseAuthenticationType = {}));
381
554
  /** Known values of {@link HiveServerType} that the service accepts. */
382
555
  export var KnownHiveServerType;
383
556
  (function (KnownHiveServerType) {
557
+ /** HiveServer1 */
384
558
  KnownHiveServerType["HiveServer1"] = "HiveServer1";
559
+ /** HiveServer2 */
385
560
  KnownHiveServerType["HiveServer2"] = "HiveServer2";
561
+ /** HiveThriftServer */
386
562
  KnownHiveServerType["HiveThriftServer"] = "HiveThriftServer";
387
563
  })(KnownHiveServerType || (KnownHiveServerType = {}));
388
564
  /** Known values of {@link HiveThriftTransportProtocol} that the service accepts. */
389
565
  export var KnownHiveThriftTransportProtocol;
390
566
  (function (KnownHiveThriftTransportProtocol) {
567
+ /** Binary */
391
568
  KnownHiveThriftTransportProtocol["Binary"] = "Binary";
569
+ /** Sasl */
392
570
  KnownHiveThriftTransportProtocol["Sasl"] = "SASL";
571
+ /** Http */
393
572
  KnownHiveThriftTransportProtocol["Http"] = "HTTP ";
394
573
  })(KnownHiveThriftTransportProtocol || (KnownHiveThriftTransportProtocol = {}));
395
574
  /** Known values of {@link HiveAuthenticationType} that the service accepts. */
396
575
  export var KnownHiveAuthenticationType;
397
576
  (function (KnownHiveAuthenticationType) {
577
+ /** Anonymous */
398
578
  KnownHiveAuthenticationType["Anonymous"] = "Anonymous";
579
+ /** Username */
399
580
  KnownHiveAuthenticationType["Username"] = "Username";
581
+ /** UsernameAndPassword */
400
582
  KnownHiveAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
583
+ /** WindowsAzureHDInsightService */
401
584
  KnownHiveAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
402
585
  })(KnownHiveAuthenticationType || (KnownHiveAuthenticationType = {}));
403
586
  /** Known values of {@link ImpalaAuthenticationType} that the service accepts. */
404
587
  export var KnownImpalaAuthenticationType;
405
588
  (function (KnownImpalaAuthenticationType) {
589
+ /** Anonymous */
406
590
  KnownImpalaAuthenticationType["Anonymous"] = "Anonymous";
591
+ /** SaslUsername */
407
592
  KnownImpalaAuthenticationType["SaslUsername"] = "SASLUsername";
593
+ /** UsernameAndPassword */
408
594
  KnownImpalaAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
409
595
  })(KnownImpalaAuthenticationType || (KnownImpalaAuthenticationType = {}));
410
596
  /** Known values of {@link PhoenixAuthenticationType} that the service accepts. */
411
597
  export var KnownPhoenixAuthenticationType;
412
598
  (function (KnownPhoenixAuthenticationType) {
599
+ /** Anonymous */
413
600
  KnownPhoenixAuthenticationType["Anonymous"] = "Anonymous";
601
+ /** UsernameAndPassword */
414
602
  KnownPhoenixAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
603
+ /** WindowsAzureHDInsightService */
415
604
  KnownPhoenixAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
416
605
  })(KnownPhoenixAuthenticationType || (KnownPhoenixAuthenticationType = {}));
417
606
  /** Known values of {@link PrestoAuthenticationType} that the service accepts. */
418
607
  export var KnownPrestoAuthenticationType;
419
608
  (function (KnownPrestoAuthenticationType) {
609
+ /** Anonymous */
420
610
  KnownPrestoAuthenticationType["Anonymous"] = "Anonymous";
611
+ /** Ldap */
421
612
  KnownPrestoAuthenticationType["Ldap"] = "LDAP";
422
613
  })(KnownPrestoAuthenticationType || (KnownPrestoAuthenticationType = {}));
423
614
  /** Known values of {@link ServiceNowAuthenticationType} that the service accepts. */
424
615
  export var KnownServiceNowAuthenticationType;
425
616
  (function (KnownServiceNowAuthenticationType) {
617
+ /** Basic */
426
618
  KnownServiceNowAuthenticationType["Basic"] = "Basic";
619
+ /** OAuth2 */
427
620
  KnownServiceNowAuthenticationType["OAuth2"] = "OAuth2";
428
621
  })(KnownServiceNowAuthenticationType || (KnownServiceNowAuthenticationType = {}));
429
622
  /** Known values of {@link SparkServerType} that the service accepts. */
430
623
  export var KnownSparkServerType;
431
624
  (function (KnownSparkServerType) {
625
+ /** SharkServer */
432
626
  KnownSparkServerType["SharkServer"] = "SharkServer";
627
+ /** SharkServer2 */
433
628
  KnownSparkServerType["SharkServer2"] = "SharkServer2";
629
+ /** SparkThriftServer */
434
630
  KnownSparkServerType["SparkThriftServer"] = "SparkThriftServer";
435
631
  })(KnownSparkServerType || (KnownSparkServerType = {}));
436
632
  /** Known values of {@link SparkThriftTransportProtocol} that the service accepts. */
437
633
  export var KnownSparkThriftTransportProtocol;
438
634
  (function (KnownSparkThriftTransportProtocol) {
635
+ /** Binary */
439
636
  KnownSparkThriftTransportProtocol["Binary"] = "Binary";
637
+ /** Sasl */
440
638
  KnownSparkThriftTransportProtocol["Sasl"] = "SASL";
639
+ /** Http */
441
640
  KnownSparkThriftTransportProtocol["Http"] = "HTTP ";
442
641
  })(KnownSparkThriftTransportProtocol || (KnownSparkThriftTransportProtocol = {}));
443
642
  /** Known values of {@link SparkAuthenticationType} that the service accepts. */
444
643
  export var KnownSparkAuthenticationType;
445
644
  (function (KnownSparkAuthenticationType) {
645
+ /** Anonymous */
446
646
  KnownSparkAuthenticationType["Anonymous"] = "Anonymous";
647
+ /** Username */
447
648
  KnownSparkAuthenticationType["Username"] = "Username";
649
+ /** UsernameAndPassword */
448
650
  KnownSparkAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
651
+ /** WindowsAzureHDInsightService */
449
652
  KnownSparkAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
450
653
  })(KnownSparkAuthenticationType || (KnownSparkAuthenticationType = {}));
451
654
  /** Known values of {@link GoogleAdWordsAuthenticationType} that the service accepts. */
452
655
  export var KnownGoogleAdWordsAuthenticationType;
453
656
  (function (KnownGoogleAdWordsAuthenticationType) {
657
+ /** ServiceAuthentication */
454
658
  KnownGoogleAdWordsAuthenticationType["ServiceAuthentication"] = "ServiceAuthentication";
659
+ /** UserAuthentication */
455
660
  KnownGoogleAdWordsAuthenticationType["UserAuthentication"] = "UserAuthentication";
456
661
  })(KnownGoogleAdWordsAuthenticationType || (KnownGoogleAdWordsAuthenticationType = {}));
457
662
  /** Known values of {@link SalesforceSourceReadBehavior} that the service accepts. */
458
663
  export var KnownSalesforceSourceReadBehavior;
459
664
  (function (KnownSalesforceSourceReadBehavior) {
665
+ /** Query */
460
666
  KnownSalesforceSourceReadBehavior["Query"] = "Query";
667
+ /** QueryAll */
461
668
  KnownSalesforceSourceReadBehavior["QueryAll"] = "QueryAll";
462
669
  })(KnownSalesforceSourceReadBehavior || (KnownSalesforceSourceReadBehavior = {}));
463
670
  /** Known values of {@link SapHanaPartitionOption} that the service accepts. */
464
671
  export var KnownSapHanaPartitionOption;
465
672
  (function (KnownSapHanaPartitionOption) {
673
+ /** None */
466
674
  KnownSapHanaPartitionOption["None"] = "None";
675
+ /** PhysicalPartitionsOfTable */
467
676
  KnownSapHanaPartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
677
+ /** SapHanaDynamicRange */
468
678
  KnownSapHanaPartitionOption["SapHanaDynamicRange"] = "SapHanaDynamicRange";
469
679
  })(KnownSapHanaPartitionOption || (KnownSapHanaPartitionOption = {}));
470
680
  /** Known values of {@link SapTablePartitionOption} that the service accepts. */
471
681
  export var KnownSapTablePartitionOption;
472
682
  (function (KnownSapTablePartitionOption) {
683
+ /** None */
473
684
  KnownSapTablePartitionOption["None"] = "None";
685
+ /** PartitionOnInt */
474
686
  KnownSapTablePartitionOption["PartitionOnInt"] = "PartitionOnInt";
687
+ /** PartitionOnCalendarYear */
475
688
  KnownSapTablePartitionOption["PartitionOnCalendarYear"] = "PartitionOnCalendarYear";
689
+ /** PartitionOnCalendarMonth */
476
690
  KnownSapTablePartitionOption["PartitionOnCalendarMonth"] = "PartitionOnCalendarMonth";
691
+ /** PartitionOnCalendarDate */
477
692
  KnownSapTablePartitionOption["PartitionOnCalendarDate"] = "PartitionOnCalendarDate";
693
+ /** PartitionOnTime */
478
694
  KnownSapTablePartitionOption["PartitionOnTime"] = "PartitionOnTime";
479
695
  })(KnownSapTablePartitionOption || (KnownSapTablePartitionOption = {}));
480
696
  /** Known values of {@link StoredProcedureParameterType} that the service accepts. */
481
697
  export var KnownStoredProcedureParameterType;
482
698
  (function (KnownStoredProcedureParameterType) {
699
+ /** String */
483
700
  KnownStoredProcedureParameterType["String"] = "String";
701
+ /** Int */
484
702
  KnownStoredProcedureParameterType["Int"] = "Int";
703
+ /** Int64 */
485
704
  KnownStoredProcedureParameterType["Int64"] = "Int64";
705
+ /** Decimal */
486
706
  KnownStoredProcedureParameterType["Decimal"] = "Decimal";
707
+ /** Guid */
487
708
  KnownStoredProcedureParameterType["Guid"] = "Guid";
709
+ /** Boolean */
488
710
  KnownStoredProcedureParameterType["Boolean"] = "Boolean";
711
+ /** Date */
489
712
  KnownStoredProcedureParameterType["Date"] = "Date";
490
713
  })(KnownStoredProcedureParameterType || (KnownStoredProcedureParameterType = {}));
491
714
  /** Known values of {@link OraclePartitionOption} that the service accepts. */
492
715
  export var KnownOraclePartitionOption;
493
716
  (function (KnownOraclePartitionOption) {
717
+ /** None */
494
718
  KnownOraclePartitionOption["None"] = "None";
719
+ /** PhysicalPartitionsOfTable */
495
720
  KnownOraclePartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
721
+ /** DynamicRange */
496
722
  KnownOraclePartitionOption["DynamicRange"] = "DynamicRange";
497
723
  })(KnownOraclePartitionOption || (KnownOraclePartitionOption = {}));
498
724
  /** Known values of {@link TeradataPartitionOption} that the service accepts. */
499
725
  export var KnownTeradataPartitionOption;
500
726
  (function (KnownTeradataPartitionOption) {
727
+ /** None */
501
728
  KnownTeradataPartitionOption["None"] = "None";
729
+ /** Hash */
502
730
  KnownTeradataPartitionOption["Hash"] = "Hash";
731
+ /** DynamicRange */
503
732
  KnownTeradataPartitionOption["DynamicRange"] = "DynamicRange";
504
733
  })(KnownTeradataPartitionOption || (KnownTeradataPartitionOption = {}));
505
734
  /** Known values of {@link CassandraSourceReadConsistencyLevels} that the service accepts. */
506
735
  export var KnownCassandraSourceReadConsistencyLevels;
507
736
  (function (KnownCassandraSourceReadConsistencyLevels) {
737
+ /** ALL */
508
738
  KnownCassandraSourceReadConsistencyLevels["ALL"] = "ALL";
739
+ /** EachQuorum */
509
740
  KnownCassandraSourceReadConsistencyLevels["EachQuorum"] = "EACH_QUORUM";
741
+ /** Quorum */
510
742
  KnownCassandraSourceReadConsistencyLevels["Quorum"] = "QUORUM";
743
+ /** LocalQuorum */
511
744
  KnownCassandraSourceReadConsistencyLevels["LocalQuorum"] = "LOCAL_QUORUM";
745
+ /** ONE */
512
746
  KnownCassandraSourceReadConsistencyLevels["ONE"] = "ONE";
747
+ /** TWO */
513
748
  KnownCassandraSourceReadConsistencyLevels["TWO"] = "TWO";
749
+ /** Three */
514
750
  KnownCassandraSourceReadConsistencyLevels["Three"] = "THREE";
751
+ /** LocalONE */
515
752
  KnownCassandraSourceReadConsistencyLevels["LocalONE"] = "LOCAL_ONE";
753
+ /** Serial */
516
754
  KnownCassandraSourceReadConsistencyLevels["Serial"] = "SERIAL";
755
+ /** LocalSerial */
517
756
  KnownCassandraSourceReadConsistencyLevels["LocalSerial"] = "LOCAL_SERIAL";
518
757
  })(KnownCassandraSourceReadConsistencyLevels || (KnownCassandraSourceReadConsistencyLevels = {}));
519
758
  /** Known values of {@link NetezzaPartitionOption} that the service accepts. */
520
759
  export var KnownNetezzaPartitionOption;
521
760
  (function (KnownNetezzaPartitionOption) {
761
+ /** None */
522
762
  KnownNetezzaPartitionOption["None"] = "None";
763
+ /** DataSlice */
523
764
  KnownNetezzaPartitionOption["DataSlice"] = "DataSlice";
765
+ /** DynamicRange */
524
766
  KnownNetezzaPartitionOption["DynamicRange"] = "DynamicRange";
525
767
  })(KnownNetezzaPartitionOption || (KnownNetezzaPartitionOption = {}));
526
768
  /** Known values of {@link NotebookParameterType} that the service accepts. */
527
769
  export var KnownNotebookParameterType;
528
770
  (function (KnownNotebookParameterType) {
771
+ /** String */
529
772
  KnownNotebookParameterType["String"] = "string";
773
+ /** Int */
530
774
  KnownNotebookParameterType["Int"] = "int";
775
+ /** Float */
531
776
  KnownNotebookParameterType["Float"] = "float";
777
+ /** Bool */
532
778
  KnownNotebookParameterType["Bool"] = "bool";
533
779
  })(KnownNotebookParameterType || (KnownNotebookParameterType = {}));
534
780
  /** Known values of {@link SapCloudForCustomerSinkWriteBehavior} that the service accepts. */
535
781
  export var KnownSapCloudForCustomerSinkWriteBehavior;
536
782
  (function (KnownSapCloudForCustomerSinkWriteBehavior) {
783
+ /** Insert */
537
784
  KnownSapCloudForCustomerSinkWriteBehavior["Insert"] = "Insert";
785
+ /** Update */
538
786
  KnownSapCloudForCustomerSinkWriteBehavior["Update"] = "Update";
539
787
  })(KnownSapCloudForCustomerSinkWriteBehavior || (KnownSapCloudForCustomerSinkWriteBehavior = {}));
540
788
  /** Known values of {@link PolybaseSettingsRejectType} that the service accepts. */
541
789
  export var KnownPolybaseSettingsRejectType;
542
790
  (function (KnownPolybaseSettingsRejectType) {
791
+ /** Value */
543
792
  KnownPolybaseSettingsRejectType["Value"] = "value";
793
+ /** Percentage */
544
794
  KnownPolybaseSettingsRejectType["Percentage"] = "percentage";
545
795
  })(KnownPolybaseSettingsRejectType || (KnownPolybaseSettingsRejectType = {}));
546
796
  /** Known values of {@link AzureSearchIndexWriteBehaviorType} that the service accepts. */
547
797
  export var KnownAzureSearchIndexWriteBehaviorType;
548
798
  (function (KnownAzureSearchIndexWriteBehaviorType) {
799
+ /** Merge */
549
800
  KnownAzureSearchIndexWriteBehaviorType["Merge"] = "Merge";
801
+ /** Upload */
550
802
  KnownAzureSearchIndexWriteBehaviorType["Upload"] = "Upload";
551
803
  })(KnownAzureSearchIndexWriteBehaviorType || (KnownAzureSearchIndexWriteBehaviorType = {}));
552
804
  /** Known values of {@link DynamicsSinkWriteBehavior} that the service accepts. */
553
805
  export var KnownDynamicsSinkWriteBehavior;
554
806
  (function (KnownDynamicsSinkWriteBehavior) {
807
+ /** Upsert */
555
808
  KnownDynamicsSinkWriteBehavior["Upsert"] = "Upsert";
556
809
  })(KnownDynamicsSinkWriteBehavior || (KnownDynamicsSinkWriteBehavior = {}));
557
810
  /** Known values of {@link SalesforceSinkWriteBehavior} that the service accepts. */
558
811
  export var KnownSalesforceSinkWriteBehavior;
559
812
  (function (KnownSalesforceSinkWriteBehavior) {
813
+ /** Insert */
560
814
  KnownSalesforceSinkWriteBehavior["Insert"] = "Insert";
815
+ /** Upsert */
561
816
  KnownSalesforceSinkWriteBehavior["Upsert"] = "Upsert";
562
817
  })(KnownSalesforceSinkWriteBehavior || (KnownSalesforceSinkWriteBehavior = {}));
563
818
  /** Known values of {@link HDInsightActivityDebugInfoOption} that the service accepts. */
564
819
  export var KnownHDInsightActivityDebugInfoOption;
565
820
  (function (KnownHDInsightActivityDebugInfoOption) {
821
+ /** None */
566
822
  KnownHDInsightActivityDebugInfoOption["None"] = "None";
823
+ /** Always */
567
824
  KnownHDInsightActivityDebugInfoOption["Always"] = "Always";
825
+ /** Failure */
568
826
  KnownHDInsightActivityDebugInfoOption["Failure"] = "Failure";
569
827
  })(KnownHDInsightActivityDebugInfoOption || (KnownHDInsightActivityDebugInfoOption = {}));
570
828
  /** Known values of {@link SsisPackageLocationType} that the service accepts. */
571
829
  export var KnownSsisPackageLocationType;
572
830
  (function (KnownSsisPackageLocationType) {
831
+ /** Ssisdb */
573
832
  KnownSsisPackageLocationType["Ssisdb"] = "SSISDB";
833
+ /** File */
574
834
  KnownSsisPackageLocationType["File"] = "File";
835
+ /** InlinePackage */
575
836
  KnownSsisPackageLocationType["InlinePackage"] = "InlinePackage";
837
+ /** PackageStore */
576
838
  KnownSsisPackageLocationType["PackageStore"] = "PackageStore";
577
839
  })(KnownSsisPackageLocationType || (KnownSsisPackageLocationType = {}));
578
840
  /** Known values of {@link SsisLogLocationType} that the service accepts. */
579
841
  export var KnownSsisLogLocationType;
580
842
  (function (KnownSsisLogLocationType) {
843
+ /** File */
581
844
  KnownSsisLogLocationType["File"] = "File";
582
845
  })(KnownSsisLogLocationType || (KnownSsisLogLocationType = {}));
583
846
  /** Known values of {@link WebActivityMethod} that the service accepts. */
584
847
  export var KnownWebActivityMethod;
585
848
  (function (KnownWebActivityMethod) {
849
+ /** GET */
586
850
  KnownWebActivityMethod["GET"] = "GET";
851
+ /** Post */
587
852
  KnownWebActivityMethod["Post"] = "POST";
853
+ /** PUT */
588
854
  KnownWebActivityMethod["PUT"] = "PUT";
855
+ /** Delete */
589
856
  KnownWebActivityMethod["Delete"] = "DELETE";
590
857
  })(KnownWebActivityMethod || (KnownWebActivityMethod = {}));
591
858
  /** Known values of {@link AzureFunctionActivityMethod} that the service accepts. */
592
859
  export var KnownAzureFunctionActivityMethod;
593
860
  (function (KnownAzureFunctionActivityMethod) {
861
+ /** GET */
594
862
  KnownAzureFunctionActivityMethod["GET"] = "GET";
863
+ /** Post */
595
864
  KnownAzureFunctionActivityMethod["Post"] = "POST";
865
+ /** PUT */
596
866
  KnownAzureFunctionActivityMethod["PUT"] = "PUT";
867
+ /** Delete */
597
868
  KnownAzureFunctionActivityMethod["Delete"] = "DELETE";
869
+ /** Options */
598
870
  KnownAzureFunctionActivityMethod["Options"] = "OPTIONS";
871
+ /** Head */
599
872
  KnownAzureFunctionActivityMethod["Head"] = "HEAD";
873
+ /** Trace */
600
874
  KnownAzureFunctionActivityMethod["Trace"] = "TRACE";
601
875
  })(KnownAzureFunctionActivityMethod || (KnownAzureFunctionActivityMethod = {}));
602
876
  /** Known values of {@link WebHookActivityMethod} that the service accepts. */
603
877
  export var KnownWebHookActivityMethod;
604
878
  (function (KnownWebHookActivityMethod) {
879
+ /** Post */
605
880
  KnownWebHookActivityMethod["Post"] = "POST";
606
881
  })(KnownWebHookActivityMethod || (KnownWebHookActivityMethod = {}));
607
882
  /** Known values of {@link DataFlowComputeType} that the service accepts. */
608
883
  export var KnownDataFlowComputeType;
609
884
  (function (KnownDataFlowComputeType) {
885
+ /** General */
610
886
  KnownDataFlowComputeType["General"] = "General";
887
+ /** MemoryOptimized */
611
888
  KnownDataFlowComputeType["MemoryOptimized"] = "MemoryOptimized";
889
+ /** ComputeOptimized */
612
890
  KnownDataFlowComputeType["ComputeOptimized"] = "ComputeOptimized";
613
891
  })(KnownDataFlowComputeType || (KnownDataFlowComputeType = {}));
614
892
  /** Known values of {@link ScriptType} that the service accepts. */
615
893
  export var KnownScriptType;
616
894
  (function (KnownScriptType) {
895
+ /** Query */
617
896
  KnownScriptType["Query"] = "Query";
897
+ /** NonQuery */
618
898
  KnownScriptType["NonQuery"] = "NonQuery";
619
899
  })(KnownScriptType || (KnownScriptType = {}));
620
900
  /** Known values of {@link ScriptActivityParameterType} that the service accepts. */
621
901
  export var KnownScriptActivityParameterType;
622
902
  (function (KnownScriptActivityParameterType) {
903
+ /** Boolean */
623
904
  KnownScriptActivityParameterType["Boolean"] = "Boolean";
905
+ /** DateTime */
624
906
  KnownScriptActivityParameterType["DateTime"] = "DateTime";
907
+ /** DateTimeOffset */
625
908
  KnownScriptActivityParameterType["DateTimeOffset"] = "DateTimeOffset";
909
+ /** Decimal */
626
910
  KnownScriptActivityParameterType["Decimal"] = "Decimal";
911
+ /** Double */
627
912
  KnownScriptActivityParameterType["Double"] = "Double";
913
+ /** Guid */
628
914
  KnownScriptActivityParameterType["Guid"] = "Guid";
915
+ /** Int16 */
629
916
  KnownScriptActivityParameterType["Int16"] = "Int16";
917
+ /** Int32 */
630
918
  KnownScriptActivityParameterType["Int32"] = "Int32";
919
+ /** Int64 */
631
920
  KnownScriptActivityParameterType["Int64"] = "Int64";
921
+ /** Single */
632
922
  KnownScriptActivityParameterType["Single"] = "Single";
923
+ /** String */
633
924
  KnownScriptActivityParameterType["String"] = "String";
925
+ /** Timespan */
634
926
  KnownScriptActivityParameterType["Timespan"] = "Timespan";
635
927
  })(KnownScriptActivityParameterType || (KnownScriptActivityParameterType = {}));
636
928
  /** Known values of {@link ScriptActivityParameterDirection} that the service accepts. */
637
929
  export var KnownScriptActivityParameterDirection;
638
930
  (function (KnownScriptActivityParameterDirection) {
931
+ /** Input */
639
932
  KnownScriptActivityParameterDirection["Input"] = "Input";
933
+ /** Output */
640
934
  KnownScriptActivityParameterDirection["Output"] = "Output";
935
+ /** InputOutput */
641
936
  KnownScriptActivityParameterDirection["InputOutput"] = "InputOutput";
642
937
  })(KnownScriptActivityParameterDirection || (KnownScriptActivityParameterDirection = {}));
643
938
  /** Known values of {@link ScriptActivityLogDestination} that the service accepts. */
644
939
  export var KnownScriptActivityLogDestination;
645
940
  (function (KnownScriptActivityLogDestination) {
941
+ /** ActivityOutput */
646
942
  KnownScriptActivityLogDestination["ActivityOutput"] = "ActivityOutput";
943
+ /** ExternalStore */
647
944
  KnownScriptActivityLogDestination["ExternalStore"] = "ExternalStore";
648
945
  })(KnownScriptActivityLogDestination || (KnownScriptActivityLogDestination = {}));
649
946
  /** Known values of {@link RecurrenceFrequency} that the service accepts. */
650
947
  export var KnownRecurrenceFrequency;
651
948
  (function (KnownRecurrenceFrequency) {
949
+ /** NotSpecified */
652
950
  KnownRecurrenceFrequency["NotSpecified"] = "NotSpecified";
951
+ /** Minute */
653
952
  KnownRecurrenceFrequency["Minute"] = "Minute";
953
+ /** Hour */
654
954
  KnownRecurrenceFrequency["Hour"] = "Hour";
955
+ /** Day */
655
956
  KnownRecurrenceFrequency["Day"] = "Day";
957
+ /** Week */
656
958
  KnownRecurrenceFrequency["Week"] = "Week";
959
+ /** Month */
657
960
  KnownRecurrenceFrequency["Month"] = "Month";
961
+ /** Year */
658
962
  KnownRecurrenceFrequency["Year"] = "Year";
659
963
  })(KnownRecurrenceFrequency || (KnownRecurrenceFrequency = {}));
660
964
  /** Known values of {@link BlobEventType} that the service accepts. */
661
965
  export var KnownBlobEventType;
662
966
  (function (KnownBlobEventType) {
967
+ /** MicrosoftStorageBlobCreated */
663
968
  KnownBlobEventType["MicrosoftStorageBlobCreated"] = "Microsoft.Storage.BlobCreated";
969
+ /** MicrosoftStorageBlobDeleted */
664
970
  KnownBlobEventType["MicrosoftStorageBlobDeleted"] = "Microsoft.Storage.BlobDeleted";
665
971
  })(KnownBlobEventType || (KnownBlobEventType = {}));
666
972
  /** Known values of {@link TumblingWindowFrequency} that the service accepts. */
667
973
  export var KnownTumblingWindowFrequency;
668
974
  (function (KnownTumblingWindowFrequency) {
975
+ /** Minute */
669
976
  KnownTumblingWindowFrequency["Minute"] = "Minute";
977
+ /** Hour */
670
978
  KnownTumblingWindowFrequency["Hour"] = "Hour";
979
+ /** Month */
671
980
  KnownTumblingWindowFrequency["Month"] = "Month";
672
981
  })(KnownTumblingWindowFrequency || (KnownTumblingWindowFrequency = {}));
673
982
  /** Known values of {@link TriggerReferenceType} that the service accepts. */
674
983
  export var KnownTriggerReferenceType;
675
984
  (function (KnownTriggerReferenceType) {
985
+ /** TriggerReference */
676
986
  KnownTriggerReferenceType["TriggerReference"] = "TriggerReference";
677
987
  })(KnownTriggerReferenceType || (KnownTriggerReferenceType = {}));
678
988
  /** Known values of {@link IntegrationRuntimeState} that the service accepts. */
679
989
  export var KnownIntegrationRuntimeState;
680
990
  (function (KnownIntegrationRuntimeState) {
991
+ /** Initial */
681
992
  KnownIntegrationRuntimeState["Initial"] = "Initial";
993
+ /** Stopped */
682
994
  KnownIntegrationRuntimeState["Stopped"] = "Stopped";
995
+ /** Started */
683
996
  KnownIntegrationRuntimeState["Started"] = "Started";
997
+ /** Starting */
684
998
  KnownIntegrationRuntimeState["Starting"] = "Starting";
999
+ /** Stopping */
685
1000
  KnownIntegrationRuntimeState["Stopping"] = "Stopping";
1001
+ /** NeedRegistration */
686
1002
  KnownIntegrationRuntimeState["NeedRegistration"] = "NeedRegistration";
1003
+ /** Online */
687
1004
  KnownIntegrationRuntimeState["Online"] = "Online";
1005
+ /** Limited */
688
1006
  KnownIntegrationRuntimeState["Limited"] = "Limited";
1007
+ /** Offline */
689
1008
  KnownIntegrationRuntimeState["Offline"] = "Offline";
1009
+ /** AccessDenied */
690
1010
  KnownIntegrationRuntimeState["AccessDenied"] = "AccessDenied";
691
1011
  })(KnownIntegrationRuntimeState || (KnownIntegrationRuntimeState = {}));
692
1012
  /** Known values of {@link IntegrationRuntimeSsisCatalogPricingTier} that the service accepts. */
693
1013
  export var KnownIntegrationRuntimeSsisCatalogPricingTier;
694
1014
  (function (KnownIntegrationRuntimeSsisCatalogPricingTier) {
1015
+ /** Basic */
695
1016
  KnownIntegrationRuntimeSsisCatalogPricingTier["Basic"] = "Basic";
1017
+ /** Standard */
696
1018
  KnownIntegrationRuntimeSsisCatalogPricingTier["Standard"] = "Standard";
1019
+ /** Premium */
697
1020
  KnownIntegrationRuntimeSsisCatalogPricingTier["Premium"] = "Premium";
1021
+ /** PremiumRS */
698
1022
  KnownIntegrationRuntimeSsisCatalogPricingTier["PremiumRS"] = "PremiumRS";
699
1023
  })(KnownIntegrationRuntimeSsisCatalogPricingTier || (KnownIntegrationRuntimeSsisCatalogPricingTier = {}));
700
1024
  /** Known values of {@link IntegrationRuntimeLicenseType} that the service accepts. */
701
1025
  export var KnownIntegrationRuntimeLicenseType;
702
1026
  (function (KnownIntegrationRuntimeLicenseType) {
1027
+ /** BasePrice */
703
1028
  KnownIntegrationRuntimeLicenseType["BasePrice"] = "BasePrice";
1029
+ /** LicenseIncluded */
704
1030
  KnownIntegrationRuntimeLicenseType["LicenseIncluded"] = "LicenseIncluded";
705
1031
  })(KnownIntegrationRuntimeLicenseType || (KnownIntegrationRuntimeLicenseType = {}));
706
1032
  /** Known values of {@link IntegrationRuntimeEntityReferenceType} that the service accepts. */
707
1033
  export var KnownIntegrationRuntimeEntityReferenceType;
708
1034
  (function (KnownIntegrationRuntimeEntityReferenceType) {
1035
+ /** IntegrationRuntimeReference */
709
1036
  KnownIntegrationRuntimeEntityReferenceType["IntegrationRuntimeReference"] = "IntegrationRuntimeReference";
1037
+ /** LinkedServiceReference */
710
1038
  KnownIntegrationRuntimeEntityReferenceType["LinkedServiceReference"] = "LinkedServiceReference";
711
1039
  })(KnownIntegrationRuntimeEntityReferenceType || (KnownIntegrationRuntimeEntityReferenceType = {}));
712
1040
  /** Known values of {@link IntegrationRuntimeEdition} that the service accepts. */
713
1041
  export var KnownIntegrationRuntimeEdition;
714
1042
  (function (KnownIntegrationRuntimeEdition) {
1043
+ /** Standard */
715
1044
  KnownIntegrationRuntimeEdition["Standard"] = "Standard";
1045
+ /** Enterprise */
716
1046
  KnownIntegrationRuntimeEdition["Enterprise"] = "Enterprise";
717
1047
  })(KnownIntegrationRuntimeEdition || (KnownIntegrationRuntimeEdition = {}));
718
1048
  /** Known values of {@link JsonFormatFilePattern} that the service accepts. */
719
1049
  export var KnownJsonFormatFilePattern;
720
1050
  (function (KnownJsonFormatFilePattern) {
1051
+ /** SetOfObjects */
721
1052
  KnownJsonFormatFilePattern["SetOfObjects"] = "setOfObjects";
1053
+ /** ArrayOfObjects */
722
1054
  KnownJsonFormatFilePattern["ArrayOfObjects"] = "arrayOfObjects";
723
1055
  })(KnownJsonFormatFilePattern || (KnownJsonFormatFilePattern = {}));
724
1056
  /** Known values of {@link DatasetCompressionLevel} that the service accepts. */
725
1057
  export var KnownDatasetCompressionLevel;
726
1058
  (function (KnownDatasetCompressionLevel) {
1059
+ /** Optimal */
727
1060
  KnownDatasetCompressionLevel["Optimal"] = "Optimal";
1061
+ /** Fastest */
728
1062
  KnownDatasetCompressionLevel["Fastest"] = "Fastest";
729
1063
  })(KnownDatasetCompressionLevel || (KnownDatasetCompressionLevel = {}));
730
1064
  /** Known values of {@link AvroCompressionCodec} that the service accepts. */
731
1065
  export var KnownAvroCompressionCodec;
732
1066
  (function (KnownAvroCompressionCodec) {
1067
+ /** None */
733
1068
  KnownAvroCompressionCodec["None"] = "none";
1069
+ /** Deflate */
734
1070
  KnownAvroCompressionCodec["Deflate"] = "deflate";
1071
+ /** Snappy */
735
1072
  KnownAvroCompressionCodec["Snappy"] = "snappy";
1073
+ /** Xz */
736
1074
  KnownAvroCompressionCodec["Xz"] = "xz";
1075
+ /** Bzip2 */
737
1076
  KnownAvroCompressionCodec["Bzip2"] = "bzip2";
738
1077
  })(KnownAvroCompressionCodec || (KnownAvroCompressionCodec = {}));
739
1078
  /** Known values of {@link ParquetCompressionCodecEnum} that the service accepts. */
740
1079
  export var KnownParquetCompressionCodecEnum;
741
1080
  (function (KnownParquetCompressionCodecEnum) {
1081
+ /** None */
742
1082
  KnownParquetCompressionCodecEnum["None"] = "none";
1083
+ /** Gzip */
743
1084
  KnownParquetCompressionCodecEnum["Gzip"] = "gzip";
1085
+ /** Snappy */
744
1086
  KnownParquetCompressionCodecEnum["Snappy"] = "snappy";
1087
+ /** Lzo */
745
1088
  KnownParquetCompressionCodecEnum["Lzo"] = "lzo";
746
1089
  })(KnownParquetCompressionCodecEnum || (KnownParquetCompressionCodecEnum = {}));
747
1090
  /** Known values of {@link CompressionCodec} that the service accepts. */
748
1091
  export var KnownCompressionCodec;
749
1092
  (function (KnownCompressionCodec) {
1093
+ /** None */
750
1094
  KnownCompressionCodec["None"] = "none";
1095
+ /** Lzo */
751
1096
  KnownCompressionCodec["Lzo"] = "lzo";
1097
+ /** Bzip2 */
752
1098
  KnownCompressionCodec["Bzip2"] = "bzip2";
1099
+ /** Gzip */
753
1100
  KnownCompressionCodec["Gzip"] = "gzip";
1101
+ /** Deflate */
754
1102
  KnownCompressionCodec["Deflate"] = "deflate";
1103
+ /** ZipDeflate */
755
1104
  KnownCompressionCodec["ZipDeflate"] = "zipDeflate";
1105
+ /** Snappy */
756
1106
  KnownCompressionCodec["Snappy"] = "snappy";
1107
+ /** Lz4 */
757
1108
  KnownCompressionCodec["Lz4"] = "lz4";
1109
+ /** Tar */
758
1110
  KnownCompressionCodec["Tar"] = "tar";
1111
+ /** TarGZip */
759
1112
  KnownCompressionCodec["TarGZip"] = "tarGZip";
760
1113
  })(KnownCompressionCodec || (KnownCompressionCodec = {}));
761
1114
  /** Known values of {@link OrcCompressionCodec} that the service accepts. */
762
1115
  export var KnownOrcCompressionCodec;
763
1116
  (function (KnownOrcCompressionCodec) {
1117
+ /** None */
764
1118
  KnownOrcCompressionCodec["None"] = "none";
1119
+ /** Zlib */
765
1120
  KnownOrcCompressionCodec["Zlib"] = "zlib";
1121
+ /** Snappy */
766
1122
  KnownOrcCompressionCodec["Snappy"] = "snappy";
1123
+ /** Lzo */
767
1124
  KnownOrcCompressionCodec["Lzo"] = "lzo";
768
1125
  })(KnownOrcCompressionCodec || (KnownOrcCompressionCodec = {}));
769
1126
  /** Known values of {@link DynamicsDeploymentType} that the service accepts. */
770
1127
  export var KnownDynamicsDeploymentType;
771
1128
  (function (KnownDynamicsDeploymentType) {
1129
+ /** Online */
772
1130
  KnownDynamicsDeploymentType["Online"] = "Online";
1131
+ /** OnPremisesWithIfd */
773
1132
  KnownDynamicsDeploymentType["OnPremisesWithIfd"] = "OnPremisesWithIfd";
774
1133
  })(KnownDynamicsDeploymentType || (KnownDynamicsDeploymentType = {}));
775
1134
  /** Known values of {@link DynamicsAuthenticationType} that the service accepts. */
776
1135
  export var KnownDynamicsAuthenticationType;
777
1136
  (function (KnownDynamicsAuthenticationType) {
1137
+ /** Office365 */
778
1138
  KnownDynamicsAuthenticationType["Office365"] = "Office365";
1139
+ /** Ifd */
779
1140
  KnownDynamicsAuthenticationType["Ifd"] = "Ifd";
1141
+ /** AADServicePrincipal */
780
1142
  KnownDynamicsAuthenticationType["AADServicePrincipal"] = "AADServicePrincipal";
781
1143
  })(KnownDynamicsAuthenticationType || (KnownDynamicsAuthenticationType = {}));
782
1144
  /** Known values of {@link DynamicsServicePrincipalCredentialType} that the service accepts. */
783
1145
  export var KnownDynamicsServicePrincipalCredentialType;
784
1146
  (function (KnownDynamicsServicePrincipalCredentialType) {
1147
+ /** ServicePrincipalKey */
785
1148
  KnownDynamicsServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
1149
+ /** ServicePrincipalCert */
786
1150
  KnownDynamicsServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
787
1151
  })(KnownDynamicsServicePrincipalCredentialType || (KnownDynamicsServicePrincipalCredentialType = {}));
788
1152
  /** Known values of {@link HdiNodeTypes} that the service accepts. */
789
1153
  export var KnownHdiNodeTypes;
790
1154
  (function (KnownHdiNodeTypes) {
1155
+ /** Headnode */
791
1156
  KnownHdiNodeTypes["Headnode"] = "Headnode";
1157
+ /** Workernode */
792
1158
  KnownHdiNodeTypes["Workernode"] = "Workernode";
1159
+ /** Zookeeper */
793
1160
  KnownHdiNodeTypes["Zookeeper"] = "Zookeeper";
794
1161
  })(KnownHdiNodeTypes || (KnownHdiNodeTypes = {}));
795
1162
  /** Known values of {@link JsonWriteFilePattern} that the service accepts. */
796
1163
  export var KnownJsonWriteFilePattern;
797
1164
  (function (KnownJsonWriteFilePattern) {
1165
+ /** SetOfObjects */
798
1166
  KnownJsonWriteFilePattern["SetOfObjects"] = "setOfObjects";
1167
+ /** ArrayOfObjects */
799
1168
  KnownJsonWriteFilePattern["ArrayOfObjects"] = "arrayOfObjects";
800
1169
  })(KnownJsonWriteFilePattern || (KnownJsonWriteFilePattern = {}));
801
1170
  /** Known values of {@link AmazonRdsForOraclePartitionOption} that the service accepts. */
802
1171
  export var KnownAmazonRdsForOraclePartitionOption;
803
1172
  (function (KnownAmazonRdsForOraclePartitionOption) {
1173
+ /** None */
804
1174
  KnownAmazonRdsForOraclePartitionOption["None"] = "None";
1175
+ /** PhysicalPartitionsOfTable */
805
1176
  KnownAmazonRdsForOraclePartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
1177
+ /** DynamicRange */
806
1178
  KnownAmazonRdsForOraclePartitionOption["DynamicRange"] = "DynamicRange";
807
1179
  })(KnownAmazonRdsForOraclePartitionOption || (KnownAmazonRdsForOraclePartitionOption = {}));
808
1180
  /** Known values of {@link CopyBehaviorType} that the service accepts. */
809
1181
  export var KnownCopyBehaviorType;
810
1182
  (function (KnownCopyBehaviorType) {
1183
+ /** PreserveHierarchy */
811
1184
  KnownCopyBehaviorType["PreserveHierarchy"] = "PreserveHierarchy";
1185
+ /** FlattenHierarchy */
812
1186
  KnownCopyBehaviorType["FlattenHierarchy"] = "FlattenHierarchy";
1187
+ /** MergeFiles */
813
1188
  KnownCopyBehaviorType["MergeFiles"] = "MergeFiles";
814
1189
  })(KnownCopyBehaviorType || (KnownCopyBehaviorType = {}));
815
1190
  /** Known values of {@link SqlPartitionOption} that the service accepts. */
816
1191
  export var KnownSqlPartitionOption;
817
1192
  (function (KnownSqlPartitionOption) {
1193
+ /** None */
818
1194
  KnownSqlPartitionOption["None"] = "None";
1195
+ /** PhysicalPartitionsOfTable */
819
1196
  KnownSqlPartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
1197
+ /** DynamicRange */
820
1198
  KnownSqlPartitionOption["DynamicRange"] = "DynamicRange";
821
1199
  })(KnownSqlPartitionOption || (KnownSqlPartitionOption = {}));
822
1200
  //# sourceMappingURL=index.js.map