@azure/synapse-artifacts 1.0.0-alpha.20220104.1 → 1.0.0-alpha.20220131.1
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 +7 -1
- package/dist/index.js +1025 -447
- package/dist/index.js.map +1 -1
- package/dist-esm/src/artifactsClient.js +2 -1
- package/dist-esm/src/artifactsClient.js.map +1 -1
- package/dist-esm/src/artifactsClientContext.js +1 -1
- package/dist-esm/src/artifactsClientContext.js.map +1 -1
- package/dist-esm/src/models/index.js +22 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.js +214 -96
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.js +31 -2
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/bigDataPools.js +2 -2
- package/dist-esm/src/operations/bigDataPools.js.map +1 -1
- package/dist-esm/src/operations/dataFlowDebugSession.js +6 -6
- package/dist-esm/src/operations/dataFlowDebugSession.js.map +1 -1
- package/dist-esm/src/operations/dataFlowOperations.js +6 -6
- package/dist-esm/src/operations/dataFlowOperations.js.map +1 -1
- package/dist-esm/src/operations/datasetOperations.js +6 -6
- package/dist-esm/src/operations/datasetOperations.js.map +1 -1
- package/dist-esm/src/operations/index.js +1 -0
- package/dist-esm/src/operations/index.js.map +1 -1
- package/dist-esm/src/operations/integrationRuntimes.js +2 -2
- package/dist-esm/src/operations/integrationRuntimes.js.map +1 -1
- package/dist-esm/src/operations/library.js +8 -8
- package/dist-esm/src/operations/library.js.map +1 -1
- package/dist-esm/src/operations/linkedServiceOperations.js +6 -6
- package/dist-esm/src/operations/linkedServiceOperations.js.map +1 -1
- package/dist-esm/src/operations/metastore.js +182 -0
- package/dist-esm/src/operations/metastore.js.map +1 -0
- package/dist-esm/src/operations/notebookOperationResult.js +1 -1
- package/dist-esm/src/operations/notebookOperationResult.js.map +1 -1
- package/dist-esm/src/operations/notebookOperations.js +8 -8
- package/dist-esm/src/operations/notebookOperations.js.map +1 -1
- package/dist-esm/src/operations/pipelineOperations.js +7 -7
- package/dist-esm/src/operations/pipelineOperations.js.map +1 -1
- package/dist-esm/src/operations/pipelineRunOperations.js +4 -4
- package/dist-esm/src/operations/pipelineRunOperations.js.map +1 -1
- package/dist-esm/src/operations/sparkConfigurationOperations.js +6 -6
- package/dist-esm/src/operations/sparkConfigurationOperations.js.map +1 -1
- package/dist-esm/src/operations/sparkJobDefinitionOperations.js +8 -8
- package/dist-esm/src/operations/sparkJobDefinitionOperations.js.map +1 -1
- package/dist-esm/src/operations/sqlPools.js +2 -2
- package/dist-esm/src/operations/sqlPools.js.map +1 -1
- package/dist-esm/src/operations/sqlScriptOperations.js +6 -6
- package/dist-esm/src/operations/sqlScriptOperations.js.map +1 -1
- package/dist-esm/src/operations/triggerOperations.js +10 -10
- package/dist-esm/src/operations/triggerOperations.js.map +1 -1
- package/dist-esm/src/operations/triggerRunOperations.js +3 -3
- package/dist-esm/src/operations/triggerRunOperations.js.map +1 -1
- package/dist-esm/src/operations/workspaceGitRepoManagement.js +1 -1
- package/dist-esm/src/operations/workspaceGitRepoManagement.js.map +1 -1
- package/dist-esm/src/operations/workspaceOperations.js +1 -1
- package/dist-esm/src/operations/workspaceOperations.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/index.js +1 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/metastore.js +9 -0
- package/dist-esm/src/operationsInterfaces/metastore.js.map +1 -0
- package/package.json +6 -7
- package/types/synapse-artifacts.d.ts +160 -4
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,6 +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;
|
|
40
|
+
(function (KnownRequestStatus) {
|
|
41
|
+
KnownRequestStatus["Running"] = "Running";
|
|
42
|
+
KnownRequestStatus["Completed"] = "Completed";
|
|
43
|
+
KnownRequestStatus["Failed"] = "Failed";
|
|
44
|
+
})(exports.KnownRequestStatus || (exports.KnownRequestStatus = {}));
|
|
45
|
+
/** Known values of {@link ResourceStatus} that the service accepts. */
|
|
46
|
+
exports.KnownResourceStatus = void 0;
|
|
47
|
+
(function (KnownResourceStatus) {
|
|
48
|
+
KnownResourceStatus["Creating"] = "Creating";
|
|
49
|
+
KnownResourceStatus["Created"] = "Created";
|
|
50
|
+
KnownResourceStatus["Failed"] = "Failed";
|
|
51
|
+
})(exports.KnownResourceStatus || (exports.KnownResourceStatus = {}));
|
|
52
|
+
/** Known values of {@link NodeSize} that the service accepts. */
|
|
53
|
+
exports.KnownNodeSize = void 0;
|
|
17
54
|
(function (KnownNodeSize) {
|
|
18
55
|
KnownNodeSize["None"] = "None";
|
|
19
56
|
KnownNodeSize["Small"] = "Small";
|
|
@@ -23,17 +60,25 @@ var coreLro = require('@azure/core-lro');
|
|
|
23
60
|
KnownNodeSize["XXLarge"] = "XXLarge";
|
|
24
61
|
KnownNodeSize["XXXLarge"] = "XXXLarge";
|
|
25
62
|
})(exports.KnownNodeSize || (exports.KnownNodeSize = {}));
|
|
63
|
+
/** Known values of {@link NodeSizeFamily} that the service accepts. */
|
|
64
|
+
exports.KnownNodeSizeFamily = void 0;
|
|
26
65
|
(function (KnownNodeSizeFamily) {
|
|
27
66
|
KnownNodeSizeFamily["None"] = "None";
|
|
28
67
|
KnownNodeSizeFamily["MemoryOptimized"] = "MemoryOptimized";
|
|
29
68
|
})(exports.KnownNodeSizeFamily || (exports.KnownNodeSizeFamily = {}));
|
|
69
|
+
/** Known values of {@link IntegrationRuntimeType} that the service accepts. */
|
|
70
|
+
exports.KnownIntegrationRuntimeType = void 0;
|
|
30
71
|
(function (KnownIntegrationRuntimeType) {
|
|
31
72
|
KnownIntegrationRuntimeType["Managed"] = "Managed";
|
|
32
73
|
KnownIntegrationRuntimeType["SelfHosted"] = "SelfHosted";
|
|
33
74
|
})(exports.KnownIntegrationRuntimeType || (exports.KnownIntegrationRuntimeType = {}));
|
|
75
|
+
/** Known values of {@link Type} that the service accepts. */
|
|
76
|
+
exports.KnownType = void 0;
|
|
34
77
|
(function (KnownType) {
|
|
35
78
|
KnownType["LinkedServiceReference"] = "LinkedServiceReference";
|
|
36
79
|
})(exports.KnownType || (exports.KnownType = {}));
|
|
80
|
+
/** Known values of {@link ParameterType} that the service accepts. */
|
|
81
|
+
exports.KnownParameterType = void 0;
|
|
37
82
|
(function (KnownParameterType) {
|
|
38
83
|
KnownParameterType["Object"] = "Object";
|
|
39
84
|
KnownParameterType["String"] = "String";
|
|
@@ -43,35 +88,49 @@ var coreLro = require('@azure/core-lro');
|
|
|
43
88
|
KnownParameterType["Array"] = "Array";
|
|
44
89
|
KnownParameterType["SecureString"] = "SecureString";
|
|
45
90
|
})(exports.KnownParameterType || (exports.KnownParameterType = {}));
|
|
91
|
+
/** Known values of {@link IntegrationRuntimeReferenceType} that the service accepts. */
|
|
92
|
+
exports.KnownIntegrationRuntimeReferenceType = void 0;
|
|
46
93
|
(function (KnownIntegrationRuntimeReferenceType) {
|
|
47
94
|
KnownIntegrationRuntimeReferenceType["IntegrationRuntimeReference"] = "IntegrationRuntimeReference";
|
|
48
95
|
})(exports.KnownIntegrationRuntimeReferenceType || (exports.KnownIntegrationRuntimeReferenceType = {}));
|
|
96
|
+
/** Known values of {@link DataFlowDebugCommandType} that the service accepts. */
|
|
97
|
+
exports.KnownDataFlowDebugCommandType = void 0;
|
|
49
98
|
(function (KnownDataFlowDebugCommandType) {
|
|
50
99
|
KnownDataFlowDebugCommandType["ExecutePreviewQuery"] = "executePreviewQuery";
|
|
51
100
|
KnownDataFlowDebugCommandType["ExecuteStatisticsQuery"] = "executeStatisticsQuery";
|
|
52
101
|
KnownDataFlowDebugCommandType["ExecuteExpressionQuery"] = "executeExpressionQuery";
|
|
53
102
|
})(exports.KnownDataFlowDebugCommandType || (exports.KnownDataFlowDebugCommandType = {}));
|
|
103
|
+
/** Known values of {@link BigDataPoolReferenceType} that the service accepts. */
|
|
104
|
+
exports.KnownBigDataPoolReferenceType = void 0;
|
|
54
105
|
(function (KnownBigDataPoolReferenceType) {
|
|
55
106
|
KnownBigDataPoolReferenceType["BigDataPoolReference"] = "BigDataPoolReference";
|
|
56
107
|
})(exports.KnownBigDataPoolReferenceType || (exports.KnownBigDataPoolReferenceType = {}));
|
|
108
|
+
/** Known values of {@link CellOutputType} that the service accepts. */
|
|
109
|
+
exports.KnownCellOutputType = void 0;
|
|
57
110
|
(function (KnownCellOutputType) {
|
|
58
111
|
KnownCellOutputType["ExecuteResult"] = "execute_result";
|
|
59
112
|
KnownCellOutputType["DisplayData"] = "display_data";
|
|
60
113
|
KnownCellOutputType["Stream"] = "stream";
|
|
61
114
|
KnownCellOutputType["Error"] = "error";
|
|
62
115
|
})(exports.KnownCellOutputType || (exports.KnownCellOutputType = {}));
|
|
116
|
+
/** Known values of {@link DependencyCondition} that the service accepts. */
|
|
117
|
+
exports.KnownDependencyCondition = void 0;
|
|
63
118
|
(function (KnownDependencyCondition) {
|
|
64
119
|
KnownDependencyCondition["Succeeded"] = "Succeeded";
|
|
65
120
|
KnownDependencyCondition["Failed"] = "Failed";
|
|
66
121
|
KnownDependencyCondition["Skipped"] = "Skipped";
|
|
67
122
|
KnownDependencyCondition["Completed"] = "Completed";
|
|
68
123
|
})(exports.KnownDependencyCondition || (exports.KnownDependencyCondition = {}));
|
|
124
|
+
/** Known values of {@link VariableType} that the service accepts. */
|
|
125
|
+
exports.KnownVariableType = void 0;
|
|
69
126
|
(function (KnownVariableType) {
|
|
70
127
|
KnownVariableType["String"] = "String";
|
|
71
128
|
KnownVariableType["Bool"] = "Bool";
|
|
72
129
|
KnownVariableType["Boolean"] = "Boolean";
|
|
73
130
|
KnownVariableType["Array"] = "Array";
|
|
74
131
|
})(exports.KnownVariableType || (exports.KnownVariableType = {}));
|
|
132
|
+
/** Known values of {@link RunQueryFilterOperand} that the service accepts. */
|
|
133
|
+
exports.KnownRunQueryFilterOperand = void 0;
|
|
75
134
|
(function (KnownRunQueryFilterOperand) {
|
|
76
135
|
KnownRunQueryFilterOperand["PipelineName"] = "PipelineName";
|
|
77
136
|
KnownRunQueryFilterOperand["Status"] = "Status";
|
|
@@ -86,12 +145,16 @@ var coreLro = require('@azure/core-lro');
|
|
|
86
145
|
KnownRunQueryFilterOperand["RunGroupId"] = "RunGroupId";
|
|
87
146
|
KnownRunQueryFilterOperand["LatestOnly"] = "LatestOnly";
|
|
88
147
|
})(exports.KnownRunQueryFilterOperand || (exports.KnownRunQueryFilterOperand = {}));
|
|
148
|
+
/** Known values of {@link RunQueryFilterOperator} that the service accepts. */
|
|
149
|
+
exports.KnownRunQueryFilterOperator = void 0;
|
|
89
150
|
(function (KnownRunQueryFilterOperator) {
|
|
90
151
|
KnownRunQueryFilterOperator["Equals"] = "Equals";
|
|
91
152
|
KnownRunQueryFilterOperator["NotEquals"] = "NotEquals";
|
|
92
153
|
KnownRunQueryFilterOperator["In"] = "In";
|
|
93
154
|
KnownRunQueryFilterOperator["NotIn"] = "NotIn";
|
|
94
155
|
})(exports.KnownRunQueryFilterOperator || (exports.KnownRunQueryFilterOperator = {}));
|
|
156
|
+
/** Known values of {@link RunQueryOrderByField} that the service accepts. */
|
|
157
|
+
exports.KnownRunQueryOrderByField = void 0;
|
|
95
158
|
(function (KnownRunQueryOrderByField) {
|
|
96
159
|
KnownRunQueryOrderByField["RunStart"] = "RunStart";
|
|
97
160
|
KnownRunQueryOrderByField["RunEnd"] = "RunEnd";
|
|
@@ -103,25 +166,35 @@ var coreLro = require('@azure/core-lro');
|
|
|
103
166
|
KnownRunQueryOrderByField["TriggerName"] = "TriggerName";
|
|
104
167
|
KnownRunQueryOrderByField["TriggerRunTimestamp"] = "TriggerRunTimestamp";
|
|
105
168
|
})(exports.KnownRunQueryOrderByField || (exports.KnownRunQueryOrderByField = {}));
|
|
169
|
+
/** Known values of {@link RunQueryOrder} that the service accepts. */
|
|
170
|
+
exports.KnownRunQueryOrder = void 0;
|
|
106
171
|
(function (KnownRunQueryOrder) {
|
|
107
172
|
KnownRunQueryOrder["ASC"] = "ASC";
|
|
108
173
|
KnownRunQueryOrder["Desc"] = "DESC";
|
|
109
174
|
})(exports.KnownRunQueryOrder || (exports.KnownRunQueryOrder = {}));
|
|
175
|
+
/** Known values of {@link SparkJobType} that the service accepts. */
|
|
176
|
+
exports.KnownSparkJobType = void 0;
|
|
110
177
|
(function (KnownSparkJobType) {
|
|
111
178
|
KnownSparkJobType["SparkBatch"] = "SparkBatch";
|
|
112
179
|
KnownSparkJobType["SparkSession"] = "SparkSession";
|
|
113
180
|
})(exports.KnownSparkJobType || (exports.KnownSparkJobType = {}));
|
|
181
|
+
/** Known values of {@link SparkBatchJobResultType} that the service accepts. */
|
|
182
|
+
exports.KnownSparkBatchJobResultType = void 0;
|
|
114
183
|
(function (KnownSparkBatchJobResultType) {
|
|
115
184
|
KnownSparkBatchJobResultType["Uncertain"] = "Uncertain";
|
|
116
185
|
KnownSparkBatchJobResultType["Succeeded"] = "Succeeded";
|
|
117
186
|
KnownSparkBatchJobResultType["Failed"] = "Failed";
|
|
118
187
|
KnownSparkBatchJobResultType["Cancelled"] = "Cancelled";
|
|
119
188
|
})(exports.KnownSparkBatchJobResultType || (exports.KnownSparkBatchJobResultType = {}));
|
|
189
|
+
/** Known values of {@link SchedulerCurrentState} that the service accepts. */
|
|
190
|
+
exports.KnownSchedulerCurrentState = void 0;
|
|
120
191
|
(function (KnownSchedulerCurrentState) {
|
|
121
192
|
KnownSchedulerCurrentState["Queued"] = "Queued";
|
|
122
193
|
KnownSchedulerCurrentState["Scheduled"] = "Scheduled";
|
|
123
194
|
KnownSchedulerCurrentState["Ended"] = "Ended";
|
|
124
195
|
})(exports.KnownSchedulerCurrentState || (exports.KnownSchedulerCurrentState = {}));
|
|
196
|
+
/** Known values of {@link PluginCurrentState} that the service accepts. */
|
|
197
|
+
exports.KnownPluginCurrentState = void 0;
|
|
125
198
|
(function (KnownPluginCurrentState) {
|
|
126
199
|
KnownPluginCurrentState["Preparation"] = "Preparation";
|
|
127
200
|
KnownPluginCurrentState["ResourceAcquisition"] = "ResourceAcquisition";
|
|
@@ -131,12 +204,16 @@ var coreLro = require('@azure/core-lro');
|
|
|
131
204
|
KnownPluginCurrentState["Cleanup"] = "Cleanup";
|
|
132
205
|
KnownPluginCurrentState["Ended"] = "Ended";
|
|
133
206
|
})(exports.KnownPluginCurrentState || (exports.KnownPluginCurrentState = {}));
|
|
207
|
+
/** Known values of {@link SparkErrorSource} that the service accepts. */
|
|
208
|
+
exports.KnownSparkErrorSource = void 0;
|
|
134
209
|
(function (KnownSparkErrorSource) {
|
|
135
210
|
KnownSparkErrorSource["System"] = "System";
|
|
136
211
|
KnownSparkErrorSource["User"] = "User";
|
|
137
212
|
KnownSparkErrorSource["Unknown"] = "Unknown";
|
|
138
213
|
KnownSparkErrorSource["Dependency"] = "Dependency";
|
|
139
214
|
})(exports.KnownSparkErrorSource || (exports.KnownSparkErrorSource = {}));
|
|
215
|
+
/** Known values of {@link LivyStates} that the service accepts. */
|
|
216
|
+
exports.KnownLivyStates = void 0;
|
|
140
217
|
(function (KnownLivyStates) {
|
|
141
218
|
KnownLivyStates["NotStarted"] = "not_started";
|
|
142
219
|
KnownLivyStates["Starting"] = "starting";
|
|
@@ -150,24 +227,34 @@ var coreLro = require('@azure/core-lro');
|
|
|
150
227
|
KnownLivyStates["Running"] = "running";
|
|
151
228
|
KnownLivyStates["Recovering"] = "recovering";
|
|
152
229
|
})(exports.KnownLivyStates || (exports.KnownLivyStates = {}));
|
|
230
|
+
/** Known values of {@link CreateMode} that the service accepts. */
|
|
231
|
+
exports.KnownCreateMode = void 0;
|
|
153
232
|
(function (KnownCreateMode) {
|
|
154
233
|
KnownCreateMode["Default"] = "Default";
|
|
155
234
|
KnownCreateMode["PointInTimeRestore"] = "PointInTimeRestore";
|
|
156
235
|
KnownCreateMode["Recovery"] = "Recovery";
|
|
157
236
|
KnownCreateMode["Restore"] = "Restore";
|
|
158
237
|
})(exports.KnownCreateMode || (exports.KnownCreateMode = {}));
|
|
238
|
+
/** Known values of {@link SqlScriptType} that the service accepts. */
|
|
239
|
+
exports.KnownSqlScriptType = void 0;
|
|
159
240
|
(function (KnownSqlScriptType) {
|
|
160
241
|
KnownSqlScriptType["SqlQuery"] = "SqlQuery";
|
|
161
242
|
})(exports.KnownSqlScriptType || (exports.KnownSqlScriptType = {}));
|
|
243
|
+
/** Known values of {@link SqlConnectionType} that the service accepts. */
|
|
244
|
+
exports.KnownSqlConnectionType = void 0;
|
|
162
245
|
(function (KnownSqlConnectionType) {
|
|
163
246
|
KnownSqlConnectionType["SqlOnDemand"] = "SqlOnDemand";
|
|
164
247
|
KnownSqlConnectionType["SqlPool"] = "SqlPool";
|
|
165
248
|
})(exports.KnownSqlConnectionType || (exports.KnownSqlConnectionType = {}));
|
|
249
|
+
/** Known values of {@link TriggerRuntimeState} that the service accepts. */
|
|
250
|
+
exports.KnownTriggerRuntimeState = void 0;
|
|
166
251
|
(function (KnownTriggerRuntimeState) {
|
|
167
252
|
KnownTriggerRuntimeState["Started"] = "Started";
|
|
168
253
|
KnownTriggerRuntimeState["Stopped"] = "Stopped";
|
|
169
254
|
KnownTriggerRuntimeState["Disabled"] = "Disabled";
|
|
170
255
|
})(exports.KnownTriggerRuntimeState || (exports.KnownTriggerRuntimeState = {}));
|
|
256
|
+
/** Known values of {@link EventSubscriptionStatus} that the service accepts. */
|
|
257
|
+
exports.KnownEventSubscriptionStatus = void 0;
|
|
171
258
|
(function (KnownEventSubscriptionStatus) {
|
|
172
259
|
KnownEventSubscriptionStatus["Enabled"] = "Enabled";
|
|
173
260
|
KnownEventSubscriptionStatus["Provisioning"] = "Provisioning";
|
|
@@ -175,43 +262,67 @@ var coreLro = require('@azure/core-lro');
|
|
|
175
262
|
KnownEventSubscriptionStatus["Disabled"] = "Disabled";
|
|
176
263
|
KnownEventSubscriptionStatus["Unknown"] = "Unknown";
|
|
177
264
|
})(exports.KnownEventSubscriptionStatus || (exports.KnownEventSubscriptionStatus = {}));
|
|
265
|
+
/** Known values of {@link TriggerRunStatus} that the service accepts. */
|
|
266
|
+
exports.KnownTriggerRunStatus = void 0;
|
|
178
267
|
(function (KnownTriggerRunStatus) {
|
|
179
268
|
KnownTriggerRunStatus["Succeeded"] = "Succeeded";
|
|
180
269
|
KnownTriggerRunStatus["Failed"] = "Failed";
|
|
181
270
|
KnownTriggerRunStatus["Inprogress"] = "Inprogress";
|
|
182
271
|
})(exports.KnownTriggerRunStatus || (exports.KnownTriggerRunStatus = {}));
|
|
272
|
+
/** Known values of {@link ExpressionType} that the service accepts. */
|
|
273
|
+
exports.KnownExpressionType = void 0;
|
|
183
274
|
(function (KnownExpressionType) {
|
|
184
275
|
KnownExpressionType["Expression"] = "Expression";
|
|
185
276
|
})(exports.KnownExpressionType || (exports.KnownExpressionType = {}));
|
|
277
|
+
/** Known values of {@link PipelineReferenceType} that the service accepts. */
|
|
278
|
+
exports.KnownPipelineReferenceType = void 0;
|
|
186
279
|
(function (KnownPipelineReferenceType) {
|
|
187
280
|
KnownPipelineReferenceType["PipelineReference"] = "PipelineReference";
|
|
188
281
|
})(exports.KnownPipelineReferenceType || (exports.KnownPipelineReferenceType = {}));
|
|
282
|
+
/** Known values of {@link DatasetReferenceType} that the service accepts. */
|
|
283
|
+
exports.KnownDatasetReferenceType = void 0;
|
|
189
284
|
(function (KnownDatasetReferenceType) {
|
|
190
285
|
KnownDatasetReferenceType["DatasetReference"] = "DatasetReference";
|
|
191
286
|
})(exports.KnownDatasetReferenceType || (exports.KnownDatasetReferenceType = {}));
|
|
287
|
+
/** Known values of {@link DataFlowReferenceType} that the service accepts. */
|
|
288
|
+
exports.KnownDataFlowReferenceType = void 0;
|
|
192
289
|
(function (KnownDataFlowReferenceType) {
|
|
193
290
|
KnownDataFlowReferenceType["DataFlowReference"] = "DataFlowReference";
|
|
194
291
|
})(exports.KnownDataFlowReferenceType || (exports.KnownDataFlowReferenceType = {}));
|
|
292
|
+
/** Known values of {@link NotebookReferenceType} that the service accepts. */
|
|
293
|
+
exports.KnownNotebookReferenceType = void 0;
|
|
195
294
|
(function (KnownNotebookReferenceType) {
|
|
196
295
|
KnownNotebookReferenceType["NotebookReference"] = "NotebookReference";
|
|
197
296
|
})(exports.KnownNotebookReferenceType || (exports.KnownNotebookReferenceType = {}));
|
|
297
|
+
/** Known values of {@link SparkJobReferenceType} that the service accepts. */
|
|
298
|
+
exports.KnownSparkJobReferenceType = void 0;
|
|
198
299
|
(function (KnownSparkJobReferenceType) {
|
|
199
300
|
KnownSparkJobReferenceType["SparkJobDefinitionReference"] = "SparkJobDefinitionReference";
|
|
200
301
|
})(exports.KnownSparkJobReferenceType || (exports.KnownSparkJobReferenceType = {}));
|
|
302
|
+
/** Known values of {@link SqlPoolReferenceType} that the service accepts. */
|
|
303
|
+
exports.KnownSqlPoolReferenceType = void 0;
|
|
201
304
|
(function (KnownSqlPoolReferenceType) {
|
|
202
305
|
KnownSqlPoolReferenceType["SqlPoolReference"] = "SqlPoolReference";
|
|
203
306
|
})(exports.KnownSqlPoolReferenceType || (exports.KnownSqlPoolReferenceType = {}));
|
|
307
|
+
/** Known values of {@link SybaseAuthenticationType} that the service accepts. */
|
|
308
|
+
exports.KnownSybaseAuthenticationType = void 0;
|
|
204
309
|
(function (KnownSybaseAuthenticationType) {
|
|
205
310
|
KnownSybaseAuthenticationType["Basic"] = "Basic";
|
|
206
311
|
KnownSybaseAuthenticationType["Windows"] = "Windows";
|
|
207
312
|
})(exports.KnownSybaseAuthenticationType || (exports.KnownSybaseAuthenticationType = {}));
|
|
313
|
+
/** Known values of {@link Db2AuthenticationType} that the service accepts. */
|
|
314
|
+
exports.KnownDb2AuthenticationType = void 0;
|
|
208
315
|
(function (KnownDb2AuthenticationType) {
|
|
209
316
|
KnownDb2AuthenticationType["Basic"] = "Basic";
|
|
210
317
|
})(exports.KnownDb2AuthenticationType || (exports.KnownDb2AuthenticationType = {}));
|
|
318
|
+
/** Known values of {@link TeradataAuthenticationType} that the service accepts. */
|
|
319
|
+
exports.KnownTeradataAuthenticationType = void 0;
|
|
211
320
|
(function (KnownTeradataAuthenticationType) {
|
|
212
321
|
KnownTeradataAuthenticationType["Basic"] = "Basic";
|
|
213
322
|
KnownTeradataAuthenticationType["Windows"] = "Windows";
|
|
214
323
|
})(exports.KnownTeradataAuthenticationType || (exports.KnownTeradataAuthenticationType = {}));
|
|
324
|
+
/** Known values of {@link ODataAuthenticationType} that the service accepts. */
|
|
325
|
+
exports.KnownODataAuthenticationType = void 0;
|
|
215
326
|
(function (KnownODataAuthenticationType) {
|
|
216
327
|
KnownODataAuthenticationType["Basic"] = "Basic";
|
|
217
328
|
KnownODataAuthenticationType["Anonymous"] = "Anonymous";
|
|
@@ -219,25 +330,35 @@ var coreLro = require('@azure/core-lro');
|
|
|
219
330
|
KnownODataAuthenticationType["AadServicePrincipal"] = "AadServicePrincipal";
|
|
220
331
|
KnownODataAuthenticationType["ManagedServiceIdentity"] = "ManagedServiceIdentity";
|
|
221
332
|
})(exports.KnownODataAuthenticationType || (exports.KnownODataAuthenticationType = {}));
|
|
333
|
+
/** Known values of {@link ODataAadServicePrincipalCredentialType} that the service accepts. */
|
|
334
|
+
exports.KnownODataAadServicePrincipalCredentialType = void 0;
|
|
222
335
|
(function (KnownODataAadServicePrincipalCredentialType) {
|
|
223
336
|
KnownODataAadServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
|
|
224
337
|
KnownODataAadServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
|
|
225
338
|
})(exports.KnownODataAadServicePrincipalCredentialType || (exports.KnownODataAadServicePrincipalCredentialType = {}));
|
|
339
|
+
/** Known values of {@link WebAuthenticationType} that the service accepts. */
|
|
340
|
+
exports.KnownWebAuthenticationType = void 0;
|
|
226
341
|
(function (KnownWebAuthenticationType) {
|
|
227
342
|
KnownWebAuthenticationType["Basic"] = "Basic";
|
|
228
343
|
KnownWebAuthenticationType["Anonymous"] = "Anonymous";
|
|
229
344
|
KnownWebAuthenticationType["ClientCertificate"] = "ClientCertificate";
|
|
230
345
|
})(exports.KnownWebAuthenticationType || (exports.KnownWebAuthenticationType = {}));
|
|
346
|
+
/** Known values of {@link MongoDbAuthenticationType} that the service accepts. */
|
|
347
|
+
exports.KnownMongoDbAuthenticationType = void 0;
|
|
231
348
|
(function (KnownMongoDbAuthenticationType) {
|
|
232
349
|
KnownMongoDbAuthenticationType["Basic"] = "Basic";
|
|
233
350
|
KnownMongoDbAuthenticationType["Anonymous"] = "Anonymous";
|
|
234
351
|
})(exports.KnownMongoDbAuthenticationType || (exports.KnownMongoDbAuthenticationType = {}));
|
|
352
|
+
/** Known values of {@link RestServiceAuthenticationType} that the service accepts. */
|
|
353
|
+
exports.KnownRestServiceAuthenticationType = void 0;
|
|
235
354
|
(function (KnownRestServiceAuthenticationType) {
|
|
236
355
|
KnownRestServiceAuthenticationType["Anonymous"] = "Anonymous";
|
|
237
356
|
KnownRestServiceAuthenticationType["Basic"] = "Basic";
|
|
238
357
|
KnownRestServiceAuthenticationType["AadServicePrincipal"] = "AadServicePrincipal";
|
|
239
358
|
KnownRestServiceAuthenticationType["ManagedServiceIdentity"] = "ManagedServiceIdentity";
|
|
240
359
|
})(exports.KnownRestServiceAuthenticationType || (exports.KnownRestServiceAuthenticationType = {}));
|
|
360
|
+
/** Known values of {@link HttpAuthenticationType} that the service accepts. */
|
|
361
|
+
exports.KnownHttpAuthenticationType = void 0;
|
|
241
362
|
(function (KnownHttpAuthenticationType) {
|
|
242
363
|
KnownHttpAuthenticationType["Basic"] = "Basic";
|
|
243
364
|
KnownHttpAuthenticationType["Anonymous"] = "Anonymous";
|
|
@@ -245,89 +366,127 @@ var coreLro = require('@azure/core-lro');
|
|
|
245
366
|
KnownHttpAuthenticationType["Windows"] = "Windows";
|
|
246
367
|
KnownHttpAuthenticationType["ClientCertificate"] = "ClientCertificate";
|
|
247
368
|
})(exports.KnownHttpAuthenticationType || (exports.KnownHttpAuthenticationType = {}));
|
|
369
|
+
/** Known values of {@link FtpAuthenticationType} that the service accepts. */
|
|
370
|
+
exports.KnownFtpAuthenticationType = void 0;
|
|
248
371
|
(function (KnownFtpAuthenticationType) {
|
|
249
372
|
KnownFtpAuthenticationType["Basic"] = "Basic";
|
|
250
373
|
KnownFtpAuthenticationType["Anonymous"] = "Anonymous";
|
|
251
374
|
})(exports.KnownFtpAuthenticationType || (exports.KnownFtpAuthenticationType = {}));
|
|
375
|
+
/** Known values of {@link SftpAuthenticationType} that the service accepts. */
|
|
376
|
+
exports.KnownSftpAuthenticationType = void 0;
|
|
252
377
|
(function (KnownSftpAuthenticationType) {
|
|
253
378
|
KnownSftpAuthenticationType["Basic"] = "Basic";
|
|
254
379
|
KnownSftpAuthenticationType["SshPublicKey"] = "SshPublicKey";
|
|
255
380
|
})(exports.KnownSftpAuthenticationType || (exports.KnownSftpAuthenticationType = {}));
|
|
381
|
+
/** Known values of {@link SapHanaAuthenticationType} that the service accepts. */
|
|
382
|
+
exports.KnownSapHanaAuthenticationType = void 0;
|
|
256
383
|
(function (KnownSapHanaAuthenticationType) {
|
|
257
384
|
KnownSapHanaAuthenticationType["Basic"] = "Basic";
|
|
258
385
|
KnownSapHanaAuthenticationType["Windows"] = "Windows";
|
|
259
386
|
})(exports.KnownSapHanaAuthenticationType || (exports.KnownSapHanaAuthenticationType = {}));
|
|
387
|
+
/** Known values of {@link GoogleBigQueryAuthenticationType} that the service accepts. */
|
|
388
|
+
exports.KnownGoogleBigQueryAuthenticationType = void 0;
|
|
260
389
|
(function (KnownGoogleBigQueryAuthenticationType) {
|
|
261
390
|
KnownGoogleBigQueryAuthenticationType["ServiceAuthentication"] = "ServiceAuthentication";
|
|
262
391
|
KnownGoogleBigQueryAuthenticationType["UserAuthentication"] = "UserAuthentication";
|
|
263
392
|
})(exports.KnownGoogleBigQueryAuthenticationType || (exports.KnownGoogleBigQueryAuthenticationType = {}));
|
|
393
|
+
/** Known values of {@link HBaseAuthenticationType} that the service accepts. */
|
|
394
|
+
exports.KnownHBaseAuthenticationType = void 0;
|
|
264
395
|
(function (KnownHBaseAuthenticationType) {
|
|
265
396
|
KnownHBaseAuthenticationType["Anonymous"] = "Anonymous";
|
|
266
397
|
KnownHBaseAuthenticationType["Basic"] = "Basic";
|
|
267
398
|
})(exports.KnownHBaseAuthenticationType || (exports.KnownHBaseAuthenticationType = {}));
|
|
399
|
+
/** Known values of {@link HiveServerType} that the service accepts. */
|
|
400
|
+
exports.KnownHiveServerType = void 0;
|
|
268
401
|
(function (KnownHiveServerType) {
|
|
269
402
|
KnownHiveServerType["HiveServer1"] = "HiveServer1";
|
|
270
403
|
KnownHiveServerType["HiveServer2"] = "HiveServer2";
|
|
271
404
|
KnownHiveServerType["HiveThriftServer"] = "HiveThriftServer";
|
|
272
405
|
})(exports.KnownHiveServerType || (exports.KnownHiveServerType = {}));
|
|
406
|
+
/** Known values of {@link HiveThriftTransportProtocol} that the service accepts. */
|
|
407
|
+
exports.KnownHiveThriftTransportProtocol = void 0;
|
|
273
408
|
(function (KnownHiveThriftTransportProtocol) {
|
|
274
409
|
KnownHiveThriftTransportProtocol["Binary"] = "Binary";
|
|
275
410
|
KnownHiveThriftTransportProtocol["Sasl"] = "SASL";
|
|
276
411
|
KnownHiveThriftTransportProtocol["Http"] = "HTTP ";
|
|
277
412
|
})(exports.KnownHiveThriftTransportProtocol || (exports.KnownHiveThriftTransportProtocol = {}));
|
|
413
|
+
/** Known values of {@link HiveAuthenticationType} that the service accepts. */
|
|
414
|
+
exports.KnownHiveAuthenticationType = void 0;
|
|
278
415
|
(function (KnownHiveAuthenticationType) {
|
|
279
416
|
KnownHiveAuthenticationType["Anonymous"] = "Anonymous";
|
|
280
417
|
KnownHiveAuthenticationType["Username"] = "Username";
|
|
281
418
|
KnownHiveAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
282
419
|
KnownHiveAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
283
420
|
})(exports.KnownHiveAuthenticationType || (exports.KnownHiveAuthenticationType = {}));
|
|
421
|
+
/** Known values of {@link ImpalaAuthenticationType} that the service accepts. */
|
|
422
|
+
exports.KnownImpalaAuthenticationType = void 0;
|
|
284
423
|
(function (KnownImpalaAuthenticationType) {
|
|
285
424
|
KnownImpalaAuthenticationType["Anonymous"] = "Anonymous";
|
|
286
425
|
KnownImpalaAuthenticationType["SaslUsername"] = "SASLUsername";
|
|
287
426
|
KnownImpalaAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
288
427
|
})(exports.KnownImpalaAuthenticationType || (exports.KnownImpalaAuthenticationType = {}));
|
|
428
|
+
/** Known values of {@link PhoenixAuthenticationType} that the service accepts. */
|
|
429
|
+
exports.KnownPhoenixAuthenticationType = void 0;
|
|
289
430
|
(function (KnownPhoenixAuthenticationType) {
|
|
290
431
|
KnownPhoenixAuthenticationType["Anonymous"] = "Anonymous";
|
|
291
432
|
KnownPhoenixAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
292
433
|
KnownPhoenixAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
293
434
|
})(exports.KnownPhoenixAuthenticationType || (exports.KnownPhoenixAuthenticationType = {}));
|
|
435
|
+
/** Known values of {@link PrestoAuthenticationType} that the service accepts. */
|
|
436
|
+
exports.KnownPrestoAuthenticationType = void 0;
|
|
294
437
|
(function (KnownPrestoAuthenticationType) {
|
|
295
438
|
KnownPrestoAuthenticationType["Anonymous"] = "Anonymous";
|
|
296
439
|
KnownPrestoAuthenticationType["Ldap"] = "LDAP";
|
|
297
440
|
})(exports.KnownPrestoAuthenticationType || (exports.KnownPrestoAuthenticationType = {}));
|
|
441
|
+
/** Known values of {@link ServiceNowAuthenticationType} that the service accepts. */
|
|
442
|
+
exports.KnownServiceNowAuthenticationType = void 0;
|
|
298
443
|
(function (KnownServiceNowAuthenticationType) {
|
|
299
444
|
KnownServiceNowAuthenticationType["Basic"] = "Basic";
|
|
300
445
|
KnownServiceNowAuthenticationType["OAuth2"] = "OAuth2";
|
|
301
446
|
})(exports.KnownServiceNowAuthenticationType || (exports.KnownServiceNowAuthenticationType = {}));
|
|
447
|
+
/** Known values of {@link SparkServerType} that the service accepts. */
|
|
448
|
+
exports.KnownSparkServerType = void 0;
|
|
302
449
|
(function (KnownSparkServerType) {
|
|
303
450
|
KnownSparkServerType["SharkServer"] = "SharkServer";
|
|
304
451
|
KnownSparkServerType["SharkServer2"] = "SharkServer2";
|
|
305
452
|
KnownSparkServerType["SparkThriftServer"] = "SparkThriftServer";
|
|
306
453
|
})(exports.KnownSparkServerType || (exports.KnownSparkServerType = {}));
|
|
454
|
+
/** Known values of {@link SparkThriftTransportProtocol} that the service accepts. */
|
|
455
|
+
exports.KnownSparkThriftTransportProtocol = void 0;
|
|
307
456
|
(function (KnownSparkThriftTransportProtocol) {
|
|
308
457
|
KnownSparkThriftTransportProtocol["Binary"] = "Binary";
|
|
309
458
|
KnownSparkThriftTransportProtocol["Sasl"] = "SASL";
|
|
310
459
|
KnownSparkThriftTransportProtocol["Http"] = "HTTP ";
|
|
311
460
|
})(exports.KnownSparkThriftTransportProtocol || (exports.KnownSparkThriftTransportProtocol = {}));
|
|
461
|
+
/** Known values of {@link SparkAuthenticationType} that the service accepts. */
|
|
462
|
+
exports.KnownSparkAuthenticationType = void 0;
|
|
312
463
|
(function (KnownSparkAuthenticationType) {
|
|
313
464
|
KnownSparkAuthenticationType["Anonymous"] = "Anonymous";
|
|
314
465
|
KnownSparkAuthenticationType["Username"] = "Username";
|
|
315
466
|
KnownSparkAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
316
467
|
KnownSparkAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
317
468
|
})(exports.KnownSparkAuthenticationType || (exports.KnownSparkAuthenticationType = {}));
|
|
469
|
+
/** Known values of {@link GoogleAdWordsAuthenticationType} that the service accepts. */
|
|
470
|
+
exports.KnownGoogleAdWordsAuthenticationType = void 0;
|
|
318
471
|
(function (KnownGoogleAdWordsAuthenticationType) {
|
|
319
472
|
KnownGoogleAdWordsAuthenticationType["ServiceAuthentication"] = "ServiceAuthentication";
|
|
320
473
|
KnownGoogleAdWordsAuthenticationType["UserAuthentication"] = "UserAuthentication";
|
|
321
474
|
})(exports.KnownGoogleAdWordsAuthenticationType || (exports.KnownGoogleAdWordsAuthenticationType = {}));
|
|
475
|
+
/** Known values of {@link SalesforceSourceReadBehavior} that the service accepts. */
|
|
476
|
+
exports.KnownSalesforceSourceReadBehavior = void 0;
|
|
322
477
|
(function (KnownSalesforceSourceReadBehavior) {
|
|
323
478
|
KnownSalesforceSourceReadBehavior["Query"] = "Query";
|
|
324
479
|
KnownSalesforceSourceReadBehavior["QueryAll"] = "QueryAll";
|
|
325
480
|
})(exports.KnownSalesforceSourceReadBehavior || (exports.KnownSalesforceSourceReadBehavior = {}));
|
|
481
|
+
/** Known values of {@link SapHanaPartitionOption} that the service accepts. */
|
|
482
|
+
exports.KnownSapHanaPartitionOption = void 0;
|
|
326
483
|
(function (KnownSapHanaPartitionOption) {
|
|
327
484
|
KnownSapHanaPartitionOption["None"] = "None";
|
|
328
485
|
KnownSapHanaPartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
329
486
|
KnownSapHanaPartitionOption["SapHanaDynamicRange"] = "SapHanaDynamicRange";
|
|
330
487
|
})(exports.KnownSapHanaPartitionOption || (exports.KnownSapHanaPartitionOption = {}));
|
|
488
|
+
/** Known values of {@link SapTablePartitionOption} that the service accepts. */
|
|
489
|
+
exports.KnownSapTablePartitionOption = void 0;
|
|
331
490
|
(function (KnownSapTablePartitionOption) {
|
|
332
491
|
KnownSapTablePartitionOption["None"] = "None";
|
|
333
492
|
KnownSapTablePartitionOption["PartitionOnInt"] = "PartitionOnInt";
|
|
@@ -336,6 +495,8 @@ var coreLro = require('@azure/core-lro');
|
|
|
336
495
|
KnownSapTablePartitionOption["PartitionOnCalendarDate"] = "PartitionOnCalendarDate";
|
|
337
496
|
KnownSapTablePartitionOption["PartitionOnTime"] = "PartitionOnTime";
|
|
338
497
|
})(exports.KnownSapTablePartitionOption || (exports.KnownSapTablePartitionOption = {}));
|
|
498
|
+
/** Known values of {@link StoredProcedureParameterType} that the service accepts. */
|
|
499
|
+
exports.KnownStoredProcedureParameterType = void 0;
|
|
339
500
|
(function (KnownStoredProcedureParameterType) {
|
|
340
501
|
KnownStoredProcedureParameterType["String"] = "String";
|
|
341
502
|
KnownStoredProcedureParameterType["Int"] = "Int";
|
|
@@ -345,16 +506,22 @@ var coreLro = require('@azure/core-lro');
|
|
|
345
506
|
KnownStoredProcedureParameterType["Boolean"] = "Boolean";
|
|
346
507
|
KnownStoredProcedureParameterType["Date"] = "Date";
|
|
347
508
|
})(exports.KnownStoredProcedureParameterType || (exports.KnownStoredProcedureParameterType = {}));
|
|
509
|
+
/** Known values of {@link OraclePartitionOption} that the service accepts. */
|
|
510
|
+
exports.KnownOraclePartitionOption = void 0;
|
|
348
511
|
(function (KnownOraclePartitionOption) {
|
|
349
512
|
KnownOraclePartitionOption["None"] = "None";
|
|
350
513
|
KnownOraclePartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
351
514
|
KnownOraclePartitionOption["DynamicRange"] = "DynamicRange";
|
|
352
515
|
})(exports.KnownOraclePartitionOption || (exports.KnownOraclePartitionOption = {}));
|
|
516
|
+
/** Known values of {@link TeradataPartitionOption} that the service accepts. */
|
|
517
|
+
exports.KnownTeradataPartitionOption = void 0;
|
|
353
518
|
(function (KnownTeradataPartitionOption) {
|
|
354
519
|
KnownTeradataPartitionOption["None"] = "None";
|
|
355
520
|
KnownTeradataPartitionOption["Hash"] = "Hash";
|
|
356
521
|
KnownTeradataPartitionOption["DynamicRange"] = "DynamicRange";
|
|
357
522
|
})(exports.KnownTeradataPartitionOption || (exports.KnownTeradataPartitionOption = {}));
|
|
523
|
+
/** Known values of {@link CassandraSourceReadConsistencyLevels} that the service accepts. */
|
|
524
|
+
exports.KnownCassandraSourceReadConsistencyLevels = void 0;
|
|
358
525
|
(function (KnownCassandraSourceReadConsistencyLevels) {
|
|
359
526
|
KnownCassandraSourceReadConsistencyLevels["ALL"] = "ALL";
|
|
360
527
|
KnownCassandraSourceReadConsistencyLevels["EachQuorum"] = "EACH_QUORUM";
|
|
@@ -367,50 +534,80 @@ var coreLro = require('@azure/core-lro');
|
|
|
367
534
|
KnownCassandraSourceReadConsistencyLevels["Serial"] = "SERIAL";
|
|
368
535
|
KnownCassandraSourceReadConsistencyLevels["LocalSerial"] = "LOCAL_SERIAL";
|
|
369
536
|
})(exports.KnownCassandraSourceReadConsistencyLevels || (exports.KnownCassandraSourceReadConsistencyLevels = {}));
|
|
537
|
+
/** Known values of {@link NetezzaPartitionOption} that the service accepts. */
|
|
538
|
+
exports.KnownNetezzaPartitionOption = void 0;
|
|
370
539
|
(function (KnownNetezzaPartitionOption) {
|
|
371
540
|
KnownNetezzaPartitionOption["None"] = "None";
|
|
372
541
|
KnownNetezzaPartitionOption["DataSlice"] = "DataSlice";
|
|
373
542
|
KnownNetezzaPartitionOption["DynamicRange"] = "DynamicRange";
|
|
374
543
|
})(exports.KnownNetezzaPartitionOption || (exports.KnownNetezzaPartitionOption = {}));
|
|
544
|
+
/** Known values of {@link NotebookParameterType} that the service accepts. */
|
|
545
|
+
exports.KnownNotebookParameterType = void 0;
|
|
546
|
+
(function (KnownNotebookParameterType) {
|
|
547
|
+
KnownNotebookParameterType["String"] = "string";
|
|
548
|
+
KnownNotebookParameterType["Int"] = "int";
|
|
549
|
+
KnownNotebookParameterType["Float"] = "float";
|
|
550
|
+
KnownNotebookParameterType["Bool"] = "bool";
|
|
551
|
+
})(exports.KnownNotebookParameterType || (exports.KnownNotebookParameterType = {}));
|
|
552
|
+
/** Known values of {@link SapCloudForCustomerSinkWriteBehavior} that the service accepts. */
|
|
553
|
+
exports.KnownSapCloudForCustomerSinkWriteBehavior = void 0;
|
|
375
554
|
(function (KnownSapCloudForCustomerSinkWriteBehavior) {
|
|
376
555
|
KnownSapCloudForCustomerSinkWriteBehavior["Insert"] = "Insert";
|
|
377
556
|
KnownSapCloudForCustomerSinkWriteBehavior["Update"] = "Update";
|
|
378
557
|
})(exports.KnownSapCloudForCustomerSinkWriteBehavior || (exports.KnownSapCloudForCustomerSinkWriteBehavior = {}));
|
|
558
|
+
/** Known values of {@link PolybaseSettingsRejectType} that the service accepts. */
|
|
559
|
+
exports.KnownPolybaseSettingsRejectType = void 0;
|
|
379
560
|
(function (KnownPolybaseSettingsRejectType) {
|
|
380
561
|
KnownPolybaseSettingsRejectType["Value"] = "value";
|
|
381
562
|
KnownPolybaseSettingsRejectType["Percentage"] = "percentage";
|
|
382
563
|
})(exports.KnownPolybaseSettingsRejectType || (exports.KnownPolybaseSettingsRejectType = {}));
|
|
564
|
+
/** Known values of {@link AzureSearchIndexWriteBehaviorType} that the service accepts. */
|
|
565
|
+
exports.KnownAzureSearchIndexWriteBehaviorType = void 0;
|
|
383
566
|
(function (KnownAzureSearchIndexWriteBehaviorType) {
|
|
384
567
|
KnownAzureSearchIndexWriteBehaviorType["Merge"] = "Merge";
|
|
385
568
|
KnownAzureSearchIndexWriteBehaviorType["Upload"] = "Upload";
|
|
386
569
|
})(exports.KnownAzureSearchIndexWriteBehaviorType || (exports.KnownAzureSearchIndexWriteBehaviorType = {}));
|
|
570
|
+
/** Known values of {@link DynamicsSinkWriteBehavior} that the service accepts. */
|
|
571
|
+
exports.KnownDynamicsSinkWriteBehavior = void 0;
|
|
387
572
|
(function (KnownDynamicsSinkWriteBehavior) {
|
|
388
573
|
KnownDynamicsSinkWriteBehavior["Upsert"] = "Upsert";
|
|
389
574
|
})(exports.KnownDynamicsSinkWriteBehavior || (exports.KnownDynamicsSinkWriteBehavior = {}));
|
|
575
|
+
/** Known values of {@link SalesforceSinkWriteBehavior} that the service accepts. */
|
|
576
|
+
exports.KnownSalesforceSinkWriteBehavior = void 0;
|
|
390
577
|
(function (KnownSalesforceSinkWriteBehavior) {
|
|
391
578
|
KnownSalesforceSinkWriteBehavior["Insert"] = "Insert";
|
|
392
579
|
KnownSalesforceSinkWriteBehavior["Upsert"] = "Upsert";
|
|
393
580
|
})(exports.KnownSalesforceSinkWriteBehavior || (exports.KnownSalesforceSinkWriteBehavior = {}));
|
|
581
|
+
/** Known values of {@link HDInsightActivityDebugInfoOption} that the service accepts. */
|
|
582
|
+
exports.KnownHDInsightActivityDebugInfoOption = void 0;
|
|
394
583
|
(function (KnownHDInsightActivityDebugInfoOption) {
|
|
395
584
|
KnownHDInsightActivityDebugInfoOption["None"] = "None";
|
|
396
585
|
KnownHDInsightActivityDebugInfoOption["Always"] = "Always";
|
|
397
586
|
KnownHDInsightActivityDebugInfoOption["Failure"] = "Failure";
|
|
398
587
|
})(exports.KnownHDInsightActivityDebugInfoOption || (exports.KnownHDInsightActivityDebugInfoOption = {}));
|
|
588
|
+
/** Known values of {@link SsisPackageLocationType} that the service accepts. */
|
|
589
|
+
exports.KnownSsisPackageLocationType = void 0;
|
|
399
590
|
(function (KnownSsisPackageLocationType) {
|
|
400
591
|
KnownSsisPackageLocationType["Ssisdb"] = "SSISDB";
|
|
401
592
|
KnownSsisPackageLocationType["File"] = "File";
|
|
402
593
|
KnownSsisPackageLocationType["InlinePackage"] = "InlinePackage";
|
|
403
594
|
KnownSsisPackageLocationType["PackageStore"] = "PackageStore";
|
|
404
595
|
})(exports.KnownSsisPackageLocationType || (exports.KnownSsisPackageLocationType = {}));
|
|
596
|
+
/** Known values of {@link SsisLogLocationType} that the service accepts. */
|
|
597
|
+
exports.KnownSsisLogLocationType = void 0;
|
|
405
598
|
(function (KnownSsisLogLocationType) {
|
|
406
599
|
KnownSsisLogLocationType["File"] = "File";
|
|
407
600
|
})(exports.KnownSsisLogLocationType || (exports.KnownSsisLogLocationType = {}));
|
|
601
|
+
/** Known values of {@link WebActivityMethod} that the service accepts. */
|
|
602
|
+
exports.KnownWebActivityMethod = void 0;
|
|
408
603
|
(function (KnownWebActivityMethod) {
|
|
409
604
|
KnownWebActivityMethod["GET"] = "GET";
|
|
410
605
|
KnownWebActivityMethod["Post"] = "POST";
|
|
411
606
|
KnownWebActivityMethod["PUT"] = "PUT";
|
|
412
607
|
KnownWebActivityMethod["Delete"] = "DELETE";
|
|
413
608
|
})(exports.KnownWebActivityMethod || (exports.KnownWebActivityMethod = {}));
|
|
609
|
+
/** Known values of {@link AzureFunctionActivityMethod} that the service accepts. */
|
|
610
|
+
exports.KnownAzureFunctionActivityMethod = void 0;
|
|
414
611
|
(function (KnownAzureFunctionActivityMethod) {
|
|
415
612
|
KnownAzureFunctionActivityMethod["GET"] = "GET";
|
|
416
613
|
KnownAzureFunctionActivityMethod["Post"] = "POST";
|
|
@@ -420,14 +617,20 @@ var coreLro = require('@azure/core-lro');
|
|
|
420
617
|
KnownAzureFunctionActivityMethod["Head"] = "HEAD";
|
|
421
618
|
KnownAzureFunctionActivityMethod["Trace"] = "TRACE";
|
|
422
619
|
})(exports.KnownAzureFunctionActivityMethod || (exports.KnownAzureFunctionActivityMethod = {}));
|
|
620
|
+
/** Known values of {@link WebHookActivityMethod} that the service accepts. */
|
|
621
|
+
exports.KnownWebHookActivityMethod = void 0;
|
|
423
622
|
(function (KnownWebHookActivityMethod) {
|
|
424
623
|
KnownWebHookActivityMethod["Post"] = "POST";
|
|
425
624
|
})(exports.KnownWebHookActivityMethod || (exports.KnownWebHookActivityMethod = {}));
|
|
625
|
+
/** Known values of {@link DataFlowComputeType} that the service accepts. */
|
|
626
|
+
exports.KnownDataFlowComputeType = void 0;
|
|
426
627
|
(function (KnownDataFlowComputeType) {
|
|
427
628
|
KnownDataFlowComputeType["General"] = "General";
|
|
428
629
|
KnownDataFlowComputeType["MemoryOptimized"] = "MemoryOptimized";
|
|
429
630
|
KnownDataFlowComputeType["ComputeOptimized"] = "ComputeOptimized";
|
|
430
631
|
})(exports.KnownDataFlowComputeType || (exports.KnownDataFlowComputeType = {}));
|
|
632
|
+
/** Known values of {@link RecurrenceFrequency} that the service accepts. */
|
|
633
|
+
exports.KnownRecurrenceFrequency = void 0;
|
|
431
634
|
(function (KnownRecurrenceFrequency) {
|
|
432
635
|
KnownRecurrenceFrequency["NotSpecified"] = "NotSpecified";
|
|
433
636
|
KnownRecurrenceFrequency["Minute"] = "Minute";
|
|
@@ -437,18 +640,26 @@ var coreLro = require('@azure/core-lro');
|
|
|
437
640
|
KnownRecurrenceFrequency["Month"] = "Month";
|
|
438
641
|
KnownRecurrenceFrequency["Year"] = "Year";
|
|
439
642
|
})(exports.KnownRecurrenceFrequency || (exports.KnownRecurrenceFrequency = {}));
|
|
643
|
+
/** Known values of {@link BlobEventType} that the service accepts. */
|
|
644
|
+
exports.KnownBlobEventType = void 0;
|
|
440
645
|
(function (KnownBlobEventType) {
|
|
441
646
|
KnownBlobEventType["MicrosoftStorageBlobCreated"] = "Microsoft.Storage.BlobCreated";
|
|
442
647
|
KnownBlobEventType["MicrosoftStorageBlobDeleted"] = "Microsoft.Storage.BlobDeleted";
|
|
443
648
|
})(exports.KnownBlobEventType || (exports.KnownBlobEventType = {}));
|
|
649
|
+
/** Known values of {@link TumblingWindowFrequency} that the service accepts. */
|
|
650
|
+
exports.KnownTumblingWindowFrequency = void 0;
|
|
444
651
|
(function (KnownTumblingWindowFrequency) {
|
|
445
652
|
KnownTumblingWindowFrequency["Minute"] = "Minute";
|
|
446
653
|
KnownTumblingWindowFrequency["Hour"] = "Hour";
|
|
447
654
|
KnownTumblingWindowFrequency["Month"] = "Month";
|
|
448
655
|
})(exports.KnownTumblingWindowFrequency || (exports.KnownTumblingWindowFrequency = {}));
|
|
656
|
+
/** Known values of {@link TriggerReferenceType} that the service accepts. */
|
|
657
|
+
exports.KnownTriggerReferenceType = void 0;
|
|
449
658
|
(function (KnownTriggerReferenceType) {
|
|
450
659
|
KnownTriggerReferenceType["TriggerReference"] = "TriggerReference";
|
|
451
660
|
})(exports.KnownTriggerReferenceType || (exports.KnownTriggerReferenceType = {}));
|
|
661
|
+
/** Known values of {@link IntegrationRuntimeState} that the service accepts. */
|
|
662
|
+
exports.KnownIntegrationRuntimeState = void 0;
|
|
452
663
|
(function (KnownIntegrationRuntimeState) {
|
|
453
664
|
KnownIntegrationRuntimeState["Initial"] = "Initial";
|
|
454
665
|
KnownIntegrationRuntimeState["Stopped"] = "Stopped";
|
|
@@ -461,32 +672,46 @@ var coreLro = require('@azure/core-lro');
|
|
|
461
672
|
KnownIntegrationRuntimeState["Offline"] = "Offline";
|
|
462
673
|
KnownIntegrationRuntimeState["AccessDenied"] = "AccessDenied";
|
|
463
674
|
})(exports.KnownIntegrationRuntimeState || (exports.KnownIntegrationRuntimeState = {}));
|
|
675
|
+
/** Known values of {@link IntegrationRuntimeSsisCatalogPricingTier} that the service accepts. */
|
|
676
|
+
exports.KnownIntegrationRuntimeSsisCatalogPricingTier = void 0;
|
|
464
677
|
(function (KnownIntegrationRuntimeSsisCatalogPricingTier) {
|
|
465
678
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Basic"] = "Basic";
|
|
466
679
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Standard"] = "Standard";
|
|
467
680
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Premium"] = "Premium";
|
|
468
681
|
KnownIntegrationRuntimeSsisCatalogPricingTier["PremiumRS"] = "PremiumRS";
|
|
469
682
|
})(exports.KnownIntegrationRuntimeSsisCatalogPricingTier || (exports.KnownIntegrationRuntimeSsisCatalogPricingTier = {}));
|
|
683
|
+
/** Known values of {@link IntegrationRuntimeLicenseType} that the service accepts. */
|
|
684
|
+
exports.KnownIntegrationRuntimeLicenseType = void 0;
|
|
470
685
|
(function (KnownIntegrationRuntimeLicenseType) {
|
|
471
686
|
KnownIntegrationRuntimeLicenseType["BasePrice"] = "BasePrice";
|
|
472
687
|
KnownIntegrationRuntimeLicenseType["LicenseIncluded"] = "LicenseIncluded";
|
|
473
688
|
})(exports.KnownIntegrationRuntimeLicenseType || (exports.KnownIntegrationRuntimeLicenseType = {}));
|
|
689
|
+
/** Known values of {@link IntegrationRuntimeEntityReferenceType} that the service accepts. */
|
|
690
|
+
exports.KnownIntegrationRuntimeEntityReferenceType = void 0;
|
|
474
691
|
(function (KnownIntegrationRuntimeEntityReferenceType) {
|
|
475
692
|
KnownIntegrationRuntimeEntityReferenceType["IntegrationRuntimeReference"] = "IntegrationRuntimeReference";
|
|
476
693
|
KnownIntegrationRuntimeEntityReferenceType["LinkedServiceReference"] = "LinkedServiceReference";
|
|
477
694
|
})(exports.KnownIntegrationRuntimeEntityReferenceType || (exports.KnownIntegrationRuntimeEntityReferenceType = {}));
|
|
695
|
+
/** Known values of {@link IntegrationRuntimeEdition} that the service accepts. */
|
|
696
|
+
exports.KnownIntegrationRuntimeEdition = void 0;
|
|
478
697
|
(function (KnownIntegrationRuntimeEdition) {
|
|
479
698
|
KnownIntegrationRuntimeEdition["Standard"] = "Standard";
|
|
480
699
|
KnownIntegrationRuntimeEdition["Enterprise"] = "Enterprise";
|
|
481
700
|
})(exports.KnownIntegrationRuntimeEdition || (exports.KnownIntegrationRuntimeEdition = {}));
|
|
701
|
+
/** Known values of {@link JsonFormatFilePattern} that the service accepts. */
|
|
702
|
+
exports.KnownJsonFormatFilePattern = void 0;
|
|
482
703
|
(function (KnownJsonFormatFilePattern) {
|
|
483
704
|
KnownJsonFormatFilePattern["SetOfObjects"] = "setOfObjects";
|
|
484
705
|
KnownJsonFormatFilePattern["ArrayOfObjects"] = "arrayOfObjects";
|
|
485
706
|
})(exports.KnownJsonFormatFilePattern || (exports.KnownJsonFormatFilePattern = {}));
|
|
707
|
+
/** Known values of {@link DatasetCompressionLevel} that the service accepts. */
|
|
708
|
+
exports.KnownDatasetCompressionLevel = void 0;
|
|
486
709
|
(function (KnownDatasetCompressionLevel) {
|
|
487
710
|
KnownDatasetCompressionLevel["Optimal"] = "Optimal";
|
|
488
711
|
KnownDatasetCompressionLevel["Fastest"] = "Fastest";
|
|
489
712
|
})(exports.KnownDatasetCompressionLevel || (exports.KnownDatasetCompressionLevel = {}));
|
|
713
|
+
/** Known values of {@link AvroCompressionCodec} that the service accepts. */
|
|
714
|
+
exports.KnownAvroCompressionCodec = void 0;
|
|
490
715
|
(function (KnownAvroCompressionCodec) {
|
|
491
716
|
KnownAvroCompressionCodec["None"] = "none";
|
|
492
717
|
KnownAvroCompressionCodec["Deflate"] = "deflate";
|
|
@@ -494,12 +719,16 @@ var coreLro = require('@azure/core-lro');
|
|
|
494
719
|
KnownAvroCompressionCodec["Xz"] = "xz";
|
|
495
720
|
KnownAvroCompressionCodec["Bzip2"] = "bzip2";
|
|
496
721
|
})(exports.KnownAvroCompressionCodec || (exports.KnownAvroCompressionCodec = {}));
|
|
722
|
+
/** Known values of {@link ParquetCompressionCodecEnum} that the service accepts. */
|
|
723
|
+
exports.KnownParquetCompressionCodecEnum = void 0;
|
|
497
724
|
(function (KnownParquetCompressionCodecEnum) {
|
|
498
725
|
KnownParquetCompressionCodecEnum["None"] = "none";
|
|
499
726
|
KnownParquetCompressionCodecEnum["Gzip"] = "gzip";
|
|
500
727
|
KnownParquetCompressionCodecEnum["Snappy"] = "snappy";
|
|
501
728
|
KnownParquetCompressionCodecEnum["Lzo"] = "lzo";
|
|
502
729
|
})(exports.KnownParquetCompressionCodecEnum || (exports.KnownParquetCompressionCodecEnum = {}));
|
|
730
|
+
/** Known values of {@link CompressionCodec} that the service accepts. */
|
|
731
|
+
exports.KnownCompressionCodec = void 0;
|
|
503
732
|
(function (KnownCompressionCodec) {
|
|
504
733
|
KnownCompressionCodec["None"] = "none";
|
|
505
734
|
KnownCompressionCodec["Lzo"] = "lzo";
|
|
@@ -512,44 +741,62 @@ var coreLro = require('@azure/core-lro');
|
|
|
512
741
|
KnownCompressionCodec["Tar"] = "tar";
|
|
513
742
|
KnownCompressionCodec["TarGZip"] = "tarGZip";
|
|
514
743
|
})(exports.KnownCompressionCodec || (exports.KnownCompressionCodec = {}));
|
|
744
|
+
/** Known values of {@link OrcCompressionCodec} that the service accepts. */
|
|
745
|
+
exports.KnownOrcCompressionCodec = void 0;
|
|
515
746
|
(function (KnownOrcCompressionCodec) {
|
|
516
747
|
KnownOrcCompressionCodec["None"] = "none";
|
|
517
748
|
KnownOrcCompressionCodec["Zlib"] = "zlib";
|
|
518
749
|
KnownOrcCompressionCodec["Snappy"] = "snappy";
|
|
519
750
|
KnownOrcCompressionCodec["Lzo"] = "lzo";
|
|
520
751
|
})(exports.KnownOrcCompressionCodec || (exports.KnownOrcCompressionCodec = {}));
|
|
752
|
+
/** Known values of {@link DynamicsDeploymentType} that the service accepts. */
|
|
753
|
+
exports.KnownDynamicsDeploymentType = void 0;
|
|
521
754
|
(function (KnownDynamicsDeploymentType) {
|
|
522
755
|
KnownDynamicsDeploymentType["Online"] = "Online";
|
|
523
756
|
KnownDynamicsDeploymentType["OnPremisesWithIfd"] = "OnPremisesWithIfd";
|
|
524
757
|
})(exports.KnownDynamicsDeploymentType || (exports.KnownDynamicsDeploymentType = {}));
|
|
758
|
+
/** Known values of {@link DynamicsAuthenticationType} that the service accepts. */
|
|
759
|
+
exports.KnownDynamicsAuthenticationType = void 0;
|
|
525
760
|
(function (KnownDynamicsAuthenticationType) {
|
|
526
761
|
KnownDynamicsAuthenticationType["Office365"] = "Office365";
|
|
527
762
|
KnownDynamicsAuthenticationType["Ifd"] = "Ifd";
|
|
528
763
|
KnownDynamicsAuthenticationType["AADServicePrincipal"] = "AADServicePrincipal";
|
|
529
764
|
})(exports.KnownDynamicsAuthenticationType || (exports.KnownDynamicsAuthenticationType = {}));
|
|
765
|
+
/** Known values of {@link DynamicsServicePrincipalCredentialType} that the service accepts. */
|
|
766
|
+
exports.KnownDynamicsServicePrincipalCredentialType = void 0;
|
|
530
767
|
(function (KnownDynamicsServicePrincipalCredentialType) {
|
|
531
768
|
KnownDynamicsServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
|
|
532
769
|
KnownDynamicsServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
|
|
533
770
|
})(exports.KnownDynamicsServicePrincipalCredentialType || (exports.KnownDynamicsServicePrincipalCredentialType = {}));
|
|
771
|
+
/** Known values of {@link HdiNodeTypes} that the service accepts. */
|
|
772
|
+
exports.KnownHdiNodeTypes = void 0;
|
|
534
773
|
(function (KnownHdiNodeTypes) {
|
|
535
774
|
KnownHdiNodeTypes["Headnode"] = "Headnode";
|
|
536
775
|
KnownHdiNodeTypes["Workernode"] = "Workernode";
|
|
537
776
|
KnownHdiNodeTypes["Zookeeper"] = "Zookeeper";
|
|
538
777
|
})(exports.KnownHdiNodeTypes || (exports.KnownHdiNodeTypes = {}));
|
|
778
|
+
/** Known values of {@link JsonWriteFilePattern} that the service accepts. */
|
|
779
|
+
exports.KnownJsonWriteFilePattern = void 0;
|
|
539
780
|
(function (KnownJsonWriteFilePattern) {
|
|
540
781
|
KnownJsonWriteFilePattern["SetOfObjects"] = "setOfObjects";
|
|
541
782
|
KnownJsonWriteFilePattern["ArrayOfObjects"] = "arrayOfObjects";
|
|
542
783
|
})(exports.KnownJsonWriteFilePattern || (exports.KnownJsonWriteFilePattern = {}));
|
|
784
|
+
/** Known values of {@link AmazonRdsForOraclePartitionOption} that the service accepts. */
|
|
785
|
+
exports.KnownAmazonRdsForOraclePartitionOption = void 0;
|
|
543
786
|
(function (KnownAmazonRdsForOraclePartitionOption) {
|
|
544
787
|
KnownAmazonRdsForOraclePartitionOption["None"] = "None";
|
|
545
788
|
KnownAmazonRdsForOraclePartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
546
789
|
KnownAmazonRdsForOraclePartitionOption["DynamicRange"] = "DynamicRange";
|
|
547
790
|
})(exports.KnownAmazonRdsForOraclePartitionOption || (exports.KnownAmazonRdsForOraclePartitionOption = {}));
|
|
791
|
+
/** Known values of {@link CopyBehaviorType} that the service accepts. */
|
|
792
|
+
exports.KnownCopyBehaviorType = void 0;
|
|
548
793
|
(function (KnownCopyBehaviorType) {
|
|
549
794
|
KnownCopyBehaviorType["PreserveHierarchy"] = "PreserveHierarchy";
|
|
550
795
|
KnownCopyBehaviorType["FlattenHierarchy"] = "FlattenHierarchy";
|
|
551
796
|
KnownCopyBehaviorType["MergeFiles"] = "MergeFiles";
|
|
552
797
|
})(exports.KnownCopyBehaviorType || (exports.KnownCopyBehaviorType = {}));
|
|
798
|
+
/** Known values of {@link SqlPartitionOption} that the service accepts. */
|
|
799
|
+
exports.KnownSqlPartitionOption = void 0;
|
|
553
800
|
(function (KnownSqlPartitionOption) {
|
|
554
801
|
KnownSqlPartitionOption["None"] = "None";
|
|
555
802
|
KnownSqlPartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
@@ -834,26 +1081,28 @@ const ArtifactRenameRequest = {
|
|
|
834
1081
|
}
|
|
835
1082
|
}
|
|
836
1083
|
};
|
|
837
|
-
const
|
|
1084
|
+
const MetastoreRegisterObject = {
|
|
838
1085
|
type: {
|
|
839
1086
|
name: "Composite",
|
|
840
|
-
className: "
|
|
1087
|
+
className: "MetastoreRegisterObject",
|
|
841
1088
|
modelProperties: {
|
|
842
|
-
|
|
843
|
-
serializedName: "
|
|
1089
|
+
inputFolder: {
|
|
1090
|
+
serializedName: "inputFolder",
|
|
844
1091
|
required: true,
|
|
845
1092
|
type: {
|
|
846
|
-
name: "
|
|
847
|
-
element: {
|
|
848
|
-
type: {
|
|
849
|
-
name: "Composite",
|
|
850
|
-
className: "SparkConfigurationResource"
|
|
851
|
-
}
|
|
852
|
-
}
|
|
1093
|
+
name: "String"
|
|
853
1094
|
}
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
|
|
1095
|
+
}
|
|
1096
|
+
}
|
|
1097
|
+
}
|
|
1098
|
+
};
|
|
1099
|
+
const MetastoreRegistrationResponse = {
|
|
1100
|
+
type: {
|
|
1101
|
+
name: "Composite",
|
|
1102
|
+
className: "MetastoreRegistrationResponse",
|
|
1103
|
+
modelProperties: {
|
|
1104
|
+
status: {
|
|
1105
|
+
serializedName: "status",
|
|
857
1106
|
type: {
|
|
858
1107
|
name: "String"
|
|
859
1108
|
}
|
|
@@ -861,28 +1110,69 @@ const SparkConfigurationListResponse = {
|
|
|
861
1110
|
}
|
|
862
1111
|
}
|
|
863
1112
|
};
|
|
864
|
-
const
|
|
1113
|
+
const MetastoreRequestSuccessResponse = {
|
|
865
1114
|
type: {
|
|
866
1115
|
name: "Composite",
|
|
867
|
-
className: "
|
|
1116
|
+
className: "MetastoreRequestSuccessResponse",
|
|
868
1117
|
modelProperties: {
|
|
869
|
-
|
|
870
|
-
serializedName: "
|
|
871
|
-
readOnly: true,
|
|
1118
|
+
status: {
|
|
1119
|
+
serializedName: "status",
|
|
872
1120
|
type: {
|
|
873
1121
|
name: "String"
|
|
874
1122
|
}
|
|
875
|
-
}
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
1123
|
+
}
|
|
1124
|
+
}
|
|
1125
|
+
}
|
|
1126
|
+
};
|
|
1127
|
+
const MetastoreUpdateObject = {
|
|
1128
|
+
type: {
|
|
1129
|
+
name: "Composite",
|
|
1130
|
+
className: "MetastoreUpdateObject",
|
|
1131
|
+
modelProperties: {
|
|
1132
|
+
inputFolder: {
|
|
1133
|
+
serializedName: "inputFolder",
|
|
1134
|
+
required: true,
|
|
1135
|
+
type: {
|
|
1136
|
+
name: "String"
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
}
|
|
1140
|
+
}
|
|
1141
|
+
};
|
|
1142
|
+
const MetastoreUpdationResponse = {
|
|
1143
|
+
type: {
|
|
1144
|
+
name: "Composite",
|
|
1145
|
+
className: "MetastoreUpdationResponse",
|
|
1146
|
+
modelProperties: {
|
|
1147
|
+
status: {
|
|
1148
|
+
serializedName: "status",
|
|
879
1149
|
type: {
|
|
880
1150
|
name: "String"
|
|
881
1151
|
}
|
|
1152
|
+
}
|
|
1153
|
+
}
|
|
1154
|
+
}
|
|
1155
|
+
};
|
|
1156
|
+
const SparkConfigurationListResponse = {
|
|
1157
|
+
type: {
|
|
1158
|
+
name: "Composite",
|
|
1159
|
+
className: "SparkConfigurationListResponse",
|
|
1160
|
+
modelProperties: {
|
|
1161
|
+
value: {
|
|
1162
|
+
serializedName: "value",
|
|
1163
|
+
required: true,
|
|
1164
|
+
type: {
|
|
1165
|
+
name: "Sequence",
|
|
1166
|
+
element: {
|
|
1167
|
+
type: {
|
|
1168
|
+
name: "Composite",
|
|
1169
|
+
className: "SparkConfigurationResource"
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1172
|
+
}
|
|
882
1173
|
},
|
|
883
|
-
|
|
884
|
-
serializedName: "
|
|
885
|
-
readOnly: true,
|
|
1174
|
+
nextLink: {
|
|
1175
|
+
serializedName: "nextLink",
|
|
886
1176
|
type: {
|
|
887
1177
|
name: "String"
|
|
888
1178
|
}
|
|
@@ -948,6 +1238,35 @@ const SparkConfiguration = {
|
|
|
948
1238
|
}
|
|
949
1239
|
}
|
|
950
1240
|
};
|
|
1241
|
+
const Resource = {
|
|
1242
|
+
type: {
|
|
1243
|
+
name: "Composite",
|
|
1244
|
+
className: "Resource",
|
|
1245
|
+
modelProperties: {
|
|
1246
|
+
id: {
|
|
1247
|
+
serializedName: "id",
|
|
1248
|
+
readOnly: true,
|
|
1249
|
+
type: {
|
|
1250
|
+
name: "String"
|
|
1251
|
+
}
|
|
1252
|
+
},
|
|
1253
|
+
name: {
|
|
1254
|
+
serializedName: "name",
|
|
1255
|
+
readOnly: true,
|
|
1256
|
+
type: {
|
|
1257
|
+
name: "String"
|
|
1258
|
+
}
|
|
1259
|
+
},
|
|
1260
|
+
type: {
|
|
1261
|
+
serializedName: "type",
|
|
1262
|
+
readOnly: true,
|
|
1263
|
+
type: {
|
|
1264
|
+
name: "String"
|
|
1265
|
+
}
|
|
1266
|
+
}
|
|
1267
|
+
}
|
|
1268
|
+
}
|
|
1269
|
+
};
|
|
951
1270
|
const CloudError = {
|
|
952
1271
|
type: {
|
|
953
1272
|
name: "Composite",
|
|
@@ -1311,20 +1630,6 @@ const CreateDataFlowDebugSessionRequest = {
|
|
|
1311
1630
|
}
|
|
1312
1631
|
}
|
|
1313
1632
|
};
|
|
1314
|
-
const SubResourceDebugResource = {
|
|
1315
|
-
type: {
|
|
1316
|
-
name: "Composite",
|
|
1317
|
-
className: "SubResourceDebugResource",
|
|
1318
|
-
modelProperties: {
|
|
1319
|
-
name: {
|
|
1320
|
-
serializedName: "name",
|
|
1321
|
-
type: {
|
|
1322
|
-
name: "String"
|
|
1323
|
-
}
|
|
1324
|
-
}
|
|
1325
|
-
}
|
|
1326
|
-
}
|
|
1327
|
-
};
|
|
1328
1633
|
const IntegrationRuntime = {
|
|
1329
1634
|
serializedName: "IntegrationRuntime",
|
|
1330
1635
|
type: {
|
|
@@ -1353,6 +1658,20 @@ const IntegrationRuntime = {
|
|
|
1353
1658
|
}
|
|
1354
1659
|
}
|
|
1355
1660
|
};
|
|
1661
|
+
const SubResourceDebugResource = {
|
|
1662
|
+
type: {
|
|
1663
|
+
name: "Composite",
|
|
1664
|
+
className: "SubResourceDebugResource",
|
|
1665
|
+
modelProperties: {
|
|
1666
|
+
name: {
|
|
1667
|
+
serializedName: "name",
|
|
1668
|
+
type: {
|
|
1669
|
+
name: "String"
|
|
1670
|
+
}
|
|
1671
|
+
}
|
|
1672
|
+
}
|
|
1673
|
+
}
|
|
1674
|
+
};
|
|
1356
1675
|
const CreateDataFlowDebugSessionResponse = {
|
|
1357
1676
|
type: {
|
|
1358
1677
|
name: "Composite",
|
|
@@ -6050,6 +6369,7 @@ const StoredProcedureParameter = {
|
|
|
6050
6369
|
modelProperties: {
|
|
6051
6370
|
value: {
|
|
6052
6371
|
serializedName: "value",
|
|
6372
|
+
nullable: true,
|
|
6053
6373
|
type: {
|
|
6054
6374
|
name: "any"
|
|
6055
6375
|
}
|
|
@@ -6304,6 +6624,27 @@ const ImportSettings = {
|
|
|
6304
6624
|
}
|
|
6305
6625
|
}
|
|
6306
6626
|
};
|
|
6627
|
+
const NotebookParameter = {
|
|
6628
|
+
type: {
|
|
6629
|
+
name: "Composite",
|
|
6630
|
+
className: "NotebookParameter",
|
|
6631
|
+
modelProperties: {
|
|
6632
|
+
value: {
|
|
6633
|
+
serializedName: "value",
|
|
6634
|
+
nullable: true,
|
|
6635
|
+
type: {
|
|
6636
|
+
name: "any"
|
|
6637
|
+
}
|
|
6638
|
+
},
|
|
6639
|
+
type: {
|
|
6640
|
+
serializedName: "type",
|
|
6641
|
+
type: {
|
|
6642
|
+
name: "String"
|
|
6643
|
+
}
|
|
6644
|
+
}
|
|
6645
|
+
}
|
|
6646
|
+
}
|
|
6647
|
+
};
|
|
6307
6648
|
const PolybaseSettings = {
|
|
6308
6649
|
type: {
|
|
6309
6650
|
name: "Composite",
|
|
@@ -7567,6 +7908,58 @@ const Flowlet = {
|
|
|
7567
7908
|
} })
|
|
7568
7909
|
}
|
|
7569
7910
|
};
|
|
7911
|
+
const ManagedIntegrationRuntime = {
|
|
7912
|
+
serializedName: "Managed",
|
|
7913
|
+
type: {
|
|
7914
|
+
name: "Composite",
|
|
7915
|
+
className: "ManagedIntegrationRuntime",
|
|
7916
|
+
uberParent: "IntegrationRuntime",
|
|
7917
|
+
additionalProperties: { type: { name: "Object" } },
|
|
7918
|
+
polymorphicDiscriminator: IntegrationRuntime.type.polymorphicDiscriminator,
|
|
7919
|
+
modelProperties: Object.assign(Object.assign({}, IntegrationRuntime.type.modelProperties), { state: {
|
|
7920
|
+
serializedName: "state",
|
|
7921
|
+
readOnly: true,
|
|
7922
|
+
type: {
|
|
7923
|
+
name: "String"
|
|
7924
|
+
}
|
|
7925
|
+
}, managedVirtualNetwork: {
|
|
7926
|
+
serializedName: "managedVirtualNetwork",
|
|
7927
|
+
type: {
|
|
7928
|
+
name: "Composite",
|
|
7929
|
+
className: "ManagedVirtualNetworkReference"
|
|
7930
|
+
}
|
|
7931
|
+
}, computeProperties: {
|
|
7932
|
+
serializedName: "typeProperties.computeProperties",
|
|
7933
|
+
type: {
|
|
7934
|
+
name: "Composite",
|
|
7935
|
+
className: "IntegrationRuntimeComputeProperties"
|
|
7936
|
+
}
|
|
7937
|
+
}, ssisProperties: {
|
|
7938
|
+
serializedName: "typeProperties.ssisProperties",
|
|
7939
|
+
type: {
|
|
7940
|
+
name: "Composite",
|
|
7941
|
+
className: "IntegrationRuntimeSsisProperties"
|
|
7942
|
+
}
|
|
7943
|
+
} })
|
|
7944
|
+
}
|
|
7945
|
+
};
|
|
7946
|
+
const SelfHostedIntegrationRuntime = {
|
|
7947
|
+
serializedName: "SelfHosted",
|
|
7948
|
+
type: {
|
|
7949
|
+
name: "Composite",
|
|
7950
|
+
className: "SelfHostedIntegrationRuntime",
|
|
7951
|
+
uberParent: "IntegrationRuntime",
|
|
7952
|
+
additionalProperties: { type: { name: "Object" } },
|
|
7953
|
+
polymorphicDiscriminator: IntegrationRuntime.type.polymorphicDiscriminator,
|
|
7954
|
+
modelProperties: Object.assign(Object.assign({}, IntegrationRuntime.type.modelProperties), { linkedInfo: {
|
|
7955
|
+
serializedName: "typeProperties.linkedInfo",
|
|
7956
|
+
type: {
|
|
7957
|
+
name: "Composite",
|
|
7958
|
+
className: "LinkedIntegrationRuntimeType"
|
|
7959
|
+
}
|
|
7960
|
+
} })
|
|
7961
|
+
}
|
|
7962
|
+
};
|
|
7570
7963
|
const IntegrationRuntimeDebugResource = {
|
|
7571
7964
|
type: {
|
|
7572
7965
|
name: "Composite",
|
|
@@ -7619,84 +8012,32 @@ const LinkedServiceDebugResource = {
|
|
|
7619
8012
|
} })
|
|
7620
8013
|
}
|
|
7621
8014
|
};
|
|
7622
|
-
const
|
|
7623
|
-
serializedName: "
|
|
8015
|
+
const AmazonS3Dataset = {
|
|
8016
|
+
serializedName: "AmazonS3Object",
|
|
7624
8017
|
type: {
|
|
7625
8018
|
name: "Composite",
|
|
7626
|
-
className: "
|
|
7627
|
-
uberParent: "
|
|
8019
|
+
className: "AmazonS3Dataset",
|
|
8020
|
+
uberParent: "Dataset",
|
|
7628
8021
|
additionalProperties: { type: { name: "Object" } },
|
|
7629
|
-
polymorphicDiscriminator:
|
|
7630
|
-
modelProperties: Object.assign(Object.assign({},
|
|
7631
|
-
serializedName: "
|
|
7632
|
-
|
|
8022
|
+
polymorphicDiscriminator: Dataset.type.polymorphicDiscriminator,
|
|
8023
|
+
modelProperties: Object.assign(Object.assign({}, Dataset.type.modelProperties), { bucketName: {
|
|
8024
|
+
serializedName: "typeProperties.bucketName",
|
|
8025
|
+
required: true,
|
|
7633
8026
|
type: {
|
|
7634
|
-
name: "
|
|
8027
|
+
name: "any"
|
|
7635
8028
|
}
|
|
7636
|
-
},
|
|
7637
|
-
serializedName: "
|
|
8029
|
+
}, key: {
|
|
8030
|
+
serializedName: "typeProperties.key",
|
|
7638
8031
|
type: {
|
|
7639
|
-
name: "
|
|
7640
|
-
className: "ManagedVirtualNetworkReference"
|
|
8032
|
+
name: "any"
|
|
7641
8033
|
}
|
|
7642
|
-
},
|
|
7643
|
-
serializedName: "typeProperties.
|
|
8034
|
+
}, prefix: {
|
|
8035
|
+
serializedName: "typeProperties.prefix",
|
|
7644
8036
|
type: {
|
|
7645
|
-
name: "
|
|
7646
|
-
className: "IntegrationRuntimeComputeProperties"
|
|
8037
|
+
name: "any"
|
|
7647
8038
|
}
|
|
7648
|
-
},
|
|
7649
|
-
serializedName: "typeProperties.
|
|
7650
|
-
type: {
|
|
7651
|
-
name: "Composite",
|
|
7652
|
-
className: "IntegrationRuntimeSsisProperties"
|
|
7653
|
-
}
|
|
7654
|
-
} })
|
|
7655
|
-
}
|
|
7656
|
-
};
|
|
7657
|
-
const SelfHostedIntegrationRuntime = {
|
|
7658
|
-
serializedName: "SelfHosted",
|
|
7659
|
-
type: {
|
|
7660
|
-
name: "Composite",
|
|
7661
|
-
className: "SelfHostedIntegrationRuntime",
|
|
7662
|
-
uberParent: "IntegrationRuntime",
|
|
7663
|
-
additionalProperties: { type: { name: "Object" } },
|
|
7664
|
-
polymorphicDiscriminator: IntegrationRuntime.type.polymorphicDiscriminator,
|
|
7665
|
-
modelProperties: Object.assign(Object.assign({}, IntegrationRuntime.type.modelProperties), { linkedInfo: {
|
|
7666
|
-
serializedName: "typeProperties.linkedInfo",
|
|
7667
|
-
type: {
|
|
7668
|
-
name: "Composite",
|
|
7669
|
-
className: "LinkedIntegrationRuntimeType"
|
|
7670
|
-
}
|
|
7671
|
-
} })
|
|
7672
|
-
}
|
|
7673
|
-
};
|
|
7674
|
-
const AmazonS3Dataset = {
|
|
7675
|
-
serializedName: "AmazonS3Object",
|
|
7676
|
-
type: {
|
|
7677
|
-
name: "Composite",
|
|
7678
|
-
className: "AmazonS3Dataset",
|
|
7679
|
-
uberParent: "Dataset",
|
|
7680
|
-
additionalProperties: { type: { name: "Object" } },
|
|
7681
|
-
polymorphicDiscriminator: Dataset.type.polymorphicDiscriminator,
|
|
7682
|
-
modelProperties: Object.assign(Object.assign({}, Dataset.type.modelProperties), { bucketName: {
|
|
7683
|
-
serializedName: "typeProperties.bucketName",
|
|
7684
|
-
required: true,
|
|
7685
|
-
type: {
|
|
7686
|
-
name: "any"
|
|
7687
|
-
}
|
|
7688
|
-
}, key: {
|
|
7689
|
-
serializedName: "typeProperties.key",
|
|
7690
|
-
type: {
|
|
7691
|
-
name: "any"
|
|
7692
|
-
}
|
|
7693
|
-
}, prefix: {
|
|
7694
|
-
serializedName: "typeProperties.prefix",
|
|
7695
|
-
type: {
|
|
7696
|
-
name: "any"
|
|
7697
|
-
}
|
|
7698
|
-
}, version: {
|
|
7699
|
-
serializedName: "typeProperties.version",
|
|
8039
|
+
}, version: {
|
|
8040
|
+
serializedName: "typeProperties.version",
|
|
7700
8041
|
type: {
|
|
7701
8042
|
name: "any"
|
|
7702
8043
|
}
|
|
@@ -11569,6 +11910,17 @@ const AzureBlobFSLinkedService = {
|
|
|
11569
11910
|
type: {
|
|
11570
11911
|
name: "any"
|
|
11571
11912
|
}
|
|
11913
|
+
}, servicePrincipalCredentialType: {
|
|
11914
|
+
serializedName: "typeProperties.servicePrincipalCredentialType",
|
|
11915
|
+
type: {
|
|
11916
|
+
name: "any"
|
|
11917
|
+
}
|
|
11918
|
+
}, servicePrincipalCredential: {
|
|
11919
|
+
serializedName: "typeProperties.servicePrincipalCredential",
|
|
11920
|
+
type: {
|
|
11921
|
+
name: "Composite",
|
|
11922
|
+
className: "SecretBase"
|
|
11923
|
+
}
|
|
11572
11924
|
}, encryptedCredential: {
|
|
11573
11925
|
serializedName: "typeProperties.encryptedCredential",
|
|
11574
11926
|
type: {
|
|
@@ -14427,9 +14779,13 @@ const GoogleAdWordsLinkedService = {
|
|
|
14427
14779
|
uberParent: "LinkedService",
|
|
14428
14780
|
additionalProperties: { type: { name: "Object" } },
|
|
14429
14781
|
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
14430
|
-
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), {
|
|
14782
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { connectionProperties: {
|
|
14783
|
+
serializedName: "typeProperties.connectionProperties",
|
|
14784
|
+
type: {
|
|
14785
|
+
name: "any"
|
|
14786
|
+
}
|
|
14787
|
+
}, clientCustomerID: {
|
|
14431
14788
|
serializedName: "typeProperties.clientCustomerID",
|
|
14432
|
-
required: true,
|
|
14433
14789
|
type: {
|
|
14434
14790
|
name: "any"
|
|
14435
14791
|
}
|
|
@@ -14441,7 +14797,6 @@ const GoogleAdWordsLinkedService = {
|
|
|
14441
14797
|
}
|
|
14442
14798
|
}, authenticationType: {
|
|
14443
14799
|
serializedName: "typeProperties.authenticationType",
|
|
14444
|
-
required: true,
|
|
14445
14800
|
type: {
|
|
14446
14801
|
name: "String"
|
|
14447
14802
|
}
|
|
@@ -15838,6 +16193,11 @@ const FtpReadSettings = {
|
|
|
15838
16193
|
type: {
|
|
15839
16194
|
name: "Boolean"
|
|
15840
16195
|
}
|
|
16196
|
+
}, disableChunking: {
|
|
16197
|
+
serializedName: "disableChunking",
|
|
16198
|
+
type: {
|
|
16199
|
+
name: "any"
|
|
16200
|
+
}
|
|
15841
16201
|
} })
|
|
15842
16202
|
}
|
|
15843
16203
|
};
|
|
@@ -15894,6 +16254,11 @@ const SftpReadSettings = {
|
|
|
15894
16254
|
type: {
|
|
15895
16255
|
name: "any"
|
|
15896
16256
|
}
|
|
16257
|
+
}, disableChunking: {
|
|
16258
|
+
serializedName: "disableChunking",
|
|
16259
|
+
type: {
|
|
16260
|
+
name: "any"
|
|
16261
|
+
}
|
|
15897
16262
|
} })
|
|
15898
16263
|
}
|
|
15899
16264
|
};
|
|
@@ -20318,7 +20683,7 @@ const SynapseNotebookActivity = {
|
|
|
20318
20683
|
serializedName: "typeProperties.parameters",
|
|
20319
20684
|
type: {
|
|
20320
20685
|
name: "Dictionary",
|
|
20321
|
-
value: { type: { name: "
|
|
20686
|
+
value: { type: { name: "Composite", className: "NotebookParameter" } }
|
|
20322
20687
|
}
|
|
20323
20688
|
} })
|
|
20324
20689
|
}
|
|
@@ -22422,9 +22787,14 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22422
22787
|
ErrorResponse: ErrorResponse,
|
|
22423
22788
|
ErrorAdditionalInfo: ErrorAdditionalInfo,
|
|
22424
22789
|
ArtifactRenameRequest: ArtifactRenameRequest,
|
|
22790
|
+
MetastoreRegisterObject: MetastoreRegisterObject,
|
|
22791
|
+
MetastoreRegistrationResponse: MetastoreRegistrationResponse,
|
|
22792
|
+
MetastoreRequestSuccessResponse: MetastoreRequestSuccessResponse,
|
|
22793
|
+
MetastoreUpdateObject: MetastoreUpdateObject,
|
|
22794
|
+
MetastoreUpdationResponse: MetastoreUpdationResponse,
|
|
22425
22795
|
SparkConfigurationListResponse: SparkConfigurationListResponse,
|
|
22426
|
-
Resource: Resource,
|
|
22427
22796
|
SparkConfiguration: SparkConfiguration,
|
|
22797
|
+
Resource: Resource,
|
|
22428
22798
|
CloudError: CloudError,
|
|
22429
22799
|
BigDataPoolResourceInfoListResult: BigDataPoolResourceInfoListResult,
|
|
22430
22800
|
AutoScaleProperties: AutoScaleProperties,
|
|
@@ -22437,8 +22807,8 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22437
22807
|
CloudErrorAutoGenerated: CloudErrorAutoGenerated,
|
|
22438
22808
|
DataFlowListResponse: DataFlowListResponse,
|
|
22439
22809
|
CreateDataFlowDebugSessionRequest: CreateDataFlowDebugSessionRequest,
|
|
22440
|
-
SubResourceDebugResource: SubResourceDebugResource,
|
|
22441
22810
|
IntegrationRuntime: IntegrationRuntime,
|
|
22811
|
+
SubResourceDebugResource: SubResourceDebugResource,
|
|
22442
22812
|
CreateDataFlowDebugSessionResponse: CreateDataFlowDebugSessionResponse,
|
|
22443
22813
|
QueryDataFlowDebugSessionsResponse: QueryDataFlowDebugSessionsResponse,
|
|
22444
22814
|
DataFlowDebugSessionInfo: DataFlowDebugSessionInfo,
|
|
@@ -22589,6 +22959,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22589
22959
|
RedshiftUnloadSettings: RedshiftUnloadSettings,
|
|
22590
22960
|
ExportSettings: ExportSettings,
|
|
22591
22961
|
ImportSettings: ImportSettings,
|
|
22962
|
+
NotebookParameter: NotebookParameter,
|
|
22592
22963
|
PolybaseSettings: PolybaseSettings,
|
|
22593
22964
|
DWCopyCommandSettings: DWCopyCommandSettings,
|
|
22594
22965
|
DWCopyCommandDefaultValue: DWCopyCommandDefaultValue,
|
|
@@ -22629,12 +23000,12 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22629
23000
|
ProxyResource: ProxyResource,
|
|
22630
23001
|
MappingDataFlow: MappingDataFlow,
|
|
22631
23002
|
Flowlet: Flowlet,
|
|
23003
|
+
ManagedIntegrationRuntime: ManagedIntegrationRuntime,
|
|
23004
|
+
SelfHostedIntegrationRuntime: SelfHostedIntegrationRuntime,
|
|
22632
23005
|
IntegrationRuntimeDebugResource: IntegrationRuntimeDebugResource,
|
|
22633
23006
|
DataFlowDebugResource: DataFlowDebugResource,
|
|
22634
23007
|
DatasetDebugResource: DatasetDebugResource,
|
|
22635
23008
|
LinkedServiceDebugResource: LinkedServiceDebugResource,
|
|
22636
|
-
ManagedIntegrationRuntime: ManagedIntegrationRuntime,
|
|
22637
|
-
SelfHostedIntegrationRuntime: SelfHostedIntegrationRuntime,
|
|
22638
23009
|
AmazonS3Dataset: AmazonS3Dataset,
|
|
22639
23010
|
AvroDataset: AvroDataset,
|
|
22640
23011
|
ExcelDataset: ExcelDataset,
|
|
@@ -23171,7 +23542,36 @@ const renameRequest = {
|
|
|
23171
23542
|
parameterPath: "renameRequest",
|
|
23172
23543
|
mapper: ArtifactRenameRequest
|
|
23173
23544
|
};
|
|
23545
|
+
const registerBody = {
|
|
23546
|
+
parameterPath: "registerBody",
|
|
23547
|
+
mapper: MetastoreRegisterObject
|
|
23548
|
+
};
|
|
23174
23549
|
const apiVersion1 = {
|
|
23550
|
+
parameterPath: "apiVersion",
|
|
23551
|
+
mapper: {
|
|
23552
|
+
defaultValue: "2021-07-01-preview",
|
|
23553
|
+
isConstant: true,
|
|
23554
|
+
serializedName: "api-version",
|
|
23555
|
+
type: {
|
|
23556
|
+
name: "String"
|
|
23557
|
+
}
|
|
23558
|
+
}
|
|
23559
|
+
};
|
|
23560
|
+
const id = {
|
|
23561
|
+
parameterPath: "id",
|
|
23562
|
+
mapper: {
|
|
23563
|
+
serializedName: "id",
|
|
23564
|
+
required: true,
|
|
23565
|
+
type: {
|
|
23566
|
+
name: "String"
|
|
23567
|
+
}
|
|
23568
|
+
}
|
|
23569
|
+
};
|
|
23570
|
+
const updateBody = {
|
|
23571
|
+
parameterPath: "updateBody",
|
|
23572
|
+
mapper: MetastoreUpdateObject
|
|
23573
|
+
};
|
|
23574
|
+
const apiVersion2 = {
|
|
23175
23575
|
parameterPath: "apiVersion",
|
|
23176
23576
|
mapper: {
|
|
23177
23577
|
defaultValue: "2021-06-01-preview",
|
|
@@ -23218,7 +23618,7 @@ const request = {
|
|
|
23218
23618
|
parameterPath: "request",
|
|
23219
23619
|
mapper: ArtifactRenameRequest
|
|
23220
23620
|
};
|
|
23221
|
-
const
|
|
23621
|
+
const apiVersion3 = {
|
|
23222
23622
|
parameterPath: "apiVersion",
|
|
23223
23623
|
mapper: {
|
|
23224
23624
|
defaultValue: "2020-12-01",
|
|
@@ -23642,7 +24042,7 @@ class KqlScriptsImpl {
|
|
|
23642
24042
|
}
|
|
23643
24043
|
catch (error) {
|
|
23644
24044
|
span.setStatus({
|
|
23645
|
-
code:
|
|
24045
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23646
24046
|
message: error.message
|
|
23647
24047
|
});
|
|
23648
24048
|
throw error;
|
|
@@ -23664,7 +24064,7 @@ class KqlScriptsImpl {
|
|
|
23664
24064
|
}
|
|
23665
24065
|
catch (error) {
|
|
23666
24066
|
span.setStatus({
|
|
23667
|
-
code:
|
|
24067
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23668
24068
|
message: error.message
|
|
23669
24069
|
});
|
|
23670
24070
|
throw error;
|
|
@@ -23675,7 +24075,7 @@ class KqlScriptsImpl {
|
|
|
23675
24075
|
}
|
|
23676
24076
|
}
|
|
23677
24077
|
// Operation Specifications
|
|
23678
|
-
const serializer =
|
|
24078
|
+
const serializer$l = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
23679
24079
|
const getAllOperationSpec = {
|
|
23680
24080
|
path: "/kqlScripts",
|
|
23681
24081
|
httpMethod: "GET",
|
|
@@ -23690,7 +24090,7 @@ const getAllOperationSpec = {
|
|
|
23690
24090
|
queryParameters: [apiVersion],
|
|
23691
24091
|
urlParameters: [endpoint],
|
|
23692
24092
|
headerParameters: [accept],
|
|
23693
|
-
serializer
|
|
24093
|
+
serializer: serializer$l
|
|
23694
24094
|
};
|
|
23695
24095
|
const getAllNextOperationSpec = {
|
|
23696
24096
|
path: "{nextLink}",
|
|
@@ -23706,7 +24106,7 @@ const getAllNextOperationSpec = {
|
|
|
23706
24106
|
queryParameters: [apiVersion],
|
|
23707
24107
|
urlParameters: [endpoint, nextLink],
|
|
23708
24108
|
headerParameters: [accept],
|
|
23709
|
-
serializer
|
|
24109
|
+
serializer: serializer$l
|
|
23710
24110
|
};
|
|
23711
24111
|
|
|
23712
24112
|
/*
|
|
@@ -23764,7 +24164,7 @@ class KqlScriptOperationsImpl {
|
|
|
23764
24164
|
}
|
|
23765
24165
|
catch (error) {
|
|
23766
24166
|
span.setStatus({
|
|
23767
|
-
code:
|
|
24167
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23768
24168
|
message: error.message
|
|
23769
24169
|
});
|
|
23770
24170
|
throw error;
|
|
@@ -23821,7 +24221,7 @@ class KqlScriptOperationsImpl {
|
|
|
23821
24221
|
}
|
|
23822
24222
|
catch (error) {
|
|
23823
24223
|
span.setStatus({
|
|
23824
|
-
code:
|
|
24224
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23825
24225
|
message: error.message
|
|
23826
24226
|
});
|
|
23827
24227
|
throw error;
|
|
@@ -23844,7 +24244,7 @@ class KqlScriptOperationsImpl {
|
|
|
23844
24244
|
}
|
|
23845
24245
|
catch (error) {
|
|
23846
24246
|
span.setStatus({
|
|
23847
|
-
code:
|
|
24247
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23848
24248
|
message: error.message
|
|
23849
24249
|
});
|
|
23850
24250
|
throw error;
|
|
@@ -23902,7 +24302,7 @@ class KqlScriptOperationsImpl {
|
|
|
23902
24302
|
}
|
|
23903
24303
|
catch (error) {
|
|
23904
24304
|
span.setStatus({
|
|
23905
|
-
code:
|
|
24305
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23906
24306
|
message: error.message
|
|
23907
24307
|
});
|
|
23908
24308
|
throw error;
|
|
@@ -23948,7 +24348,7 @@ class KqlScriptOperationsImpl {
|
|
|
23948
24348
|
}
|
|
23949
24349
|
}
|
|
23950
24350
|
// Operation Specifications
|
|
23951
|
-
const serializer$
|
|
24351
|
+
const serializer$k = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
23952
24352
|
const createOrUpdateOperationSpec = {
|
|
23953
24353
|
path: "/kqlScripts/{kqlScriptName}",
|
|
23954
24354
|
httpMethod: "PUT",
|
|
@@ -23974,7 +24374,7 @@ const createOrUpdateOperationSpec = {
|
|
|
23974
24374
|
urlParameters: [endpoint, kqlScriptName],
|
|
23975
24375
|
headerParameters: [accept, contentType],
|
|
23976
24376
|
mediaType: "json",
|
|
23977
|
-
serializer: serializer$
|
|
24377
|
+
serializer: serializer$k
|
|
23978
24378
|
};
|
|
23979
24379
|
const getByNameOperationSpec = {
|
|
23980
24380
|
path: "/kqlScripts/{kqlScriptName}",
|
|
@@ -23990,7 +24390,7 @@ const getByNameOperationSpec = {
|
|
|
23990
24390
|
queryParameters: [apiVersion],
|
|
23991
24391
|
urlParameters: [endpoint, kqlScriptName],
|
|
23992
24392
|
headerParameters: [accept],
|
|
23993
|
-
serializer: serializer$
|
|
24393
|
+
serializer: serializer$k
|
|
23994
24394
|
};
|
|
23995
24395
|
const deleteByNameOperationSpec = {
|
|
23996
24396
|
path: "/kqlScripts/{kqlScriptName}",
|
|
@@ -24007,7 +24407,7 @@ const deleteByNameOperationSpec = {
|
|
|
24007
24407
|
queryParameters: [apiVersion],
|
|
24008
24408
|
urlParameters: [endpoint, kqlScriptName],
|
|
24009
24409
|
headerParameters: [accept],
|
|
24010
|
-
serializer: serializer$
|
|
24410
|
+
serializer: serializer$k
|
|
24011
24411
|
};
|
|
24012
24412
|
const renameOperationSpec = {
|
|
24013
24413
|
path: "/kqlScripts/{kqlScriptName}/rename",
|
|
@@ -24026,7 +24426,184 @@ const renameOperationSpec = {
|
|
|
24026
24426
|
urlParameters: [endpoint, kqlScriptName],
|
|
24027
24427
|
headerParameters: [accept, contentType],
|
|
24028
24428
|
mediaType: "json",
|
|
24029
|
-
serializer: serializer$
|
|
24429
|
+
serializer: serializer$k
|
|
24430
|
+
};
|
|
24431
|
+
|
|
24432
|
+
/*
|
|
24433
|
+
* Copyright (c) Microsoft Corporation.
|
|
24434
|
+
* Licensed under the MIT License.
|
|
24435
|
+
*
|
|
24436
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
24437
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
24438
|
+
*/
|
|
24439
|
+
/** Class containing Metastore operations. */
|
|
24440
|
+
class MetastoreImpl {
|
|
24441
|
+
/**
|
|
24442
|
+
* Initialize a new instance of the class Metastore class.
|
|
24443
|
+
* @param client Reference to the service client
|
|
24444
|
+
*/
|
|
24445
|
+
constructor(client) {
|
|
24446
|
+
this.client = client;
|
|
24447
|
+
}
|
|
24448
|
+
/**
|
|
24449
|
+
* Register files in Syms
|
|
24450
|
+
* @param id The name of the database to be created. The name can contain only alphanumeric characters
|
|
24451
|
+
* and should not exceed 24 characters
|
|
24452
|
+
* @param registerBody The body for the register request
|
|
24453
|
+
* @param options The options parameters.
|
|
24454
|
+
*/
|
|
24455
|
+
async register(id, registerBody, options) {
|
|
24456
|
+
const { span } = createSpan("ArtifactsClient-register", options || {});
|
|
24457
|
+
try {
|
|
24458
|
+
const result = await this.client.sendOperationRequest({ id, registerBody, options }, registerOperationSpec);
|
|
24459
|
+
return result;
|
|
24460
|
+
}
|
|
24461
|
+
catch (error) {
|
|
24462
|
+
span.setStatus({
|
|
24463
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24464
|
+
message: error.message
|
|
24465
|
+
});
|
|
24466
|
+
throw error;
|
|
24467
|
+
}
|
|
24468
|
+
finally {
|
|
24469
|
+
span.end();
|
|
24470
|
+
}
|
|
24471
|
+
}
|
|
24472
|
+
/**
|
|
24473
|
+
* Gets status of the database
|
|
24474
|
+
* @param id
|
|
24475
|
+
* @param options The options parameters.
|
|
24476
|
+
*/
|
|
24477
|
+
async getDatabaseOperations(id, options) {
|
|
24478
|
+
const { span } = createSpan("ArtifactsClient-getDatabaseOperations", options || {});
|
|
24479
|
+
try {
|
|
24480
|
+
const result = await this.client.sendOperationRequest({ id, options }, getDatabaseOperationsOperationSpec);
|
|
24481
|
+
return result;
|
|
24482
|
+
}
|
|
24483
|
+
catch (error) {
|
|
24484
|
+
span.setStatus({
|
|
24485
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24486
|
+
message: error.message
|
|
24487
|
+
});
|
|
24488
|
+
throw error;
|
|
24489
|
+
}
|
|
24490
|
+
finally {
|
|
24491
|
+
span.end();
|
|
24492
|
+
}
|
|
24493
|
+
}
|
|
24494
|
+
/**
|
|
24495
|
+
* Update files in Syms
|
|
24496
|
+
* @param id The name of the database to be updated
|
|
24497
|
+
* @param updateBody The body for the update request
|
|
24498
|
+
* @param options The options parameters.
|
|
24499
|
+
*/
|
|
24500
|
+
async update(id, updateBody, options) {
|
|
24501
|
+
const { span } = createSpan("ArtifactsClient-update", options || {});
|
|
24502
|
+
try {
|
|
24503
|
+
const result = await this.client.sendOperationRequest({ id, updateBody, options }, updateOperationSpec);
|
|
24504
|
+
return result;
|
|
24505
|
+
}
|
|
24506
|
+
catch (error) {
|
|
24507
|
+
span.setStatus({
|
|
24508
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24509
|
+
message: error.message
|
|
24510
|
+
});
|
|
24511
|
+
throw error;
|
|
24512
|
+
}
|
|
24513
|
+
finally {
|
|
24514
|
+
span.end();
|
|
24515
|
+
}
|
|
24516
|
+
}
|
|
24517
|
+
/**
|
|
24518
|
+
* Remove files in Syms
|
|
24519
|
+
* @param id
|
|
24520
|
+
* @param options The options parameters.
|
|
24521
|
+
*/
|
|
24522
|
+
async delete(id, options) {
|
|
24523
|
+
const { span } = createSpan("ArtifactsClient-delete", options || {});
|
|
24524
|
+
try {
|
|
24525
|
+
const result = await this.client.sendOperationRequest({ id, options }, deleteOperationSpec$1);
|
|
24526
|
+
return result;
|
|
24527
|
+
}
|
|
24528
|
+
catch (error) {
|
|
24529
|
+
span.setStatus({
|
|
24530
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24531
|
+
message: error.message
|
|
24532
|
+
});
|
|
24533
|
+
throw error;
|
|
24534
|
+
}
|
|
24535
|
+
finally {
|
|
24536
|
+
span.end();
|
|
24537
|
+
}
|
|
24538
|
+
}
|
|
24539
|
+
}
|
|
24540
|
+
// Operation Specifications
|
|
24541
|
+
const serializer$j = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
24542
|
+
const registerOperationSpec = {
|
|
24543
|
+
path: "/metastore/create-database-operations/{id}",
|
|
24544
|
+
httpMethod: "PUT",
|
|
24545
|
+
responses: {
|
|
24546
|
+
201: {
|
|
24547
|
+
bodyMapper: MetastoreRegistrationResponse
|
|
24548
|
+
},
|
|
24549
|
+
default: {
|
|
24550
|
+
bodyMapper: ErrorContract
|
|
24551
|
+
}
|
|
24552
|
+
},
|
|
24553
|
+
requestBody: registerBody,
|
|
24554
|
+
queryParameters: [apiVersion1],
|
|
24555
|
+
urlParameters: [endpoint, id],
|
|
24556
|
+
headerParameters: [accept, contentType],
|
|
24557
|
+
mediaType: "json",
|
|
24558
|
+
serializer: serializer$j
|
|
24559
|
+
};
|
|
24560
|
+
const getDatabaseOperationsOperationSpec = {
|
|
24561
|
+
path: "/metastore/create-database-operations/{id}",
|
|
24562
|
+
httpMethod: "GET",
|
|
24563
|
+
responses: {
|
|
24564
|
+
200: {
|
|
24565
|
+
bodyMapper: MetastoreRequestSuccessResponse
|
|
24566
|
+
},
|
|
24567
|
+
default: {
|
|
24568
|
+
bodyMapper: ErrorContract
|
|
24569
|
+
}
|
|
24570
|
+
},
|
|
24571
|
+
queryParameters: [apiVersion1],
|
|
24572
|
+
urlParameters: [endpoint, id],
|
|
24573
|
+
headerParameters: [accept],
|
|
24574
|
+
serializer: serializer$j
|
|
24575
|
+
};
|
|
24576
|
+
const updateOperationSpec = {
|
|
24577
|
+
path: "/metastore/update-database-operations/{id}",
|
|
24578
|
+
httpMethod: "PUT",
|
|
24579
|
+
responses: {
|
|
24580
|
+
201: {
|
|
24581
|
+
bodyMapper: MetastoreUpdationResponse
|
|
24582
|
+
},
|
|
24583
|
+
default: {
|
|
24584
|
+
bodyMapper: ErrorContract
|
|
24585
|
+
}
|
|
24586
|
+
},
|
|
24587
|
+
requestBody: updateBody,
|
|
24588
|
+
queryParameters: [apiVersion1],
|
|
24589
|
+
urlParameters: [endpoint, id],
|
|
24590
|
+
headerParameters: [accept, contentType],
|
|
24591
|
+
mediaType: "json",
|
|
24592
|
+
serializer: serializer$j
|
|
24593
|
+
};
|
|
24594
|
+
const deleteOperationSpec$1 = {
|
|
24595
|
+
path: "/metastore/databases/{id}",
|
|
24596
|
+
httpMethod: "DELETE",
|
|
24597
|
+
responses: {
|
|
24598
|
+
204: {},
|
|
24599
|
+
default: {
|
|
24600
|
+
bodyMapper: ErrorContract
|
|
24601
|
+
}
|
|
24602
|
+
},
|
|
24603
|
+
queryParameters: [apiVersion1],
|
|
24604
|
+
urlParameters: [endpoint, id],
|
|
24605
|
+
headerParameters: [accept],
|
|
24606
|
+
serializer: serializer$j
|
|
24030
24607
|
};
|
|
24031
24608
|
|
|
24032
24609
|
/*
|
|
@@ -24106,7 +24683,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24106
24683
|
}
|
|
24107
24684
|
catch (error) {
|
|
24108
24685
|
span.setStatus({
|
|
24109
|
-
code:
|
|
24686
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24110
24687
|
message: error.message
|
|
24111
24688
|
});
|
|
24112
24689
|
throw error;
|
|
@@ -24130,7 +24707,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24130
24707
|
}
|
|
24131
24708
|
catch (error) {
|
|
24132
24709
|
span.setStatus({
|
|
24133
|
-
code:
|
|
24710
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24134
24711
|
message: error.message
|
|
24135
24712
|
});
|
|
24136
24713
|
throw error;
|
|
@@ -24187,7 +24764,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24187
24764
|
}
|
|
24188
24765
|
catch (error) {
|
|
24189
24766
|
span.setStatus({
|
|
24190
|
-
code:
|
|
24767
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24191
24768
|
message: error.message
|
|
24192
24769
|
});
|
|
24193
24770
|
throw error;
|
|
@@ -24210,7 +24787,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24210
24787
|
}
|
|
24211
24788
|
catch (error) {
|
|
24212
24789
|
span.setStatus({
|
|
24213
|
-
code:
|
|
24790
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24214
24791
|
message: error.message
|
|
24215
24792
|
});
|
|
24216
24793
|
throw error;
|
|
@@ -24268,7 +24845,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24268
24845
|
}
|
|
24269
24846
|
catch (error) {
|
|
24270
24847
|
span.setStatus({
|
|
24271
|
-
code:
|
|
24848
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24272
24849
|
message: error.message
|
|
24273
24850
|
});
|
|
24274
24851
|
throw error;
|
|
@@ -24326,7 +24903,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24326
24903
|
}
|
|
24327
24904
|
catch (error) {
|
|
24328
24905
|
span.setStatus({
|
|
24329
|
-
code:
|
|
24906
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24330
24907
|
message: error.message
|
|
24331
24908
|
});
|
|
24332
24909
|
throw error;
|
|
@@ -24337,7 +24914,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24337
24914
|
}
|
|
24338
24915
|
}
|
|
24339
24916
|
// Operation Specifications
|
|
24340
|
-
const serializer$
|
|
24917
|
+
const serializer$i = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
24341
24918
|
const getSparkConfigurationsByWorkspaceOperationSpec = {
|
|
24342
24919
|
path: "/sparkconfigurations",
|
|
24343
24920
|
httpMethod: "GET",
|
|
@@ -24349,10 +24926,10 @@ const getSparkConfigurationsByWorkspaceOperationSpec = {
|
|
|
24349
24926
|
bodyMapper: CloudError
|
|
24350
24927
|
}
|
|
24351
24928
|
},
|
|
24352
|
-
queryParameters: [
|
|
24929
|
+
queryParameters: [apiVersion2],
|
|
24353
24930
|
urlParameters: [endpoint],
|
|
24354
24931
|
headerParameters: [accept],
|
|
24355
|
-
serializer: serializer$
|
|
24932
|
+
serializer: serializer$i
|
|
24356
24933
|
};
|
|
24357
24934
|
const createOrUpdateSparkConfigurationOperationSpec = {
|
|
24358
24935
|
path: "/sparkconfigurations/{sparkConfigurationName}",
|
|
@@ -24375,7 +24952,7 @@ const createOrUpdateSparkConfigurationOperationSpec = {
|
|
|
24375
24952
|
}
|
|
24376
24953
|
},
|
|
24377
24954
|
requestBody: sparkConfiguration,
|
|
24378
|
-
queryParameters: [
|
|
24955
|
+
queryParameters: [apiVersion2],
|
|
24379
24956
|
urlParameters: [endpoint, sparkConfigurationName],
|
|
24380
24957
|
headerParameters: [
|
|
24381
24958
|
accept,
|
|
@@ -24383,7 +24960,7 @@ const createOrUpdateSparkConfigurationOperationSpec = {
|
|
|
24383
24960
|
ifMatch
|
|
24384
24961
|
],
|
|
24385
24962
|
mediaType: "json",
|
|
24386
|
-
serializer: serializer$
|
|
24963
|
+
serializer: serializer$i
|
|
24387
24964
|
};
|
|
24388
24965
|
const getSparkConfigurationOperationSpec = {
|
|
24389
24966
|
path: "/sparkconfigurations/{sparkConfigurationName}",
|
|
@@ -24397,10 +24974,10 @@ const getSparkConfigurationOperationSpec = {
|
|
|
24397
24974
|
bodyMapper: CloudError
|
|
24398
24975
|
}
|
|
24399
24976
|
},
|
|
24400
|
-
queryParameters: [
|
|
24977
|
+
queryParameters: [apiVersion2],
|
|
24401
24978
|
urlParameters: [endpoint, sparkConfigurationName],
|
|
24402
24979
|
headerParameters: [accept, ifNoneMatch],
|
|
24403
|
-
serializer: serializer$
|
|
24980
|
+
serializer: serializer$i
|
|
24404
24981
|
};
|
|
24405
24982
|
const deleteSparkConfigurationOperationSpec = {
|
|
24406
24983
|
path: "/sparkconfigurations/{sparkConfigurationName}",
|
|
@@ -24414,10 +24991,10 @@ const deleteSparkConfigurationOperationSpec = {
|
|
|
24414
24991
|
bodyMapper: CloudError
|
|
24415
24992
|
}
|
|
24416
24993
|
},
|
|
24417
|
-
queryParameters: [
|
|
24994
|
+
queryParameters: [apiVersion2],
|
|
24418
24995
|
urlParameters: [endpoint, sparkConfigurationName],
|
|
24419
24996
|
headerParameters: [accept],
|
|
24420
|
-
serializer: serializer$
|
|
24997
|
+
serializer: serializer$i
|
|
24421
24998
|
};
|
|
24422
24999
|
const renameSparkConfigurationOperationSpec = {
|
|
24423
25000
|
path: "/sparkconfigurations/{sparkConfigurationName}/rename",
|
|
@@ -24432,11 +25009,11 @@ const renameSparkConfigurationOperationSpec = {
|
|
|
24432
25009
|
}
|
|
24433
25010
|
},
|
|
24434
25011
|
requestBody: request,
|
|
24435
|
-
queryParameters: [
|
|
25012
|
+
queryParameters: [apiVersion2],
|
|
24436
25013
|
urlParameters: [endpoint, sparkConfigurationName],
|
|
24437
25014
|
headerParameters: [accept, contentType],
|
|
24438
25015
|
mediaType: "json",
|
|
24439
|
-
serializer: serializer$
|
|
25016
|
+
serializer: serializer$i
|
|
24440
25017
|
};
|
|
24441
25018
|
const getSparkConfigurationsByWorkspaceNextOperationSpec = {
|
|
24442
25019
|
path: "{nextLink}",
|
|
@@ -24449,10 +25026,10 @@ const getSparkConfigurationsByWorkspaceNextOperationSpec = {
|
|
|
24449
25026
|
bodyMapper: CloudError
|
|
24450
25027
|
}
|
|
24451
25028
|
},
|
|
24452
|
-
queryParameters: [
|
|
25029
|
+
queryParameters: [apiVersion2],
|
|
24453
25030
|
urlParameters: [endpoint, nextLink],
|
|
24454
25031
|
headerParameters: [accept],
|
|
24455
|
-
serializer: serializer$
|
|
25032
|
+
serializer: serializer$i
|
|
24456
25033
|
};
|
|
24457
25034
|
|
|
24458
25035
|
/*
|
|
@@ -24478,12 +25055,12 @@ class BigDataPoolsImpl {
|
|
|
24478
25055
|
async list(options) {
|
|
24479
25056
|
const { span } = createSpan("ArtifactsClient-list", options || {});
|
|
24480
25057
|
try {
|
|
24481
|
-
const result = await this.client.sendOperationRequest({ options }, listOperationSpec);
|
|
25058
|
+
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$3);
|
|
24482
25059
|
return result;
|
|
24483
25060
|
}
|
|
24484
25061
|
catch (error) {
|
|
24485
25062
|
span.setStatus({
|
|
24486
|
-
code:
|
|
25063
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24487
25064
|
message: error.message
|
|
24488
25065
|
});
|
|
24489
25066
|
throw error;
|
|
@@ -24500,12 +25077,12 @@ class BigDataPoolsImpl {
|
|
|
24500
25077
|
async get(bigDataPoolName, options) {
|
|
24501
25078
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
24502
25079
|
try {
|
|
24503
|
-
const result = await this.client.sendOperationRequest({ bigDataPoolName, options }, getOperationSpec);
|
|
25080
|
+
const result = await this.client.sendOperationRequest({ bigDataPoolName, options }, getOperationSpec$5);
|
|
24504
25081
|
return result;
|
|
24505
25082
|
}
|
|
24506
25083
|
catch (error) {
|
|
24507
25084
|
span.setStatus({
|
|
24508
|
-
code:
|
|
25085
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24509
25086
|
message: error.message
|
|
24510
25087
|
});
|
|
24511
25088
|
throw error;
|
|
@@ -24516,8 +25093,8 @@ class BigDataPoolsImpl {
|
|
|
24516
25093
|
}
|
|
24517
25094
|
}
|
|
24518
25095
|
// Operation Specifications
|
|
24519
|
-
const serializer$
|
|
24520
|
-
const listOperationSpec = {
|
|
25096
|
+
const serializer$h = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
25097
|
+
const listOperationSpec$3 = {
|
|
24521
25098
|
path: "/bigDataPools",
|
|
24522
25099
|
httpMethod: "GET",
|
|
24523
25100
|
responses: {
|
|
@@ -24528,12 +25105,12 @@ const listOperationSpec = {
|
|
|
24528
25105
|
bodyMapper: ErrorContract
|
|
24529
25106
|
}
|
|
24530
25107
|
},
|
|
24531
|
-
queryParameters: [
|
|
25108
|
+
queryParameters: [apiVersion3],
|
|
24532
25109
|
urlParameters: [endpoint],
|
|
24533
25110
|
headerParameters: [accept],
|
|
24534
|
-
serializer: serializer$
|
|
25111
|
+
serializer: serializer$h
|
|
24535
25112
|
};
|
|
24536
|
-
const getOperationSpec = {
|
|
25113
|
+
const getOperationSpec$5 = {
|
|
24537
25114
|
path: "/bigDataPools/{bigDataPoolName}",
|
|
24538
25115
|
httpMethod: "GET",
|
|
24539
25116
|
responses: {
|
|
@@ -24544,10 +25121,10 @@ const getOperationSpec = {
|
|
|
24544
25121
|
bodyMapper: ErrorContract
|
|
24545
25122
|
}
|
|
24546
25123
|
},
|
|
24547
|
-
queryParameters: [
|
|
25124
|
+
queryParameters: [apiVersion3],
|
|
24548
25125
|
urlParameters: [endpoint, bigDataPoolName],
|
|
24549
25126
|
headerParameters: [accept],
|
|
24550
|
-
serializer: serializer$
|
|
25127
|
+
serializer: serializer$h
|
|
24551
25128
|
};
|
|
24552
25129
|
|
|
24553
25130
|
/*
|
|
@@ -24630,7 +25207,7 @@ class DataFlowOperationsImpl {
|
|
|
24630
25207
|
}
|
|
24631
25208
|
catch (error) {
|
|
24632
25209
|
span.setStatus({
|
|
24633
|
-
code:
|
|
25210
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24634
25211
|
message: error.message
|
|
24635
25212
|
});
|
|
24636
25213
|
throw error;
|
|
@@ -24687,7 +25264,7 @@ class DataFlowOperationsImpl {
|
|
|
24687
25264
|
}
|
|
24688
25265
|
catch (error) {
|
|
24689
25266
|
span.setStatus({
|
|
24690
|
-
code:
|
|
25267
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24691
25268
|
message: error.message
|
|
24692
25269
|
});
|
|
24693
25270
|
throw error;
|
|
@@ -24710,7 +25287,7 @@ class DataFlowOperationsImpl {
|
|
|
24710
25287
|
}
|
|
24711
25288
|
catch (error) {
|
|
24712
25289
|
span.setStatus({
|
|
24713
|
-
code:
|
|
25290
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24714
25291
|
message: error.message
|
|
24715
25292
|
});
|
|
24716
25293
|
throw error;
|
|
@@ -24768,7 +25345,7 @@ class DataFlowOperationsImpl {
|
|
|
24768
25345
|
}
|
|
24769
25346
|
catch (error) {
|
|
24770
25347
|
span.setStatus({
|
|
24771
|
-
code:
|
|
25348
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24772
25349
|
message: error.message
|
|
24773
25350
|
});
|
|
24774
25351
|
throw error;
|
|
@@ -24824,7 +25401,7 @@ class DataFlowOperationsImpl {
|
|
|
24824
25401
|
}
|
|
24825
25402
|
catch (error) {
|
|
24826
25403
|
span.setStatus({
|
|
24827
|
-
code:
|
|
25404
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24828
25405
|
message: error.message
|
|
24829
25406
|
});
|
|
24830
25407
|
throw error;
|
|
@@ -24847,7 +25424,7 @@ class DataFlowOperationsImpl {
|
|
|
24847
25424
|
}
|
|
24848
25425
|
catch (error) {
|
|
24849
25426
|
span.setStatus({
|
|
24850
|
-
code:
|
|
25427
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24851
25428
|
message: error.message
|
|
24852
25429
|
});
|
|
24853
25430
|
throw error;
|
|
@@ -24858,7 +25435,7 @@ class DataFlowOperationsImpl {
|
|
|
24858
25435
|
}
|
|
24859
25436
|
}
|
|
24860
25437
|
// Operation Specifications
|
|
24861
|
-
const serializer$
|
|
25438
|
+
const serializer$g = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
24862
25439
|
const createOrUpdateDataFlowOperationSpec = {
|
|
24863
25440
|
path: "/dataflows/{dataFlowName}",
|
|
24864
25441
|
httpMethod: "PUT",
|
|
@@ -24880,7 +25457,7 @@ const createOrUpdateDataFlowOperationSpec = {
|
|
|
24880
25457
|
}
|
|
24881
25458
|
},
|
|
24882
25459
|
requestBody: dataFlow,
|
|
24883
|
-
queryParameters: [
|
|
25460
|
+
queryParameters: [apiVersion3],
|
|
24884
25461
|
urlParameters: [endpoint, dataFlowName],
|
|
24885
25462
|
headerParameters: [
|
|
24886
25463
|
accept,
|
|
@@ -24888,7 +25465,7 @@ const createOrUpdateDataFlowOperationSpec = {
|
|
|
24888
25465
|
ifMatch
|
|
24889
25466
|
],
|
|
24890
25467
|
mediaType: "json",
|
|
24891
|
-
serializer: serializer$
|
|
25468
|
+
serializer: serializer$g
|
|
24892
25469
|
};
|
|
24893
25470
|
const getDataFlowOperationSpec = {
|
|
24894
25471
|
path: "/dataflows/{dataFlowName}",
|
|
@@ -24901,10 +25478,10 @@ const getDataFlowOperationSpec = {
|
|
|
24901
25478
|
bodyMapper: CloudErrorAutoGenerated
|
|
24902
25479
|
}
|
|
24903
25480
|
},
|
|
24904
|
-
queryParameters: [
|
|
25481
|
+
queryParameters: [apiVersion3],
|
|
24905
25482
|
urlParameters: [endpoint, dataFlowName],
|
|
24906
25483
|
headerParameters: [accept, ifNoneMatch],
|
|
24907
|
-
serializer: serializer$
|
|
25484
|
+
serializer: serializer$g
|
|
24908
25485
|
};
|
|
24909
25486
|
const deleteDataFlowOperationSpec = {
|
|
24910
25487
|
path: "/dataflows/{dataFlowName}",
|
|
@@ -24918,10 +25495,10 @@ const deleteDataFlowOperationSpec = {
|
|
|
24918
25495
|
bodyMapper: CloudErrorAutoGenerated
|
|
24919
25496
|
}
|
|
24920
25497
|
},
|
|
24921
|
-
queryParameters: [
|
|
25498
|
+
queryParameters: [apiVersion3],
|
|
24922
25499
|
urlParameters: [endpoint, dataFlowName],
|
|
24923
25500
|
headerParameters: [accept],
|
|
24924
|
-
serializer: serializer$
|
|
25501
|
+
serializer: serializer$g
|
|
24925
25502
|
};
|
|
24926
25503
|
const renameDataFlowOperationSpec = {
|
|
24927
25504
|
path: "/dataflows/{dataFlowName}/rename",
|
|
@@ -24936,11 +25513,11 @@ const renameDataFlowOperationSpec = {
|
|
|
24936
25513
|
}
|
|
24937
25514
|
},
|
|
24938
25515
|
requestBody: request,
|
|
24939
|
-
queryParameters: [
|
|
25516
|
+
queryParameters: [apiVersion3],
|
|
24940
25517
|
urlParameters: [endpoint, dataFlowName],
|
|
24941
25518
|
headerParameters: [accept, contentType],
|
|
24942
25519
|
mediaType: "json",
|
|
24943
|
-
serializer: serializer$
|
|
25520
|
+
serializer: serializer$g
|
|
24944
25521
|
};
|
|
24945
25522
|
const getDataFlowsByWorkspaceOperationSpec = {
|
|
24946
25523
|
path: "/dataflows",
|
|
@@ -24953,10 +25530,10 @@ const getDataFlowsByWorkspaceOperationSpec = {
|
|
|
24953
25530
|
bodyMapper: CloudErrorAutoGenerated
|
|
24954
25531
|
}
|
|
24955
25532
|
},
|
|
24956
|
-
queryParameters: [
|
|
25533
|
+
queryParameters: [apiVersion3],
|
|
24957
25534
|
urlParameters: [endpoint],
|
|
24958
25535
|
headerParameters: [accept],
|
|
24959
|
-
serializer: serializer$
|
|
25536
|
+
serializer: serializer$g
|
|
24960
25537
|
};
|
|
24961
25538
|
const getDataFlowsByWorkspaceNextOperationSpec = {
|
|
24962
25539
|
path: "{nextLink}",
|
|
@@ -24969,10 +25546,10 @@ const getDataFlowsByWorkspaceNextOperationSpec = {
|
|
|
24969
25546
|
bodyMapper: CloudErrorAutoGenerated
|
|
24970
25547
|
}
|
|
24971
25548
|
},
|
|
24972
|
-
queryParameters: [
|
|
25549
|
+
queryParameters: [apiVersion3],
|
|
24973
25550
|
urlParameters: [endpoint, nextLink],
|
|
24974
25551
|
headerParameters: [accept],
|
|
24975
|
-
serializer: serializer$
|
|
25552
|
+
serializer: serializer$g
|
|
24976
25553
|
};
|
|
24977
25554
|
|
|
24978
25555
|
/*
|
|
@@ -25054,7 +25631,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25054
25631
|
}
|
|
25055
25632
|
catch (error) {
|
|
25056
25633
|
span.setStatus({
|
|
25057
|
-
code:
|
|
25634
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25058
25635
|
message: error.message
|
|
25059
25636
|
});
|
|
25060
25637
|
throw error;
|
|
@@ -25109,7 +25686,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25109
25686
|
}
|
|
25110
25687
|
catch (error) {
|
|
25111
25688
|
span.setStatus({
|
|
25112
|
-
code:
|
|
25689
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25113
25690
|
message: error.message
|
|
25114
25691
|
});
|
|
25115
25692
|
throw error;
|
|
@@ -25131,7 +25708,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25131
25708
|
}
|
|
25132
25709
|
catch (error) {
|
|
25133
25710
|
span.setStatus({
|
|
25134
|
-
code:
|
|
25711
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25135
25712
|
message: error.message
|
|
25136
25713
|
});
|
|
25137
25714
|
throw error;
|
|
@@ -25153,7 +25730,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25153
25730
|
}
|
|
25154
25731
|
catch (error) {
|
|
25155
25732
|
span.setStatus({
|
|
25156
|
-
code:
|
|
25733
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25157
25734
|
message: error.message
|
|
25158
25735
|
});
|
|
25159
25736
|
throw error;
|
|
@@ -25176,7 +25753,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25176
25753
|
}
|
|
25177
25754
|
catch (error) {
|
|
25178
25755
|
span.setStatus({
|
|
25179
|
-
code:
|
|
25756
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25180
25757
|
message: error.message
|
|
25181
25758
|
});
|
|
25182
25759
|
throw error;
|
|
@@ -25233,7 +25810,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25233
25810
|
}
|
|
25234
25811
|
catch (error) {
|
|
25235
25812
|
span.setStatus({
|
|
25236
|
-
code:
|
|
25813
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25237
25814
|
message: error.message
|
|
25238
25815
|
});
|
|
25239
25816
|
throw error;
|
|
@@ -25244,7 +25821,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25244
25821
|
}
|
|
25245
25822
|
}
|
|
25246
25823
|
// Operation Specifications
|
|
25247
|
-
const serializer$
|
|
25824
|
+
const serializer$f = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
25248
25825
|
const createDataFlowDebugSessionOperationSpec = {
|
|
25249
25826
|
path: "/createDataFlowDebugSession",
|
|
25250
25827
|
httpMethod: "POST",
|
|
@@ -25266,11 +25843,11 @@ const createDataFlowDebugSessionOperationSpec = {
|
|
|
25266
25843
|
}
|
|
25267
25844
|
},
|
|
25268
25845
|
requestBody: request1,
|
|
25269
|
-
queryParameters: [
|
|
25846
|
+
queryParameters: [apiVersion3],
|
|
25270
25847
|
urlParameters: [endpoint],
|
|
25271
25848
|
headerParameters: [accept, contentType],
|
|
25272
25849
|
mediaType: "json",
|
|
25273
|
-
serializer: serializer$
|
|
25850
|
+
serializer: serializer$f
|
|
25274
25851
|
};
|
|
25275
25852
|
const queryDataFlowDebugSessionsByWorkspaceOperationSpec = {
|
|
25276
25853
|
path: "/queryDataFlowDebugSessions",
|
|
@@ -25283,10 +25860,10 @@ const queryDataFlowDebugSessionsByWorkspaceOperationSpec = {
|
|
|
25283
25860
|
bodyMapper: CloudErrorAutoGenerated
|
|
25284
25861
|
}
|
|
25285
25862
|
},
|
|
25286
|
-
queryParameters: [
|
|
25863
|
+
queryParameters: [apiVersion3],
|
|
25287
25864
|
urlParameters: [endpoint],
|
|
25288
25865
|
headerParameters: [accept],
|
|
25289
|
-
serializer: serializer$
|
|
25866
|
+
serializer: serializer$f
|
|
25290
25867
|
};
|
|
25291
25868
|
const addDataFlowOperationSpec = {
|
|
25292
25869
|
path: "/addDataFlowToDebugSession",
|
|
@@ -25300,11 +25877,11 @@ const addDataFlowOperationSpec = {
|
|
|
25300
25877
|
}
|
|
25301
25878
|
},
|
|
25302
25879
|
requestBody: request2,
|
|
25303
|
-
queryParameters: [
|
|
25880
|
+
queryParameters: [apiVersion3],
|
|
25304
25881
|
urlParameters: [endpoint],
|
|
25305
25882
|
headerParameters: [accept, contentType],
|
|
25306
25883
|
mediaType: "json",
|
|
25307
|
-
serializer: serializer$
|
|
25884
|
+
serializer: serializer$f
|
|
25308
25885
|
};
|
|
25309
25886
|
const deleteDataFlowDebugSessionOperationSpec = {
|
|
25310
25887
|
path: "/deleteDataFlowDebugSession",
|
|
@@ -25316,11 +25893,11 @@ const deleteDataFlowDebugSessionOperationSpec = {
|
|
|
25316
25893
|
}
|
|
25317
25894
|
},
|
|
25318
25895
|
requestBody: request3,
|
|
25319
|
-
queryParameters: [
|
|
25896
|
+
queryParameters: [apiVersion3],
|
|
25320
25897
|
urlParameters: [endpoint],
|
|
25321
25898
|
headerParameters: [accept, contentType],
|
|
25322
25899
|
mediaType: "json",
|
|
25323
|
-
serializer: serializer$
|
|
25900
|
+
serializer: serializer$f
|
|
25324
25901
|
};
|
|
25325
25902
|
const executeCommandOperationSpec = {
|
|
25326
25903
|
path: "/executeDataFlowDebugCommand",
|
|
@@ -25343,11 +25920,11 @@ const executeCommandOperationSpec = {
|
|
|
25343
25920
|
}
|
|
25344
25921
|
},
|
|
25345
25922
|
requestBody: request4,
|
|
25346
|
-
queryParameters: [
|
|
25923
|
+
queryParameters: [apiVersion3],
|
|
25347
25924
|
urlParameters: [endpoint],
|
|
25348
25925
|
headerParameters: [accept, contentType],
|
|
25349
25926
|
mediaType: "json",
|
|
25350
|
-
serializer: serializer$
|
|
25927
|
+
serializer: serializer$f
|
|
25351
25928
|
};
|
|
25352
25929
|
const queryDataFlowDebugSessionsByWorkspaceNextOperationSpec = {
|
|
25353
25930
|
path: "{nextLink}",
|
|
@@ -25360,10 +25937,10 @@ const queryDataFlowDebugSessionsByWorkspaceNextOperationSpec = {
|
|
|
25360
25937
|
bodyMapper: CloudErrorAutoGenerated
|
|
25361
25938
|
}
|
|
25362
25939
|
},
|
|
25363
|
-
queryParameters: [
|
|
25940
|
+
queryParameters: [apiVersion3],
|
|
25364
25941
|
urlParameters: [endpoint, nextLink],
|
|
25365
25942
|
headerParameters: [accept],
|
|
25366
|
-
serializer: serializer$
|
|
25943
|
+
serializer: serializer$f
|
|
25367
25944
|
};
|
|
25368
25945
|
|
|
25369
25946
|
/*
|
|
@@ -25443,7 +26020,7 @@ class DatasetOperationsImpl {
|
|
|
25443
26020
|
}
|
|
25444
26021
|
catch (error) {
|
|
25445
26022
|
span.setStatus({
|
|
25446
|
-
code:
|
|
26023
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25447
26024
|
message: error.message
|
|
25448
26025
|
});
|
|
25449
26026
|
throw error;
|
|
@@ -25467,7 +26044,7 @@ class DatasetOperationsImpl {
|
|
|
25467
26044
|
}
|
|
25468
26045
|
catch (error) {
|
|
25469
26046
|
span.setStatus({
|
|
25470
|
-
code:
|
|
26047
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25471
26048
|
message: error.message
|
|
25472
26049
|
});
|
|
25473
26050
|
throw error;
|
|
@@ -25524,7 +26101,7 @@ class DatasetOperationsImpl {
|
|
|
25524
26101
|
}
|
|
25525
26102
|
catch (error) {
|
|
25526
26103
|
span.setStatus({
|
|
25527
|
-
code:
|
|
26104
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25528
26105
|
message: error.message
|
|
25529
26106
|
});
|
|
25530
26107
|
throw error;
|
|
@@ -25547,7 +26124,7 @@ class DatasetOperationsImpl {
|
|
|
25547
26124
|
}
|
|
25548
26125
|
catch (error) {
|
|
25549
26126
|
span.setStatus({
|
|
25550
|
-
code:
|
|
26127
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25551
26128
|
message: error.message
|
|
25552
26129
|
});
|
|
25553
26130
|
throw error;
|
|
@@ -25605,7 +26182,7 @@ class DatasetOperationsImpl {
|
|
|
25605
26182
|
}
|
|
25606
26183
|
catch (error) {
|
|
25607
26184
|
span.setStatus({
|
|
25608
|
-
code:
|
|
26185
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25609
26186
|
message: error.message
|
|
25610
26187
|
});
|
|
25611
26188
|
throw error;
|
|
@@ -25662,7 +26239,7 @@ class DatasetOperationsImpl {
|
|
|
25662
26239
|
}
|
|
25663
26240
|
catch (error) {
|
|
25664
26241
|
span.setStatus({
|
|
25665
|
-
code:
|
|
26242
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25666
26243
|
message: error.message
|
|
25667
26244
|
});
|
|
25668
26245
|
throw error;
|
|
@@ -25673,7 +26250,7 @@ class DatasetOperationsImpl {
|
|
|
25673
26250
|
}
|
|
25674
26251
|
}
|
|
25675
26252
|
// Operation Specifications
|
|
25676
|
-
const serializer$
|
|
26253
|
+
const serializer$e = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
25677
26254
|
const getDatasetsByWorkspaceOperationSpec = {
|
|
25678
26255
|
path: "/datasets",
|
|
25679
26256
|
httpMethod: "GET",
|
|
@@ -25685,10 +26262,10 @@ const getDatasetsByWorkspaceOperationSpec = {
|
|
|
25685
26262
|
bodyMapper: CloudErrorAutoGenerated
|
|
25686
26263
|
}
|
|
25687
26264
|
},
|
|
25688
|
-
queryParameters: [
|
|
26265
|
+
queryParameters: [apiVersion3],
|
|
25689
26266
|
urlParameters: [endpoint],
|
|
25690
26267
|
headerParameters: [accept],
|
|
25691
|
-
serializer: serializer$
|
|
26268
|
+
serializer: serializer$e
|
|
25692
26269
|
};
|
|
25693
26270
|
const createOrUpdateDatasetOperationSpec = {
|
|
25694
26271
|
path: "/datasets/{datasetName}",
|
|
@@ -25711,7 +26288,7 @@ const createOrUpdateDatasetOperationSpec = {
|
|
|
25711
26288
|
}
|
|
25712
26289
|
},
|
|
25713
26290
|
requestBody: dataset,
|
|
25714
|
-
queryParameters: [
|
|
26291
|
+
queryParameters: [apiVersion3],
|
|
25715
26292
|
urlParameters: [endpoint, datasetName],
|
|
25716
26293
|
headerParameters: [
|
|
25717
26294
|
accept,
|
|
@@ -25719,7 +26296,7 @@ const createOrUpdateDatasetOperationSpec = {
|
|
|
25719
26296
|
ifMatch
|
|
25720
26297
|
],
|
|
25721
26298
|
mediaType: "json",
|
|
25722
|
-
serializer: serializer$
|
|
26299
|
+
serializer: serializer$e
|
|
25723
26300
|
};
|
|
25724
26301
|
const getDatasetOperationSpec = {
|
|
25725
26302
|
path: "/datasets/{datasetName}",
|
|
@@ -25733,10 +26310,10 @@ const getDatasetOperationSpec = {
|
|
|
25733
26310
|
bodyMapper: CloudErrorAutoGenerated
|
|
25734
26311
|
}
|
|
25735
26312
|
},
|
|
25736
|
-
queryParameters: [
|
|
26313
|
+
queryParameters: [apiVersion3],
|
|
25737
26314
|
urlParameters: [endpoint, datasetName],
|
|
25738
26315
|
headerParameters: [accept, ifNoneMatch],
|
|
25739
|
-
serializer: serializer$
|
|
26316
|
+
serializer: serializer$e
|
|
25740
26317
|
};
|
|
25741
26318
|
const deleteDatasetOperationSpec = {
|
|
25742
26319
|
path: "/datasets/{datasetName}",
|
|
@@ -25750,10 +26327,10 @@ const deleteDatasetOperationSpec = {
|
|
|
25750
26327
|
bodyMapper: CloudErrorAutoGenerated
|
|
25751
26328
|
}
|
|
25752
26329
|
},
|
|
25753
|
-
queryParameters: [
|
|
26330
|
+
queryParameters: [apiVersion3],
|
|
25754
26331
|
urlParameters: [endpoint, datasetName],
|
|
25755
26332
|
headerParameters: [accept],
|
|
25756
|
-
serializer: serializer$
|
|
26333
|
+
serializer: serializer$e
|
|
25757
26334
|
};
|
|
25758
26335
|
const renameDatasetOperationSpec = {
|
|
25759
26336
|
path: "/datasets/{datasetName}/rename",
|
|
@@ -25768,11 +26345,11 @@ const renameDatasetOperationSpec = {
|
|
|
25768
26345
|
}
|
|
25769
26346
|
},
|
|
25770
26347
|
requestBody: request,
|
|
25771
|
-
queryParameters: [
|
|
26348
|
+
queryParameters: [apiVersion3],
|
|
25772
26349
|
urlParameters: [endpoint, datasetName],
|
|
25773
26350
|
headerParameters: [accept, contentType],
|
|
25774
26351
|
mediaType: "json",
|
|
25775
|
-
serializer: serializer$
|
|
26352
|
+
serializer: serializer$e
|
|
25776
26353
|
};
|
|
25777
26354
|
const getDatasetsByWorkspaceNextOperationSpec = {
|
|
25778
26355
|
path: "{nextLink}",
|
|
@@ -25785,10 +26362,10 @@ const getDatasetsByWorkspaceNextOperationSpec = {
|
|
|
25785
26362
|
bodyMapper: CloudErrorAutoGenerated
|
|
25786
26363
|
}
|
|
25787
26364
|
},
|
|
25788
|
-
queryParameters: [
|
|
26365
|
+
queryParameters: [apiVersion3],
|
|
25789
26366
|
urlParameters: [endpoint, nextLink],
|
|
25790
26367
|
headerParameters: [accept],
|
|
25791
|
-
serializer: serializer$
|
|
26368
|
+
serializer: serializer$e
|
|
25792
26369
|
};
|
|
25793
26370
|
|
|
25794
26371
|
/*
|
|
@@ -25820,7 +26397,7 @@ class WorkspaceGitRepoManagementImpl {
|
|
|
25820
26397
|
}
|
|
25821
26398
|
catch (error) {
|
|
25822
26399
|
span.setStatus({
|
|
25823
|
-
code:
|
|
26400
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25824
26401
|
message: error.message
|
|
25825
26402
|
});
|
|
25826
26403
|
throw error;
|
|
@@ -25831,7 +26408,7 @@ class WorkspaceGitRepoManagementImpl {
|
|
|
25831
26408
|
}
|
|
25832
26409
|
}
|
|
25833
26410
|
// Operation Specifications
|
|
25834
|
-
const serializer$
|
|
26411
|
+
const serializer$d = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
25835
26412
|
const getGitHubAccessTokenOperationSpec = {
|
|
25836
26413
|
path: "/getGitHubAccessToken",
|
|
25837
26414
|
httpMethod: "POST",
|
|
@@ -25841,7 +26418,7 @@ const getGitHubAccessTokenOperationSpec = {
|
|
|
25841
26418
|
}
|
|
25842
26419
|
},
|
|
25843
26420
|
requestBody: gitHubAccessTokenRequest,
|
|
25844
|
-
queryParameters: [
|
|
26421
|
+
queryParameters: [apiVersion3],
|
|
25845
26422
|
urlParameters: [endpoint],
|
|
25846
26423
|
headerParameters: [
|
|
25847
26424
|
accept,
|
|
@@ -25849,7 +26426,7 @@ const getGitHubAccessTokenOperationSpec = {
|
|
|
25849
26426
|
clientRequestId
|
|
25850
26427
|
],
|
|
25851
26428
|
mediaType: "json",
|
|
25852
|
-
serializer: serializer$
|
|
26429
|
+
serializer: serializer$d
|
|
25853
26430
|
};
|
|
25854
26431
|
|
|
25855
26432
|
/*
|
|
@@ -25875,12 +26452,12 @@ class IntegrationRuntimesImpl {
|
|
|
25875
26452
|
async list(options) {
|
|
25876
26453
|
const { span } = createSpan("ArtifactsClient-list", options || {});
|
|
25877
26454
|
try {
|
|
25878
|
-
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$
|
|
26455
|
+
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$2);
|
|
25879
26456
|
return result;
|
|
25880
26457
|
}
|
|
25881
26458
|
catch (error) {
|
|
25882
26459
|
span.setStatus({
|
|
25883
|
-
code:
|
|
26460
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25884
26461
|
message: error.message
|
|
25885
26462
|
});
|
|
25886
26463
|
throw error;
|
|
@@ -25897,12 +26474,12 @@ class IntegrationRuntimesImpl {
|
|
|
25897
26474
|
async get(integrationRuntimeName, options) {
|
|
25898
26475
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
25899
26476
|
try {
|
|
25900
|
-
const result = await this.client.sendOperationRequest({ integrationRuntimeName, options }, getOperationSpec$
|
|
26477
|
+
const result = await this.client.sendOperationRequest({ integrationRuntimeName, options }, getOperationSpec$4);
|
|
25901
26478
|
return result;
|
|
25902
26479
|
}
|
|
25903
26480
|
catch (error) {
|
|
25904
26481
|
span.setStatus({
|
|
25905
|
-
code:
|
|
26482
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25906
26483
|
message: error.message
|
|
25907
26484
|
});
|
|
25908
26485
|
throw error;
|
|
@@ -25913,8 +26490,8 @@ class IntegrationRuntimesImpl {
|
|
|
25913
26490
|
}
|
|
25914
26491
|
}
|
|
25915
26492
|
// Operation Specifications
|
|
25916
|
-
const serializer$
|
|
25917
|
-
const listOperationSpec$
|
|
26493
|
+
const serializer$c = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
26494
|
+
const listOperationSpec$2 = {
|
|
25918
26495
|
path: "/integrationRuntimes",
|
|
25919
26496
|
httpMethod: "GET",
|
|
25920
26497
|
responses: {
|
|
@@ -25925,12 +26502,12 @@ const listOperationSpec$1 = {
|
|
|
25925
26502
|
bodyMapper: ErrorContract
|
|
25926
26503
|
}
|
|
25927
26504
|
},
|
|
25928
|
-
queryParameters: [
|
|
26505
|
+
queryParameters: [apiVersion3],
|
|
25929
26506
|
urlParameters: [endpoint],
|
|
25930
26507
|
headerParameters: [accept],
|
|
25931
|
-
serializer: serializer$
|
|
26508
|
+
serializer: serializer$c
|
|
25932
26509
|
};
|
|
25933
|
-
const getOperationSpec$
|
|
26510
|
+
const getOperationSpec$4 = {
|
|
25934
26511
|
path: "/integrationRuntimes/{integrationRuntimeName}",
|
|
25935
26512
|
httpMethod: "GET",
|
|
25936
26513
|
responses: {
|
|
@@ -25941,10 +26518,10 @@ const getOperationSpec$1 = {
|
|
|
25941
26518
|
bodyMapper: ErrorContract
|
|
25942
26519
|
}
|
|
25943
26520
|
},
|
|
25944
|
-
queryParameters: [
|
|
26521
|
+
queryParameters: [apiVersion3],
|
|
25945
26522
|
urlParameters: [endpoint, integrationRuntimeName],
|
|
25946
26523
|
headerParameters: [accept],
|
|
25947
|
-
serializer: serializer$
|
|
26524
|
+
serializer: serializer$c
|
|
25948
26525
|
};
|
|
25949
26526
|
|
|
25950
26527
|
/*
|
|
@@ -26019,12 +26596,12 @@ class LibraryImpl {
|
|
|
26019
26596
|
async _list(options) {
|
|
26020
26597
|
const { span } = createSpan("ArtifactsClient-_list", options || {});
|
|
26021
26598
|
try {
|
|
26022
|
-
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$
|
|
26599
|
+
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$1);
|
|
26023
26600
|
return result;
|
|
26024
26601
|
}
|
|
26025
26602
|
catch (error) {
|
|
26026
26603
|
span.setStatus({
|
|
26027
|
-
code:
|
|
26604
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26028
26605
|
message: error.message
|
|
26029
26606
|
});
|
|
26030
26607
|
throw error;
|
|
@@ -26048,7 +26625,7 @@ class LibraryImpl {
|
|
|
26048
26625
|
}
|
|
26049
26626
|
catch (error) {
|
|
26050
26627
|
span.setStatus({
|
|
26051
|
-
code:
|
|
26628
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26052
26629
|
message: error.message
|
|
26053
26630
|
});
|
|
26054
26631
|
throw error;
|
|
@@ -26105,7 +26682,7 @@ class LibraryImpl {
|
|
|
26105
26682
|
}
|
|
26106
26683
|
catch (error) {
|
|
26107
26684
|
span.setStatus({
|
|
26108
|
-
code:
|
|
26685
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26109
26686
|
message: error.message
|
|
26110
26687
|
});
|
|
26111
26688
|
throw error;
|
|
@@ -26129,7 +26706,7 @@ class LibraryImpl {
|
|
|
26129
26706
|
}
|
|
26130
26707
|
catch (error) {
|
|
26131
26708
|
span.setStatus({
|
|
26132
|
-
code:
|
|
26709
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26133
26710
|
message: error.message
|
|
26134
26711
|
});
|
|
26135
26712
|
throw error;
|
|
@@ -26182,12 +26759,12 @@ class LibraryImpl {
|
|
|
26182
26759
|
async get(libraryName, options) {
|
|
26183
26760
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
26184
26761
|
try {
|
|
26185
|
-
const result = await this.client.sendOperationRequest({ libraryName, options }, getOperationSpec$
|
|
26762
|
+
const result = await this.client.sendOperationRequest({ libraryName, options }, getOperationSpec$3);
|
|
26186
26763
|
return result;
|
|
26187
26764
|
}
|
|
26188
26765
|
catch (error) {
|
|
26189
26766
|
span.setStatus({
|
|
26190
|
-
code:
|
|
26767
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26191
26768
|
message: error.message
|
|
26192
26769
|
});
|
|
26193
26770
|
throw error;
|
|
@@ -26211,7 +26788,7 @@ class LibraryImpl {
|
|
|
26211
26788
|
}
|
|
26212
26789
|
catch (error) {
|
|
26213
26790
|
span.setStatus({
|
|
26214
|
-
code:
|
|
26791
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26215
26792
|
message: error.message
|
|
26216
26793
|
});
|
|
26217
26794
|
throw error;
|
|
@@ -26271,7 +26848,7 @@ class LibraryImpl {
|
|
|
26271
26848
|
}
|
|
26272
26849
|
catch (error) {
|
|
26273
26850
|
span.setStatus({
|
|
26274
|
-
code:
|
|
26851
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26275
26852
|
message: error.message
|
|
26276
26853
|
});
|
|
26277
26854
|
throw error;
|
|
@@ -26293,7 +26870,7 @@ class LibraryImpl {
|
|
|
26293
26870
|
}
|
|
26294
26871
|
catch (error) {
|
|
26295
26872
|
span.setStatus({
|
|
26296
|
-
code:
|
|
26873
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26297
26874
|
message: error.message
|
|
26298
26875
|
});
|
|
26299
26876
|
throw error;
|
|
@@ -26304,8 +26881,8 @@ class LibraryImpl {
|
|
|
26304
26881
|
}
|
|
26305
26882
|
}
|
|
26306
26883
|
// Operation Specifications
|
|
26307
|
-
const serializer$
|
|
26308
|
-
const listOperationSpec$
|
|
26884
|
+
const serializer$b = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
26885
|
+
const listOperationSpec$1 = {
|
|
26309
26886
|
path: "/libraries",
|
|
26310
26887
|
httpMethod: "GET",
|
|
26311
26888
|
responses: {
|
|
@@ -26316,10 +26893,10 @@ const listOperationSpec$2 = {
|
|
|
26316
26893
|
bodyMapper: CloudErrorAutoGenerated
|
|
26317
26894
|
}
|
|
26318
26895
|
},
|
|
26319
|
-
queryParameters: [
|
|
26896
|
+
queryParameters: [apiVersion3],
|
|
26320
26897
|
urlParameters: [endpoint],
|
|
26321
26898
|
headerParameters: [accept],
|
|
26322
|
-
serializer: serializer$
|
|
26899
|
+
serializer: serializer$b
|
|
26323
26900
|
};
|
|
26324
26901
|
const flushOperationSpec = {
|
|
26325
26902
|
path: "/libraries/{libraryName}/flush",
|
|
@@ -26333,10 +26910,10 @@ const flushOperationSpec = {
|
|
|
26333
26910
|
bodyMapper: CloudErrorAutoGenerated
|
|
26334
26911
|
}
|
|
26335
26912
|
},
|
|
26336
|
-
queryParameters: [
|
|
26913
|
+
queryParameters: [apiVersion3],
|
|
26337
26914
|
urlParameters: [endpoint, libraryName],
|
|
26338
26915
|
headerParameters: [accept],
|
|
26339
|
-
serializer: serializer$
|
|
26916
|
+
serializer: serializer$b
|
|
26340
26917
|
};
|
|
26341
26918
|
const getOperationResultOperationSpec = {
|
|
26342
26919
|
path: "/libraryOperationResults/{operationId}",
|
|
@@ -26352,10 +26929,10 @@ const getOperationResultOperationSpec = {
|
|
|
26352
26929
|
bodyMapper: CloudErrorAutoGenerated
|
|
26353
26930
|
}
|
|
26354
26931
|
},
|
|
26355
|
-
queryParameters: [
|
|
26932
|
+
queryParameters: [apiVersion3],
|
|
26356
26933
|
urlParameters: [endpoint, operationId],
|
|
26357
26934
|
headerParameters: [accept],
|
|
26358
|
-
serializer: serializer$
|
|
26935
|
+
serializer: serializer$b
|
|
26359
26936
|
};
|
|
26360
26937
|
const deleteOperationSpec = {
|
|
26361
26938
|
path: "/libraries/{libraryName}",
|
|
@@ -26369,12 +26946,12 @@ const deleteOperationSpec = {
|
|
|
26369
26946
|
bodyMapper: CloudErrorAutoGenerated
|
|
26370
26947
|
}
|
|
26371
26948
|
},
|
|
26372
|
-
queryParameters: [
|
|
26949
|
+
queryParameters: [apiVersion3],
|
|
26373
26950
|
urlParameters: [endpoint, libraryName],
|
|
26374
26951
|
headerParameters: [accept],
|
|
26375
|
-
serializer: serializer$
|
|
26952
|
+
serializer: serializer$b
|
|
26376
26953
|
};
|
|
26377
|
-
const getOperationSpec$
|
|
26954
|
+
const getOperationSpec$3 = {
|
|
26378
26955
|
path: "/libraries/{libraryName}",
|
|
26379
26956
|
httpMethod: "GET",
|
|
26380
26957
|
responses: {
|
|
@@ -26386,10 +26963,10 @@ const getOperationSpec$2 = {
|
|
|
26386
26963
|
bodyMapper: CloudErrorAutoGenerated
|
|
26387
26964
|
}
|
|
26388
26965
|
},
|
|
26389
|
-
queryParameters: [
|
|
26966
|
+
queryParameters: [apiVersion3],
|
|
26390
26967
|
urlParameters: [endpoint, libraryName],
|
|
26391
26968
|
headerParameters: [accept],
|
|
26392
|
-
serializer: serializer$
|
|
26969
|
+
serializer: serializer$b
|
|
26393
26970
|
};
|
|
26394
26971
|
const createOperationSpec = {
|
|
26395
26972
|
path: "/libraries/{libraryName}",
|
|
@@ -26403,10 +26980,10 @@ const createOperationSpec = {
|
|
|
26403
26980
|
bodyMapper: CloudErrorAutoGenerated
|
|
26404
26981
|
}
|
|
26405
26982
|
},
|
|
26406
|
-
queryParameters: [
|
|
26983
|
+
queryParameters: [apiVersion3],
|
|
26407
26984
|
urlParameters: [endpoint, libraryName],
|
|
26408
26985
|
headerParameters: [accept],
|
|
26409
|
-
serializer: serializer$
|
|
26986
|
+
serializer: serializer$b
|
|
26410
26987
|
};
|
|
26411
26988
|
const appendOperationSpec = {
|
|
26412
26989
|
path: "/libraries/{libraryName}",
|
|
@@ -26418,7 +26995,7 @@ const appendOperationSpec = {
|
|
|
26418
26995
|
}
|
|
26419
26996
|
},
|
|
26420
26997
|
requestBody: content,
|
|
26421
|
-
queryParameters: [
|
|
26998
|
+
queryParameters: [apiVersion3, comp],
|
|
26422
26999
|
urlParameters: [endpoint, libraryName],
|
|
26423
27000
|
headerParameters: [
|
|
26424
27001
|
contentType1,
|
|
@@ -26426,7 +27003,7 @@ const appendOperationSpec = {
|
|
|
26426
27003
|
blobConditionAppendPosition
|
|
26427
27004
|
],
|
|
26428
27005
|
mediaType: "binary",
|
|
26429
|
-
serializer: serializer$
|
|
27006
|
+
serializer: serializer$b
|
|
26430
27007
|
};
|
|
26431
27008
|
const listNextOperationSpec = {
|
|
26432
27009
|
path: "{nextLink}",
|
|
@@ -26439,10 +27016,10 @@ const listNextOperationSpec = {
|
|
|
26439
27016
|
bodyMapper: CloudErrorAutoGenerated
|
|
26440
27017
|
}
|
|
26441
27018
|
},
|
|
26442
|
-
queryParameters: [
|
|
27019
|
+
queryParameters: [apiVersion3],
|
|
26443
27020
|
urlParameters: [endpoint, nextLink],
|
|
26444
27021
|
headerParameters: [accept],
|
|
26445
|
-
serializer: serializer$
|
|
27022
|
+
serializer: serializer$b
|
|
26446
27023
|
};
|
|
26447
27024
|
|
|
26448
27025
|
/*
|
|
@@ -26522,7 +27099,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26522
27099
|
}
|
|
26523
27100
|
catch (error) {
|
|
26524
27101
|
span.setStatus({
|
|
26525
|
-
code:
|
|
27102
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26526
27103
|
message: error.message
|
|
26527
27104
|
});
|
|
26528
27105
|
throw error;
|
|
@@ -26546,7 +27123,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26546
27123
|
}
|
|
26547
27124
|
catch (error) {
|
|
26548
27125
|
span.setStatus({
|
|
26549
|
-
code:
|
|
27126
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26550
27127
|
message: error.message
|
|
26551
27128
|
});
|
|
26552
27129
|
throw error;
|
|
@@ -26603,7 +27180,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26603
27180
|
}
|
|
26604
27181
|
catch (error) {
|
|
26605
27182
|
span.setStatus({
|
|
26606
|
-
code:
|
|
27183
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26607
27184
|
message: error.message
|
|
26608
27185
|
});
|
|
26609
27186
|
throw error;
|
|
@@ -26626,7 +27203,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26626
27203
|
}
|
|
26627
27204
|
catch (error) {
|
|
26628
27205
|
span.setStatus({
|
|
26629
|
-
code:
|
|
27206
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26630
27207
|
message: error.message
|
|
26631
27208
|
});
|
|
26632
27209
|
throw error;
|
|
@@ -26684,7 +27261,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26684
27261
|
}
|
|
26685
27262
|
catch (error) {
|
|
26686
27263
|
span.setStatus({
|
|
26687
|
-
code:
|
|
27264
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26688
27265
|
message: error.message
|
|
26689
27266
|
});
|
|
26690
27267
|
throw error;
|
|
@@ -26742,7 +27319,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26742
27319
|
}
|
|
26743
27320
|
catch (error) {
|
|
26744
27321
|
span.setStatus({
|
|
26745
|
-
code:
|
|
27322
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26746
27323
|
message: error.message
|
|
26747
27324
|
});
|
|
26748
27325
|
throw error;
|
|
@@ -26753,7 +27330,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26753
27330
|
}
|
|
26754
27331
|
}
|
|
26755
27332
|
// Operation Specifications
|
|
26756
|
-
const serializer$a =
|
|
27333
|
+
const serializer$a = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
26757
27334
|
const getLinkedServicesByWorkspaceOperationSpec = {
|
|
26758
27335
|
path: "/linkedservices",
|
|
26759
27336
|
httpMethod: "GET",
|
|
@@ -26765,7 +27342,7 @@ const getLinkedServicesByWorkspaceOperationSpec = {
|
|
|
26765
27342
|
bodyMapper: CloudErrorAutoGenerated
|
|
26766
27343
|
}
|
|
26767
27344
|
},
|
|
26768
|
-
queryParameters: [
|
|
27345
|
+
queryParameters: [apiVersion3],
|
|
26769
27346
|
urlParameters: [endpoint],
|
|
26770
27347
|
headerParameters: [accept],
|
|
26771
27348
|
serializer: serializer$a
|
|
@@ -26791,7 +27368,7 @@ const createOrUpdateLinkedServiceOperationSpec = {
|
|
|
26791
27368
|
}
|
|
26792
27369
|
},
|
|
26793
27370
|
requestBody: linkedService,
|
|
26794
|
-
queryParameters: [
|
|
27371
|
+
queryParameters: [apiVersion3],
|
|
26795
27372
|
urlParameters: [endpoint, linkedServiceName],
|
|
26796
27373
|
headerParameters: [
|
|
26797
27374
|
accept,
|
|
@@ -26813,7 +27390,7 @@ const getLinkedServiceOperationSpec = {
|
|
|
26813
27390
|
bodyMapper: CloudErrorAutoGenerated
|
|
26814
27391
|
}
|
|
26815
27392
|
},
|
|
26816
|
-
queryParameters: [
|
|
27393
|
+
queryParameters: [apiVersion3],
|
|
26817
27394
|
urlParameters: [endpoint, linkedServiceName],
|
|
26818
27395
|
headerParameters: [accept, ifNoneMatch],
|
|
26819
27396
|
serializer: serializer$a
|
|
@@ -26830,7 +27407,7 @@ const deleteLinkedServiceOperationSpec = {
|
|
|
26830
27407
|
bodyMapper: CloudErrorAutoGenerated
|
|
26831
27408
|
}
|
|
26832
27409
|
},
|
|
26833
|
-
queryParameters: [
|
|
27410
|
+
queryParameters: [apiVersion3],
|
|
26834
27411
|
urlParameters: [endpoint, linkedServiceName],
|
|
26835
27412
|
headerParameters: [accept],
|
|
26836
27413
|
serializer: serializer$a
|
|
@@ -26848,7 +27425,7 @@ const renameLinkedServiceOperationSpec = {
|
|
|
26848
27425
|
}
|
|
26849
27426
|
},
|
|
26850
27427
|
requestBody: request,
|
|
26851
|
-
queryParameters: [
|
|
27428
|
+
queryParameters: [apiVersion3],
|
|
26852
27429
|
urlParameters: [endpoint, linkedServiceName],
|
|
26853
27430
|
headerParameters: [accept, contentType],
|
|
26854
27431
|
mediaType: "json",
|
|
@@ -26865,7 +27442,7 @@ const getLinkedServicesByWorkspaceNextOperationSpec = {
|
|
|
26865
27442
|
bodyMapper: CloudErrorAutoGenerated
|
|
26866
27443
|
}
|
|
26867
27444
|
},
|
|
26868
|
-
queryParameters: [
|
|
27445
|
+
queryParameters: [apiVersion3],
|
|
26869
27446
|
urlParameters: [endpoint, nextLink],
|
|
26870
27447
|
headerParameters: [accept],
|
|
26871
27448
|
serializer: serializer$a
|
|
@@ -26996,7 +27573,7 @@ class NotebookOperationsImpl {
|
|
|
26996
27573
|
}
|
|
26997
27574
|
catch (error) {
|
|
26998
27575
|
span.setStatus({
|
|
26999
|
-
code:
|
|
27576
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27000
27577
|
message: error.message
|
|
27001
27578
|
});
|
|
27002
27579
|
throw error;
|
|
@@ -27017,7 +27594,7 @@ class NotebookOperationsImpl {
|
|
|
27017
27594
|
}
|
|
27018
27595
|
catch (error) {
|
|
27019
27596
|
span.setStatus({
|
|
27020
|
-
code:
|
|
27597
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27021
27598
|
message: error.message
|
|
27022
27599
|
});
|
|
27023
27600
|
throw error;
|
|
@@ -27041,7 +27618,7 @@ class NotebookOperationsImpl {
|
|
|
27041
27618
|
}
|
|
27042
27619
|
catch (error) {
|
|
27043
27620
|
span.setStatus({
|
|
27044
|
-
code:
|
|
27621
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27045
27622
|
message: error.message
|
|
27046
27623
|
});
|
|
27047
27624
|
throw error;
|
|
@@ -27098,7 +27675,7 @@ class NotebookOperationsImpl {
|
|
|
27098
27675
|
}
|
|
27099
27676
|
catch (error) {
|
|
27100
27677
|
span.setStatus({
|
|
27101
|
-
code:
|
|
27678
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27102
27679
|
message: error.message
|
|
27103
27680
|
});
|
|
27104
27681
|
throw error;
|
|
@@ -27121,7 +27698,7 @@ class NotebookOperationsImpl {
|
|
|
27121
27698
|
}
|
|
27122
27699
|
catch (error) {
|
|
27123
27700
|
span.setStatus({
|
|
27124
|
-
code:
|
|
27701
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27125
27702
|
message: error.message
|
|
27126
27703
|
});
|
|
27127
27704
|
throw error;
|
|
@@ -27179,7 +27756,7 @@ class NotebookOperationsImpl {
|
|
|
27179
27756
|
}
|
|
27180
27757
|
catch (error) {
|
|
27181
27758
|
span.setStatus({
|
|
27182
|
-
code:
|
|
27759
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27183
27760
|
message: error.message
|
|
27184
27761
|
});
|
|
27185
27762
|
throw error;
|
|
@@ -27237,7 +27814,7 @@ class NotebookOperationsImpl {
|
|
|
27237
27814
|
}
|
|
27238
27815
|
catch (error) {
|
|
27239
27816
|
span.setStatus({
|
|
27240
|
-
code:
|
|
27817
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27241
27818
|
message: error.message
|
|
27242
27819
|
});
|
|
27243
27820
|
throw error;
|
|
@@ -27260,7 +27837,7 @@ class NotebookOperationsImpl {
|
|
|
27260
27837
|
}
|
|
27261
27838
|
catch (error) {
|
|
27262
27839
|
span.setStatus({
|
|
27263
|
-
code:
|
|
27840
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27264
27841
|
message: error.message
|
|
27265
27842
|
});
|
|
27266
27843
|
throw error;
|
|
@@ -27271,7 +27848,7 @@ class NotebookOperationsImpl {
|
|
|
27271
27848
|
}
|
|
27272
27849
|
}
|
|
27273
27850
|
// Operation Specifications
|
|
27274
|
-
const serializer$
|
|
27851
|
+
const serializer$9 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
27275
27852
|
const getNotebooksByWorkspaceOperationSpec = {
|
|
27276
27853
|
path: "/notebooks",
|
|
27277
27854
|
httpMethod: "GET",
|
|
@@ -27283,10 +27860,10 @@ const getNotebooksByWorkspaceOperationSpec = {
|
|
|
27283
27860
|
bodyMapper: CloudErrorAutoGenerated
|
|
27284
27861
|
}
|
|
27285
27862
|
},
|
|
27286
|
-
queryParameters: [
|
|
27863
|
+
queryParameters: [apiVersion3],
|
|
27287
27864
|
urlParameters: [endpoint],
|
|
27288
27865
|
headerParameters: [accept],
|
|
27289
|
-
serializer: serializer$
|
|
27866
|
+
serializer: serializer$9
|
|
27290
27867
|
};
|
|
27291
27868
|
const getNotebookSummaryByWorkSpaceOperationSpec = {
|
|
27292
27869
|
path: "/notebooksSummary",
|
|
@@ -27299,10 +27876,10 @@ const getNotebookSummaryByWorkSpaceOperationSpec = {
|
|
|
27299
27876
|
bodyMapper: CloudErrorAutoGenerated
|
|
27300
27877
|
}
|
|
27301
27878
|
},
|
|
27302
|
-
queryParameters: [
|
|
27879
|
+
queryParameters: [apiVersion3],
|
|
27303
27880
|
urlParameters: [endpoint],
|
|
27304
27881
|
headerParameters: [accept],
|
|
27305
|
-
serializer: serializer$
|
|
27882
|
+
serializer: serializer$9
|
|
27306
27883
|
};
|
|
27307
27884
|
const createOrUpdateNotebookOperationSpec = {
|
|
27308
27885
|
path: "/notebooks/{notebookName}",
|
|
@@ -27325,7 +27902,7 @@ const createOrUpdateNotebookOperationSpec = {
|
|
|
27325
27902
|
}
|
|
27326
27903
|
},
|
|
27327
27904
|
requestBody: notebook,
|
|
27328
|
-
queryParameters: [
|
|
27905
|
+
queryParameters: [apiVersion3],
|
|
27329
27906
|
urlParameters: [endpoint, notebookName],
|
|
27330
27907
|
headerParameters: [
|
|
27331
27908
|
accept,
|
|
@@ -27333,7 +27910,7 @@ const createOrUpdateNotebookOperationSpec = {
|
|
|
27333
27910
|
ifMatch
|
|
27334
27911
|
],
|
|
27335
27912
|
mediaType: "json",
|
|
27336
|
-
serializer: serializer$
|
|
27913
|
+
serializer: serializer$9
|
|
27337
27914
|
};
|
|
27338
27915
|
const getNotebookOperationSpec = {
|
|
27339
27916
|
path: "/notebooks/{notebookName}",
|
|
@@ -27347,10 +27924,10 @@ const getNotebookOperationSpec = {
|
|
|
27347
27924
|
bodyMapper: CloudErrorAutoGenerated
|
|
27348
27925
|
}
|
|
27349
27926
|
},
|
|
27350
|
-
queryParameters: [
|
|
27927
|
+
queryParameters: [apiVersion3],
|
|
27351
27928
|
urlParameters: [endpoint, notebookName],
|
|
27352
27929
|
headerParameters: [accept, ifNoneMatch],
|
|
27353
|
-
serializer: serializer$
|
|
27930
|
+
serializer: serializer$9
|
|
27354
27931
|
};
|
|
27355
27932
|
const deleteNotebookOperationSpec = {
|
|
27356
27933
|
path: "/notebooks/{notebookName}",
|
|
@@ -27364,10 +27941,10 @@ const deleteNotebookOperationSpec = {
|
|
|
27364
27941
|
bodyMapper: CloudErrorAutoGenerated
|
|
27365
27942
|
}
|
|
27366
27943
|
},
|
|
27367
|
-
queryParameters: [
|
|
27944
|
+
queryParameters: [apiVersion3],
|
|
27368
27945
|
urlParameters: [endpoint, notebookName],
|
|
27369
27946
|
headerParameters: [accept],
|
|
27370
|
-
serializer: serializer$
|
|
27947
|
+
serializer: serializer$9
|
|
27371
27948
|
};
|
|
27372
27949
|
const renameNotebookOperationSpec = {
|
|
27373
27950
|
path: "/notebooks/{notebookName}/rename",
|
|
@@ -27382,11 +27959,11 @@ const renameNotebookOperationSpec = {
|
|
|
27382
27959
|
}
|
|
27383
27960
|
},
|
|
27384
27961
|
requestBody: request,
|
|
27385
|
-
queryParameters: [
|
|
27962
|
+
queryParameters: [apiVersion3],
|
|
27386
27963
|
urlParameters: [endpoint, notebookName],
|
|
27387
27964
|
headerParameters: [accept, contentType],
|
|
27388
27965
|
mediaType: "json",
|
|
27389
|
-
serializer: serializer$
|
|
27966
|
+
serializer: serializer$9
|
|
27390
27967
|
};
|
|
27391
27968
|
const getNotebooksByWorkspaceNextOperationSpec = {
|
|
27392
27969
|
path: "{nextLink}",
|
|
@@ -27399,10 +27976,10 @@ const getNotebooksByWorkspaceNextOperationSpec = {
|
|
|
27399
27976
|
bodyMapper: CloudErrorAutoGenerated
|
|
27400
27977
|
}
|
|
27401
27978
|
},
|
|
27402
|
-
queryParameters: [
|
|
27979
|
+
queryParameters: [apiVersion3],
|
|
27403
27980
|
urlParameters: [endpoint, nextLink],
|
|
27404
27981
|
headerParameters: [accept],
|
|
27405
|
-
serializer: serializer$
|
|
27982
|
+
serializer: serializer$9
|
|
27406
27983
|
};
|
|
27407
27984
|
const getNotebookSummaryByWorkSpaceNextOperationSpec = {
|
|
27408
27985
|
path: "{nextLink}",
|
|
@@ -27415,10 +27992,10 @@ const getNotebookSummaryByWorkSpaceNextOperationSpec = {
|
|
|
27415
27992
|
bodyMapper: CloudErrorAutoGenerated
|
|
27416
27993
|
}
|
|
27417
27994
|
},
|
|
27418
|
-
queryParameters: [
|
|
27995
|
+
queryParameters: [apiVersion3],
|
|
27419
27996
|
urlParameters: [endpoint, nextLink],
|
|
27420
27997
|
headerParameters: [accept],
|
|
27421
|
-
serializer: serializer$
|
|
27998
|
+
serializer: serializer$9
|
|
27422
27999
|
};
|
|
27423
28000
|
|
|
27424
28001
|
/*
|
|
@@ -27445,12 +28022,12 @@ class NotebookOperationResultImpl {
|
|
|
27445
28022
|
async get(operationId, options) {
|
|
27446
28023
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
27447
28024
|
try {
|
|
27448
|
-
const result = await this.client.sendOperationRequest({ operationId, options }, getOperationSpec$
|
|
28025
|
+
const result = await this.client.sendOperationRequest({ operationId, options }, getOperationSpec$2);
|
|
27449
28026
|
return result;
|
|
27450
28027
|
}
|
|
27451
28028
|
catch (error) {
|
|
27452
28029
|
span.setStatus({
|
|
27453
|
-
code:
|
|
28030
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27454
28031
|
message: error.message
|
|
27455
28032
|
});
|
|
27456
28033
|
throw error;
|
|
@@ -27461,8 +28038,8 @@ class NotebookOperationResultImpl {
|
|
|
27461
28038
|
}
|
|
27462
28039
|
}
|
|
27463
28040
|
// Operation Specifications
|
|
27464
|
-
const serializer$
|
|
27465
|
-
const getOperationSpec$
|
|
28041
|
+
const serializer$8 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
28042
|
+
const getOperationSpec$2 = {
|
|
27466
28043
|
path: "/notebookOperationResults/{operationId}",
|
|
27467
28044
|
httpMethod: "GET",
|
|
27468
28045
|
responses: {
|
|
@@ -27474,10 +28051,10 @@ const getOperationSpec$3 = {
|
|
|
27474
28051
|
bodyMapper: ErrorContract
|
|
27475
28052
|
}
|
|
27476
28053
|
},
|
|
27477
|
-
queryParameters: [
|
|
28054
|
+
queryParameters: [apiVersion3],
|
|
27478
28055
|
urlParameters: [endpoint, operationId],
|
|
27479
28056
|
headerParameters: [accept],
|
|
27480
|
-
serializer: serializer$
|
|
28057
|
+
serializer: serializer$8
|
|
27481
28058
|
};
|
|
27482
28059
|
|
|
27483
28060
|
/*
|
|
@@ -27557,7 +28134,7 @@ class PipelineOperationsImpl {
|
|
|
27557
28134
|
}
|
|
27558
28135
|
catch (error) {
|
|
27559
28136
|
span.setStatus({
|
|
27560
|
-
code:
|
|
28137
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27561
28138
|
message: error.message
|
|
27562
28139
|
});
|
|
27563
28140
|
throw error;
|
|
@@ -27581,7 +28158,7 @@ class PipelineOperationsImpl {
|
|
|
27581
28158
|
}
|
|
27582
28159
|
catch (error) {
|
|
27583
28160
|
span.setStatus({
|
|
27584
|
-
code:
|
|
28161
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27585
28162
|
message: error.message
|
|
27586
28163
|
});
|
|
27587
28164
|
throw error;
|
|
@@ -27638,7 +28215,7 @@ class PipelineOperationsImpl {
|
|
|
27638
28215
|
}
|
|
27639
28216
|
catch (error) {
|
|
27640
28217
|
span.setStatus({
|
|
27641
|
-
code:
|
|
28218
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27642
28219
|
message: error.message
|
|
27643
28220
|
});
|
|
27644
28221
|
throw error;
|
|
@@ -27661,7 +28238,7 @@ class PipelineOperationsImpl {
|
|
|
27661
28238
|
}
|
|
27662
28239
|
catch (error) {
|
|
27663
28240
|
span.setStatus({
|
|
27664
|
-
code:
|
|
28241
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27665
28242
|
message: error.message
|
|
27666
28243
|
});
|
|
27667
28244
|
throw error;
|
|
@@ -27719,7 +28296,7 @@ class PipelineOperationsImpl {
|
|
|
27719
28296
|
}
|
|
27720
28297
|
catch (error) {
|
|
27721
28298
|
span.setStatus({
|
|
27722
|
-
code:
|
|
28299
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27723
28300
|
message: error.message
|
|
27724
28301
|
});
|
|
27725
28302
|
throw error;
|
|
@@ -27776,7 +28353,7 @@ class PipelineOperationsImpl {
|
|
|
27776
28353
|
}
|
|
27777
28354
|
catch (error) {
|
|
27778
28355
|
span.setStatus({
|
|
27779
|
-
code:
|
|
28356
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27780
28357
|
message: error.message
|
|
27781
28358
|
});
|
|
27782
28359
|
throw error;
|
|
@@ -27799,7 +28376,7 @@ class PipelineOperationsImpl {
|
|
|
27799
28376
|
}
|
|
27800
28377
|
catch (error) {
|
|
27801
28378
|
span.setStatus({
|
|
27802
|
-
code:
|
|
28379
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27803
28380
|
message: error.message
|
|
27804
28381
|
});
|
|
27805
28382
|
throw error;
|
|
@@ -27810,7 +28387,7 @@ class PipelineOperationsImpl {
|
|
|
27810
28387
|
}
|
|
27811
28388
|
}
|
|
27812
28389
|
// Operation Specifications
|
|
27813
|
-
const serializer$
|
|
28390
|
+
const serializer$7 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
27814
28391
|
const getPipelinesByWorkspaceOperationSpec = {
|
|
27815
28392
|
path: "/pipelines",
|
|
27816
28393
|
httpMethod: "GET",
|
|
@@ -27822,10 +28399,10 @@ const getPipelinesByWorkspaceOperationSpec = {
|
|
|
27822
28399
|
bodyMapper: CloudErrorAutoGenerated
|
|
27823
28400
|
}
|
|
27824
28401
|
},
|
|
27825
|
-
queryParameters: [
|
|
28402
|
+
queryParameters: [apiVersion3],
|
|
27826
28403
|
urlParameters: [endpoint],
|
|
27827
28404
|
headerParameters: [accept],
|
|
27828
|
-
serializer: serializer$
|
|
28405
|
+
serializer: serializer$7
|
|
27829
28406
|
};
|
|
27830
28407
|
const createOrUpdatePipelineOperationSpec = {
|
|
27831
28408
|
path: "/pipelines/{pipelineName}",
|
|
@@ -27848,7 +28425,7 @@ const createOrUpdatePipelineOperationSpec = {
|
|
|
27848
28425
|
}
|
|
27849
28426
|
},
|
|
27850
28427
|
requestBody: pipeline,
|
|
27851
|
-
queryParameters: [
|
|
28428
|
+
queryParameters: [apiVersion3],
|
|
27852
28429
|
urlParameters: [endpoint, pipelineName],
|
|
27853
28430
|
headerParameters: [
|
|
27854
28431
|
accept,
|
|
@@ -27856,7 +28433,7 @@ const createOrUpdatePipelineOperationSpec = {
|
|
|
27856
28433
|
ifMatch
|
|
27857
28434
|
],
|
|
27858
28435
|
mediaType: "json",
|
|
27859
|
-
serializer: serializer$
|
|
28436
|
+
serializer: serializer$7
|
|
27860
28437
|
};
|
|
27861
28438
|
const getPipelineOperationSpec = {
|
|
27862
28439
|
path: "/pipelines/{pipelineName}",
|
|
@@ -27870,10 +28447,10 @@ const getPipelineOperationSpec = {
|
|
|
27870
28447
|
bodyMapper: CloudErrorAutoGenerated
|
|
27871
28448
|
}
|
|
27872
28449
|
},
|
|
27873
|
-
queryParameters: [
|
|
28450
|
+
queryParameters: [apiVersion3],
|
|
27874
28451
|
urlParameters: [endpoint, pipelineName],
|
|
27875
28452
|
headerParameters: [accept, ifNoneMatch],
|
|
27876
|
-
serializer: serializer$
|
|
28453
|
+
serializer: serializer$7
|
|
27877
28454
|
};
|
|
27878
28455
|
const deletePipelineOperationSpec = {
|
|
27879
28456
|
path: "/pipelines/{pipelineName}",
|
|
@@ -27887,10 +28464,10 @@ const deletePipelineOperationSpec = {
|
|
|
27887
28464
|
bodyMapper: CloudErrorAutoGenerated
|
|
27888
28465
|
}
|
|
27889
28466
|
},
|
|
27890
|
-
queryParameters: [
|
|
28467
|
+
queryParameters: [apiVersion3],
|
|
27891
28468
|
urlParameters: [endpoint, pipelineName],
|
|
27892
28469
|
headerParameters: [accept],
|
|
27893
|
-
serializer: serializer$
|
|
28470
|
+
serializer: serializer$7
|
|
27894
28471
|
};
|
|
27895
28472
|
const renamePipelineOperationSpec = {
|
|
27896
28473
|
path: "/pipelines/{pipelineName}/rename",
|
|
@@ -27905,11 +28482,11 @@ const renamePipelineOperationSpec = {
|
|
|
27905
28482
|
}
|
|
27906
28483
|
},
|
|
27907
28484
|
requestBody: request,
|
|
27908
|
-
queryParameters: [
|
|
28485
|
+
queryParameters: [apiVersion3],
|
|
27909
28486
|
urlParameters: [endpoint, pipelineName],
|
|
27910
28487
|
headerParameters: [accept, contentType],
|
|
27911
28488
|
mediaType: "json",
|
|
27912
|
-
serializer: serializer$
|
|
28489
|
+
serializer: serializer$7
|
|
27913
28490
|
};
|
|
27914
28491
|
const createPipelineRunOperationSpec = {
|
|
27915
28492
|
path: "/pipelines/{pipelineName}/createRun",
|
|
@@ -27924,7 +28501,7 @@ const createPipelineRunOperationSpec = {
|
|
|
27924
28501
|
},
|
|
27925
28502
|
requestBody: parameters,
|
|
27926
28503
|
queryParameters: [
|
|
27927
|
-
|
|
28504
|
+
apiVersion3,
|
|
27928
28505
|
referencePipelineRunId,
|
|
27929
28506
|
isRecovery,
|
|
27930
28507
|
startActivityName
|
|
@@ -27932,7 +28509,7 @@ const createPipelineRunOperationSpec = {
|
|
|
27932
28509
|
urlParameters: [endpoint, pipelineName],
|
|
27933
28510
|
headerParameters: [accept, contentType],
|
|
27934
28511
|
mediaType: "json",
|
|
27935
|
-
serializer: serializer$
|
|
28512
|
+
serializer: serializer$7
|
|
27936
28513
|
};
|
|
27937
28514
|
const getPipelinesByWorkspaceNextOperationSpec = {
|
|
27938
28515
|
path: "{nextLink}",
|
|
@@ -27945,10 +28522,10 @@ const getPipelinesByWorkspaceNextOperationSpec = {
|
|
|
27945
28522
|
bodyMapper: CloudErrorAutoGenerated
|
|
27946
28523
|
}
|
|
27947
28524
|
},
|
|
27948
|
-
queryParameters: [
|
|
28525
|
+
queryParameters: [apiVersion3],
|
|
27949
28526
|
urlParameters: [endpoint, nextLink],
|
|
27950
28527
|
headerParameters: [accept],
|
|
27951
|
-
serializer: serializer$
|
|
28528
|
+
serializer: serializer$7
|
|
27952
28529
|
};
|
|
27953
28530
|
|
|
27954
28531
|
/*
|
|
@@ -27980,7 +28557,7 @@ class PipelineRunOperationsImpl {
|
|
|
27980
28557
|
}
|
|
27981
28558
|
catch (error) {
|
|
27982
28559
|
span.setStatus({
|
|
27983
|
-
code:
|
|
28560
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27984
28561
|
message: error.message
|
|
27985
28562
|
});
|
|
27986
28563
|
throw error;
|
|
@@ -28002,7 +28579,7 @@ class PipelineRunOperationsImpl {
|
|
|
28002
28579
|
}
|
|
28003
28580
|
catch (error) {
|
|
28004
28581
|
span.setStatus({
|
|
28005
|
-
code:
|
|
28582
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28006
28583
|
message: error.message
|
|
28007
28584
|
});
|
|
28008
28585
|
throw error;
|
|
@@ -28026,7 +28603,7 @@ class PipelineRunOperationsImpl {
|
|
|
28026
28603
|
}
|
|
28027
28604
|
catch (error) {
|
|
28028
28605
|
span.setStatus({
|
|
28029
|
-
code:
|
|
28606
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28030
28607
|
message: error.message
|
|
28031
28608
|
});
|
|
28032
28609
|
throw error;
|
|
@@ -28048,7 +28625,7 @@ class PipelineRunOperationsImpl {
|
|
|
28048
28625
|
}
|
|
28049
28626
|
catch (error) {
|
|
28050
28627
|
span.setStatus({
|
|
28051
|
-
code:
|
|
28628
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28052
28629
|
message: error.message
|
|
28053
28630
|
});
|
|
28054
28631
|
throw error;
|
|
@@ -28059,7 +28636,7 @@ class PipelineRunOperationsImpl {
|
|
|
28059
28636
|
}
|
|
28060
28637
|
}
|
|
28061
28638
|
// Operation Specifications
|
|
28062
|
-
const serializer$
|
|
28639
|
+
const serializer$6 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
28063
28640
|
const queryPipelineRunsByWorkspaceOperationSpec = {
|
|
28064
28641
|
path: "/queryPipelineRuns",
|
|
28065
28642
|
httpMethod: "POST",
|
|
@@ -28072,11 +28649,11 @@ const queryPipelineRunsByWorkspaceOperationSpec = {
|
|
|
28072
28649
|
}
|
|
28073
28650
|
},
|
|
28074
28651
|
requestBody: filterParameters,
|
|
28075
|
-
queryParameters: [
|
|
28652
|
+
queryParameters: [apiVersion3],
|
|
28076
28653
|
urlParameters: [endpoint],
|
|
28077
28654
|
headerParameters: [accept, contentType],
|
|
28078
28655
|
mediaType: "json",
|
|
28079
|
-
serializer: serializer$
|
|
28656
|
+
serializer: serializer$6
|
|
28080
28657
|
};
|
|
28081
28658
|
const getPipelineRunOperationSpec = {
|
|
28082
28659
|
path: "/pipelineruns/{runId}",
|
|
@@ -28089,10 +28666,10 @@ const getPipelineRunOperationSpec = {
|
|
|
28089
28666
|
bodyMapper: CloudErrorAutoGenerated
|
|
28090
28667
|
}
|
|
28091
28668
|
},
|
|
28092
|
-
queryParameters: [
|
|
28669
|
+
queryParameters: [apiVersion3],
|
|
28093
28670
|
urlParameters: [endpoint, runId],
|
|
28094
28671
|
headerParameters: [accept],
|
|
28095
|
-
serializer: serializer$
|
|
28672
|
+
serializer: serializer$6
|
|
28096
28673
|
};
|
|
28097
28674
|
const queryActivityRunsOperationSpec = {
|
|
28098
28675
|
path: "/pipelines/{pipelineName}/pipelineruns/{runId}/queryActivityruns",
|
|
@@ -28106,7 +28683,7 @@ const queryActivityRunsOperationSpec = {
|
|
|
28106
28683
|
}
|
|
28107
28684
|
},
|
|
28108
28685
|
requestBody: filterParameters,
|
|
28109
|
-
queryParameters: [
|
|
28686
|
+
queryParameters: [apiVersion3],
|
|
28110
28687
|
urlParameters: [
|
|
28111
28688
|
endpoint,
|
|
28112
28689
|
pipelineName,
|
|
@@ -28114,7 +28691,7 @@ const queryActivityRunsOperationSpec = {
|
|
|
28114
28691
|
],
|
|
28115
28692
|
headerParameters: [accept, contentType],
|
|
28116
28693
|
mediaType: "json",
|
|
28117
|
-
serializer: serializer$
|
|
28694
|
+
serializer: serializer$6
|
|
28118
28695
|
};
|
|
28119
28696
|
const cancelPipelineRunOperationSpec = {
|
|
28120
28697
|
path: "/pipelineruns/{runId}/cancel",
|
|
@@ -28125,10 +28702,10 @@ const cancelPipelineRunOperationSpec = {
|
|
|
28125
28702
|
bodyMapper: CloudErrorAutoGenerated
|
|
28126
28703
|
}
|
|
28127
28704
|
},
|
|
28128
|
-
queryParameters: [
|
|
28705
|
+
queryParameters: [apiVersion3, isRecursive],
|
|
28129
28706
|
urlParameters: [endpoint, runId],
|
|
28130
28707
|
headerParameters: [accept],
|
|
28131
|
-
serializer: serializer$
|
|
28708
|
+
serializer: serializer$6
|
|
28132
28709
|
};
|
|
28133
28710
|
|
|
28134
28711
|
/*
|
|
@@ -28208,7 +28785,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28208
28785
|
}
|
|
28209
28786
|
catch (error) {
|
|
28210
28787
|
span.setStatus({
|
|
28211
|
-
code:
|
|
28788
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28212
28789
|
message: error.message
|
|
28213
28790
|
});
|
|
28214
28791
|
throw error;
|
|
@@ -28232,7 +28809,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28232
28809
|
}
|
|
28233
28810
|
catch (error) {
|
|
28234
28811
|
span.setStatus({
|
|
28235
|
-
code:
|
|
28812
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28236
28813
|
message: error.message
|
|
28237
28814
|
});
|
|
28238
28815
|
throw error;
|
|
@@ -28289,7 +28866,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28289
28866
|
}
|
|
28290
28867
|
catch (error) {
|
|
28291
28868
|
span.setStatus({
|
|
28292
|
-
code:
|
|
28869
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28293
28870
|
message: error.message
|
|
28294
28871
|
});
|
|
28295
28872
|
throw error;
|
|
@@ -28312,7 +28889,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28312
28889
|
}
|
|
28313
28890
|
catch (error) {
|
|
28314
28891
|
span.setStatus({
|
|
28315
|
-
code:
|
|
28892
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28316
28893
|
message: error.message
|
|
28317
28894
|
});
|
|
28318
28895
|
throw error;
|
|
@@ -28369,7 +28946,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28369
28946
|
}
|
|
28370
28947
|
catch (error) {
|
|
28371
28948
|
span.setStatus({
|
|
28372
|
-
code:
|
|
28949
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28373
28950
|
message: error.message
|
|
28374
28951
|
});
|
|
28375
28952
|
throw error;
|
|
@@ -28428,7 +29005,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28428
29005
|
}
|
|
28429
29006
|
catch (error) {
|
|
28430
29007
|
span.setStatus({
|
|
28431
|
-
code:
|
|
29008
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28432
29009
|
message: error.message
|
|
28433
29010
|
});
|
|
28434
29011
|
throw error;
|
|
@@ -28486,7 +29063,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28486
29063
|
}
|
|
28487
29064
|
catch (error) {
|
|
28488
29065
|
span.setStatus({
|
|
28489
|
-
code:
|
|
29066
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28490
29067
|
message: error.message
|
|
28491
29068
|
});
|
|
28492
29069
|
throw error;
|
|
@@ -28544,7 +29121,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28544
29121
|
}
|
|
28545
29122
|
catch (error) {
|
|
28546
29123
|
span.setStatus({
|
|
28547
|
-
code:
|
|
29124
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28548
29125
|
message: error.message
|
|
28549
29126
|
});
|
|
28550
29127
|
throw error;
|
|
@@ -28555,7 +29132,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28555
29132
|
}
|
|
28556
29133
|
}
|
|
28557
29134
|
// Operation Specifications
|
|
28558
|
-
const serializer$
|
|
29135
|
+
const serializer$5 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
28559
29136
|
const getSparkJobDefinitionsByWorkspaceOperationSpec = {
|
|
28560
29137
|
path: "/sparkJobDefinitions",
|
|
28561
29138
|
httpMethod: "GET",
|
|
@@ -28567,10 +29144,10 @@ const getSparkJobDefinitionsByWorkspaceOperationSpec = {
|
|
|
28567
29144
|
bodyMapper: CloudErrorAutoGenerated
|
|
28568
29145
|
}
|
|
28569
29146
|
},
|
|
28570
|
-
queryParameters: [
|
|
29147
|
+
queryParameters: [apiVersion3],
|
|
28571
29148
|
urlParameters: [endpoint],
|
|
28572
29149
|
headerParameters: [accept],
|
|
28573
|
-
serializer: serializer$
|
|
29150
|
+
serializer: serializer$5
|
|
28574
29151
|
};
|
|
28575
29152
|
const createOrUpdateSparkJobDefinitionOperationSpec = {
|
|
28576
29153
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}",
|
|
@@ -28593,7 +29170,7 @@ const createOrUpdateSparkJobDefinitionOperationSpec = {
|
|
|
28593
29170
|
}
|
|
28594
29171
|
},
|
|
28595
29172
|
requestBody: sparkJobDefinition,
|
|
28596
|
-
queryParameters: [
|
|
29173
|
+
queryParameters: [apiVersion3],
|
|
28597
29174
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
28598
29175
|
headerParameters: [
|
|
28599
29176
|
accept,
|
|
@@ -28601,7 +29178,7 @@ const createOrUpdateSparkJobDefinitionOperationSpec = {
|
|
|
28601
29178
|
ifMatch
|
|
28602
29179
|
],
|
|
28603
29180
|
mediaType: "json",
|
|
28604
|
-
serializer: serializer$
|
|
29181
|
+
serializer: serializer$5
|
|
28605
29182
|
};
|
|
28606
29183
|
const getSparkJobDefinitionOperationSpec = {
|
|
28607
29184
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}",
|
|
@@ -28615,10 +29192,10 @@ const getSparkJobDefinitionOperationSpec = {
|
|
|
28615
29192
|
bodyMapper: CloudErrorAutoGenerated
|
|
28616
29193
|
}
|
|
28617
29194
|
},
|
|
28618
|
-
queryParameters: [
|
|
29195
|
+
queryParameters: [apiVersion3],
|
|
28619
29196
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
28620
29197
|
headerParameters: [accept, ifNoneMatch],
|
|
28621
|
-
serializer: serializer$
|
|
29198
|
+
serializer: serializer$5
|
|
28622
29199
|
};
|
|
28623
29200
|
const deleteSparkJobDefinitionOperationSpec = {
|
|
28624
29201
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}",
|
|
@@ -28632,10 +29209,10 @@ const deleteSparkJobDefinitionOperationSpec = {
|
|
|
28632
29209
|
bodyMapper: CloudErrorAutoGenerated
|
|
28633
29210
|
}
|
|
28634
29211
|
},
|
|
28635
|
-
queryParameters: [
|
|
29212
|
+
queryParameters: [apiVersion3],
|
|
28636
29213
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
28637
29214
|
headerParameters: [accept],
|
|
28638
|
-
serializer: serializer$
|
|
29215
|
+
serializer: serializer$5
|
|
28639
29216
|
};
|
|
28640
29217
|
const executeSparkJobDefinitionOperationSpec = {
|
|
28641
29218
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}/execute",
|
|
@@ -28657,10 +29234,10 @@ const executeSparkJobDefinitionOperationSpec = {
|
|
|
28657
29234
|
bodyMapper: CloudErrorAutoGenerated
|
|
28658
29235
|
}
|
|
28659
29236
|
},
|
|
28660
|
-
queryParameters: [
|
|
29237
|
+
queryParameters: [apiVersion3],
|
|
28661
29238
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
28662
29239
|
headerParameters: [accept],
|
|
28663
|
-
serializer: serializer$
|
|
29240
|
+
serializer: serializer$5
|
|
28664
29241
|
};
|
|
28665
29242
|
const renameSparkJobDefinitionOperationSpec = {
|
|
28666
29243
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}/rename",
|
|
@@ -28675,11 +29252,11 @@ const renameSparkJobDefinitionOperationSpec = {
|
|
|
28675
29252
|
}
|
|
28676
29253
|
},
|
|
28677
29254
|
requestBody: request,
|
|
28678
|
-
queryParameters: [
|
|
29255
|
+
queryParameters: [apiVersion3],
|
|
28679
29256
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
28680
29257
|
headerParameters: [accept, contentType],
|
|
28681
29258
|
mediaType: "json",
|
|
28682
|
-
serializer: serializer$
|
|
29259
|
+
serializer: serializer$5
|
|
28683
29260
|
};
|
|
28684
29261
|
const debugSparkJobDefinitionOperationSpec = {
|
|
28685
29262
|
path: "/debugSparkJobDefinition",
|
|
@@ -28702,11 +29279,11 @@ const debugSparkJobDefinitionOperationSpec = {
|
|
|
28702
29279
|
}
|
|
28703
29280
|
},
|
|
28704
29281
|
requestBody: sparkJobDefinitionAzureResource,
|
|
28705
|
-
queryParameters: [
|
|
29282
|
+
queryParameters: [apiVersion3],
|
|
28706
29283
|
urlParameters: [endpoint],
|
|
28707
29284
|
headerParameters: [accept, contentType],
|
|
28708
29285
|
mediaType: "json",
|
|
28709
|
-
serializer: serializer$
|
|
29286
|
+
serializer: serializer$5
|
|
28710
29287
|
};
|
|
28711
29288
|
const getSparkJobDefinitionsByWorkspaceNextOperationSpec = {
|
|
28712
29289
|
path: "{nextLink}",
|
|
@@ -28719,10 +29296,10 @@ const getSparkJobDefinitionsByWorkspaceNextOperationSpec = {
|
|
|
28719
29296
|
bodyMapper: CloudErrorAutoGenerated
|
|
28720
29297
|
}
|
|
28721
29298
|
},
|
|
28722
|
-
queryParameters: [
|
|
29299
|
+
queryParameters: [apiVersion3],
|
|
28723
29300
|
urlParameters: [endpoint, nextLink],
|
|
28724
29301
|
headerParameters: [accept],
|
|
28725
|
-
serializer: serializer$
|
|
29302
|
+
serializer: serializer$5
|
|
28726
29303
|
};
|
|
28727
29304
|
|
|
28728
29305
|
/*
|
|
@@ -28748,12 +29325,12 @@ class SqlPoolsImpl {
|
|
|
28748
29325
|
async list(options) {
|
|
28749
29326
|
const { span } = createSpan("ArtifactsClient-list", options || {});
|
|
28750
29327
|
try {
|
|
28751
|
-
const result = await this.client.sendOperationRequest({ options }, listOperationSpec
|
|
29328
|
+
const result = await this.client.sendOperationRequest({ options }, listOperationSpec);
|
|
28752
29329
|
return result;
|
|
28753
29330
|
}
|
|
28754
29331
|
catch (error) {
|
|
28755
29332
|
span.setStatus({
|
|
28756
|
-
code:
|
|
29333
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28757
29334
|
message: error.message
|
|
28758
29335
|
});
|
|
28759
29336
|
throw error;
|
|
@@ -28770,12 +29347,12 @@ class SqlPoolsImpl {
|
|
|
28770
29347
|
async get(sqlPoolName, options) {
|
|
28771
29348
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
28772
29349
|
try {
|
|
28773
|
-
const result = await this.client.sendOperationRequest({ sqlPoolName, options }, getOperationSpec$
|
|
29350
|
+
const result = await this.client.sendOperationRequest({ sqlPoolName, options }, getOperationSpec$1);
|
|
28774
29351
|
return result;
|
|
28775
29352
|
}
|
|
28776
29353
|
catch (error) {
|
|
28777
29354
|
span.setStatus({
|
|
28778
|
-
code:
|
|
29355
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28779
29356
|
message: error.message
|
|
28780
29357
|
});
|
|
28781
29358
|
throw error;
|
|
@@ -28786,8 +29363,8 @@ class SqlPoolsImpl {
|
|
|
28786
29363
|
}
|
|
28787
29364
|
}
|
|
28788
29365
|
// Operation Specifications
|
|
28789
|
-
const serializer$
|
|
28790
|
-
const listOperationSpec
|
|
29366
|
+
const serializer$4 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
29367
|
+
const listOperationSpec = {
|
|
28791
29368
|
path: "/sqlPools",
|
|
28792
29369
|
httpMethod: "GET",
|
|
28793
29370
|
responses: {
|
|
@@ -28798,12 +29375,12 @@ const listOperationSpec$3 = {
|
|
|
28798
29375
|
bodyMapper: ErrorContract
|
|
28799
29376
|
}
|
|
28800
29377
|
},
|
|
28801
|
-
queryParameters: [
|
|
29378
|
+
queryParameters: [apiVersion3],
|
|
28802
29379
|
urlParameters: [endpoint],
|
|
28803
29380
|
headerParameters: [accept],
|
|
28804
|
-
serializer: serializer$
|
|
29381
|
+
serializer: serializer$4
|
|
28805
29382
|
};
|
|
28806
|
-
const getOperationSpec$
|
|
29383
|
+
const getOperationSpec$1 = {
|
|
28807
29384
|
path: "/sqlPools/{sqlPoolName}",
|
|
28808
29385
|
httpMethod: "GET",
|
|
28809
29386
|
responses: {
|
|
@@ -28814,10 +29391,10 @@ const getOperationSpec$4 = {
|
|
|
28814
29391
|
bodyMapper: ErrorContract
|
|
28815
29392
|
}
|
|
28816
29393
|
},
|
|
28817
|
-
queryParameters: [
|
|
29394
|
+
queryParameters: [apiVersion3],
|
|
28818
29395
|
urlParameters: [endpoint, sqlPoolName],
|
|
28819
29396
|
headerParameters: [accept],
|
|
28820
|
-
serializer: serializer$
|
|
29397
|
+
serializer: serializer$4
|
|
28821
29398
|
};
|
|
28822
29399
|
|
|
28823
29400
|
/*
|
|
@@ -28897,7 +29474,7 @@ class SqlScriptOperationsImpl {
|
|
|
28897
29474
|
}
|
|
28898
29475
|
catch (error) {
|
|
28899
29476
|
span.setStatus({
|
|
28900
|
-
code:
|
|
29477
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28901
29478
|
message: error.message
|
|
28902
29479
|
});
|
|
28903
29480
|
throw error;
|
|
@@ -28921,7 +29498,7 @@ class SqlScriptOperationsImpl {
|
|
|
28921
29498
|
}
|
|
28922
29499
|
catch (error) {
|
|
28923
29500
|
span.setStatus({
|
|
28924
|
-
code:
|
|
29501
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28925
29502
|
message: error.message
|
|
28926
29503
|
});
|
|
28927
29504
|
throw error;
|
|
@@ -28978,7 +29555,7 @@ class SqlScriptOperationsImpl {
|
|
|
28978
29555
|
}
|
|
28979
29556
|
catch (error) {
|
|
28980
29557
|
span.setStatus({
|
|
28981
|
-
code:
|
|
29558
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28982
29559
|
message: error.message
|
|
28983
29560
|
});
|
|
28984
29561
|
throw error;
|
|
@@ -29001,7 +29578,7 @@ class SqlScriptOperationsImpl {
|
|
|
29001
29578
|
}
|
|
29002
29579
|
catch (error) {
|
|
29003
29580
|
span.setStatus({
|
|
29004
|
-
code:
|
|
29581
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29005
29582
|
message: error.message
|
|
29006
29583
|
});
|
|
29007
29584
|
throw error;
|
|
@@ -29059,7 +29636,7 @@ class SqlScriptOperationsImpl {
|
|
|
29059
29636
|
}
|
|
29060
29637
|
catch (error) {
|
|
29061
29638
|
span.setStatus({
|
|
29062
|
-
code:
|
|
29639
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29063
29640
|
message: error.message
|
|
29064
29641
|
});
|
|
29065
29642
|
throw error;
|
|
@@ -29117,7 +29694,7 @@ class SqlScriptOperationsImpl {
|
|
|
29117
29694
|
}
|
|
29118
29695
|
catch (error) {
|
|
29119
29696
|
span.setStatus({
|
|
29120
|
-
code:
|
|
29697
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29121
29698
|
message: error.message
|
|
29122
29699
|
});
|
|
29123
29700
|
throw error;
|
|
@@ -29128,7 +29705,7 @@ class SqlScriptOperationsImpl {
|
|
|
29128
29705
|
}
|
|
29129
29706
|
}
|
|
29130
29707
|
// Operation Specifications
|
|
29131
|
-
const serializer$
|
|
29708
|
+
const serializer$3 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
29132
29709
|
const getSqlScriptsByWorkspaceOperationSpec = {
|
|
29133
29710
|
path: "/sqlScripts",
|
|
29134
29711
|
httpMethod: "GET",
|
|
@@ -29140,10 +29717,10 @@ const getSqlScriptsByWorkspaceOperationSpec = {
|
|
|
29140
29717
|
bodyMapper: CloudErrorAutoGenerated
|
|
29141
29718
|
}
|
|
29142
29719
|
},
|
|
29143
|
-
queryParameters: [
|
|
29720
|
+
queryParameters: [apiVersion3],
|
|
29144
29721
|
urlParameters: [endpoint],
|
|
29145
29722
|
headerParameters: [accept],
|
|
29146
|
-
serializer: serializer$
|
|
29723
|
+
serializer: serializer$3
|
|
29147
29724
|
};
|
|
29148
29725
|
const createOrUpdateSqlScriptOperationSpec = {
|
|
29149
29726
|
path: "/sqlScripts/{sqlScriptName}",
|
|
@@ -29166,7 +29743,7 @@ const createOrUpdateSqlScriptOperationSpec = {
|
|
|
29166
29743
|
}
|
|
29167
29744
|
},
|
|
29168
29745
|
requestBody: sqlScript,
|
|
29169
|
-
queryParameters: [
|
|
29746
|
+
queryParameters: [apiVersion3],
|
|
29170
29747
|
urlParameters: [endpoint, sqlScriptName],
|
|
29171
29748
|
headerParameters: [
|
|
29172
29749
|
accept,
|
|
@@ -29174,7 +29751,7 @@ const createOrUpdateSqlScriptOperationSpec = {
|
|
|
29174
29751
|
ifMatch
|
|
29175
29752
|
],
|
|
29176
29753
|
mediaType: "json",
|
|
29177
|
-
serializer: serializer$
|
|
29754
|
+
serializer: serializer$3
|
|
29178
29755
|
};
|
|
29179
29756
|
const getSqlScriptOperationSpec = {
|
|
29180
29757
|
path: "/sqlScripts/{sqlScriptName}",
|
|
@@ -29188,10 +29765,10 @@ const getSqlScriptOperationSpec = {
|
|
|
29188
29765
|
bodyMapper: CloudErrorAutoGenerated
|
|
29189
29766
|
}
|
|
29190
29767
|
},
|
|
29191
|
-
queryParameters: [
|
|
29768
|
+
queryParameters: [apiVersion3],
|
|
29192
29769
|
urlParameters: [endpoint, sqlScriptName],
|
|
29193
29770
|
headerParameters: [accept, ifNoneMatch],
|
|
29194
|
-
serializer: serializer$
|
|
29771
|
+
serializer: serializer$3
|
|
29195
29772
|
};
|
|
29196
29773
|
const deleteSqlScriptOperationSpec = {
|
|
29197
29774
|
path: "/sqlScripts/{sqlScriptName}",
|
|
@@ -29205,10 +29782,10 @@ const deleteSqlScriptOperationSpec = {
|
|
|
29205
29782
|
bodyMapper: CloudErrorAutoGenerated
|
|
29206
29783
|
}
|
|
29207
29784
|
},
|
|
29208
|
-
queryParameters: [
|
|
29785
|
+
queryParameters: [apiVersion3],
|
|
29209
29786
|
urlParameters: [endpoint, sqlScriptName],
|
|
29210
29787
|
headerParameters: [accept],
|
|
29211
|
-
serializer: serializer$
|
|
29788
|
+
serializer: serializer$3
|
|
29212
29789
|
};
|
|
29213
29790
|
const renameSqlScriptOperationSpec = {
|
|
29214
29791
|
path: "/sqlScripts/{sqlScriptName}/rename",
|
|
@@ -29223,11 +29800,11 @@ const renameSqlScriptOperationSpec = {
|
|
|
29223
29800
|
}
|
|
29224
29801
|
},
|
|
29225
29802
|
requestBody: request,
|
|
29226
|
-
queryParameters: [
|
|
29803
|
+
queryParameters: [apiVersion3],
|
|
29227
29804
|
urlParameters: [endpoint, sqlScriptName],
|
|
29228
29805
|
headerParameters: [accept, contentType],
|
|
29229
29806
|
mediaType: "json",
|
|
29230
|
-
serializer: serializer$
|
|
29807
|
+
serializer: serializer$3
|
|
29231
29808
|
};
|
|
29232
29809
|
const getSqlScriptsByWorkspaceNextOperationSpec = {
|
|
29233
29810
|
path: "{nextLink}",
|
|
@@ -29240,10 +29817,10 @@ const getSqlScriptsByWorkspaceNextOperationSpec = {
|
|
|
29240
29817
|
bodyMapper: CloudErrorAutoGenerated
|
|
29241
29818
|
}
|
|
29242
29819
|
},
|
|
29243
|
-
queryParameters: [
|
|
29820
|
+
queryParameters: [apiVersion3],
|
|
29244
29821
|
urlParameters: [endpoint, nextLink],
|
|
29245
29822
|
headerParameters: [accept],
|
|
29246
|
-
serializer: serializer$
|
|
29823
|
+
serializer: serializer$3
|
|
29247
29824
|
};
|
|
29248
29825
|
|
|
29249
29826
|
/*
|
|
@@ -29323,7 +29900,7 @@ class TriggerOperationsImpl {
|
|
|
29323
29900
|
}
|
|
29324
29901
|
catch (error) {
|
|
29325
29902
|
span.setStatus({
|
|
29326
|
-
code:
|
|
29903
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29327
29904
|
message: error.message
|
|
29328
29905
|
});
|
|
29329
29906
|
throw error;
|
|
@@ -29347,7 +29924,7 @@ class TriggerOperationsImpl {
|
|
|
29347
29924
|
}
|
|
29348
29925
|
catch (error) {
|
|
29349
29926
|
span.setStatus({
|
|
29350
|
-
code:
|
|
29927
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29351
29928
|
message: error.message
|
|
29352
29929
|
});
|
|
29353
29930
|
throw error;
|
|
@@ -29404,7 +29981,7 @@ class TriggerOperationsImpl {
|
|
|
29404
29981
|
}
|
|
29405
29982
|
catch (error) {
|
|
29406
29983
|
span.setStatus({
|
|
29407
|
-
code:
|
|
29984
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29408
29985
|
message: error.message
|
|
29409
29986
|
});
|
|
29410
29987
|
throw error;
|
|
@@ -29427,7 +30004,7 @@ class TriggerOperationsImpl {
|
|
|
29427
30004
|
}
|
|
29428
30005
|
catch (error) {
|
|
29429
30006
|
span.setStatus({
|
|
29430
|
-
code:
|
|
30007
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29431
30008
|
message: error.message
|
|
29432
30009
|
});
|
|
29433
30010
|
throw error;
|
|
@@ -29484,7 +30061,7 @@ class TriggerOperationsImpl {
|
|
|
29484
30061
|
}
|
|
29485
30062
|
catch (error) {
|
|
29486
30063
|
span.setStatus({
|
|
29487
|
-
code:
|
|
30064
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29488
30065
|
message: error.message
|
|
29489
30066
|
});
|
|
29490
30067
|
throw error;
|
|
@@ -29540,7 +30117,7 @@ class TriggerOperationsImpl {
|
|
|
29540
30117
|
}
|
|
29541
30118
|
catch (error) {
|
|
29542
30119
|
span.setStatus({
|
|
29543
|
-
code:
|
|
30120
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29544
30121
|
message: error.message
|
|
29545
30122
|
});
|
|
29546
30123
|
throw error;
|
|
@@ -29563,7 +30140,7 @@ class TriggerOperationsImpl {
|
|
|
29563
30140
|
}
|
|
29564
30141
|
catch (error) {
|
|
29565
30142
|
span.setStatus({
|
|
29566
|
-
code:
|
|
30143
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29567
30144
|
message: error.message
|
|
29568
30145
|
});
|
|
29569
30146
|
throw error;
|
|
@@ -29620,7 +30197,7 @@ class TriggerOperationsImpl {
|
|
|
29620
30197
|
}
|
|
29621
30198
|
catch (error) {
|
|
29622
30199
|
span.setStatus({
|
|
29623
|
-
code:
|
|
30200
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29624
30201
|
message: error.message
|
|
29625
30202
|
});
|
|
29626
30203
|
throw error;
|
|
@@ -29677,7 +30254,7 @@ class TriggerOperationsImpl {
|
|
|
29677
30254
|
}
|
|
29678
30255
|
catch (error) {
|
|
29679
30256
|
span.setStatus({
|
|
29680
|
-
code:
|
|
30257
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29681
30258
|
message: error.message
|
|
29682
30259
|
});
|
|
29683
30260
|
throw error;
|
|
@@ -29733,7 +30310,7 @@ class TriggerOperationsImpl {
|
|
|
29733
30310
|
}
|
|
29734
30311
|
catch (error) {
|
|
29735
30312
|
span.setStatus({
|
|
29736
|
-
code:
|
|
30313
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29737
30314
|
message: error.message
|
|
29738
30315
|
});
|
|
29739
30316
|
throw error;
|
|
@@ -29744,7 +30321,7 @@ class TriggerOperationsImpl {
|
|
|
29744
30321
|
}
|
|
29745
30322
|
}
|
|
29746
30323
|
// Operation Specifications
|
|
29747
|
-
const serializer$
|
|
30324
|
+
const serializer$2 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
29748
30325
|
const getTriggersByWorkspaceOperationSpec = {
|
|
29749
30326
|
path: "/triggers",
|
|
29750
30327
|
httpMethod: "GET",
|
|
@@ -29756,10 +30333,10 @@ const getTriggersByWorkspaceOperationSpec = {
|
|
|
29756
30333
|
bodyMapper: CloudErrorAutoGenerated
|
|
29757
30334
|
}
|
|
29758
30335
|
},
|
|
29759
|
-
queryParameters: [
|
|
30336
|
+
queryParameters: [apiVersion3],
|
|
29760
30337
|
urlParameters: [endpoint],
|
|
29761
30338
|
headerParameters: [accept],
|
|
29762
|
-
serializer: serializer$
|
|
30339
|
+
serializer: serializer$2
|
|
29763
30340
|
};
|
|
29764
30341
|
const createOrUpdateTriggerOperationSpec = {
|
|
29765
30342
|
path: "/triggers/{triggerName}",
|
|
@@ -29782,7 +30359,7 @@ const createOrUpdateTriggerOperationSpec = {
|
|
|
29782
30359
|
}
|
|
29783
30360
|
},
|
|
29784
30361
|
requestBody: trigger,
|
|
29785
|
-
queryParameters: [
|
|
30362
|
+
queryParameters: [apiVersion3],
|
|
29786
30363
|
urlParameters: [endpoint, triggerName],
|
|
29787
30364
|
headerParameters: [
|
|
29788
30365
|
accept,
|
|
@@ -29790,7 +30367,7 @@ const createOrUpdateTriggerOperationSpec = {
|
|
|
29790
30367
|
ifMatch
|
|
29791
30368
|
],
|
|
29792
30369
|
mediaType: "json",
|
|
29793
|
-
serializer: serializer$
|
|
30370
|
+
serializer: serializer$2
|
|
29794
30371
|
};
|
|
29795
30372
|
const getTriggerOperationSpec = {
|
|
29796
30373
|
path: "/triggers/{triggerName}",
|
|
@@ -29804,10 +30381,10 @@ const getTriggerOperationSpec = {
|
|
|
29804
30381
|
bodyMapper: CloudErrorAutoGenerated
|
|
29805
30382
|
}
|
|
29806
30383
|
},
|
|
29807
|
-
queryParameters: [
|
|
30384
|
+
queryParameters: [apiVersion3],
|
|
29808
30385
|
urlParameters: [endpoint, triggerName],
|
|
29809
30386
|
headerParameters: [accept, ifNoneMatch],
|
|
29810
|
-
serializer: serializer$
|
|
30387
|
+
serializer: serializer$2
|
|
29811
30388
|
};
|
|
29812
30389
|
const deleteTriggerOperationSpec = {
|
|
29813
30390
|
path: "/triggers/{triggerName}",
|
|
@@ -29821,10 +30398,10 @@ const deleteTriggerOperationSpec = {
|
|
|
29821
30398
|
bodyMapper: CloudErrorAutoGenerated
|
|
29822
30399
|
}
|
|
29823
30400
|
},
|
|
29824
|
-
queryParameters: [
|
|
30401
|
+
queryParameters: [apiVersion3],
|
|
29825
30402
|
urlParameters: [endpoint, triggerName],
|
|
29826
30403
|
headerParameters: [accept],
|
|
29827
|
-
serializer: serializer$
|
|
30404
|
+
serializer: serializer$2
|
|
29828
30405
|
};
|
|
29829
30406
|
const subscribeTriggerToEventsOperationSpec = {
|
|
29830
30407
|
path: "/triggers/{triggerName}/subscribeToEvents",
|
|
@@ -29846,10 +30423,10 @@ const subscribeTriggerToEventsOperationSpec = {
|
|
|
29846
30423
|
bodyMapper: CloudErrorAutoGenerated
|
|
29847
30424
|
}
|
|
29848
30425
|
},
|
|
29849
|
-
queryParameters: [
|
|
30426
|
+
queryParameters: [apiVersion3],
|
|
29850
30427
|
urlParameters: [endpoint, triggerName],
|
|
29851
30428
|
headerParameters: [accept],
|
|
29852
|
-
serializer: serializer$
|
|
30429
|
+
serializer: serializer$2
|
|
29853
30430
|
};
|
|
29854
30431
|
const getEventSubscriptionStatusOperationSpec = {
|
|
29855
30432
|
path: "/triggers/{triggerName}/getEventSubscriptionStatus",
|
|
@@ -29862,10 +30439,10 @@ const getEventSubscriptionStatusOperationSpec = {
|
|
|
29862
30439
|
bodyMapper: CloudErrorAutoGenerated
|
|
29863
30440
|
}
|
|
29864
30441
|
},
|
|
29865
|
-
queryParameters: [
|
|
30442
|
+
queryParameters: [apiVersion3],
|
|
29866
30443
|
urlParameters: [endpoint, triggerName],
|
|
29867
30444
|
headerParameters: [accept],
|
|
29868
|
-
serializer: serializer$
|
|
30445
|
+
serializer: serializer$2
|
|
29869
30446
|
};
|
|
29870
30447
|
const unsubscribeTriggerFromEventsOperationSpec = {
|
|
29871
30448
|
path: "/triggers/{triggerName}/unsubscribeFromEvents",
|
|
@@ -29887,10 +30464,10 @@ const unsubscribeTriggerFromEventsOperationSpec = {
|
|
|
29887
30464
|
bodyMapper: CloudErrorAutoGenerated
|
|
29888
30465
|
}
|
|
29889
30466
|
},
|
|
29890
|
-
queryParameters: [
|
|
30467
|
+
queryParameters: [apiVersion3],
|
|
29891
30468
|
urlParameters: [endpoint, triggerName],
|
|
29892
30469
|
headerParameters: [accept],
|
|
29893
|
-
serializer: serializer$
|
|
30470
|
+
serializer: serializer$2
|
|
29894
30471
|
};
|
|
29895
30472
|
const startTriggerOperationSpec = {
|
|
29896
30473
|
path: "/triggers/{triggerName}/start",
|
|
@@ -29904,10 +30481,10 @@ const startTriggerOperationSpec = {
|
|
|
29904
30481
|
bodyMapper: CloudErrorAutoGenerated
|
|
29905
30482
|
}
|
|
29906
30483
|
},
|
|
29907
|
-
queryParameters: [
|
|
30484
|
+
queryParameters: [apiVersion3],
|
|
29908
30485
|
urlParameters: [endpoint, triggerName],
|
|
29909
30486
|
headerParameters: [accept],
|
|
29910
|
-
serializer: serializer$
|
|
30487
|
+
serializer: serializer$2
|
|
29911
30488
|
};
|
|
29912
30489
|
const stopTriggerOperationSpec = {
|
|
29913
30490
|
path: "/triggers/{triggerName}/stop",
|
|
@@ -29921,10 +30498,10 @@ const stopTriggerOperationSpec = {
|
|
|
29921
30498
|
bodyMapper: CloudErrorAutoGenerated
|
|
29922
30499
|
}
|
|
29923
30500
|
},
|
|
29924
|
-
queryParameters: [
|
|
30501
|
+
queryParameters: [apiVersion3],
|
|
29925
30502
|
urlParameters: [endpoint, triggerName],
|
|
29926
30503
|
headerParameters: [accept],
|
|
29927
|
-
serializer: serializer$
|
|
30504
|
+
serializer: serializer$2
|
|
29928
30505
|
};
|
|
29929
30506
|
const getTriggersByWorkspaceNextOperationSpec = {
|
|
29930
30507
|
path: "{nextLink}",
|
|
@@ -29937,10 +30514,10 @@ const getTriggersByWorkspaceNextOperationSpec = {
|
|
|
29937
30514
|
bodyMapper: CloudErrorAutoGenerated
|
|
29938
30515
|
}
|
|
29939
30516
|
},
|
|
29940
|
-
queryParameters: [
|
|
30517
|
+
queryParameters: [apiVersion3],
|
|
29941
30518
|
urlParameters: [endpoint, nextLink],
|
|
29942
30519
|
headerParameters: [accept],
|
|
29943
|
-
serializer: serializer$
|
|
30520
|
+
serializer: serializer$2
|
|
29944
30521
|
};
|
|
29945
30522
|
|
|
29946
30523
|
/*
|
|
@@ -29973,7 +30550,7 @@ class TriggerRunOperationsImpl {
|
|
|
29973
30550
|
}
|
|
29974
30551
|
catch (error) {
|
|
29975
30552
|
span.setStatus({
|
|
29976
|
-
code:
|
|
30553
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29977
30554
|
message: error.message
|
|
29978
30555
|
});
|
|
29979
30556
|
throw error;
|
|
@@ -29996,7 +30573,7 @@ class TriggerRunOperationsImpl {
|
|
|
29996
30573
|
}
|
|
29997
30574
|
catch (error) {
|
|
29998
30575
|
span.setStatus({
|
|
29999
|
-
code:
|
|
30576
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
30000
30577
|
message: error.message
|
|
30001
30578
|
});
|
|
30002
30579
|
throw error;
|
|
@@ -30018,7 +30595,7 @@ class TriggerRunOperationsImpl {
|
|
|
30018
30595
|
}
|
|
30019
30596
|
catch (error) {
|
|
30020
30597
|
span.setStatus({
|
|
30021
|
-
code:
|
|
30598
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
30022
30599
|
message: error.message
|
|
30023
30600
|
});
|
|
30024
30601
|
throw error;
|
|
@@ -30029,7 +30606,7 @@ class TriggerRunOperationsImpl {
|
|
|
30029
30606
|
}
|
|
30030
30607
|
}
|
|
30031
30608
|
// Operation Specifications
|
|
30032
|
-
const serializer$
|
|
30609
|
+
const serializer$1 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
30033
30610
|
const rerunTriggerInstanceOperationSpec = {
|
|
30034
30611
|
path: "/triggers/{triggerName}/triggerRuns/{runId}/rerun",
|
|
30035
30612
|
httpMethod: "POST",
|
|
@@ -30039,14 +30616,14 @@ const rerunTriggerInstanceOperationSpec = {
|
|
|
30039
30616
|
bodyMapper: CloudErrorAutoGenerated
|
|
30040
30617
|
}
|
|
30041
30618
|
},
|
|
30042
|
-
queryParameters: [
|
|
30619
|
+
queryParameters: [apiVersion3],
|
|
30043
30620
|
urlParameters: [
|
|
30044
30621
|
endpoint,
|
|
30045
30622
|
runId,
|
|
30046
30623
|
triggerName
|
|
30047
30624
|
],
|
|
30048
30625
|
headerParameters: [accept],
|
|
30049
|
-
serializer: serializer$
|
|
30626
|
+
serializer: serializer$1
|
|
30050
30627
|
};
|
|
30051
30628
|
const cancelTriggerInstanceOperationSpec = {
|
|
30052
30629
|
path: "/triggers/{triggerName}/triggerRuns/{runId}/cancel",
|
|
@@ -30057,14 +30634,14 @@ const cancelTriggerInstanceOperationSpec = {
|
|
|
30057
30634
|
bodyMapper: CloudErrorAutoGenerated
|
|
30058
30635
|
}
|
|
30059
30636
|
},
|
|
30060
|
-
queryParameters: [
|
|
30637
|
+
queryParameters: [apiVersion3],
|
|
30061
30638
|
urlParameters: [
|
|
30062
30639
|
endpoint,
|
|
30063
30640
|
runId,
|
|
30064
30641
|
triggerName
|
|
30065
30642
|
],
|
|
30066
30643
|
headerParameters: [accept],
|
|
30067
|
-
serializer: serializer$
|
|
30644
|
+
serializer: serializer$1
|
|
30068
30645
|
};
|
|
30069
30646
|
const queryTriggerRunsByWorkspaceOperationSpec = {
|
|
30070
30647
|
path: "/queryTriggerRuns",
|
|
@@ -30078,11 +30655,11 @@ const queryTriggerRunsByWorkspaceOperationSpec = {
|
|
|
30078
30655
|
}
|
|
30079
30656
|
},
|
|
30080
30657
|
requestBody: filterParameters,
|
|
30081
|
-
queryParameters: [
|
|
30658
|
+
queryParameters: [apiVersion3],
|
|
30082
30659
|
urlParameters: [endpoint],
|
|
30083
30660
|
headerParameters: [accept, contentType],
|
|
30084
30661
|
mediaType: "json",
|
|
30085
|
-
serializer: serializer$
|
|
30662
|
+
serializer: serializer$1
|
|
30086
30663
|
};
|
|
30087
30664
|
|
|
30088
30665
|
/*
|
|
@@ -30108,12 +30685,12 @@ class WorkspaceOperationsImpl {
|
|
|
30108
30685
|
async get(options) {
|
|
30109
30686
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
30110
30687
|
try {
|
|
30111
|
-
const result = await this.client.sendOperationRequest({ options }, getOperationSpec
|
|
30688
|
+
const result = await this.client.sendOperationRequest({ options }, getOperationSpec);
|
|
30112
30689
|
return result;
|
|
30113
30690
|
}
|
|
30114
30691
|
catch (error) {
|
|
30115
30692
|
span.setStatus({
|
|
30116
|
-
code:
|
|
30693
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
30117
30694
|
message: error.message
|
|
30118
30695
|
});
|
|
30119
30696
|
throw error;
|
|
@@ -30124,8 +30701,8 @@ class WorkspaceOperationsImpl {
|
|
|
30124
30701
|
}
|
|
30125
30702
|
}
|
|
30126
30703
|
// Operation Specifications
|
|
30127
|
-
const serializer
|
|
30128
|
-
const getOperationSpec
|
|
30704
|
+
const serializer = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
30705
|
+
const getOperationSpec = {
|
|
30129
30706
|
path: "/workspace",
|
|
30130
30707
|
httpMethod: "GET",
|
|
30131
30708
|
responses: {
|
|
@@ -30136,10 +30713,10 @@ const getOperationSpec$5 = {
|
|
|
30136
30713
|
bodyMapper: ErrorContract
|
|
30137
30714
|
}
|
|
30138
30715
|
},
|
|
30139
|
-
queryParameters: [
|
|
30716
|
+
queryParameters: [apiVersion3],
|
|
30140
30717
|
urlParameters: [endpoint],
|
|
30141
30718
|
headerParameters: [accept],
|
|
30142
|
-
serializer
|
|
30719
|
+
serializer
|
|
30143
30720
|
};
|
|
30144
30721
|
|
|
30145
30722
|
/*
|
|
@@ -30149,7 +30726,7 @@ const getOperationSpec$5 = {
|
|
|
30149
30726
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
30150
30727
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
30151
30728
|
*/
|
|
30152
|
-
class ArtifactsClientContext extends
|
|
30729
|
+
class ArtifactsClientContext extends coreClient__namespace.ServiceClient {
|
|
30153
30730
|
/**
|
|
30154
30731
|
* Initializes a new instance of the ArtifactsClientContext class.
|
|
30155
30732
|
* @param credentials Subscription credentials which uniquely identify client subscription.
|
|
@@ -30172,7 +30749,7 @@ class ArtifactsClientContext extends coreClient.ServiceClient {
|
|
|
30172
30749
|
requestContentType: "application/json; charset=utf-8",
|
|
30173
30750
|
credential: credentials
|
|
30174
30751
|
};
|
|
30175
|
-
const packageDetails = `azsdk-js-synapse-artifacts/1.0.0-beta.
|
|
30752
|
+
const packageDetails = `azsdk-js-synapse-artifacts/1.0.0-beta.9`;
|
|
30176
30753
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
30177
30754
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
30178
30755
|
: `${packageDetails}`;
|
|
@@ -30207,6 +30784,7 @@ class ArtifactsClient extends ArtifactsClientContext {
|
|
|
30207
30784
|
super(credentials, endpoint, options);
|
|
30208
30785
|
this.kqlScripts = new KqlScriptsImpl(this);
|
|
30209
30786
|
this.kqlScriptOperations = new KqlScriptOperationsImpl(this);
|
|
30787
|
+
this.metastore = new MetastoreImpl(this);
|
|
30210
30788
|
this.sparkConfigurationOperations = new SparkConfigurationOperationsImpl(this);
|
|
30211
30789
|
this.bigDataPools = new BigDataPoolsImpl(this);
|
|
30212
30790
|
this.dataFlowOperations = new DataFlowOperationsImpl(this);
|