@azure/synapse-artifacts 1.0.0-beta.8 → 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.
- package/CHANGELOG.md +10 -0
- package/dist/index.js +887 -280
- package/dist/index.js.map +1 -1
- package/dist-esm/src/artifactsClient.js +29 -3
- package/dist-esm/src/artifactsClient.js.map +1 -1
- package/dist-esm/src/index.js +0 -1
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/models/index.js +47 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.js +342 -1
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/operations/bigDataPools.js.map +1 -1
- package/dist-esm/src/operations/dataFlowDebugSession.js.map +1 -1
- package/dist-esm/src/operations/dataFlowOperations.js.map +1 -1
- package/dist-esm/src/operations/datasetOperations.js.map +1 -1
- package/dist-esm/src/operations/integrationRuntimes.js.map +1 -1
- package/dist-esm/src/operations/kqlScriptOperations.js.map +1 -1
- package/dist-esm/src/operations/kqlScripts.js.map +1 -1
- package/dist-esm/src/operations/library.js.map +1 -1
- package/dist-esm/src/operations/linkedServiceOperations.js.map +1 -1
- package/dist-esm/src/operations/metastore.js.map +1 -1
- package/dist-esm/src/operations/notebookOperationResult.js.map +1 -1
- package/dist-esm/src/operations/notebookOperations.js.map +1 -1
- package/dist-esm/src/operations/pipelineOperations.js.map +1 -1
- package/dist-esm/src/operations/pipelineRunOperations.js.map +1 -1
- package/dist-esm/src/operations/sparkConfigurationOperations.js.map +1 -1
- package/dist-esm/src/operations/sparkJobDefinitionOperations.js.map +1 -1
- package/dist-esm/src/operations/sqlPools.js.map +1 -1
- package/dist-esm/src/operations/sqlScriptOperations.js.map +1 -1
- package/dist-esm/src/operations/triggerOperations.js.map +1 -1
- package/dist-esm/src/operations/triggerRunOperations.js.map +1 -1
- package/dist-esm/src/operations/workspaceGitRepoManagement.js.map +1 -1
- package/dist-esm/src/operations/workspaceOperations.js.map +1 -1
- package/package.json +13 -12
- package/types/synapse-artifacts.d.ts +253 -20
- package/dist-esm/src/artifactsClientContext.js +0 -47
- package/dist-esm/src/artifactsClientContext.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -2,11 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
+
var coreClient = require('@azure/core-client');
|
|
5
6
|
var tslib = require('tslib');
|
|
6
7
|
var coreTracing = require('@azure/core-tracing');
|
|
7
|
-
var coreClient = require('@azure/core-client');
|
|
8
8
|
var coreLro = require('@azure/core-lro');
|
|
9
9
|
|
|
10
|
+
function _interopNamespace(e) {
|
|
11
|
+
if (e && e.__esModule) return e;
|
|
12
|
+
var n = Object.create(null);
|
|
13
|
+
if (e) {
|
|
14
|
+
Object.keys(e).forEach(function (k) {
|
|
15
|
+
if (k !== 'default') {
|
|
16
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
17
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
18
|
+
enumerable: true,
|
|
19
|
+
get: function () { return e[k]; }
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
n["default"] = e;
|
|
25
|
+
return Object.freeze(n);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
var coreClient__namespace = /*#__PURE__*/_interopNamespace(coreClient);
|
|
29
|
+
var coreTracing__namespace = /*#__PURE__*/_interopNamespace(coreTracing);
|
|
30
|
+
|
|
10
31
|
/*
|
|
11
32
|
* Copyright (c) Microsoft Corporation.
|
|
12
33
|
* Licensed under the MIT License.
|
|
@@ -14,16 +35,22 @@ var coreLro = require('@azure/core-lro');
|
|
|
14
35
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
15
36
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
16
37
|
*/
|
|
38
|
+
/** Known values of {@link RequestStatus} that the service accepts. */
|
|
39
|
+
exports.KnownRequestStatus = void 0;
|
|
17
40
|
(function (KnownRequestStatus) {
|
|
18
41
|
KnownRequestStatus["Running"] = "Running";
|
|
19
42
|
KnownRequestStatus["Completed"] = "Completed";
|
|
20
43
|
KnownRequestStatus["Failed"] = "Failed";
|
|
21
44
|
})(exports.KnownRequestStatus || (exports.KnownRequestStatus = {}));
|
|
45
|
+
/** Known values of {@link ResourceStatus} that the service accepts. */
|
|
46
|
+
exports.KnownResourceStatus = void 0;
|
|
22
47
|
(function (KnownResourceStatus) {
|
|
23
48
|
KnownResourceStatus["Creating"] = "Creating";
|
|
24
49
|
KnownResourceStatus["Created"] = "Created";
|
|
25
50
|
KnownResourceStatus["Failed"] = "Failed";
|
|
26
51
|
})(exports.KnownResourceStatus || (exports.KnownResourceStatus = {}));
|
|
52
|
+
/** Known values of {@link NodeSize} that the service accepts. */
|
|
53
|
+
exports.KnownNodeSize = void 0;
|
|
27
54
|
(function (KnownNodeSize) {
|
|
28
55
|
KnownNodeSize["None"] = "None";
|
|
29
56
|
KnownNodeSize["Small"] = "Small";
|
|
@@ -33,17 +60,25 @@ var coreLro = require('@azure/core-lro');
|
|
|
33
60
|
KnownNodeSize["XXLarge"] = "XXLarge";
|
|
34
61
|
KnownNodeSize["XXXLarge"] = "XXXLarge";
|
|
35
62
|
})(exports.KnownNodeSize || (exports.KnownNodeSize = {}));
|
|
63
|
+
/** Known values of {@link NodeSizeFamily} that the service accepts. */
|
|
64
|
+
exports.KnownNodeSizeFamily = void 0;
|
|
36
65
|
(function (KnownNodeSizeFamily) {
|
|
37
66
|
KnownNodeSizeFamily["None"] = "None";
|
|
38
67
|
KnownNodeSizeFamily["MemoryOptimized"] = "MemoryOptimized";
|
|
39
68
|
})(exports.KnownNodeSizeFamily || (exports.KnownNodeSizeFamily = {}));
|
|
69
|
+
/** Known values of {@link IntegrationRuntimeType} that the service accepts. */
|
|
70
|
+
exports.KnownIntegrationRuntimeType = void 0;
|
|
40
71
|
(function (KnownIntegrationRuntimeType) {
|
|
41
72
|
KnownIntegrationRuntimeType["Managed"] = "Managed";
|
|
42
73
|
KnownIntegrationRuntimeType["SelfHosted"] = "SelfHosted";
|
|
43
74
|
})(exports.KnownIntegrationRuntimeType || (exports.KnownIntegrationRuntimeType = {}));
|
|
75
|
+
/** Known values of {@link Type} that the service accepts. */
|
|
76
|
+
exports.KnownType = void 0;
|
|
44
77
|
(function (KnownType) {
|
|
45
78
|
KnownType["LinkedServiceReference"] = "LinkedServiceReference";
|
|
46
79
|
})(exports.KnownType || (exports.KnownType = {}));
|
|
80
|
+
/** Known values of {@link ParameterType} that the service accepts. */
|
|
81
|
+
exports.KnownParameterType = void 0;
|
|
47
82
|
(function (KnownParameterType) {
|
|
48
83
|
KnownParameterType["Object"] = "Object";
|
|
49
84
|
KnownParameterType["String"] = "String";
|
|
@@ -53,35 +88,49 @@ var coreLro = require('@azure/core-lro');
|
|
|
53
88
|
KnownParameterType["Array"] = "Array";
|
|
54
89
|
KnownParameterType["SecureString"] = "SecureString";
|
|
55
90
|
})(exports.KnownParameterType || (exports.KnownParameterType = {}));
|
|
91
|
+
/** Known values of {@link IntegrationRuntimeReferenceType} that the service accepts. */
|
|
92
|
+
exports.KnownIntegrationRuntimeReferenceType = void 0;
|
|
56
93
|
(function (KnownIntegrationRuntimeReferenceType) {
|
|
57
94
|
KnownIntegrationRuntimeReferenceType["IntegrationRuntimeReference"] = "IntegrationRuntimeReference";
|
|
58
95
|
})(exports.KnownIntegrationRuntimeReferenceType || (exports.KnownIntegrationRuntimeReferenceType = {}));
|
|
96
|
+
/** Known values of {@link DataFlowDebugCommandType} that the service accepts. */
|
|
97
|
+
exports.KnownDataFlowDebugCommandType = void 0;
|
|
59
98
|
(function (KnownDataFlowDebugCommandType) {
|
|
60
99
|
KnownDataFlowDebugCommandType["ExecutePreviewQuery"] = "executePreviewQuery";
|
|
61
100
|
KnownDataFlowDebugCommandType["ExecuteStatisticsQuery"] = "executeStatisticsQuery";
|
|
62
101
|
KnownDataFlowDebugCommandType["ExecuteExpressionQuery"] = "executeExpressionQuery";
|
|
63
102
|
})(exports.KnownDataFlowDebugCommandType || (exports.KnownDataFlowDebugCommandType = {}));
|
|
103
|
+
/** Known values of {@link BigDataPoolReferenceType} that the service accepts. */
|
|
104
|
+
exports.KnownBigDataPoolReferenceType = void 0;
|
|
64
105
|
(function (KnownBigDataPoolReferenceType) {
|
|
65
106
|
KnownBigDataPoolReferenceType["BigDataPoolReference"] = "BigDataPoolReference";
|
|
66
107
|
})(exports.KnownBigDataPoolReferenceType || (exports.KnownBigDataPoolReferenceType = {}));
|
|
108
|
+
/** Known values of {@link CellOutputType} that the service accepts. */
|
|
109
|
+
exports.KnownCellOutputType = void 0;
|
|
67
110
|
(function (KnownCellOutputType) {
|
|
68
111
|
KnownCellOutputType["ExecuteResult"] = "execute_result";
|
|
69
112
|
KnownCellOutputType["DisplayData"] = "display_data";
|
|
70
113
|
KnownCellOutputType["Stream"] = "stream";
|
|
71
114
|
KnownCellOutputType["Error"] = "error";
|
|
72
115
|
})(exports.KnownCellOutputType || (exports.KnownCellOutputType = {}));
|
|
116
|
+
/** Known values of {@link DependencyCondition} that the service accepts. */
|
|
117
|
+
exports.KnownDependencyCondition = void 0;
|
|
73
118
|
(function (KnownDependencyCondition) {
|
|
74
119
|
KnownDependencyCondition["Succeeded"] = "Succeeded";
|
|
75
120
|
KnownDependencyCondition["Failed"] = "Failed";
|
|
76
121
|
KnownDependencyCondition["Skipped"] = "Skipped";
|
|
77
122
|
KnownDependencyCondition["Completed"] = "Completed";
|
|
78
123
|
})(exports.KnownDependencyCondition || (exports.KnownDependencyCondition = {}));
|
|
124
|
+
/** Known values of {@link VariableType} that the service accepts. */
|
|
125
|
+
exports.KnownVariableType = void 0;
|
|
79
126
|
(function (KnownVariableType) {
|
|
80
127
|
KnownVariableType["String"] = "String";
|
|
81
128
|
KnownVariableType["Bool"] = "Bool";
|
|
82
129
|
KnownVariableType["Boolean"] = "Boolean";
|
|
83
130
|
KnownVariableType["Array"] = "Array";
|
|
84
131
|
})(exports.KnownVariableType || (exports.KnownVariableType = {}));
|
|
132
|
+
/** Known values of {@link RunQueryFilterOperand} that the service accepts. */
|
|
133
|
+
exports.KnownRunQueryFilterOperand = void 0;
|
|
85
134
|
(function (KnownRunQueryFilterOperand) {
|
|
86
135
|
KnownRunQueryFilterOperand["PipelineName"] = "PipelineName";
|
|
87
136
|
KnownRunQueryFilterOperand["Status"] = "Status";
|
|
@@ -96,12 +145,16 @@ var coreLro = require('@azure/core-lro');
|
|
|
96
145
|
KnownRunQueryFilterOperand["RunGroupId"] = "RunGroupId";
|
|
97
146
|
KnownRunQueryFilterOperand["LatestOnly"] = "LatestOnly";
|
|
98
147
|
})(exports.KnownRunQueryFilterOperand || (exports.KnownRunQueryFilterOperand = {}));
|
|
148
|
+
/** Known values of {@link RunQueryFilterOperator} that the service accepts. */
|
|
149
|
+
exports.KnownRunQueryFilterOperator = void 0;
|
|
99
150
|
(function (KnownRunQueryFilterOperator) {
|
|
100
151
|
KnownRunQueryFilterOperator["Equals"] = "Equals";
|
|
101
152
|
KnownRunQueryFilterOperator["NotEquals"] = "NotEquals";
|
|
102
153
|
KnownRunQueryFilterOperator["In"] = "In";
|
|
103
154
|
KnownRunQueryFilterOperator["NotIn"] = "NotIn";
|
|
104
155
|
})(exports.KnownRunQueryFilterOperator || (exports.KnownRunQueryFilterOperator = {}));
|
|
156
|
+
/** Known values of {@link RunQueryOrderByField} that the service accepts. */
|
|
157
|
+
exports.KnownRunQueryOrderByField = void 0;
|
|
105
158
|
(function (KnownRunQueryOrderByField) {
|
|
106
159
|
KnownRunQueryOrderByField["RunStart"] = "RunStart";
|
|
107
160
|
KnownRunQueryOrderByField["RunEnd"] = "RunEnd";
|
|
@@ -113,25 +166,35 @@ var coreLro = require('@azure/core-lro');
|
|
|
113
166
|
KnownRunQueryOrderByField["TriggerName"] = "TriggerName";
|
|
114
167
|
KnownRunQueryOrderByField["TriggerRunTimestamp"] = "TriggerRunTimestamp";
|
|
115
168
|
})(exports.KnownRunQueryOrderByField || (exports.KnownRunQueryOrderByField = {}));
|
|
169
|
+
/** Known values of {@link RunQueryOrder} that the service accepts. */
|
|
170
|
+
exports.KnownRunQueryOrder = void 0;
|
|
116
171
|
(function (KnownRunQueryOrder) {
|
|
117
172
|
KnownRunQueryOrder["ASC"] = "ASC";
|
|
118
173
|
KnownRunQueryOrder["Desc"] = "DESC";
|
|
119
174
|
})(exports.KnownRunQueryOrder || (exports.KnownRunQueryOrder = {}));
|
|
175
|
+
/** Known values of {@link SparkJobType} that the service accepts. */
|
|
176
|
+
exports.KnownSparkJobType = void 0;
|
|
120
177
|
(function (KnownSparkJobType) {
|
|
121
178
|
KnownSparkJobType["SparkBatch"] = "SparkBatch";
|
|
122
179
|
KnownSparkJobType["SparkSession"] = "SparkSession";
|
|
123
180
|
})(exports.KnownSparkJobType || (exports.KnownSparkJobType = {}));
|
|
181
|
+
/** Known values of {@link SparkBatchJobResultType} that the service accepts. */
|
|
182
|
+
exports.KnownSparkBatchJobResultType = void 0;
|
|
124
183
|
(function (KnownSparkBatchJobResultType) {
|
|
125
184
|
KnownSparkBatchJobResultType["Uncertain"] = "Uncertain";
|
|
126
185
|
KnownSparkBatchJobResultType["Succeeded"] = "Succeeded";
|
|
127
186
|
KnownSparkBatchJobResultType["Failed"] = "Failed";
|
|
128
187
|
KnownSparkBatchJobResultType["Cancelled"] = "Cancelled";
|
|
129
188
|
})(exports.KnownSparkBatchJobResultType || (exports.KnownSparkBatchJobResultType = {}));
|
|
189
|
+
/** Known values of {@link SchedulerCurrentState} that the service accepts. */
|
|
190
|
+
exports.KnownSchedulerCurrentState = void 0;
|
|
130
191
|
(function (KnownSchedulerCurrentState) {
|
|
131
192
|
KnownSchedulerCurrentState["Queued"] = "Queued";
|
|
132
193
|
KnownSchedulerCurrentState["Scheduled"] = "Scheduled";
|
|
133
194
|
KnownSchedulerCurrentState["Ended"] = "Ended";
|
|
134
195
|
})(exports.KnownSchedulerCurrentState || (exports.KnownSchedulerCurrentState = {}));
|
|
196
|
+
/** Known values of {@link PluginCurrentState} that the service accepts. */
|
|
197
|
+
exports.KnownPluginCurrentState = void 0;
|
|
135
198
|
(function (KnownPluginCurrentState) {
|
|
136
199
|
KnownPluginCurrentState["Preparation"] = "Preparation";
|
|
137
200
|
KnownPluginCurrentState["ResourceAcquisition"] = "ResourceAcquisition";
|
|
@@ -141,12 +204,16 @@ var coreLro = require('@azure/core-lro');
|
|
|
141
204
|
KnownPluginCurrentState["Cleanup"] = "Cleanup";
|
|
142
205
|
KnownPluginCurrentState["Ended"] = "Ended";
|
|
143
206
|
})(exports.KnownPluginCurrentState || (exports.KnownPluginCurrentState = {}));
|
|
207
|
+
/** Known values of {@link SparkErrorSource} that the service accepts. */
|
|
208
|
+
exports.KnownSparkErrorSource = void 0;
|
|
144
209
|
(function (KnownSparkErrorSource) {
|
|
145
210
|
KnownSparkErrorSource["System"] = "System";
|
|
146
211
|
KnownSparkErrorSource["User"] = "User";
|
|
147
212
|
KnownSparkErrorSource["Unknown"] = "Unknown";
|
|
148
213
|
KnownSparkErrorSource["Dependency"] = "Dependency";
|
|
149
214
|
})(exports.KnownSparkErrorSource || (exports.KnownSparkErrorSource = {}));
|
|
215
|
+
/** Known values of {@link LivyStates} that the service accepts. */
|
|
216
|
+
exports.KnownLivyStates = void 0;
|
|
150
217
|
(function (KnownLivyStates) {
|
|
151
218
|
KnownLivyStates["NotStarted"] = "not_started";
|
|
152
219
|
KnownLivyStates["Starting"] = "starting";
|
|
@@ -160,24 +227,34 @@ var coreLro = require('@azure/core-lro');
|
|
|
160
227
|
KnownLivyStates["Running"] = "running";
|
|
161
228
|
KnownLivyStates["Recovering"] = "recovering";
|
|
162
229
|
})(exports.KnownLivyStates || (exports.KnownLivyStates = {}));
|
|
230
|
+
/** Known values of {@link CreateMode} that the service accepts. */
|
|
231
|
+
exports.KnownCreateMode = void 0;
|
|
163
232
|
(function (KnownCreateMode) {
|
|
164
233
|
KnownCreateMode["Default"] = "Default";
|
|
165
234
|
KnownCreateMode["PointInTimeRestore"] = "PointInTimeRestore";
|
|
166
235
|
KnownCreateMode["Recovery"] = "Recovery";
|
|
167
236
|
KnownCreateMode["Restore"] = "Restore";
|
|
168
237
|
})(exports.KnownCreateMode || (exports.KnownCreateMode = {}));
|
|
238
|
+
/** Known values of {@link SqlScriptType} that the service accepts. */
|
|
239
|
+
exports.KnownSqlScriptType = void 0;
|
|
169
240
|
(function (KnownSqlScriptType) {
|
|
170
241
|
KnownSqlScriptType["SqlQuery"] = "SqlQuery";
|
|
171
242
|
})(exports.KnownSqlScriptType || (exports.KnownSqlScriptType = {}));
|
|
243
|
+
/** Known values of {@link SqlConnectionType} that the service accepts. */
|
|
244
|
+
exports.KnownSqlConnectionType = void 0;
|
|
172
245
|
(function (KnownSqlConnectionType) {
|
|
173
246
|
KnownSqlConnectionType["SqlOnDemand"] = "SqlOnDemand";
|
|
174
247
|
KnownSqlConnectionType["SqlPool"] = "SqlPool";
|
|
175
248
|
})(exports.KnownSqlConnectionType || (exports.KnownSqlConnectionType = {}));
|
|
249
|
+
/** Known values of {@link TriggerRuntimeState} that the service accepts. */
|
|
250
|
+
exports.KnownTriggerRuntimeState = void 0;
|
|
176
251
|
(function (KnownTriggerRuntimeState) {
|
|
177
252
|
KnownTriggerRuntimeState["Started"] = "Started";
|
|
178
253
|
KnownTriggerRuntimeState["Stopped"] = "Stopped";
|
|
179
254
|
KnownTriggerRuntimeState["Disabled"] = "Disabled";
|
|
180
255
|
})(exports.KnownTriggerRuntimeState || (exports.KnownTriggerRuntimeState = {}));
|
|
256
|
+
/** Known values of {@link EventSubscriptionStatus} that the service accepts. */
|
|
257
|
+
exports.KnownEventSubscriptionStatus = void 0;
|
|
181
258
|
(function (KnownEventSubscriptionStatus) {
|
|
182
259
|
KnownEventSubscriptionStatus["Enabled"] = "Enabled";
|
|
183
260
|
KnownEventSubscriptionStatus["Provisioning"] = "Provisioning";
|
|
@@ -185,43 +262,67 @@ var coreLro = require('@azure/core-lro');
|
|
|
185
262
|
KnownEventSubscriptionStatus["Disabled"] = "Disabled";
|
|
186
263
|
KnownEventSubscriptionStatus["Unknown"] = "Unknown";
|
|
187
264
|
})(exports.KnownEventSubscriptionStatus || (exports.KnownEventSubscriptionStatus = {}));
|
|
265
|
+
/** Known values of {@link TriggerRunStatus} that the service accepts. */
|
|
266
|
+
exports.KnownTriggerRunStatus = void 0;
|
|
188
267
|
(function (KnownTriggerRunStatus) {
|
|
189
268
|
KnownTriggerRunStatus["Succeeded"] = "Succeeded";
|
|
190
269
|
KnownTriggerRunStatus["Failed"] = "Failed";
|
|
191
270
|
KnownTriggerRunStatus["Inprogress"] = "Inprogress";
|
|
192
271
|
})(exports.KnownTriggerRunStatus || (exports.KnownTriggerRunStatus = {}));
|
|
272
|
+
/** Known values of {@link ExpressionType} that the service accepts. */
|
|
273
|
+
exports.KnownExpressionType = void 0;
|
|
193
274
|
(function (KnownExpressionType) {
|
|
194
275
|
KnownExpressionType["Expression"] = "Expression";
|
|
195
276
|
})(exports.KnownExpressionType || (exports.KnownExpressionType = {}));
|
|
277
|
+
/** Known values of {@link PipelineReferenceType} that the service accepts. */
|
|
278
|
+
exports.KnownPipelineReferenceType = void 0;
|
|
196
279
|
(function (KnownPipelineReferenceType) {
|
|
197
280
|
KnownPipelineReferenceType["PipelineReference"] = "PipelineReference";
|
|
198
281
|
})(exports.KnownPipelineReferenceType || (exports.KnownPipelineReferenceType = {}));
|
|
282
|
+
/** Known values of {@link DatasetReferenceType} that the service accepts. */
|
|
283
|
+
exports.KnownDatasetReferenceType = void 0;
|
|
199
284
|
(function (KnownDatasetReferenceType) {
|
|
200
285
|
KnownDatasetReferenceType["DatasetReference"] = "DatasetReference";
|
|
201
286
|
})(exports.KnownDatasetReferenceType || (exports.KnownDatasetReferenceType = {}));
|
|
287
|
+
/** Known values of {@link DataFlowReferenceType} that the service accepts. */
|
|
288
|
+
exports.KnownDataFlowReferenceType = void 0;
|
|
202
289
|
(function (KnownDataFlowReferenceType) {
|
|
203
290
|
KnownDataFlowReferenceType["DataFlowReference"] = "DataFlowReference";
|
|
204
291
|
})(exports.KnownDataFlowReferenceType || (exports.KnownDataFlowReferenceType = {}));
|
|
292
|
+
/** Known values of {@link NotebookReferenceType} that the service accepts. */
|
|
293
|
+
exports.KnownNotebookReferenceType = void 0;
|
|
205
294
|
(function (KnownNotebookReferenceType) {
|
|
206
295
|
KnownNotebookReferenceType["NotebookReference"] = "NotebookReference";
|
|
207
296
|
})(exports.KnownNotebookReferenceType || (exports.KnownNotebookReferenceType = {}));
|
|
297
|
+
/** Known values of {@link SparkJobReferenceType} that the service accepts. */
|
|
298
|
+
exports.KnownSparkJobReferenceType = void 0;
|
|
208
299
|
(function (KnownSparkJobReferenceType) {
|
|
209
300
|
KnownSparkJobReferenceType["SparkJobDefinitionReference"] = "SparkJobDefinitionReference";
|
|
210
301
|
})(exports.KnownSparkJobReferenceType || (exports.KnownSparkJobReferenceType = {}));
|
|
302
|
+
/** Known values of {@link SqlPoolReferenceType} that the service accepts. */
|
|
303
|
+
exports.KnownSqlPoolReferenceType = void 0;
|
|
211
304
|
(function (KnownSqlPoolReferenceType) {
|
|
212
305
|
KnownSqlPoolReferenceType["SqlPoolReference"] = "SqlPoolReference";
|
|
213
306
|
})(exports.KnownSqlPoolReferenceType || (exports.KnownSqlPoolReferenceType = {}));
|
|
307
|
+
/** Known values of {@link SybaseAuthenticationType} that the service accepts. */
|
|
308
|
+
exports.KnownSybaseAuthenticationType = void 0;
|
|
214
309
|
(function (KnownSybaseAuthenticationType) {
|
|
215
310
|
KnownSybaseAuthenticationType["Basic"] = "Basic";
|
|
216
311
|
KnownSybaseAuthenticationType["Windows"] = "Windows";
|
|
217
312
|
})(exports.KnownSybaseAuthenticationType || (exports.KnownSybaseAuthenticationType = {}));
|
|
313
|
+
/** Known values of {@link Db2AuthenticationType} that the service accepts. */
|
|
314
|
+
exports.KnownDb2AuthenticationType = void 0;
|
|
218
315
|
(function (KnownDb2AuthenticationType) {
|
|
219
316
|
KnownDb2AuthenticationType["Basic"] = "Basic";
|
|
220
317
|
})(exports.KnownDb2AuthenticationType || (exports.KnownDb2AuthenticationType = {}));
|
|
318
|
+
/** Known values of {@link TeradataAuthenticationType} that the service accepts. */
|
|
319
|
+
exports.KnownTeradataAuthenticationType = void 0;
|
|
221
320
|
(function (KnownTeradataAuthenticationType) {
|
|
222
321
|
KnownTeradataAuthenticationType["Basic"] = "Basic";
|
|
223
322
|
KnownTeradataAuthenticationType["Windows"] = "Windows";
|
|
224
323
|
})(exports.KnownTeradataAuthenticationType || (exports.KnownTeradataAuthenticationType = {}));
|
|
324
|
+
/** Known values of {@link ODataAuthenticationType} that the service accepts. */
|
|
325
|
+
exports.KnownODataAuthenticationType = void 0;
|
|
225
326
|
(function (KnownODataAuthenticationType) {
|
|
226
327
|
KnownODataAuthenticationType["Basic"] = "Basic";
|
|
227
328
|
KnownODataAuthenticationType["Anonymous"] = "Anonymous";
|
|
@@ -229,25 +330,47 @@ var coreLro = require('@azure/core-lro');
|
|
|
229
330
|
KnownODataAuthenticationType["AadServicePrincipal"] = "AadServicePrincipal";
|
|
230
331
|
KnownODataAuthenticationType["ManagedServiceIdentity"] = "ManagedServiceIdentity";
|
|
231
332
|
})(exports.KnownODataAuthenticationType || (exports.KnownODataAuthenticationType = {}));
|
|
333
|
+
/** Known values of {@link ODataAadServicePrincipalCredentialType} that the service accepts. */
|
|
334
|
+
exports.KnownODataAadServicePrincipalCredentialType = void 0;
|
|
232
335
|
(function (KnownODataAadServicePrincipalCredentialType) {
|
|
233
336
|
KnownODataAadServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
|
|
234
337
|
KnownODataAadServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
|
|
235
338
|
})(exports.KnownODataAadServicePrincipalCredentialType || (exports.KnownODataAadServicePrincipalCredentialType = {}));
|
|
339
|
+
/** Known values of {@link WebAuthenticationType} that the service accepts. */
|
|
340
|
+
exports.KnownWebAuthenticationType = void 0;
|
|
236
341
|
(function (KnownWebAuthenticationType) {
|
|
237
342
|
KnownWebAuthenticationType["Basic"] = "Basic";
|
|
238
343
|
KnownWebAuthenticationType["Anonymous"] = "Anonymous";
|
|
239
344
|
KnownWebAuthenticationType["ClientCertificate"] = "ClientCertificate";
|
|
240
345
|
})(exports.KnownWebAuthenticationType || (exports.KnownWebAuthenticationType = {}));
|
|
346
|
+
/** Known values of {@link MongoDbAuthenticationType} that the service accepts. */
|
|
347
|
+
exports.KnownMongoDbAuthenticationType = void 0;
|
|
241
348
|
(function (KnownMongoDbAuthenticationType) {
|
|
242
349
|
KnownMongoDbAuthenticationType["Basic"] = "Basic";
|
|
243
350
|
KnownMongoDbAuthenticationType["Anonymous"] = "Anonymous";
|
|
244
351
|
})(exports.KnownMongoDbAuthenticationType || (exports.KnownMongoDbAuthenticationType = {}));
|
|
352
|
+
/** Known values of {@link RestServiceAuthenticationType} that the service accepts. */
|
|
353
|
+
exports.KnownRestServiceAuthenticationType = void 0;
|
|
245
354
|
(function (KnownRestServiceAuthenticationType) {
|
|
246
355
|
KnownRestServiceAuthenticationType["Anonymous"] = "Anonymous";
|
|
247
356
|
KnownRestServiceAuthenticationType["Basic"] = "Basic";
|
|
248
357
|
KnownRestServiceAuthenticationType["AadServicePrincipal"] = "AadServicePrincipal";
|
|
249
358
|
KnownRestServiceAuthenticationType["ManagedServiceIdentity"] = "ManagedServiceIdentity";
|
|
250
359
|
})(exports.KnownRestServiceAuthenticationType || (exports.KnownRestServiceAuthenticationType = {}));
|
|
360
|
+
/** Known values of {@link TeamDeskAuthenticationType} that the service accepts. */
|
|
361
|
+
exports.KnownTeamDeskAuthenticationType = void 0;
|
|
362
|
+
(function (KnownTeamDeskAuthenticationType) {
|
|
363
|
+
KnownTeamDeskAuthenticationType["Basic"] = "Basic";
|
|
364
|
+
KnownTeamDeskAuthenticationType["Token"] = "Token";
|
|
365
|
+
})(exports.KnownTeamDeskAuthenticationType || (exports.KnownTeamDeskAuthenticationType = {}));
|
|
366
|
+
/** Known values of {@link ZendeskAuthenticationType} that the service accepts. */
|
|
367
|
+
exports.KnownZendeskAuthenticationType = void 0;
|
|
368
|
+
(function (KnownZendeskAuthenticationType) {
|
|
369
|
+
KnownZendeskAuthenticationType["Basic"] = "Basic";
|
|
370
|
+
KnownZendeskAuthenticationType["Token"] = "Token";
|
|
371
|
+
})(exports.KnownZendeskAuthenticationType || (exports.KnownZendeskAuthenticationType = {}));
|
|
372
|
+
/** Known values of {@link HttpAuthenticationType} that the service accepts. */
|
|
373
|
+
exports.KnownHttpAuthenticationType = void 0;
|
|
251
374
|
(function (KnownHttpAuthenticationType) {
|
|
252
375
|
KnownHttpAuthenticationType["Basic"] = "Basic";
|
|
253
376
|
KnownHttpAuthenticationType["Anonymous"] = "Anonymous";
|
|
@@ -255,89 +378,127 @@ var coreLro = require('@azure/core-lro');
|
|
|
255
378
|
KnownHttpAuthenticationType["Windows"] = "Windows";
|
|
256
379
|
KnownHttpAuthenticationType["ClientCertificate"] = "ClientCertificate";
|
|
257
380
|
})(exports.KnownHttpAuthenticationType || (exports.KnownHttpAuthenticationType = {}));
|
|
381
|
+
/** Known values of {@link FtpAuthenticationType} that the service accepts. */
|
|
382
|
+
exports.KnownFtpAuthenticationType = void 0;
|
|
258
383
|
(function (KnownFtpAuthenticationType) {
|
|
259
384
|
KnownFtpAuthenticationType["Basic"] = "Basic";
|
|
260
385
|
KnownFtpAuthenticationType["Anonymous"] = "Anonymous";
|
|
261
386
|
})(exports.KnownFtpAuthenticationType || (exports.KnownFtpAuthenticationType = {}));
|
|
387
|
+
/** Known values of {@link SftpAuthenticationType} that the service accepts. */
|
|
388
|
+
exports.KnownSftpAuthenticationType = void 0;
|
|
262
389
|
(function (KnownSftpAuthenticationType) {
|
|
263
390
|
KnownSftpAuthenticationType["Basic"] = "Basic";
|
|
264
391
|
KnownSftpAuthenticationType["SshPublicKey"] = "SshPublicKey";
|
|
265
392
|
})(exports.KnownSftpAuthenticationType || (exports.KnownSftpAuthenticationType = {}));
|
|
393
|
+
/** Known values of {@link SapHanaAuthenticationType} that the service accepts. */
|
|
394
|
+
exports.KnownSapHanaAuthenticationType = void 0;
|
|
266
395
|
(function (KnownSapHanaAuthenticationType) {
|
|
267
396
|
KnownSapHanaAuthenticationType["Basic"] = "Basic";
|
|
268
397
|
KnownSapHanaAuthenticationType["Windows"] = "Windows";
|
|
269
398
|
})(exports.KnownSapHanaAuthenticationType || (exports.KnownSapHanaAuthenticationType = {}));
|
|
399
|
+
/** Known values of {@link GoogleBigQueryAuthenticationType} that the service accepts. */
|
|
400
|
+
exports.KnownGoogleBigQueryAuthenticationType = void 0;
|
|
270
401
|
(function (KnownGoogleBigQueryAuthenticationType) {
|
|
271
402
|
KnownGoogleBigQueryAuthenticationType["ServiceAuthentication"] = "ServiceAuthentication";
|
|
272
403
|
KnownGoogleBigQueryAuthenticationType["UserAuthentication"] = "UserAuthentication";
|
|
273
404
|
})(exports.KnownGoogleBigQueryAuthenticationType || (exports.KnownGoogleBigQueryAuthenticationType = {}));
|
|
405
|
+
/** Known values of {@link HBaseAuthenticationType} that the service accepts. */
|
|
406
|
+
exports.KnownHBaseAuthenticationType = void 0;
|
|
274
407
|
(function (KnownHBaseAuthenticationType) {
|
|
275
408
|
KnownHBaseAuthenticationType["Anonymous"] = "Anonymous";
|
|
276
409
|
KnownHBaseAuthenticationType["Basic"] = "Basic";
|
|
277
410
|
})(exports.KnownHBaseAuthenticationType || (exports.KnownHBaseAuthenticationType = {}));
|
|
411
|
+
/** Known values of {@link HiveServerType} that the service accepts. */
|
|
412
|
+
exports.KnownHiveServerType = void 0;
|
|
278
413
|
(function (KnownHiveServerType) {
|
|
279
414
|
KnownHiveServerType["HiveServer1"] = "HiveServer1";
|
|
280
415
|
KnownHiveServerType["HiveServer2"] = "HiveServer2";
|
|
281
416
|
KnownHiveServerType["HiveThriftServer"] = "HiveThriftServer";
|
|
282
417
|
})(exports.KnownHiveServerType || (exports.KnownHiveServerType = {}));
|
|
418
|
+
/** Known values of {@link HiveThriftTransportProtocol} that the service accepts. */
|
|
419
|
+
exports.KnownHiveThriftTransportProtocol = void 0;
|
|
283
420
|
(function (KnownHiveThriftTransportProtocol) {
|
|
284
421
|
KnownHiveThriftTransportProtocol["Binary"] = "Binary";
|
|
285
422
|
KnownHiveThriftTransportProtocol["Sasl"] = "SASL";
|
|
286
423
|
KnownHiveThriftTransportProtocol["Http"] = "HTTP ";
|
|
287
424
|
})(exports.KnownHiveThriftTransportProtocol || (exports.KnownHiveThriftTransportProtocol = {}));
|
|
425
|
+
/** Known values of {@link HiveAuthenticationType} that the service accepts. */
|
|
426
|
+
exports.KnownHiveAuthenticationType = void 0;
|
|
288
427
|
(function (KnownHiveAuthenticationType) {
|
|
289
428
|
KnownHiveAuthenticationType["Anonymous"] = "Anonymous";
|
|
290
429
|
KnownHiveAuthenticationType["Username"] = "Username";
|
|
291
430
|
KnownHiveAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
292
431
|
KnownHiveAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
293
432
|
})(exports.KnownHiveAuthenticationType || (exports.KnownHiveAuthenticationType = {}));
|
|
433
|
+
/** Known values of {@link ImpalaAuthenticationType} that the service accepts. */
|
|
434
|
+
exports.KnownImpalaAuthenticationType = void 0;
|
|
294
435
|
(function (KnownImpalaAuthenticationType) {
|
|
295
436
|
KnownImpalaAuthenticationType["Anonymous"] = "Anonymous";
|
|
296
437
|
KnownImpalaAuthenticationType["SaslUsername"] = "SASLUsername";
|
|
297
438
|
KnownImpalaAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
298
439
|
})(exports.KnownImpalaAuthenticationType || (exports.KnownImpalaAuthenticationType = {}));
|
|
440
|
+
/** Known values of {@link PhoenixAuthenticationType} that the service accepts. */
|
|
441
|
+
exports.KnownPhoenixAuthenticationType = void 0;
|
|
299
442
|
(function (KnownPhoenixAuthenticationType) {
|
|
300
443
|
KnownPhoenixAuthenticationType["Anonymous"] = "Anonymous";
|
|
301
444
|
KnownPhoenixAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
302
445
|
KnownPhoenixAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
303
446
|
})(exports.KnownPhoenixAuthenticationType || (exports.KnownPhoenixAuthenticationType = {}));
|
|
447
|
+
/** Known values of {@link PrestoAuthenticationType} that the service accepts. */
|
|
448
|
+
exports.KnownPrestoAuthenticationType = void 0;
|
|
304
449
|
(function (KnownPrestoAuthenticationType) {
|
|
305
450
|
KnownPrestoAuthenticationType["Anonymous"] = "Anonymous";
|
|
306
451
|
KnownPrestoAuthenticationType["Ldap"] = "LDAP";
|
|
307
452
|
})(exports.KnownPrestoAuthenticationType || (exports.KnownPrestoAuthenticationType = {}));
|
|
453
|
+
/** Known values of {@link ServiceNowAuthenticationType} that the service accepts. */
|
|
454
|
+
exports.KnownServiceNowAuthenticationType = void 0;
|
|
308
455
|
(function (KnownServiceNowAuthenticationType) {
|
|
309
456
|
KnownServiceNowAuthenticationType["Basic"] = "Basic";
|
|
310
457
|
KnownServiceNowAuthenticationType["OAuth2"] = "OAuth2";
|
|
311
458
|
})(exports.KnownServiceNowAuthenticationType || (exports.KnownServiceNowAuthenticationType = {}));
|
|
459
|
+
/** Known values of {@link SparkServerType} that the service accepts. */
|
|
460
|
+
exports.KnownSparkServerType = void 0;
|
|
312
461
|
(function (KnownSparkServerType) {
|
|
313
462
|
KnownSparkServerType["SharkServer"] = "SharkServer";
|
|
314
463
|
KnownSparkServerType["SharkServer2"] = "SharkServer2";
|
|
315
464
|
KnownSparkServerType["SparkThriftServer"] = "SparkThriftServer";
|
|
316
465
|
})(exports.KnownSparkServerType || (exports.KnownSparkServerType = {}));
|
|
466
|
+
/** Known values of {@link SparkThriftTransportProtocol} that the service accepts. */
|
|
467
|
+
exports.KnownSparkThriftTransportProtocol = void 0;
|
|
317
468
|
(function (KnownSparkThriftTransportProtocol) {
|
|
318
469
|
KnownSparkThriftTransportProtocol["Binary"] = "Binary";
|
|
319
470
|
KnownSparkThriftTransportProtocol["Sasl"] = "SASL";
|
|
320
471
|
KnownSparkThriftTransportProtocol["Http"] = "HTTP ";
|
|
321
472
|
})(exports.KnownSparkThriftTransportProtocol || (exports.KnownSparkThriftTransportProtocol = {}));
|
|
473
|
+
/** Known values of {@link SparkAuthenticationType} that the service accepts. */
|
|
474
|
+
exports.KnownSparkAuthenticationType = void 0;
|
|
322
475
|
(function (KnownSparkAuthenticationType) {
|
|
323
476
|
KnownSparkAuthenticationType["Anonymous"] = "Anonymous";
|
|
324
477
|
KnownSparkAuthenticationType["Username"] = "Username";
|
|
325
478
|
KnownSparkAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
326
479
|
KnownSparkAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
327
480
|
})(exports.KnownSparkAuthenticationType || (exports.KnownSparkAuthenticationType = {}));
|
|
481
|
+
/** Known values of {@link GoogleAdWordsAuthenticationType} that the service accepts. */
|
|
482
|
+
exports.KnownGoogleAdWordsAuthenticationType = void 0;
|
|
328
483
|
(function (KnownGoogleAdWordsAuthenticationType) {
|
|
329
484
|
KnownGoogleAdWordsAuthenticationType["ServiceAuthentication"] = "ServiceAuthentication";
|
|
330
485
|
KnownGoogleAdWordsAuthenticationType["UserAuthentication"] = "UserAuthentication";
|
|
331
486
|
})(exports.KnownGoogleAdWordsAuthenticationType || (exports.KnownGoogleAdWordsAuthenticationType = {}));
|
|
487
|
+
/** Known values of {@link SalesforceSourceReadBehavior} that the service accepts. */
|
|
488
|
+
exports.KnownSalesforceSourceReadBehavior = void 0;
|
|
332
489
|
(function (KnownSalesforceSourceReadBehavior) {
|
|
333
490
|
KnownSalesforceSourceReadBehavior["Query"] = "Query";
|
|
334
491
|
KnownSalesforceSourceReadBehavior["QueryAll"] = "QueryAll";
|
|
335
492
|
})(exports.KnownSalesforceSourceReadBehavior || (exports.KnownSalesforceSourceReadBehavior = {}));
|
|
493
|
+
/** Known values of {@link SapHanaPartitionOption} that the service accepts. */
|
|
494
|
+
exports.KnownSapHanaPartitionOption = void 0;
|
|
336
495
|
(function (KnownSapHanaPartitionOption) {
|
|
337
496
|
KnownSapHanaPartitionOption["None"] = "None";
|
|
338
497
|
KnownSapHanaPartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
339
498
|
KnownSapHanaPartitionOption["SapHanaDynamicRange"] = "SapHanaDynamicRange";
|
|
340
499
|
})(exports.KnownSapHanaPartitionOption || (exports.KnownSapHanaPartitionOption = {}));
|
|
500
|
+
/** Known values of {@link SapTablePartitionOption} that the service accepts. */
|
|
501
|
+
exports.KnownSapTablePartitionOption = void 0;
|
|
341
502
|
(function (KnownSapTablePartitionOption) {
|
|
342
503
|
KnownSapTablePartitionOption["None"] = "None";
|
|
343
504
|
KnownSapTablePartitionOption["PartitionOnInt"] = "PartitionOnInt";
|
|
@@ -346,6 +507,8 @@ var coreLro = require('@azure/core-lro');
|
|
|
346
507
|
KnownSapTablePartitionOption["PartitionOnCalendarDate"] = "PartitionOnCalendarDate";
|
|
347
508
|
KnownSapTablePartitionOption["PartitionOnTime"] = "PartitionOnTime";
|
|
348
509
|
})(exports.KnownSapTablePartitionOption || (exports.KnownSapTablePartitionOption = {}));
|
|
510
|
+
/** Known values of {@link StoredProcedureParameterType} that the service accepts. */
|
|
511
|
+
exports.KnownStoredProcedureParameterType = void 0;
|
|
349
512
|
(function (KnownStoredProcedureParameterType) {
|
|
350
513
|
KnownStoredProcedureParameterType["String"] = "String";
|
|
351
514
|
KnownStoredProcedureParameterType["Int"] = "Int";
|
|
@@ -355,16 +518,22 @@ var coreLro = require('@azure/core-lro');
|
|
|
355
518
|
KnownStoredProcedureParameterType["Boolean"] = "Boolean";
|
|
356
519
|
KnownStoredProcedureParameterType["Date"] = "Date";
|
|
357
520
|
})(exports.KnownStoredProcedureParameterType || (exports.KnownStoredProcedureParameterType = {}));
|
|
521
|
+
/** Known values of {@link OraclePartitionOption} that the service accepts. */
|
|
522
|
+
exports.KnownOraclePartitionOption = void 0;
|
|
358
523
|
(function (KnownOraclePartitionOption) {
|
|
359
524
|
KnownOraclePartitionOption["None"] = "None";
|
|
360
525
|
KnownOraclePartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
361
526
|
KnownOraclePartitionOption["DynamicRange"] = "DynamicRange";
|
|
362
527
|
})(exports.KnownOraclePartitionOption || (exports.KnownOraclePartitionOption = {}));
|
|
528
|
+
/** Known values of {@link TeradataPartitionOption} that the service accepts. */
|
|
529
|
+
exports.KnownTeradataPartitionOption = void 0;
|
|
363
530
|
(function (KnownTeradataPartitionOption) {
|
|
364
531
|
KnownTeradataPartitionOption["None"] = "None";
|
|
365
532
|
KnownTeradataPartitionOption["Hash"] = "Hash";
|
|
366
533
|
KnownTeradataPartitionOption["DynamicRange"] = "DynamicRange";
|
|
367
534
|
})(exports.KnownTeradataPartitionOption || (exports.KnownTeradataPartitionOption = {}));
|
|
535
|
+
/** Known values of {@link CassandraSourceReadConsistencyLevels} that the service accepts. */
|
|
536
|
+
exports.KnownCassandraSourceReadConsistencyLevels = void 0;
|
|
368
537
|
(function (KnownCassandraSourceReadConsistencyLevels) {
|
|
369
538
|
KnownCassandraSourceReadConsistencyLevels["ALL"] = "ALL";
|
|
370
539
|
KnownCassandraSourceReadConsistencyLevels["EachQuorum"] = "EACH_QUORUM";
|
|
@@ -377,56 +546,80 @@ var coreLro = require('@azure/core-lro');
|
|
|
377
546
|
KnownCassandraSourceReadConsistencyLevels["Serial"] = "SERIAL";
|
|
378
547
|
KnownCassandraSourceReadConsistencyLevels["LocalSerial"] = "LOCAL_SERIAL";
|
|
379
548
|
})(exports.KnownCassandraSourceReadConsistencyLevels || (exports.KnownCassandraSourceReadConsistencyLevels = {}));
|
|
549
|
+
/** Known values of {@link NetezzaPartitionOption} that the service accepts. */
|
|
550
|
+
exports.KnownNetezzaPartitionOption = void 0;
|
|
380
551
|
(function (KnownNetezzaPartitionOption) {
|
|
381
552
|
KnownNetezzaPartitionOption["None"] = "None";
|
|
382
553
|
KnownNetezzaPartitionOption["DataSlice"] = "DataSlice";
|
|
383
554
|
KnownNetezzaPartitionOption["DynamicRange"] = "DynamicRange";
|
|
384
555
|
})(exports.KnownNetezzaPartitionOption || (exports.KnownNetezzaPartitionOption = {}));
|
|
556
|
+
/** Known values of {@link NotebookParameterType} that the service accepts. */
|
|
557
|
+
exports.KnownNotebookParameterType = void 0;
|
|
385
558
|
(function (KnownNotebookParameterType) {
|
|
386
559
|
KnownNotebookParameterType["String"] = "string";
|
|
387
560
|
KnownNotebookParameterType["Int"] = "int";
|
|
388
561
|
KnownNotebookParameterType["Float"] = "float";
|
|
389
562
|
KnownNotebookParameterType["Bool"] = "bool";
|
|
390
563
|
})(exports.KnownNotebookParameterType || (exports.KnownNotebookParameterType = {}));
|
|
564
|
+
/** Known values of {@link SapCloudForCustomerSinkWriteBehavior} that the service accepts. */
|
|
565
|
+
exports.KnownSapCloudForCustomerSinkWriteBehavior = void 0;
|
|
391
566
|
(function (KnownSapCloudForCustomerSinkWriteBehavior) {
|
|
392
567
|
KnownSapCloudForCustomerSinkWriteBehavior["Insert"] = "Insert";
|
|
393
568
|
KnownSapCloudForCustomerSinkWriteBehavior["Update"] = "Update";
|
|
394
569
|
})(exports.KnownSapCloudForCustomerSinkWriteBehavior || (exports.KnownSapCloudForCustomerSinkWriteBehavior = {}));
|
|
570
|
+
/** Known values of {@link PolybaseSettingsRejectType} that the service accepts. */
|
|
571
|
+
exports.KnownPolybaseSettingsRejectType = void 0;
|
|
395
572
|
(function (KnownPolybaseSettingsRejectType) {
|
|
396
573
|
KnownPolybaseSettingsRejectType["Value"] = "value";
|
|
397
574
|
KnownPolybaseSettingsRejectType["Percentage"] = "percentage";
|
|
398
575
|
})(exports.KnownPolybaseSettingsRejectType || (exports.KnownPolybaseSettingsRejectType = {}));
|
|
576
|
+
/** Known values of {@link AzureSearchIndexWriteBehaviorType} that the service accepts. */
|
|
577
|
+
exports.KnownAzureSearchIndexWriteBehaviorType = void 0;
|
|
399
578
|
(function (KnownAzureSearchIndexWriteBehaviorType) {
|
|
400
579
|
KnownAzureSearchIndexWriteBehaviorType["Merge"] = "Merge";
|
|
401
580
|
KnownAzureSearchIndexWriteBehaviorType["Upload"] = "Upload";
|
|
402
581
|
})(exports.KnownAzureSearchIndexWriteBehaviorType || (exports.KnownAzureSearchIndexWriteBehaviorType = {}));
|
|
582
|
+
/** Known values of {@link DynamicsSinkWriteBehavior} that the service accepts. */
|
|
583
|
+
exports.KnownDynamicsSinkWriteBehavior = void 0;
|
|
403
584
|
(function (KnownDynamicsSinkWriteBehavior) {
|
|
404
585
|
KnownDynamicsSinkWriteBehavior["Upsert"] = "Upsert";
|
|
405
586
|
})(exports.KnownDynamicsSinkWriteBehavior || (exports.KnownDynamicsSinkWriteBehavior = {}));
|
|
587
|
+
/** Known values of {@link SalesforceSinkWriteBehavior} that the service accepts. */
|
|
588
|
+
exports.KnownSalesforceSinkWriteBehavior = void 0;
|
|
406
589
|
(function (KnownSalesforceSinkWriteBehavior) {
|
|
407
590
|
KnownSalesforceSinkWriteBehavior["Insert"] = "Insert";
|
|
408
591
|
KnownSalesforceSinkWriteBehavior["Upsert"] = "Upsert";
|
|
409
592
|
})(exports.KnownSalesforceSinkWriteBehavior || (exports.KnownSalesforceSinkWriteBehavior = {}));
|
|
593
|
+
/** Known values of {@link HDInsightActivityDebugInfoOption} that the service accepts. */
|
|
594
|
+
exports.KnownHDInsightActivityDebugInfoOption = void 0;
|
|
410
595
|
(function (KnownHDInsightActivityDebugInfoOption) {
|
|
411
596
|
KnownHDInsightActivityDebugInfoOption["None"] = "None";
|
|
412
597
|
KnownHDInsightActivityDebugInfoOption["Always"] = "Always";
|
|
413
598
|
KnownHDInsightActivityDebugInfoOption["Failure"] = "Failure";
|
|
414
599
|
})(exports.KnownHDInsightActivityDebugInfoOption || (exports.KnownHDInsightActivityDebugInfoOption = {}));
|
|
600
|
+
/** Known values of {@link SsisPackageLocationType} that the service accepts. */
|
|
601
|
+
exports.KnownSsisPackageLocationType = void 0;
|
|
415
602
|
(function (KnownSsisPackageLocationType) {
|
|
416
603
|
KnownSsisPackageLocationType["Ssisdb"] = "SSISDB";
|
|
417
604
|
KnownSsisPackageLocationType["File"] = "File";
|
|
418
605
|
KnownSsisPackageLocationType["InlinePackage"] = "InlinePackage";
|
|
419
606
|
KnownSsisPackageLocationType["PackageStore"] = "PackageStore";
|
|
420
607
|
})(exports.KnownSsisPackageLocationType || (exports.KnownSsisPackageLocationType = {}));
|
|
608
|
+
/** Known values of {@link SsisLogLocationType} that the service accepts. */
|
|
609
|
+
exports.KnownSsisLogLocationType = void 0;
|
|
421
610
|
(function (KnownSsisLogLocationType) {
|
|
422
611
|
KnownSsisLogLocationType["File"] = "File";
|
|
423
612
|
})(exports.KnownSsisLogLocationType || (exports.KnownSsisLogLocationType = {}));
|
|
613
|
+
/** Known values of {@link WebActivityMethod} that the service accepts. */
|
|
614
|
+
exports.KnownWebActivityMethod = void 0;
|
|
424
615
|
(function (KnownWebActivityMethod) {
|
|
425
616
|
KnownWebActivityMethod["GET"] = "GET";
|
|
426
617
|
KnownWebActivityMethod["Post"] = "POST";
|
|
427
618
|
KnownWebActivityMethod["PUT"] = "PUT";
|
|
428
619
|
KnownWebActivityMethod["Delete"] = "DELETE";
|
|
429
620
|
})(exports.KnownWebActivityMethod || (exports.KnownWebActivityMethod = {}));
|
|
621
|
+
/** Known values of {@link AzureFunctionActivityMethod} that the service accepts. */
|
|
622
|
+
exports.KnownAzureFunctionActivityMethod = void 0;
|
|
430
623
|
(function (KnownAzureFunctionActivityMethod) {
|
|
431
624
|
KnownAzureFunctionActivityMethod["GET"] = "GET";
|
|
432
625
|
KnownAzureFunctionActivityMethod["Post"] = "POST";
|
|
@@ -436,14 +629,55 @@ var coreLro = require('@azure/core-lro');
|
|
|
436
629
|
KnownAzureFunctionActivityMethod["Head"] = "HEAD";
|
|
437
630
|
KnownAzureFunctionActivityMethod["Trace"] = "TRACE";
|
|
438
631
|
})(exports.KnownAzureFunctionActivityMethod || (exports.KnownAzureFunctionActivityMethod = {}));
|
|
632
|
+
/** Known values of {@link WebHookActivityMethod} that the service accepts. */
|
|
633
|
+
exports.KnownWebHookActivityMethod = void 0;
|
|
439
634
|
(function (KnownWebHookActivityMethod) {
|
|
440
635
|
KnownWebHookActivityMethod["Post"] = "POST";
|
|
441
636
|
})(exports.KnownWebHookActivityMethod || (exports.KnownWebHookActivityMethod = {}));
|
|
637
|
+
/** Known values of {@link DataFlowComputeType} that the service accepts. */
|
|
638
|
+
exports.KnownDataFlowComputeType = void 0;
|
|
442
639
|
(function (KnownDataFlowComputeType) {
|
|
443
640
|
KnownDataFlowComputeType["General"] = "General";
|
|
444
641
|
KnownDataFlowComputeType["MemoryOptimized"] = "MemoryOptimized";
|
|
445
642
|
KnownDataFlowComputeType["ComputeOptimized"] = "ComputeOptimized";
|
|
446
643
|
})(exports.KnownDataFlowComputeType || (exports.KnownDataFlowComputeType = {}));
|
|
644
|
+
/** Known values of {@link ScriptType} that the service accepts. */
|
|
645
|
+
exports.KnownScriptType = void 0;
|
|
646
|
+
(function (KnownScriptType) {
|
|
647
|
+
KnownScriptType["Query"] = "Query";
|
|
648
|
+
KnownScriptType["NonQuery"] = "NonQuery";
|
|
649
|
+
})(exports.KnownScriptType || (exports.KnownScriptType = {}));
|
|
650
|
+
/** Known values of {@link ScriptActivityParameterType} that the service accepts. */
|
|
651
|
+
exports.KnownScriptActivityParameterType = void 0;
|
|
652
|
+
(function (KnownScriptActivityParameterType) {
|
|
653
|
+
KnownScriptActivityParameterType["Boolean"] = "Boolean";
|
|
654
|
+
KnownScriptActivityParameterType["DateTime"] = "DateTime";
|
|
655
|
+
KnownScriptActivityParameterType["DateTimeOffset"] = "DateTimeOffset";
|
|
656
|
+
KnownScriptActivityParameterType["Decimal"] = "Decimal";
|
|
657
|
+
KnownScriptActivityParameterType["Double"] = "Double";
|
|
658
|
+
KnownScriptActivityParameterType["Guid"] = "Guid";
|
|
659
|
+
KnownScriptActivityParameterType["Int16"] = "Int16";
|
|
660
|
+
KnownScriptActivityParameterType["Int32"] = "Int32";
|
|
661
|
+
KnownScriptActivityParameterType["Int64"] = "Int64";
|
|
662
|
+
KnownScriptActivityParameterType["Single"] = "Single";
|
|
663
|
+
KnownScriptActivityParameterType["String"] = "String";
|
|
664
|
+
KnownScriptActivityParameterType["Timespan"] = "Timespan";
|
|
665
|
+
})(exports.KnownScriptActivityParameterType || (exports.KnownScriptActivityParameterType = {}));
|
|
666
|
+
/** Known values of {@link ScriptActivityParameterDirection} that the service accepts. */
|
|
667
|
+
exports.KnownScriptActivityParameterDirection = void 0;
|
|
668
|
+
(function (KnownScriptActivityParameterDirection) {
|
|
669
|
+
KnownScriptActivityParameterDirection["Input"] = "Input";
|
|
670
|
+
KnownScriptActivityParameterDirection["Output"] = "Output";
|
|
671
|
+
KnownScriptActivityParameterDirection["InputOutput"] = "InputOutput";
|
|
672
|
+
})(exports.KnownScriptActivityParameterDirection || (exports.KnownScriptActivityParameterDirection = {}));
|
|
673
|
+
/** Known values of {@link ScriptActivityLogDestination} that the service accepts. */
|
|
674
|
+
exports.KnownScriptActivityLogDestination = void 0;
|
|
675
|
+
(function (KnownScriptActivityLogDestination) {
|
|
676
|
+
KnownScriptActivityLogDestination["ActivityOutput"] = "ActivityOutput";
|
|
677
|
+
KnownScriptActivityLogDestination["ExternalStore"] = "ExternalStore";
|
|
678
|
+
})(exports.KnownScriptActivityLogDestination || (exports.KnownScriptActivityLogDestination = {}));
|
|
679
|
+
/** Known values of {@link RecurrenceFrequency} that the service accepts. */
|
|
680
|
+
exports.KnownRecurrenceFrequency = void 0;
|
|
447
681
|
(function (KnownRecurrenceFrequency) {
|
|
448
682
|
KnownRecurrenceFrequency["NotSpecified"] = "NotSpecified";
|
|
449
683
|
KnownRecurrenceFrequency["Minute"] = "Minute";
|
|
@@ -453,18 +687,26 @@ var coreLro = require('@azure/core-lro');
|
|
|
453
687
|
KnownRecurrenceFrequency["Month"] = "Month";
|
|
454
688
|
KnownRecurrenceFrequency["Year"] = "Year";
|
|
455
689
|
})(exports.KnownRecurrenceFrequency || (exports.KnownRecurrenceFrequency = {}));
|
|
690
|
+
/** Known values of {@link BlobEventType} that the service accepts. */
|
|
691
|
+
exports.KnownBlobEventType = void 0;
|
|
456
692
|
(function (KnownBlobEventType) {
|
|
457
693
|
KnownBlobEventType["MicrosoftStorageBlobCreated"] = "Microsoft.Storage.BlobCreated";
|
|
458
694
|
KnownBlobEventType["MicrosoftStorageBlobDeleted"] = "Microsoft.Storage.BlobDeleted";
|
|
459
695
|
})(exports.KnownBlobEventType || (exports.KnownBlobEventType = {}));
|
|
696
|
+
/** Known values of {@link TumblingWindowFrequency} that the service accepts. */
|
|
697
|
+
exports.KnownTumblingWindowFrequency = void 0;
|
|
460
698
|
(function (KnownTumblingWindowFrequency) {
|
|
461
699
|
KnownTumblingWindowFrequency["Minute"] = "Minute";
|
|
462
700
|
KnownTumblingWindowFrequency["Hour"] = "Hour";
|
|
463
701
|
KnownTumblingWindowFrequency["Month"] = "Month";
|
|
464
702
|
})(exports.KnownTumblingWindowFrequency || (exports.KnownTumblingWindowFrequency = {}));
|
|
703
|
+
/** Known values of {@link TriggerReferenceType} that the service accepts. */
|
|
704
|
+
exports.KnownTriggerReferenceType = void 0;
|
|
465
705
|
(function (KnownTriggerReferenceType) {
|
|
466
706
|
KnownTriggerReferenceType["TriggerReference"] = "TriggerReference";
|
|
467
707
|
})(exports.KnownTriggerReferenceType || (exports.KnownTriggerReferenceType = {}));
|
|
708
|
+
/** Known values of {@link IntegrationRuntimeState} that the service accepts. */
|
|
709
|
+
exports.KnownIntegrationRuntimeState = void 0;
|
|
468
710
|
(function (KnownIntegrationRuntimeState) {
|
|
469
711
|
KnownIntegrationRuntimeState["Initial"] = "Initial";
|
|
470
712
|
KnownIntegrationRuntimeState["Stopped"] = "Stopped";
|
|
@@ -477,32 +719,46 @@ var coreLro = require('@azure/core-lro');
|
|
|
477
719
|
KnownIntegrationRuntimeState["Offline"] = "Offline";
|
|
478
720
|
KnownIntegrationRuntimeState["AccessDenied"] = "AccessDenied";
|
|
479
721
|
})(exports.KnownIntegrationRuntimeState || (exports.KnownIntegrationRuntimeState = {}));
|
|
722
|
+
/** Known values of {@link IntegrationRuntimeSsisCatalogPricingTier} that the service accepts. */
|
|
723
|
+
exports.KnownIntegrationRuntimeSsisCatalogPricingTier = void 0;
|
|
480
724
|
(function (KnownIntegrationRuntimeSsisCatalogPricingTier) {
|
|
481
725
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Basic"] = "Basic";
|
|
482
726
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Standard"] = "Standard";
|
|
483
727
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Premium"] = "Premium";
|
|
484
728
|
KnownIntegrationRuntimeSsisCatalogPricingTier["PremiumRS"] = "PremiumRS";
|
|
485
729
|
})(exports.KnownIntegrationRuntimeSsisCatalogPricingTier || (exports.KnownIntegrationRuntimeSsisCatalogPricingTier = {}));
|
|
730
|
+
/** Known values of {@link IntegrationRuntimeLicenseType} that the service accepts. */
|
|
731
|
+
exports.KnownIntegrationRuntimeLicenseType = void 0;
|
|
486
732
|
(function (KnownIntegrationRuntimeLicenseType) {
|
|
487
733
|
KnownIntegrationRuntimeLicenseType["BasePrice"] = "BasePrice";
|
|
488
734
|
KnownIntegrationRuntimeLicenseType["LicenseIncluded"] = "LicenseIncluded";
|
|
489
735
|
})(exports.KnownIntegrationRuntimeLicenseType || (exports.KnownIntegrationRuntimeLicenseType = {}));
|
|
736
|
+
/** Known values of {@link IntegrationRuntimeEntityReferenceType} that the service accepts. */
|
|
737
|
+
exports.KnownIntegrationRuntimeEntityReferenceType = void 0;
|
|
490
738
|
(function (KnownIntegrationRuntimeEntityReferenceType) {
|
|
491
739
|
KnownIntegrationRuntimeEntityReferenceType["IntegrationRuntimeReference"] = "IntegrationRuntimeReference";
|
|
492
740
|
KnownIntegrationRuntimeEntityReferenceType["LinkedServiceReference"] = "LinkedServiceReference";
|
|
493
741
|
})(exports.KnownIntegrationRuntimeEntityReferenceType || (exports.KnownIntegrationRuntimeEntityReferenceType = {}));
|
|
742
|
+
/** Known values of {@link IntegrationRuntimeEdition} that the service accepts. */
|
|
743
|
+
exports.KnownIntegrationRuntimeEdition = void 0;
|
|
494
744
|
(function (KnownIntegrationRuntimeEdition) {
|
|
495
745
|
KnownIntegrationRuntimeEdition["Standard"] = "Standard";
|
|
496
746
|
KnownIntegrationRuntimeEdition["Enterprise"] = "Enterprise";
|
|
497
747
|
})(exports.KnownIntegrationRuntimeEdition || (exports.KnownIntegrationRuntimeEdition = {}));
|
|
748
|
+
/** Known values of {@link JsonFormatFilePattern} that the service accepts. */
|
|
749
|
+
exports.KnownJsonFormatFilePattern = void 0;
|
|
498
750
|
(function (KnownJsonFormatFilePattern) {
|
|
499
751
|
KnownJsonFormatFilePattern["SetOfObjects"] = "setOfObjects";
|
|
500
752
|
KnownJsonFormatFilePattern["ArrayOfObjects"] = "arrayOfObjects";
|
|
501
753
|
})(exports.KnownJsonFormatFilePattern || (exports.KnownJsonFormatFilePattern = {}));
|
|
754
|
+
/** Known values of {@link DatasetCompressionLevel} that the service accepts. */
|
|
755
|
+
exports.KnownDatasetCompressionLevel = void 0;
|
|
502
756
|
(function (KnownDatasetCompressionLevel) {
|
|
503
757
|
KnownDatasetCompressionLevel["Optimal"] = "Optimal";
|
|
504
758
|
KnownDatasetCompressionLevel["Fastest"] = "Fastest";
|
|
505
759
|
})(exports.KnownDatasetCompressionLevel || (exports.KnownDatasetCompressionLevel = {}));
|
|
760
|
+
/** Known values of {@link AvroCompressionCodec} that the service accepts. */
|
|
761
|
+
exports.KnownAvroCompressionCodec = void 0;
|
|
506
762
|
(function (KnownAvroCompressionCodec) {
|
|
507
763
|
KnownAvroCompressionCodec["None"] = "none";
|
|
508
764
|
KnownAvroCompressionCodec["Deflate"] = "deflate";
|
|
@@ -510,12 +766,16 @@ var coreLro = require('@azure/core-lro');
|
|
|
510
766
|
KnownAvroCompressionCodec["Xz"] = "xz";
|
|
511
767
|
KnownAvroCompressionCodec["Bzip2"] = "bzip2";
|
|
512
768
|
})(exports.KnownAvroCompressionCodec || (exports.KnownAvroCompressionCodec = {}));
|
|
769
|
+
/** Known values of {@link ParquetCompressionCodecEnum} that the service accepts. */
|
|
770
|
+
exports.KnownParquetCompressionCodecEnum = void 0;
|
|
513
771
|
(function (KnownParquetCompressionCodecEnum) {
|
|
514
772
|
KnownParquetCompressionCodecEnum["None"] = "none";
|
|
515
773
|
KnownParquetCompressionCodecEnum["Gzip"] = "gzip";
|
|
516
774
|
KnownParquetCompressionCodecEnum["Snappy"] = "snappy";
|
|
517
775
|
KnownParquetCompressionCodecEnum["Lzo"] = "lzo";
|
|
518
776
|
})(exports.KnownParquetCompressionCodecEnum || (exports.KnownParquetCompressionCodecEnum = {}));
|
|
777
|
+
/** Known values of {@link CompressionCodec} that the service accepts. */
|
|
778
|
+
exports.KnownCompressionCodec = void 0;
|
|
519
779
|
(function (KnownCompressionCodec) {
|
|
520
780
|
KnownCompressionCodec["None"] = "none";
|
|
521
781
|
KnownCompressionCodec["Lzo"] = "lzo";
|
|
@@ -528,44 +788,62 @@ var coreLro = require('@azure/core-lro');
|
|
|
528
788
|
KnownCompressionCodec["Tar"] = "tar";
|
|
529
789
|
KnownCompressionCodec["TarGZip"] = "tarGZip";
|
|
530
790
|
})(exports.KnownCompressionCodec || (exports.KnownCompressionCodec = {}));
|
|
791
|
+
/** Known values of {@link OrcCompressionCodec} that the service accepts. */
|
|
792
|
+
exports.KnownOrcCompressionCodec = void 0;
|
|
531
793
|
(function (KnownOrcCompressionCodec) {
|
|
532
794
|
KnownOrcCompressionCodec["None"] = "none";
|
|
533
795
|
KnownOrcCompressionCodec["Zlib"] = "zlib";
|
|
534
796
|
KnownOrcCompressionCodec["Snappy"] = "snappy";
|
|
535
797
|
KnownOrcCompressionCodec["Lzo"] = "lzo";
|
|
536
798
|
})(exports.KnownOrcCompressionCodec || (exports.KnownOrcCompressionCodec = {}));
|
|
799
|
+
/** Known values of {@link DynamicsDeploymentType} that the service accepts. */
|
|
800
|
+
exports.KnownDynamicsDeploymentType = void 0;
|
|
537
801
|
(function (KnownDynamicsDeploymentType) {
|
|
538
802
|
KnownDynamicsDeploymentType["Online"] = "Online";
|
|
539
803
|
KnownDynamicsDeploymentType["OnPremisesWithIfd"] = "OnPremisesWithIfd";
|
|
540
804
|
})(exports.KnownDynamicsDeploymentType || (exports.KnownDynamicsDeploymentType = {}));
|
|
805
|
+
/** Known values of {@link DynamicsAuthenticationType} that the service accepts. */
|
|
806
|
+
exports.KnownDynamicsAuthenticationType = void 0;
|
|
541
807
|
(function (KnownDynamicsAuthenticationType) {
|
|
542
808
|
KnownDynamicsAuthenticationType["Office365"] = "Office365";
|
|
543
809
|
KnownDynamicsAuthenticationType["Ifd"] = "Ifd";
|
|
544
810
|
KnownDynamicsAuthenticationType["AADServicePrincipal"] = "AADServicePrincipal";
|
|
545
811
|
})(exports.KnownDynamicsAuthenticationType || (exports.KnownDynamicsAuthenticationType = {}));
|
|
812
|
+
/** Known values of {@link DynamicsServicePrincipalCredentialType} that the service accepts. */
|
|
813
|
+
exports.KnownDynamicsServicePrincipalCredentialType = void 0;
|
|
546
814
|
(function (KnownDynamicsServicePrincipalCredentialType) {
|
|
547
815
|
KnownDynamicsServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
|
|
548
816
|
KnownDynamicsServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
|
|
549
817
|
})(exports.KnownDynamicsServicePrincipalCredentialType || (exports.KnownDynamicsServicePrincipalCredentialType = {}));
|
|
818
|
+
/** Known values of {@link HdiNodeTypes} that the service accepts. */
|
|
819
|
+
exports.KnownHdiNodeTypes = void 0;
|
|
550
820
|
(function (KnownHdiNodeTypes) {
|
|
551
821
|
KnownHdiNodeTypes["Headnode"] = "Headnode";
|
|
552
822
|
KnownHdiNodeTypes["Workernode"] = "Workernode";
|
|
553
823
|
KnownHdiNodeTypes["Zookeeper"] = "Zookeeper";
|
|
554
824
|
})(exports.KnownHdiNodeTypes || (exports.KnownHdiNodeTypes = {}));
|
|
825
|
+
/** Known values of {@link JsonWriteFilePattern} that the service accepts. */
|
|
826
|
+
exports.KnownJsonWriteFilePattern = void 0;
|
|
555
827
|
(function (KnownJsonWriteFilePattern) {
|
|
556
828
|
KnownJsonWriteFilePattern["SetOfObjects"] = "setOfObjects";
|
|
557
829
|
KnownJsonWriteFilePattern["ArrayOfObjects"] = "arrayOfObjects";
|
|
558
830
|
})(exports.KnownJsonWriteFilePattern || (exports.KnownJsonWriteFilePattern = {}));
|
|
831
|
+
/** Known values of {@link AmazonRdsForOraclePartitionOption} that the service accepts. */
|
|
832
|
+
exports.KnownAmazonRdsForOraclePartitionOption = void 0;
|
|
559
833
|
(function (KnownAmazonRdsForOraclePartitionOption) {
|
|
560
834
|
KnownAmazonRdsForOraclePartitionOption["None"] = "None";
|
|
561
835
|
KnownAmazonRdsForOraclePartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
562
836
|
KnownAmazonRdsForOraclePartitionOption["DynamicRange"] = "DynamicRange";
|
|
563
837
|
})(exports.KnownAmazonRdsForOraclePartitionOption || (exports.KnownAmazonRdsForOraclePartitionOption = {}));
|
|
838
|
+
/** Known values of {@link CopyBehaviorType} that the service accepts. */
|
|
839
|
+
exports.KnownCopyBehaviorType = void 0;
|
|
564
840
|
(function (KnownCopyBehaviorType) {
|
|
565
841
|
KnownCopyBehaviorType["PreserveHierarchy"] = "PreserveHierarchy";
|
|
566
842
|
KnownCopyBehaviorType["FlattenHierarchy"] = "FlattenHierarchy";
|
|
567
843
|
KnownCopyBehaviorType["MergeFiles"] = "MergeFiles";
|
|
568
844
|
})(exports.KnownCopyBehaviorType || (exports.KnownCopyBehaviorType = {}));
|
|
845
|
+
/** Known values of {@link SqlPartitionOption} that the service accepts. */
|
|
846
|
+
exports.KnownSqlPartitionOption = void 0;
|
|
569
847
|
(function (KnownSqlPartitionOption) {
|
|
570
848
|
KnownSqlPartitionOption["None"] = "None";
|
|
571
849
|
KnownSqlPartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
@@ -5106,7 +5384,7 @@ const SynapseNotebookReference = {
|
|
|
5106
5384
|
serializedName: "referenceName",
|
|
5107
5385
|
required: true,
|
|
5108
5386
|
type: {
|
|
5109
|
-
name: "
|
|
5387
|
+
name: "any"
|
|
5110
5388
|
}
|
|
5111
5389
|
}
|
|
5112
5390
|
}
|
|
@@ -5156,6 +5434,28 @@ const SqlPoolReference = {
|
|
|
5156
5434
|
}
|
|
5157
5435
|
}
|
|
5158
5436
|
};
|
|
5437
|
+
const BigDataPoolParametrizationReference = {
|
|
5438
|
+
type: {
|
|
5439
|
+
name: "Composite",
|
|
5440
|
+
className: "BigDataPoolParametrizationReference",
|
|
5441
|
+
modelProperties: {
|
|
5442
|
+
type: {
|
|
5443
|
+
serializedName: "type",
|
|
5444
|
+
required: true,
|
|
5445
|
+
type: {
|
|
5446
|
+
name: "String"
|
|
5447
|
+
}
|
|
5448
|
+
},
|
|
5449
|
+
referenceName: {
|
|
5450
|
+
serializedName: "referenceName",
|
|
5451
|
+
required: true,
|
|
5452
|
+
type: {
|
|
5453
|
+
name: "any"
|
|
5454
|
+
}
|
|
5455
|
+
}
|
|
5456
|
+
}
|
|
5457
|
+
}
|
|
5458
|
+
};
|
|
5159
5459
|
const StartDataFlowDebugSessionRequest = {
|
|
5160
5460
|
type: {
|
|
5161
5461
|
name: "Composite",
|
|
@@ -6961,6 +7261,100 @@ const ExecuteDataFlowActivityTypePropertiesCompute = {
|
|
|
6961
7261
|
}
|
|
6962
7262
|
}
|
|
6963
7263
|
};
|
|
7264
|
+
const ScriptActivityScriptBlock = {
|
|
7265
|
+
type: {
|
|
7266
|
+
name: "Composite",
|
|
7267
|
+
className: "ScriptActivityScriptBlock",
|
|
7268
|
+
modelProperties: {
|
|
7269
|
+
text: {
|
|
7270
|
+
serializedName: "text",
|
|
7271
|
+
required: true,
|
|
7272
|
+
type: {
|
|
7273
|
+
name: "any"
|
|
7274
|
+
}
|
|
7275
|
+
},
|
|
7276
|
+
type: {
|
|
7277
|
+
serializedName: "type",
|
|
7278
|
+
required: true,
|
|
7279
|
+
type: {
|
|
7280
|
+
name: "String"
|
|
7281
|
+
}
|
|
7282
|
+
},
|
|
7283
|
+
parameters: {
|
|
7284
|
+
serializedName: "parameters",
|
|
7285
|
+
type: {
|
|
7286
|
+
name: "Sequence",
|
|
7287
|
+
element: {
|
|
7288
|
+
type: {
|
|
7289
|
+
name: "Composite",
|
|
7290
|
+
className: "ScriptActivityParameter"
|
|
7291
|
+
}
|
|
7292
|
+
}
|
|
7293
|
+
}
|
|
7294
|
+
}
|
|
7295
|
+
}
|
|
7296
|
+
}
|
|
7297
|
+
};
|
|
7298
|
+
const ScriptActivityParameter = {
|
|
7299
|
+
type: {
|
|
7300
|
+
name: "Composite",
|
|
7301
|
+
className: "ScriptActivityParameter",
|
|
7302
|
+
modelProperties: {
|
|
7303
|
+
name: {
|
|
7304
|
+
serializedName: "name",
|
|
7305
|
+
type: {
|
|
7306
|
+
name: "any"
|
|
7307
|
+
}
|
|
7308
|
+
},
|
|
7309
|
+
type: {
|
|
7310
|
+
serializedName: "type",
|
|
7311
|
+
type: {
|
|
7312
|
+
name: "String"
|
|
7313
|
+
}
|
|
7314
|
+
},
|
|
7315
|
+
value: {
|
|
7316
|
+
serializedName: "value",
|
|
7317
|
+
type: {
|
|
7318
|
+
name: "any"
|
|
7319
|
+
}
|
|
7320
|
+
},
|
|
7321
|
+
direction: {
|
|
7322
|
+
serializedName: "direction",
|
|
7323
|
+
type: {
|
|
7324
|
+
name: "String"
|
|
7325
|
+
}
|
|
7326
|
+
},
|
|
7327
|
+
size: {
|
|
7328
|
+
serializedName: "size",
|
|
7329
|
+
type: {
|
|
7330
|
+
name: "Number"
|
|
7331
|
+
}
|
|
7332
|
+
}
|
|
7333
|
+
}
|
|
7334
|
+
}
|
|
7335
|
+
};
|
|
7336
|
+
const ScriptActivityTypePropertiesLogSettings = {
|
|
7337
|
+
type: {
|
|
7338
|
+
name: "Composite",
|
|
7339
|
+
className: "ScriptActivityTypePropertiesLogSettings",
|
|
7340
|
+
modelProperties: {
|
|
7341
|
+
logDestination: {
|
|
7342
|
+
serializedName: "logDestination",
|
|
7343
|
+
required: true,
|
|
7344
|
+
type: {
|
|
7345
|
+
name: "String"
|
|
7346
|
+
}
|
|
7347
|
+
},
|
|
7348
|
+
logLocationSettings: {
|
|
7349
|
+
serializedName: "logLocationSettings",
|
|
7350
|
+
type: {
|
|
7351
|
+
name: "Composite",
|
|
7352
|
+
className: "LogLocationSettings"
|
|
7353
|
+
}
|
|
7354
|
+
}
|
|
7355
|
+
}
|
|
7356
|
+
}
|
|
7357
|
+
};
|
|
6964
7358
|
const ScheduleTriggerRecurrence = {
|
|
6965
7359
|
type: {
|
|
6966
7360
|
name: "Composite",
|
|
@@ -12035,6 +12429,146 @@ const RestServiceLinkedService = {
|
|
|
12035
12429
|
} })
|
|
12036
12430
|
}
|
|
12037
12431
|
};
|
|
12432
|
+
const TeamDeskLinkedService = {
|
|
12433
|
+
serializedName: "TeamDesk",
|
|
12434
|
+
type: {
|
|
12435
|
+
name: "Composite",
|
|
12436
|
+
className: "TeamDeskLinkedService",
|
|
12437
|
+
uberParent: "LinkedService",
|
|
12438
|
+
additionalProperties: { type: { name: "Object" } },
|
|
12439
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
12440
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { authenticationType: {
|
|
12441
|
+
serializedName: "typeProperties.authenticationType",
|
|
12442
|
+
required: true,
|
|
12443
|
+
type: {
|
|
12444
|
+
name: "String"
|
|
12445
|
+
}
|
|
12446
|
+
}, url: {
|
|
12447
|
+
serializedName: "typeProperties.url",
|
|
12448
|
+
required: true,
|
|
12449
|
+
type: {
|
|
12450
|
+
name: "any"
|
|
12451
|
+
}
|
|
12452
|
+
}, userName: {
|
|
12453
|
+
serializedName: "typeProperties.userName",
|
|
12454
|
+
type: {
|
|
12455
|
+
name: "any"
|
|
12456
|
+
}
|
|
12457
|
+
}, password: {
|
|
12458
|
+
serializedName: "typeProperties.password",
|
|
12459
|
+
type: {
|
|
12460
|
+
name: "Composite",
|
|
12461
|
+
className: "SecretBase"
|
|
12462
|
+
}
|
|
12463
|
+
}, apiToken: {
|
|
12464
|
+
serializedName: "typeProperties.apiToken",
|
|
12465
|
+
type: {
|
|
12466
|
+
name: "Composite",
|
|
12467
|
+
className: "SecretBase"
|
|
12468
|
+
}
|
|
12469
|
+
}, encryptedCredential: {
|
|
12470
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
12471
|
+
type: {
|
|
12472
|
+
name: "any"
|
|
12473
|
+
}
|
|
12474
|
+
} })
|
|
12475
|
+
}
|
|
12476
|
+
};
|
|
12477
|
+
const QuickbaseLinkedService = {
|
|
12478
|
+
serializedName: "Quickbase",
|
|
12479
|
+
type: {
|
|
12480
|
+
name: "Composite",
|
|
12481
|
+
className: "QuickbaseLinkedService",
|
|
12482
|
+
uberParent: "LinkedService",
|
|
12483
|
+
additionalProperties: { type: { name: "Object" } },
|
|
12484
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
12485
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { url: {
|
|
12486
|
+
serializedName: "typeProperties.url",
|
|
12487
|
+
required: true,
|
|
12488
|
+
type: {
|
|
12489
|
+
name: "any"
|
|
12490
|
+
}
|
|
12491
|
+
}, userToken: {
|
|
12492
|
+
serializedName: "typeProperties.userToken",
|
|
12493
|
+
type: {
|
|
12494
|
+
name: "Composite",
|
|
12495
|
+
className: "SecretBase"
|
|
12496
|
+
}
|
|
12497
|
+
}, encryptedCredential: {
|
|
12498
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
12499
|
+
type: {
|
|
12500
|
+
name: "any"
|
|
12501
|
+
}
|
|
12502
|
+
} })
|
|
12503
|
+
}
|
|
12504
|
+
};
|
|
12505
|
+
const SmartsheetLinkedService = {
|
|
12506
|
+
serializedName: "Smartsheet",
|
|
12507
|
+
type: {
|
|
12508
|
+
name: "Composite",
|
|
12509
|
+
className: "SmartsheetLinkedService",
|
|
12510
|
+
uberParent: "LinkedService",
|
|
12511
|
+
additionalProperties: { type: { name: "Object" } },
|
|
12512
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
12513
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { apiToken: {
|
|
12514
|
+
serializedName: "typeProperties.apiToken",
|
|
12515
|
+
type: {
|
|
12516
|
+
name: "Composite",
|
|
12517
|
+
className: "SecretBase"
|
|
12518
|
+
}
|
|
12519
|
+
}, encryptedCredential: {
|
|
12520
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
12521
|
+
type: {
|
|
12522
|
+
name: "any"
|
|
12523
|
+
}
|
|
12524
|
+
} })
|
|
12525
|
+
}
|
|
12526
|
+
};
|
|
12527
|
+
const ZendeskLinkedService = {
|
|
12528
|
+
serializedName: "Zendesk",
|
|
12529
|
+
type: {
|
|
12530
|
+
name: "Composite",
|
|
12531
|
+
className: "ZendeskLinkedService",
|
|
12532
|
+
uberParent: "LinkedService",
|
|
12533
|
+
additionalProperties: { type: { name: "Object" } },
|
|
12534
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
12535
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { authenticationType: {
|
|
12536
|
+
serializedName: "typeProperties.authenticationType",
|
|
12537
|
+
required: true,
|
|
12538
|
+
type: {
|
|
12539
|
+
name: "String"
|
|
12540
|
+
}
|
|
12541
|
+
}, url: {
|
|
12542
|
+
serializedName: "typeProperties.url",
|
|
12543
|
+
required: true,
|
|
12544
|
+
type: {
|
|
12545
|
+
name: "any"
|
|
12546
|
+
}
|
|
12547
|
+
}, userName: {
|
|
12548
|
+
serializedName: "typeProperties.userName",
|
|
12549
|
+
type: {
|
|
12550
|
+
name: "any"
|
|
12551
|
+
}
|
|
12552
|
+
}, password: {
|
|
12553
|
+
serializedName: "typeProperties.password",
|
|
12554
|
+
type: {
|
|
12555
|
+
name: "Composite",
|
|
12556
|
+
className: "SecretBase"
|
|
12557
|
+
}
|
|
12558
|
+
}, apiToken: {
|
|
12559
|
+
serializedName: "typeProperties.apiToken",
|
|
12560
|
+
type: {
|
|
12561
|
+
name: "Composite",
|
|
12562
|
+
className: "SecretBase"
|
|
12563
|
+
}
|
|
12564
|
+
}, encryptedCredential: {
|
|
12565
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
12566
|
+
type: {
|
|
12567
|
+
name: "any"
|
|
12568
|
+
}
|
|
12569
|
+
} })
|
|
12570
|
+
}
|
|
12571
|
+
};
|
|
12038
12572
|
const AmazonS3LinkedService = {
|
|
12039
12573
|
serializedName: "AmazonS3",
|
|
12040
12574
|
type: {
|
|
@@ -20434,6 +20968,34 @@ const ExecuteDataFlowActivity = {
|
|
|
20434
20968
|
} })
|
|
20435
20969
|
}
|
|
20436
20970
|
};
|
|
20971
|
+
const ScriptActivity = {
|
|
20972
|
+
serializedName: "Script",
|
|
20973
|
+
type: {
|
|
20974
|
+
name: "Composite",
|
|
20975
|
+
className: "ScriptActivity",
|
|
20976
|
+
uberParent: "Activity",
|
|
20977
|
+
additionalProperties: { type: { name: "Object" } },
|
|
20978
|
+
polymorphicDiscriminator: Activity.type.polymorphicDiscriminator,
|
|
20979
|
+
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { scripts: {
|
|
20980
|
+
serializedName: "typeProperties.scripts",
|
|
20981
|
+
type: {
|
|
20982
|
+
name: "Sequence",
|
|
20983
|
+
element: {
|
|
20984
|
+
type: {
|
|
20985
|
+
name: "Composite",
|
|
20986
|
+
className: "ScriptActivityScriptBlock"
|
|
20987
|
+
}
|
|
20988
|
+
}
|
|
20989
|
+
}
|
|
20990
|
+
}, logSettings: {
|
|
20991
|
+
serializedName: "typeProperties.logSettings",
|
|
20992
|
+
type: {
|
|
20993
|
+
name: "Composite",
|
|
20994
|
+
className: "ScriptActivityTypePropertiesLogSettings"
|
|
20995
|
+
}
|
|
20996
|
+
} })
|
|
20997
|
+
}
|
|
20998
|
+
};
|
|
20437
20999
|
const SynapseNotebookActivity = {
|
|
20438
21000
|
serializedName: "SynapseNotebook",
|
|
20439
21001
|
type: {
|
|
@@ -20448,8 +21010,14 @@ const SynapseNotebookActivity = {
|
|
|
20448
21010
|
name: "Composite",
|
|
20449
21011
|
className: "SynapseNotebookReference"
|
|
20450
21012
|
}
|
|
20451
|
-
},
|
|
20452
|
-
serializedName: "typeProperties.
|
|
21013
|
+
}, sparkPool: {
|
|
21014
|
+
serializedName: "typeProperties.sparkPool",
|
|
21015
|
+
type: {
|
|
21016
|
+
name: "Composite",
|
|
21017
|
+
className: "BigDataPoolParametrizationReference"
|
|
21018
|
+
}
|
|
21019
|
+
}, parameters: {
|
|
21020
|
+
serializedName: "typeProperties.parameters",
|
|
20453
21021
|
type: {
|
|
20454
21022
|
name: "Dictionary",
|
|
20455
21023
|
value: { type: { name: "Composite", className: "NotebookParameter" } }
|
|
@@ -20481,6 +21049,52 @@ const SynapseSparkJobDefinitionActivity = {
|
|
|
20481
21049
|
}
|
|
20482
21050
|
}
|
|
20483
21051
|
}
|
|
21052
|
+
}, file: {
|
|
21053
|
+
serializedName: "typeProperties.file",
|
|
21054
|
+
type: {
|
|
21055
|
+
name: "any"
|
|
21056
|
+
}
|
|
21057
|
+
}, className: {
|
|
21058
|
+
serializedName: "typeProperties.className",
|
|
21059
|
+
type: {
|
|
21060
|
+
name: "any"
|
|
21061
|
+
}
|
|
21062
|
+
}, files: {
|
|
21063
|
+
serializedName: "typeProperties.files",
|
|
21064
|
+
type: {
|
|
21065
|
+
name: "Sequence",
|
|
21066
|
+
element: {
|
|
21067
|
+
type: {
|
|
21068
|
+
name: "any"
|
|
21069
|
+
}
|
|
21070
|
+
}
|
|
21071
|
+
}
|
|
21072
|
+
}, targetBigDataPool: {
|
|
21073
|
+
serializedName: "typeProperties.targetBigDataPool",
|
|
21074
|
+
type: {
|
|
21075
|
+
name: "Composite",
|
|
21076
|
+
className: "BigDataPoolParametrizationReference"
|
|
21077
|
+
}
|
|
21078
|
+
}, executorSize: {
|
|
21079
|
+
serializedName: "typeProperties.executorSize",
|
|
21080
|
+
type: {
|
|
21081
|
+
name: "any"
|
|
21082
|
+
}
|
|
21083
|
+
}, conf: {
|
|
21084
|
+
serializedName: "typeProperties.conf",
|
|
21085
|
+
type: {
|
|
21086
|
+
name: "any"
|
|
21087
|
+
}
|
|
21088
|
+
}, driverSize: {
|
|
21089
|
+
serializedName: "typeProperties.driverSize",
|
|
21090
|
+
type: {
|
|
21091
|
+
name: "any"
|
|
21092
|
+
}
|
|
21093
|
+
}, numExecutors: {
|
|
21094
|
+
serializedName: "typeProperties.numExecutors",
|
|
21095
|
+
type: {
|
|
21096
|
+
name: "Number"
|
|
21097
|
+
}
|
|
20484
21098
|
} })
|
|
20485
21099
|
}
|
|
20486
21100
|
};
|
|
@@ -22251,6 +22865,10 @@ let discriminators = {
|
|
|
22251
22865
|
"LinkedService.SapEcc": SapEccLinkedService,
|
|
22252
22866
|
"LinkedService.SapOpenHub": SapOpenHubLinkedService,
|
|
22253
22867
|
"LinkedService.RestService": RestServiceLinkedService,
|
|
22868
|
+
"LinkedService.TeamDesk": TeamDeskLinkedService,
|
|
22869
|
+
"LinkedService.Quickbase": QuickbaseLinkedService,
|
|
22870
|
+
"LinkedService.Smartsheet": SmartsheetLinkedService,
|
|
22871
|
+
"LinkedService.Zendesk": ZendeskLinkedService,
|
|
22254
22872
|
"LinkedService.AmazonS3": AmazonS3LinkedService,
|
|
22255
22873
|
"LinkedService.AmazonRedshift": AmazonRedshiftLinkedService,
|
|
22256
22874
|
"LinkedService.CustomDataSource": CustomDataSourceLinkedService,
|
|
@@ -22477,6 +23095,7 @@ let discriminators = {
|
|
|
22477
23095
|
"Activity.DatabricksSparkPython": DatabricksSparkPythonActivity,
|
|
22478
23096
|
"Activity.AzureFunctionActivity": AzureFunctionActivity,
|
|
22479
23097
|
"Activity.ExecuteDataFlow": ExecuteDataFlowActivity,
|
|
23098
|
+
"Activity.Script": ScriptActivity,
|
|
22480
23099
|
"Activity.SynapseNotebook": SynapseNotebookActivity,
|
|
22481
23100
|
"Activity.SparkJob": SynapseSparkJobDefinitionActivity,
|
|
22482
23101
|
"Trigger.ScheduleTrigger": ScheduleTrigger,
|
|
@@ -22685,6 +23304,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22685
23304
|
SynapseNotebookReference: SynapseNotebookReference,
|
|
22686
23305
|
SynapseSparkJobReference: SynapseSparkJobReference,
|
|
22687
23306
|
SqlPoolReference: SqlPoolReference,
|
|
23307
|
+
BigDataPoolParametrizationReference: BigDataPoolParametrizationReference,
|
|
22688
23308
|
StartDataFlowDebugSessionRequest: StartDataFlowDebugSessionRequest,
|
|
22689
23309
|
StartDataFlowDebugSessionResponse: StartDataFlowDebugSessionResponse,
|
|
22690
23310
|
DataFlowDebugPreviewDataRequest: DataFlowDebugPreviewDataRequest,
|
|
@@ -22747,6 +23367,9 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22747
23367
|
SwitchCase: SwitchCase,
|
|
22748
23368
|
AzureMLWebServiceFile: AzureMLWebServiceFile,
|
|
22749
23369
|
ExecuteDataFlowActivityTypePropertiesCompute: ExecuteDataFlowActivityTypePropertiesCompute,
|
|
23370
|
+
ScriptActivityScriptBlock: ScriptActivityScriptBlock,
|
|
23371
|
+
ScriptActivityParameter: ScriptActivityParameter,
|
|
23372
|
+
ScriptActivityTypePropertiesLogSettings: ScriptActivityTypePropertiesLogSettings,
|
|
22750
23373
|
ScheduleTriggerRecurrence: ScheduleTriggerRecurrence,
|
|
22751
23374
|
RecurrenceSchedule: RecurrenceSchedule,
|
|
22752
23375
|
RecurrenceScheduleOccurrence: RecurrenceScheduleOccurrence,
|
|
@@ -22918,6 +23541,10 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22918
23541
|
SapEccLinkedService: SapEccLinkedService,
|
|
22919
23542
|
SapOpenHubLinkedService: SapOpenHubLinkedService,
|
|
22920
23543
|
RestServiceLinkedService: RestServiceLinkedService,
|
|
23544
|
+
TeamDeskLinkedService: TeamDeskLinkedService,
|
|
23545
|
+
QuickbaseLinkedService: QuickbaseLinkedService,
|
|
23546
|
+
SmartsheetLinkedService: SmartsheetLinkedService,
|
|
23547
|
+
ZendeskLinkedService: ZendeskLinkedService,
|
|
22921
23548
|
AmazonS3LinkedService: AmazonS3LinkedService,
|
|
22922
23549
|
AmazonRedshiftLinkedService: AmazonRedshiftLinkedService,
|
|
22923
23550
|
CustomDataSourceLinkedService: CustomDataSourceLinkedService,
|
|
@@ -23151,6 +23778,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
23151
23778
|
DatabricksSparkPythonActivity: DatabricksSparkPythonActivity,
|
|
23152
23779
|
AzureFunctionActivity: AzureFunctionActivity,
|
|
23153
23780
|
ExecuteDataFlowActivity: ExecuteDataFlowActivity,
|
|
23781
|
+
ScriptActivity: ScriptActivity,
|
|
23154
23782
|
SynapseNotebookActivity: SynapseNotebookActivity,
|
|
23155
23783
|
SynapseSparkJobDefinitionActivity: SynapseSparkJobDefinitionActivity,
|
|
23156
23784
|
ScheduleTrigger: ScheduleTrigger,
|
|
@@ -23811,7 +24439,7 @@ class KqlScriptsImpl {
|
|
|
23811
24439
|
}
|
|
23812
24440
|
catch (error) {
|
|
23813
24441
|
span.setStatus({
|
|
23814
|
-
code:
|
|
24442
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23815
24443
|
message: error.message
|
|
23816
24444
|
});
|
|
23817
24445
|
throw error;
|
|
@@ -23833,7 +24461,7 @@ class KqlScriptsImpl {
|
|
|
23833
24461
|
}
|
|
23834
24462
|
catch (error) {
|
|
23835
24463
|
span.setStatus({
|
|
23836
|
-
code:
|
|
24464
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23837
24465
|
message: error.message
|
|
23838
24466
|
});
|
|
23839
24467
|
throw error;
|
|
@@ -23844,7 +24472,7 @@ class KqlScriptsImpl {
|
|
|
23844
24472
|
}
|
|
23845
24473
|
}
|
|
23846
24474
|
// Operation Specifications
|
|
23847
|
-
const serializer =
|
|
24475
|
+
const serializer$l = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
23848
24476
|
const getAllOperationSpec = {
|
|
23849
24477
|
path: "/kqlScripts",
|
|
23850
24478
|
httpMethod: "GET",
|
|
@@ -23859,7 +24487,7 @@ const getAllOperationSpec = {
|
|
|
23859
24487
|
queryParameters: [apiVersion],
|
|
23860
24488
|
urlParameters: [endpoint],
|
|
23861
24489
|
headerParameters: [accept],
|
|
23862
|
-
serializer
|
|
24490
|
+
serializer: serializer$l
|
|
23863
24491
|
};
|
|
23864
24492
|
const getAllNextOperationSpec = {
|
|
23865
24493
|
path: "{nextLink}",
|
|
@@ -23875,7 +24503,7 @@ const getAllNextOperationSpec = {
|
|
|
23875
24503
|
queryParameters: [apiVersion],
|
|
23876
24504
|
urlParameters: [endpoint, nextLink],
|
|
23877
24505
|
headerParameters: [accept],
|
|
23878
|
-
serializer
|
|
24506
|
+
serializer: serializer$l
|
|
23879
24507
|
};
|
|
23880
24508
|
|
|
23881
24509
|
/*
|
|
@@ -23933,7 +24561,7 @@ class KqlScriptOperationsImpl {
|
|
|
23933
24561
|
}
|
|
23934
24562
|
catch (error) {
|
|
23935
24563
|
span.setStatus({
|
|
23936
|
-
code:
|
|
24564
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23937
24565
|
message: error.message
|
|
23938
24566
|
});
|
|
23939
24567
|
throw error;
|
|
@@ -23990,7 +24618,7 @@ class KqlScriptOperationsImpl {
|
|
|
23990
24618
|
}
|
|
23991
24619
|
catch (error) {
|
|
23992
24620
|
span.setStatus({
|
|
23993
|
-
code:
|
|
24621
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23994
24622
|
message: error.message
|
|
23995
24623
|
});
|
|
23996
24624
|
throw error;
|
|
@@ -24013,7 +24641,7 @@ class KqlScriptOperationsImpl {
|
|
|
24013
24641
|
}
|
|
24014
24642
|
catch (error) {
|
|
24015
24643
|
span.setStatus({
|
|
24016
|
-
code:
|
|
24644
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24017
24645
|
message: error.message
|
|
24018
24646
|
});
|
|
24019
24647
|
throw error;
|
|
@@ -24071,7 +24699,7 @@ class KqlScriptOperationsImpl {
|
|
|
24071
24699
|
}
|
|
24072
24700
|
catch (error) {
|
|
24073
24701
|
span.setStatus({
|
|
24074
|
-
code:
|
|
24702
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24075
24703
|
message: error.message
|
|
24076
24704
|
});
|
|
24077
24705
|
throw error;
|
|
@@ -24117,7 +24745,7 @@ class KqlScriptOperationsImpl {
|
|
|
24117
24745
|
}
|
|
24118
24746
|
}
|
|
24119
24747
|
// Operation Specifications
|
|
24120
|
-
const serializer$
|
|
24748
|
+
const serializer$k = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
24121
24749
|
const createOrUpdateOperationSpec = {
|
|
24122
24750
|
path: "/kqlScripts/{kqlScriptName}",
|
|
24123
24751
|
httpMethod: "PUT",
|
|
@@ -24143,7 +24771,7 @@ const createOrUpdateOperationSpec = {
|
|
|
24143
24771
|
urlParameters: [endpoint, kqlScriptName],
|
|
24144
24772
|
headerParameters: [accept, contentType],
|
|
24145
24773
|
mediaType: "json",
|
|
24146
|
-
serializer: serializer$
|
|
24774
|
+
serializer: serializer$k
|
|
24147
24775
|
};
|
|
24148
24776
|
const getByNameOperationSpec = {
|
|
24149
24777
|
path: "/kqlScripts/{kqlScriptName}",
|
|
@@ -24159,7 +24787,7 @@ const getByNameOperationSpec = {
|
|
|
24159
24787
|
queryParameters: [apiVersion],
|
|
24160
24788
|
urlParameters: [endpoint, kqlScriptName],
|
|
24161
24789
|
headerParameters: [accept],
|
|
24162
|
-
serializer: serializer$
|
|
24790
|
+
serializer: serializer$k
|
|
24163
24791
|
};
|
|
24164
24792
|
const deleteByNameOperationSpec = {
|
|
24165
24793
|
path: "/kqlScripts/{kqlScriptName}",
|
|
@@ -24176,7 +24804,7 @@ const deleteByNameOperationSpec = {
|
|
|
24176
24804
|
queryParameters: [apiVersion],
|
|
24177
24805
|
urlParameters: [endpoint, kqlScriptName],
|
|
24178
24806
|
headerParameters: [accept],
|
|
24179
|
-
serializer: serializer$
|
|
24807
|
+
serializer: serializer$k
|
|
24180
24808
|
};
|
|
24181
24809
|
const renameOperationSpec = {
|
|
24182
24810
|
path: "/kqlScripts/{kqlScriptName}/rename",
|
|
@@ -24195,7 +24823,7 @@ const renameOperationSpec = {
|
|
|
24195
24823
|
urlParameters: [endpoint, kqlScriptName],
|
|
24196
24824
|
headerParameters: [accept, contentType],
|
|
24197
24825
|
mediaType: "json",
|
|
24198
|
-
serializer: serializer$
|
|
24826
|
+
serializer: serializer$k
|
|
24199
24827
|
};
|
|
24200
24828
|
|
|
24201
24829
|
/*
|
|
@@ -24229,7 +24857,7 @@ class MetastoreImpl {
|
|
|
24229
24857
|
}
|
|
24230
24858
|
catch (error) {
|
|
24231
24859
|
span.setStatus({
|
|
24232
|
-
code:
|
|
24860
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24233
24861
|
message: error.message
|
|
24234
24862
|
});
|
|
24235
24863
|
throw error;
|
|
@@ -24251,7 +24879,7 @@ class MetastoreImpl {
|
|
|
24251
24879
|
}
|
|
24252
24880
|
catch (error) {
|
|
24253
24881
|
span.setStatus({
|
|
24254
|
-
code:
|
|
24882
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24255
24883
|
message: error.message
|
|
24256
24884
|
});
|
|
24257
24885
|
throw error;
|
|
@@ -24274,7 +24902,7 @@ class MetastoreImpl {
|
|
|
24274
24902
|
}
|
|
24275
24903
|
catch (error) {
|
|
24276
24904
|
span.setStatus({
|
|
24277
|
-
code:
|
|
24905
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24278
24906
|
message: error.message
|
|
24279
24907
|
});
|
|
24280
24908
|
throw error;
|
|
@@ -24291,12 +24919,12 @@ class MetastoreImpl {
|
|
|
24291
24919
|
async delete(id, options) {
|
|
24292
24920
|
const { span } = createSpan("ArtifactsClient-delete", options || {});
|
|
24293
24921
|
try {
|
|
24294
|
-
const result = await this.client.sendOperationRequest({ id, options }, deleteOperationSpec);
|
|
24922
|
+
const result = await this.client.sendOperationRequest({ id, options }, deleteOperationSpec$1);
|
|
24295
24923
|
return result;
|
|
24296
24924
|
}
|
|
24297
24925
|
catch (error) {
|
|
24298
24926
|
span.setStatus({
|
|
24299
|
-
code:
|
|
24927
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24300
24928
|
message: error.message
|
|
24301
24929
|
});
|
|
24302
24930
|
throw error;
|
|
@@ -24307,7 +24935,7 @@ class MetastoreImpl {
|
|
|
24307
24935
|
}
|
|
24308
24936
|
}
|
|
24309
24937
|
// Operation Specifications
|
|
24310
|
-
const serializer$
|
|
24938
|
+
const serializer$j = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
24311
24939
|
const registerOperationSpec = {
|
|
24312
24940
|
path: "/metastore/create-database-operations/{id}",
|
|
24313
24941
|
httpMethod: "PUT",
|
|
@@ -24324,7 +24952,7 @@ const registerOperationSpec = {
|
|
|
24324
24952
|
urlParameters: [endpoint, id],
|
|
24325
24953
|
headerParameters: [accept, contentType],
|
|
24326
24954
|
mediaType: "json",
|
|
24327
|
-
serializer: serializer$
|
|
24955
|
+
serializer: serializer$j
|
|
24328
24956
|
};
|
|
24329
24957
|
const getDatabaseOperationsOperationSpec = {
|
|
24330
24958
|
path: "/metastore/create-database-operations/{id}",
|
|
@@ -24340,7 +24968,7 @@ const getDatabaseOperationsOperationSpec = {
|
|
|
24340
24968
|
queryParameters: [apiVersion1],
|
|
24341
24969
|
urlParameters: [endpoint, id],
|
|
24342
24970
|
headerParameters: [accept],
|
|
24343
|
-
serializer: serializer$
|
|
24971
|
+
serializer: serializer$j
|
|
24344
24972
|
};
|
|
24345
24973
|
const updateOperationSpec = {
|
|
24346
24974
|
path: "/metastore/update-database-operations/{id}",
|
|
@@ -24358,9 +24986,9 @@ const updateOperationSpec = {
|
|
|
24358
24986
|
urlParameters: [endpoint, id],
|
|
24359
24987
|
headerParameters: [accept, contentType],
|
|
24360
24988
|
mediaType: "json",
|
|
24361
|
-
serializer: serializer$
|
|
24989
|
+
serializer: serializer$j
|
|
24362
24990
|
};
|
|
24363
|
-
const deleteOperationSpec = {
|
|
24991
|
+
const deleteOperationSpec$1 = {
|
|
24364
24992
|
path: "/metastore/databases/{id}",
|
|
24365
24993
|
httpMethod: "DELETE",
|
|
24366
24994
|
responses: {
|
|
@@ -24372,7 +25000,7 @@ const deleteOperationSpec = {
|
|
|
24372
25000
|
queryParameters: [apiVersion1],
|
|
24373
25001
|
urlParameters: [endpoint, id],
|
|
24374
25002
|
headerParameters: [accept],
|
|
24375
|
-
serializer: serializer$
|
|
25003
|
+
serializer: serializer$j
|
|
24376
25004
|
};
|
|
24377
25005
|
|
|
24378
25006
|
/*
|
|
@@ -24452,7 +25080,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24452
25080
|
}
|
|
24453
25081
|
catch (error) {
|
|
24454
25082
|
span.setStatus({
|
|
24455
|
-
code:
|
|
25083
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24456
25084
|
message: error.message
|
|
24457
25085
|
});
|
|
24458
25086
|
throw error;
|
|
@@ -24476,7 +25104,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24476
25104
|
}
|
|
24477
25105
|
catch (error) {
|
|
24478
25106
|
span.setStatus({
|
|
24479
|
-
code:
|
|
25107
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24480
25108
|
message: error.message
|
|
24481
25109
|
});
|
|
24482
25110
|
throw error;
|
|
@@ -24533,7 +25161,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24533
25161
|
}
|
|
24534
25162
|
catch (error) {
|
|
24535
25163
|
span.setStatus({
|
|
24536
|
-
code:
|
|
25164
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24537
25165
|
message: error.message
|
|
24538
25166
|
});
|
|
24539
25167
|
throw error;
|
|
@@ -24556,7 +25184,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24556
25184
|
}
|
|
24557
25185
|
catch (error) {
|
|
24558
25186
|
span.setStatus({
|
|
24559
|
-
code:
|
|
25187
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24560
25188
|
message: error.message
|
|
24561
25189
|
});
|
|
24562
25190
|
throw error;
|
|
@@ -24614,7 +25242,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24614
25242
|
}
|
|
24615
25243
|
catch (error) {
|
|
24616
25244
|
span.setStatus({
|
|
24617
|
-
code:
|
|
25245
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24618
25246
|
message: error.message
|
|
24619
25247
|
});
|
|
24620
25248
|
throw error;
|
|
@@ -24672,7 +25300,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24672
25300
|
}
|
|
24673
25301
|
catch (error) {
|
|
24674
25302
|
span.setStatus({
|
|
24675
|
-
code:
|
|
25303
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24676
25304
|
message: error.message
|
|
24677
25305
|
});
|
|
24678
25306
|
throw error;
|
|
@@ -24683,7 +25311,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24683
25311
|
}
|
|
24684
25312
|
}
|
|
24685
25313
|
// Operation Specifications
|
|
24686
|
-
const serializer$
|
|
25314
|
+
const serializer$i = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
24687
25315
|
const getSparkConfigurationsByWorkspaceOperationSpec = {
|
|
24688
25316
|
path: "/sparkconfigurations",
|
|
24689
25317
|
httpMethod: "GET",
|
|
@@ -24698,7 +25326,7 @@ const getSparkConfigurationsByWorkspaceOperationSpec = {
|
|
|
24698
25326
|
queryParameters: [apiVersion2],
|
|
24699
25327
|
urlParameters: [endpoint],
|
|
24700
25328
|
headerParameters: [accept],
|
|
24701
|
-
serializer: serializer$
|
|
25329
|
+
serializer: serializer$i
|
|
24702
25330
|
};
|
|
24703
25331
|
const createOrUpdateSparkConfigurationOperationSpec = {
|
|
24704
25332
|
path: "/sparkconfigurations/{sparkConfigurationName}",
|
|
@@ -24729,7 +25357,7 @@ const createOrUpdateSparkConfigurationOperationSpec = {
|
|
|
24729
25357
|
ifMatch
|
|
24730
25358
|
],
|
|
24731
25359
|
mediaType: "json",
|
|
24732
|
-
serializer: serializer$
|
|
25360
|
+
serializer: serializer$i
|
|
24733
25361
|
};
|
|
24734
25362
|
const getSparkConfigurationOperationSpec = {
|
|
24735
25363
|
path: "/sparkconfigurations/{sparkConfigurationName}",
|
|
@@ -24746,7 +25374,7 @@ const getSparkConfigurationOperationSpec = {
|
|
|
24746
25374
|
queryParameters: [apiVersion2],
|
|
24747
25375
|
urlParameters: [endpoint, sparkConfigurationName],
|
|
24748
25376
|
headerParameters: [accept, ifNoneMatch],
|
|
24749
|
-
serializer: serializer$
|
|
25377
|
+
serializer: serializer$i
|
|
24750
25378
|
};
|
|
24751
25379
|
const deleteSparkConfigurationOperationSpec = {
|
|
24752
25380
|
path: "/sparkconfigurations/{sparkConfigurationName}",
|
|
@@ -24763,7 +25391,7 @@ const deleteSparkConfigurationOperationSpec = {
|
|
|
24763
25391
|
queryParameters: [apiVersion2],
|
|
24764
25392
|
urlParameters: [endpoint, sparkConfigurationName],
|
|
24765
25393
|
headerParameters: [accept],
|
|
24766
|
-
serializer: serializer$
|
|
25394
|
+
serializer: serializer$i
|
|
24767
25395
|
};
|
|
24768
25396
|
const renameSparkConfigurationOperationSpec = {
|
|
24769
25397
|
path: "/sparkconfigurations/{sparkConfigurationName}/rename",
|
|
@@ -24782,7 +25410,7 @@ const renameSparkConfigurationOperationSpec = {
|
|
|
24782
25410
|
urlParameters: [endpoint, sparkConfigurationName],
|
|
24783
25411
|
headerParameters: [accept, contentType],
|
|
24784
25412
|
mediaType: "json",
|
|
24785
|
-
serializer: serializer$
|
|
25413
|
+
serializer: serializer$i
|
|
24786
25414
|
};
|
|
24787
25415
|
const getSparkConfigurationsByWorkspaceNextOperationSpec = {
|
|
24788
25416
|
path: "{nextLink}",
|
|
@@ -24798,7 +25426,7 @@ const getSparkConfigurationsByWorkspaceNextOperationSpec = {
|
|
|
24798
25426
|
queryParameters: [apiVersion2],
|
|
24799
25427
|
urlParameters: [endpoint, nextLink],
|
|
24800
25428
|
headerParameters: [accept],
|
|
24801
|
-
serializer: serializer$
|
|
25429
|
+
serializer: serializer$i
|
|
24802
25430
|
};
|
|
24803
25431
|
|
|
24804
25432
|
/*
|
|
@@ -24824,12 +25452,12 @@ class BigDataPoolsImpl {
|
|
|
24824
25452
|
async list(options) {
|
|
24825
25453
|
const { span } = createSpan("ArtifactsClient-list", options || {});
|
|
24826
25454
|
try {
|
|
24827
|
-
const result = await this.client.sendOperationRequest({ options }, listOperationSpec);
|
|
25455
|
+
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$3);
|
|
24828
25456
|
return result;
|
|
24829
25457
|
}
|
|
24830
25458
|
catch (error) {
|
|
24831
25459
|
span.setStatus({
|
|
24832
|
-
code:
|
|
25460
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24833
25461
|
message: error.message
|
|
24834
25462
|
});
|
|
24835
25463
|
throw error;
|
|
@@ -24846,12 +25474,12 @@ class BigDataPoolsImpl {
|
|
|
24846
25474
|
async get(bigDataPoolName, options) {
|
|
24847
25475
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
24848
25476
|
try {
|
|
24849
|
-
const result = await this.client.sendOperationRequest({ bigDataPoolName, options }, getOperationSpec);
|
|
25477
|
+
const result = await this.client.sendOperationRequest({ bigDataPoolName, options }, getOperationSpec$5);
|
|
24850
25478
|
return result;
|
|
24851
25479
|
}
|
|
24852
25480
|
catch (error) {
|
|
24853
25481
|
span.setStatus({
|
|
24854
|
-
code:
|
|
25482
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24855
25483
|
message: error.message
|
|
24856
25484
|
});
|
|
24857
25485
|
throw error;
|
|
@@ -24862,8 +25490,8 @@ class BigDataPoolsImpl {
|
|
|
24862
25490
|
}
|
|
24863
25491
|
}
|
|
24864
25492
|
// Operation Specifications
|
|
24865
|
-
const serializer$
|
|
24866
|
-
const listOperationSpec = {
|
|
25493
|
+
const serializer$h = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
25494
|
+
const listOperationSpec$3 = {
|
|
24867
25495
|
path: "/bigDataPools",
|
|
24868
25496
|
httpMethod: "GET",
|
|
24869
25497
|
responses: {
|
|
@@ -24877,9 +25505,9 @@ const listOperationSpec = {
|
|
|
24877
25505
|
queryParameters: [apiVersion3],
|
|
24878
25506
|
urlParameters: [endpoint],
|
|
24879
25507
|
headerParameters: [accept],
|
|
24880
|
-
serializer: serializer$
|
|
25508
|
+
serializer: serializer$h
|
|
24881
25509
|
};
|
|
24882
|
-
const getOperationSpec = {
|
|
25510
|
+
const getOperationSpec$5 = {
|
|
24883
25511
|
path: "/bigDataPools/{bigDataPoolName}",
|
|
24884
25512
|
httpMethod: "GET",
|
|
24885
25513
|
responses: {
|
|
@@ -24893,7 +25521,7 @@ const getOperationSpec = {
|
|
|
24893
25521
|
queryParameters: [apiVersion3],
|
|
24894
25522
|
urlParameters: [endpoint, bigDataPoolName],
|
|
24895
25523
|
headerParameters: [accept],
|
|
24896
|
-
serializer: serializer$
|
|
25524
|
+
serializer: serializer$h
|
|
24897
25525
|
};
|
|
24898
25526
|
|
|
24899
25527
|
/*
|
|
@@ -24976,7 +25604,7 @@ class DataFlowOperationsImpl {
|
|
|
24976
25604
|
}
|
|
24977
25605
|
catch (error) {
|
|
24978
25606
|
span.setStatus({
|
|
24979
|
-
code:
|
|
25607
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24980
25608
|
message: error.message
|
|
24981
25609
|
});
|
|
24982
25610
|
throw error;
|
|
@@ -25033,7 +25661,7 @@ class DataFlowOperationsImpl {
|
|
|
25033
25661
|
}
|
|
25034
25662
|
catch (error) {
|
|
25035
25663
|
span.setStatus({
|
|
25036
|
-
code:
|
|
25664
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25037
25665
|
message: error.message
|
|
25038
25666
|
});
|
|
25039
25667
|
throw error;
|
|
@@ -25056,7 +25684,7 @@ class DataFlowOperationsImpl {
|
|
|
25056
25684
|
}
|
|
25057
25685
|
catch (error) {
|
|
25058
25686
|
span.setStatus({
|
|
25059
|
-
code:
|
|
25687
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25060
25688
|
message: error.message
|
|
25061
25689
|
});
|
|
25062
25690
|
throw error;
|
|
@@ -25114,7 +25742,7 @@ class DataFlowOperationsImpl {
|
|
|
25114
25742
|
}
|
|
25115
25743
|
catch (error) {
|
|
25116
25744
|
span.setStatus({
|
|
25117
|
-
code:
|
|
25745
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25118
25746
|
message: error.message
|
|
25119
25747
|
});
|
|
25120
25748
|
throw error;
|
|
@@ -25170,7 +25798,7 @@ class DataFlowOperationsImpl {
|
|
|
25170
25798
|
}
|
|
25171
25799
|
catch (error) {
|
|
25172
25800
|
span.setStatus({
|
|
25173
|
-
code:
|
|
25801
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25174
25802
|
message: error.message
|
|
25175
25803
|
});
|
|
25176
25804
|
throw error;
|
|
@@ -25193,7 +25821,7 @@ class DataFlowOperationsImpl {
|
|
|
25193
25821
|
}
|
|
25194
25822
|
catch (error) {
|
|
25195
25823
|
span.setStatus({
|
|
25196
|
-
code:
|
|
25824
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25197
25825
|
message: error.message
|
|
25198
25826
|
});
|
|
25199
25827
|
throw error;
|
|
@@ -25204,7 +25832,7 @@ class DataFlowOperationsImpl {
|
|
|
25204
25832
|
}
|
|
25205
25833
|
}
|
|
25206
25834
|
// Operation Specifications
|
|
25207
|
-
const serializer$
|
|
25835
|
+
const serializer$g = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
25208
25836
|
const createOrUpdateDataFlowOperationSpec = {
|
|
25209
25837
|
path: "/dataflows/{dataFlowName}",
|
|
25210
25838
|
httpMethod: "PUT",
|
|
@@ -25234,7 +25862,7 @@ const createOrUpdateDataFlowOperationSpec = {
|
|
|
25234
25862
|
ifMatch
|
|
25235
25863
|
],
|
|
25236
25864
|
mediaType: "json",
|
|
25237
|
-
serializer: serializer$
|
|
25865
|
+
serializer: serializer$g
|
|
25238
25866
|
};
|
|
25239
25867
|
const getDataFlowOperationSpec = {
|
|
25240
25868
|
path: "/dataflows/{dataFlowName}",
|
|
@@ -25250,7 +25878,7 @@ const getDataFlowOperationSpec = {
|
|
|
25250
25878
|
queryParameters: [apiVersion3],
|
|
25251
25879
|
urlParameters: [endpoint, dataFlowName],
|
|
25252
25880
|
headerParameters: [accept, ifNoneMatch],
|
|
25253
|
-
serializer: serializer$
|
|
25881
|
+
serializer: serializer$g
|
|
25254
25882
|
};
|
|
25255
25883
|
const deleteDataFlowOperationSpec = {
|
|
25256
25884
|
path: "/dataflows/{dataFlowName}",
|
|
@@ -25267,7 +25895,7 @@ const deleteDataFlowOperationSpec = {
|
|
|
25267
25895
|
queryParameters: [apiVersion3],
|
|
25268
25896
|
urlParameters: [endpoint, dataFlowName],
|
|
25269
25897
|
headerParameters: [accept],
|
|
25270
|
-
serializer: serializer$
|
|
25898
|
+
serializer: serializer$g
|
|
25271
25899
|
};
|
|
25272
25900
|
const renameDataFlowOperationSpec = {
|
|
25273
25901
|
path: "/dataflows/{dataFlowName}/rename",
|
|
@@ -25286,7 +25914,7 @@ const renameDataFlowOperationSpec = {
|
|
|
25286
25914
|
urlParameters: [endpoint, dataFlowName],
|
|
25287
25915
|
headerParameters: [accept, contentType],
|
|
25288
25916
|
mediaType: "json",
|
|
25289
|
-
serializer: serializer$
|
|
25917
|
+
serializer: serializer$g
|
|
25290
25918
|
};
|
|
25291
25919
|
const getDataFlowsByWorkspaceOperationSpec = {
|
|
25292
25920
|
path: "/dataflows",
|
|
@@ -25302,7 +25930,7 @@ const getDataFlowsByWorkspaceOperationSpec = {
|
|
|
25302
25930
|
queryParameters: [apiVersion3],
|
|
25303
25931
|
urlParameters: [endpoint],
|
|
25304
25932
|
headerParameters: [accept],
|
|
25305
|
-
serializer: serializer$
|
|
25933
|
+
serializer: serializer$g
|
|
25306
25934
|
};
|
|
25307
25935
|
const getDataFlowsByWorkspaceNextOperationSpec = {
|
|
25308
25936
|
path: "{nextLink}",
|
|
@@ -25318,7 +25946,7 @@ const getDataFlowsByWorkspaceNextOperationSpec = {
|
|
|
25318
25946
|
queryParameters: [apiVersion3],
|
|
25319
25947
|
urlParameters: [endpoint, nextLink],
|
|
25320
25948
|
headerParameters: [accept],
|
|
25321
|
-
serializer: serializer$
|
|
25949
|
+
serializer: serializer$g
|
|
25322
25950
|
};
|
|
25323
25951
|
|
|
25324
25952
|
/*
|
|
@@ -25400,7 +26028,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25400
26028
|
}
|
|
25401
26029
|
catch (error) {
|
|
25402
26030
|
span.setStatus({
|
|
25403
|
-
code:
|
|
26031
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25404
26032
|
message: error.message
|
|
25405
26033
|
});
|
|
25406
26034
|
throw error;
|
|
@@ -25455,7 +26083,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25455
26083
|
}
|
|
25456
26084
|
catch (error) {
|
|
25457
26085
|
span.setStatus({
|
|
25458
|
-
code:
|
|
26086
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25459
26087
|
message: error.message
|
|
25460
26088
|
});
|
|
25461
26089
|
throw error;
|
|
@@ -25477,7 +26105,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25477
26105
|
}
|
|
25478
26106
|
catch (error) {
|
|
25479
26107
|
span.setStatus({
|
|
25480
|
-
code:
|
|
26108
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25481
26109
|
message: error.message
|
|
25482
26110
|
});
|
|
25483
26111
|
throw error;
|
|
@@ -25499,7 +26127,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25499
26127
|
}
|
|
25500
26128
|
catch (error) {
|
|
25501
26129
|
span.setStatus({
|
|
25502
|
-
code:
|
|
26130
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25503
26131
|
message: error.message
|
|
25504
26132
|
});
|
|
25505
26133
|
throw error;
|
|
@@ -25522,7 +26150,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25522
26150
|
}
|
|
25523
26151
|
catch (error) {
|
|
25524
26152
|
span.setStatus({
|
|
25525
|
-
code:
|
|
26153
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25526
26154
|
message: error.message
|
|
25527
26155
|
});
|
|
25528
26156
|
throw error;
|
|
@@ -25579,7 +26207,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25579
26207
|
}
|
|
25580
26208
|
catch (error) {
|
|
25581
26209
|
span.setStatus({
|
|
25582
|
-
code:
|
|
26210
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25583
26211
|
message: error.message
|
|
25584
26212
|
});
|
|
25585
26213
|
throw error;
|
|
@@ -25590,7 +26218,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25590
26218
|
}
|
|
25591
26219
|
}
|
|
25592
26220
|
// Operation Specifications
|
|
25593
|
-
const serializer$
|
|
26221
|
+
const serializer$f = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
25594
26222
|
const createDataFlowDebugSessionOperationSpec = {
|
|
25595
26223
|
path: "/createDataFlowDebugSession",
|
|
25596
26224
|
httpMethod: "POST",
|
|
@@ -25616,7 +26244,7 @@ const createDataFlowDebugSessionOperationSpec = {
|
|
|
25616
26244
|
urlParameters: [endpoint],
|
|
25617
26245
|
headerParameters: [accept, contentType],
|
|
25618
26246
|
mediaType: "json",
|
|
25619
|
-
serializer: serializer$
|
|
26247
|
+
serializer: serializer$f
|
|
25620
26248
|
};
|
|
25621
26249
|
const queryDataFlowDebugSessionsByWorkspaceOperationSpec = {
|
|
25622
26250
|
path: "/queryDataFlowDebugSessions",
|
|
@@ -25632,7 +26260,7 @@ const queryDataFlowDebugSessionsByWorkspaceOperationSpec = {
|
|
|
25632
26260
|
queryParameters: [apiVersion3],
|
|
25633
26261
|
urlParameters: [endpoint],
|
|
25634
26262
|
headerParameters: [accept],
|
|
25635
|
-
serializer: serializer$
|
|
26263
|
+
serializer: serializer$f
|
|
25636
26264
|
};
|
|
25637
26265
|
const addDataFlowOperationSpec = {
|
|
25638
26266
|
path: "/addDataFlowToDebugSession",
|
|
@@ -25650,7 +26278,7 @@ const addDataFlowOperationSpec = {
|
|
|
25650
26278
|
urlParameters: [endpoint],
|
|
25651
26279
|
headerParameters: [accept, contentType],
|
|
25652
26280
|
mediaType: "json",
|
|
25653
|
-
serializer: serializer$
|
|
26281
|
+
serializer: serializer$f
|
|
25654
26282
|
};
|
|
25655
26283
|
const deleteDataFlowDebugSessionOperationSpec = {
|
|
25656
26284
|
path: "/deleteDataFlowDebugSession",
|
|
@@ -25666,7 +26294,7 @@ const deleteDataFlowDebugSessionOperationSpec = {
|
|
|
25666
26294
|
urlParameters: [endpoint],
|
|
25667
26295
|
headerParameters: [accept, contentType],
|
|
25668
26296
|
mediaType: "json",
|
|
25669
|
-
serializer: serializer$
|
|
26297
|
+
serializer: serializer$f
|
|
25670
26298
|
};
|
|
25671
26299
|
const executeCommandOperationSpec = {
|
|
25672
26300
|
path: "/executeDataFlowDebugCommand",
|
|
@@ -25693,7 +26321,7 @@ const executeCommandOperationSpec = {
|
|
|
25693
26321
|
urlParameters: [endpoint],
|
|
25694
26322
|
headerParameters: [accept, contentType],
|
|
25695
26323
|
mediaType: "json",
|
|
25696
|
-
serializer: serializer$
|
|
26324
|
+
serializer: serializer$f
|
|
25697
26325
|
};
|
|
25698
26326
|
const queryDataFlowDebugSessionsByWorkspaceNextOperationSpec = {
|
|
25699
26327
|
path: "{nextLink}",
|
|
@@ -25709,7 +26337,7 @@ const queryDataFlowDebugSessionsByWorkspaceNextOperationSpec = {
|
|
|
25709
26337
|
queryParameters: [apiVersion3],
|
|
25710
26338
|
urlParameters: [endpoint, nextLink],
|
|
25711
26339
|
headerParameters: [accept],
|
|
25712
|
-
serializer: serializer$
|
|
26340
|
+
serializer: serializer$f
|
|
25713
26341
|
};
|
|
25714
26342
|
|
|
25715
26343
|
/*
|
|
@@ -25789,7 +26417,7 @@ class DatasetOperationsImpl {
|
|
|
25789
26417
|
}
|
|
25790
26418
|
catch (error) {
|
|
25791
26419
|
span.setStatus({
|
|
25792
|
-
code:
|
|
26420
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25793
26421
|
message: error.message
|
|
25794
26422
|
});
|
|
25795
26423
|
throw error;
|
|
@@ -25813,7 +26441,7 @@ class DatasetOperationsImpl {
|
|
|
25813
26441
|
}
|
|
25814
26442
|
catch (error) {
|
|
25815
26443
|
span.setStatus({
|
|
25816
|
-
code:
|
|
26444
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25817
26445
|
message: error.message
|
|
25818
26446
|
});
|
|
25819
26447
|
throw error;
|
|
@@ -25870,7 +26498,7 @@ class DatasetOperationsImpl {
|
|
|
25870
26498
|
}
|
|
25871
26499
|
catch (error) {
|
|
25872
26500
|
span.setStatus({
|
|
25873
|
-
code:
|
|
26501
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25874
26502
|
message: error.message
|
|
25875
26503
|
});
|
|
25876
26504
|
throw error;
|
|
@@ -25893,7 +26521,7 @@ class DatasetOperationsImpl {
|
|
|
25893
26521
|
}
|
|
25894
26522
|
catch (error) {
|
|
25895
26523
|
span.setStatus({
|
|
25896
|
-
code:
|
|
26524
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25897
26525
|
message: error.message
|
|
25898
26526
|
});
|
|
25899
26527
|
throw error;
|
|
@@ -25951,7 +26579,7 @@ class DatasetOperationsImpl {
|
|
|
25951
26579
|
}
|
|
25952
26580
|
catch (error) {
|
|
25953
26581
|
span.setStatus({
|
|
25954
|
-
code:
|
|
26582
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25955
26583
|
message: error.message
|
|
25956
26584
|
});
|
|
25957
26585
|
throw error;
|
|
@@ -26008,7 +26636,7 @@ class DatasetOperationsImpl {
|
|
|
26008
26636
|
}
|
|
26009
26637
|
catch (error) {
|
|
26010
26638
|
span.setStatus({
|
|
26011
|
-
code:
|
|
26639
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26012
26640
|
message: error.message
|
|
26013
26641
|
});
|
|
26014
26642
|
throw error;
|
|
@@ -26019,7 +26647,7 @@ class DatasetOperationsImpl {
|
|
|
26019
26647
|
}
|
|
26020
26648
|
}
|
|
26021
26649
|
// Operation Specifications
|
|
26022
|
-
const serializer$
|
|
26650
|
+
const serializer$e = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
26023
26651
|
const getDatasetsByWorkspaceOperationSpec = {
|
|
26024
26652
|
path: "/datasets",
|
|
26025
26653
|
httpMethod: "GET",
|
|
@@ -26034,7 +26662,7 @@ const getDatasetsByWorkspaceOperationSpec = {
|
|
|
26034
26662
|
queryParameters: [apiVersion3],
|
|
26035
26663
|
urlParameters: [endpoint],
|
|
26036
26664
|
headerParameters: [accept],
|
|
26037
|
-
serializer: serializer$
|
|
26665
|
+
serializer: serializer$e
|
|
26038
26666
|
};
|
|
26039
26667
|
const createOrUpdateDatasetOperationSpec = {
|
|
26040
26668
|
path: "/datasets/{datasetName}",
|
|
@@ -26065,7 +26693,7 @@ const createOrUpdateDatasetOperationSpec = {
|
|
|
26065
26693
|
ifMatch
|
|
26066
26694
|
],
|
|
26067
26695
|
mediaType: "json",
|
|
26068
|
-
serializer: serializer$
|
|
26696
|
+
serializer: serializer$e
|
|
26069
26697
|
};
|
|
26070
26698
|
const getDatasetOperationSpec = {
|
|
26071
26699
|
path: "/datasets/{datasetName}",
|
|
@@ -26082,7 +26710,7 @@ const getDatasetOperationSpec = {
|
|
|
26082
26710
|
queryParameters: [apiVersion3],
|
|
26083
26711
|
urlParameters: [endpoint, datasetName],
|
|
26084
26712
|
headerParameters: [accept, ifNoneMatch],
|
|
26085
|
-
serializer: serializer$
|
|
26713
|
+
serializer: serializer$e
|
|
26086
26714
|
};
|
|
26087
26715
|
const deleteDatasetOperationSpec = {
|
|
26088
26716
|
path: "/datasets/{datasetName}",
|
|
@@ -26099,7 +26727,7 @@ const deleteDatasetOperationSpec = {
|
|
|
26099
26727
|
queryParameters: [apiVersion3],
|
|
26100
26728
|
urlParameters: [endpoint, datasetName],
|
|
26101
26729
|
headerParameters: [accept],
|
|
26102
|
-
serializer: serializer$
|
|
26730
|
+
serializer: serializer$e
|
|
26103
26731
|
};
|
|
26104
26732
|
const renameDatasetOperationSpec = {
|
|
26105
26733
|
path: "/datasets/{datasetName}/rename",
|
|
@@ -26118,7 +26746,7 @@ const renameDatasetOperationSpec = {
|
|
|
26118
26746
|
urlParameters: [endpoint, datasetName],
|
|
26119
26747
|
headerParameters: [accept, contentType],
|
|
26120
26748
|
mediaType: "json",
|
|
26121
|
-
serializer: serializer$
|
|
26749
|
+
serializer: serializer$e
|
|
26122
26750
|
};
|
|
26123
26751
|
const getDatasetsByWorkspaceNextOperationSpec = {
|
|
26124
26752
|
path: "{nextLink}",
|
|
@@ -26134,7 +26762,7 @@ const getDatasetsByWorkspaceNextOperationSpec = {
|
|
|
26134
26762
|
queryParameters: [apiVersion3],
|
|
26135
26763
|
urlParameters: [endpoint, nextLink],
|
|
26136
26764
|
headerParameters: [accept],
|
|
26137
|
-
serializer: serializer$
|
|
26765
|
+
serializer: serializer$e
|
|
26138
26766
|
};
|
|
26139
26767
|
|
|
26140
26768
|
/*
|
|
@@ -26166,7 +26794,7 @@ class WorkspaceGitRepoManagementImpl {
|
|
|
26166
26794
|
}
|
|
26167
26795
|
catch (error) {
|
|
26168
26796
|
span.setStatus({
|
|
26169
|
-
code:
|
|
26797
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26170
26798
|
message: error.message
|
|
26171
26799
|
});
|
|
26172
26800
|
throw error;
|
|
@@ -26177,7 +26805,7 @@ class WorkspaceGitRepoManagementImpl {
|
|
|
26177
26805
|
}
|
|
26178
26806
|
}
|
|
26179
26807
|
// Operation Specifications
|
|
26180
|
-
const serializer$
|
|
26808
|
+
const serializer$d = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
26181
26809
|
const getGitHubAccessTokenOperationSpec = {
|
|
26182
26810
|
path: "/getGitHubAccessToken",
|
|
26183
26811
|
httpMethod: "POST",
|
|
@@ -26195,7 +26823,7 @@ const getGitHubAccessTokenOperationSpec = {
|
|
|
26195
26823
|
clientRequestId
|
|
26196
26824
|
],
|
|
26197
26825
|
mediaType: "json",
|
|
26198
|
-
serializer: serializer$
|
|
26826
|
+
serializer: serializer$d
|
|
26199
26827
|
};
|
|
26200
26828
|
|
|
26201
26829
|
/*
|
|
@@ -26221,12 +26849,12 @@ class IntegrationRuntimesImpl {
|
|
|
26221
26849
|
async list(options) {
|
|
26222
26850
|
const { span } = createSpan("ArtifactsClient-list", options || {});
|
|
26223
26851
|
try {
|
|
26224
|
-
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$
|
|
26852
|
+
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$2);
|
|
26225
26853
|
return result;
|
|
26226
26854
|
}
|
|
26227
26855
|
catch (error) {
|
|
26228
26856
|
span.setStatus({
|
|
26229
|
-
code:
|
|
26857
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26230
26858
|
message: error.message
|
|
26231
26859
|
});
|
|
26232
26860
|
throw error;
|
|
@@ -26243,12 +26871,12 @@ class IntegrationRuntimesImpl {
|
|
|
26243
26871
|
async get(integrationRuntimeName, options) {
|
|
26244
26872
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
26245
26873
|
try {
|
|
26246
|
-
const result = await this.client.sendOperationRequest({ integrationRuntimeName, options }, getOperationSpec$
|
|
26874
|
+
const result = await this.client.sendOperationRequest({ integrationRuntimeName, options }, getOperationSpec$4);
|
|
26247
26875
|
return result;
|
|
26248
26876
|
}
|
|
26249
26877
|
catch (error) {
|
|
26250
26878
|
span.setStatus({
|
|
26251
|
-
code:
|
|
26879
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26252
26880
|
message: error.message
|
|
26253
26881
|
});
|
|
26254
26882
|
throw error;
|
|
@@ -26259,8 +26887,8 @@ class IntegrationRuntimesImpl {
|
|
|
26259
26887
|
}
|
|
26260
26888
|
}
|
|
26261
26889
|
// Operation Specifications
|
|
26262
|
-
const serializer$
|
|
26263
|
-
const listOperationSpec$
|
|
26890
|
+
const serializer$c = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
26891
|
+
const listOperationSpec$2 = {
|
|
26264
26892
|
path: "/integrationRuntimes",
|
|
26265
26893
|
httpMethod: "GET",
|
|
26266
26894
|
responses: {
|
|
@@ -26274,9 +26902,9 @@ const listOperationSpec$1 = {
|
|
|
26274
26902
|
queryParameters: [apiVersion3],
|
|
26275
26903
|
urlParameters: [endpoint],
|
|
26276
26904
|
headerParameters: [accept],
|
|
26277
|
-
serializer: serializer$
|
|
26905
|
+
serializer: serializer$c
|
|
26278
26906
|
};
|
|
26279
|
-
const getOperationSpec$
|
|
26907
|
+
const getOperationSpec$4 = {
|
|
26280
26908
|
path: "/integrationRuntimes/{integrationRuntimeName}",
|
|
26281
26909
|
httpMethod: "GET",
|
|
26282
26910
|
responses: {
|
|
@@ -26290,7 +26918,7 @@ const getOperationSpec$1 = {
|
|
|
26290
26918
|
queryParameters: [apiVersion3],
|
|
26291
26919
|
urlParameters: [endpoint, integrationRuntimeName],
|
|
26292
26920
|
headerParameters: [accept],
|
|
26293
|
-
serializer: serializer$
|
|
26921
|
+
serializer: serializer$c
|
|
26294
26922
|
};
|
|
26295
26923
|
|
|
26296
26924
|
/*
|
|
@@ -26365,12 +26993,12 @@ class LibraryImpl {
|
|
|
26365
26993
|
async _list(options) {
|
|
26366
26994
|
const { span } = createSpan("ArtifactsClient-_list", options || {});
|
|
26367
26995
|
try {
|
|
26368
|
-
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$
|
|
26996
|
+
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$1);
|
|
26369
26997
|
return result;
|
|
26370
26998
|
}
|
|
26371
26999
|
catch (error) {
|
|
26372
27000
|
span.setStatus({
|
|
26373
|
-
code:
|
|
27001
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26374
27002
|
message: error.message
|
|
26375
27003
|
});
|
|
26376
27004
|
throw error;
|
|
@@ -26394,7 +27022,7 @@ class LibraryImpl {
|
|
|
26394
27022
|
}
|
|
26395
27023
|
catch (error) {
|
|
26396
27024
|
span.setStatus({
|
|
26397
|
-
code:
|
|
27025
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26398
27026
|
message: error.message
|
|
26399
27027
|
});
|
|
26400
27028
|
throw error;
|
|
@@ -26451,7 +27079,7 @@ class LibraryImpl {
|
|
|
26451
27079
|
}
|
|
26452
27080
|
catch (error) {
|
|
26453
27081
|
span.setStatus({
|
|
26454
|
-
code:
|
|
27082
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26455
27083
|
message: error.message
|
|
26456
27084
|
});
|
|
26457
27085
|
throw error;
|
|
@@ -26475,7 +27103,7 @@ class LibraryImpl {
|
|
|
26475
27103
|
}
|
|
26476
27104
|
catch (error) {
|
|
26477
27105
|
span.setStatus({
|
|
26478
|
-
code:
|
|
27106
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26479
27107
|
message: error.message
|
|
26480
27108
|
});
|
|
26481
27109
|
throw error;
|
|
@@ -26503,7 +27131,7 @@ class LibraryImpl {
|
|
|
26503
27131
|
}
|
|
26504
27132
|
};
|
|
26505
27133
|
};
|
|
26506
|
-
const lro = new LroImpl(sendOperation, { libraryName, options }, deleteOperationSpec
|
|
27134
|
+
const lro = new LroImpl(sendOperation, { libraryName, options }, deleteOperationSpec);
|
|
26507
27135
|
return new coreLro.LroEngine(lro, {
|
|
26508
27136
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
26509
27137
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -26528,12 +27156,12 @@ class LibraryImpl {
|
|
|
26528
27156
|
async get(libraryName, options) {
|
|
26529
27157
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
26530
27158
|
try {
|
|
26531
|
-
const result = await this.client.sendOperationRequest({ libraryName, options }, getOperationSpec$
|
|
27159
|
+
const result = await this.client.sendOperationRequest({ libraryName, options }, getOperationSpec$3);
|
|
26532
27160
|
return result;
|
|
26533
27161
|
}
|
|
26534
27162
|
catch (error) {
|
|
26535
27163
|
span.setStatus({
|
|
26536
|
-
code:
|
|
27164
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26537
27165
|
message: error.message
|
|
26538
27166
|
});
|
|
26539
27167
|
throw error;
|
|
@@ -26557,7 +27185,7 @@ class LibraryImpl {
|
|
|
26557
27185
|
}
|
|
26558
27186
|
catch (error) {
|
|
26559
27187
|
span.setStatus({
|
|
26560
|
-
code:
|
|
27188
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26561
27189
|
message: error.message
|
|
26562
27190
|
});
|
|
26563
27191
|
throw error;
|
|
@@ -26617,7 +27245,7 @@ class LibraryImpl {
|
|
|
26617
27245
|
}
|
|
26618
27246
|
catch (error) {
|
|
26619
27247
|
span.setStatus({
|
|
26620
|
-
code:
|
|
27248
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26621
27249
|
message: error.message
|
|
26622
27250
|
});
|
|
26623
27251
|
throw error;
|
|
@@ -26639,7 +27267,7 @@ class LibraryImpl {
|
|
|
26639
27267
|
}
|
|
26640
27268
|
catch (error) {
|
|
26641
27269
|
span.setStatus({
|
|
26642
|
-
code:
|
|
27270
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26643
27271
|
message: error.message
|
|
26644
27272
|
});
|
|
26645
27273
|
throw error;
|
|
@@ -26650,8 +27278,8 @@ class LibraryImpl {
|
|
|
26650
27278
|
}
|
|
26651
27279
|
}
|
|
26652
27280
|
// Operation Specifications
|
|
26653
|
-
const serializer$
|
|
26654
|
-
const listOperationSpec$
|
|
27281
|
+
const serializer$b = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
27282
|
+
const listOperationSpec$1 = {
|
|
26655
27283
|
path: "/libraries",
|
|
26656
27284
|
httpMethod: "GET",
|
|
26657
27285
|
responses: {
|
|
@@ -26665,7 +27293,7 @@ const listOperationSpec$2 = {
|
|
|
26665
27293
|
queryParameters: [apiVersion3],
|
|
26666
27294
|
urlParameters: [endpoint],
|
|
26667
27295
|
headerParameters: [accept],
|
|
26668
|
-
serializer: serializer$
|
|
27296
|
+
serializer: serializer$b
|
|
26669
27297
|
};
|
|
26670
27298
|
const flushOperationSpec = {
|
|
26671
27299
|
path: "/libraries/{libraryName}/flush",
|
|
@@ -26682,7 +27310,7 @@ const flushOperationSpec = {
|
|
|
26682
27310
|
queryParameters: [apiVersion3],
|
|
26683
27311
|
urlParameters: [endpoint, libraryName],
|
|
26684
27312
|
headerParameters: [accept],
|
|
26685
|
-
serializer: serializer$
|
|
27313
|
+
serializer: serializer$b
|
|
26686
27314
|
};
|
|
26687
27315
|
const getOperationResultOperationSpec = {
|
|
26688
27316
|
path: "/libraryOperationResults/{operationId}",
|
|
@@ -26701,9 +27329,9 @@ const getOperationResultOperationSpec = {
|
|
|
26701
27329
|
queryParameters: [apiVersion3],
|
|
26702
27330
|
urlParameters: [endpoint, operationId],
|
|
26703
27331
|
headerParameters: [accept],
|
|
26704
|
-
serializer: serializer$
|
|
27332
|
+
serializer: serializer$b
|
|
26705
27333
|
};
|
|
26706
|
-
const deleteOperationSpec
|
|
27334
|
+
const deleteOperationSpec = {
|
|
26707
27335
|
path: "/libraries/{libraryName}",
|
|
26708
27336
|
httpMethod: "DELETE",
|
|
26709
27337
|
responses: {
|
|
@@ -26718,9 +27346,9 @@ const deleteOperationSpec$1 = {
|
|
|
26718
27346
|
queryParameters: [apiVersion3],
|
|
26719
27347
|
urlParameters: [endpoint, libraryName],
|
|
26720
27348
|
headerParameters: [accept],
|
|
26721
|
-
serializer: serializer$
|
|
27349
|
+
serializer: serializer$b
|
|
26722
27350
|
};
|
|
26723
|
-
const getOperationSpec$
|
|
27351
|
+
const getOperationSpec$3 = {
|
|
26724
27352
|
path: "/libraries/{libraryName}",
|
|
26725
27353
|
httpMethod: "GET",
|
|
26726
27354
|
responses: {
|
|
@@ -26735,7 +27363,7 @@ const getOperationSpec$2 = {
|
|
|
26735
27363
|
queryParameters: [apiVersion3],
|
|
26736
27364
|
urlParameters: [endpoint, libraryName],
|
|
26737
27365
|
headerParameters: [accept],
|
|
26738
|
-
serializer: serializer$
|
|
27366
|
+
serializer: serializer$b
|
|
26739
27367
|
};
|
|
26740
27368
|
const createOperationSpec = {
|
|
26741
27369
|
path: "/libraries/{libraryName}",
|
|
@@ -26752,7 +27380,7 @@ const createOperationSpec = {
|
|
|
26752
27380
|
queryParameters: [apiVersion3],
|
|
26753
27381
|
urlParameters: [endpoint, libraryName],
|
|
26754
27382
|
headerParameters: [accept],
|
|
26755
|
-
serializer: serializer$
|
|
27383
|
+
serializer: serializer$b
|
|
26756
27384
|
};
|
|
26757
27385
|
const appendOperationSpec = {
|
|
26758
27386
|
path: "/libraries/{libraryName}",
|
|
@@ -26772,7 +27400,7 @@ const appendOperationSpec = {
|
|
|
26772
27400
|
blobConditionAppendPosition
|
|
26773
27401
|
],
|
|
26774
27402
|
mediaType: "binary",
|
|
26775
|
-
serializer: serializer$
|
|
27403
|
+
serializer: serializer$b
|
|
26776
27404
|
};
|
|
26777
27405
|
const listNextOperationSpec = {
|
|
26778
27406
|
path: "{nextLink}",
|
|
@@ -26788,7 +27416,7 @@ const listNextOperationSpec = {
|
|
|
26788
27416
|
queryParameters: [apiVersion3],
|
|
26789
27417
|
urlParameters: [endpoint, nextLink],
|
|
26790
27418
|
headerParameters: [accept],
|
|
26791
|
-
serializer: serializer$
|
|
27419
|
+
serializer: serializer$b
|
|
26792
27420
|
};
|
|
26793
27421
|
|
|
26794
27422
|
/*
|
|
@@ -26868,7 +27496,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26868
27496
|
}
|
|
26869
27497
|
catch (error) {
|
|
26870
27498
|
span.setStatus({
|
|
26871
|
-
code:
|
|
27499
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26872
27500
|
message: error.message
|
|
26873
27501
|
});
|
|
26874
27502
|
throw error;
|
|
@@ -26892,7 +27520,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26892
27520
|
}
|
|
26893
27521
|
catch (error) {
|
|
26894
27522
|
span.setStatus({
|
|
26895
|
-
code:
|
|
27523
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26896
27524
|
message: error.message
|
|
26897
27525
|
});
|
|
26898
27526
|
throw error;
|
|
@@ -26949,7 +27577,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26949
27577
|
}
|
|
26950
27578
|
catch (error) {
|
|
26951
27579
|
span.setStatus({
|
|
26952
|
-
code:
|
|
27580
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26953
27581
|
message: error.message
|
|
26954
27582
|
});
|
|
26955
27583
|
throw error;
|
|
@@ -26972,7 +27600,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26972
27600
|
}
|
|
26973
27601
|
catch (error) {
|
|
26974
27602
|
span.setStatus({
|
|
26975
|
-
code:
|
|
27603
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26976
27604
|
message: error.message
|
|
26977
27605
|
});
|
|
26978
27606
|
throw error;
|
|
@@ -27030,7 +27658,7 @@ class LinkedServiceOperationsImpl {
|
|
|
27030
27658
|
}
|
|
27031
27659
|
catch (error) {
|
|
27032
27660
|
span.setStatus({
|
|
27033
|
-
code:
|
|
27661
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27034
27662
|
message: error.message
|
|
27035
27663
|
});
|
|
27036
27664
|
throw error;
|
|
@@ -27088,7 +27716,7 @@ class LinkedServiceOperationsImpl {
|
|
|
27088
27716
|
}
|
|
27089
27717
|
catch (error) {
|
|
27090
27718
|
span.setStatus({
|
|
27091
|
-
code:
|
|
27719
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27092
27720
|
message: error.message
|
|
27093
27721
|
});
|
|
27094
27722
|
throw error;
|
|
@@ -27099,7 +27727,7 @@ class LinkedServiceOperationsImpl {
|
|
|
27099
27727
|
}
|
|
27100
27728
|
}
|
|
27101
27729
|
// Operation Specifications
|
|
27102
|
-
const serializer$
|
|
27730
|
+
const serializer$a = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
27103
27731
|
const getLinkedServicesByWorkspaceOperationSpec = {
|
|
27104
27732
|
path: "/linkedservices",
|
|
27105
27733
|
httpMethod: "GET",
|
|
@@ -27114,7 +27742,7 @@ const getLinkedServicesByWorkspaceOperationSpec = {
|
|
|
27114
27742
|
queryParameters: [apiVersion3],
|
|
27115
27743
|
urlParameters: [endpoint],
|
|
27116
27744
|
headerParameters: [accept],
|
|
27117
|
-
serializer: serializer$
|
|
27745
|
+
serializer: serializer$a
|
|
27118
27746
|
};
|
|
27119
27747
|
const createOrUpdateLinkedServiceOperationSpec = {
|
|
27120
27748
|
path: "/linkedservices/{linkedServiceName}",
|
|
@@ -27145,7 +27773,7 @@ const createOrUpdateLinkedServiceOperationSpec = {
|
|
|
27145
27773
|
ifMatch
|
|
27146
27774
|
],
|
|
27147
27775
|
mediaType: "json",
|
|
27148
|
-
serializer: serializer$
|
|
27776
|
+
serializer: serializer$a
|
|
27149
27777
|
};
|
|
27150
27778
|
const getLinkedServiceOperationSpec = {
|
|
27151
27779
|
path: "/linkedservices/{linkedServiceName}",
|
|
@@ -27162,7 +27790,7 @@ const getLinkedServiceOperationSpec = {
|
|
|
27162
27790
|
queryParameters: [apiVersion3],
|
|
27163
27791
|
urlParameters: [endpoint, linkedServiceName],
|
|
27164
27792
|
headerParameters: [accept, ifNoneMatch],
|
|
27165
|
-
serializer: serializer$
|
|
27793
|
+
serializer: serializer$a
|
|
27166
27794
|
};
|
|
27167
27795
|
const deleteLinkedServiceOperationSpec = {
|
|
27168
27796
|
path: "/linkedservices/{linkedServiceName}",
|
|
@@ -27179,7 +27807,7 @@ const deleteLinkedServiceOperationSpec = {
|
|
|
27179
27807
|
queryParameters: [apiVersion3],
|
|
27180
27808
|
urlParameters: [endpoint, linkedServiceName],
|
|
27181
27809
|
headerParameters: [accept],
|
|
27182
|
-
serializer: serializer$
|
|
27810
|
+
serializer: serializer$a
|
|
27183
27811
|
};
|
|
27184
27812
|
const renameLinkedServiceOperationSpec = {
|
|
27185
27813
|
path: "/linkedservices/{linkedServiceName}/rename",
|
|
@@ -27198,7 +27826,7 @@ const renameLinkedServiceOperationSpec = {
|
|
|
27198
27826
|
urlParameters: [endpoint, linkedServiceName],
|
|
27199
27827
|
headerParameters: [accept, contentType],
|
|
27200
27828
|
mediaType: "json",
|
|
27201
|
-
serializer: serializer$
|
|
27829
|
+
serializer: serializer$a
|
|
27202
27830
|
};
|
|
27203
27831
|
const getLinkedServicesByWorkspaceNextOperationSpec = {
|
|
27204
27832
|
path: "{nextLink}",
|
|
@@ -27214,7 +27842,7 @@ const getLinkedServicesByWorkspaceNextOperationSpec = {
|
|
|
27214
27842
|
queryParameters: [apiVersion3],
|
|
27215
27843
|
urlParameters: [endpoint, nextLink],
|
|
27216
27844
|
headerParameters: [accept],
|
|
27217
|
-
serializer: serializer$
|
|
27845
|
+
serializer: serializer$a
|
|
27218
27846
|
};
|
|
27219
27847
|
|
|
27220
27848
|
/*
|
|
@@ -27342,7 +27970,7 @@ class NotebookOperationsImpl {
|
|
|
27342
27970
|
}
|
|
27343
27971
|
catch (error) {
|
|
27344
27972
|
span.setStatus({
|
|
27345
|
-
code:
|
|
27973
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27346
27974
|
message: error.message
|
|
27347
27975
|
});
|
|
27348
27976
|
throw error;
|
|
@@ -27363,7 +27991,7 @@ class NotebookOperationsImpl {
|
|
|
27363
27991
|
}
|
|
27364
27992
|
catch (error) {
|
|
27365
27993
|
span.setStatus({
|
|
27366
|
-
code:
|
|
27994
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27367
27995
|
message: error.message
|
|
27368
27996
|
});
|
|
27369
27997
|
throw error;
|
|
@@ -27387,7 +28015,7 @@ class NotebookOperationsImpl {
|
|
|
27387
28015
|
}
|
|
27388
28016
|
catch (error) {
|
|
27389
28017
|
span.setStatus({
|
|
27390
|
-
code:
|
|
28018
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27391
28019
|
message: error.message
|
|
27392
28020
|
});
|
|
27393
28021
|
throw error;
|
|
@@ -27444,7 +28072,7 @@ class NotebookOperationsImpl {
|
|
|
27444
28072
|
}
|
|
27445
28073
|
catch (error) {
|
|
27446
28074
|
span.setStatus({
|
|
27447
|
-
code:
|
|
28075
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27448
28076
|
message: error.message
|
|
27449
28077
|
});
|
|
27450
28078
|
throw error;
|
|
@@ -27467,7 +28095,7 @@ class NotebookOperationsImpl {
|
|
|
27467
28095
|
}
|
|
27468
28096
|
catch (error) {
|
|
27469
28097
|
span.setStatus({
|
|
27470
|
-
code:
|
|
28098
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27471
28099
|
message: error.message
|
|
27472
28100
|
});
|
|
27473
28101
|
throw error;
|
|
@@ -27525,7 +28153,7 @@ class NotebookOperationsImpl {
|
|
|
27525
28153
|
}
|
|
27526
28154
|
catch (error) {
|
|
27527
28155
|
span.setStatus({
|
|
27528
|
-
code:
|
|
28156
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27529
28157
|
message: error.message
|
|
27530
28158
|
});
|
|
27531
28159
|
throw error;
|
|
@@ -27583,7 +28211,7 @@ class NotebookOperationsImpl {
|
|
|
27583
28211
|
}
|
|
27584
28212
|
catch (error) {
|
|
27585
28213
|
span.setStatus({
|
|
27586
|
-
code:
|
|
28214
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27587
28215
|
message: error.message
|
|
27588
28216
|
});
|
|
27589
28217
|
throw error;
|
|
@@ -27606,7 +28234,7 @@ class NotebookOperationsImpl {
|
|
|
27606
28234
|
}
|
|
27607
28235
|
catch (error) {
|
|
27608
28236
|
span.setStatus({
|
|
27609
|
-
code:
|
|
28237
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27610
28238
|
message: error.message
|
|
27611
28239
|
});
|
|
27612
28240
|
throw error;
|
|
@@ -27617,7 +28245,7 @@ class NotebookOperationsImpl {
|
|
|
27617
28245
|
}
|
|
27618
28246
|
}
|
|
27619
28247
|
// Operation Specifications
|
|
27620
|
-
const serializer$
|
|
28248
|
+
const serializer$9 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
27621
28249
|
const getNotebooksByWorkspaceOperationSpec = {
|
|
27622
28250
|
path: "/notebooks",
|
|
27623
28251
|
httpMethod: "GET",
|
|
@@ -27632,7 +28260,7 @@ const getNotebooksByWorkspaceOperationSpec = {
|
|
|
27632
28260
|
queryParameters: [apiVersion3],
|
|
27633
28261
|
urlParameters: [endpoint],
|
|
27634
28262
|
headerParameters: [accept],
|
|
27635
|
-
serializer: serializer$
|
|
28263
|
+
serializer: serializer$9
|
|
27636
28264
|
};
|
|
27637
28265
|
const getNotebookSummaryByWorkSpaceOperationSpec = {
|
|
27638
28266
|
path: "/notebooksSummary",
|
|
@@ -27648,7 +28276,7 @@ const getNotebookSummaryByWorkSpaceOperationSpec = {
|
|
|
27648
28276
|
queryParameters: [apiVersion3],
|
|
27649
28277
|
urlParameters: [endpoint],
|
|
27650
28278
|
headerParameters: [accept],
|
|
27651
|
-
serializer: serializer$
|
|
28279
|
+
serializer: serializer$9
|
|
27652
28280
|
};
|
|
27653
28281
|
const createOrUpdateNotebookOperationSpec = {
|
|
27654
28282
|
path: "/notebooks/{notebookName}",
|
|
@@ -27679,7 +28307,7 @@ const createOrUpdateNotebookOperationSpec = {
|
|
|
27679
28307
|
ifMatch
|
|
27680
28308
|
],
|
|
27681
28309
|
mediaType: "json",
|
|
27682
|
-
serializer: serializer$
|
|
28310
|
+
serializer: serializer$9
|
|
27683
28311
|
};
|
|
27684
28312
|
const getNotebookOperationSpec = {
|
|
27685
28313
|
path: "/notebooks/{notebookName}",
|
|
@@ -27696,7 +28324,7 @@ const getNotebookOperationSpec = {
|
|
|
27696
28324
|
queryParameters: [apiVersion3],
|
|
27697
28325
|
urlParameters: [endpoint, notebookName],
|
|
27698
28326
|
headerParameters: [accept, ifNoneMatch],
|
|
27699
|
-
serializer: serializer$
|
|
28327
|
+
serializer: serializer$9
|
|
27700
28328
|
};
|
|
27701
28329
|
const deleteNotebookOperationSpec = {
|
|
27702
28330
|
path: "/notebooks/{notebookName}",
|
|
@@ -27713,7 +28341,7 @@ const deleteNotebookOperationSpec = {
|
|
|
27713
28341
|
queryParameters: [apiVersion3],
|
|
27714
28342
|
urlParameters: [endpoint, notebookName],
|
|
27715
28343
|
headerParameters: [accept],
|
|
27716
|
-
serializer: serializer$
|
|
28344
|
+
serializer: serializer$9
|
|
27717
28345
|
};
|
|
27718
28346
|
const renameNotebookOperationSpec = {
|
|
27719
28347
|
path: "/notebooks/{notebookName}/rename",
|
|
@@ -27732,7 +28360,7 @@ const renameNotebookOperationSpec = {
|
|
|
27732
28360
|
urlParameters: [endpoint, notebookName],
|
|
27733
28361
|
headerParameters: [accept, contentType],
|
|
27734
28362
|
mediaType: "json",
|
|
27735
|
-
serializer: serializer$
|
|
28363
|
+
serializer: serializer$9
|
|
27736
28364
|
};
|
|
27737
28365
|
const getNotebooksByWorkspaceNextOperationSpec = {
|
|
27738
28366
|
path: "{nextLink}",
|
|
@@ -27748,7 +28376,7 @@ const getNotebooksByWorkspaceNextOperationSpec = {
|
|
|
27748
28376
|
queryParameters: [apiVersion3],
|
|
27749
28377
|
urlParameters: [endpoint, nextLink],
|
|
27750
28378
|
headerParameters: [accept],
|
|
27751
|
-
serializer: serializer$
|
|
28379
|
+
serializer: serializer$9
|
|
27752
28380
|
};
|
|
27753
28381
|
const getNotebookSummaryByWorkSpaceNextOperationSpec = {
|
|
27754
28382
|
path: "{nextLink}",
|
|
@@ -27764,7 +28392,7 @@ const getNotebookSummaryByWorkSpaceNextOperationSpec = {
|
|
|
27764
28392
|
queryParameters: [apiVersion3],
|
|
27765
28393
|
urlParameters: [endpoint, nextLink],
|
|
27766
28394
|
headerParameters: [accept],
|
|
27767
|
-
serializer: serializer$
|
|
28395
|
+
serializer: serializer$9
|
|
27768
28396
|
};
|
|
27769
28397
|
|
|
27770
28398
|
/*
|
|
@@ -27791,12 +28419,12 @@ class NotebookOperationResultImpl {
|
|
|
27791
28419
|
async get(operationId, options) {
|
|
27792
28420
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
27793
28421
|
try {
|
|
27794
|
-
const result = await this.client.sendOperationRequest({ operationId, options }, getOperationSpec$
|
|
28422
|
+
const result = await this.client.sendOperationRequest({ operationId, options }, getOperationSpec$2);
|
|
27795
28423
|
return result;
|
|
27796
28424
|
}
|
|
27797
28425
|
catch (error) {
|
|
27798
28426
|
span.setStatus({
|
|
27799
|
-
code:
|
|
28427
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27800
28428
|
message: error.message
|
|
27801
28429
|
});
|
|
27802
28430
|
throw error;
|
|
@@ -27807,8 +28435,8 @@ class NotebookOperationResultImpl {
|
|
|
27807
28435
|
}
|
|
27808
28436
|
}
|
|
27809
28437
|
// Operation Specifications
|
|
27810
|
-
const serializer$
|
|
27811
|
-
const getOperationSpec$
|
|
28438
|
+
const serializer$8 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
28439
|
+
const getOperationSpec$2 = {
|
|
27812
28440
|
path: "/notebookOperationResults/{operationId}",
|
|
27813
28441
|
httpMethod: "GET",
|
|
27814
28442
|
responses: {
|
|
@@ -27823,7 +28451,7 @@ const getOperationSpec$3 = {
|
|
|
27823
28451
|
queryParameters: [apiVersion3],
|
|
27824
28452
|
urlParameters: [endpoint, operationId],
|
|
27825
28453
|
headerParameters: [accept],
|
|
27826
|
-
serializer: serializer$
|
|
28454
|
+
serializer: serializer$8
|
|
27827
28455
|
};
|
|
27828
28456
|
|
|
27829
28457
|
/*
|
|
@@ -27903,7 +28531,7 @@ class PipelineOperationsImpl {
|
|
|
27903
28531
|
}
|
|
27904
28532
|
catch (error) {
|
|
27905
28533
|
span.setStatus({
|
|
27906
|
-
code:
|
|
28534
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27907
28535
|
message: error.message
|
|
27908
28536
|
});
|
|
27909
28537
|
throw error;
|
|
@@ -27927,7 +28555,7 @@ class PipelineOperationsImpl {
|
|
|
27927
28555
|
}
|
|
27928
28556
|
catch (error) {
|
|
27929
28557
|
span.setStatus({
|
|
27930
|
-
code:
|
|
28558
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27931
28559
|
message: error.message
|
|
27932
28560
|
});
|
|
27933
28561
|
throw error;
|
|
@@ -27984,7 +28612,7 @@ class PipelineOperationsImpl {
|
|
|
27984
28612
|
}
|
|
27985
28613
|
catch (error) {
|
|
27986
28614
|
span.setStatus({
|
|
27987
|
-
code:
|
|
28615
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27988
28616
|
message: error.message
|
|
27989
28617
|
});
|
|
27990
28618
|
throw error;
|
|
@@ -28007,7 +28635,7 @@ class PipelineOperationsImpl {
|
|
|
28007
28635
|
}
|
|
28008
28636
|
catch (error) {
|
|
28009
28637
|
span.setStatus({
|
|
28010
|
-
code:
|
|
28638
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28011
28639
|
message: error.message
|
|
28012
28640
|
});
|
|
28013
28641
|
throw error;
|
|
@@ -28065,7 +28693,7 @@ class PipelineOperationsImpl {
|
|
|
28065
28693
|
}
|
|
28066
28694
|
catch (error) {
|
|
28067
28695
|
span.setStatus({
|
|
28068
|
-
code:
|
|
28696
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28069
28697
|
message: error.message
|
|
28070
28698
|
});
|
|
28071
28699
|
throw error;
|
|
@@ -28122,7 +28750,7 @@ class PipelineOperationsImpl {
|
|
|
28122
28750
|
}
|
|
28123
28751
|
catch (error) {
|
|
28124
28752
|
span.setStatus({
|
|
28125
|
-
code:
|
|
28753
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28126
28754
|
message: error.message
|
|
28127
28755
|
});
|
|
28128
28756
|
throw error;
|
|
@@ -28145,7 +28773,7 @@ class PipelineOperationsImpl {
|
|
|
28145
28773
|
}
|
|
28146
28774
|
catch (error) {
|
|
28147
28775
|
span.setStatus({
|
|
28148
|
-
code:
|
|
28776
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28149
28777
|
message: error.message
|
|
28150
28778
|
});
|
|
28151
28779
|
throw error;
|
|
@@ -28156,7 +28784,7 @@ class PipelineOperationsImpl {
|
|
|
28156
28784
|
}
|
|
28157
28785
|
}
|
|
28158
28786
|
// Operation Specifications
|
|
28159
|
-
const serializer$
|
|
28787
|
+
const serializer$7 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
28160
28788
|
const getPipelinesByWorkspaceOperationSpec = {
|
|
28161
28789
|
path: "/pipelines",
|
|
28162
28790
|
httpMethod: "GET",
|
|
@@ -28171,7 +28799,7 @@ const getPipelinesByWorkspaceOperationSpec = {
|
|
|
28171
28799
|
queryParameters: [apiVersion3],
|
|
28172
28800
|
urlParameters: [endpoint],
|
|
28173
28801
|
headerParameters: [accept],
|
|
28174
|
-
serializer: serializer$
|
|
28802
|
+
serializer: serializer$7
|
|
28175
28803
|
};
|
|
28176
28804
|
const createOrUpdatePipelineOperationSpec = {
|
|
28177
28805
|
path: "/pipelines/{pipelineName}",
|
|
@@ -28202,7 +28830,7 @@ const createOrUpdatePipelineOperationSpec = {
|
|
|
28202
28830
|
ifMatch
|
|
28203
28831
|
],
|
|
28204
28832
|
mediaType: "json",
|
|
28205
|
-
serializer: serializer$
|
|
28833
|
+
serializer: serializer$7
|
|
28206
28834
|
};
|
|
28207
28835
|
const getPipelineOperationSpec = {
|
|
28208
28836
|
path: "/pipelines/{pipelineName}",
|
|
@@ -28219,7 +28847,7 @@ const getPipelineOperationSpec = {
|
|
|
28219
28847
|
queryParameters: [apiVersion3],
|
|
28220
28848
|
urlParameters: [endpoint, pipelineName],
|
|
28221
28849
|
headerParameters: [accept, ifNoneMatch],
|
|
28222
|
-
serializer: serializer$
|
|
28850
|
+
serializer: serializer$7
|
|
28223
28851
|
};
|
|
28224
28852
|
const deletePipelineOperationSpec = {
|
|
28225
28853
|
path: "/pipelines/{pipelineName}",
|
|
@@ -28236,7 +28864,7 @@ const deletePipelineOperationSpec = {
|
|
|
28236
28864
|
queryParameters: [apiVersion3],
|
|
28237
28865
|
urlParameters: [endpoint, pipelineName],
|
|
28238
28866
|
headerParameters: [accept],
|
|
28239
|
-
serializer: serializer$
|
|
28867
|
+
serializer: serializer$7
|
|
28240
28868
|
};
|
|
28241
28869
|
const renamePipelineOperationSpec = {
|
|
28242
28870
|
path: "/pipelines/{pipelineName}/rename",
|
|
@@ -28255,7 +28883,7 @@ const renamePipelineOperationSpec = {
|
|
|
28255
28883
|
urlParameters: [endpoint, pipelineName],
|
|
28256
28884
|
headerParameters: [accept, contentType],
|
|
28257
28885
|
mediaType: "json",
|
|
28258
|
-
serializer: serializer$
|
|
28886
|
+
serializer: serializer$7
|
|
28259
28887
|
};
|
|
28260
28888
|
const createPipelineRunOperationSpec = {
|
|
28261
28889
|
path: "/pipelines/{pipelineName}/createRun",
|
|
@@ -28278,7 +28906,7 @@ const createPipelineRunOperationSpec = {
|
|
|
28278
28906
|
urlParameters: [endpoint, pipelineName],
|
|
28279
28907
|
headerParameters: [accept, contentType],
|
|
28280
28908
|
mediaType: "json",
|
|
28281
|
-
serializer: serializer$
|
|
28909
|
+
serializer: serializer$7
|
|
28282
28910
|
};
|
|
28283
28911
|
const getPipelinesByWorkspaceNextOperationSpec = {
|
|
28284
28912
|
path: "{nextLink}",
|
|
@@ -28294,7 +28922,7 @@ const getPipelinesByWorkspaceNextOperationSpec = {
|
|
|
28294
28922
|
queryParameters: [apiVersion3],
|
|
28295
28923
|
urlParameters: [endpoint, nextLink],
|
|
28296
28924
|
headerParameters: [accept],
|
|
28297
|
-
serializer: serializer$
|
|
28925
|
+
serializer: serializer$7
|
|
28298
28926
|
};
|
|
28299
28927
|
|
|
28300
28928
|
/*
|
|
@@ -28326,7 +28954,7 @@ class PipelineRunOperationsImpl {
|
|
|
28326
28954
|
}
|
|
28327
28955
|
catch (error) {
|
|
28328
28956
|
span.setStatus({
|
|
28329
|
-
code:
|
|
28957
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28330
28958
|
message: error.message
|
|
28331
28959
|
});
|
|
28332
28960
|
throw error;
|
|
@@ -28348,7 +28976,7 @@ class PipelineRunOperationsImpl {
|
|
|
28348
28976
|
}
|
|
28349
28977
|
catch (error) {
|
|
28350
28978
|
span.setStatus({
|
|
28351
|
-
code:
|
|
28979
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28352
28980
|
message: error.message
|
|
28353
28981
|
});
|
|
28354
28982
|
throw error;
|
|
@@ -28372,7 +29000,7 @@ class PipelineRunOperationsImpl {
|
|
|
28372
29000
|
}
|
|
28373
29001
|
catch (error) {
|
|
28374
29002
|
span.setStatus({
|
|
28375
|
-
code:
|
|
29003
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28376
29004
|
message: error.message
|
|
28377
29005
|
});
|
|
28378
29006
|
throw error;
|
|
@@ -28394,7 +29022,7 @@ class PipelineRunOperationsImpl {
|
|
|
28394
29022
|
}
|
|
28395
29023
|
catch (error) {
|
|
28396
29024
|
span.setStatus({
|
|
28397
|
-
code:
|
|
29025
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28398
29026
|
message: error.message
|
|
28399
29027
|
});
|
|
28400
29028
|
throw error;
|
|
@@ -28405,7 +29033,7 @@ class PipelineRunOperationsImpl {
|
|
|
28405
29033
|
}
|
|
28406
29034
|
}
|
|
28407
29035
|
// Operation Specifications
|
|
28408
|
-
const serializer$
|
|
29036
|
+
const serializer$6 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
28409
29037
|
const queryPipelineRunsByWorkspaceOperationSpec = {
|
|
28410
29038
|
path: "/queryPipelineRuns",
|
|
28411
29039
|
httpMethod: "POST",
|
|
@@ -28422,7 +29050,7 @@ const queryPipelineRunsByWorkspaceOperationSpec = {
|
|
|
28422
29050
|
urlParameters: [endpoint],
|
|
28423
29051
|
headerParameters: [accept, contentType],
|
|
28424
29052
|
mediaType: "json",
|
|
28425
|
-
serializer: serializer$
|
|
29053
|
+
serializer: serializer$6
|
|
28426
29054
|
};
|
|
28427
29055
|
const getPipelineRunOperationSpec = {
|
|
28428
29056
|
path: "/pipelineruns/{runId}",
|
|
@@ -28438,7 +29066,7 @@ const getPipelineRunOperationSpec = {
|
|
|
28438
29066
|
queryParameters: [apiVersion3],
|
|
28439
29067
|
urlParameters: [endpoint, runId],
|
|
28440
29068
|
headerParameters: [accept],
|
|
28441
|
-
serializer: serializer$
|
|
29069
|
+
serializer: serializer$6
|
|
28442
29070
|
};
|
|
28443
29071
|
const queryActivityRunsOperationSpec = {
|
|
28444
29072
|
path: "/pipelines/{pipelineName}/pipelineruns/{runId}/queryActivityruns",
|
|
@@ -28460,7 +29088,7 @@ const queryActivityRunsOperationSpec = {
|
|
|
28460
29088
|
],
|
|
28461
29089
|
headerParameters: [accept, contentType],
|
|
28462
29090
|
mediaType: "json",
|
|
28463
|
-
serializer: serializer$
|
|
29091
|
+
serializer: serializer$6
|
|
28464
29092
|
};
|
|
28465
29093
|
const cancelPipelineRunOperationSpec = {
|
|
28466
29094
|
path: "/pipelineruns/{runId}/cancel",
|
|
@@ -28474,7 +29102,7 @@ const cancelPipelineRunOperationSpec = {
|
|
|
28474
29102
|
queryParameters: [apiVersion3, isRecursive],
|
|
28475
29103
|
urlParameters: [endpoint, runId],
|
|
28476
29104
|
headerParameters: [accept],
|
|
28477
|
-
serializer: serializer$
|
|
29105
|
+
serializer: serializer$6
|
|
28478
29106
|
};
|
|
28479
29107
|
|
|
28480
29108
|
/*
|
|
@@ -28554,7 +29182,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28554
29182
|
}
|
|
28555
29183
|
catch (error) {
|
|
28556
29184
|
span.setStatus({
|
|
28557
|
-
code:
|
|
29185
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28558
29186
|
message: error.message
|
|
28559
29187
|
});
|
|
28560
29188
|
throw error;
|
|
@@ -28578,7 +29206,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28578
29206
|
}
|
|
28579
29207
|
catch (error) {
|
|
28580
29208
|
span.setStatus({
|
|
28581
|
-
code:
|
|
29209
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28582
29210
|
message: error.message
|
|
28583
29211
|
});
|
|
28584
29212
|
throw error;
|
|
@@ -28635,7 +29263,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28635
29263
|
}
|
|
28636
29264
|
catch (error) {
|
|
28637
29265
|
span.setStatus({
|
|
28638
|
-
code:
|
|
29266
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28639
29267
|
message: error.message
|
|
28640
29268
|
});
|
|
28641
29269
|
throw error;
|
|
@@ -28658,7 +29286,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28658
29286
|
}
|
|
28659
29287
|
catch (error) {
|
|
28660
29288
|
span.setStatus({
|
|
28661
|
-
code:
|
|
29289
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28662
29290
|
message: error.message
|
|
28663
29291
|
});
|
|
28664
29292
|
throw error;
|
|
@@ -28715,7 +29343,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28715
29343
|
}
|
|
28716
29344
|
catch (error) {
|
|
28717
29345
|
span.setStatus({
|
|
28718
|
-
code:
|
|
29346
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28719
29347
|
message: error.message
|
|
28720
29348
|
});
|
|
28721
29349
|
throw error;
|
|
@@ -28774,7 +29402,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28774
29402
|
}
|
|
28775
29403
|
catch (error) {
|
|
28776
29404
|
span.setStatus({
|
|
28777
|
-
code:
|
|
29405
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28778
29406
|
message: error.message
|
|
28779
29407
|
});
|
|
28780
29408
|
throw error;
|
|
@@ -28832,7 +29460,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28832
29460
|
}
|
|
28833
29461
|
catch (error) {
|
|
28834
29462
|
span.setStatus({
|
|
28835
|
-
code:
|
|
29463
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28836
29464
|
message: error.message
|
|
28837
29465
|
});
|
|
28838
29466
|
throw error;
|
|
@@ -28890,7 +29518,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28890
29518
|
}
|
|
28891
29519
|
catch (error) {
|
|
28892
29520
|
span.setStatus({
|
|
28893
|
-
code:
|
|
29521
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28894
29522
|
message: error.message
|
|
28895
29523
|
});
|
|
28896
29524
|
throw error;
|
|
@@ -28901,7 +29529,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28901
29529
|
}
|
|
28902
29530
|
}
|
|
28903
29531
|
// Operation Specifications
|
|
28904
|
-
const serializer$
|
|
29532
|
+
const serializer$5 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
28905
29533
|
const getSparkJobDefinitionsByWorkspaceOperationSpec = {
|
|
28906
29534
|
path: "/sparkJobDefinitions",
|
|
28907
29535
|
httpMethod: "GET",
|
|
@@ -28916,7 +29544,7 @@ const getSparkJobDefinitionsByWorkspaceOperationSpec = {
|
|
|
28916
29544
|
queryParameters: [apiVersion3],
|
|
28917
29545
|
urlParameters: [endpoint],
|
|
28918
29546
|
headerParameters: [accept],
|
|
28919
|
-
serializer: serializer$
|
|
29547
|
+
serializer: serializer$5
|
|
28920
29548
|
};
|
|
28921
29549
|
const createOrUpdateSparkJobDefinitionOperationSpec = {
|
|
28922
29550
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}",
|
|
@@ -28947,7 +29575,7 @@ const createOrUpdateSparkJobDefinitionOperationSpec = {
|
|
|
28947
29575
|
ifMatch
|
|
28948
29576
|
],
|
|
28949
29577
|
mediaType: "json",
|
|
28950
|
-
serializer: serializer$
|
|
29578
|
+
serializer: serializer$5
|
|
28951
29579
|
};
|
|
28952
29580
|
const getSparkJobDefinitionOperationSpec = {
|
|
28953
29581
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}",
|
|
@@ -28964,7 +29592,7 @@ const getSparkJobDefinitionOperationSpec = {
|
|
|
28964
29592
|
queryParameters: [apiVersion3],
|
|
28965
29593
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
28966
29594
|
headerParameters: [accept, ifNoneMatch],
|
|
28967
|
-
serializer: serializer$
|
|
29595
|
+
serializer: serializer$5
|
|
28968
29596
|
};
|
|
28969
29597
|
const deleteSparkJobDefinitionOperationSpec = {
|
|
28970
29598
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}",
|
|
@@ -28981,7 +29609,7 @@ const deleteSparkJobDefinitionOperationSpec = {
|
|
|
28981
29609
|
queryParameters: [apiVersion3],
|
|
28982
29610
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
28983
29611
|
headerParameters: [accept],
|
|
28984
|
-
serializer: serializer$
|
|
29612
|
+
serializer: serializer$5
|
|
28985
29613
|
};
|
|
28986
29614
|
const executeSparkJobDefinitionOperationSpec = {
|
|
28987
29615
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}/execute",
|
|
@@ -29006,7 +29634,7 @@ const executeSparkJobDefinitionOperationSpec = {
|
|
|
29006
29634
|
queryParameters: [apiVersion3],
|
|
29007
29635
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
29008
29636
|
headerParameters: [accept],
|
|
29009
|
-
serializer: serializer$
|
|
29637
|
+
serializer: serializer$5
|
|
29010
29638
|
};
|
|
29011
29639
|
const renameSparkJobDefinitionOperationSpec = {
|
|
29012
29640
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}/rename",
|
|
@@ -29025,7 +29653,7 @@ const renameSparkJobDefinitionOperationSpec = {
|
|
|
29025
29653
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
29026
29654
|
headerParameters: [accept, contentType],
|
|
29027
29655
|
mediaType: "json",
|
|
29028
|
-
serializer: serializer$
|
|
29656
|
+
serializer: serializer$5
|
|
29029
29657
|
};
|
|
29030
29658
|
const debugSparkJobDefinitionOperationSpec = {
|
|
29031
29659
|
path: "/debugSparkJobDefinition",
|
|
@@ -29052,7 +29680,7 @@ const debugSparkJobDefinitionOperationSpec = {
|
|
|
29052
29680
|
urlParameters: [endpoint],
|
|
29053
29681
|
headerParameters: [accept, contentType],
|
|
29054
29682
|
mediaType: "json",
|
|
29055
|
-
serializer: serializer$
|
|
29683
|
+
serializer: serializer$5
|
|
29056
29684
|
};
|
|
29057
29685
|
const getSparkJobDefinitionsByWorkspaceNextOperationSpec = {
|
|
29058
29686
|
path: "{nextLink}",
|
|
@@ -29068,7 +29696,7 @@ const getSparkJobDefinitionsByWorkspaceNextOperationSpec = {
|
|
|
29068
29696
|
queryParameters: [apiVersion3],
|
|
29069
29697
|
urlParameters: [endpoint, nextLink],
|
|
29070
29698
|
headerParameters: [accept],
|
|
29071
|
-
serializer: serializer$
|
|
29699
|
+
serializer: serializer$5
|
|
29072
29700
|
};
|
|
29073
29701
|
|
|
29074
29702
|
/*
|
|
@@ -29094,12 +29722,12 @@ class SqlPoolsImpl {
|
|
|
29094
29722
|
async list(options) {
|
|
29095
29723
|
const { span } = createSpan("ArtifactsClient-list", options || {});
|
|
29096
29724
|
try {
|
|
29097
|
-
const result = await this.client.sendOperationRequest({ options }, listOperationSpec
|
|
29725
|
+
const result = await this.client.sendOperationRequest({ options }, listOperationSpec);
|
|
29098
29726
|
return result;
|
|
29099
29727
|
}
|
|
29100
29728
|
catch (error) {
|
|
29101
29729
|
span.setStatus({
|
|
29102
|
-
code:
|
|
29730
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29103
29731
|
message: error.message
|
|
29104
29732
|
});
|
|
29105
29733
|
throw error;
|
|
@@ -29116,12 +29744,12 @@ class SqlPoolsImpl {
|
|
|
29116
29744
|
async get(sqlPoolName, options) {
|
|
29117
29745
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
29118
29746
|
try {
|
|
29119
|
-
const result = await this.client.sendOperationRequest({ sqlPoolName, options }, getOperationSpec$
|
|
29747
|
+
const result = await this.client.sendOperationRequest({ sqlPoolName, options }, getOperationSpec$1);
|
|
29120
29748
|
return result;
|
|
29121
29749
|
}
|
|
29122
29750
|
catch (error) {
|
|
29123
29751
|
span.setStatus({
|
|
29124
|
-
code:
|
|
29752
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29125
29753
|
message: error.message
|
|
29126
29754
|
});
|
|
29127
29755
|
throw error;
|
|
@@ -29132,8 +29760,8 @@ class SqlPoolsImpl {
|
|
|
29132
29760
|
}
|
|
29133
29761
|
}
|
|
29134
29762
|
// Operation Specifications
|
|
29135
|
-
const serializer$
|
|
29136
|
-
const listOperationSpec
|
|
29763
|
+
const serializer$4 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
29764
|
+
const listOperationSpec = {
|
|
29137
29765
|
path: "/sqlPools",
|
|
29138
29766
|
httpMethod: "GET",
|
|
29139
29767
|
responses: {
|
|
@@ -29147,9 +29775,9 @@ const listOperationSpec$3 = {
|
|
|
29147
29775
|
queryParameters: [apiVersion3],
|
|
29148
29776
|
urlParameters: [endpoint],
|
|
29149
29777
|
headerParameters: [accept],
|
|
29150
|
-
serializer: serializer$
|
|
29778
|
+
serializer: serializer$4
|
|
29151
29779
|
};
|
|
29152
|
-
const getOperationSpec$
|
|
29780
|
+
const getOperationSpec$1 = {
|
|
29153
29781
|
path: "/sqlPools/{sqlPoolName}",
|
|
29154
29782
|
httpMethod: "GET",
|
|
29155
29783
|
responses: {
|
|
@@ -29163,7 +29791,7 @@ const getOperationSpec$4 = {
|
|
|
29163
29791
|
queryParameters: [apiVersion3],
|
|
29164
29792
|
urlParameters: [endpoint, sqlPoolName],
|
|
29165
29793
|
headerParameters: [accept],
|
|
29166
|
-
serializer: serializer$
|
|
29794
|
+
serializer: serializer$4
|
|
29167
29795
|
};
|
|
29168
29796
|
|
|
29169
29797
|
/*
|
|
@@ -29243,7 +29871,7 @@ class SqlScriptOperationsImpl {
|
|
|
29243
29871
|
}
|
|
29244
29872
|
catch (error) {
|
|
29245
29873
|
span.setStatus({
|
|
29246
|
-
code:
|
|
29874
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29247
29875
|
message: error.message
|
|
29248
29876
|
});
|
|
29249
29877
|
throw error;
|
|
@@ -29267,7 +29895,7 @@ class SqlScriptOperationsImpl {
|
|
|
29267
29895
|
}
|
|
29268
29896
|
catch (error) {
|
|
29269
29897
|
span.setStatus({
|
|
29270
|
-
code:
|
|
29898
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29271
29899
|
message: error.message
|
|
29272
29900
|
});
|
|
29273
29901
|
throw error;
|
|
@@ -29324,7 +29952,7 @@ class SqlScriptOperationsImpl {
|
|
|
29324
29952
|
}
|
|
29325
29953
|
catch (error) {
|
|
29326
29954
|
span.setStatus({
|
|
29327
|
-
code:
|
|
29955
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29328
29956
|
message: error.message
|
|
29329
29957
|
});
|
|
29330
29958
|
throw error;
|
|
@@ -29347,7 +29975,7 @@ class SqlScriptOperationsImpl {
|
|
|
29347
29975
|
}
|
|
29348
29976
|
catch (error) {
|
|
29349
29977
|
span.setStatus({
|
|
29350
|
-
code:
|
|
29978
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29351
29979
|
message: error.message
|
|
29352
29980
|
});
|
|
29353
29981
|
throw error;
|
|
@@ -29405,7 +30033,7 @@ class SqlScriptOperationsImpl {
|
|
|
29405
30033
|
}
|
|
29406
30034
|
catch (error) {
|
|
29407
30035
|
span.setStatus({
|
|
29408
|
-
code:
|
|
30036
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29409
30037
|
message: error.message
|
|
29410
30038
|
});
|
|
29411
30039
|
throw error;
|
|
@@ -29463,7 +30091,7 @@ class SqlScriptOperationsImpl {
|
|
|
29463
30091
|
}
|
|
29464
30092
|
catch (error) {
|
|
29465
30093
|
span.setStatus({
|
|
29466
|
-
code:
|
|
30094
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29467
30095
|
message: error.message
|
|
29468
30096
|
});
|
|
29469
30097
|
throw error;
|
|
@@ -29474,7 +30102,7 @@ class SqlScriptOperationsImpl {
|
|
|
29474
30102
|
}
|
|
29475
30103
|
}
|
|
29476
30104
|
// Operation Specifications
|
|
29477
|
-
const serializer$
|
|
30105
|
+
const serializer$3 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
29478
30106
|
const getSqlScriptsByWorkspaceOperationSpec = {
|
|
29479
30107
|
path: "/sqlScripts",
|
|
29480
30108
|
httpMethod: "GET",
|
|
@@ -29489,7 +30117,7 @@ const getSqlScriptsByWorkspaceOperationSpec = {
|
|
|
29489
30117
|
queryParameters: [apiVersion3],
|
|
29490
30118
|
urlParameters: [endpoint],
|
|
29491
30119
|
headerParameters: [accept],
|
|
29492
|
-
serializer: serializer$
|
|
30120
|
+
serializer: serializer$3
|
|
29493
30121
|
};
|
|
29494
30122
|
const createOrUpdateSqlScriptOperationSpec = {
|
|
29495
30123
|
path: "/sqlScripts/{sqlScriptName}",
|
|
@@ -29520,7 +30148,7 @@ const createOrUpdateSqlScriptOperationSpec = {
|
|
|
29520
30148
|
ifMatch
|
|
29521
30149
|
],
|
|
29522
30150
|
mediaType: "json",
|
|
29523
|
-
serializer: serializer$
|
|
30151
|
+
serializer: serializer$3
|
|
29524
30152
|
};
|
|
29525
30153
|
const getSqlScriptOperationSpec = {
|
|
29526
30154
|
path: "/sqlScripts/{sqlScriptName}",
|
|
@@ -29537,7 +30165,7 @@ const getSqlScriptOperationSpec = {
|
|
|
29537
30165
|
queryParameters: [apiVersion3],
|
|
29538
30166
|
urlParameters: [endpoint, sqlScriptName],
|
|
29539
30167
|
headerParameters: [accept, ifNoneMatch],
|
|
29540
|
-
serializer: serializer$
|
|
30168
|
+
serializer: serializer$3
|
|
29541
30169
|
};
|
|
29542
30170
|
const deleteSqlScriptOperationSpec = {
|
|
29543
30171
|
path: "/sqlScripts/{sqlScriptName}",
|
|
@@ -29554,7 +30182,7 @@ const deleteSqlScriptOperationSpec = {
|
|
|
29554
30182
|
queryParameters: [apiVersion3],
|
|
29555
30183
|
urlParameters: [endpoint, sqlScriptName],
|
|
29556
30184
|
headerParameters: [accept],
|
|
29557
|
-
serializer: serializer$
|
|
30185
|
+
serializer: serializer$3
|
|
29558
30186
|
};
|
|
29559
30187
|
const renameSqlScriptOperationSpec = {
|
|
29560
30188
|
path: "/sqlScripts/{sqlScriptName}/rename",
|
|
@@ -29573,7 +30201,7 @@ const renameSqlScriptOperationSpec = {
|
|
|
29573
30201
|
urlParameters: [endpoint, sqlScriptName],
|
|
29574
30202
|
headerParameters: [accept, contentType],
|
|
29575
30203
|
mediaType: "json",
|
|
29576
|
-
serializer: serializer$
|
|
30204
|
+
serializer: serializer$3
|
|
29577
30205
|
};
|
|
29578
30206
|
const getSqlScriptsByWorkspaceNextOperationSpec = {
|
|
29579
30207
|
path: "{nextLink}",
|
|
@@ -29589,7 +30217,7 @@ const getSqlScriptsByWorkspaceNextOperationSpec = {
|
|
|
29589
30217
|
queryParameters: [apiVersion3],
|
|
29590
30218
|
urlParameters: [endpoint, nextLink],
|
|
29591
30219
|
headerParameters: [accept],
|
|
29592
|
-
serializer: serializer$
|
|
30220
|
+
serializer: serializer$3
|
|
29593
30221
|
};
|
|
29594
30222
|
|
|
29595
30223
|
/*
|
|
@@ -29669,7 +30297,7 @@ class TriggerOperationsImpl {
|
|
|
29669
30297
|
}
|
|
29670
30298
|
catch (error) {
|
|
29671
30299
|
span.setStatus({
|
|
29672
|
-
code:
|
|
30300
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29673
30301
|
message: error.message
|
|
29674
30302
|
});
|
|
29675
30303
|
throw error;
|
|
@@ -29693,7 +30321,7 @@ class TriggerOperationsImpl {
|
|
|
29693
30321
|
}
|
|
29694
30322
|
catch (error) {
|
|
29695
30323
|
span.setStatus({
|
|
29696
|
-
code:
|
|
30324
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29697
30325
|
message: error.message
|
|
29698
30326
|
});
|
|
29699
30327
|
throw error;
|
|
@@ -29750,7 +30378,7 @@ class TriggerOperationsImpl {
|
|
|
29750
30378
|
}
|
|
29751
30379
|
catch (error) {
|
|
29752
30380
|
span.setStatus({
|
|
29753
|
-
code:
|
|
30381
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29754
30382
|
message: error.message
|
|
29755
30383
|
});
|
|
29756
30384
|
throw error;
|
|
@@ -29773,7 +30401,7 @@ class TriggerOperationsImpl {
|
|
|
29773
30401
|
}
|
|
29774
30402
|
catch (error) {
|
|
29775
30403
|
span.setStatus({
|
|
29776
|
-
code:
|
|
30404
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29777
30405
|
message: error.message
|
|
29778
30406
|
});
|
|
29779
30407
|
throw error;
|
|
@@ -29830,7 +30458,7 @@ class TriggerOperationsImpl {
|
|
|
29830
30458
|
}
|
|
29831
30459
|
catch (error) {
|
|
29832
30460
|
span.setStatus({
|
|
29833
|
-
code:
|
|
30461
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29834
30462
|
message: error.message
|
|
29835
30463
|
});
|
|
29836
30464
|
throw error;
|
|
@@ -29886,7 +30514,7 @@ class TriggerOperationsImpl {
|
|
|
29886
30514
|
}
|
|
29887
30515
|
catch (error) {
|
|
29888
30516
|
span.setStatus({
|
|
29889
|
-
code:
|
|
30517
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29890
30518
|
message: error.message
|
|
29891
30519
|
});
|
|
29892
30520
|
throw error;
|
|
@@ -29909,7 +30537,7 @@ class TriggerOperationsImpl {
|
|
|
29909
30537
|
}
|
|
29910
30538
|
catch (error) {
|
|
29911
30539
|
span.setStatus({
|
|
29912
|
-
code:
|
|
30540
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29913
30541
|
message: error.message
|
|
29914
30542
|
});
|
|
29915
30543
|
throw error;
|
|
@@ -29966,7 +30594,7 @@ class TriggerOperationsImpl {
|
|
|
29966
30594
|
}
|
|
29967
30595
|
catch (error) {
|
|
29968
30596
|
span.setStatus({
|
|
29969
|
-
code:
|
|
30597
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29970
30598
|
message: error.message
|
|
29971
30599
|
});
|
|
29972
30600
|
throw error;
|
|
@@ -30023,7 +30651,7 @@ class TriggerOperationsImpl {
|
|
|
30023
30651
|
}
|
|
30024
30652
|
catch (error) {
|
|
30025
30653
|
span.setStatus({
|
|
30026
|
-
code:
|
|
30654
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
30027
30655
|
message: error.message
|
|
30028
30656
|
});
|
|
30029
30657
|
throw error;
|
|
@@ -30079,7 +30707,7 @@ class TriggerOperationsImpl {
|
|
|
30079
30707
|
}
|
|
30080
30708
|
catch (error) {
|
|
30081
30709
|
span.setStatus({
|
|
30082
|
-
code:
|
|
30710
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
30083
30711
|
message: error.message
|
|
30084
30712
|
});
|
|
30085
30713
|
throw error;
|
|
@@ -30090,7 +30718,7 @@ class TriggerOperationsImpl {
|
|
|
30090
30718
|
}
|
|
30091
30719
|
}
|
|
30092
30720
|
// Operation Specifications
|
|
30093
|
-
const serializer$
|
|
30721
|
+
const serializer$2 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
30094
30722
|
const getTriggersByWorkspaceOperationSpec = {
|
|
30095
30723
|
path: "/triggers",
|
|
30096
30724
|
httpMethod: "GET",
|
|
@@ -30105,7 +30733,7 @@ const getTriggersByWorkspaceOperationSpec = {
|
|
|
30105
30733
|
queryParameters: [apiVersion3],
|
|
30106
30734
|
urlParameters: [endpoint],
|
|
30107
30735
|
headerParameters: [accept],
|
|
30108
|
-
serializer: serializer$
|
|
30736
|
+
serializer: serializer$2
|
|
30109
30737
|
};
|
|
30110
30738
|
const createOrUpdateTriggerOperationSpec = {
|
|
30111
30739
|
path: "/triggers/{triggerName}",
|
|
@@ -30136,7 +30764,7 @@ const createOrUpdateTriggerOperationSpec = {
|
|
|
30136
30764
|
ifMatch
|
|
30137
30765
|
],
|
|
30138
30766
|
mediaType: "json",
|
|
30139
|
-
serializer: serializer$
|
|
30767
|
+
serializer: serializer$2
|
|
30140
30768
|
};
|
|
30141
30769
|
const getTriggerOperationSpec = {
|
|
30142
30770
|
path: "/triggers/{triggerName}",
|
|
@@ -30153,7 +30781,7 @@ const getTriggerOperationSpec = {
|
|
|
30153
30781
|
queryParameters: [apiVersion3],
|
|
30154
30782
|
urlParameters: [endpoint, triggerName],
|
|
30155
30783
|
headerParameters: [accept, ifNoneMatch],
|
|
30156
|
-
serializer: serializer$
|
|
30784
|
+
serializer: serializer$2
|
|
30157
30785
|
};
|
|
30158
30786
|
const deleteTriggerOperationSpec = {
|
|
30159
30787
|
path: "/triggers/{triggerName}",
|
|
@@ -30170,7 +30798,7 @@ const deleteTriggerOperationSpec = {
|
|
|
30170
30798
|
queryParameters: [apiVersion3],
|
|
30171
30799
|
urlParameters: [endpoint, triggerName],
|
|
30172
30800
|
headerParameters: [accept],
|
|
30173
|
-
serializer: serializer$
|
|
30801
|
+
serializer: serializer$2
|
|
30174
30802
|
};
|
|
30175
30803
|
const subscribeTriggerToEventsOperationSpec = {
|
|
30176
30804
|
path: "/triggers/{triggerName}/subscribeToEvents",
|
|
@@ -30195,7 +30823,7 @@ const subscribeTriggerToEventsOperationSpec = {
|
|
|
30195
30823
|
queryParameters: [apiVersion3],
|
|
30196
30824
|
urlParameters: [endpoint, triggerName],
|
|
30197
30825
|
headerParameters: [accept],
|
|
30198
|
-
serializer: serializer$
|
|
30826
|
+
serializer: serializer$2
|
|
30199
30827
|
};
|
|
30200
30828
|
const getEventSubscriptionStatusOperationSpec = {
|
|
30201
30829
|
path: "/triggers/{triggerName}/getEventSubscriptionStatus",
|
|
@@ -30211,7 +30839,7 @@ const getEventSubscriptionStatusOperationSpec = {
|
|
|
30211
30839
|
queryParameters: [apiVersion3],
|
|
30212
30840
|
urlParameters: [endpoint, triggerName],
|
|
30213
30841
|
headerParameters: [accept],
|
|
30214
|
-
serializer: serializer$
|
|
30842
|
+
serializer: serializer$2
|
|
30215
30843
|
};
|
|
30216
30844
|
const unsubscribeTriggerFromEventsOperationSpec = {
|
|
30217
30845
|
path: "/triggers/{triggerName}/unsubscribeFromEvents",
|
|
@@ -30236,7 +30864,7 @@ const unsubscribeTriggerFromEventsOperationSpec = {
|
|
|
30236
30864
|
queryParameters: [apiVersion3],
|
|
30237
30865
|
urlParameters: [endpoint, triggerName],
|
|
30238
30866
|
headerParameters: [accept],
|
|
30239
|
-
serializer: serializer$
|
|
30867
|
+
serializer: serializer$2
|
|
30240
30868
|
};
|
|
30241
30869
|
const startTriggerOperationSpec = {
|
|
30242
30870
|
path: "/triggers/{triggerName}/start",
|
|
@@ -30253,7 +30881,7 @@ const startTriggerOperationSpec = {
|
|
|
30253
30881
|
queryParameters: [apiVersion3],
|
|
30254
30882
|
urlParameters: [endpoint, triggerName],
|
|
30255
30883
|
headerParameters: [accept],
|
|
30256
|
-
serializer: serializer$
|
|
30884
|
+
serializer: serializer$2
|
|
30257
30885
|
};
|
|
30258
30886
|
const stopTriggerOperationSpec = {
|
|
30259
30887
|
path: "/triggers/{triggerName}/stop",
|
|
@@ -30270,7 +30898,7 @@ const stopTriggerOperationSpec = {
|
|
|
30270
30898
|
queryParameters: [apiVersion3],
|
|
30271
30899
|
urlParameters: [endpoint, triggerName],
|
|
30272
30900
|
headerParameters: [accept],
|
|
30273
|
-
serializer: serializer$
|
|
30901
|
+
serializer: serializer$2
|
|
30274
30902
|
};
|
|
30275
30903
|
const getTriggersByWorkspaceNextOperationSpec = {
|
|
30276
30904
|
path: "{nextLink}",
|
|
@@ -30286,7 +30914,7 @@ const getTriggersByWorkspaceNextOperationSpec = {
|
|
|
30286
30914
|
queryParameters: [apiVersion3],
|
|
30287
30915
|
urlParameters: [endpoint, nextLink],
|
|
30288
30916
|
headerParameters: [accept],
|
|
30289
|
-
serializer: serializer$
|
|
30917
|
+
serializer: serializer$2
|
|
30290
30918
|
};
|
|
30291
30919
|
|
|
30292
30920
|
/*
|
|
@@ -30319,7 +30947,7 @@ class TriggerRunOperationsImpl {
|
|
|
30319
30947
|
}
|
|
30320
30948
|
catch (error) {
|
|
30321
30949
|
span.setStatus({
|
|
30322
|
-
code:
|
|
30950
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
30323
30951
|
message: error.message
|
|
30324
30952
|
});
|
|
30325
30953
|
throw error;
|
|
@@ -30342,7 +30970,7 @@ class TriggerRunOperationsImpl {
|
|
|
30342
30970
|
}
|
|
30343
30971
|
catch (error) {
|
|
30344
30972
|
span.setStatus({
|
|
30345
|
-
code:
|
|
30973
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
30346
30974
|
message: error.message
|
|
30347
30975
|
});
|
|
30348
30976
|
throw error;
|
|
@@ -30364,7 +30992,7 @@ class TriggerRunOperationsImpl {
|
|
|
30364
30992
|
}
|
|
30365
30993
|
catch (error) {
|
|
30366
30994
|
span.setStatus({
|
|
30367
|
-
code:
|
|
30995
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
30368
30996
|
message: error.message
|
|
30369
30997
|
});
|
|
30370
30998
|
throw error;
|
|
@@ -30375,7 +31003,7 @@ class TriggerRunOperationsImpl {
|
|
|
30375
31003
|
}
|
|
30376
31004
|
}
|
|
30377
31005
|
// Operation Specifications
|
|
30378
|
-
const serializer$
|
|
31006
|
+
const serializer$1 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
30379
31007
|
const rerunTriggerInstanceOperationSpec = {
|
|
30380
31008
|
path: "/triggers/{triggerName}/triggerRuns/{runId}/rerun",
|
|
30381
31009
|
httpMethod: "POST",
|
|
@@ -30392,7 +31020,7 @@ const rerunTriggerInstanceOperationSpec = {
|
|
|
30392
31020
|
triggerName
|
|
30393
31021
|
],
|
|
30394
31022
|
headerParameters: [accept],
|
|
30395
|
-
serializer: serializer$
|
|
31023
|
+
serializer: serializer$1
|
|
30396
31024
|
};
|
|
30397
31025
|
const cancelTriggerInstanceOperationSpec = {
|
|
30398
31026
|
path: "/triggers/{triggerName}/triggerRuns/{runId}/cancel",
|
|
@@ -30410,7 +31038,7 @@ const cancelTriggerInstanceOperationSpec = {
|
|
|
30410
31038
|
triggerName
|
|
30411
31039
|
],
|
|
30412
31040
|
headerParameters: [accept],
|
|
30413
|
-
serializer: serializer$
|
|
31041
|
+
serializer: serializer$1
|
|
30414
31042
|
};
|
|
30415
31043
|
const queryTriggerRunsByWorkspaceOperationSpec = {
|
|
30416
31044
|
path: "/queryTriggerRuns",
|
|
@@ -30428,7 +31056,7 @@ const queryTriggerRunsByWorkspaceOperationSpec = {
|
|
|
30428
31056
|
urlParameters: [endpoint],
|
|
30429
31057
|
headerParameters: [accept, contentType],
|
|
30430
31058
|
mediaType: "json",
|
|
30431
|
-
serializer: serializer$
|
|
31059
|
+
serializer: serializer$1
|
|
30432
31060
|
};
|
|
30433
31061
|
|
|
30434
31062
|
/*
|
|
@@ -30454,12 +31082,12 @@ class WorkspaceOperationsImpl {
|
|
|
30454
31082
|
async get(options) {
|
|
30455
31083
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
30456
31084
|
try {
|
|
30457
|
-
const result = await this.client.sendOperationRequest({ options }, getOperationSpec
|
|
31085
|
+
const result = await this.client.sendOperationRequest({ options }, getOperationSpec);
|
|
30458
31086
|
return result;
|
|
30459
31087
|
}
|
|
30460
31088
|
catch (error) {
|
|
30461
31089
|
span.setStatus({
|
|
30462
|
-
code:
|
|
31090
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
30463
31091
|
message: error.message
|
|
30464
31092
|
});
|
|
30465
31093
|
throw error;
|
|
@@ -30470,8 +31098,8 @@ class WorkspaceOperationsImpl {
|
|
|
30470
31098
|
}
|
|
30471
31099
|
}
|
|
30472
31100
|
// Operation Specifications
|
|
30473
|
-
const serializer
|
|
30474
|
-
const getOperationSpec
|
|
31101
|
+
const serializer = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
31102
|
+
const getOperationSpec = {
|
|
30475
31103
|
path: "/workspace",
|
|
30476
31104
|
httpMethod: "GET",
|
|
30477
31105
|
responses: {
|
|
@@ -30485,7 +31113,7 @@ const getOperationSpec$5 = {
|
|
|
30485
31113
|
queryParameters: [apiVersion3],
|
|
30486
31114
|
urlParameters: [endpoint],
|
|
30487
31115
|
headerParameters: [accept],
|
|
30488
|
-
serializer
|
|
31116
|
+
serializer
|
|
30489
31117
|
};
|
|
30490
31118
|
|
|
30491
31119
|
/*
|
|
@@ -30495,9 +31123,9 @@ const getOperationSpec$5 = {
|
|
|
30495
31123
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
30496
31124
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
30497
31125
|
*/
|
|
30498
|
-
class
|
|
31126
|
+
class ArtifactsClient extends coreClient__namespace.ServiceClient {
|
|
30499
31127
|
/**
|
|
30500
|
-
* Initializes a new instance of the
|
|
31128
|
+
* Initializes a new instance of the ArtifactsClient class.
|
|
30501
31129
|
* @param credentials Subscription credentials which uniquely identify client subscription.
|
|
30502
31130
|
* @param endpoint The workspace development endpoint, for example
|
|
30503
31131
|
* https://myworkspace.dev.azuresynapse.net.
|
|
@@ -30518,7 +31146,7 @@ class ArtifactsClientContext extends coreClient.ServiceClient {
|
|
|
30518
31146
|
requestContentType: "application/json; charset=utf-8",
|
|
30519
31147
|
credential: credentials
|
|
30520
31148
|
};
|
|
30521
|
-
const packageDetails = `azsdk-js-synapse-artifacts/1.0.0-beta.
|
|
31149
|
+
const packageDetails = `azsdk-js-synapse-artifacts/1.0.0-beta.9`;
|
|
30522
31150
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
30523
31151
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
30524
31152
|
: `${packageDetails}`;
|
|
@@ -30531,26 +31159,6 @@ class ArtifactsClientContext extends coreClient.ServiceClient {
|
|
|
30531
31159
|
super(optionsWithDefaults);
|
|
30532
31160
|
// Parameter assignments
|
|
30533
31161
|
this.endpoint = endpoint;
|
|
30534
|
-
}
|
|
30535
|
-
}
|
|
30536
|
-
|
|
30537
|
-
/*
|
|
30538
|
-
* Copyright (c) Microsoft Corporation.
|
|
30539
|
-
* Licensed under the MIT License.
|
|
30540
|
-
*
|
|
30541
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
30542
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
30543
|
-
*/
|
|
30544
|
-
class ArtifactsClient extends ArtifactsClientContext {
|
|
30545
|
-
/**
|
|
30546
|
-
* Initializes a new instance of the ArtifactsClient class.
|
|
30547
|
-
* @param credentials Subscription credentials which uniquely identify client subscription.
|
|
30548
|
-
* @param endpoint The workspace development endpoint, for example
|
|
30549
|
-
* https://myworkspace.dev.azuresynapse.net.
|
|
30550
|
-
* @param options The parameter options
|
|
30551
|
-
*/
|
|
30552
|
-
constructor(credentials, endpoint, options) {
|
|
30553
|
-
super(credentials, endpoint, options);
|
|
30554
31162
|
this.kqlScripts = new KqlScriptsImpl(this);
|
|
30555
31163
|
this.kqlScriptOperations = new KqlScriptOperationsImpl(this);
|
|
30556
31164
|
this.metastore = new MetastoreImpl(this);
|
|
@@ -30577,5 +31185,4 @@ class ArtifactsClient extends ArtifactsClientContext {
|
|
|
30577
31185
|
}
|
|
30578
31186
|
|
|
30579
31187
|
exports.ArtifactsClient = ArtifactsClient;
|
|
30580
|
-
exports.ArtifactsClientContext = ArtifactsClientContext;
|
|
30581
31188
|
//# sourceMappingURL=index.js.map
|