@azure/synapse-artifacts 1.0.0-beta.6 → 1.0.0-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/README.md +1 -1
- package/dist/index.js +1597 -611
- package/dist/index.js.map +1 -1
- package/dist-esm/src/artifactsClient.js +31 -4
- package/dist-esm/src/artifactsClient.js.map +1 -1
- package/dist-esm/src/index.js +0 -1
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/models/index.js +83 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.js +792 -317
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.js +43 -3
- 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/kqlScriptOperations.js.map +1 -1
- package/dist-esm/src/operations/kqlScripts.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 +17 -18
- package/types/synapse-artifacts.d.ts +511 -94
- package/dist-esm/src/artifactsClientContext.js +0 -47
- package/dist-esm/src/artifactsClientContext.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -2,11 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
+
var coreClient = require('@azure/core-client');
|
|
5
6
|
var tslib = require('tslib');
|
|
6
7
|
var coreTracing = require('@azure/core-tracing');
|
|
7
|
-
var coreClient = require('@azure/core-client');
|
|
8
8
|
var coreLro = require('@azure/core-lro');
|
|
9
9
|
|
|
10
|
+
function _interopNamespace(e) {
|
|
11
|
+
if (e && e.__esModule) return e;
|
|
12
|
+
var n = Object.create(null);
|
|
13
|
+
if (e) {
|
|
14
|
+
Object.keys(e).forEach(function (k) {
|
|
15
|
+
if (k !== 'default') {
|
|
16
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
17
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
18
|
+
enumerable: true,
|
|
19
|
+
get: function () { return e[k]; }
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
}
|
|
24
|
+
n["default"] = e;
|
|
25
|
+
return Object.freeze(n);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
var coreClient__namespace = /*#__PURE__*/_interopNamespace(coreClient);
|
|
29
|
+
var coreTracing__namespace = /*#__PURE__*/_interopNamespace(coreTracing);
|
|
30
|
+
|
|
10
31
|
/*
|
|
11
32
|
* Copyright (c) Microsoft Corporation.
|
|
12
33
|
* Licensed under the MIT License.
|
|
@@ -14,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,18 +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;
|
|
232
|
+
(function (KnownCreateMode) {
|
|
233
|
+
KnownCreateMode["Default"] = "Default";
|
|
234
|
+
KnownCreateMode["PointInTimeRestore"] = "PointInTimeRestore";
|
|
235
|
+
KnownCreateMode["Recovery"] = "Recovery";
|
|
236
|
+
KnownCreateMode["Restore"] = "Restore";
|
|
237
|
+
})(exports.KnownCreateMode || (exports.KnownCreateMode = {}));
|
|
238
|
+
/** Known values of {@link SqlScriptType} that the service accepts. */
|
|
239
|
+
exports.KnownSqlScriptType = void 0;
|
|
153
240
|
(function (KnownSqlScriptType) {
|
|
154
241
|
KnownSqlScriptType["SqlQuery"] = "SqlQuery";
|
|
155
242
|
})(exports.KnownSqlScriptType || (exports.KnownSqlScriptType = {}));
|
|
243
|
+
/** Known values of {@link SqlConnectionType} that the service accepts. */
|
|
244
|
+
exports.KnownSqlConnectionType = void 0;
|
|
156
245
|
(function (KnownSqlConnectionType) {
|
|
157
246
|
KnownSqlConnectionType["SqlOnDemand"] = "SqlOnDemand";
|
|
158
247
|
KnownSqlConnectionType["SqlPool"] = "SqlPool";
|
|
159
248
|
})(exports.KnownSqlConnectionType || (exports.KnownSqlConnectionType = {}));
|
|
249
|
+
/** Known values of {@link TriggerRuntimeState} that the service accepts. */
|
|
250
|
+
exports.KnownTriggerRuntimeState = void 0;
|
|
160
251
|
(function (KnownTriggerRuntimeState) {
|
|
161
252
|
KnownTriggerRuntimeState["Started"] = "Started";
|
|
162
253
|
KnownTriggerRuntimeState["Stopped"] = "Stopped";
|
|
163
254
|
KnownTriggerRuntimeState["Disabled"] = "Disabled";
|
|
164
255
|
})(exports.KnownTriggerRuntimeState || (exports.KnownTriggerRuntimeState = {}));
|
|
256
|
+
/** Known values of {@link EventSubscriptionStatus} that the service accepts. */
|
|
257
|
+
exports.KnownEventSubscriptionStatus = void 0;
|
|
165
258
|
(function (KnownEventSubscriptionStatus) {
|
|
166
259
|
KnownEventSubscriptionStatus["Enabled"] = "Enabled";
|
|
167
260
|
KnownEventSubscriptionStatus["Provisioning"] = "Provisioning";
|
|
@@ -169,43 +262,67 @@ var coreLro = require('@azure/core-lro');
|
|
|
169
262
|
KnownEventSubscriptionStatus["Disabled"] = "Disabled";
|
|
170
263
|
KnownEventSubscriptionStatus["Unknown"] = "Unknown";
|
|
171
264
|
})(exports.KnownEventSubscriptionStatus || (exports.KnownEventSubscriptionStatus = {}));
|
|
265
|
+
/** Known values of {@link TriggerRunStatus} that the service accepts. */
|
|
266
|
+
exports.KnownTriggerRunStatus = void 0;
|
|
172
267
|
(function (KnownTriggerRunStatus) {
|
|
173
268
|
KnownTriggerRunStatus["Succeeded"] = "Succeeded";
|
|
174
269
|
KnownTriggerRunStatus["Failed"] = "Failed";
|
|
175
270
|
KnownTriggerRunStatus["Inprogress"] = "Inprogress";
|
|
176
271
|
})(exports.KnownTriggerRunStatus || (exports.KnownTriggerRunStatus = {}));
|
|
272
|
+
/** Known values of {@link ExpressionType} that the service accepts. */
|
|
273
|
+
exports.KnownExpressionType = void 0;
|
|
177
274
|
(function (KnownExpressionType) {
|
|
178
275
|
KnownExpressionType["Expression"] = "Expression";
|
|
179
276
|
})(exports.KnownExpressionType || (exports.KnownExpressionType = {}));
|
|
277
|
+
/** Known values of {@link PipelineReferenceType} that the service accepts. */
|
|
278
|
+
exports.KnownPipelineReferenceType = void 0;
|
|
180
279
|
(function (KnownPipelineReferenceType) {
|
|
181
280
|
KnownPipelineReferenceType["PipelineReference"] = "PipelineReference";
|
|
182
281
|
})(exports.KnownPipelineReferenceType || (exports.KnownPipelineReferenceType = {}));
|
|
282
|
+
/** Known values of {@link DatasetReferenceType} that the service accepts. */
|
|
283
|
+
exports.KnownDatasetReferenceType = void 0;
|
|
183
284
|
(function (KnownDatasetReferenceType) {
|
|
184
285
|
KnownDatasetReferenceType["DatasetReference"] = "DatasetReference";
|
|
185
286
|
})(exports.KnownDatasetReferenceType || (exports.KnownDatasetReferenceType = {}));
|
|
287
|
+
/** Known values of {@link DataFlowReferenceType} that the service accepts. */
|
|
288
|
+
exports.KnownDataFlowReferenceType = void 0;
|
|
186
289
|
(function (KnownDataFlowReferenceType) {
|
|
187
290
|
KnownDataFlowReferenceType["DataFlowReference"] = "DataFlowReference";
|
|
188
291
|
})(exports.KnownDataFlowReferenceType || (exports.KnownDataFlowReferenceType = {}));
|
|
292
|
+
/** Known values of {@link NotebookReferenceType} that the service accepts. */
|
|
293
|
+
exports.KnownNotebookReferenceType = void 0;
|
|
189
294
|
(function (KnownNotebookReferenceType) {
|
|
190
295
|
KnownNotebookReferenceType["NotebookReference"] = "NotebookReference";
|
|
191
296
|
})(exports.KnownNotebookReferenceType || (exports.KnownNotebookReferenceType = {}));
|
|
297
|
+
/** Known values of {@link SparkJobReferenceType} that the service accepts. */
|
|
298
|
+
exports.KnownSparkJobReferenceType = void 0;
|
|
192
299
|
(function (KnownSparkJobReferenceType) {
|
|
193
300
|
KnownSparkJobReferenceType["SparkJobDefinitionReference"] = "SparkJobDefinitionReference";
|
|
194
301
|
})(exports.KnownSparkJobReferenceType || (exports.KnownSparkJobReferenceType = {}));
|
|
302
|
+
/** Known values of {@link SqlPoolReferenceType} that the service accepts. */
|
|
303
|
+
exports.KnownSqlPoolReferenceType = void 0;
|
|
195
304
|
(function (KnownSqlPoolReferenceType) {
|
|
196
305
|
KnownSqlPoolReferenceType["SqlPoolReference"] = "SqlPoolReference";
|
|
197
306
|
})(exports.KnownSqlPoolReferenceType || (exports.KnownSqlPoolReferenceType = {}));
|
|
307
|
+
/** Known values of {@link SybaseAuthenticationType} that the service accepts. */
|
|
308
|
+
exports.KnownSybaseAuthenticationType = void 0;
|
|
198
309
|
(function (KnownSybaseAuthenticationType) {
|
|
199
310
|
KnownSybaseAuthenticationType["Basic"] = "Basic";
|
|
200
311
|
KnownSybaseAuthenticationType["Windows"] = "Windows";
|
|
201
312
|
})(exports.KnownSybaseAuthenticationType || (exports.KnownSybaseAuthenticationType = {}));
|
|
313
|
+
/** Known values of {@link Db2AuthenticationType} that the service accepts. */
|
|
314
|
+
exports.KnownDb2AuthenticationType = void 0;
|
|
202
315
|
(function (KnownDb2AuthenticationType) {
|
|
203
316
|
KnownDb2AuthenticationType["Basic"] = "Basic";
|
|
204
317
|
})(exports.KnownDb2AuthenticationType || (exports.KnownDb2AuthenticationType = {}));
|
|
318
|
+
/** Known values of {@link TeradataAuthenticationType} that the service accepts. */
|
|
319
|
+
exports.KnownTeradataAuthenticationType = void 0;
|
|
205
320
|
(function (KnownTeradataAuthenticationType) {
|
|
206
321
|
KnownTeradataAuthenticationType["Basic"] = "Basic";
|
|
207
322
|
KnownTeradataAuthenticationType["Windows"] = "Windows";
|
|
208
323
|
})(exports.KnownTeradataAuthenticationType || (exports.KnownTeradataAuthenticationType = {}));
|
|
324
|
+
/** Known values of {@link ODataAuthenticationType} that the service accepts. */
|
|
325
|
+
exports.KnownODataAuthenticationType = void 0;
|
|
209
326
|
(function (KnownODataAuthenticationType) {
|
|
210
327
|
KnownODataAuthenticationType["Basic"] = "Basic";
|
|
211
328
|
KnownODataAuthenticationType["Anonymous"] = "Anonymous";
|
|
@@ -213,25 +330,47 @@ var coreLro = require('@azure/core-lro');
|
|
|
213
330
|
KnownODataAuthenticationType["AadServicePrincipal"] = "AadServicePrincipal";
|
|
214
331
|
KnownODataAuthenticationType["ManagedServiceIdentity"] = "ManagedServiceIdentity";
|
|
215
332
|
})(exports.KnownODataAuthenticationType || (exports.KnownODataAuthenticationType = {}));
|
|
333
|
+
/** Known values of {@link ODataAadServicePrincipalCredentialType} that the service accepts. */
|
|
334
|
+
exports.KnownODataAadServicePrincipalCredentialType = void 0;
|
|
216
335
|
(function (KnownODataAadServicePrincipalCredentialType) {
|
|
217
336
|
KnownODataAadServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
|
|
218
337
|
KnownODataAadServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
|
|
219
338
|
})(exports.KnownODataAadServicePrincipalCredentialType || (exports.KnownODataAadServicePrincipalCredentialType = {}));
|
|
339
|
+
/** Known values of {@link WebAuthenticationType} that the service accepts. */
|
|
340
|
+
exports.KnownWebAuthenticationType = void 0;
|
|
220
341
|
(function (KnownWebAuthenticationType) {
|
|
221
342
|
KnownWebAuthenticationType["Basic"] = "Basic";
|
|
222
343
|
KnownWebAuthenticationType["Anonymous"] = "Anonymous";
|
|
223
344
|
KnownWebAuthenticationType["ClientCertificate"] = "ClientCertificate";
|
|
224
345
|
})(exports.KnownWebAuthenticationType || (exports.KnownWebAuthenticationType = {}));
|
|
346
|
+
/** Known values of {@link MongoDbAuthenticationType} that the service accepts. */
|
|
347
|
+
exports.KnownMongoDbAuthenticationType = void 0;
|
|
225
348
|
(function (KnownMongoDbAuthenticationType) {
|
|
226
349
|
KnownMongoDbAuthenticationType["Basic"] = "Basic";
|
|
227
350
|
KnownMongoDbAuthenticationType["Anonymous"] = "Anonymous";
|
|
228
351
|
})(exports.KnownMongoDbAuthenticationType || (exports.KnownMongoDbAuthenticationType = {}));
|
|
352
|
+
/** Known values of {@link RestServiceAuthenticationType} that the service accepts. */
|
|
353
|
+
exports.KnownRestServiceAuthenticationType = void 0;
|
|
229
354
|
(function (KnownRestServiceAuthenticationType) {
|
|
230
355
|
KnownRestServiceAuthenticationType["Anonymous"] = "Anonymous";
|
|
231
356
|
KnownRestServiceAuthenticationType["Basic"] = "Basic";
|
|
232
357
|
KnownRestServiceAuthenticationType["AadServicePrincipal"] = "AadServicePrincipal";
|
|
233
358
|
KnownRestServiceAuthenticationType["ManagedServiceIdentity"] = "ManagedServiceIdentity";
|
|
234
359
|
})(exports.KnownRestServiceAuthenticationType || (exports.KnownRestServiceAuthenticationType = {}));
|
|
360
|
+
/** Known values of {@link TeamDeskAuthenticationType} that the service accepts. */
|
|
361
|
+
exports.KnownTeamDeskAuthenticationType = void 0;
|
|
362
|
+
(function (KnownTeamDeskAuthenticationType) {
|
|
363
|
+
KnownTeamDeskAuthenticationType["Basic"] = "Basic";
|
|
364
|
+
KnownTeamDeskAuthenticationType["Token"] = "Token";
|
|
365
|
+
})(exports.KnownTeamDeskAuthenticationType || (exports.KnownTeamDeskAuthenticationType = {}));
|
|
366
|
+
/** Known values of {@link ZendeskAuthenticationType} that the service accepts. */
|
|
367
|
+
exports.KnownZendeskAuthenticationType = void 0;
|
|
368
|
+
(function (KnownZendeskAuthenticationType) {
|
|
369
|
+
KnownZendeskAuthenticationType["Basic"] = "Basic";
|
|
370
|
+
KnownZendeskAuthenticationType["Token"] = "Token";
|
|
371
|
+
})(exports.KnownZendeskAuthenticationType || (exports.KnownZendeskAuthenticationType = {}));
|
|
372
|
+
/** Known values of {@link HttpAuthenticationType} that the service accepts. */
|
|
373
|
+
exports.KnownHttpAuthenticationType = void 0;
|
|
235
374
|
(function (KnownHttpAuthenticationType) {
|
|
236
375
|
KnownHttpAuthenticationType["Basic"] = "Basic";
|
|
237
376
|
KnownHttpAuthenticationType["Anonymous"] = "Anonymous";
|
|
@@ -239,89 +378,127 @@ var coreLro = require('@azure/core-lro');
|
|
|
239
378
|
KnownHttpAuthenticationType["Windows"] = "Windows";
|
|
240
379
|
KnownHttpAuthenticationType["ClientCertificate"] = "ClientCertificate";
|
|
241
380
|
})(exports.KnownHttpAuthenticationType || (exports.KnownHttpAuthenticationType = {}));
|
|
381
|
+
/** Known values of {@link FtpAuthenticationType} that the service accepts. */
|
|
382
|
+
exports.KnownFtpAuthenticationType = void 0;
|
|
242
383
|
(function (KnownFtpAuthenticationType) {
|
|
243
384
|
KnownFtpAuthenticationType["Basic"] = "Basic";
|
|
244
385
|
KnownFtpAuthenticationType["Anonymous"] = "Anonymous";
|
|
245
386
|
})(exports.KnownFtpAuthenticationType || (exports.KnownFtpAuthenticationType = {}));
|
|
387
|
+
/** Known values of {@link SftpAuthenticationType} that the service accepts. */
|
|
388
|
+
exports.KnownSftpAuthenticationType = void 0;
|
|
246
389
|
(function (KnownSftpAuthenticationType) {
|
|
247
390
|
KnownSftpAuthenticationType["Basic"] = "Basic";
|
|
248
391
|
KnownSftpAuthenticationType["SshPublicKey"] = "SshPublicKey";
|
|
249
392
|
})(exports.KnownSftpAuthenticationType || (exports.KnownSftpAuthenticationType = {}));
|
|
393
|
+
/** Known values of {@link SapHanaAuthenticationType} that the service accepts. */
|
|
394
|
+
exports.KnownSapHanaAuthenticationType = void 0;
|
|
250
395
|
(function (KnownSapHanaAuthenticationType) {
|
|
251
396
|
KnownSapHanaAuthenticationType["Basic"] = "Basic";
|
|
252
397
|
KnownSapHanaAuthenticationType["Windows"] = "Windows";
|
|
253
398
|
})(exports.KnownSapHanaAuthenticationType || (exports.KnownSapHanaAuthenticationType = {}));
|
|
399
|
+
/** Known values of {@link GoogleBigQueryAuthenticationType} that the service accepts. */
|
|
400
|
+
exports.KnownGoogleBigQueryAuthenticationType = void 0;
|
|
254
401
|
(function (KnownGoogleBigQueryAuthenticationType) {
|
|
255
402
|
KnownGoogleBigQueryAuthenticationType["ServiceAuthentication"] = "ServiceAuthentication";
|
|
256
403
|
KnownGoogleBigQueryAuthenticationType["UserAuthentication"] = "UserAuthentication";
|
|
257
404
|
})(exports.KnownGoogleBigQueryAuthenticationType || (exports.KnownGoogleBigQueryAuthenticationType = {}));
|
|
405
|
+
/** Known values of {@link HBaseAuthenticationType} that the service accepts. */
|
|
406
|
+
exports.KnownHBaseAuthenticationType = void 0;
|
|
258
407
|
(function (KnownHBaseAuthenticationType) {
|
|
259
408
|
KnownHBaseAuthenticationType["Anonymous"] = "Anonymous";
|
|
260
409
|
KnownHBaseAuthenticationType["Basic"] = "Basic";
|
|
261
410
|
})(exports.KnownHBaseAuthenticationType || (exports.KnownHBaseAuthenticationType = {}));
|
|
411
|
+
/** Known values of {@link HiveServerType} that the service accepts. */
|
|
412
|
+
exports.KnownHiveServerType = void 0;
|
|
262
413
|
(function (KnownHiveServerType) {
|
|
263
414
|
KnownHiveServerType["HiveServer1"] = "HiveServer1";
|
|
264
415
|
KnownHiveServerType["HiveServer2"] = "HiveServer2";
|
|
265
416
|
KnownHiveServerType["HiveThriftServer"] = "HiveThriftServer";
|
|
266
417
|
})(exports.KnownHiveServerType || (exports.KnownHiveServerType = {}));
|
|
418
|
+
/** Known values of {@link HiveThriftTransportProtocol} that the service accepts. */
|
|
419
|
+
exports.KnownHiveThriftTransportProtocol = void 0;
|
|
267
420
|
(function (KnownHiveThriftTransportProtocol) {
|
|
268
421
|
KnownHiveThriftTransportProtocol["Binary"] = "Binary";
|
|
269
422
|
KnownHiveThriftTransportProtocol["Sasl"] = "SASL";
|
|
270
423
|
KnownHiveThriftTransportProtocol["Http"] = "HTTP ";
|
|
271
424
|
})(exports.KnownHiveThriftTransportProtocol || (exports.KnownHiveThriftTransportProtocol = {}));
|
|
425
|
+
/** Known values of {@link HiveAuthenticationType} that the service accepts. */
|
|
426
|
+
exports.KnownHiveAuthenticationType = void 0;
|
|
272
427
|
(function (KnownHiveAuthenticationType) {
|
|
273
428
|
KnownHiveAuthenticationType["Anonymous"] = "Anonymous";
|
|
274
429
|
KnownHiveAuthenticationType["Username"] = "Username";
|
|
275
430
|
KnownHiveAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
276
431
|
KnownHiveAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
277
432
|
})(exports.KnownHiveAuthenticationType || (exports.KnownHiveAuthenticationType = {}));
|
|
433
|
+
/** Known values of {@link ImpalaAuthenticationType} that the service accepts. */
|
|
434
|
+
exports.KnownImpalaAuthenticationType = void 0;
|
|
278
435
|
(function (KnownImpalaAuthenticationType) {
|
|
279
436
|
KnownImpalaAuthenticationType["Anonymous"] = "Anonymous";
|
|
280
437
|
KnownImpalaAuthenticationType["SaslUsername"] = "SASLUsername";
|
|
281
438
|
KnownImpalaAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
282
439
|
})(exports.KnownImpalaAuthenticationType || (exports.KnownImpalaAuthenticationType = {}));
|
|
440
|
+
/** Known values of {@link PhoenixAuthenticationType} that the service accepts. */
|
|
441
|
+
exports.KnownPhoenixAuthenticationType = void 0;
|
|
283
442
|
(function (KnownPhoenixAuthenticationType) {
|
|
284
443
|
KnownPhoenixAuthenticationType["Anonymous"] = "Anonymous";
|
|
285
444
|
KnownPhoenixAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
286
445
|
KnownPhoenixAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
287
446
|
})(exports.KnownPhoenixAuthenticationType || (exports.KnownPhoenixAuthenticationType = {}));
|
|
447
|
+
/** Known values of {@link PrestoAuthenticationType} that the service accepts. */
|
|
448
|
+
exports.KnownPrestoAuthenticationType = void 0;
|
|
288
449
|
(function (KnownPrestoAuthenticationType) {
|
|
289
450
|
KnownPrestoAuthenticationType["Anonymous"] = "Anonymous";
|
|
290
451
|
KnownPrestoAuthenticationType["Ldap"] = "LDAP";
|
|
291
452
|
})(exports.KnownPrestoAuthenticationType || (exports.KnownPrestoAuthenticationType = {}));
|
|
453
|
+
/** Known values of {@link ServiceNowAuthenticationType} that the service accepts. */
|
|
454
|
+
exports.KnownServiceNowAuthenticationType = void 0;
|
|
292
455
|
(function (KnownServiceNowAuthenticationType) {
|
|
293
456
|
KnownServiceNowAuthenticationType["Basic"] = "Basic";
|
|
294
457
|
KnownServiceNowAuthenticationType["OAuth2"] = "OAuth2";
|
|
295
458
|
})(exports.KnownServiceNowAuthenticationType || (exports.KnownServiceNowAuthenticationType = {}));
|
|
459
|
+
/** Known values of {@link SparkServerType} that the service accepts. */
|
|
460
|
+
exports.KnownSparkServerType = void 0;
|
|
296
461
|
(function (KnownSparkServerType) {
|
|
297
462
|
KnownSparkServerType["SharkServer"] = "SharkServer";
|
|
298
463
|
KnownSparkServerType["SharkServer2"] = "SharkServer2";
|
|
299
464
|
KnownSparkServerType["SparkThriftServer"] = "SparkThriftServer";
|
|
300
465
|
})(exports.KnownSparkServerType || (exports.KnownSparkServerType = {}));
|
|
466
|
+
/** Known values of {@link SparkThriftTransportProtocol} that the service accepts. */
|
|
467
|
+
exports.KnownSparkThriftTransportProtocol = void 0;
|
|
301
468
|
(function (KnownSparkThriftTransportProtocol) {
|
|
302
469
|
KnownSparkThriftTransportProtocol["Binary"] = "Binary";
|
|
303
470
|
KnownSparkThriftTransportProtocol["Sasl"] = "SASL";
|
|
304
471
|
KnownSparkThriftTransportProtocol["Http"] = "HTTP ";
|
|
305
472
|
})(exports.KnownSparkThriftTransportProtocol || (exports.KnownSparkThriftTransportProtocol = {}));
|
|
473
|
+
/** Known values of {@link SparkAuthenticationType} that the service accepts. */
|
|
474
|
+
exports.KnownSparkAuthenticationType = void 0;
|
|
306
475
|
(function (KnownSparkAuthenticationType) {
|
|
307
476
|
KnownSparkAuthenticationType["Anonymous"] = "Anonymous";
|
|
308
477
|
KnownSparkAuthenticationType["Username"] = "Username";
|
|
309
478
|
KnownSparkAuthenticationType["UsernameAndPassword"] = "UsernameAndPassword";
|
|
310
479
|
KnownSparkAuthenticationType["WindowsAzureHDInsightService"] = "WindowsAzureHDInsightService";
|
|
311
480
|
})(exports.KnownSparkAuthenticationType || (exports.KnownSparkAuthenticationType = {}));
|
|
481
|
+
/** Known values of {@link GoogleAdWordsAuthenticationType} that the service accepts. */
|
|
482
|
+
exports.KnownGoogleAdWordsAuthenticationType = void 0;
|
|
312
483
|
(function (KnownGoogleAdWordsAuthenticationType) {
|
|
313
484
|
KnownGoogleAdWordsAuthenticationType["ServiceAuthentication"] = "ServiceAuthentication";
|
|
314
485
|
KnownGoogleAdWordsAuthenticationType["UserAuthentication"] = "UserAuthentication";
|
|
315
486
|
})(exports.KnownGoogleAdWordsAuthenticationType || (exports.KnownGoogleAdWordsAuthenticationType = {}));
|
|
487
|
+
/** Known values of {@link SalesforceSourceReadBehavior} that the service accepts. */
|
|
488
|
+
exports.KnownSalesforceSourceReadBehavior = void 0;
|
|
316
489
|
(function (KnownSalesforceSourceReadBehavior) {
|
|
317
490
|
KnownSalesforceSourceReadBehavior["Query"] = "Query";
|
|
318
491
|
KnownSalesforceSourceReadBehavior["QueryAll"] = "QueryAll";
|
|
319
492
|
})(exports.KnownSalesforceSourceReadBehavior || (exports.KnownSalesforceSourceReadBehavior = {}));
|
|
493
|
+
/** Known values of {@link SapHanaPartitionOption} that the service accepts. */
|
|
494
|
+
exports.KnownSapHanaPartitionOption = void 0;
|
|
320
495
|
(function (KnownSapHanaPartitionOption) {
|
|
321
496
|
KnownSapHanaPartitionOption["None"] = "None";
|
|
322
497
|
KnownSapHanaPartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
323
498
|
KnownSapHanaPartitionOption["SapHanaDynamicRange"] = "SapHanaDynamicRange";
|
|
324
499
|
})(exports.KnownSapHanaPartitionOption || (exports.KnownSapHanaPartitionOption = {}));
|
|
500
|
+
/** Known values of {@link SapTablePartitionOption} that the service accepts. */
|
|
501
|
+
exports.KnownSapTablePartitionOption = void 0;
|
|
325
502
|
(function (KnownSapTablePartitionOption) {
|
|
326
503
|
KnownSapTablePartitionOption["None"] = "None";
|
|
327
504
|
KnownSapTablePartitionOption["PartitionOnInt"] = "PartitionOnInt";
|
|
@@ -330,6 +507,8 @@ var coreLro = require('@azure/core-lro');
|
|
|
330
507
|
KnownSapTablePartitionOption["PartitionOnCalendarDate"] = "PartitionOnCalendarDate";
|
|
331
508
|
KnownSapTablePartitionOption["PartitionOnTime"] = "PartitionOnTime";
|
|
332
509
|
})(exports.KnownSapTablePartitionOption || (exports.KnownSapTablePartitionOption = {}));
|
|
510
|
+
/** Known values of {@link StoredProcedureParameterType} that the service accepts. */
|
|
511
|
+
exports.KnownStoredProcedureParameterType = void 0;
|
|
333
512
|
(function (KnownStoredProcedureParameterType) {
|
|
334
513
|
KnownStoredProcedureParameterType["String"] = "String";
|
|
335
514
|
KnownStoredProcedureParameterType["Int"] = "Int";
|
|
@@ -339,16 +518,22 @@ var coreLro = require('@azure/core-lro');
|
|
|
339
518
|
KnownStoredProcedureParameterType["Boolean"] = "Boolean";
|
|
340
519
|
KnownStoredProcedureParameterType["Date"] = "Date";
|
|
341
520
|
})(exports.KnownStoredProcedureParameterType || (exports.KnownStoredProcedureParameterType = {}));
|
|
521
|
+
/** Known values of {@link OraclePartitionOption} that the service accepts. */
|
|
522
|
+
exports.KnownOraclePartitionOption = void 0;
|
|
342
523
|
(function (KnownOraclePartitionOption) {
|
|
343
524
|
KnownOraclePartitionOption["None"] = "None";
|
|
344
525
|
KnownOraclePartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
345
526
|
KnownOraclePartitionOption["DynamicRange"] = "DynamicRange";
|
|
346
527
|
})(exports.KnownOraclePartitionOption || (exports.KnownOraclePartitionOption = {}));
|
|
528
|
+
/** Known values of {@link TeradataPartitionOption} that the service accepts. */
|
|
529
|
+
exports.KnownTeradataPartitionOption = void 0;
|
|
347
530
|
(function (KnownTeradataPartitionOption) {
|
|
348
531
|
KnownTeradataPartitionOption["None"] = "None";
|
|
349
532
|
KnownTeradataPartitionOption["Hash"] = "Hash";
|
|
350
533
|
KnownTeradataPartitionOption["DynamicRange"] = "DynamicRange";
|
|
351
534
|
})(exports.KnownTeradataPartitionOption || (exports.KnownTeradataPartitionOption = {}));
|
|
535
|
+
/** Known values of {@link CassandraSourceReadConsistencyLevels} that the service accepts. */
|
|
536
|
+
exports.KnownCassandraSourceReadConsistencyLevels = void 0;
|
|
352
537
|
(function (KnownCassandraSourceReadConsistencyLevels) {
|
|
353
538
|
KnownCassandraSourceReadConsistencyLevels["ALL"] = "ALL";
|
|
354
539
|
KnownCassandraSourceReadConsistencyLevels["EachQuorum"] = "EACH_QUORUM";
|
|
@@ -361,50 +546,80 @@ var coreLro = require('@azure/core-lro');
|
|
|
361
546
|
KnownCassandraSourceReadConsistencyLevels["Serial"] = "SERIAL";
|
|
362
547
|
KnownCassandraSourceReadConsistencyLevels["LocalSerial"] = "LOCAL_SERIAL";
|
|
363
548
|
})(exports.KnownCassandraSourceReadConsistencyLevels || (exports.KnownCassandraSourceReadConsistencyLevels = {}));
|
|
549
|
+
/** Known values of {@link NetezzaPartitionOption} that the service accepts. */
|
|
550
|
+
exports.KnownNetezzaPartitionOption = void 0;
|
|
364
551
|
(function (KnownNetezzaPartitionOption) {
|
|
365
552
|
KnownNetezzaPartitionOption["None"] = "None";
|
|
366
553
|
KnownNetezzaPartitionOption["DataSlice"] = "DataSlice";
|
|
367
554
|
KnownNetezzaPartitionOption["DynamicRange"] = "DynamicRange";
|
|
368
555
|
})(exports.KnownNetezzaPartitionOption || (exports.KnownNetezzaPartitionOption = {}));
|
|
556
|
+
/** Known values of {@link NotebookParameterType} that the service accepts. */
|
|
557
|
+
exports.KnownNotebookParameterType = void 0;
|
|
558
|
+
(function (KnownNotebookParameterType) {
|
|
559
|
+
KnownNotebookParameterType["String"] = "string";
|
|
560
|
+
KnownNotebookParameterType["Int"] = "int";
|
|
561
|
+
KnownNotebookParameterType["Float"] = "float";
|
|
562
|
+
KnownNotebookParameterType["Bool"] = "bool";
|
|
563
|
+
})(exports.KnownNotebookParameterType || (exports.KnownNotebookParameterType = {}));
|
|
564
|
+
/** Known values of {@link SapCloudForCustomerSinkWriteBehavior} that the service accepts. */
|
|
565
|
+
exports.KnownSapCloudForCustomerSinkWriteBehavior = void 0;
|
|
369
566
|
(function (KnownSapCloudForCustomerSinkWriteBehavior) {
|
|
370
567
|
KnownSapCloudForCustomerSinkWriteBehavior["Insert"] = "Insert";
|
|
371
568
|
KnownSapCloudForCustomerSinkWriteBehavior["Update"] = "Update";
|
|
372
569
|
})(exports.KnownSapCloudForCustomerSinkWriteBehavior || (exports.KnownSapCloudForCustomerSinkWriteBehavior = {}));
|
|
570
|
+
/** Known values of {@link PolybaseSettingsRejectType} that the service accepts. */
|
|
571
|
+
exports.KnownPolybaseSettingsRejectType = void 0;
|
|
373
572
|
(function (KnownPolybaseSettingsRejectType) {
|
|
374
573
|
KnownPolybaseSettingsRejectType["Value"] = "value";
|
|
375
574
|
KnownPolybaseSettingsRejectType["Percentage"] = "percentage";
|
|
376
575
|
})(exports.KnownPolybaseSettingsRejectType || (exports.KnownPolybaseSettingsRejectType = {}));
|
|
576
|
+
/** Known values of {@link AzureSearchIndexWriteBehaviorType} that the service accepts. */
|
|
577
|
+
exports.KnownAzureSearchIndexWriteBehaviorType = void 0;
|
|
377
578
|
(function (KnownAzureSearchIndexWriteBehaviorType) {
|
|
378
579
|
KnownAzureSearchIndexWriteBehaviorType["Merge"] = "Merge";
|
|
379
580
|
KnownAzureSearchIndexWriteBehaviorType["Upload"] = "Upload";
|
|
380
581
|
})(exports.KnownAzureSearchIndexWriteBehaviorType || (exports.KnownAzureSearchIndexWriteBehaviorType = {}));
|
|
582
|
+
/** Known values of {@link DynamicsSinkWriteBehavior} that the service accepts. */
|
|
583
|
+
exports.KnownDynamicsSinkWriteBehavior = void 0;
|
|
381
584
|
(function (KnownDynamicsSinkWriteBehavior) {
|
|
382
585
|
KnownDynamicsSinkWriteBehavior["Upsert"] = "Upsert";
|
|
383
586
|
})(exports.KnownDynamicsSinkWriteBehavior || (exports.KnownDynamicsSinkWriteBehavior = {}));
|
|
587
|
+
/** Known values of {@link SalesforceSinkWriteBehavior} that the service accepts. */
|
|
588
|
+
exports.KnownSalesforceSinkWriteBehavior = void 0;
|
|
384
589
|
(function (KnownSalesforceSinkWriteBehavior) {
|
|
385
590
|
KnownSalesforceSinkWriteBehavior["Insert"] = "Insert";
|
|
386
591
|
KnownSalesforceSinkWriteBehavior["Upsert"] = "Upsert";
|
|
387
592
|
})(exports.KnownSalesforceSinkWriteBehavior || (exports.KnownSalesforceSinkWriteBehavior = {}));
|
|
593
|
+
/** Known values of {@link HDInsightActivityDebugInfoOption} that the service accepts. */
|
|
594
|
+
exports.KnownHDInsightActivityDebugInfoOption = void 0;
|
|
388
595
|
(function (KnownHDInsightActivityDebugInfoOption) {
|
|
389
596
|
KnownHDInsightActivityDebugInfoOption["None"] = "None";
|
|
390
597
|
KnownHDInsightActivityDebugInfoOption["Always"] = "Always";
|
|
391
598
|
KnownHDInsightActivityDebugInfoOption["Failure"] = "Failure";
|
|
392
599
|
})(exports.KnownHDInsightActivityDebugInfoOption || (exports.KnownHDInsightActivityDebugInfoOption = {}));
|
|
600
|
+
/** Known values of {@link SsisPackageLocationType} that the service accepts. */
|
|
601
|
+
exports.KnownSsisPackageLocationType = void 0;
|
|
393
602
|
(function (KnownSsisPackageLocationType) {
|
|
394
603
|
KnownSsisPackageLocationType["Ssisdb"] = "SSISDB";
|
|
395
604
|
KnownSsisPackageLocationType["File"] = "File";
|
|
396
605
|
KnownSsisPackageLocationType["InlinePackage"] = "InlinePackage";
|
|
397
606
|
KnownSsisPackageLocationType["PackageStore"] = "PackageStore";
|
|
398
607
|
})(exports.KnownSsisPackageLocationType || (exports.KnownSsisPackageLocationType = {}));
|
|
608
|
+
/** Known values of {@link SsisLogLocationType} that the service accepts. */
|
|
609
|
+
exports.KnownSsisLogLocationType = void 0;
|
|
399
610
|
(function (KnownSsisLogLocationType) {
|
|
400
611
|
KnownSsisLogLocationType["File"] = "File";
|
|
401
612
|
})(exports.KnownSsisLogLocationType || (exports.KnownSsisLogLocationType = {}));
|
|
613
|
+
/** Known values of {@link WebActivityMethod} that the service accepts. */
|
|
614
|
+
exports.KnownWebActivityMethod = void 0;
|
|
402
615
|
(function (KnownWebActivityMethod) {
|
|
403
616
|
KnownWebActivityMethod["GET"] = "GET";
|
|
404
617
|
KnownWebActivityMethod["Post"] = "POST";
|
|
405
618
|
KnownWebActivityMethod["PUT"] = "PUT";
|
|
406
619
|
KnownWebActivityMethod["Delete"] = "DELETE";
|
|
407
620
|
})(exports.KnownWebActivityMethod || (exports.KnownWebActivityMethod = {}));
|
|
621
|
+
/** Known values of {@link AzureFunctionActivityMethod} that the service accepts. */
|
|
622
|
+
exports.KnownAzureFunctionActivityMethod = void 0;
|
|
408
623
|
(function (KnownAzureFunctionActivityMethod) {
|
|
409
624
|
KnownAzureFunctionActivityMethod["GET"] = "GET";
|
|
410
625
|
KnownAzureFunctionActivityMethod["Post"] = "POST";
|
|
@@ -414,14 +629,55 @@ var coreLro = require('@azure/core-lro');
|
|
|
414
629
|
KnownAzureFunctionActivityMethod["Head"] = "HEAD";
|
|
415
630
|
KnownAzureFunctionActivityMethod["Trace"] = "TRACE";
|
|
416
631
|
})(exports.KnownAzureFunctionActivityMethod || (exports.KnownAzureFunctionActivityMethod = {}));
|
|
632
|
+
/** Known values of {@link WebHookActivityMethod} that the service accepts. */
|
|
633
|
+
exports.KnownWebHookActivityMethod = void 0;
|
|
417
634
|
(function (KnownWebHookActivityMethod) {
|
|
418
635
|
KnownWebHookActivityMethod["Post"] = "POST";
|
|
419
636
|
})(exports.KnownWebHookActivityMethod || (exports.KnownWebHookActivityMethod = {}));
|
|
637
|
+
/** Known values of {@link DataFlowComputeType} that the service accepts. */
|
|
638
|
+
exports.KnownDataFlowComputeType = void 0;
|
|
420
639
|
(function (KnownDataFlowComputeType) {
|
|
421
640
|
KnownDataFlowComputeType["General"] = "General";
|
|
422
641
|
KnownDataFlowComputeType["MemoryOptimized"] = "MemoryOptimized";
|
|
423
642
|
KnownDataFlowComputeType["ComputeOptimized"] = "ComputeOptimized";
|
|
424
643
|
})(exports.KnownDataFlowComputeType || (exports.KnownDataFlowComputeType = {}));
|
|
644
|
+
/** Known values of {@link ScriptType} that the service accepts. */
|
|
645
|
+
exports.KnownScriptType = void 0;
|
|
646
|
+
(function (KnownScriptType) {
|
|
647
|
+
KnownScriptType["Query"] = "Query";
|
|
648
|
+
KnownScriptType["NonQuery"] = "NonQuery";
|
|
649
|
+
})(exports.KnownScriptType || (exports.KnownScriptType = {}));
|
|
650
|
+
/** Known values of {@link ScriptActivityParameterType} that the service accepts. */
|
|
651
|
+
exports.KnownScriptActivityParameterType = void 0;
|
|
652
|
+
(function (KnownScriptActivityParameterType) {
|
|
653
|
+
KnownScriptActivityParameterType["Boolean"] = "Boolean";
|
|
654
|
+
KnownScriptActivityParameterType["DateTime"] = "DateTime";
|
|
655
|
+
KnownScriptActivityParameterType["DateTimeOffset"] = "DateTimeOffset";
|
|
656
|
+
KnownScriptActivityParameterType["Decimal"] = "Decimal";
|
|
657
|
+
KnownScriptActivityParameterType["Double"] = "Double";
|
|
658
|
+
KnownScriptActivityParameterType["Guid"] = "Guid";
|
|
659
|
+
KnownScriptActivityParameterType["Int16"] = "Int16";
|
|
660
|
+
KnownScriptActivityParameterType["Int32"] = "Int32";
|
|
661
|
+
KnownScriptActivityParameterType["Int64"] = "Int64";
|
|
662
|
+
KnownScriptActivityParameterType["Single"] = "Single";
|
|
663
|
+
KnownScriptActivityParameterType["String"] = "String";
|
|
664
|
+
KnownScriptActivityParameterType["Timespan"] = "Timespan";
|
|
665
|
+
})(exports.KnownScriptActivityParameterType || (exports.KnownScriptActivityParameterType = {}));
|
|
666
|
+
/** Known values of {@link ScriptActivityParameterDirection} that the service accepts. */
|
|
667
|
+
exports.KnownScriptActivityParameterDirection = void 0;
|
|
668
|
+
(function (KnownScriptActivityParameterDirection) {
|
|
669
|
+
KnownScriptActivityParameterDirection["Input"] = "Input";
|
|
670
|
+
KnownScriptActivityParameterDirection["Output"] = "Output";
|
|
671
|
+
KnownScriptActivityParameterDirection["InputOutput"] = "InputOutput";
|
|
672
|
+
})(exports.KnownScriptActivityParameterDirection || (exports.KnownScriptActivityParameterDirection = {}));
|
|
673
|
+
/** Known values of {@link ScriptActivityLogDestination} that the service accepts. */
|
|
674
|
+
exports.KnownScriptActivityLogDestination = void 0;
|
|
675
|
+
(function (KnownScriptActivityLogDestination) {
|
|
676
|
+
KnownScriptActivityLogDestination["ActivityOutput"] = "ActivityOutput";
|
|
677
|
+
KnownScriptActivityLogDestination["ExternalStore"] = "ExternalStore";
|
|
678
|
+
})(exports.KnownScriptActivityLogDestination || (exports.KnownScriptActivityLogDestination = {}));
|
|
679
|
+
/** Known values of {@link RecurrenceFrequency} that the service accepts. */
|
|
680
|
+
exports.KnownRecurrenceFrequency = void 0;
|
|
425
681
|
(function (KnownRecurrenceFrequency) {
|
|
426
682
|
KnownRecurrenceFrequency["NotSpecified"] = "NotSpecified";
|
|
427
683
|
KnownRecurrenceFrequency["Minute"] = "Minute";
|
|
@@ -431,18 +687,26 @@ var coreLro = require('@azure/core-lro');
|
|
|
431
687
|
KnownRecurrenceFrequency["Month"] = "Month";
|
|
432
688
|
KnownRecurrenceFrequency["Year"] = "Year";
|
|
433
689
|
})(exports.KnownRecurrenceFrequency || (exports.KnownRecurrenceFrequency = {}));
|
|
690
|
+
/** Known values of {@link BlobEventType} that the service accepts. */
|
|
691
|
+
exports.KnownBlobEventType = void 0;
|
|
434
692
|
(function (KnownBlobEventType) {
|
|
435
693
|
KnownBlobEventType["MicrosoftStorageBlobCreated"] = "Microsoft.Storage.BlobCreated";
|
|
436
694
|
KnownBlobEventType["MicrosoftStorageBlobDeleted"] = "Microsoft.Storage.BlobDeleted";
|
|
437
695
|
})(exports.KnownBlobEventType || (exports.KnownBlobEventType = {}));
|
|
696
|
+
/** Known values of {@link TumblingWindowFrequency} that the service accepts. */
|
|
697
|
+
exports.KnownTumblingWindowFrequency = void 0;
|
|
438
698
|
(function (KnownTumblingWindowFrequency) {
|
|
439
699
|
KnownTumblingWindowFrequency["Minute"] = "Minute";
|
|
440
700
|
KnownTumblingWindowFrequency["Hour"] = "Hour";
|
|
441
701
|
KnownTumblingWindowFrequency["Month"] = "Month";
|
|
442
702
|
})(exports.KnownTumblingWindowFrequency || (exports.KnownTumblingWindowFrequency = {}));
|
|
703
|
+
/** Known values of {@link TriggerReferenceType} that the service accepts. */
|
|
704
|
+
exports.KnownTriggerReferenceType = void 0;
|
|
443
705
|
(function (KnownTriggerReferenceType) {
|
|
444
706
|
KnownTriggerReferenceType["TriggerReference"] = "TriggerReference";
|
|
445
707
|
})(exports.KnownTriggerReferenceType || (exports.KnownTriggerReferenceType = {}));
|
|
708
|
+
/** Known values of {@link IntegrationRuntimeState} that the service accepts. */
|
|
709
|
+
exports.KnownIntegrationRuntimeState = void 0;
|
|
446
710
|
(function (KnownIntegrationRuntimeState) {
|
|
447
711
|
KnownIntegrationRuntimeState["Initial"] = "Initial";
|
|
448
712
|
KnownIntegrationRuntimeState["Stopped"] = "Stopped";
|
|
@@ -455,32 +719,46 @@ var coreLro = require('@azure/core-lro');
|
|
|
455
719
|
KnownIntegrationRuntimeState["Offline"] = "Offline";
|
|
456
720
|
KnownIntegrationRuntimeState["AccessDenied"] = "AccessDenied";
|
|
457
721
|
})(exports.KnownIntegrationRuntimeState || (exports.KnownIntegrationRuntimeState = {}));
|
|
722
|
+
/** Known values of {@link IntegrationRuntimeSsisCatalogPricingTier} that the service accepts. */
|
|
723
|
+
exports.KnownIntegrationRuntimeSsisCatalogPricingTier = void 0;
|
|
458
724
|
(function (KnownIntegrationRuntimeSsisCatalogPricingTier) {
|
|
459
725
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Basic"] = "Basic";
|
|
460
726
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Standard"] = "Standard";
|
|
461
727
|
KnownIntegrationRuntimeSsisCatalogPricingTier["Premium"] = "Premium";
|
|
462
728
|
KnownIntegrationRuntimeSsisCatalogPricingTier["PremiumRS"] = "PremiumRS";
|
|
463
729
|
})(exports.KnownIntegrationRuntimeSsisCatalogPricingTier || (exports.KnownIntegrationRuntimeSsisCatalogPricingTier = {}));
|
|
730
|
+
/** Known values of {@link IntegrationRuntimeLicenseType} that the service accepts. */
|
|
731
|
+
exports.KnownIntegrationRuntimeLicenseType = void 0;
|
|
464
732
|
(function (KnownIntegrationRuntimeLicenseType) {
|
|
465
733
|
KnownIntegrationRuntimeLicenseType["BasePrice"] = "BasePrice";
|
|
466
734
|
KnownIntegrationRuntimeLicenseType["LicenseIncluded"] = "LicenseIncluded";
|
|
467
735
|
})(exports.KnownIntegrationRuntimeLicenseType || (exports.KnownIntegrationRuntimeLicenseType = {}));
|
|
736
|
+
/** Known values of {@link IntegrationRuntimeEntityReferenceType} that the service accepts. */
|
|
737
|
+
exports.KnownIntegrationRuntimeEntityReferenceType = void 0;
|
|
468
738
|
(function (KnownIntegrationRuntimeEntityReferenceType) {
|
|
469
739
|
KnownIntegrationRuntimeEntityReferenceType["IntegrationRuntimeReference"] = "IntegrationRuntimeReference";
|
|
470
740
|
KnownIntegrationRuntimeEntityReferenceType["LinkedServiceReference"] = "LinkedServiceReference";
|
|
471
741
|
})(exports.KnownIntegrationRuntimeEntityReferenceType || (exports.KnownIntegrationRuntimeEntityReferenceType = {}));
|
|
742
|
+
/** Known values of {@link IntegrationRuntimeEdition} that the service accepts. */
|
|
743
|
+
exports.KnownIntegrationRuntimeEdition = void 0;
|
|
472
744
|
(function (KnownIntegrationRuntimeEdition) {
|
|
473
745
|
KnownIntegrationRuntimeEdition["Standard"] = "Standard";
|
|
474
746
|
KnownIntegrationRuntimeEdition["Enterprise"] = "Enterprise";
|
|
475
747
|
})(exports.KnownIntegrationRuntimeEdition || (exports.KnownIntegrationRuntimeEdition = {}));
|
|
748
|
+
/** Known values of {@link JsonFormatFilePattern} that the service accepts. */
|
|
749
|
+
exports.KnownJsonFormatFilePattern = void 0;
|
|
476
750
|
(function (KnownJsonFormatFilePattern) {
|
|
477
751
|
KnownJsonFormatFilePattern["SetOfObjects"] = "setOfObjects";
|
|
478
752
|
KnownJsonFormatFilePattern["ArrayOfObjects"] = "arrayOfObjects";
|
|
479
753
|
})(exports.KnownJsonFormatFilePattern || (exports.KnownJsonFormatFilePattern = {}));
|
|
754
|
+
/** Known values of {@link DatasetCompressionLevel} that the service accepts. */
|
|
755
|
+
exports.KnownDatasetCompressionLevel = void 0;
|
|
480
756
|
(function (KnownDatasetCompressionLevel) {
|
|
481
757
|
KnownDatasetCompressionLevel["Optimal"] = "Optimal";
|
|
482
758
|
KnownDatasetCompressionLevel["Fastest"] = "Fastest";
|
|
483
759
|
})(exports.KnownDatasetCompressionLevel || (exports.KnownDatasetCompressionLevel = {}));
|
|
760
|
+
/** Known values of {@link AvroCompressionCodec} that the service accepts. */
|
|
761
|
+
exports.KnownAvroCompressionCodec = void 0;
|
|
484
762
|
(function (KnownAvroCompressionCodec) {
|
|
485
763
|
KnownAvroCompressionCodec["None"] = "none";
|
|
486
764
|
KnownAvroCompressionCodec["Deflate"] = "deflate";
|
|
@@ -488,12 +766,16 @@ var coreLro = require('@azure/core-lro');
|
|
|
488
766
|
KnownAvroCompressionCodec["Xz"] = "xz";
|
|
489
767
|
KnownAvroCompressionCodec["Bzip2"] = "bzip2";
|
|
490
768
|
})(exports.KnownAvroCompressionCodec || (exports.KnownAvroCompressionCodec = {}));
|
|
769
|
+
/** Known values of {@link ParquetCompressionCodecEnum} that the service accepts. */
|
|
770
|
+
exports.KnownParquetCompressionCodecEnum = void 0;
|
|
491
771
|
(function (KnownParquetCompressionCodecEnum) {
|
|
492
772
|
KnownParquetCompressionCodecEnum["None"] = "none";
|
|
493
773
|
KnownParquetCompressionCodecEnum["Gzip"] = "gzip";
|
|
494
774
|
KnownParquetCompressionCodecEnum["Snappy"] = "snappy";
|
|
495
775
|
KnownParquetCompressionCodecEnum["Lzo"] = "lzo";
|
|
496
776
|
})(exports.KnownParquetCompressionCodecEnum || (exports.KnownParquetCompressionCodecEnum = {}));
|
|
777
|
+
/** Known values of {@link CompressionCodec} that the service accepts. */
|
|
778
|
+
exports.KnownCompressionCodec = void 0;
|
|
497
779
|
(function (KnownCompressionCodec) {
|
|
498
780
|
KnownCompressionCodec["None"] = "none";
|
|
499
781
|
KnownCompressionCodec["Lzo"] = "lzo";
|
|
@@ -506,40 +788,62 @@ var coreLro = require('@azure/core-lro');
|
|
|
506
788
|
KnownCompressionCodec["Tar"] = "tar";
|
|
507
789
|
KnownCompressionCodec["TarGZip"] = "tarGZip";
|
|
508
790
|
})(exports.KnownCompressionCodec || (exports.KnownCompressionCodec = {}));
|
|
791
|
+
/** Known values of {@link OrcCompressionCodec} that the service accepts. */
|
|
792
|
+
exports.KnownOrcCompressionCodec = void 0;
|
|
509
793
|
(function (KnownOrcCompressionCodec) {
|
|
510
794
|
KnownOrcCompressionCodec["None"] = "none";
|
|
511
795
|
KnownOrcCompressionCodec["Zlib"] = "zlib";
|
|
512
796
|
KnownOrcCompressionCodec["Snappy"] = "snappy";
|
|
513
797
|
KnownOrcCompressionCodec["Lzo"] = "lzo";
|
|
514
798
|
})(exports.KnownOrcCompressionCodec || (exports.KnownOrcCompressionCodec = {}));
|
|
799
|
+
/** Known values of {@link DynamicsDeploymentType} that the service accepts. */
|
|
800
|
+
exports.KnownDynamicsDeploymentType = void 0;
|
|
515
801
|
(function (KnownDynamicsDeploymentType) {
|
|
516
802
|
KnownDynamicsDeploymentType["Online"] = "Online";
|
|
517
803
|
KnownDynamicsDeploymentType["OnPremisesWithIfd"] = "OnPremisesWithIfd";
|
|
518
804
|
})(exports.KnownDynamicsDeploymentType || (exports.KnownDynamicsDeploymentType = {}));
|
|
805
|
+
/** Known values of {@link DynamicsAuthenticationType} that the service accepts. */
|
|
806
|
+
exports.KnownDynamicsAuthenticationType = void 0;
|
|
519
807
|
(function (KnownDynamicsAuthenticationType) {
|
|
520
808
|
KnownDynamicsAuthenticationType["Office365"] = "Office365";
|
|
521
809
|
KnownDynamicsAuthenticationType["Ifd"] = "Ifd";
|
|
522
810
|
KnownDynamicsAuthenticationType["AADServicePrincipal"] = "AADServicePrincipal";
|
|
523
811
|
})(exports.KnownDynamicsAuthenticationType || (exports.KnownDynamicsAuthenticationType = {}));
|
|
812
|
+
/** Known values of {@link DynamicsServicePrincipalCredentialType} that the service accepts. */
|
|
813
|
+
exports.KnownDynamicsServicePrincipalCredentialType = void 0;
|
|
814
|
+
(function (KnownDynamicsServicePrincipalCredentialType) {
|
|
815
|
+
KnownDynamicsServicePrincipalCredentialType["ServicePrincipalKey"] = "ServicePrincipalKey";
|
|
816
|
+
KnownDynamicsServicePrincipalCredentialType["ServicePrincipalCert"] = "ServicePrincipalCert";
|
|
817
|
+
})(exports.KnownDynamicsServicePrincipalCredentialType || (exports.KnownDynamicsServicePrincipalCredentialType = {}));
|
|
818
|
+
/** Known values of {@link HdiNodeTypes} that the service accepts. */
|
|
819
|
+
exports.KnownHdiNodeTypes = void 0;
|
|
524
820
|
(function (KnownHdiNodeTypes) {
|
|
525
821
|
KnownHdiNodeTypes["Headnode"] = "Headnode";
|
|
526
822
|
KnownHdiNodeTypes["Workernode"] = "Workernode";
|
|
527
823
|
KnownHdiNodeTypes["Zookeeper"] = "Zookeeper";
|
|
528
824
|
})(exports.KnownHdiNodeTypes || (exports.KnownHdiNodeTypes = {}));
|
|
825
|
+
/** Known values of {@link JsonWriteFilePattern} that the service accepts. */
|
|
826
|
+
exports.KnownJsonWriteFilePattern = void 0;
|
|
529
827
|
(function (KnownJsonWriteFilePattern) {
|
|
530
828
|
KnownJsonWriteFilePattern["SetOfObjects"] = "setOfObjects";
|
|
531
829
|
KnownJsonWriteFilePattern["ArrayOfObjects"] = "arrayOfObjects";
|
|
532
830
|
})(exports.KnownJsonWriteFilePattern || (exports.KnownJsonWriteFilePattern = {}));
|
|
831
|
+
/** Known values of {@link AmazonRdsForOraclePartitionOption} that the service accepts. */
|
|
832
|
+
exports.KnownAmazonRdsForOraclePartitionOption = void 0;
|
|
533
833
|
(function (KnownAmazonRdsForOraclePartitionOption) {
|
|
534
834
|
KnownAmazonRdsForOraclePartitionOption["None"] = "None";
|
|
535
835
|
KnownAmazonRdsForOraclePartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
536
836
|
KnownAmazonRdsForOraclePartitionOption["DynamicRange"] = "DynamicRange";
|
|
537
837
|
})(exports.KnownAmazonRdsForOraclePartitionOption || (exports.KnownAmazonRdsForOraclePartitionOption = {}));
|
|
838
|
+
/** Known values of {@link CopyBehaviorType} that the service accepts. */
|
|
839
|
+
exports.KnownCopyBehaviorType = void 0;
|
|
538
840
|
(function (KnownCopyBehaviorType) {
|
|
539
841
|
KnownCopyBehaviorType["PreserveHierarchy"] = "PreserveHierarchy";
|
|
540
842
|
KnownCopyBehaviorType["FlattenHierarchy"] = "FlattenHierarchy";
|
|
541
843
|
KnownCopyBehaviorType["MergeFiles"] = "MergeFiles";
|
|
542
844
|
})(exports.KnownCopyBehaviorType || (exports.KnownCopyBehaviorType = {}));
|
|
845
|
+
/** Known values of {@link SqlPartitionOption} that the service accepts. */
|
|
846
|
+
exports.KnownSqlPartitionOption = void 0;
|
|
543
847
|
(function (KnownSqlPartitionOption) {
|
|
544
848
|
KnownSqlPartitionOption["None"] = "None";
|
|
545
849
|
KnownSqlPartitionOption["PhysicalPartitionsOfTable"] = "PhysicalPartitionsOfTable";
|
|
@@ -692,6 +996,18 @@ const KqlScriptContentCurrentConnection = {
|
|
|
692
996
|
name: "String"
|
|
693
997
|
}
|
|
694
998
|
},
|
|
999
|
+
poolName: {
|
|
1000
|
+
serializedName: "poolName",
|
|
1001
|
+
type: {
|
|
1002
|
+
name: "String"
|
|
1003
|
+
}
|
|
1004
|
+
},
|
|
1005
|
+
databaseName: {
|
|
1006
|
+
serializedName: "databaseName",
|
|
1007
|
+
type: {
|
|
1008
|
+
name: "String"
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
695
1011
|
type: {
|
|
696
1012
|
serializedName: "type",
|
|
697
1013
|
type: {
|
|
@@ -812,26 +1128,28 @@ const ArtifactRenameRequest = {
|
|
|
812
1128
|
}
|
|
813
1129
|
}
|
|
814
1130
|
};
|
|
815
|
-
const
|
|
1131
|
+
const MetastoreRegisterObject = {
|
|
816
1132
|
type: {
|
|
817
1133
|
name: "Composite",
|
|
818
|
-
className: "
|
|
1134
|
+
className: "MetastoreRegisterObject",
|
|
819
1135
|
modelProperties: {
|
|
820
|
-
|
|
821
|
-
serializedName: "
|
|
1136
|
+
inputFolder: {
|
|
1137
|
+
serializedName: "inputFolder",
|
|
822
1138
|
required: true,
|
|
823
1139
|
type: {
|
|
824
|
-
name: "
|
|
825
|
-
element: {
|
|
826
|
-
type: {
|
|
827
|
-
name: "Composite",
|
|
828
|
-
className: "SparkConfigurationResource"
|
|
829
|
-
}
|
|
830
|
-
}
|
|
1140
|
+
name: "String"
|
|
831
1141
|
}
|
|
832
|
-
}
|
|
833
|
-
|
|
834
|
-
|
|
1142
|
+
}
|
|
1143
|
+
}
|
|
1144
|
+
}
|
|
1145
|
+
};
|
|
1146
|
+
const MetastoreRegistrationResponse = {
|
|
1147
|
+
type: {
|
|
1148
|
+
name: "Composite",
|
|
1149
|
+
className: "MetastoreRegistrationResponse",
|
|
1150
|
+
modelProperties: {
|
|
1151
|
+
status: {
|
|
1152
|
+
serializedName: "status",
|
|
835
1153
|
type: {
|
|
836
1154
|
name: "String"
|
|
837
1155
|
}
|
|
@@ -839,28 +1157,69 @@ const SparkConfigurationListResponse = {
|
|
|
839
1157
|
}
|
|
840
1158
|
}
|
|
841
1159
|
};
|
|
842
|
-
const
|
|
1160
|
+
const MetastoreRequestSuccessResponse = {
|
|
843
1161
|
type: {
|
|
844
1162
|
name: "Composite",
|
|
845
|
-
className: "
|
|
1163
|
+
className: "MetastoreRequestSuccessResponse",
|
|
846
1164
|
modelProperties: {
|
|
847
|
-
|
|
848
|
-
serializedName: "
|
|
849
|
-
readOnly: true,
|
|
1165
|
+
status: {
|
|
1166
|
+
serializedName: "status",
|
|
850
1167
|
type: {
|
|
851
1168
|
name: "String"
|
|
852
1169
|
}
|
|
853
|
-
}
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1172
|
+
}
|
|
1173
|
+
};
|
|
1174
|
+
const MetastoreUpdateObject = {
|
|
1175
|
+
type: {
|
|
1176
|
+
name: "Composite",
|
|
1177
|
+
className: "MetastoreUpdateObject",
|
|
1178
|
+
modelProperties: {
|
|
1179
|
+
inputFolder: {
|
|
1180
|
+
serializedName: "inputFolder",
|
|
1181
|
+
required: true,
|
|
857
1182
|
type: {
|
|
858
1183
|
name: "String"
|
|
859
1184
|
}
|
|
1185
|
+
}
|
|
1186
|
+
}
|
|
1187
|
+
}
|
|
1188
|
+
};
|
|
1189
|
+
const MetastoreUpdationResponse = {
|
|
1190
|
+
type: {
|
|
1191
|
+
name: "Composite",
|
|
1192
|
+
className: "MetastoreUpdationResponse",
|
|
1193
|
+
modelProperties: {
|
|
1194
|
+
status: {
|
|
1195
|
+
serializedName: "status",
|
|
1196
|
+
type: {
|
|
1197
|
+
name: "String"
|
|
1198
|
+
}
|
|
1199
|
+
}
|
|
1200
|
+
}
|
|
1201
|
+
}
|
|
1202
|
+
};
|
|
1203
|
+
const SparkConfigurationListResponse = {
|
|
1204
|
+
type: {
|
|
1205
|
+
name: "Composite",
|
|
1206
|
+
className: "SparkConfigurationListResponse",
|
|
1207
|
+
modelProperties: {
|
|
1208
|
+
value: {
|
|
1209
|
+
serializedName: "value",
|
|
1210
|
+
required: true,
|
|
1211
|
+
type: {
|
|
1212
|
+
name: "Sequence",
|
|
1213
|
+
element: {
|
|
1214
|
+
type: {
|
|
1215
|
+
name: "Composite",
|
|
1216
|
+
className: "SparkConfigurationResource"
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
}
|
|
860
1220
|
},
|
|
861
|
-
|
|
862
|
-
serializedName: "
|
|
863
|
-
readOnly: true,
|
|
1221
|
+
nextLink: {
|
|
1222
|
+
serializedName: "nextLink",
|
|
864
1223
|
type: {
|
|
865
1224
|
name: "String"
|
|
866
1225
|
}
|
|
@@ -926,6 +1285,35 @@ const SparkConfiguration = {
|
|
|
926
1285
|
}
|
|
927
1286
|
}
|
|
928
1287
|
};
|
|
1288
|
+
const Resource = {
|
|
1289
|
+
type: {
|
|
1290
|
+
name: "Composite",
|
|
1291
|
+
className: "Resource",
|
|
1292
|
+
modelProperties: {
|
|
1293
|
+
id: {
|
|
1294
|
+
serializedName: "id",
|
|
1295
|
+
readOnly: true,
|
|
1296
|
+
type: {
|
|
1297
|
+
name: "String"
|
|
1298
|
+
}
|
|
1299
|
+
},
|
|
1300
|
+
name: {
|
|
1301
|
+
serializedName: "name",
|
|
1302
|
+
readOnly: true,
|
|
1303
|
+
type: {
|
|
1304
|
+
name: "String"
|
|
1305
|
+
}
|
|
1306
|
+
},
|
|
1307
|
+
type: {
|
|
1308
|
+
serializedName: "type",
|
|
1309
|
+
readOnly: true,
|
|
1310
|
+
type: {
|
|
1311
|
+
name: "String"
|
|
1312
|
+
}
|
|
1313
|
+
}
|
|
1314
|
+
}
|
|
1315
|
+
}
|
|
1316
|
+
};
|
|
929
1317
|
const CloudError = {
|
|
930
1318
|
type: {
|
|
931
1319
|
name: "Composite",
|
|
@@ -1289,20 +1677,6 @@ const CreateDataFlowDebugSessionRequest = {
|
|
|
1289
1677
|
}
|
|
1290
1678
|
}
|
|
1291
1679
|
};
|
|
1292
|
-
const SubResourceDebugResource = {
|
|
1293
|
-
type: {
|
|
1294
|
-
name: "Composite",
|
|
1295
|
-
className: "SubResourceDebugResource",
|
|
1296
|
-
modelProperties: {
|
|
1297
|
-
name: {
|
|
1298
|
-
serializedName: "name",
|
|
1299
|
-
type: {
|
|
1300
|
-
name: "String"
|
|
1301
|
-
}
|
|
1302
|
-
}
|
|
1303
|
-
}
|
|
1304
|
-
}
|
|
1305
|
-
};
|
|
1306
1680
|
const IntegrationRuntime = {
|
|
1307
1681
|
serializedName: "IntegrationRuntime",
|
|
1308
1682
|
type: {
|
|
@@ -1331,6 +1705,20 @@ const IntegrationRuntime = {
|
|
|
1331
1705
|
}
|
|
1332
1706
|
}
|
|
1333
1707
|
};
|
|
1708
|
+
const SubResourceDebugResource = {
|
|
1709
|
+
type: {
|
|
1710
|
+
name: "Composite",
|
|
1711
|
+
className: "SubResourceDebugResource",
|
|
1712
|
+
modelProperties: {
|
|
1713
|
+
name: {
|
|
1714
|
+
serializedName: "name",
|
|
1715
|
+
type: {
|
|
1716
|
+
name: "String"
|
|
1717
|
+
}
|
|
1718
|
+
}
|
|
1719
|
+
}
|
|
1720
|
+
}
|
|
1721
|
+
};
|
|
1334
1722
|
const CreateDataFlowDebugSessionResponse = {
|
|
1335
1723
|
type: {
|
|
1336
1724
|
name: "Composite",
|
|
@@ -1453,6 +1841,18 @@ const DataFlowDebugPackage = {
|
|
|
1453
1841
|
className: "DataFlowDebugResource"
|
|
1454
1842
|
}
|
|
1455
1843
|
},
|
|
1844
|
+
dataFlows: {
|
|
1845
|
+
serializedName: "dataFlows",
|
|
1846
|
+
type: {
|
|
1847
|
+
name: "Sequence",
|
|
1848
|
+
element: {
|
|
1849
|
+
type: {
|
|
1850
|
+
name: "Composite",
|
|
1851
|
+
className: "DataFlowDebugResource"
|
|
1852
|
+
}
|
|
1853
|
+
}
|
|
1854
|
+
}
|
|
1855
|
+
},
|
|
1456
1856
|
datasets: {
|
|
1457
1857
|
serializedName: "datasets",
|
|
1458
1858
|
type: {
|
|
@@ -4808,6 +5208,13 @@ const DataFlowReference = {
|
|
|
4808
5208
|
type: {
|
|
4809
5209
|
name: "any"
|
|
4810
5210
|
}
|
|
5211
|
+
},
|
|
5212
|
+
parameters: {
|
|
5213
|
+
serializedName: "parameters",
|
|
5214
|
+
type: {
|
|
5215
|
+
name: "Dictionary",
|
|
5216
|
+
value: { type: { name: "any" } }
|
|
5217
|
+
}
|
|
4811
5218
|
}
|
|
4812
5219
|
}
|
|
4813
5220
|
}
|
|
@@ -4977,7 +5384,7 @@ const SynapseNotebookReference = {
|
|
|
4977
5384
|
serializedName: "referenceName",
|
|
4978
5385
|
required: true,
|
|
4979
5386
|
type: {
|
|
4980
|
-
name: "
|
|
5387
|
+
name: "any"
|
|
4981
5388
|
}
|
|
4982
5389
|
}
|
|
4983
5390
|
}
|
|
@@ -5027,6 +5434,28 @@ const SqlPoolReference = {
|
|
|
5027
5434
|
}
|
|
5028
5435
|
}
|
|
5029
5436
|
};
|
|
5437
|
+
const BigDataPoolParametrizationReference = {
|
|
5438
|
+
type: {
|
|
5439
|
+
name: "Composite",
|
|
5440
|
+
className: "BigDataPoolParametrizationReference",
|
|
5441
|
+
modelProperties: {
|
|
5442
|
+
type: {
|
|
5443
|
+
serializedName: "type",
|
|
5444
|
+
required: true,
|
|
5445
|
+
type: {
|
|
5446
|
+
name: "String"
|
|
5447
|
+
}
|
|
5448
|
+
},
|
|
5449
|
+
referenceName: {
|
|
5450
|
+
serializedName: "referenceName",
|
|
5451
|
+
required: true,
|
|
5452
|
+
type: {
|
|
5453
|
+
name: "any"
|
|
5454
|
+
}
|
|
5455
|
+
}
|
|
5456
|
+
}
|
|
5457
|
+
}
|
|
5458
|
+
};
|
|
5030
5459
|
const StartDataFlowDebugSessionRequest = {
|
|
5031
5460
|
type: {
|
|
5032
5461
|
name: "Composite",
|
|
@@ -5045,6 +5474,18 @@ const StartDataFlowDebugSessionRequest = {
|
|
|
5045
5474
|
className: "DataFlowResource"
|
|
5046
5475
|
}
|
|
5047
5476
|
},
|
|
5477
|
+
dataFlows: {
|
|
5478
|
+
serializedName: "dataFlows",
|
|
5479
|
+
type: {
|
|
5480
|
+
name: "Sequence",
|
|
5481
|
+
element: {
|
|
5482
|
+
type: {
|
|
5483
|
+
name: "Composite",
|
|
5484
|
+
className: "DataFlowResource"
|
|
5485
|
+
}
|
|
5486
|
+
}
|
|
5487
|
+
}
|
|
5488
|
+
},
|
|
5048
5489
|
datasets: {
|
|
5049
5490
|
serializedName: "datasets",
|
|
5050
5491
|
type: {
|
|
@@ -5262,6 +5703,27 @@ const Transformation = {
|
|
|
5262
5703
|
type: {
|
|
5263
5704
|
name: "String"
|
|
5264
5705
|
}
|
|
5706
|
+
},
|
|
5707
|
+
dataset: {
|
|
5708
|
+
serializedName: "dataset",
|
|
5709
|
+
type: {
|
|
5710
|
+
name: "Composite",
|
|
5711
|
+
className: "DatasetReference"
|
|
5712
|
+
}
|
|
5713
|
+
},
|
|
5714
|
+
linkedService: {
|
|
5715
|
+
serializedName: "linkedService",
|
|
5716
|
+
type: {
|
|
5717
|
+
name: "Composite",
|
|
5718
|
+
className: "LinkedServiceReference"
|
|
5719
|
+
}
|
|
5720
|
+
},
|
|
5721
|
+
flowlet: {
|
|
5722
|
+
serializedName: "flowlet",
|
|
5723
|
+
type: {
|
|
5724
|
+
name: "Composite",
|
|
5725
|
+
className: "DataFlowReference"
|
|
5726
|
+
}
|
|
5265
5727
|
}
|
|
5266
5728
|
}
|
|
5267
5729
|
}
|
|
@@ -5376,22 +5838,22 @@ const DatasetStorageFormat = {
|
|
|
5376
5838
|
}
|
|
5377
5839
|
};
|
|
5378
5840
|
const DatasetCompression = {
|
|
5379
|
-
serializedName: "DatasetCompression",
|
|
5380
5841
|
type: {
|
|
5381
5842
|
name: "Composite",
|
|
5382
5843
|
className: "DatasetCompression",
|
|
5383
|
-
uberParent: "DatasetCompression",
|
|
5384
5844
|
additionalProperties: { type: { name: "Object" } },
|
|
5385
|
-
polymorphicDiscriminator: {
|
|
5386
|
-
serializedName: "type",
|
|
5387
|
-
clientName: "type"
|
|
5388
|
-
},
|
|
5389
5845
|
modelProperties: {
|
|
5390
5846
|
type: {
|
|
5391
5847
|
serializedName: "type",
|
|
5392
5848
|
required: true,
|
|
5393
5849
|
type: {
|
|
5394
|
-
name: "
|
|
5850
|
+
name: "any"
|
|
5851
|
+
}
|
|
5852
|
+
},
|
|
5853
|
+
level: {
|
|
5854
|
+
serializedName: "level",
|
|
5855
|
+
type: {
|
|
5856
|
+
name: "any"
|
|
5395
5857
|
}
|
|
5396
5858
|
}
|
|
5397
5859
|
}
|
|
@@ -5976,6 +6438,7 @@ const StoredProcedureParameter = {
|
|
|
5976
6438
|
modelProperties: {
|
|
5977
6439
|
value: {
|
|
5978
6440
|
serializedName: "value",
|
|
6441
|
+
nullable: true,
|
|
5979
6442
|
type: {
|
|
5980
6443
|
name: "any"
|
|
5981
6444
|
}
|
|
@@ -6230,6 +6693,27 @@ const ImportSettings = {
|
|
|
6230
6693
|
}
|
|
6231
6694
|
}
|
|
6232
6695
|
};
|
|
6696
|
+
const NotebookParameter = {
|
|
6697
|
+
type: {
|
|
6698
|
+
name: "Composite",
|
|
6699
|
+
className: "NotebookParameter",
|
|
6700
|
+
modelProperties: {
|
|
6701
|
+
value: {
|
|
6702
|
+
serializedName: "value",
|
|
6703
|
+
nullable: true,
|
|
6704
|
+
type: {
|
|
6705
|
+
name: "any"
|
|
6706
|
+
}
|
|
6707
|
+
},
|
|
6708
|
+
type: {
|
|
6709
|
+
serializedName: "type",
|
|
6710
|
+
type: {
|
|
6711
|
+
name: "String"
|
|
6712
|
+
}
|
|
6713
|
+
}
|
|
6714
|
+
}
|
|
6715
|
+
}
|
|
6716
|
+
};
|
|
6233
6717
|
const PolybaseSettings = {
|
|
6234
6718
|
type: {
|
|
6235
6719
|
name: "Composite",
|
|
@@ -6777,6 +7261,100 @@ const ExecuteDataFlowActivityTypePropertiesCompute = {
|
|
|
6777
7261
|
}
|
|
6778
7262
|
}
|
|
6779
7263
|
};
|
|
7264
|
+
const ScriptActivityScriptBlock = {
|
|
7265
|
+
type: {
|
|
7266
|
+
name: "Composite",
|
|
7267
|
+
className: "ScriptActivityScriptBlock",
|
|
7268
|
+
modelProperties: {
|
|
7269
|
+
text: {
|
|
7270
|
+
serializedName: "text",
|
|
7271
|
+
required: true,
|
|
7272
|
+
type: {
|
|
7273
|
+
name: "any"
|
|
7274
|
+
}
|
|
7275
|
+
},
|
|
7276
|
+
type: {
|
|
7277
|
+
serializedName: "type",
|
|
7278
|
+
required: true,
|
|
7279
|
+
type: {
|
|
7280
|
+
name: "String"
|
|
7281
|
+
}
|
|
7282
|
+
},
|
|
7283
|
+
parameters: {
|
|
7284
|
+
serializedName: "parameters",
|
|
7285
|
+
type: {
|
|
7286
|
+
name: "Sequence",
|
|
7287
|
+
element: {
|
|
7288
|
+
type: {
|
|
7289
|
+
name: "Composite",
|
|
7290
|
+
className: "ScriptActivityParameter"
|
|
7291
|
+
}
|
|
7292
|
+
}
|
|
7293
|
+
}
|
|
7294
|
+
}
|
|
7295
|
+
}
|
|
7296
|
+
}
|
|
7297
|
+
};
|
|
7298
|
+
const ScriptActivityParameter = {
|
|
7299
|
+
type: {
|
|
7300
|
+
name: "Composite",
|
|
7301
|
+
className: "ScriptActivityParameter",
|
|
7302
|
+
modelProperties: {
|
|
7303
|
+
name: {
|
|
7304
|
+
serializedName: "name",
|
|
7305
|
+
type: {
|
|
7306
|
+
name: "any"
|
|
7307
|
+
}
|
|
7308
|
+
},
|
|
7309
|
+
type: {
|
|
7310
|
+
serializedName: "type",
|
|
7311
|
+
type: {
|
|
7312
|
+
name: "String"
|
|
7313
|
+
}
|
|
7314
|
+
},
|
|
7315
|
+
value: {
|
|
7316
|
+
serializedName: "value",
|
|
7317
|
+
type: {
|
|
7318
|
+
name: "any"
|
|
7319
|
+
}
|
|
7320
|
+
},
|
|
7321
|
+
direction: {
|
|
7322
|
+
serializedName: "direction",
|
|
7323
|
+
type: {
|
|
7324
|
+
name: "String"
|
|
7325
|
+
}
|
|
7326
|
+
},
|
|
7327
|
+
size: {
|
|
7328
|
+
serializedName: "size",
|
|
7329
|
+
type: {
|
|
7330
|
+
name: "Number"
|
|
7331
|
+
}
|
|
7332
|
+
}
|
|
7333
|
+
}
|
|
7334
|
+
}
|
|
7335
|
+
};
|
|
7336
|
+
const ScriptActivityTypePropertiesLogSettings = {
|
|
7337
|
+
type: {
|
|
7338
|
+
name: "Composite",
|
|
7339
|
+
className: "ScriptActivityTypePropertiesLogSettings",
|
|
7340
|
+
modelProperties: {
|
|
7341
|
+
logDestination: {
|
|
7342
|
+
serializedName: "logDestination",
|
|
7343
|
+
required: true,
|
|
7344
|
+
type: {
|
|
7345
|
+
name: "String"
|
|
7346
|
+
}
|
|
7347
|
+
},
|
|
7348
|
+
logLocationSettings: {
|
|
7349
|
+
serializedName: "logLocationSettings",
|
|
7350
|
+
type: {
|
|
7351
|
+
name: "Composite",
|
|
7352
|
+
className: "LogLocationSettings"
|
|
7353
|
+
}
|
|
7354
|
+
}
|
|
7355
|
+
}
|
|
7356
|
+
}
|
|
7357
|
+
};
|
|
6780
7358
|
const ScheduleTriggerRecurrence = {
|
|
6781
7359
|
type: {
|
|
6782
7360
|
name: "Composite",
|
|
@@ -7422,57 +8000,73 @@ const MappingDataFlow = {
|
|
|
7422
8000
|
type: {
|
|
7423
8001
|
name: "String"
|
|
7424
8002
|
}
|
|
7425
|
-
}
|
|
7426
|
-
|
|
7427
|
-
};
|
|
7428
|
-
const IntegrationRuntimeDebugResource = {
|
|
7429
|
-
type: {
|
|
7430
|
-
name: "Composite",
|
|
7431
|
-
className: "IntegrationRuntimeDebugResource",
|
|
7432
|
-
modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
|
|
7433
|
-
serializedName: "properties",
|
|
8003
|
+
}, scriptLines: {
|
|
8004
|
+
serializedName: "typeProperties.scriptLines",
|
|
7434
8005
|
type: {
|
|
7435
|
-
name: "
|
|
7436
|
-
|
|
8006
|
+
name: "Sequence",
|
|
8007
|
+
element: {
|
|
8008
|
+
type: {
|
|
8009
|
+
name: "String"
|
|
8010
|
+
}
|
|
8011
|
+
}
|
|
7437
8012
|
}
|
|
7438
8013
|
} })
|
|
7439
8014
|
}
|
|
7440
8015
|
};
|
|
7441
|
-
const
|
|
8016
|
+
const Flowlet = {
|
|
8017
|
+
serializedName: "Flowlet",
|
|
7442
8018
|
type: {
|
|
7443
8019
|
name: "Composite",
|
|
7444
|
-
className: "
|
|
7445
|
-
|
|
7446
|
-
|
|
8020
|
+
className: "Flowlet",
|
|
8021
|
+
uberParent: "DataFlow",
|
|
8022
|
+
polymorphicDiscriminator: DataFlow.type.polymorphicDiscriminator,
|
|
8023
|
+
modelProperties: Object.assign(Object.assign({}, DataFlow.type.modelProperties), { sources: {
|
|
8024
|
+
serializedName: "typeProperties.sources",
|
|
7447
8025
|
type: {
|
|
7448
|
-
name: "
|
|
7449
|
-
|
|
8026
|
+
name: "Sequence",
|
|
8027
|
+
element: {
|
|
8028
|
+
type: {
|
|
8029
|
+
name: "Composite",
|
|
8030
|
+
className: "DataFlowSource"
|
|
8031
|
+
}
|
|
8032
|
+
}
|
|
7450
8033
|
}
|
|
7451
|
-
}
|
|
7452
|
-
|
|
7453
|
-
};
|
|
7454
|
-
const DatasetDebugResource = {
|
|
7455
|
-
type: {
|
|
7456
|
-
name: "Composite",
|
|
7457
|
-
className: "DatasetDebugResource",
|
|
7458
|
-
modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
|
|
7459
|
-
serializedName: "properties",
|
|
8034
|
+
}, sinks: {
|
|
8035
|
+
serializedName: "typeProperties.sinks",
|
|
7460
8036
|
type: {
|
|
7461
|
-
name: "
|
|
7462
|
-
|
|
8037
|
+
name: "Sequence",
|
|
8038
|
+
element: {
|
|
8039
|
+
type: {
|
|
8040
|
+
name: "Composite",
|
|
8041
|
+
className: "DataFlowSink"
|
|
8042
|
+
}
|
|
8043
|
+
}
|
|
7463
8044
|
}
|
|
7464
|
-
}
|
|
7465
|
-
|
|
7466
|
-
};
|
|
7467
|
-
const LinkedServiceDebugResource = {
|
|
7468
|
-
type: {
|
|
7469
|
-
name: "Composite",
|
|
7470
|
-
className: "LinkedServiceDebugResource",
|
|
7471
|
-
modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
|
|
7472
|
-
serializedName: "properties",
|
|
8045
|
+
}, transformations: {
|
|
8046
|
+
serializedName: "typeProperties.transformations",
|
|
7473
8047
|
type: {
|
|
7474
|
-
name: "
|
|
7475
|
-
|
|
8048
|
+
name: "Sequence",
|
|
8049
|
+
element: {
|
|
8050
|
+
type: {
|
|
8051
|
+
name: "Composite",
|
|
8052
|
+
className: "Transformation"
|
|
8053
|
+
}
|
|
8054
|
+
}
|
|
8055
|
+
}
|
|
8056
|
+
}, script: {
|
|
8057
|
+
serializedName: "typeProperties.script",
|
|
8058
|
+
type: {
|
|
8059
|
+
name: "String"
|
|
8060
|
+
}
|
|
8061
|
+
}, scriptLines: {
|
|
8062
|
+
serializedName: "typeProperties.scriptLines",
|
|
8063
|
+
type: {
|
|
8064
|
+
name: "Sequence",
|
|
8065
|
+
element: {
|
|
8066
|
+
type: {
|
|
8067
|
+
name: "String"
|
|
8068
|
+
}
|
|
8069
|
+
}
|
|
7476
8070
|
}
|
|
7477
8071
|
} })
|
|
7478
8072
|
}
|
|
@@ -7529,6 +8123,58 @@ const SelfHostedIntegrationRuntime = {
|
|
|
7529
8123
|
} })
|
|
7530
8124
|
}
|
|
7531
8125
|
};
|
|
8126
|
+
const IntegrationRuntimeDebugResource = {
|
|
8127
|
+
type: {
|
|
8128
|
+
name: "Composite",
|
|
8129
|
+
className: "IntegrationRuntimeDebugResource",
|
|
8130
|
+
modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
|
|
8131
|
+
serializedName: "properties",
|
|
8132
|
+
type: {
|
|
8133
|
+
name: "Composite",
|
|
8134
|
+
className: "IntegrationRuntime"
|
|
8135
|
+
}
|
|
8136
|
+
} })
|
|
8137
|
+
}
|
|
8138
|
+
};
|
|
8139
|
+
const DataFlowDebugResource = {
|
|
8140
|
+
type: {
|
|
8141
|
+
name: "Composite",
|
|
8142
|
+
className: "DataFlowDebugResource",
|
|
8143
|
+
modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
|
|
8144
|
+
serializedName: "properties",
|
|
8145
|
+
type: {
|
|
8146
|
+
name: "Composite",
|
|
8147
|
+
className: "DataFlow"
|
|
8148
|
+
}
|
|
8149
|
+
} })
|
|
8150
|
+
}
|
|
8151
|
+
};
|
|
8152
|
+
const DatasetDebugResource = {
|
|
8153
|
+
type: {
|
|
8154
|
+
name: "Composite",
|
|
8155
|
+
className: "DatasetDebugResource",
|
|
8156
|
+
modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
|
|
8157
|
+
serializedName: "properties",
|
|
8158
|
+
type: {
|
|
8159
|
+
name: "Composite",
|
|
8160
|
+
className: "Dataset"
|
|
8161
|
+
}
|
|
8162
|
+
} })
|
|
8163
|
+
}
|
|
8164
|
+
};
|
|
8165
|
+
const LinkedServiceDebugResource = {
|
|
8166
|
+
type: {
|
|
8167
|
+
name: "Composite",
|
|
8168
|
+
className: "LinkedServiceDebugResource",
|
|
8169
|
+
modelProperties: Object.assign(Object.assign({}, SubResourceDebugResource.type.modelProperties), { properties: {
|
|
8170
|
+
serializedName: "properties",
|
|
8171
|
+
type: {
|
|
8172
|
+
name: "Composite",
|
|
8173
|
+
className: "LinkedService"
|
|
8174
|
+
}
|
|
8175
|
+
} })
|
|
8176
|
+
}
|
|
8177
|
+
};
|
|
7532
8178
|
const AmazonS3Dataset = {
|
|
7533
8179
|
serializedName: "AmazonS3Object",
|
|
7534
8180
|
type: {
|
|
@@ -11427,6 +12073,17 @@ const AzureBlobFSLinkedService = {
|
|
|
11427
12073
|
type: {
|
|
11428
12074
|
name: "any"
|
|
11429
12075
|
}
|
|
12076
|
+
}, servicePrincipalCredentialType: {
|
|
12077
|
+
serializedName: "typeProperties.servicePrincipalCredentialType",
|
|
12078
|
+
type: {
|
|
12079
|
+
name: "any"
|
|
12080
|
+
}
|
|
12081
|
+
}, servicePrincipalCredential: {
|
|
12082
|
+
serializedName: "typeProperties.servicePrincipalCredential",
|
|
12083
|
+
type: {
|
|
12084
|
+
name: "Composite",
|
|
12085
|
+
className: "SecretBase"
|
|
12086
|
+
}
|
|
11430
12087
|
}, encryptedCredential: {
|
|
11431
12088
|
serializedName: "typeProperties.encryptedCredential",
|
|
11432
12089
|
type: {
|
|
@@ -11772,36 +12429,176 @@ const RestServiceLinkedService = {
|
|
|
11772
12429
|
} })
|
|
11773
12430
|
}
|
|
11774
12431
|
};
|
|
11775
|
-
const
|
|
11776
|
-
serializedName: "
|
|
12432
|
+
const TeamDeskLinkedService = {
|
|
12433
|
+
serializedName: "TeamDesk",
|
|
11777
12434
|
type: {
|
|
11778
12435
|
name: "Composite",
|
|
11779
|
-
className: "
|
|
12436
|
+
className: "TeamDeskLinkedService",
|
|
11780
12437
|
uberParent: "LinkedService",
|
|
11781
12438
|
additionalProperties: { type: { name: "Object" } },
|
|
11782
12439
|
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
11783
12440
|
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { authenticationType: {
|
|
11784
12441
|
serializedName: "typeProperties.authenticationType",
|
|
12442
|
+
required: true,
|
|
12443
|
+
type: {
|
|
12444
|
+
name: "String"
|
|
12445
|
+
}
|
|
12446
|
+
}, url: {
|
|
12447
|
+
serializedName: "typeProperties.url",
|
|
12448
|
+
required: true,
|
|
11785
12449
|
type: {
|
|
11786
12450
|
name: "any"
|
|
11787
12451
|
}
|
|
11788
|
-
},
|
|
11789
|
-
serializedName: "typeProperties.
|
|
12452
|
+
}, userName: {
|
|
12453
|
+
serializedName: "typeProperties.userName",
|
|
11790
12454
|
type: {
|
|
11791
12455
|
name: "any"
|
|
11792
12456
|
}
|
|
11793
|
-
},
|
|
11794
|
-
serializedName: "typeProperties.
|
|
12457
|
+
}, password: {
|
|
12458
|
+
serializedName: "typeProperties.password",
|
|
11795
12459
|
type: {
|
|
11796
12460
|
name: "Composite",
|
|
11797
12461
|
className: "SecretBase"
|
|
11798
12462
|
}
|
|
11799
|
-
},
|
|
11800
|
-
serializedName: "typeProperties.
|
|
12463
|
+
}, apiToken: {
|
|
12464
|
+
serializedName: "typeProperties.apiToken",
|
|
11801
12465
|
type: {
|
|
11802
|
-
name: "
|
|
12466
|
+
name: "Composite",
|
|
12467
|
+
className: "SecretBase"
|
|
11803
12468
|
}
|
|
11804
|
-
},
|
|
12469
|
+
}, encryptedCredential: {
|
|
12470
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
12471
|
+
type: {
|
|
12472
|
+
name: "any"
|
|
12473
|
+
}
|
|
12474
|
+
} })
|
|
12475
|
+
}
|
|
12476
|
+
};
|
|
12477
|
+
const QuickbaseLinkedService = {
|
|
12478
|
+
serializedName: "Quickbase",
|
|
12479
|
+
type: {
|
|
12480
|
+
name: "Composite",
|
|
12481
|
+
className: "QuickbaseLinkedService",
|
|
12482
|
+
uberParent: "LinkedService",
|
|
12483
|
+
additionalProperties: { type: { name: "Object" } },
|
|
12484
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
12485
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { url: {
|
|
12486
|
+
serializedName: "typeProperties.url",
|
|
12487
|
+
required: true,
|
|
12488
|
+
type: {
|
|
12489
|
+
name: "any"
|
|
12490
|
+
}
|
|
12491
|
+
}, userToken: {
|
|
12492
|
+
serializedName: "typeProperties.userToken",
|
|
12493
|
+
type: {
|
|
12494
|
+
name: "Composite",
|
|
12495
|
+
className: "SecretBase"
|
|
12496
|
+
}
|
|
12497
|
+
}, encryptedCredential: {
|
|
12498
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
12499
|
+
type: {
|
|
12500
|
+
name: "any"
|
|
12501
|
+
}
|
|
12502
|
+
} })
|
|
12503
|
+
}
|
|
12504
|
+
};
|
|
12505
|
+
const SmartsheetLinkedService = {
|
|
12506
|
+
serializedName: "Smartsheet",
|
|
12507
|
+
type: {
|
|
12508
|
+
name: "Composite",
|
|
12509
|
+
className: "SmartsheetLinkedService",
|
|
12510
|
+
uberParent: "LinkedService",
|
|
12511
|
+
additionalProperties: { type: { name: "Object" } },
|
|
12512
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
12513
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { apiToken: {
|
|
12514
|
+
serializedName: "typeProperties.apiToken",
|
|
12515
|
+
type: {
|
|
12516
|
+
name: "Composite",
|
|
12517
|
+
className: "SecretBase"
|
|
12518
|
+
}
|
|
12519
|
+
}, encryptedCredential: {
|
|
12520
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
12521
|
+
type: {
|
|
12522
|
+
name: "any"
|
|
12523
|
+
}
|
|
12524
|
+
} })
|
|
12525
|
+
}
|
|
12526
|
+
};
|
|
12527
|
+
const ZendeskLinkedService = {
|
|
12528
|
+
serializedName: "Zendesk",
|
|
12529
|
+
type: {
|
|
12530
|
+
name: "Composite",
|
|
12531
|
+
className: "ZendeskLinkedService",
|
|
12532
|
+
uberParent: "LinkedService",
|
|
12533
|
+
additionalProperties: { type: { name: "Object" } },
|
|
12534
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
12535
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { authenticationType: {
|
|
12536
|
+
serializedName: "typeProperties.authenticationType",
|
|
12537
|
+
required: true,
|
|
12538
|
+
type: {
|
|
12539
|
+
name: "String"
|
|
12540
|
+
}
|
|
12541
|
+
}, url: {
|
|
12542
|
+
serializedName: "typeProperties.url",
|
|
12543
|
+
required: true,
|
|
12544
|
+
type: {
|
|
12545
|
+
name: "any"
|
|
12546
|
+
}
|
|
12547
|
+
}, userName: {
|
|
12548
|
+
serializedName: "typeProperties.userName",
|
|
12549
|
+
type: {
|
|
12550
|
+
name: "any"
|
|
12551
|
+
}
|
|
12552
|
+
}, password: {
|
|
12553
|
+
serializedName: "typeProperties.password",
|
|
12554
|
+
type: {
|
|
12555
|
+
name: "Composite",
|
|
12556
|
+
className: "SecretBase"
|
|
12557
|
+
}
|
|
12558
|
+
}, apiToken: {
|
|
12559
|
+
serializedName: "typeProperties.apiToken",
|
|
12560
|
+
type: {
|
|
12561
|
+
name: "Composite",
|
|
12562
|
+
className: "SecretBase"
|
|
12563
|
+
}
|
|
12564
|
+
}, encryptedCredential: {
|
|
12565
|
+
serializedName: "typeProperties.encryptedCredential",
|
|
12566
|
+
type: {
|
|
12567
|
+
name: "any"
|
|
12568
|
+
}
|
|
12569
|
+
} })
|
|
12570
|
+
}
|
|
12571
|
+
};
|
|
12572
|
+
const AmazonS3LinkedService = {
|
|
12573
|
+
serializedName: "AmazonS3",
|
|
12574
|
+
type: {
|
|
12575
|
+
name: "Composite",
|
|
12576
|
+
className: "AmazonS3LinkedService",
|
|
12577
|
+
uberParent: "LinkedService",
|
|
12578
|
+
additionalProperties: { type: { name: "Object" } },
|
|
12579
|
+
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
12580
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { authenticationType: {
|
|
12581
|
+
serializedName: "typeProperties.authenticationType",
|
|
12582
|
+
type: {
|
|
12583
|
+
name: "any"
|
|
12584
|
+
}
|
|
12585
|
+
}, accessKeyId: {
|
|
12586
|
+
serializedName: "typeProperties.accessKeyId",
|
|
12587
|
+
type: {
|
|
12588
|
+
name: "any"
|
|
12589
|
+
}
|
|
12590
|
+
}, secretAccessKey: {
|
|
12591
|
+
serializedName: "typeProperties.secretAccessKey",
|
|
12592
|
+
type: {
|
|
12593
|
+
name: "Composite",
|
|
12594
|
+
className: "SecretBase"
|
|
12595
|
+
}
|
|
12596
|
+
}, serviceUrl: {
|
|
12597
|
+
serializedName: "typeProperties.serviceUrl",
|
|
12598
|
+
type: {
|
|
12599
|
+
name: "any"
|
|
12600
|
+
}
|
|
12601
|
+
}, sessionToken: {
|
|
11805
12602
|
serializedName: "typeProperties.sessionToken",
|
|
11806
12603
|
type: {
|
|
11807
12604
|
name: "Composite",
|
|
@@ -14285,9 +15082,13 @@ const GoogleAdWordsLinkedService = {
|
|
|
14285
15082
|
uberParent: "LinkedService",
|
|
14286
15083
|
additionalProperties: { type: { name: "Object" } },
|
|
14287
15084
|
polymorphicDiscriminator: LinkedService.type.polymorphicDiscriminator,
|
|
14288
|
-
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), {
|
|
15085
|
+
modelProperties: Object.assign(Object.assign({}, LinkedService.type.modelProperties), { connectionProperties: {
|
|
15086
|
+
serializedName: "typeProperties.connectionProperties",
|
|
15087
|
+
type: {
|
|
15088
|
+
name: "any"
|
|
15089
|
+
}
|
|
15090
|
+
}, clientCustomerID: {
|
|
14289
15091
|
serializedName: "typeProperties.clientCustomerID",
|
|
14290
|
-
required: true,
|
|
14291
15092
|
type: {
|
|
14292
15093
|
name: "any"
|
|
14293
15094
|
}
|
|
@@ -14299,7 +15100,6 @@ const GoogleAdWordsLinkedService = {
|
|
|
14299
15100
|
}
|
|
14300
15101
|
}, authenticationType: {
|
|
14301
15102
|
serializedName: "typeProperties.authenticationType",
|
|
14302
|
-
required: true,
|
|
14303
15103
|
type: {
|
|
14304
15104
|
name: "String"
|
|
14305
15105
|
}
|
|
@@ -14864,19 +15664,7 @@ const DataFlowSource = {
|
|
|
14864
15664
|
type: {
|
|
14865
15665
|
name: "Composite",
|
|
14866
15666
|
className: "DataFlowSource",
|
|
14867
|
-
modelProperties: Object.assign(Object.assign({}, Transformation.type.modelProperties), {
|
|
14868
|
-
serializedName: "dataset",
|
|
14869
|
-
type: {
|
|
14870
|
-
name: "Composite",
|
|
14871
|
-
className: "DatasetReference"
|
|
14872
|
-
}
|
|
14873
|
-
}, linkedService: {
|
|
14874
|
-
serializedName: "linkedService",
|
|
14875
|
-
type: {
|
|
14876
|
-
name: "Composite",
|
|
14877
|
-
className: "LinkedServiceReference"
|
|
14878
|
-
}
|
|
14879
|
-
}, schemaLinkedService: {
|
|
15667
|
+
modelProperties: Object.assign(Object.assign({}, Transformation.type.modelProperties), { schemaLinkedService: {
|
|
14880
15668
|
serializedName: "schemaLinkedService",
|
|
14881
15669
|
type: {
|
|
14882
15670
|
name: "Composite",
|
|
@@ -14889,19 +15677,7 @@ const DataFlowSink = {
|
|
|
14889
15677
|
type: {
|
|
14890
15678
|
name: "Composite",
|
|
14891
15679
|
className: "DataFlowSink",
|
|
14892
|
-
modelProperties: Object.assign(Object.assign({}, Transformation.type.modelProperties), {
|
|
14893
|
-
serializedName: "dataset",
|
|
14894
|
-
type: {
|
|
14895
|
-
name: "Composite",
|
|
14896
|
-
className: "DatasetReference"
|
|
14897
|
-
}
|
|
14898
|
-
}, linkedService: {
|
|
14899
|
-
serializedName: "linkedService",
|
|
14900
|
-
type: {
|
|
14901
|
-
name: "Composite",
|
|
14902
|
-
className: "LinkedServiceReference"
|
|
14903
|
-
}
|
|
14904
|
-
}, schemaLinkedService: {
|
|
15680
|
+
modelProperties: Object.assign(Object.assign({}, Transformation.type.modelProperties), { schemaLinkedService: {
|
|
14905
15681
|
serializedName: "schemaLinkedService",
|
|
14906
15682
|
type: {
|
|
14907
15683
|
name: "Composite",
|
|
@@ -15191,92 +15967,6 @@ const ParquetFormat = {
|
|
|
15191
15967
|
modelProperties: Object.assign({}, DatasetStorageFormat.type.modelProperties)
|
|
15192
15968
|
}
|
|
15193
15969
|
};
|
|
15194
|
-
const DatasetBZip2Compression = {
|
|
15195
|
-
serializedName: "BZip2",
|
|
15196
|
-
type: {
|
|
15197
|
-
name: "Composite",
|
|
15198
|
-
className: "DatasetBZip2Compression",
|
|
15199
|
-
uberParent: "DatasetCompression",
|
|
15200
|
-
additionalProperties: { type: { name: "Object" } },
|
|
15201
|
-
polymorphicDiscriminator: DatasetCompression.type.polymorphicDiscriminator,
|
|
15202
|
-
modelProperties: Object.assign({}, DatasetCompression.type.modelProperties)
|
|
15203
|
-
}
|
|
15204
|
-
};
|
|
15205
|
-
const DatasetGZipCompression = {
|
|
15206
|
-
serializedName: "GZip",
|
|
15207
|
-
type: {
|
|
15208
|
-
name: "Composite",
|
|
15209
|
-
className: "DatasetGZipCompression",
|
|
15210
|
-
uberParent: "DatasetCompression",
|
|
15211
|
-
additionalProperties: { type: { name: "Object" } },
|
|
15212
|
-
polymorphicDiscriminator: DatasetCompression.type.polymorphicDiscriminator,
|
|
15213
|
-
modelProperties: Object.assign(Object.assign({}, DatasetCompression.type.modelProperties), { level: {
|
|
15214
|
-
serializedName: "level",
|
|
15215
|
-
type: {
|
|
15216
|
-
name: "any"
|
|
15217
|
-
}
|
|
15218
|
-
} })
|
|
15219
|
-
}
|
|
15220
|
-
};
|
|
15221
|
-
const DatasetDeflateCompression = {
|
|
15222
|
-
serializedName: "Deflate",
|
|
15223
|
-
type: {
|
|
15224
|
-
name: "Composite",
|
|
15225
|
-
className: "DatasetDeflateCompression",
|
|
15226
|
-
uberParent: "DatasetCompression",
|
|
15227
|
-
additionalProperties: { type: { name: "Object" } },
|
|
15228
|
-
polymorphicDiscriminator: DatasetCompression.type.polymorphicDiscriminator,
|
|
15229
|
-
modelProperties: Object.assign(Object.assign({}, DatasetCompression.type.modelProperties), { level: {
|
|
15230
|
-
serializedName: "level",
|
|
15231
|
-
type: {
|
|
15232
|
-
name: "any"
|
|
15233
|
-
}
|
|
15234
|
-
} })
|
|
15235
|
-
}
|
|
15236
|
-
};
|
|
15237
|
-
const DatasetZipDeflateCompression = {
|
|
15238
|
-
serializedName: "ZipDeflate",
|
|
15239
|
-
type: {
|
|
15240
|
-
name: "Composite",
|
|
15241
|
-
className: "DatasetZipDeflateCompression",
|
|
15242
|
-
uberParent: "DatasetCompression",
|
|
15243
|
-
additionalProperties: { type: { name: "Object" } },
|
|
15244
|
-
polymorphicDiscriminator: DatasetCompression.type.polymorphicDiscriminator,
|
|
15245
|
-
modelProperties: Object.assign(Object.assign({}, DatasetCompression.type.modelProperties), { level: {
|
|
15246
|
-
serializedName: "level",
|
|
15247
|
-
type: {
|
|
15248
|
-
name: "any"
|
|
15249
|
-
}
|
|
15250
|
-
} })
|
|
15251
|
-
}
|
|
15252
|
-
};
|
|
15253
|
-
const DatasetTarCompression = {
|
|
15254
|
-
serializedName: "Tar",
|
|
15255
|
-
type: {
|
|
15256
|
-
name: "Composite",
|
|
15257
|
-
className: "DatasetTarCompression",
|
|
15258
|
-
uberParent: "DatasetCompression",
|
|
15259
|
-
additionalProperties: { type: { name: "Object" } },
|
|
15260
|
-
polymorphicDiscriminator: DatasetCompression.type.polymorphicDiscriminator,
|
|
15261
|
-
modelProperties: Object.assign({}, DatasetCompression.type.modelProperties)
|
|
15262
|
-
}
|
|
15263
|
-
};
|
|
15264
|
-
const DatasetTarGZipCompression = {
|
|
15265
|
-
serializedName: "TarGZip",
|
|
15266
|
-
type: {
|
|
15267
|
-
name: "Composite",
|
|
15268
|
-
className: "DatasetTarGZipCompression",
|
|
15269
|
-
uberParent: "DatasetCompression",
|
|
15270
|
-
additionalProperties: { type: { name: "Object" } },
|
|
15271
|
-
polymorphicDiscriminator: DatasetCompression.type.polymorphicDiscriminator,
|
|
15272
|
-
modelProperties: Object.assign(Object.assign({}, DatasetCompression.type.modelProperties), { level: {
|
|
15273
|
-
serializedName: "level",
|
|
15274
|
-
type: {
|
|
15275
|
-
name: "any"
|
|
15276
|
-
}
|
|
15277
|
-
} })
|
|
15278
|
-
}
|
|
15279
|
-
};
|
|
15280
15970
|
const WebAnonymousAuthentication = {
|
|
15281
15971
|
serializedName: "Anonymous",
|
|
15282
15972
|
type: {
|
|
@@ -15806,6 +16496,11 @@ const FtpReadSettings = {
|
|
|
15806
16496
|
type: {
|
|
15807
16497
|
name: "Boolean"
|
|
15808
16498
|
}
|
|
16499
|
+
}, disableChunking: {
|
|
16500
|
+
serializedName: "disableChunking",
|
|
16501
|
+
type: {
|
|
16502
|
+
name: "any"
|
|
16503
|
+
}
|
|
15809
16504
|
} })
|
|
15810
16505
|
}
|
|
15811
16506
|
};
|
|
@@ -15862,6 +16557,11 @@ const SftpReadSettings = {
|
|
|
15862
16557
|
type: {
|
|
15863
16558
|
name: "any"
|
|
15864
16559
|
}
|
|
16560
|
+
}, disableChunking: {
|
|
16561
|
+
serializedName: "disableChunking",
|
|
16562
|
+
type: {
|
|
16563
|
+
name: "any"
|
|
16564
|
+
}
|
|
15865
16565
|
} })
|
|
15866
16566
|
}
|
|
15867
16567
|
};
|
|
@@ -20268,6 +20968,34 @@ const ExecuteDataFlowActivity = {
|
|
|
20268
20968
|
} })
|
|
20269
20969
|
}
|
|
20270
20970
|
};
|
|
20971
|
+
const ScriptActivity = {
|
|
20972
|
+
serializedName: "Script",
|
|
20973
|
+
type: {
|
|
20974
|
+
name: "Composite",
|
|
20975
|
+
className: "ScriptActivity",
|
|
20976
|
+
uberParent: "Activity",
|
|
20977
|
+
additionalProperties: { type: { name: "Object" } },
|
|
20978
|
+
polymorphicDiscriminator: Activity.type.polymorphicDiscriminator,
|
|
20979
|
+
modelProperties: Object.assign(Object.assign({}, ExecutionActivity.type.modelProperties), { scripts: {
|
|
20980
|
+
serializedName: "typeProperties.scripts",
|
|
20981
|
+
type: {
|
|
20982
|
+
name: "Sequence",
|
|
20983
|
+
element: {
|
|
20984
|
+
type: {
|
|
20985
|
+
name: "Composite",
|
|
20986
|
+
className: "ScriptActivityScriptBlock"
|
|
20987
|
+
}
|
|
20988
|
+
}
|
|
20989
|
+
}
|
|
20990
|
+
}, logSettings: {
|
|
20991
|
+
serializedName: "typeProperties.logSettings",
|
|
20992
|
+
type: {
|
|
20993
|
+
name: "Composite",
|
|
20994
|
+
className: "ScriptActivityTypePropertiesLogSettings"
|
|
20995
|
+
}
|
|
20996
|
+
} })
|
|
20997
|
+
}
|
|
20998
|
+
};
|
|
20271
20999
|
const SynapseNotebookActivity = {
|
|
20272
21000
|
serializedName: "SynapseNotebook",
|
|
20273
21001
|
type: {
|
|
@@ -20282,11 +21010,17 @@ const SynapseNotebookActivity = {
|
|
|
20282
21010
|
name: "Composite",
|
|
20283
21011
|
className: "SynapseNotebookReference"
|
|
20284
21012
|
}
|
|
21013
|
+
}, sparkPool: {
|
|
21014
|
+
serializedName: "typeProperties.sparkPool",
|
|
21015
|
+
type: {
|
|
21016
|
+
name: "Composite",
|
|
21017
|
+
className: "BigDataPoolParametrizationReference"
|
|
21018
|
+
}
|
|
20285
21019
|
}, parameters: {
|
|
20286
21020
|
serializedName: "typeProperties.parameters",
|
|
20287
21021
|
type: {
|
|
20288
21022
|
name: "Dictionary",
|
|
20289
|
-
value: { type: { name: "
|
|
21023
|
+
value: { type: { name: "Composite", className: "NotebookParameter" } }
|
|
20290
21024
|
}
|
|
20291
21025
|
} })
|
|
20292
21026
|
}
|
|
@@ -20315,35 +21049,81 @@ const SynapseSparkJobDefinitionActivity = {
|
|
|
20315
21049
|
}
|
|
20316
21050
|
}
|
|
20317
21051
|
}
|
|
20318
|
-
}
|
|
20319
|
-
|
|
20320
|
-
};
|
|
20321
|
-
const ScheduleTrigger = {
|
|
20322
|
-
serializedName: "ScheduleTrigger",
|
|
20323
|
-
type: {
|
|
20324
|
-
name: "Composite",
|
|
20325
|
-
className: "ScheduleTrigger",
|
|
20326
|
-
uberParent: "Trigger",
|
|
20327
|
-
additionalProperties: { type: { name: "Object" } },
|
|
20328
|
-
polymorphicDiscriminator: Trigger.type.polymorphicDiscriminator,
|
|
20329
|
-
modelProperties: Object.assign(Object.assign({}, MultiplePipelineTrigger.type.modelProperties), { recurrence: {
|
|
20330
|
-
serializedName: "typeProperties.recurrence",
|
|
21052
|
+
}, file: {
|
|
21053
|
+
serializedName: "typeProperties.file",
|
|
20331
21054
|
type: {
|
|
20332
|
-
name: "
|
|
20333
|
-
className: "ScheduleTriggerRecurrence"
|
|
21055
|
+
name: "any"
|
|
20334
21056
|
}
|
|
20335
|
-
}
|
|
20336
|
-
|
|
20337
|
-
|
|
20338
|
-
|
|
20339
|
-
|
|
20340
|
-
|
|
20341
|
-
|
|
20342
|
-
|
|
20343
|
-
|
|
20344
|
-
|
|
20345
|
-
|
|
20346
|
-
|
|
21057
|
+
}, className: {
|
|
21058
|
+
serializedName: "typeProperties.className",
|
|
21059
|
+
type: {
|
|
21060
|
+
name: "any"
|
|
21061
|
+
}
|
|
21062
|
+
}, files: {
|
|
21063
|
+
serializedName: "typeProperties.files",
|
|
21064
|
+
type: {
|
|
21065
|
+
name: "Sequence",
|
|
21066
|
+
element: {
|
|
21067
|
+
type: {
|
|
21068
|
+
name: "any"
|
|
21069
|
+
}
|
|
21070
|
+
}
|
|
21071
|
+
}
|
|
21072
|
+
}, targetBigDataPool: {
|
|
21073
|
+
serializedName: "typeProperties.targetBigDataPool",
|
|
21074
|
+
type: {
|
|
21075
|
+
name: "Composite",
|
|
21076
|
+
className: "BigDataPoolParametrizationReference"
|
|
21077
|
+
}
|
|
21078
|
+
}, executorSize: {
|
|
21079
|
+
serializedName: "typeProperties.executorSize",
|
|
21080
|
+
type: {
|
|
21081
|
+
name: "any"
|
|
21082
|
+
}
|
|
21083
|
+
}, conf: {
|
|
21084
|
+
serializedName: "typeProperties.conf",
|
|
21085
|
+
type: {
|
|
21086
|
+
name: "any"
|
|
21087
|
+
}
|
|
21088
|
+
}, driverSize: {
|
|
21089
|
+
serializedName: "typeProperties.driverSize",
|
|
21090
|
+
type: {
|
|
21091
|
+
name: "any"
|
|
21092
|
+
}
|
|
21093
|
+
}, numExecutors: {
|
|
21094
|
+
serializedName: "typeProperties.numExecutors",
|
|
21095
|
+
type: {
|
|
21096
|
+
name: "Number"
|
|
21097
|
+
}
|
|
21098
|
+
} })
|
|
21099
|
+
}
|
|
21100
|
+
};
|
|
21101
|
+
const ScheduleTrigger = {
|
|
21102
|
+
serializedName: "ScheduleTrigger",
|
|
21103
|
+
type: {
|
|
21104
|
+
name: "Composite",
|
|
21105
|
+
className: "ScheduleTrigger",
|
|
21106
|
+
uberParent: "Trigger",
|
|
21107
|
+
additionalProperties: { type: { name: "Object" } },
|
|
21108
|
+
polymorphicDiscriminator: Trigger.type.polymorphicDiscriminator,
|
|
21109
|
+
modelProperties: Object.assign(Object.assign({}, MultiplePipelineTrigger.type.modelProperties), { recurrence: {
|
|
21110
|
+
serializedName: "typeProperties.recurrence",
|
|
21111
|
+
type: {
|
|
21112
|
+
name: "Composite",
|
|
21113
|
+
className: "ScheduleTriggerRecurrence"
|
|
21114
|
+
}
|
|
21115
|
+
} })
|
|
21116
|
+
}
|
|
21117
|
+
};
|
|
21118
|
+
const BlobTrigger = {
|
|
21119
|
+
serializedName: "BlobTrigger",
|
|
21120
|
+
type: {
|
|
21121
|
+
name: "Composite",
|
|
21122
|
+
className: "BlobTrigger",
|
|
21123
|
+
uberParent: "Trigger",
|
|
21124
|
+
additionalProperties: { type: { name: "Object" } },
|
|
21125
|
+
polymorphicDiscriminator: Trigger.type.polymorphicDiscriminator,
|
|
21126
|
+
modelProperties: Object.assign(Object.assign({}, MultiplePipelineTrigger.type.modelProperties), { folderPath: {
|
|
20347
21127
|
serializedName: "typeProperties.folderPath",
|
|
20348
21128
|
required: true,
|
|
20349
21129
|
type: {
|
|
@@ -21924,7 +22704,6 @@ let discriminators = {
|
|
|
21924
22704
|
SecretBase: SecretBase,
|
|
21925
22705
|
DatasetLocation: DatasetLocation,
|
|
21926
22706
|
DatasetStorageFormat: DatasetStorageFormat,
|
|
21927
|
-
DatasetCompression: DatasetCompression,
|
|
21928
22707
|
WebLinkedServiceTypeProperties: WebLinkedServiceTypeProperties,
|
|
21929
22708
|
StoreReadSettings: StoreReadSettings,
|
|
21930
22709
|
StoreWriteSettings: StoreWriteSettings,
|
|
@@ -21940,6 +22719,7 @@ let discriminators = {
|
|
|
21940
22719
|
"CustomSetupBase.undefined": CustomSetupBase,
|
|
21941
22720
|
LinkedIntegrationRuntimeType: LinkedIntegrationRuntimeType,
|
|
21942
22721
|
"DataFlow.MappingDataFlow": MappingDataFlow,
|
|
22722
|
+
"DataFlow.Flowlet": Flowlet,
|
|
21943
22723
|
"IntegrationRuntime.Managed": ManagedIntegrationRuntime,
|
|
21944
22724
|
"IntegrationRuntime.SelfHosted": SelfHostedIntegrationRuntime,
|
|
21945
22725
|
"Dataset.AmazonS3Object": AmazonS3Dataset,
|
|
@@ -22085,6 +22865,10 @@ let discriminators = {
|
|
|
22085
22865
|
"LinkedService.SapEcc": SapEccLinkedService,
|
|
22086
22866
|
"LinkedService.SapOpenHub": SapOpenHubLinkedService,
|
|
22087
22867
|
"LinkedService.RestService": RestServiceLinkedService,
|
|
22868
|
+
"LinkedService.TeamDesk": TeamDeskLinkedService,
|
|
22869
|
+
"LinkedService.Quickbase": QuickbaseLinkedService,
|
|
22870
|
+
"LinkedService.Smartsheet": SmartsheetLinkedService,
|
|
22871
|
+
"LinkedService.Zendesk": ZendeskLinkedService,
|
|
22088
22872
|
"LinkedService.AmazonS3": AmazonS3LinkedService,
|
|
22089
22873
|
"LinkedService.AmazonRedshift": AmazonRedshiftLinkedService,
|
|
22090
22874
|
"LinkedService.CustomDataSource": CustomDataSourceLinkedService,
|
|
@@ -22162,12 +22946,6 @@ let discriminators = {
|
|
|
22162
22946
|
"DatasetStorageFormat.AvroFormat": AvroFormat,
|
|
22163
22947
|
"DatasetStorageFormat.OrcFormat": OrcFormat,
|
|
22164
22948
|
"DatasetStorageFormat.ParquetFormat": ParquetFormat,
|
|
22165
|
-
"DatasetCompression.BZip2": DatasetBZip2Compression,
|
|
22166
|
-
"DatasetCompression.GZip": DatasetGZipCompression,
|
|
22167
|
-
"DatasetCompression.Deflate": DatasetDeflateCompression,
|
|
22168
|
-
"DatasetCompression.ZipDeflate": DatasetZipDeflateCompression,
|
|
22169
|
-
"DatasetCompression.Tar": DatasetTarCompression,
|
|
22170
|
-
"DatasetCompression.TarGZip": DatasetTarGZipCompression,
|
|
22171
22949
|
"WebLinkedServiceTypeProperties.Anonymous": WebAnonymousAuthentication,
|
|
22172
22950
|
"WebLinkedServiceTypeProperties.Basic": WebBasicAuthentication,
|
|
22173
22951
|
"WebLinkedServiceTypeProperties.ClientCertificate": WebClientCertificateAuthentication,
|
|
@@ -22317,6 +23095,7 @@ let discriminators = {
|
|
|
22317
23095
|
"Activity.DatabricksSparkPython": DatabricksSparkPythonActivity,
|
|
22318
23096
|
"Activity.AzureFunctionActivity": AzureFunctionActivity,
|
|
22319
23097
|
"Activity.ExecuteDataFlow": ExecuteDataFlowActivity,
|
|
23098
|
+
"Activity.Script": ScriptActivity,
|
|
22320
23099
|
"Activity.SynapseNotebook": SynapseNotebookActivity,
|
|
22321
23100
|
"Activity.SparkJob": SynapseSparkJobDefinitionActivity,
|
|
22322
23101
|
"Trigger.ScheduleTrigger": ScheduleTrigger,
|
|
@@ -22396,9 +23175,14 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22396
23175
|
ErrorResponse: ErrorResponse,
|
|
22397
23176
|
ErrorAdditionalInfo: ErrorAdditionalInfo,
|
|
22398
23177
|
ArtifactRenameRequest: ArtifactRenameRequest,
|
|
23178
|
+
MetastoreRegisterObject: MetastoreRegisterObject,
|
|
23179
|
+
MetastoreRegistrationResponse: MetastoreRegistrationResponse,
|
|
23180
|
+
MetastoreRequestSuccessResponse: MetastoreRequestSuccessResponse,
|
|
23181
|
+
MetastoreUpdateObject: MetastoreUpdateObject,
|
|
23182
|
+
MetastoreUpdationResponse: MetastoreUpdationResponse,
|
|
22399
23183
|
SparkConfigurationListResponse: SparkConfigurationListResponse,
|
|
22400
|
-
Resource: Resource,
|
|
22401
23184
|
SparkConfiguration: SparkConfiguration,
|
|
23185
|
+
Resource: Resource,
|
|
22402
23186
|
CloudError: CloudError,
|
|
22403
23187
|
BigDataPoolResourceInfoListResult: BigDataPoolResourceInfoListResult,
|
|
22404
23188
|
AutoScaleProperties: AutoScaleProperties,
|
|
@@ -22411,8 +23195,8 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22411
23195
|
CloudErrorAutoGenerated: CloudErrorAutoGenerated,
|
|
22412
23196
|
DataFlowListResponse: DataFlowListResponse,
|
|
22413
23197
|
CreateDataFlowDebugSessionRequest: CreateDataFlowDebugSessionRequest,
|
|
22414
|
-
SubResourceDebugResource: SubResourceDebugResource,
|
|
22415
23198
|
IntegrationRuntime: IntegrationRuntime,
|
|
23199
|
+
SubResourceDebugResource: SubResourceDebugResource,
|
|
22416
23200
|
CreateDataFlowDebugSessionResponse: CreateDataFlowDebugSessionResponse,
|
|
22417
23201
|
QueryDataFlowDebugSessionsResponse: QueryDataFlowDebugSessionsResponse,
|
|
22418
23202
|
DataFlowDebugSessionInfo: DataFlowDebugSessionInfo,
|
|
@@ -22520,6 +23304,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22520
23304
|
SynapseNotebookReference: SynapseNotebookReference,
|
|
22521
23305
|
SynapseSparkJobReference: SynapseSparkJobReference,
|
|
22522
23306
|
SqlPoolReference: SqlPoolReference,
|
|
23307
|
+
BigDataPoolParametrizationReference: BigDataPoolParametrizationReference,
|
|
22523
23308
|
StartDataFlowDebugSessionRequest: StartDataFlowDebugSessionRequest,
|
|
22524
23309
|
StartDataFlowDebugSessionResponse: StartDataFlowDebugSessionResponse,
|
|
22525
23310
|
DataFlowDebugPreviewDataRequest: DataFlowDebugPreviewDataRequest,
|
|
@@ -22563,6 +23348,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22563
23348
|
RedshiftUnloadSettings: RedshiftUnloadSettings,
|
|
22564
23349
|
ExportSettings: ExportSettings,
|
|
22565
23350
|
ImportSettings: ImportSettings,
|
|
23351
|
+
NotebookParameter: NotebookParameter,
|
|
22566
23352
|
PolybaseSettings: PolybaseSettings,
|
|
22567
23353
|
DWCopyCommandSettings: DWCopyCommandSettings,
|
|
22568
23354
|
DWCopyCommandDefaultValue: DWCopyCommandDefaultValue,
|
|
@@ -22581,6 +23367,9 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22581
23367
|
SwitchCase: SwitchCase,
|
|
22582
23368
|
AzureMLWebServiceFile: AzureMLWebServiceFile,
|
|
22583
23369
|
ExecuteDataFlowActivityTypePropertiesCompute: ExecuteDataFlowActivityTypePropertiesCompute,
|
|
23370
|
+
ScriptActivityScriptBlock: ScriptActivityScriptBlock,
|
|
23371
|
+
ScriptActivityParameter: ScriptActivityParameter,
|
|
23372
|
+
ScriptActivityTypePropertiesLogSettings: ScriptActivityTypePropertiesLogSettings,
|
|
22584
23373
|
ScheduleTriggerRecurrence: ScheduleTriggerRecurrence,
|
|
22585
23374
|
RecurrenceSchedule: RecurrenceSchedule,
|
|
22586
23375
|
RecurrenceScheduleOccurrence: RecurrenceScheduleOccurrence,
|
|
@@ -22602,12 +23391,13 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22602
23391
|
TrackedResource: TrackedResource,
|
|
22603
23392
|
ProxyResource: ProxyResource,
|
|
22604
23393
|
MappingDataFlow: MappingDataFlow,
|
|
23394
|
+
Flowlet: Flowlet,
|
|
23395
|
+
ManagedIntegrationRuntime: ManagedIntegrationRuntime,
|
|
23396
|
+
SelfHostedIntegrationRuntime: SelfHostedIntegrationRuntime,
|
|
22605
23397
|
IntegrationRuntimeDebugResource: IntegrationRuntimeDebugResource,
|
|
22606
23398
|
DataFlowDebugResource: DataFlowDebugResource,
|
|
22607
23399
|
DatasetDebugResource: DatasetDebugResource,
|
|
22608
23400
|
LinkedServiceDebugResource: LinkedServiceDebugResource,
|
|
22609
|
-
ManagedIntegrationRuntime: ManagedIntegrationRuntime,
|
|
22610
|
-
SelfHostedIntegrationRuntime: SelfHostedIntegrationRuntime,
|
|
22611
23401
|
AmazonS3Dataset: AmazonS3Dataset,
|
|
22612
23402
|
AvroDataset: AvroDataset,
|
|
22613
23403
|
ExcelDataset: ExcelDataset,
|
|
@@ -22751,6 +23541,10 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22751
23541
|
SapEccLinkedService: SapEccLinkedService,
|
|
22752
23542
|
SapOpenHubLinkedService: SapOpenHubLinkedService,
|
|
22753
23543
|
RestServiceLinkedService: RestServiceLinkedService,
|
|
23544
|
+
TeamDeskLinkedService: TeamDeskLinkedService,
|
|
23545
|
+
QuickbaseLinkedService: QuickbaseLinkedService,
|
|
23546
|
+
SmartsheetLinkedService: SmartsheetLinkedService,
|
|
23547
|
+
ZendeskLinkedService: ZendeskLinkedService,
|
|
22754
23548
|
AmazonS3LinkedService: AmazonS3LinkedService,
|
|
22755
23549
|
AmazonRedshiftLinkedService: AmazonRedshiftLinkedService,
|
|
22756
23550
|
CustomDataSourceLinkedService: CustomDataSourceLinkedService,
|
|
@@ -22830,12 +23624,6 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22830
23624
|
AvroFormat: AvroFormat,
|
|
22831
23625
|
OrcFormat: OrcFormat,
|
|
22832
23626
|
ParquetFormat: ParquetFormat,
|
|
22833
|
-
DatasetBZip2Compression: DatasetBZip2Compression,
|
|
22834
|
-
DatasetGZipCompression: DatasetGZipCompression,
|
|
22835
|
-
DatasetDeflateCompression: DatasetDeflateCompression,
|
|
22836
|
-
DatasetZipDeflateCompression: DatasetZipDeflateCompression,
|
|
22837
|
-
DatasetTarCompression: DatasetTarCompression,
|
|
22838
|
-
DatasetTarGZipCompression: DatasetTarGZipCompression,
|
|
22839
23627
|
WebAnonymousAuthentication: WebAnonymousAuthentication,
|
|
22840
23628
|
WebBasicAuthentication: WebBasicAuthentication,
|
|
22841
23629
|
WebClientCertificateAuthentication: WebClientCertificateAuthentication,
|
|
@@ -22990,6 +23778,7 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
|
22990
23778
|
DatabricksSparkPythonActivity: DatabricksSparkPythonActivity,
|
|
22991
23779
|
AzureFunctionActivity: AzureFunctionActivity,
|
|
22992
23780
|
ExecuteDataFlowActivity: ExecuteDataFlowActivity,
|
|
23781
|
+
ScriptActivity: ScriptActivity,
|
|
22993
23782
|
SynapseNotebookActivity: SynapseNotebookActivity,
|
|
22994
23783
|
SynapseSparkJobDefinitionActivity: SynapseSparkJobDefinitionActivity,
|
|
22995
23784
|
ScheduleTrigger: ScheduleTrigger,
|
|
@@ -23102,7 +23891,7 @@ const endpoint = {
|
|
|
23102
23891
|
const apiVersion = {
|
|
23103
23892
|
parameterPath: "apiVersion",
|
|
23104
23893
|
mapper: {
|
|
23105
|
-
defaultValue: "2021-
|
|
23894
|
+
defaultValue: "2021-11-01-preview",
|
|
23106
23895
|
isConstant: true,
|
|
23107
23896
|
serializedName: "api-version",
|
|
23108
23897
|
type: {
|
|
@@ -23150,6 +23939,46 @@ const renameRequest = {
|
|
|
23150
23939
|
parameterPath: "renameRequest",
|
|
23151
23940
|
mapper: ArtifactRenameRequest
|
|
23152
23941
|
};
|
|
23942
|
+
const registerBody = {
|
|
23943
|
+
parameterPath: "registerBody",
|
|
23944
|
+
mapper: MetastoreRegisterObject
|
|
23945
|
+
};
|
|
23946
|
+
const apiVersion1 = {
|
|
23947
|
+
parameterPath: "apiVersion",
|
|
23948
|
+
mapper: {
|
|
23949
|
+
defaultValue: "2021-07-01-preview",
|
|
23950
|
+
isConstant: true,
|
|
23951
|
+
serializedName: "api-version",
|
|
23952
|
+
type: {
|
|
23953
|
+
name: "String"
|
|
23954
|
+
}
|
|
23955
|
+
}
|
|
23956
|
+
};
|
|
23957
|
+
const id = {
|
|
23958
|
+
parameterPath: "id",
|
|
23959
|
+
mapper: {
|
|
23960
|
+
serializedName: "id",
|
|
23961
|
+
required: true,
|
|
23962
|
+
type: {
|
|
23963
|
+
name: "String"
|
|
23964
|
+
}
|
|
23965
|
+
}
|
|
23966
|
+
};
|
|
23967
|
+
const updateBody = {
|
|
23968
|
+
parameterPath: "updateBody",
|
|
23969
|
+
mapper: MetastoreUpdateObject
|
|
23970
|
+
};
|
|
23971
|
+
const apiVersion2 = {
|
|
23972
|
+
parameterPath: "apiVersion",
|
|
23973
|
+
mapper: {
|
|
23974
|
+
defaultValue: "2021-06-01-preview",
|
|
23975
|
+
isConstant: true,
|
|
23976
|
+
serializedName: "api-version",
|
|
23977
|
+
type: {
|
|
23978
|
+
name: "String"
|
|
23979
|
+
}
|
|
23980
|
+
}
|
|
23981
|
+
};
|
|
23153
23982
|
const sparkConfiguration = {
|
|
23154
23983
|
parameterPath: "sparkConfiguration",
|
|
23155
23984
|
mapper: SparkConfigurationResource
|
|
@@ -23186,7 +24015,7 @@ const request = {
|
|
|
23186
24015
|
parameterPath: "request",
|
|
23187
24016
|
mapper: ArtifactRenameRequest
|
|
23188
24017
|
};
|
|
23189
|
-
const
|
|
24018
|
+
const apiVersion3 = {
|
|
23190
24019
|
parameterPath: "apiVersion",
|
|
23191
24020
|
mapper: {
|
|
23192
24021
|
defaultValue: "2020-12-01",
|
|
@@ -23610,7 +24439,7 @@ class KqlScriptsImpl {
|
|
|
23610
24439
|
}
|
|
23611
24440
|
catch (error) {
|
|
23612
24441
|
span.setStatus({
|
|
23613
|
-
code:
|
|
24442
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23614
24443
|
message: error.message
|
|
23615
24444
|
});
|
|
23616
24445
|
throw error;
|
|
@@ -23632,7 +24461,7 @@ class KqlScriptsImpl {
|
|
|
23632
24461
|
}
|
|
23633
24462
|
catch (error) {
|
|
23634
24463
|
span.setStatus({
|
|
23635
|
-
code:
|
|
24464
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23636
24465
|
message: error.message
|
|
23637
24466
|
});
|
|
23638
24467
|
throw error;
|
|
@@ -23643,7 +24472,7 @@ class KqlScriptsImpl {
|
|
|
23643
24472
|
}
|
|
23644
24473
|
}
|
|
23645
24474
|
// Operation Specifications
|
|
23646
|
-
const serializer =
|
|
24475
|
+
const serializer$l = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
23647
24476
|
const getAllOperationSpec = {
|
|
23648
24477
|
path: "/kqlScripts",
|
|
23649
24478
|
httpMethod: "GET",
|
|
@@ -23658,7 +24487,7 @@ const getAllOperationSpec = {
|
|
|
23658
24487
|
queryParameters: [apiVersion],
|
|
23659
24488
|
urlParameters: [endpoint],
|
|
23660
24489
|
headerParameters: [accept],
|
|
23661
|
-
serializer
|
|
24490
|
+
serializer: serializer$l
|
|
23662
24491
|
};
|
|
23663
24492
|
const getAllNextOperationSpec = {
|
|
23664
24493
|
path: "{nextLink}",
|
|
@@ -23674,7 +24503,7 @@ const getAllNextOperationSpec = {
|
|
|
23674
24503
|
queryParameters: [apiVersion],
|
|
23675
24504
|
urlParameters: [endpoint, nextLink],
|
|
23676
24505
|
headerParameters: [accept],
|
|
23677
|
-
serializer
|
|
24506
|
+
serializer: serializer$l
|
|
23678
24507
|
};
|
|
23679
24508
|
|
|
23680
24509
|
/*
|
|
@@ -23732,7 +24561,7 @@ class KqlScriptOperationsImpl {
|
|
|
23732
24561
|
}
|
|
23733
24562
|
catch (error) {
|
|
23734
24563
|
span.setStatus({
|
|
23735
|
-
code:
|
|
24564
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23736
24565
|
message: error.message
|
|
23737
24566
|
});
|
|
23738
24567
|
throw error;
|
|
@@ -23789,7 +24618,7 @@ class KqlScriptOperationsImpl {
|
|
|
23789
24618
|
}
|
|
23790
24619
|
catch (error) {
|
|
23791
24620
|
span.setStatus({
|
|
23792
|
-
code:
|
|
24621
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23793
24622
|
message: error.message
|
|
23794
24623
|
});
|
|
23795
24624
|
throw error;
|
|
@@ -23812,7 +24641,7 @@ class KqlScriptOperationsImpl {
|
|
|
23812
24641
|
}
|
|
23813
24642
|
catch (error) {
|
|
23814
24643
|
span.setStatus({
|
|
23815
|
-
code:
|
|
24644
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23816
24645
|
message: error.message
|
|
23817
24646
|
});
|
|
23818
24647
|
throw error;
|
|
@@ -23870,7 +24699,7 @@ class KqlScriptOperationsImpl {
|
|
|
23870
24699
|
}
|
|
23871
24700
|
catch (error) {
|
|
23872
24701
|
span.setStatus({
|
|
23873
|
-
code:
|
|
24702
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
23874
24703
|
message: error.message
|
|
23875
24704
|
});
|
|
23876
24705
|
throw error;
|
|
@@ -23916,7 +24745,7 @@ class KqlScriptOperationsImpl {
|
|
|
23916
24745
|
}
|
|
23917
24746
|
}
|
|
23918
24747
|
// Operation Specifications
|
|
23919
|
-
const serializer$
|
|
24748
|
+
const serializer$k = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
23920
24749
|
const createOrUpdateOperationSpec = {
|
|
23921
24750
|
path: "/kqlScripts/{kqlScriptName}",
|
|
23922
24751
|
httpMethod: "PUT",
|
|
@@ -23942,7 +24771,7 @@ const createOrUpdateOperationSpec = {
|
|
|
23942
24771
|
urlParameters: [endpoint, kqlScriptName],
|
|
23943
24772
|
headerParameters: [accept, contentType],
|
|
23944
24773
|
mediaType: "json",
|
|
23945
|
-
serializer: serializer$
|
|
24774
|
+
serializer: serializer$k
|
|
23946
24775
|
};
|
|
23947
24776
|
const getByNameOperationSpec = {
|
|
23948
24777
|
path: "/kqlScripts/{kqlScriptName}",
|
|
@@ -23958,7 +24787,7 @@ const getByNameOperationSpec = {
|
|
|
23958
24787
|
queryParameters: [apiVersion],
|
|
23959
24788
|
urlParameters: [endpoint, kqlScriptName],
|
|
23960
24789
|
headerParameters: [accept],
|
|
23961
|
-
serializer: serializer$
|
|
24790
|
+
serializer: serializer$k
|
|
23962
24791
|
};
|
|
23963
24792
|
const deleteByNameOperationSpec = {
|
|
23964
24793
|
path: "/kqlScripts/{kqlScriptName}",
|
|
@@ -23975,7 +24804,7 @@ const deleteByNameOperationSpec = {
|
|
|
23975
24804
|
queryParameters: [apiVersion],
|
|
23976
24805
|
urlParameters: [endpoint, kqlScriptName],
|
|
23977
24806
|
headerParameters: [accept],
|
|
23978
|
-
serializer: serializer$
|
|
24807
|
+
serializer: serializer$k
|
|
23979
24808
|
};
|
|
23980
24809
|
const renameOperationSpec = {
|
|
23981
24810
|
path: "/kqlScripts/{kqlScriptName}/rename",
|
|
@@ -23994,7 +24823,184 @@ const renameOperationSpec = {
|
|
|
23994
24823
|
urlParameters: [endpoint, kqlScriptName],
|
|
23995
24824
|
headerParameters: [accept, contentType],
|
|
23996
24825
|
mediaType: "json",
|
|
23997
|
-
serializer: serializer$
|
|
24826
|
+
serializer: serializer$k
|
|
24827
|
+
};
|
|
24828
|
+
|
|
24829
|
+
/*
|
|
24830
|
+
* Copyright (c) Microsoft Corporation.
|
|
24831
|
+
* Licensed under the MIT License.
|
|
24832
|
+
*
|
|
24833
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
24834
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
24835
|
+
*/
|
|
24836
|
+
/** Class containing Metastore operations. */
|
|
24837
|
+
class MetastoreImpl {
|
|
24838
|
+
/**
|
|
24839
|
+
* Initialize a new instance of the class Metastore class.
|
|
24840
|
+
* @param client Reference to the service client
|
|
24841
|
+
*/
|
|
24842
|
+
constructor(client) {
|
|
24843
|
+
this.client = client;
|
|
24844
|
+
}
|
|
24845
|
+
/**
|
|
24846
|
+
* Register files in Syms
|
|
24847
|
+
* @param id The name of the database to be created. The name can contain only alphanumeric characters
|
|
24848
|
+
* and should not exceed 24 characters
|
|
24849
|
+
* @param registerBody The body for the register request
|
|
24850
|
+
* @param options The options parameters.
|
|
24851
|
+
*/
|
|
24852
|
+
async register(id, registerBody, options) {
|
|
24853
|
+
const { span } = createSpan("ArtifactsClient-register", options || {});
|
|
24854
|
+
try {
|
|
24855
|
+
const result = await this.client.sendOperationRequest({ id, registerBody, options }, registerOperationSpec);
|
|
24856
|
+
return result;
|
|
24857
|
+
}
|
|
24858
|
+
catch (error) {
|
|
24859
|
+
span.setStatus({
|
|
24860
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24861
|
+
message: error.message
|
|
24862
|
+
});
|
|
24863
|
+
throw error;
|
|
24864
|
+
}
|
|
24865
|
+
finally {
|
|
24866
|
+
span.end();
|
|
24867
|
+
}
|
|
24868
|
+
}
|
|
24869
|
+
/**
|
|
24870
|
+
* Gets status of the database
|
|
24871
|
+
* @param id
|
|
24872
|
+
* @param options The options parameters.
|
|
24873
|
+
*/
|
|
24874
|
+
async getDatabaseOperations(id, options) {
|
|
24875
|
+
const { span } = createSpan("ArtifactsClient-getDatabaseOperations", options || {});
|
|
24876
|
+
try {
|
|
24877
|
+
const result = await this.client.sendOperationRequest({ id, options }, getDatabaseOperationsOperationSpec);
|
|
24878
|
+
return result;
|
|
24879
|
+
}
|
|
24880
|
+
catch (error) {
|
|
24881
|
+
span.setStatus({
|
|
24882
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24883
|
+
message: error.message
|
|
24884
|
+
});
|
|
24885
|
+
throw error;
|
|
24886
|
+
}
|
|
24887
|
+
finally {
|
|
24888
|
+
span.end();
|
|
24889
|
+
}
|
|
24890
|
+
}
|
|
24891
|
+
/**
|
|
24892
|
+
* Update files in Syms
|
|
24893
|
+
* @param id The name of the database to be updated
|
|
24894
|
+
* @param updateBody The body for the update request
|
|
24895
|
+
* @param options The options parameters.
|
|
24896
|
+
*/
|
|
24897
|
+
async update(id, updateBody, options) {
|
|
24898
|
+
const { span } = createSpan("ArtifactsClient-update", options || {});
|
|
24899
|
+
try {
|
|
24900
|
+
const result = await this.client.sendOperationRequest({ id, updateBody, options }, updateOperationSpec);
|
|
24901
|
+
return result;
|
|
24902
|
+
}
|
|
24903
|
+
catch (error) {
|
|
24904
|
+
span.setStatus({
|
|
24905
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24906
|
+
message: error.message
|
|
24907
|
+
});
|
|
24908
|
+
throw error;
|
|
24909
|
+
}
|
|
24910
|
+
finally {
|
|
24911
|
+
span.end();
|
|
24912
|
+
}
|
|
24913
|
+
}
|
|
24914
|
+
/**
|
|
24915
|
+
* Remove files in Syms
|
|
24916
|
+
* @param id
|
|
24917
|
+
* @param options The options parameters.
|
|
24918
|
+
*/
|
|
24919
|
+
async delete(id, options) {
|
|
24920
|
+
const { span } = createSpan("ArtifactsClient-delete", options || {});
|
|
24921
|
+
try {
|
|
24922
|
+
const result = await this.client.sendOperationRequest({ id, options }, deleteOperationSpec$1);
|
|
24923
|
+
return result;
|
|
24924
|
+
}
|
|
24925
|
+
catch (error) {
|
|
24926
|
+
span.setStatus({
|
|
24927
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24928
|
+
message: error.message
|
|
24929
|
+
});
|
|
24930
|
+
throw error;
|
|
24931
|
+
}
|
|
24932
|
+
finally {
|
|
24933
|
+
span.end();
|
|
24934
|
+
}
|
|
24935
|
+
}
|
|
24936
|
+
}
|
|
24937
|
+
// Operation Specifications
|
|
24938
|
+
const serializer$j = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
24939
|
+
const registerOperationSpec = {
|
|
24940
|
+
path: "/metastore/create-database-operations/{id}",
|
|
24941
|
+
httpMethod: "PUT",
|
|
24942
|
+
responses: {
|
|
24943
|
+
201: {
|
|
24944
|
+
bodyMapper: MetastoreRegistrationResponse
|
|
24945
|
+
},
|
|
24946
|
+
default: {
|
|
24947
|
+
bodyMapper: ErrorContract
|
|
24948
|
+
}
|
|
24949
|
+
},
|
|
24950
|
+
requestBody: registerBody,
|
|
24951
|
+
queryParameters: [apiVersion1],
|
|
24952
|
+
urlParameters: [endpoint, id],
|
|
24953
|
+
headerParameters: [accept, contentType],
|
|
24954
|
+
mediaType: "json",
|
|
24955
|
+
serializer: serializer$j
|
|
24956
|
+
};
|
|
24957
|
+
const getDatabaseOperationsOperationSpec = {
|
|
24958
|
+
path: "/metastore/create-database-operations/{id}",
|
|
24959
|
+
httpMethod: "GET",
|
|
24960
|
+
responses: {
|
|
24961
|
+
200: {
|
|
24962
|
+
bodyMapper: MetastoreRequestSuccessResponse
|
|
24963
|
+
},
|
|
24964
|
+
default: {
|
|
24965
|
+
bodyMapper: ErrorContract
|
|
24966
|
+
}
|
|
24967
|
+
},
|
|
24968
|
+
queryParameters: [apiVersion1],
|
|
24969
|
+
urlParameters: [endpoint, id],
|
|
24970
|
+
headerParameters: [accept],
|
|
24971
|
+
serializer: serializer$j
|
|
24972
|
+
};
|
|
24973
|
+
const updateOperationSpec = {
|
|
24974
|
+
path: "/metastore/update-database-operations/{id}",
|
|
24975
|
+
httpMethod: "PUT",
|
|
24976
|
+
responses: {
|
|
24977
|
+
201: {
|
|
24978
|
+
bodyMapper: MetastoreUpdationResponse
|
|
24979
|
+
},
|
|
24980
|
+
default: {
|
|
24981
|
+
bodyMapper: ErrorContract
|
|
24982
|
+
}
|
|
24983
|
+
},
|
|
24984
|
+
requestBody: updateBody,
|
|
24985
|
+
queryParameters: [apiVersion1],
|
|
24986
|
+
urlParameters: [endpoint, id],
|
|
24987
|
+
headerParameters: [accept, contentType],
|
|
24988
|
+
mediaType: "json",
|
|
24989
|
+
serializer: serializer$j
|
|
24990
|
+
};
|
|
24991
|
+
const deleteOperationSpec$1 = {
|
|
24992
|
+
path: "/metastore/databases/{id}",
|
|
24993
|
+
httpMethod: "DELETE",
|
|
24994
|
+
responses: {
|
|
24995
|
+
204: {},
|
|
24996
|
+
default: {
|
|
24997
|
+
bodyMapper: ErrorContract
|
|
24998
|
+
}
|
|
24999
|
+
},
|
|
25000
|
+
queryParameters: [apiVersion1],
|
|
25001
|
+
urlParameters: [endpoint, id],
|
|
25002
|
+
headerParameters: [accept],
|
|
25003
|
+
serializer: serializer$j
|
|
23998
25004
|
};
|
|
23999
25005
|
|
|
24000
25006
|
/*
|
|
@@ -24074,7 +25080,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24074
25080
|
}
|
|
24075
25081
|
catch (error) {
|
|
24076
25082
|
span.setStatus({
|
|
24077
|
-
code:
|
|
25083
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24078
25084
|
message: error.message
|
|
24079
25085
|
});
|
|
24080
25086
|
throw error;
|
|
@@ -24098,7 +25104,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24098
25104
|
}
|
|
24099
25105
|
catch (error) {
|
|
24100
25106
|
span.setStatus({
|
|
24101
|
-
code:
|
|
25107
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24102
25108
|
message: error.message
|
|
24103
25109
|
});
|
|
24104
25110
|
throw error;
|
|
@@ -24155,7 +25161,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24155
25161
|
}
|
|
24156
25162
|
catch (error) {
|
|
24157
25163
|
span.setStatus({
|
|
24158
|
-
code:
|
|
25164
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24159
25165
|
message: error.message
|
|
24160
25166
|
});
|
|
24161
25167
|
throw error;
|
|
@@ -24178,7 +25184,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24178
25184
|
}
|
|
24179
25185
|
catch (error) {
|
|
24180
25186
|
span.setStatus({
|
|
24181
|
-
code:
|
|
25187
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24182
25188
|
message: error.message
|
|
24183
25189
|
});
|
|
24184
25190
|
throw error;
|
|
@@ -24236,7 +25242,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24236
25242
|
}
|
|
24237
25243
|
catch (error) {
|
|
24238
25244
|
span.setStatus({
|
|
24239
|
-
code:
|
|
25245
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24240
25246
|
message: error.message
|
|
24241
25247
|
});
|
|
24242
25248
|
throw error;
|
|
@@ -24294,7 +25300,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24294
25300
|
}
|
|
24295
25301
|
catch (error) {
|
|
24296
25302
|
span.setStatus({
|
|
24297
|
-
code:
|
|
25303
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24298
25304
|
message: error.message
|
|
24299
25305
|
});
|
|
24300
25306
|
throw error;
|
|
@@ -24305,7 +25311,7 @@ class SparkConfigurationOperationsImpl {
|
|
|
24305
25311
|
}
|
|
24306
25312
|
}
|
|
24307
25313
|
// Operation Specifications
|
|
24308
|
-
const serializer$
|
|
25314
|
+
const serializer$i = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
24309
25315
|
const getSparkConfigurationsByWorkspaceOperationSpec = {
|
|
24310
25316
|
path: "/sparkconfigurations",
|
|
24311
25317
|
httpMethod: "GET",
|
|
@@ -24317,10 +25323,10 @@ const getSparkConfigurationsByWorkspaceOperationSpec = {
|
|
|
24317
25323
|
bodyMapper: CloudError
|
|
24318
25324
|
}
|
|
24319
25325
|
},
|
|
24320
|
-
queryParameters: [
|
|
25326
|
+
queryParameters: [apiVersion2],
|
|
24321
25327
|
urlParameters: [endpoint],
|
|
24322
25328
|
headerParameters: [accept],
|
|
24323
|
-
serializer: serializer$
|
|
25329
|
+
serializer: serializer$i
|
|
24324
25330
|
};
|
|
24325
25331
|
const createOrUpdateSparkConfigurationOperationSpec = {
|
|
24326
25332
|
path: "/sparkconfigurations/{sparkConfigurationName}",
|
|
@@ -24343,7 +25349,7 @@ const createOrUpdateSparkConfigurationOperationSpec = {
|
|
|
24343
25349
|
}
|
|
24344
25350
|
},
|
|
24345
25351
|
requestBody: sparkConfiguration,
|
|
24346
|
-
queryParameters: [
|
|
25352
|
+
queryParameters: [apiVersion2],
|
|
24347
25353
|
urlParameters: [endpoint, sparkConfigurationName],
|
|
24348
25354
|
headerParameters: [
|
|
24349
25355
|
accept,
|
|
@@ -24351,7 +25357,7 @@ const createOrUpdateSparkConfigurationOperationSpec = {
|
|
|
24351
25357
|
ifMatch
|
|
24352
25358
|
],
|
|
24353
25359
|
mediaType: "json",
|
|
24354
|
-
serializer: serializer$
|
|
25360
|
+
serializer: serializer$i
|
|
24355
25361
|
};
|
|
24356
25362
|
const getSparkConfigurationOperationSpec = {
|
|
24357
25363
|
path: "/sparkconfigurations/{sparkConfigurationName}",
|
|
@@ -24365,10 +25371,10 @@ const getSparkConfigurationOperationSpec = {
|
|
|
24365
25371
|
bodyMapper: CloudError
|
|
24366
25372
|
}
|
|
24367
25373
|
},
|
|
24368
|
-
queryParameters: [
|
|
25374
|
+
queryParameters: [apiVersion2],
|
|
24369
25375
|
urlParameters: [endpoint, sparkConfigurationName],
|
|
24370
25376
|
headerParameters: [accept, ifNoneMatch],
|
|
24371
|
-
serializer: serializer$
|
|
25377
|
+
serializer: serializer$i
|
|
24372
25378
|
};
|
|
24373
25379
|
const deleteSparkConfigurationOperationSpec = {
|
|
24374
25380
|
path: "/sparkconfigurations/{sparkConfigurationName}",
|
|
@@ -24382,10 +25388,10 @@ const deleteSparkConfigurationOperationSpec = {
|
|
|
24382
25388
|
bodyMapper: CloudError
|
|
24383
25389
|
}
|
|
24384
25390
|
},
|
|
24385
|
-
queryParameters: [
|
|
25391
|
+
queryParameters: [apiVersion2],
|
|
24386
25392
|
urlParameters: [endpoint, sparkConfigurationName],
|
|
24387
25393
|
headerParameters: [accept],
|
|
24388
|
-
serializer: serializer$
|
|
25394
|
+
serializer: serializer$i
|
|
24389
25395
|
};
|
|
24390
25396
|
const renameSparkConfigurationOperationSpec = {
|
|
24391
25397
|
path: "/sparkconfigurations/{sparkConfigurationName}/rename",
|
|
@@ -24400,11 +25406,11 @@ const renameSparkConfigurationOperationSpec = {
|
|
|
24400
25406
|
}
|
|
24401
25407
|
},
|
|
24402
25408
|
requestBody: request,
|
|
24403
|
-
queryParameters: [
|
|
25409
|
+
queryParameters: [apiVersion2],
|
|
24404
25410
|
urlParameters: [endpoint, sparkConfigurationName],
|
|
24405
25411
|
headerParameters: [accept, contentType],
|
|
24406
25412
|
mediaType: "json",
|
|
24407
|
-
serializer: serializer$
|
|
25413
|
+
serializer: serializer$i
|
|
24408
25414
|
};
|
|
24409
25415
|
const getSparkConfigurationsByWorkspaceNextOperationSpec = {
|
|
24410
25416
|
path: "{nextLink}",
|
|
@@ -24417,10 +25423,10 @@ const getSparkConfigurationsByWorkspaceNextOperationSpec = {
|
|
|
24417
25423
|
bodyMapper: CloudError
|
|
24418
25424
|
}
|
|
24419
25425
|
},
|
|
24420
|
-
queryParameters: [
|
|
25426
|
+
queryParameters: [apiVersion2],
|
|
24421
25427
|
urlParameters: [endpoint, nextLink],
|
|
24422
25428
|
headerParameters: [accept],
|
|
24423
|
-
serializer: serializer$
|
|
25429
|
+
serializer: serializer$i
|
|
24424
25430
|
};
|
|
24425
25431
|
|
|
24426
25432
|
/*
|
|
@@ -24446,12 +25452,12 @@ class BigDataPoolsImpl {
|
|
|
24446
25452
|
async list(options) {
|
|
24447
25453
|
const { span } = createSpan("ArtifactsClient-list", options || {});
|
|
24448
25454
|
try {
|
|
24449
|
-
const result = await this.client.sendOperationRequest({ options }, listOperationSpec);
|
|
25455
|
+
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$3);
|
|
24450
25456
|
return result;
|
|
24451
25457
|
}
|
|
24452
25458
|
catch (error) {
|
|
24453
25459
|
span.setStatus({
|
|
24454
|
-
code:
|
|
25460
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24455
25461
|
message: error.message
|
|
24456
25462
|
});
|
|
24457
25463
|
throw error;
|
|
@@ -24468,12 +25474,12 @@ class BigDataPoolsImpl {
|
|
|
24468
25474
|
async get(bigDataPoolName, options) {
|
|
24469
25475
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
24470
25476
|
try {
|
|
24471
|
-
const result = await this.client.sendOperationRequest({ bigDataPoolName, options }, getOperationSpec);
|
|
25477
|
+
const result = await this.client.sendOperationRequest({ bigDataPoolName, options }, getOperationSpec$5);
|
|
24472
25478
|
return result;
|
|
24473
25479
|
}
|
|
24474
25480
|
catch (error) {
|
|
24475
25481
|
span.setStatus({
|
|
24476
|
-
code:
|
|
25482
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24477
25483
|
message: error.message
|
|
24478
25484
|
});
|
|
24479
25485
|
throw error;
|
|
@@ -24484,8 +25490,8 @@ class BigDataPoolsImpl {
|
|
|
24484
25490
|
}
|
|
24485
25491
|
}
|
|
24486
25492
|
// Operation Specifications
|
|
24487
|
-
const serializer$
|
|
24488
|
-
const listOperationSpec = {
|
|
25493
|
+
const serializer$h = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
25494
|
+
const listOperationSpec$3 = {
|
|
24489
25495
|
path: "/bigDataPools",
|
|
24490
25496
|
httpMethod: "GET",
|
|
24491
25497
|
responses: {
|
|
@@ -24496,12 +25502,12 @@ const listOperationSpec = {
|
|
|
24496
25502
|
bodyMapper: ErrorContract
|
|
24497
25503
|
}
|
|
24498
25504
|
},
|
|
24499
|
-
queryParameters: [
|
|
25505
|
+
queryParameters: [apiVersion3],
|
|
24500
25506
|
urlParameters: [endpoint],
|
|
24501
25507
|
headerParameters: [accept],
|
|
24502
|
-
serializer: serializer$
|
|
25508
|
+
serializer: serializer$h
|
|
24503
25509
|
};
|
|
24504
|
-
const getOperationSpec = {
|
|
25510
|
+
const getOperationSpec$5 = {
|
|
24505
25511
|
path: "/bigDataPools/{bigDataPoolName}",
|
|
24506
25512
|
httpMethod: "GET",
|
|
24507
25513
|
responses: {
|
|
@@ -24512,10 +25518,10 @@ const getOperationSpec = {
|
|
|
24512
25518
|
bodyMapper: ErrorContract
|
|
24513
25519
|
}
|
|
24514
25520
|
},
|
|
24515
|
-
queryParameters: [
|
|
25521
|
+
queryParameters: [apiVersion3],
|
|
24516
25522
|
urlParameters: [endpoint, bigDataPoolName],
|
|
24517
25523
|
headerParameters: [accept],
|
|
24518
|
-
serializer: serializer$
|
|
25524
|
+
serializer: serializer$h
|
|
24519
25525
|
};
|
|
24520
25526
|
|
|
24521
25527
|
/*
|
|
@@ -24598,7 +25604,7 @@ class DataFlowOperationsImpl {
|
|
|
24598
25604
|
}
|
|
24599
25605
|
catch (error) {
|
|
24600
25606
|
span.setStatus({
|
|
24601
|
-
code:
|
|
25607
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24602
25608
|
message: error.message
|
|
24603
25609
|
});
|
|
24604
25610
|
throw error;
|
|
@@ -24655,7 +25661,7 @@ class DataFlowOperationsImpl {
|
|
|
24655
25661
|
}
|
|
24656
25662
|
catch (error) {
|
|
24657
25663
|
span.setStatus({
|
|
24658
|
-
code:
|
|
25664
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24659
25665
|
message: error.message
|
|
24660
25666
|
});
|
|
24661
25667
|
throw error;
|
|
@@ -24678,7 +25684,7 @@ class DataFlowOperationsImpl {
|
|
|
24678
25684
|
}
|
|
24679
25685
|
catch (error) {
|
|
24680
25686
|
span.setStatus({
|
|
24681
|
-
code:
|
|
25687
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24682
25688
|
message: error.message
|
|
24683
25689
|
});
|
|
24684
25690
|
throw error;
|
|
@@ -24736,7 +25742,7 @@ class DataFlowOperationsImpl {
|
|
|
24736
25742
|
}
|
|
24737
25743
|
catch (error) {
|
|
24738
25744
|
span.setStatus({
|
|
24739
|
-
code:
|
|
25745
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24740
25746
|
message: error.message
|
|
24741
25747
|
});
|
|
24742
25748
|
throw error;
|
|
@@ -24792,7 +25798,7 @@ class DataFlowOperationsImpl {
|
|
|
24792
25798
|
}
|
|
24793
25799
|
catch (error) {
|
|
24794
25800
|
span.setStatus({
|
|
24795
|
-
code:
|
|
25801
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24796
25802
|
message: error.message
|
|
24797
25803
|
});
|
|
24798
25804
|
throw error;
|
|
@@ -24815,7 +25821,7 @@ class DataFlowOperationsImpl {
|
|
|
24815
25821
|
}
|
|
24816
25822
|
catch (error) {
|
|
24817
25823
|
span.setStatus({
|
|
24818
|
-
code:
|
|
25824
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
24819
25825
|
message: error.message
|
|
24820
25826
|
});
|
|
24821
25827
|
throw error;
|
|
@@ -24826,7 +25832,7 @@ class DataFlowOperationsImpl {
|
|
|
24826
25832
|
}
|
|
24827
25833
|
}
|
|
24828
25834
|
// Operation Specifications
|
|
24829
|
-
const serializer$
|
|
25835
|
+
const serializer$g = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
24830
25836
|
const createOrUpdateDataFlowOperationSpec = {
|
|
24831
25837
|
path: "/dataflows/{dataFlowName}",
|
|
24832
25838
|
httpMethod: "PUT",
|
|
@@ -24848,7 +25854,7 @@ const createOrUpdateDataFlowOperationSpec = {
|
|
|
24848
25854
|
}
|
|
24849
25855
|
},
|
|
24850
25856
|
requestBody: dataFlow,
|
|
24851
|
-
queryParameters: [
|
|
25857
|
+
queryParameters: [apiVersion3],
|
|
24852
25858
|
urlParameters: [endpoint, dataFlowName],
|
|
24853
25859
|
headerParameters: [
|
|
24854
25860
|
accept,
|
|
@@ -24856,7 +25862,7 @@ const createOrUpdateDataFlowOperationSpec = {
|
|
|
24856
25862
|
ifMatch
|
|
24857
25863
|
],
|
|
24858
25864
|
mediaType: "json",
|
|
24859
|
-
serializer: serializer$
|
|
25865
|
+
serializer: serializer$g
|
|
24860
25866
|
};
|
|
24861
25867
|
const getDataFlowOperationSpec = {
|
|
24862
25868
|
path: "/dataflows/{dataFlowName}",
|
|
@@ -24869,10 +25875,10 @@ const getDataFlowOperationSpec = {
|
|
|
24869
25875
|
bodyMapper: CloudErrorAutoGenerated
|
|
24870
25876
|
}
|
|
24871
25877
|
},
|
|
24872
|
-
queryParameters: [
|
|
25878
|
+
queryParameters: [apiVersion3],
|
|
24873
25879
|
urlParameters: [endpoint, dataFlowName],
|
|
24874
25880
|
headerParameters: [accept, ifNoneMatch],
|
|
24875
|
-
serializer: serializer$
|
|
25881
|
+
serializer: serializer$g
|
|
24876
25882
|
};
|
|
24877
25883
|
const deleteDataFlowOperationSpec = {
|
|
24878
25884
|
path: "/dataflows/{dataFlowName}",
|
|
@@ -24886,10 +25892,10 @@ const deleteDataFlowOperationSpec = {
|
|
|
24886
25892
|
bodyMapper: CloudErrorAutoGenerated
|
|
24887
25893
|
}
|
|
24888
25894
|
},
|
|
24889
|
-
queryParameters: [
|
|
25895
|
+
queryParameters: [apiVersion3],
|
|
24890
25896
|
urlParameters: [endpoint, dataFlowName],
|
|
24891
25897
|
headerParameters: [accept],
|
|
24892
|
-
serializer: serializer$
|
|
25898
|
+
serializer: serializer$g
|
|
24893
25899
|
};
|
|
24894
25900
|
const renameDataFlowOperationSpec = {
|
|
24895
25901
|
path: "/dataflows/{dataFlowName}/rename",
|
|
@@ -24904,11 +25910,11 @@ const renameDataFlowOperationSpec = {
|
|
|
24904
25910
|
}
|
|
24905
25911
|
},
|
|
24906
25912
|
requestBody: request,
|
|
24907
|
-
queryParameters: [
|
|
25913
|
+
queryParameters: [apiVersion3],
|
|
24908
25914
|
urlParameters: [endpoint, dataFlowName],
|
|
24909
25915
|
headerParameters: [accept, contentType],
|
|
24910
25916
|
mediaType: "json",
|
|
24911
|
-
serializer: serializer$
|
|
25917
|
+
serializer: serializer$g
|
|
24912
25918
|
};
|
|
24913
25919
|
const getDataFlowsByWorkspaceOperationSpec = {
|
|
24914
25920
|
path: "/dataflows",
|
|
@@ -24921,10 +25927,10 @@ const getDataFlowsByWorkspaceOperationSpec = {
|
|
|
24921
25927
|
bodyMapper: CloudErrorAutoGenerated
|
|
24922
25928
|
}
|
|
24923
25929
|
},
|
|
24924
|
-
queryParameters: [
|
|
25930
|
+
queryParameters: [apiVersion3],
|
|
24925
25931
|
urlParameters: [endpoint],
|
|
24926
25932
|
headerParameters: [accept],
|
|
24927
|
-
serializer: serializer$
|
|
25933
|
+
serializer: serializer$g
|
|
24928
25934
|
};
|
|
24929
25935
|
const getDataFlowsByWorkspaceNextOperationSpec = {
|
|
24930
25936
|
path: "{nextLink}",
|
|
@@ -24937,10 +25943,10 @@ const getDataFlowsByWorkspaceNextOperationSpec = {
|
|
|
24937
25943
|
bodyMapper: CloudErrorAutoGenerated
|
|
24938
25944
|
}
|
|
24939
25945
|
},
|
|
24940
|
-
queryParameters: [
|
|
25946
|
+
queryParameters: [apiVersion3],
|
|
24941
25947
|
urlParameters: [endpoint, nextLink],
|
|
24942
25948
|
headerParameters: [accept],
|
|
24943
|
-
serializer: serializer$
|
|
25949
|
+
serializer: serializer$g
|
|
24944
25950
|
};
|
|
24945
25951
|
|
|
24946
25952
|
/*
|
|
@@ -25022,7 +26028,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25022
26028
|
}
|
|
25023
26029
|
catch (error) {
|
|
25024
26030
|
span.setStatus({
|
|
25025
|
-
code:
|
|
26031
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25026
26032
|
message: error.message
|
|
25027
26033
|
});
|
|
25028
26034
|
throw error;
|
|
@@ -25077,7 +26083,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25077
26083
|
}
|
|
25078
26084
|
catch (error) {
|
|
25079
26085
|
span.setStatus({
|
|
25080
|
-
code:
|
|
26086
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25081
26087
|
message: error.message
|
|
25082
26088
|
});
|
|
25083
26089
|
throw error;
|
|
@@ -25099,7 +26105,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25099
26105
|
}
|
|
25100
26106
|
catch (error) {
|
|
25101
26107
|
span.setStatus({
|
|
25102
|
-
code:
|
|
26108
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25103
26109
|
message: error.message
|
|
25104
26110
|
});
|
|
25105
26111
|
throw error;
|
|
@@ -25121,7 +26127,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25121
26127
|
}
|
|
25122
26128
|
catch (error) {
|
|
25123
26129
|
span.setStatus({
|
|
25124
|
-
code:
|
|
26130
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25125
26131
|
message: error.message
|
|
25126
26132
|
});
|
|
25127
26133
|
throw error;
|
|
@@ -25144,7 +26150,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25144
26150
|
}
|
|
25145
26151
|
catch (error) {
|
|
25146
26152
|
span.setStatus({
|
|
25147
|
-
code:
|
|
26153
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25148
26154
|
message: error.message
|
|
25149
26155
|
});
|
|
25150
26156
|
throw error;
|
|
@@ -25201,7 +26207,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25201
26207
|
}
|
|
25202
26208
|
catch (error) {
|
|
25203
26209
|
span.setStatus({
|
|
25204
|
-
code:
|
|
26210
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25205
26211
|
message: error.message
|
|
25206
26212
|
});
|
|
25207
26213
|
throw error;
|
|
@@ -25212,7 +26218,7 @@ class DataFlowDebugSessionImpl {
|
|
|
25212
26218
|
}
|
|
25213
26219
|
}
|
|
25214
26220
|
// Operation Specifications
|
|
25215
|
-
const serializer$
|
|
26221
|
+
const serializer$f = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
25216
26222
|
const createDataFlowDebugSessionOperationSpec = {
|
|
25217
26223
|
path: "/createDataFlowDebugSession",
|
|
25218
26224
|
httpMethod: "POST",
|
|
@@ -25234,11 +26240,11 @@ const createDataFlowDebugSessionOperationSpec = {
|
|
|
25234
26240
|
}
|
|
25235
26241
|
},
|
|
25236
26242
|
requestBody: request1,
|
|
25237
|
-
queryParameters: [
|
|
26243
|
+
queryParameters: [apiVersion3],
|
|
25238
26244
|
urlParameters: [endpoint],
|
|
25239
26245
|
headerParameters: [accept, contentType],
|
|
25240
26246
|
mediaType: "json",
|
|
25241
|
-
serializer: serializer$
|
|
26247
|
+
serializer: serializer$f
|
|
25242
26248
|
};
|
|
25243
26249
|
const queryDataFlowDebugSessionsByWorkspaceOperationSpec = {
|
|
25244
26250
|
path: "/queryDataFlowDebugSessions",
|
|
@@ -25251,10 +26257,10 @@ const queryDataFlowDebugSessionsByWorkspaceOperationSpec = {
|
|
|
25251
26257
|
bodyMapper: CloudErrorAutoGenerated
|
|
25252
26258
|
}
|
|
25253
26259
|
},
|
|
25254
|
-
queryParameters: [
|
|
26260
|
+
queryParameters: [apiVersion3],
|
|
25255
26261
|
urlParameters: [endpoint],
|
|
25256
26262
|
headerParameters: [accept],
|
|
25257
|
-
serializer: serializer$
|
|
26263
|
+
serializer: serializer$f
|
|
25258
26264
|
};
|
|
25259
26265
|
const addDataFlowOperationSpec = {
|
|
25260
26266
|
path: "/addDataFlowToDebugSession",
|
|
@@ -25268,11 +26274,11 @@ const addDataFlowOperationSpec = {
|
|
|
25268
26274
|
}
|
|
25269
26275
|
},
|
|
25270
26276
|
requestBody: request2,
|
|
25271
|
-
queryParameters: [
|
|
26277
|
+
queryParameters: [apiVersion3],
|
|
25272
26278
|
urlParameters: [endpoint],
|
|
25273
26279
|
headerParameters: [accept, contentType],
|
|
25274
26280
|
mediaType: "json",
|
|
25275
|
-
serializer: serializer$
|
|
26281
|
+
serializer: serializer$f
|
|
25276
26282
|
};
|
|
25277
26283
|
const deleteDataFlowDebugSessionOperationSpec = {
|
|
25278
26284
|
path: "/deleteDataFlowDebugSession",
|
|
@@ -25284,11 +26290,11 @@ const deleteDataFlowDebugSessionOperationSpec = {
|
|
|
25284
26290
|
}
|
|
25285
26291
|
},
|
|
25286
26292
|
requestBody: request3,
|
|
25287
|
-
queryParameters: [
|
|
26293
|
+
queryParameters: [apiVersion3],
|
|
25288
26294
|
urlParameters: [endpoint],
|
|
25289
26295
|
headerParameters: [accept, contentType],
|
|
25290
26296
|
mediaType: "json",
|
|
25291
|
-
serializer: serializer$
|
|
26297
|
+
serializer: serializer$f
|
|
25292
26298
|
};
|
|
25293
26299
|
const executeCommandOperationSpec = {
|
|
25294
26300
|
path: "/executeDataFlowDebugCommand",
|
|
@@ -25311,11 +26317,11 @@ const executeCommandOperationSpec = {
|
|
|
25311
26317
|
}
|
|
25312
26318
|
},
|
|
25313
26319
|
requestBody: request4,
|
|
25314
|
-
queryParameters: [
|
|
26320
|
+
queryParameters: [apiVersion3],
|
|
25315
26321
|
urlParameters: [endpoint],
|
|
25316
26322
|
headerParameters: [accept, contentType],
|
|
25317
26323
|
mediaType: "json",
|
|
25318
|
-
serializer: serializer$
|
|
26324
|
+
serializer: serializer$f
|
|
25319
26325
|
};
|
|
25320
26326
|
const queryDataFlowDebugSessionsByWorkspaceNextOperationSpec = {
|
|
25321
26327
|
path: "{nextLink}",
|
|
@@ -25328,10 +26334,10 @@ const queryDataFlowDebugSessionsByWorkspaceNextOperationSpec = {
|
|
|
25328
26334
|
bodyMapper: CloudErrorAutoGenerated
|
|
25329
26335
|
}
|
|
25330
26336
|
},
|
|
25331
|
-
queryParameters: [
|
|
26337
|
+
queryParameters: [apiVersion3],
|
|
25332
26338
|
urlParameters: [endpoint, nextLink],
|
|
25333
26339
|
headerParameters: [accept],
|
|
25334
|
-
serializer: serializer$
|
|
26340
|
+
serializer: serializer$f
|
|
25335
26341
|
};
|
|
25336
26342
|
|
|
25337
26343
|
/*
|
|
@@ -25411,7 +26417,7 @@ class DatasetOperationsImpl {
|
|
|
25411
26417
|
}
|
|
25412
26418
|
catch (error) {
|
|
25413
26419
|
span.setStatus({
|
|
25414
|
-
code:
|
|
26420
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25415
26421
|
message: error.message
|
|
25416
26422
|
});
|
|
25417
26423
|
throw error;
|
|
@@ -25435,7 +26441,7 @@ class DatasetOperationsImpl {
|
|
|
25435
26441
|
}
|
|
25436
26442
|
catch (error) {
|
|
25437
26443
|
span.setStatus({
|
|
25438
|
-
code:
|
|
26444
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25439
26445
|
message: error.message
|
|
25440
26446
|
});
|
|
25441
26447
|
throw error;
|
|
@@ -25492,7 +26498,7 @@ class DatasetOperationsImpl {
|
|
|
25492
26498
|
}
|
|
25493
26499
|
catch (error) {
|
|
25494
26500
|
span.setStatus({
|
|
25495
|
-
code:
|
|
26501
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25496
26502
|
message: error.message
|
|
25497
26503
|
});
|
|
25498
26504
|
throw error;
|
|
@@ -25515,7 +26521,7 @@ class DatasetOperationsImpl {
|
|
|
25515
26521
|
}
|
|
25516
26522
|
catch (error) {
|
|
25517
26523
|
span.setStatus({
|
|
25518
|
-
code:
|
|
26524
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25519
26525
|
message: error.message
|
|
25520
26526
|
});
|
|
25521
26527
|
throw error;
|
|
@@ -25573,7 +26579,7 @@ class DatasetOperationsImpl {
|
|
|
25573
26579
|
}
|
|
25574
26580
|
catch (error) {
|
|
25575
26581
|
span.setStatus({
|
|
25576
|
-
code:
|
|
26582
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25577
26583
|
message: error.message
|
|
25578
26584
|
});
|
|
25579
26585
|
throw error;
|
|
@@ -25630,7 +26636,7 @@ class DatasetOperationsImpl {
|
|
|
25630
26636
|
}
|
|
25631
26637
|
catch (error) {
|
|
25632
26638
|
span.setStatus({
|
|
25633
|
-
code:
|
|
26639
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25634
26640
|
message: error.message
|
|
25635
26641
|
});
|
|
25636
26642
|
throw error;
|
|
@@ -25641,7 +26647,7 @@ class DatasetOperationsImpl {
|
|
|
25641
26647
|
}
|
|
25642
26648
|
}
|
|
25643
26649
|
// Operation Specifications
|
|
25644
|
-
const serializer$
|
|
26650
|
+
const serializer$e = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
25645
26651
|
const getDatasetsByWorkspaceOperationSpec = {
|
|
25646
26652
|
path: "/datasets",
|
|
25647
26653
|
httpMethod: "GET",
|
|
@@ -25653,10 +26659,10 @@ const getDatasetsByWorkspaceOperationSpec = {
|
|
|
25653
26659
|
bodyMapper: CloudErrorAutoGenerated
|
|
25654
26660
|
}
|
|
25655
26661
|
},
|
|
25656
|
-
queryParameters: [
|
|
26662
|
+
queryParameters: [apiVersion3],
|
|
25657
26663
|
urlParameters: [endpoint],
|
|
25658
26664
|
headerParameters: [accept],
|
|
25659
|
-
serializer: serializer$
|
|
26665
|
+
serializer: serializer$e
|
|
25660
26666
|
};
|
|
25661
26667
|
const createOrUpdateDatasetOperationSpec = {
|
|
25662
26668
|
path: "/datasets/{datasetName}",
|
|
@@ -25679,7 +26685,7 @@ const createOrUpdateDatasetOperationSpec = {
|
|
|
25679
26685
|
}
|
|
25680
26686
|
},
|
|
25681
26687
|
requestBody: dataset,
|
|
25682
|
-
queryParameters: [
|
|
26688
|
+
queryParameters: [apiVersion3],
|
|
25683
26689
|
urlParameters: [endpoint, datasetName],
|
|
25684
26690
|
headerParameters: [
|
|
25685
26691
|
accept,
|
|
@@ -25687,7 +26693,7 @@ const createOrUpdateDatasetOperationSpec = {
|
|
|
25687
26693
|
ifMatch
|
|
25688
26694
|
],
|
|
25689
26695
|
mediaType: "json",
|
|
25690
|
-
serializer: serializer$
|
|
26696
|
+
serializer: serializer$e
|
|
25691
26697
|
};
|
|
25692
26698
|
const getDatasetOperationSpec = {
|
|
25693
26699
|
path: "/datasets/{datasetName}",
|
|
@@ -25701,10 +26707,10 @@ const getDatasetOperationSpec = {
|
|
|
25701
26707
|
bodyMapper: CloudErrorAutoGenerated
|
|
25702
26708
|
}
|
|
25703
26709
|
},
|
|
25704
|
-
queryParameters: [
|
|
26710
|
+
queryParameters: [apiVersion3],
|
|
25705
26711
|
urlParameters: [endpoint, datasetName],
|
|
25706
26712
|
headerParameters: [accept, ifNoneMatch],
|
|
25707
|
-
serializer: serializer$
|
|
26713
|
+
serializer: serializer$e
|
|
25708
26714
|
};
|
|
25709
26715
|
const deleteDatasetOperationSpec = {
|
|
25710
26716
|
path: "/datasets/{datasetName}",
|
|
@@ -25718,10 +26724,10 @@ const deleteDatasetOperationSpec = {
|
|
|
25718
26724
|
bodyMapper: CloudErrorAutoGenerated
|
|
25719
26725
|
}
|
|
25720
26726
|
},
|
|
25721
|
-
queryParameters: [
|
|
26727
|
+
queryParameters: [apiVersion3],
|
|
25722
26728
|
urlParameters: [endpoint, datasetName],
|
|
25723
26729
|
headerParameters: [accept],
|
|
25724
|
-
serializer: serializer$
|
|
26730
|
+
serializer: serializer$e
|
|
25725
26731
|
};
|
|
25726
26732
|
const renameDatasetOperationSpec = {
|
|
25727
26733
|
path: "/datasets/{datasetName}/rename",
|
|
@@ -25736,11 +26742,11 @@ const renameDatasetOperationSpec = {
|
|
|
25736
26742
|
}
|
|
25737
26743
|
},
|
|
25738
26744
|
requestBody: request,
|
|
25739
|
-
queryParameters: [
|
|
26745
|
+
queryParameters: [apiVersion3],
|
|
25740
26746
|
urlParameters: [endpoint, datasetName],
|
|
25741
26747
|
headerParameters: [accept, contentType],
|
|
25742
26748
|
mediaType: "json",
|
|
25743
|
-
serializer: serializer$
|
|
26749
|
+
serializer: serializer$e
|
|
25744
26750
|
};
|
|
25745
26751
|
const getDatasetsByWorkspaceNextOperationSpec = {
|
|
25746
26752
|
path: "{nextLink}",
|
|
@@ -25753,10 +26759,10 @@ const getDatasetsByWorkspaceNextOperationSpec = {
|
|
|
25753
26759
|
bodyMapper: CloudErrorAutoGenerated
|
|
25754
26760
|
}
|
|
25755
26761
|
},
|
|
25756
|
-
queryParameters: [
|
|
26762
|
+
queryParameters: [apiVersion3],
|
|
25757
26763
|
urlParameters: [endpoint, nextLink],
|
|
25758
26764
|
headerParameters: [accept],
|
|
25759
|
-
serializer: serializer$
|
|
26765
|
+
serializer: serializer$e
|
|
25760
26766
|
};
|
|
25761
26767
|
|
|
25762
26768
|
/*
|
|
@@ -25788,7 +26794,7 @@ class WorkspaceGitRepoManagementImpl {
|
|
|
25788
26794
|
}
|
|
25789
26795
|
catch (error) {
|
|
25790
26796
|
span.setStatus({
|
|
25791
|
-
code:
|
|
26797
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25792
26798
|
message: error.message
|
|
25793
26799
|
});
|
|
25794
26800
|
throw error;
|
|
@@ -25799,7 +26805,7 @@ class WorkspaceGitRepoManagementImpl {
|
|
|
25799
26805
|
}
|
|
25800
26806
|
}
|
|
25801
26807
|
// Operation Specifications
|
|
25802
|
-
const serializer$
|
|
26808
|
+
const serializer$d = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
25803
26809
|
const getGitHubAccessTokenOperationSpec = {
|
|
25804
26810
|
path: "/getGitHubAccessToken",
|
|
25805
26811
|
httpMethod: "POST",
|
|
@@ -25809,7 +26815,7 @@ const getGitHubAccessTokenOperationSpec = {
|
|
|
25809
26815
|
}
|
|
25810
26816
|
},
|
|
25811
26817
|
requestBody: gitHubAccessTokenRequest,
|
|
25812
|
-
queryParameters: [
|
|
26818
|
+
queryParameters: [apiVersion3],
|
|
25813
26819
|
urlParameters: [endpoint],
|
|
25814
26820
|
headerParameters: [
|
|
25815
26821
|
accept,
|
|
@@ -25817,7 +26823,7 @@ const getGitHubAccessTokenOperationSpec = {
|
|
|
25817
26823
|
clientRequestId
|
|
25818
26824
|
],
|
|
25819
26825
|
mediaType: "json",
|
|
25820
|
-
serializer: serializer$
|
|
26826
|
+
serializer: serializer$d
|
|
25821
26827
|
};
|
|
25822
26828
|
|
|
25823
26829
|
/*
|
|
@@ -25843,12 +26849,12 @@ class IntegrationRuntimesImpl {
|
|
|
25843
26849
|
async list(options) {
|
|
25844
26850
|
const { span } = createSpan("ArtifactsClient-list", options || {});
|
|
25845
26851
|
try {
|
|
25846
|
-
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$
|
|
26852
|
+
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$2);
|
|
25847
26853
|
return result;
|
|
25848
26854
|
}
|
|
25849
26855
|
catch (error) {
|
|
25850
26856
|
span.setStatus({
|
|
25851
|
-
code:
|
|
26857
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25852
26858
|
message: error.message
|
|
25853
26859
|
});
|
|
25854
26860
|
throw error;
|
|
@@ -25865,12 +26871,12 @@ class IntegrationRuntimesImpl {
|
|
|
25865
26871
|
async get(integrationRuntimeName, options) {
|
|
25866
26872
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
25867
26873
|
try {
|
|
25868
|
-
const result = await this.client.sendOperationRequest({ integrationRuntimeName, options }, getOperationSpec$
|
|
26874
|
+
const result = await this.client.sendOperationRequest({ integrationRuntimeName, options }, getOperationSpec$4);
|
|
25869
26875
|
return result;
|
|
25870
26876
|
}
|
|
25871
26877
|
catch (error) {
|
|
25872
26878
|
span.setStatus({
|
|
25873
|
-
code:
|
|
26879
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25874
26880
|
message: error.message
|
|
25875
26881
|
});
|
|
25876
26882
|
throw error;
|
|
@@ -25881,8 +26887,8 @@ class IntegrationRuntimesImpl {
|
|
|
25881
26887
|
}
|
|
25882
26888
|
}
|
|
25883
26889
|
// Operation Specifications
|
|
25884
|
-
const serializer$
|
|
25885
|
-
const listOperationSpec$
|
|
26890
|
+
const serializer$c = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
26891
|
+
const listOperationSpec$2 = {
|
|
25886
26892
|
path: "/integrationRuntimes",
|
|
25887
26893
|
httpMethod: "GET",
|
|
25888
26894
|
responses: {
|
|
@@ -25893,12 +26899,12 @@ const listOperationSpec$1 = {
|
|
|
25893
26899
|
bodyMapper: ErrorContract
|
|
25894
26900
|
}
|
|
25895
26901
|
},
|
|
25896
|
-
queryParameters: [
|
|
26902
|
+
queryParameters: [apiVersion3],
|
|
25897
26903
|
urlParameters: [endpoint],
|
|
25898
26904
|
headerParameters: [accept],
|
|
25899
|
-
serializer: serializer$
|
|
26905
|
+
serializer: serializer$c
|
|
25900
26906
|
};
|
|
25901
|
-
const getOperationSpec$
|
|
26907
|
+
const getOperationSpec$4 = {
|
|
25902
26908
|
path: "/integrationRuntimes/{integrationRuntimeName}",
|
|
25903
26909
|
httpMethod: "GET",
|
|
25904
26910
|
responses: {
|
|
@@ -25909,10 +26915,10 @@ const getOperationSpec$1 = {
|
|
|
25909
26915
|
bodyMapper: ErrorContract
|
|
25910
26916
|
}
|
|
25911
26917
|
},
|
|
25912
|
-
queryParameters: [
|
|
26918
|
+
queryParameters: [apiVersion3],
|
|
25913
26919
|
urlParameters: [endpoint, integrationRuntimeName],
|
|
25914
26920
|
headerParameters: [accept],
|
|
25915
|
-
serializer: serializer$
|
|
26921
|
+
serializer: serializer$c
|
|
25916
26922
|
};
|
|
25917
26923
|
|
|
25918
26924
|
/*
|
|
@@ -25987,12 +26993,12 @@ class LibraryImpl {
|
|
|
25987
26993
|
async _list(options) {
|
|
25988
26994
|
const { span } = createSpan("ArtifactsClient-_list", options || {});
|
|
25989
26995
|
try {
|
|
25990
|
-
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$
|
|
26996
|
+
const result = await this.client.sendOperationRequest({ options }, listOperationSpec$1);
|
|
25991
26997
|
return result;
|
|
25992
26998
|
}
|
|
25993
26999
|
catch (error) {
|
|
25994
27000
|
span.setStatus({
|
|
25995
|
-
code:
|
|
27001
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
25996
27002
|
message: error.message
|
|
25997
27003
|
});
|
|
25998
27004
|
throw error;
|
|
@@ -26016,7 +27022,7 @@ class LibraryImpl {
|
|
|
26016
27022
|
}
|
|
26017
27023
|
catch (error) {
|
|
26018
27024
|
span.setStatus({
|
|
26019
|
-
code:
|
|
27025
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26020
27026
|
message: error.message
|
|
26021
27027
|
});
|
|
26022
27028
|
throw error;
|
|
@@ -26073,7 +27079,7 @@ class LibraryImpl {
|
|
|
26073
27079
|
}
|
|
26074
27080
|
catch (error) {
|
|
26075
27081
|
span.setStatus({
|
|
26076
|
-
code:
|
|
27082
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26077
27083
|
message: error.message
|
|
26078
27084
|
});
|
|
26079
27085
|
throw error;
|
|
@@ -26097,7 +27103,7 @@ class LibraryImpl {
|
|
|
26097
27103
|
}
|
|
26098
27104
|
catch (error) {
|
|
26099
27105
|
span.setStatus({
|
|
26100
|
-
code:
|
|
27106
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26101
27107
|
message: error.message
|
|
26102
27108
|
});
|
|
26103
27109
|
throw error;
|
|
@@ -26150,12 +27156,12 @@ class LibraryImpl {
|
|
|
26150
27156
|
async get(libraryName, options) {
|
|
26151
27157
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
26152
27158
|
try {
|
|
26153
|
-
const result = await this.client.sendOperationRequest({ libraryName, options }, getOperationSpec$
|
|
27159
|
+
const result = await this.client.sendOperationRequest({ libraryName, options }, getOperationSpec$3);
|
|
26154
27160
|
return result;
|
|
26155
27161
|
}
|
|
26156
27162
|
catch (error) {
|
|
26157
27163
|
span.setStatus({
|
|
26158
|
-
code:
|
|
27164
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26159
27165
|
message: error.message
|
|
26160
27166
|
});
|
|
26161
27167
|
throw error;
|
|
@@ -26179,7 +27185,7 @@ class LibraryImpl {
|
|
|
26179
27185
|
}
|
|
26180
27186
|
catch (error) {
|
|
26181
27187
|
span.setStatus({
|
|
26182
|
-
code:
|
|
27188
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26183
27189
|
message: error.message
|
|
26184
27190
|
});
|
|
26185
27191
|
throw error;
|
|
@@ -26239,7 +27245,7 @@ class LibraryImpl {
|
|
|
26239
27245
|
}
|
|
26240
27246
|
catch (error) {
|
|
26241
27247
|
span.setStatus({
|
|
26242
|
-
code:
|
|
27248
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26243
27249
|
message: error.message
|
|
26244
27250
|
});
|
|
26245
27251
|
throw error;
|
|
@@ -26261,7 +27267,7 @@ class LibraryImpl {
|
|
|
26261
27267
|
}
|
|
26262
27268
|
catch (error) {
|
|
26263
27269
|
span.setStatus({
|
|
26264
|
-
code:
|
|
27270
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26265
27271
|
message: error.message
|
|
26266
27272
|
});
|
|
26267
27273
|
throw error;
|
|
@@ -26272,8 +27278,8 @@ class LibraryImpl {
|
|
|
26272
27278
|
}
|
|
26273
27279
|
}
|
|
26274
27280
|
// Operation Specifications
|
|
26275
|
-
const serializer$
|
|
26276
|
-
const listOperationSpec$
|
|
27281
|
+
const serializer$b = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
27282
|
+
const listOperationSpec$1 = {
|
|
26277
27283
|
path: "/libraries",
|
|
26278
27284
|
httpMethod: "GET",
|
|
26279
27285
|
responses: {
|
|
@@ -26284,10 +27290,10 @@ const listOperationSpec$2 = {
|
|
|
26284
27290
|
bodyMapper: CloudErrorAutoGenerated
|
|
26285
27291
|
}
|
|
26286
27292
|
},
|
|
26287
|
-
queryParameters: [
|
|
27293
|
+
queryParameters: [apiVersion3],
|
|
26288
27294
|
urlParameters: [endpoint],
|
|
26289
27295
|
headerParameters: [accept],
|
|
26290
|
-
serializer: serializer$
|
|
27296
|
+
serializer: serializer$b
|
|
26291
27297
|
};
|
|
26292
27298
|
const flushOperationSpec = {
|
|
26293
27299
|
path: "/libraries/{libraryName}/flush",
|
|
@@ -26301,10 +27307,10 @@ const flushOperationSpec = {
|
|
|
26301
27307
|
bodyMapper: CloudErrorAutoGenerated
|
|
26302
27308
|
}
|
|
26303
27309
|
},
|
|
26304
|
-
queryParameters: [
|
|
27310
|
+
queryParameters: [apiVersion3],
|
|
26305
27311
|
urlParameters: [endpoint, libraryName],
|
|
26306
27312
|
headerParameters: [accept],
|
|
26307
|
-
serializer: serializer$
|
|
27313
|
+
serializer: serializer$b
|
|
26308
27314
|
};
|
|
26309
27315
|
const getOperationResultOperationSpec = {
|
|
26310
27316
|
path: "/libraryOperationResults/{operationId}",
|
|
@@ -26320,10 +27326,10 @@ const getOperationResultOperationSpec = {
|
|
|
26320
27326
|
bodyMapper: CloudErrorAutoGenerated
|
|
26321
27327
|
}
|
|
26322
27328
|
},
|
|
26323
|
-
queryParameters: [
|
|
27329
|
+
queryParameters: [apiVersion3],
|
|
26324
27330
|
urlParameters: [endpoint, operationId],
|
|
26325
27331
|
headerParameters: [accept],
|
|
26326
|
-
serializer: serializer$
|
|
27332
|
+
serializer: serializer$b
|
|
26327
27333
|
};
|
|
26328
27334
|
const deleteOperationSpec = {
|
|
26329
27335
|
path: "/libraries/{libraryName}",
|
|
@@ -26337,12 +27343,12 @@ const deleteOperationSpec = {
|
|
|
26337
27343
|
bodyMapper: CloudErrorAutoGenerated
|
|
26338
27344
|
}
|
|
26339
27345
|
},
|
|
26340
|
-
queryParameters: [
|
|
27346
|
+
queryParameters: [apiVersion3],
|
|
26341
27347
|
urlParameters: [endpoint, libraryName],
|
|
26342
27348
|
headerParameters: [accept],
|
|
26343
|
-
serializer: serializer$
|
|
27349
|
+
serializer: serializer$b
|
|
26344
27350
|
};
|
|
26345
|
-
const getOperationSpec$
|
|
27351
|
+
const getOperationSpec$3 = {
|
|
26346
27352
|
path: "/libraries/{libraryName}",
|
|
26347
27353
|
httpMethod: "GET",
|
|
26348
27354
|
responses: {
|
|
@@ -26354,10 +27360,10 @@ const getOperationSpec$2 = {
|
|
|
26354
27360
|
bodyMapper: CloudErrorAutoGenerated
|
|
26355
27361
|
}
|
|
26356
27362
|
},
|
|
26357
|
-
queryParameters: [
|
|
27363
|
+
queryParameters: [apiVersion3],
|
|
26358
27364
|
urlParameters: [endpoint, libraryName],
|
|
26359
27365
|
headerParameters: [accept],
|
|
26360
|
-
serializer: serializer$
|
|
27366
|
+
serializer: serializer$b
|
|
26361
27367
|
};
|
|
26362
27368
|
const createOperationSpec = {
|
|
26363
27369
|
path: "/libraries/{libraryName}",
|
|
@@ -26371,10 +27377,10 @@ const createOperationSpec = {
|
|
|
26371
27377
|
bodyMapper: CloudErrorAutoGenerated
|
|
26372
27378
|
}
|
|
26373
27379
|
},
|
|
26374
|
-
queryParameters: [
|
|
27380
|
+
queryParameters: [apiVersion3],
|
|
26375
27381
|
urlParameters: [endpoint, libraryName],
|
|
26376
27382
|
headerParameters: [accept],
|
|
26377
|
-
serializer: serializer$
|
|
27383
|
+
serializer: serializer$b
|
|
26378
27384
|
};
|
|
26379
27385
|
const appendOperationSpec = {
|
|
26380
27386
|
path: "/libraries/{libraryName}",
|
|
@@ -26386,7 +27392,7 @@ const appendOperationSpec = {
|
|
|
26386
27392
|
}
|
|
26387
27393
|
},
|
|
26388
27394
|
requestBody: content,
|
|
26389
|
-
queryParameters: [
|
|
27395
|
+
queryParameters: [apiVersion3, comp],
|
|
26390
27396
|
urlParameters: [endpoint, libraryName],
|
|
26391
27397
|
headerParameters: [
|
|
26392
27398
|
contentType1,
|
|
@@ -26394,7 +27400,7 @@ const appendOperationSpec = {
|
|
|
26394
27400
|
blobConditionAppendPosition
|
|
26395
27401
|
],
|
|
26396
27402
|
mediaType: "binary",
|
|
26397
|
-
serializer: serializer$
|
|
27403
|
+
serializer: serializer$b
|
|
26398
27404
|
};
|
|
26399
27405
|
const listNextOperationSpec = {
|
|
26400
27406
|
path: "{nextLink}",
|
|
@@ -26407,10 +27413,10 @@ const listNextOperationSpec = {
|
|
|
26407
27413
|
bodyMapper: CloudErrorAutoGenerated
|
|
26408
27414
|
}
|
|
26409
27415
|
},
|
|
26410
|
-
queryParameters: [
|
|
27416
|
+
queryParameters: [apiVersion3],
|
|
26411
27417
|
urlParameters: [endpoint, nextLink],
|
|
26412
27418
|
headerParameters: [accept],
|
|
26413
|
-
serializer: serializer$
|
|
27419
|
+
serializer: serializer$b
|
|
26414
27420
|
};
|
|
26415
27421
|
|
|
26416
27422
|
/*
|
|
@@ -26490,7 +27496,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26490
27496
|
}
|
|
26491
27497
|
catch (error) {
|
|
26492
27498
|
span.setStatus({
|
|
26493
|
-
code:
|
|
27499
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26494
27500
|
message: error.message
|
|
26495
27501
|
});
|
|
26496
27502
|
throw error;
|
|
@@ -26514,7 +27520,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26514
27520
|
}
|
|
26515
27521
|
catch (error) {
|
|
26516
27522
|
span.setStatus({
|
|
26517
|
-
code:
|
|
27523
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26518
27524
|
message: error.message
|
|
26519
27525
|
});
|
|
26520
27526
|
throw error;
|
|
@@ -26571,7 +27577,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26571
27577
|
}
|
|
26572
27578
|
catch (error) {
|
|
26573
27579
|
span.setStatus({
|
|
26574
|
-
code:
|
|
27580
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26575
27581
|
message: error.message
|
|
26576
27582
|
});
|
|
26577
27583
|
throw error;
|
|
@@ -26594,7 +27600,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26594
27600
|
}
|
|
26595
27601
|
catch (error) {
|
|
26596
27602
|
span.setStatus({
|
|
26597
|
-
code:
|
|
27603
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26598
27604
|
message: error.message
|
|
26599
27605
|
});
|
|
26600
27606
|
throw error;
|
|
@@ -26652,7 +27658,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26652
27658
|
}
|
|
26653
27659
|
catch (error) {
|
|
26654
27660
|
span.setStatus({
|
|
26655
|
-
code:
|
|
27661
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26656
27662
|
message: error.message
|
|
26657
27663
|
});
|
|
26658
27664
|
throw error;
|
|
@@ -26710,7 +27716,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26710
27716
|
}
|
|
26711
27717
|
catch (error) {
|
|
26712
27718
|
span.setStatus({
|
|
26713
|
-
code:
|
|
27719
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26714
27720
|
message: error.message
|
|
26715
27721
|
});
|
|
26716
27722
|
throw error;
|
|
@@ -26721,7 +27727,7 @@ class LinkedServiceOperationsImpl {
|
|
|
26721
27727
|
}
|
|
26722
27728
|
}
|
|
26723
27729
|
// Operation Specifications
|
|
26724
|
-
const serializer$a =
|
|
27730
|
+
const serializer$a = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
26725
27731
|
const getLinkedServicesByWorkspaceOperationSpec = {
|
|
26726
27732
|
path: "/linkedservices",
|
|
26727
27733
|
httpMethod: "GET",
|
|
@@ -26733,7 +27739,7 @@ const getLinkedServicesByWorkspaceOperationSpec = {
|
|
|
26733
27739
|
bodyMapper: CloudErrorAutoGenerated
|
|
26734
27740
|
}
|
|
26735
27741
|
},
|
|
26736
|
-
queryParameters: [
|
|
27742
|
+
queryParameters: [apiVersion3],
|
|
26737
27743
|
urlParameters: [endpoint],
|
|
26738
27744
|
headerParameters: [accept],
|
|
26739
27745
|
serializer: serializer$a
|
|
@@ -26759,7 +27765,7 @@ const createOrUpdateLinkedServiceOperationSpec = {
|
|
|
26759
27765
|
}
|
|
26760
27766
|
},
|
|
26761
27767
|
requestBody: linkedService,
|
|
26762
|
-
queryParameters: [
|
|
27768
|
+
queryParameters: [apiVersion3],
|
|
26763
27769
|
urlParameters: [endpoint, linkedServiceName],
|
|
26764
27770
|
headerParameters: [
|
|
26765
27771
|
accept,
|
|
@@ -26781,7 +27787,7 @@ const getLinkedServiceOperationSpec = {
|
|
|
26781
27787
|
bodyMapper: CloudErrorAutoGenerated
|
|
26782
27788
|
}
|
|
26783
27789
|
},
|
|
26784
|
-
queryParameters: [
|
|
27790
|
+
queryParameters: [apiVersion3],
|
|
26785
27791
|
urlParameters: [endpoint, linkedServiceName],
|
|
26786
27792
|
headerParameters: [accept, ifNoneMatch],
|
|
26787
27793
|
serializer: serializer$a
|
|
@@ -26798,7 +27804,7 @@ const deleteLinkedServiceOperationSpec = {
|
|
|
26798
27804
|
bodyMapper: CloudErrorAutoGenerated
|
|
26799
27805
|
}
|
|
26800
27806
|
},
|
|
26801
|
-
queryParameters: [
|
|
27807
|
+
queryParameters: [apiVersion3],
|
|
26802
27808
|
urlParameters: [endpoint, linkedServiceName],
|
|
26803
27809
|
headerParameters: [accept],
|
|
26804
27810
|
serializer: serializer$a
|
|
@@ -26816,7 +27822,7 @@ const renameLinkedServiceOperationSpec = {
|
|
|
26816
27822
|
}
|
|
26817
27823
|
},
|
|
26818
27824
|
requestBody: request,
|
|
26819
|
-
queryParameters: [
|
|
27825
|
+
queryParameters: [apiVersion3],
|
|
26820
27826
|
urlParameters: [endpoint, linkedServiceName],
|
|
26821
27827
|
headerParameters: [accept, contentType],
|
|
26822
27828
|
mediaType: "json",
|
|
@@ -26833,7 +27839,7 @@ const getLinkedServicesByWorkspaceNextOperationSpec = {
|
|
|
26833
27839
|
bodyMapper: CloudErrorAutoGenerated
|
|
26834
27840
|
}
|
|
26835
27841
|
},
|
|
26836
|
-
queryParameters: [
|
|
27842
|
+
queryParameters: [apiVersion3],
|
|
26837
27843
|
urlParameters: [endpoint, nextLink],
|
|
26838
27844
|
headerParameters: [accept],
|
|
26839
27845
|
serializer: serializer$a
|
|
@@ -26964,7 +27970,7 @@ class NotebookOperationsImpl {
|
|
|
26964
27970
|
}
|
|
26965
27971
|
catch (error) {
|
|
26966
27972
|
span.setStatus({
|
|
26967
|
-
code:
|
|
27973
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26968
27974
|
message: error.message
|
|
26969
27975
|
});
|
|
26970
27976
|
throw error;
|
|
@@ -26985,7 +27991,7 @@ class NotebookOperationsImpl {
|
|
|
26985
27991
|
}
|
|
26986
27992
|
catch (error) {
|
|
26987
27993
|
span.setStatus({
|
|
26988
|
-
code:
|
|
27994
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
26989
27995
|
message: error.message
|
|
26990
27996
|
});
|
|
26991
27997
|
throw error;
|
|
@@ -27009,7 +28015,7 @@ class NotebookOperationsImpl {
|
|
|
27009
28015
|
}
|
|
27010
28016
|
catch (error) {
|
|
27011
28017
|
span.setStatus({
|
|
27012
|
-
code:
|
|
28018
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27013
28019
|
message: error.message
|
|
27014
28020
|
});
|
|
27015
28021
|
throw error;
|
|
@@ -27066,7 +28072,7 @@ class NotebookOperationsImpl {
|
|
|
27066
28072
|
}
|
|
27067
28073
|
catch (error) {
|
|
27068
28074
|
span.setStatus({
|
|
27069
|
-
code:
|
|
28075
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27070
28076
|
message: error.message
|
|
27071
28077
|
});
|
|
27072
28078
|
throw error;
|
|
@@ -27089,7 +28095,7 @@ class NotebookOperationsImpl {
|
|
|
27089
28095
|
}
|
|
27090
28096
|
catch (error) {
|
|
27091
28097
|
span.setStatus({
|
|
27092
|
-
code:
|
|
28098
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27093
28099
|
message: error.message
|
|
27094
28100
|
});
|
|
27095
28101
|
throw error;
|
|
@@ -27147,7 +28153,7 @@ class NotebookOperationsImpl {
|
|
|
27147
28153
|
}
|
|
27148
28154
|
catch (error) {
|
|
27149
28155
|
span.setStatus({
|
|
27150
|
-
code:
|
|
28156
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27151
28157
|
message: error.message
|
|
27152
28158
|
});
|
|
27153
28159
|
throw error;
|
|
@@ -27205,7 +28211,7 @@ class NotebookOperationsImpl {
|
|
|
27205
28211
|
}
|
|
27206
28212
|
catch (error) {
|
|
27207
28213
|
span.setStatus({
|
|
27208
|
-
code:
|
|
28214
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27209
28215
|
message: error.message
|
|
27210
28216
|
});
|
|
27211
28217
|
throw error;
|
|
@@ -27228,7 +28234,7 @@ class NotebookOperationsImpl {
|
|
|
27228
28234
|
}
|
|
27229
28235
|
catch (error) {
|
|
27230
28236
|
span.setStatus({
|
|
27231
|
-
code:
|
|
28237
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27232
28238
|
message: error.message
|
|
27233
28239
|
});
|
|
27234
28240
|
throw error;
|
|
@@ -27239,7 +28245,7 @@ class NotebookOperationsImpl {
|
|
|
27239
28245
|
}
|
|
27240
28246
|
}
|
|
27241
28247
|
// Operation Specifications
|
|
27242
|
-
const serializer$
|
|
28248
|
+
const serializer$9 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
27243
28249
|
const getNotebooksByWorkspaceOperationSpec = {
|
|
27244
28250
|
path: "/notebooks",
|
|
27245
28251
|
httpMethod: "GET",
|
|
@@ -27251,10 +28257,10 @@ const getNotebooksByWorkspaceOperationSpec = {
|
|
|
27251
28257
|
bodyMapper: CloudErrorAutoGenerated
|
|
27252
28258
|
}
|
|
27253
28259
|
},
|
|
27254
|
-
queryParameters: [
|
|
28260
|
+
queryParameters: [apiVersion3],
|
|
27255
28261
|
urlParameters: [endpoint],
|
|
27256
28262
|
headerParameters: [accept],
|
|
27257
|
-
serializer: serializer$
|
|
28263
|
+
serializer: serializer$9
|
|
27258
28264
|
};
|
|
27259
28265
|
const getNotebookSummaryByWorkSpaceOperationSpec = {
|
|
27260
28266
|
path: "/notebooksSummary",
|
|
@@ -27267,10 +28273,10 @@ const getNotebookSummaryByWorkSpaceOperationSpec = {
|
|
|
27267
28273
|
bodyMapper: CloudErrorAutoGenerated
|
|
27268
28274
|
}
|
|
27269
28275
|
},
|
|
27270
|
-
queryParameters: [
|
|
28276
|
+
queryParameters: [apiVersion3],
|
|
27271
28277
|
urlParameters: [endpoint],
|
|
27272
28278
|
headerParameters: [accept],
|
|
27273
|
-
serializer: serializer$
|
|
28279
|
+
serializer: serializer$9
|
|
27274
28280
|
};
|
|
27275
28281
|
const createOrUpdateNotebookOperationSpec = {
|
|
27276
28282
|
path: "/notebooks/{notebookName}",
|
|
@@ -27293,7 +28299,7 @@ const createOrUpdateNotebookOperationSpec = {
|
|
|
27293
28299
|
}
|
|
27294
28300
|
},
|
|
27295
28301
|
requestBody: notebook,
|
|
27296
|
-
queryParameters: [
|
|
28302
|
+
queryParameters: [apiVersion3],
|
|
27297
28303
|
urlParameters: [endpoint, notebookName],
|
|
27298
28304
|
headerParameters: [
|
|
27299
28305
|
accept,
|
|
@@ -27301,7 +28307,7 @@ const createOrUpdateNotebookOperationSpec = {
|
|
|
27301
28307
|
ifMatch
|
|
27302
28308
|
],
|
|
27303
28309
|
mediaType: "json",
|
|
27304
|
-
serializer: serializer$
|
|
28310
|
+
serializer: serializer$9
|
|
27305
28311
|
};
|
|
27306
28312
|
const getNotebookOperationSpec = {
|
|
27307
28313
|
path: "/notebooks/{notebookName}",
|
|
@@ -27315,10 +28321,10 @@ const getNotebookOperationSpec = {
|
|
|
27315
28321
|
bodyMapper: CloudErrorAutoGenerated
|
|
27316
28322
|
}
|
|
27317
28323
|
},
|
|
27318
|
-
queryParameters: [
|
|
28324
|
+
queryParameters: [apiVersion3],
|
|
27319
28325
|
urlParameters: [endpoint, notebookName],
|
|
27320
28326
|
headerParameters: [accept, ifNoneMatch],
|
|
27321
|
-
serializer: serializer$
|
|
28327
|
+
serializer: serializer$9
|
|
27322
28328
|
};
|
|
27323
28329
|
const deleteNotebookOperationSpec = {
|
|
27324
28330
|
path: "/notebooks/{notebookName}",
|
|
@@ -27332,10 +28338,10 @@ const deleteNotebookOperationSpec = {
|
|
|
27332
28338
|
bodyMapper: CloudErrorAutoGenerated
|
|
27333
28339
|
}
|
|
27334
28340
|
},
|
|
27335
|
-
queryParameters: [
|
|
28341
|
+
queryParameters: [apiVersion3],
|
|
27336
28342
|
urlParameters: [endpoint, notebookName],
|
|
27337
28343
|
headerParameters: [accept],
|
|
27338
|
-
serializer: serializer$
|
|
28344
|
+
serializer: serializer$9
|
|
27339
28345
|
};
|
|
27340
28346
|
const renameNotebookOperationSpec = {
|
|
27341
28347
|
path: "/notebooks/{notebookName}/rename",
|
|
@@ -27350,11 +28356,11 @@ const renameNotebookOperationSpec = {
|
|
|
27350
28356
|
}
|
|
27351
28357
|
},
|
|
27352
28358
|
requestBody: request,
|
|
27353
|
-
queryParameters: [
|
|
28359
|
+
queryParameters: [apiVersion3],
|
|
27354
28360
|
urlParameters: [endpoint, notebookName],
|
|
27355
28361
|
headerParameters: [accept, contentType],
|
|
27356
28362
|
mediaType: "json",
|
|
27357
|
-
serializer: serializer$
|
|
28363
|
+
serializer: serializer$9
|
|
27358
28364
|
};
|
|
27359
28365
|
const getNotebooksByWorkspaceNextOperationSpec = {
|
|
27360
28366
|
path: "{nextLink}",
|
|
@@ -27367,10 +28373,10 @@ const getNotebooksByWorkspaceNextOperationSpec = {
|
|
|
27367
28373
|
bodyMapper: CloudErrorAutoGenerated
|
|
27368
28374
|
}
|
|
27369
28375
|
},
|
|
27370
|
-
queryParameters: [
|
|
28376
|
+
queryParameters: [apiVersion3],
|
|
27371
28377
|
urlParameters: [endpoint, nextLink],
|
|
27372
28378
|
headerParameters: [accept],
|
|
27373
|
-
serializer: serializer$
|
|
28379
|
+
serializer: serializer$9
|
|
27374
28380
|
};
|
|
27375
28381
|
const getNotebookSummaryByWorkSpaceNextOperationSpec = {
|
|
27376
28382
|
path: "{nextLink}",
|
|
@@ -27383,10 +28389,10 @@ const getNotebookSummaryByWorkSpaceNextOperationSpec = {
|
|
|
27383
28389
|
bodyMapper: CloudErrorAutoGenerated
|
|
27384
28390
|
}
|
|
27385
28391
|
},
|
|
27386
|
-
queryParameters: [
|
|
28392
|
+
queryParameters: [apiVersion3],
|
|
27387
28393
|
urlParameters: [endpoint, nextLink],
|
|
27388
28394
|
headerParameters: [accept],
|
|
27389
|
-
serializer: serializer$
|
|
28395
|
+
serializer: serializer$9
|
|
27390
28396
|
};
|
|
27391
28397
|
|
|
27392
28398
|
/*
|
|
@@ -27413,12 +28419,12 @@ class NotebookOperationResultImpl {
|
|
|
27413
28419
|
async get(operationId, options) {
|
|
27414
28420
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
27415
28421
|
try {
|
|
27416
|
-
const result = await this.client.sendOperationRequest({ operationId, options }, getOperationSpec$
|
|
28422
|
+
const result = await this.client.sendOperationRequest({ operationId, options }, getOperationSpec$2);
|
|
27417
28423
|
return result;
|
|
27418
28424
|
}
|
|
27419
28425
|
catch (error) {
|
|
27420
28426
|
span.setStatus({
|
|
27421
|
-
code:
|
|
28427
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27422
28428
|
message: error.message
|
|
27423
28429
|
});
|
|
27424
28430
|
throw error;
|
|
@@ -27429,8 +28435,8 @@ class NotebookOperationResultImpl {
|
|
|
27429
28435
|
}
|
|
27430
28436
|
}
|
|
27431
28437
|
// Operation Specifications
|
|
27432
|
-
const serializer$
|
|
27433
|
-
const getOperationSpec$
|
|
28438
|
+
const serializer$8 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
28439
|
+
const getOperationSpec$2 = {
|
|
27434
28440
|
path: "/notebookOperationResults/{operationId}",
|
|
27435
28441
|
httpMethod: "GET",
|
|
27436
28442
|
responses: {
|
|
@@ -27442,10 +28448,10 @@ const getOperationSpec$3 = {
|
|
|
27442
28448
|
bodyMapper: ErrorContract
|
|
27443
28449
|
}
|
|
27444
28450
|
},
|
|
27445
|
-
queryParameters: [
|
|
28451
|
+
queryParameters: [apiVersion3],
|
|
27446
28452
|
urlParameters: [endpoint, operationId],
|
|
27447
28453
|
headerParameters: [accept],
|
|
27448
|
-
serializer: serializer$
|
|
28454
|
+
serializer: serializer$8
|
|
27449
28455
|
};
|
|
27450
28456
|
|
|
27451
28457
|
/*
|
|
@@ -27525,7 +28531,7 @@ class PipelineOperationsImpl {
|
|
|
27525
28531
|
}
|
|
27526
28532
|
catch (error) {
|
|
27527
28533
|
span.setStatus({
|
|
27528
|
-
code:
|
|
28534
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27529
28535
|
message: error.message
|
|
27530
28536
|
});
|
|
27531
28537
|
throw error;
|
|
@@ -27549,7 +28555,7 @@ class PipelineOperationsImpl {
|
|
|
27549
28555
|
}
|
|
27550
28556
|
catch (error) {
|
|
27551
28557
|
span.setStatus({
|
|
27552
|
-
code:
|
|
28558
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27553
28559
|
message: error.message
|
|
27554
28560
|
});
|
|
27555
28561
|
throw error;
|
|
@@ -27606,7 +28612,7 @@ class PipelineOperationsImpl {
|
|
|
27606
28612
|
}
|
|
27607
28613
|
catch (error) {
|
|
27608
28614
|
span.setStatus({
|
|
27609
|
-
code:
|
|
28615
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27610
28616
|
message: error.message
|
|
27611
28617
|
});
|
|
27612
28618
|
throw error;
|
|
@@ -27629,7 +28635,7 @@ class PipelineOperationsImpl {
|
|
|
27629
28635
|
}
|
|
27630
28636
|
catch (error) {
|
|
27631
28637
|
span.setStatus({
|
|
27632
|
-
code:
|
|
28638
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27633
28639
|
message: error.message
|
|
27634
28640
|
});
|
|
27635
28641
|
throw error;
|
|
@@ -27687,7 +28693,7 @@ class PipelineOperationsImpl {
|
|
|
27687
28693
|
}
|
|
27688
28694
|
catch (error) {
|
|
27689
28695
|
span.setStatus({
|
|
27690
|
-
code:
|
|
28696
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27691
28697
|
message: error.message
|
|
27692
28698
|
});
|
|
27693
28699
|
throw error;
|
|
@@ -27744,7 +28750,7 @@ class PipelineOperationsImpl {
|
|
|
27744
28750
|
}
|
|
27745
28751
|
catch (error) {
|
|
27746
28752
|
span.setStatus({
|
|
27747
|
-
code:
|
|
28753
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27748
28754
|
message: error.message
|
|
27749
28755
|
});
|
|
27750
28756
|
throw error;
|
|
@@ -27767,7 +28773,7 @@ class PipelineOperationsImpl {
|
|
|
27767
28773
|
}
|
|
27768
28774
|
catch (error) {
|
|
27769
28775
|
span.setStatus({
|
|
27770
|
-
code:
|
|
28776
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27771
28777
|
message: error.message
|
|
27772
28778
|
});
|
|
27773
28779
|
throw error;
|
|
@@ -27778,7 +28784,7 @@ class PipelineOperationsImpl {
|
|
|
27778
28784
|
}
|
|
27779
28785
|
}
|
|
27780
28786
|
// Operation Specifications
|
|
27781
|
-
const serializer$
|
|
28787
|
+
const serializer$7 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
27782
28788
|
const getPipelinesByWorkspaceOperationSpec = {
|
|
27783
28789
|
path: "/pipelines",
|
|
27784
28790
|
httpMethod: "GET",
|
|
@@ -27790,10 +28796,10 @@ const getPipelinesByWorkspaceOperationSpec = {
|
|
|
27790
28796
|
bodyMapper: CloudErrorAutoGenerated
|
|
27791
28797
|
}
|
|
27792
28798
|
},
|
|
27793
|
-
queryParameters: [
|
|
28799
|
+
queryParameters: [apiVersion3],
|
|
27794
28800
|
urlParameters: [endpoint],
|
|
27795
28801
|
headerParameters: [accept],
|
|
27796
|
-
serializer: serializer$
|
|
28802
|
+
serializer: serializer$7
|
|
27797
28803
|
};
|
|
27798
28804
|
const createOrUpdatePipelineOperationSpec = {
|
|
27799
28805
|
path: "/pipelines/{pipelineName}",
|
|
@@ -27816,7 +28822,7 @@ const createOrUpdatePipelineOperationSpec = {
|
|
|
27816
28822
|
}
|
|
27817
28823
|
},
|
|
27818
28824
|
requestBody: pipeline,
|
|
27819
|
-
queryParameters: [
|
|
28825
|
+
queryParameters: [apiVersion3],
|
|
27820
28826
|
urlParameters: [endpoint, pipelineName],
|
|
27821
28827
|
headerParameters: [
|
|
27822
28828
|
accept,
|
|
@@ -27824,7 +28830,7 @@ const createOrUpdatePipelineOperationSpec = {
|
|
|
27824
28830
|
ifMatch
|
|
27825
28831
|
],
|
|
27826
28832
|
mediaType: "json",
|
|
27827
|
-
serializer: serializer$
|
|
28833
|
+
serializer: serializer$7
|
|
27828
28834
|
};
|
|
27829
28835
|
const getPipelineOperationSpec = {
|
|
27830
28836
|
path: "/pipelines/{pipelineName}",
|
|
@@ -27838,10 +28844,10 @@ const getPipelineOperationSpec = {
|
|
|
27838
28844
|
bodyMapper: CloudErrorAutoGenerated
|
|
27839
28845
|
}
|
|
27840
28846
|
},
|
|
27841
|
-
queryParameters: [
|
|
28847
|
+
queryParameters: [apiVersion3],
|
|
27842
28848
|
urlParameters: [endpoint, pipelineName],
|
|
27843
28849
|
headerParameters: [accept, ifNoneMatch],
|
|
27844
|
-
serializer: serializer$
|
|
28850
|
+
serializer: serializer$7
|
|
27845
28851
|
};
|
|
27846
28852
|
const deletePipelineOperationSpec = {
|
|
27847
28853
|
path: "/pipelines/{pipelineName}",
|
|
@@ -27855,10 +28861,10 @@ const deletePipelineOperationSpec = {
|
|
|
27855
28861
|
bodyMapper: CloudErrorAutoGenerated
|
|
27856
28862
|
}
|
|
27857
28863
|
},
|
|
27858
|
-
queryParameters: [
|
|
28864
|
+
queryParameters: [apiVersion3],
|
|
27859
28865
|
urlParameters: [endpoint, pipelineName],
|
|
27860
28866
|
headerParameters: [accept],
|
|
27861
|
-
serializer: serializer$
|
|
28867
|
+
serializer: serializer$7
|
|
27862
28868
|
};
|
|
27863
28869
|
const renamePipelineOperationSpec = {
|
|
27864
28870
|
path: "/pipelines/{pipelineName}/rename",
|
|
@@ -27873,11 +28879,11 @@ const renamePipelineOperationSpec = {
|
|
|
27873
28879
|
}
|
|
27874
28880
|
},
|
|
27875
28881
|
requestBody: request,
|
|
27876
|
-
queryParameters: [
|
|
28882
|
+
queryParameters: [apiVersion3],
|
|
27877
28883
|
urlParameters: [endpoint, pipelineName],
|
|
27878
28884
|
headerParameters: [accept, contentType],
|
|
27879
28885
|
mediaType: "json",
|
|
27880
|
-
serializer: serializer$
|
|
28886
|
+
serializer: serializer$7
|
|
27881
28887
|
};
|
|
27882
28888
|
const createPipelineRunOperationSpec = {
|
|
27883
28889
|
path: "/pipelines/{pipelineName}/createRun",
|
|
@@ -27892,7 +28898,7 @@ const createPipelineRunOperationSpec = {
|
|
|
27892
28898
|
},
|
|
27893
28899
|
requestBody: parameters,
|
|
27894
28900
|
queryParameters: [
|
|
27895
|
-
|
|
28901
|
+
apiVersion3,
|
|
27896
28902
|
referencePipelineRunId,
|
|
27897
28903
|
isRecovery,
|
|
27898
28904
|
startActivityName
|
|
@@ -27900,7 +28906,7 @@ const createPipelineRunOperationSpec = {
|
|
|
27900
28906
|
urlParameters: [endpoint, pipelineName],
|
|
27901
28907
|
headerParameters: [accept, contentType],
|
|
27902
28908
|
mediaType: "json",
|
|
27903
|
-
serializer: serializer$
|
|
28909
|
+
serializer: serializer$7
|
|
27904
28910
|
};
|
|
27905
28911
|
const getPipelinesByWorkspaceNextOperationSpec = {
|
|
27906
28912
|
path: "{nextLink}",
|
|
@@ -27913,10 +28919,10 @@ const getPipelinesByWorkspaceNextOperationSpec = {
|
|
|
27913
28919
|
bodyMapper: CloudErrorAutoGenerated
|
|
27914
28920
|
}
|
|
27915
28921
|
},
|
|
27916
|
-
queryParameters: [
|
|
28922
|
+
queryParameters: [apiVersion3],
|
|
27917
28923
|
urlParameters: [endpoint, nextLink],
|
|
27918
28924
|
headerParameters: [accept],
|
|
27919
|
-
serializer: serializer$
|
|
28925
|
+
serializer: serializer$7
|
|
27920
28926
|
};
|
|
27921
28927
|
|
|
27922
28928
|
/*
|
|
@@ -27948,7 +28954,7 @@ class PipelineRunOperationsImpl {
|
|
|
27948
28954
|
}
|
|
27949
28955
|
catch (error) {
|
|
27950
28956
|
span.setStatus({
|
|
27951
|
-
code:
|
|
28957
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27952
28958
|
message: error.message
|
|
27953
28959
|
});
|
|
27954
28960
|
throw error;
|
|
@@ -27970,7 +28976,7 @@ class PipelineRunOperationsImpl {
|
|
|
27970
28976
|
}
|
|
27971
28977
|
catch (error) {
|
|
27972
28978
|
span.setStatus({
|
|
27973
|
-
code:
|
|
28979
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27974
28980
|
message: error.message
|
|
27975
28981
|
});
|
|
27976
28982
|
throw error;
|
|
@@ -27994,7 +29000,7 @@ class PipelineRunOperationsImpl {
|
|
|
27994
29000
|
}
|
|
27995
29001
|
catch (error) {
|
|
27996
29002
|
span.setStatus({
|
|
27997
|
-
code:
|
|
29003
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
27998
29004
|
message: error.message
|
|
27999
29005
|
});
|
|
28000
29006
|
throw error;
|
|
@@ -28016,7 +29022,7 @@ class PipelineRunOperationsImpl {
|
|
|
28016
29022
|
}
|
|
28017
29023
|
catch (error) {
|
|
28018
29024
|
span.setStatus({
|
|
28019
|
-
code:
|
|
29025
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28020
29026
|
message: error.message
|
|
28021
29027
|
});
|
|
28022
29028
|
throw error;
|
|
@@ -28027,7 +29033,7 @@ class PipelineRunOperationsImpl {
|
|
|
28027
29033
|
}
|
|
28028
29034
|
}
|
|
28029
29035
|
// Operation Specifications
|
|
28030
|
-
const serializer$
|
|
29036
|
+
const serializer$6 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
28031
29037
|
const queryPipelineRunsByWorkspaceOperationSpec = {
|
|
28032
29038
|
path: "/queryPipelineRuns",
|
|
28033
29039
|
httpMethod: "POST",
|
|
@@ -28040,11 +29046,11 @@ const queryPipelineRunsByWorkspaceOperationSpec = {
|
|
|
28040
29046
|
}
|
|
28041
29047
|
},
|
|
28042
29048
|
requestBody: filterParameters,
|
|
28043
|
-
queryParameters: [
|
|
29049
|
+
queryParameters: [apiVersion3],
|
|
28044
29050
|
urlParameters: [endpoint],
|
|
28045
29051
|
headerParameters: [accept, contentType],
|
|
28046
29052
|
mediaType: "json",
|
|
28047
|
-
serializer: serializer$
|
|
29053
|
+
serializer: serializer$6
|
|
28048
29054
|
};
|
|
28049
29055
|
const getPipelineRunOperationSpec = {
|
|
28050
29056
|
path: "/pipelineruns/{runId}",
|
|
@@ -28057,10 +29063,10 @@ const getPipelineRunOperationSpec = {
|
|
|
28057
29063
|
bodyMapper: CloudErrorAutoGenerated
|
|
28058
29064
|
}
|
|
28059
29065
|
},
|
|
28060
|
-
queryParameters: [
|
|
29066
|
+
queryParameters: [apiVersion3],
|
|
28061
29067
|
urlParameters: [endpoint, runId],
|
|
28062
29068
|
headerParameters: [accept],
|
|
28063
|
-
serializer: serializer$
|
|
29069
|
+
serializer: serializer$6
|
|
28064
29070
|
};
|
|
28065
29071
|
const queryActivityRunsOperationSpec = {
|
|
28066
29072
|
path: "/pipelines/{pipelineName}/pipelineruns/{runId}/queryActivityruns",
|
|
@@ -28074,7 +29080,7 @@ const queryActivityRunsOperationSpec = {
|
|
|
28074
29080
|
}
|
|
28075
29081
|
},
|
|
28076
29082
|
requestBody: filterParameters,
|
|
28077
|
-
queryParameters: [
|
|
29083
|
+
queryParameters: [apiVersion3],
|
|
28078
29084
|
urlParameters: [
|
|
28079
29085
|
endpoint,
|
|
28080
29086
|
pipelineName,
|
|
@@ -28082,7 +29088,7 @@ const queryActivityRunsOperationSpec = {
|
|
|
28082
29088
|
],
|
|
28083
29089
|
headerParameters: [accept, contentType],
|
|
28084
29090
|
mediaType: "json",
|
|
28085
|
-
serializer: serializer$
|
|
29091
|
+
serializer: serializer$6
|
|
28086
29092
|
};
|
|
28087
29093
|
const cancelPipelineRunOperationSpec = {
|
|
28088
29094
|
path: "/pipelineruns/{runId}/cancel",
|
|
@@ -28093,10 +29099,10 @@ const cancelPipelineRunOperationSpec = {
|
|
|
28093
29099
|
bodyMapper: CloudErrorAutoGenerated
|
|
28094
29100
|
}
|
|
28095
29101
|
},
|
|
28096
|
-
queryParameters: [
|
|
29102
|
+
queryParameters: [apiVersion3, isRecursive],
|
|
28097
29103
|
urlParameters: [endpoint, runId],
|
|
28098
29104
|
headerParameters: [accept],
|
|
28099
|
-
serializer: serializer$
|
|
29105
|
+
serializer: serializer$6
|
|
28100
29106
|
};
|
|
28101
29107
|
|
|
28102
29108
|
/*
|
|
@@ -28176,7 +29182,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28176
29182
|
}
|
|
28177
29183
|
catch (error) {
|
|
28178
29184
|
span.setStatus({
|
|
28179
|
-
code:
|
|
29185
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28180
29186
|
message: error.message
|
|
28181
29187
|
});
|
|
28182
29188
|
throw error;
|
|
@@ -28200,7 +29206,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28200
29206
|
}
|
|
28201
29207
|
catch (error) {
|
|
28202
29208
|
span.setStatus({
|
|
28203
|
-
code:
|
|
29209
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28204
29210
|
message: error.message
|
|
28205
29211
|
});
|
|
28206
29212
|
throw error;
|
|
@@ -28257,7 +29263,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28257
29263
|
}
|
|
28258
29264
|
catch (error) {
|
|
28259
29265
|
span.setStatus({
|
|
28260
|
-
code:
|
|
29266
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28261
29267
|
message: error.message
|
|
28262
29268
|
});
|
|
28263
29269
|
throw error;
|
|
@@ -28280,7 +29286,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28280
29286
|
}
|
|
28281
29287
|
catch (error) {
|
|
28282
29288
|
span.setStatus({
|
|
28283
|
-
code:
|
|
29289
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28284
29290
|
message: error.message
|
|
28285
29291
|
});
|
|
28286
29292
|
throw error;
|
|
@@ -28337,7 +29343,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28337
29343
|
}
|
|
28338
29344
|
catch (error) {
|
|
28339
29345
|
span.setStatus({
|
|
28340
|
-
code:
|
|
29346
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28341
29347
|
message: error.message
|
|
28342
29348
|
});
|
|
28343
29349
|
throw error;
|
|
@@ -28396,7 +29402,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28396
29402
|
}
|
|
28397
29403
|
catch (error) {
|
|
28398
29404
|
span.setStatus({
|
|
28399
|
-
code:
|
|
29405
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28400
29406
|
message: error.message
|
|
28401
29407
|
});
|
|
28402
29408
|
throw error;
|
|
@@ -28454,7 +29460,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28454
29460
|
}
|
|
28455
29461
|
catch (error) {
|
|
28456
29462
|
span.setStatus({
|
|
28457
|
-
code:
|
|
29463
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28458
29464
|
message: error.message
|
|
28459
29465
|
});
|
|
28460
29466
|
throw error;
|
|
@@ -28512,7 +29518,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28512
29518
|
}
|
|
28513
29519
|
catch (error) {
|
|
28514
29520
|
span.setStatus({
|
|
28515
|
-
code:
|
|
29521
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28516
29522
|
message: error.message
|
|
28517
29523
|
});
|
|
28518
29524
|
throw error;
|
|
@@ -28523,7 +29529,7 @@ class SparkJobDefinitionOperationsImpl {
|
|
|
28523
29529
|
}
|
|
28524
29530
|
}
|
|
28525
29531
|
// Operation Specifications
|
|
28526
|
-
const serializer$
|
|
29532
|
+
const serializer$5 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
28527
29533
|
const getSparkJobDefinitionsByWorkspaceOperationSpec = {
|
|
28528
29534
|
path: "/sparkJobDefinitions",
|
|
28529
29535
|
httpMethod: "GET",
|
|
@@ -28535,10 +29541,10 @@ const getSparkJobDefinitionsByWorkspaceOperationSpec = {
|
|
|
28535
29541
|
bodyMapper: CloudErrorAutoGenerated
|
|
28536
29542
|
}
|
|
28537
29543
|
},
|
|
28538
|
-
queryParameters: [
|
|
29544
|
+
queryParameters: [apiVersion3],
|
|
28539
29545
|
urlParameters: [endpoint],
|
|
28540
29546
|
headerParameters: [accept],
|
|
28541
|
-
serializer: serializer$
|
|
29547
|
+
serializer: serializer$5
|
|
28542
29548
|
};
|
|
28543
29549
|
const createOrUpdateSparkJobDefinitionOperationSpec = {
|
|
28544
29550
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}",
|
|
@@ -28561,7 +29567,7 @@ const createOrUpdateSparkJobDefinitionOperationSpec = {
|
|
|
28561
29567
|
}
|
|
28562
29568
|
},
|
|
28563
29569
|
requestBody: sparkJobDefinition,
|
|
28564
|
-
queryParameters: [
|
|
29570
|
+
queryParameters: [apiVersion3],
|
|
28565
29571
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
28566
29572
|
headerParameters: [
|
|
28567
29573
|
accept,
|
|
@@ -28569,7 +29575,7 @@ const createOrUpdateSparkJobDefinitionOperationSpec = {
|
|
|
28569
29575
|
ifMatch
|
|
28570
29576
|
],
|
|
28571
29577
|
mediaType: "json",
|
|
28572
|
-
serializer: serializer$
|
|
29578
|
+
serializer: serializer$5
|
|
28573
29579
|
};
|
|
28574
29580
|
const getSparkJobDefinitionOperationSpec = {
|
|
28575
29581
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}",
|
|
@@ -28583,10 +29589,10 @@ const getSparkJobDefinitionOperationSpec = {
|
|
|
28583
29589
|
bodyMapper: CloudErrorAutoGenerated
|
|
28584
29590
|
}
|
|
28585
29591
|
},
|
|
28586
|
-
queryParameters: [
|
|
29592
|
+
queryParameters: [apiVersion3],
|
|
28587
29593
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
28588
29594
|
headerParameters: [accept, ifNoneMatch],
|
|
28589
|
-
serializer: serializer$
|
|
29595
|
+
serializer: serializer$5
|
|
28590
29596
|
};
|
|
28591
29597
|
const deleteSparkJobDefinitionOperationSpec = {
|
|
28592
29598
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}",
|
|
@@ -28600,10 +29606,10 @@ const deleteSparkJobDefinitionOperationSpec = {
|
|
|
28600
29606
|
bodyMapper: CloudErrorAutoGenerated
|
|
28601
29607
|
}
|
|
28602
29608
|
},
|
|
28603
|
-
queryParameters: [
|
|
29609
|
+
queryParameters: [apiVersion3],
|
|
28604
29610
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
28605
29611
|
headerParameters: [accept],
|
|
28606
|
-
serializer: serializer$
|
|
29612
|
+
serializer: serializer$5
|
|
28607
29613
|
};
|
|
28608
29614
|
const executeSparkJobDefinitionOperationSpec = {
|
|
28609
29615
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}/execute",
|
|
@@ -28625,10 +29631,10 @@ const executeSparkJobDefinitionOperationSpec = {
|
|
|
28625
29631
|
bodyMapper: CloudErrorAutoGenerated
|
|
28626
29632
|
}
|
|
28627
29633
|
},
|
|
28628
|
-
queryParameters: [
|
|
29634
|
+
queryParameters: [apiVersion3],
|
|
28629
29635
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
28630
29636
|
headerParameters: [accept],
|
|
28631
|
-
serializer: serializer$
|
|
29637
|
+
serializer: serializer$5
|
|
28632
29638
|
};
|
|
28633
29639
|
const renameSparkJobDefinitionOperationSpec = {
|
|
28634
29640
|
path: "/sparkJobDefinitions/{sparkJobDefinitionName}/rename",
|
|
@@ -28643,11 +29649,11 @@ const renameSparkJobDefinitionOperationSpec = {
|
|
|
28643
29649
|
}
|
|
28644
29650
|
},
|
|
28645
29651
|
requestBody: request,
|
|
28646
|
-
queryParameters: [
|
|
29652
|
+
queryParameters: [apiVersion3],
|
|
28647
29653
|
urlParameters: [endpoint, sparkJobDefinitionName],
|
|
28648
29654
|
headerParameters: [accept, contentType],
|
|
28649
29655
|
mediaType: "json",
|
|
28650
|
-
serializer: serializer$
|
|
29656
|
+
serializer: serializer$5
|
|
28651
29657
|
};
|
|
28652
29658
|
const debugSparkJobDefinitionOperationSpec = {
|
|
28653
29659
|
path: "/debugSparkJobDefinition",
|
|
@@ -28670,11 +29676,11 @@ const debugSparkJobDefinitionOperationSpec = {
|
|
|
28670
29676
|
}
|
|
28671
29677
|
},
|
|
28672
29678
|
requestBody: sparkJobDefinitionAzureResource,
|
|
28673
|
-
queryParameters: [
|
|
29679
|
+
queryParameters: [apiVersion3],
|
|
28674
29680
|
urlParameters: [endpoint],
|
|
28675
29681
|
headerParameters: [accept, contentType],
|
|
28676
29682
|
mediaType: "json",
|
|
28677
|
-
serializer: serializer$
|
|
29683
|
+
serializer: serializer$5
|
|
28678
29684
|
};
|
|
28679
29685
|
const getSparkJobDefinitionsByWorkspaceNextOperationSpec = {
|
|
28680
29686
|
path: "{nextLink}",
|
|
@@ -28687,10 +29693,10 @@ const getSparkJobDefinitionsByWorkspaceNextOperationSpec = {
|
|
|
28687
29693
|
bodyMapper: CloudErrorAutoGenerated
|
|
28688
29694
|
}
|
|
28689
29695
|
},
|
|
28690
|
-
queryParameters: [
|
|
29696
|
+
queryParameters: [apiVersion3],
|
|
28691
29697
|
urlParameters: [endpoint, nextLink],
|
|
28692
29698
|
headerParameters: [accept],
|
|
28693
|
-
serializer: serializer$
|
|
29699
|
+
serializer: serializer$5
|
|
28694
29700
|
};
|
|
28695
29701
|
|
|
28696
29702
|
/*
|
|
@@ -28716,12 +29722,12 @@ class SqlPoolsImpl {
|
|
|
28716
29722
|
async list(options) {
|
|
28717
29723
|
const { span } = createSpan("ArtifactsClient-list", options || {});
|
|
28718
29724
|
try {
|
|
28719
|
-
const result = await this.client.sendOperationRequest({ options }, listOperationSpec
|
|
29725
|
+
const result = await this.client.sendOperationRequest({ options }, listOperationSpec);
|
|
28720
29726
|
return result;
|
|
28721
29727
|
}
|
|
28722
29728
|
catch (error) {
|
|
28723
29729
|
span.setStatus({
|
|
28724
|
-
code:
|
|
29730
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28725
29731
|
message: error.message
|
|
28726
29732
|
});
|
|
28727
29733
|
throw error;
|
|
@@ -28738,12 +29744,12 @@ class SqlPoolsImpl {
|
|
|
28738
29744
|
async get(sqlPoolName, options) {
|
|
28739
29745
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
28740
29746
|
try {
|
|
28741
|
-
const result = await this.client.sendOperationRequest({ sqlPoolName, options }, getOperationSpec$
|
|
29747
|
+
const result = await this.client.sendOperationRequest({ sqlPoolName, options }, getOperationSpec$1);
|
|
28742
29748
|
return result;
|
|
28743
29749
|
}
|
|
28744
29750
|
catch (error) {
|
|
28745
29751
|
span.setStatus({
|
|
28746
|
-
code:
|
|
29752
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28747
29753
|
message: error.message
|
|
28748
29754
|
});
|
|
28749
29755
|
throw error;
|
|
@@ -28754,8 +29760,8 @@ class SqlPoolsImpl {
|
|
|
28754
29760
|
}
|
|
28755
29761
|
}
|
|
28756
29762
|
// Operation Specifications
|
|
28757
|
-
const serializer$
|
|
28758
|
-
const listOperationSpec
|
|
29763
|
+
const serializer$4 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
29764
|
+
const listOperationSpec = {
|
|
28759
29765
|
path: "/sqlPools",
|
|
28760
29766
|
httpMethod: "GET",
|
|
28761
29767
|
responses: {
|
|
@@ -28766,12 +29772,12 @@ const listOperationSpec$3 = {
|
|
|
28766
29772
|
bodyMapper: ErrorContract
|
|
28767
29773
|
}
|
|
28768
29774
|
},
|
|
28769
|
-
queryParameters: [
|
|
29775
|
+
queryParameters: [apiVersion3],
|
|
28770
29776
|
urlParameters: [endpoint],
|
|
28771
29777
|
headerParameters: [accept],
|
|
28772
|
-
serializer: serializer$
|
|
29778
|
+
serializer: serializer$4
|
|
28773
29779
|
};
|
|
28774
|
-
const getOperationSpec$
|
|
29780
|
+
const getOperationSpec$1 = {
|
|
28775
29781
|
path: "/sqlPools/{sqlPoolName}",
|
|
28776
29782
|
httpMethod: "GET",
|
|
28777
29783
|
responses: {
|
|
@@ -28782,10 +29788,10 @@ const getOperationSpec$4 = {
|
|
|
28782
29788
|
bodyMapper: ErrorContract
|
|
28783
29789
|
}
|
|
28784
29790
|
},
|
|
28785
|
-
queryParameters: [
|
|
29791
|
+
queryParameters: [apiVersion3],
|
|
28786
29792
|
urlParameters: [endpoint, sqlPoolName],
|
|
28787
29793
|
headerParameters: [accept],
|
|
28788
|
-
serializer: serializer$
|
|
29794
|
+
serializer: serializer$4
|
|
28789
29795
|
};
|
|
28790
29796
|
|
|
28791
29797
|
/*
|
|
@@ -28865,7 +29871,7 @@ class SqlScriptOperationsImpl {
|
|
|
28865
29871
|
}
|
|
28866
29872
|
catch (error) {
|
|
28867
29873
|
span.setStatus({
|
|
28868
|
-
code:
|
|
29874
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28869
29875
|
message: error.message
|
|
28870
29876
|
});
|
|
28871
29877
|
throw error;
|
|
@@ -28889,7 +29895,7 @@ class SqlScriptOperationsImpl {
|
|
|
28889
29895
|
}
|
|
28890
29896
|
catch (error) {
|
|
28891
29897
|
span.setStatus({
|
|
28892
|
-
code:
|
|
29898
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28893
29899
|
message: error.message
|
|
28894
29900
|
});
|
|
28895
29901
|
throw error;
|
|
@@ -28946,7 +29952,7 @@ class SqlScriptOperationsImpl {
|
|
|
28946
29952
|
}
|
|
28947
29953
|
catch (error) {
|
|
28948
29954
|
span.setStatus({
|
|
28949
|
-
code:
|
|
29955
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28950
29956
|
message: error.message
|
|
28951
29957
|
});
|
|
28952
29958
|
throw error;
|
|
@@ -28969,7 +29975,7 @@ class SqlScriptOperationsImpl {
|
|
|
28969
29975
|
}
|
|
28970
29976
|
catch (error) {
|
|
28971
29977
|
span.setStatus({
|
|
28972
|
-
code:
|
|
29978
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
28973
29979
|
message: error.message
|
|
28974
29980
|
});
|
|
28975
29981
|
throw error;
|
|
@@ -29027,7 +30033,7 @@ class SqlScriptOperationsImpl {
|
|
|
29027
30033
|
}
|
|
29028
30034
|
catch (error) {
|
|
29029
30035
|
span.setStatus({
|
|
29030
|
-
code:
|
|
30036
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29031
30037
|
message: error.message
|
|
29032
30038
|
});
|
|
29033
30039
|
throw error;
|
|
@@ -29085,7 +30091,7 @@ class SqlScriptOperationsImpl {
|
|
|
29085
30091
|
}
|
|
29086
30092
|
catch (error) {
|
|
29087
30093
|
span.setStatus({
|
|
29088
|
-
code:
|
|
30094
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29089
30095
|
message: error.message
|
|
29090
30096
|
});
|
|
29091
30097
|
throw error;
|
|
@@ -29096,7 +30102,7 @@ class SqlScriptOperationsImpl {
|
|
|
29096
30102
|
}
|
|
29097
30103
|
}
|
|
29098
30104
|
// Operation Specifications
|
|
29099
|
-
const serializer$
|
|
30105
|
+
const serializer$3 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
29100
30106
|
const getSqlScriptsByWorkspaceOperationSpec = {
|
|
29101
30107
|
path: "/sqlScripts",
|
|
29102
30108
|
httpMethod: "GET",
|
|
@@ -29108,10 +30114,10 @@ const getSqlScriptsByWorkspaceOperationSpec = {
|
|
|
29108
30114
|
bodyMapper: CloudErrorAutoGenerated
|
|
29109
30115
|
}
|
|
29110
30116
|
},
|
|
29111
|
-
queryParameters: [
|
|
30117
|
+
queryParameters: [apiVersion3],
|
|
29112
30118
|
urlParameters: [endpoint],
|
|
29113
30119
|
headerParameters: [accept],
|
|
29114
|
-
serializer: serializer$
|
|
30120
|
+
serializer: serializer$3
|
|
29115
30121
|
};
|
|
29116
30122
|
const createOrUpdateSqlScriptOperationSpec = {
|
|
29117
30123
|
path: "/sqlScripts/{sqlScriptName}",
|
|
@@ -29134,7 +30140,7 @@ const createOrUpdateSqlScriptOperationSpec = {
|
|
|
29134
30140
|
}
|
|
29135
30141
|
},
|
|
29136
30142
|
requestBody: sqlScript,
|
|
29137
|
-
queryParameters: [
|
|
30143
|
+
queryParameters: [apiVersion3],
|
|
29138
30144
|
urlParameters: [endpoint, sqlScriptName],
|
|
29139
30145
|
headerParameters: [
|
|
29140
30146
|
accept,
|
|
@@ -29142,7 +30148,7 @@ const createOrUpdateSqlScriptOperationSpec = {
|
|
|
29142
30148
|
ifMatch
|
|
29143
30149
|
],
|
|
29144
30150
|
mediaType: "json",
|
|
29145
|
-
serializer: serializer$
|
|
30151
|
+
serializer: serializer$3
|
|
29146
30152
|
};
|
|
29147
30153
|
const getSqlScriptOperationSpec = {
|
|
29148
30154
|
path: "/sqlScripts/{sqlScriptName}",
|
|
@@ -29156,10 +30162,10 @@ const getSqlScriptOperationSpec = {
|
|
|
29156
30162
|
bodyMapper: CloudErrorAutoGenerated
|
|
29157
30163
|
}
|
|
29158
30164
|
},
|
|
29159
|
-
queryParameters: [
|
|
30165
|
+
queryParameters: [apiVersion3],
|
|
29160
30166
|
urlParameters: [endpoint, sqlScriptName],
|
|
29161
30167
|
headerParameters: [accept, ifNoneMatch],
|
|
29162
|
-
serializer: serializer$
|
|
30168
|
+
serializer: serializer$3
|
|
29163
30169
|
};
|
|
29164
30170
|
const deleteSqlScriptOperationSpec = {
|
|
29165
30171
|
path: "/sqlScripts/{sqlScriptName}",
|
|
@@ -29173,10 +30179,10 @@ const deleteSqlScriptOperationSpec = {
|
|
|
29173
30179
|
bodyMapper: CloudErrorAutoGenerated
|
|
29174
30180
|
}
|
|
29175
30181
|
},
|
|
29176
|
-
queryParameters: [
|
|
30182
|
+
queryParameters: [apiVersion3],
|
|
29177
30183
|
urlParameters: [endpoint, sqlScriptName],
|
|
29178
30184
|
headerParameters: [accept],
|
|
29179
|
-
serializer: serializer$
|
|
30185
|
+
serializer: serializer$3
|
|
29180
30186
|
};
|
|
29181
30187
|
const renameSqlScriptOperationSpec = {
|
|
29182
30188
|
path: "/sqlScripts/{sqlScriptName}/rename",
|
|
@@ -29191,11 +30197,11 @@ const renameSqlScriptOperationSpec = {
|
|
|
29191
30197
|
}
|
|
29192
30198
|
},
|
|
29193
30199
|
requestBody: request,
|
|
29194
|
-
queryParameters: [
|
|
30200
|
+
queryParameters: [apiVersion3],
|
|
29195
30201
|
urlParameters: [endpoint, sqlScriptName],
|
|
29196
30202
|
headerParameters: [accept, contentType],
|
|
29197
30203
|
mediaType: "json",
|
|
29198
|
-
serializer: serializer$
|
|
30204
|
+
serializer: serializer$3
|
|
29199
30205
|
};
|
|
29200
30206
|
const getSqlScriptsByWorkspaceNextOperationSpec = {
|
|
29201
30207
|
path: "{nextLink}",
|
|
@@ -29208,10 +30214,10 @@ const getSqlScriptsByWorkspaceNextOperationSpec = {
|
|
|
29208
30214
|
bodyMapper: CloudErrorAutoGenerated
|
|
29209
30215
|
}
|
|
29210
30216
|
},
|
|
29211
|
-
queryParameters: [
|
|
30217
|
+
queryParameters: [apiVersion3],
|
|
29212
30218
|
urlParameters: [endpoint, nextLink],
|
|
29213
30219
|
headerParameters: [accept],
|
|
29214
|
-
serializer: serializer$
|
|
30220
|
+
serializer: serializer$3
|
|
29215
30221
|
};
|
|
29216
30222
|
|
|
29217
30223
|
/*
|
|
@@ -29291,7 +30297,7 @@ class TriggerOperationsImpl {
|
|
|
29291
30297
|
}
|
|
29292
30298
|
catch (error) {
|
|
29293
30299
|
span.setStatus({
|
|
29294
|
-
code:
|
|
30300
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29295
30301
|
message: error.message
|
|
29296
30302
|
});
|
|
29297
30303
|
throw error;
|
|
@@ -29315,7 +30321,7 @@ class TriggerOperationsImpl {
|
|
|
29315
30321
|
}
|
|
29316
30322
|
catch (error) {
|
|
29317
30323
|
span.setStatus({
|
|
29318
|
-
code:
|
|
30324
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29319
30325
|
message: error.message
|
|
29320
30326
|
});
|
|
29321
30327
|
throw error;
|
|
@@ -29372,7 +30378,7 @@ class TriggerOperationsImpl {
|
|
|
29372
30378
|
}
|
|
29373
30379
|
catch (error) {
|
|
29374
30380
|
span.setStatus({
|
|
29375
|
-
code:
|
|
30381
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29376
30382
|
message: error.message
|
|
29377
30383
|
});
|
|
29378
30384
|
throw error;
|
|
@@ -29395,7 +30401,7 @@ class TriggerOperationsImpl {
|
|
|
29395
30401
|
}
|
|
29396
30402
|
catch (error) {
|
|
29397
30403
|
span.setStatus({
|
|
29398
|
-
code:
|
|
30404
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29399
30405
|
message: error.message
|
|
29400
30406
|
});
|
|
29401
30407
|
throw error;
|
|
@@ -29452,7 +30458,7 @@ class TriggerOperationsImpl {
|
|
|
29452
30458
|
}
|
|
29453
30459
|
catch (error) {
|
|
29454
30460
|
span.setStatus({
|
|
29455
|
-
code:
|
|
30461
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29456
30462
|
message: error.message
|
|
29457
30463
|
});
|
|
29458
30464
|
throw error;
|
|
@@ -29508,7 +30514,7 @@ class TriggerOperationsImpl {
|
|
|
29508
30514
|
}
|
|
29509
30515
|
catch (error) {
|
|
29510
30516
|
span.setStatus({
|
|
29511
|
-
code:
|
|
30517
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29512
30518
|
message: error.message
|
|
29513
30519
|
});
|
|
29514
30520
|
throw error;
|
|
@@ -29531,7 +30537,7 @@ class TriggerOperationsImpl {
|
|
|
29531
30537
|
}
|
|
29532
30538
|
catch (error) {
|
|
29533
30539
|
span.setStatus({
|
|
29534
|
-
code:
|
|
30540
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29535
30541
|
message: error.message
|
|
29536
30542
|
});
|
|
29537
30543
|
throw error;
|
|
@@ -29588,7 +30594,7 @@ class TriggerOperationsImpl {
|
|
|
29588
30594
|
}
|
|
29589
30595
|
catch (error) {
|
|
29590
30596
|
span.setStatus({
|
|
29591
|
-
code:
|
|
30597
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29592
30598
|
message: error.message
|
|
29593
30599
|
});
|
|
29594
30600
|
throw error;
|
|
@@ -29645,7 +30651,7 @@ class TriggerOperationsImpl {
|
|
|
29645
30651
|
}
|
|
29646
30652
|
catch (error) {
|
|
29647
30653
|
span.setStatus({
|
|
29648
|
-
code:
|
|
30654
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29649
30655
|
message: error.message
|
|
29650
30656
|
});
|
|
29651
30657
|
throw error;
|
|
@@ -29701,7 +30707,7 @@ class TriggerOperationsImpl {
|
|
|
29701
30707
|
}
|
|
29702
30708
|
catch (error) {
|
|
29703
30709
|
span.setStatus({
|
|
29704
|
-
code:
|
|
30710
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29705
30711
|
message: error.message
|
|
29706
30712
|
});
|
|
29707
30713
|
throw error;
|
|
@@ -29712,7 +30718,7 @@ class TriggerOperationsImpl {
|
|
|
29712
30718
|
}
|
|
29713
30719
|
}
|
|
29714
30720
|
// Operation Specifications
|
|
29715
|
-
const serializer$
|
|
30721
|
+
const serializer$2 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
29716
30722
|
const getTriggersByWorkspaceOperationSpec = {
|
|
29717
30723
|
path: "/triggers",
|
|
29718
30724
|
httpMethod: "GET",
|
|
@@ -29724,10 +30730,10 @@ const getTriggersByWorkspaceOperationSpec = {
|
|
|
29724
30730
|
bodyMapper: CloudErrorAutoGenerated
|
|
29725
30731
|
}
|
|
29726
30732
|
},
|
|
29727
|
-
queryParameters: [
|
|
30733
|
+
queryParameters: [apiVersion3],
|
|
29728
30734
|
urlParameters: [endpoint],
|
|
29729
30735
|
headerParameters: [accept],
|
|
29730
|
-
serializer: serializer$
|
|
30736
|
+
serializer: serializer$2
|
|
29731
30737
|
};
|
|
29732
30738
|
const createOrUpdateTriggerOperationSpec = {
|
|
29733
30739
|
path: "/triggers/{triggerName}",
|
|
@@ -29750,7 +30756,7 @@ const createOrUpdateTriggerOperationSpec = {
|
|
|
29750
30756
|
}
|
|
29751
30757
|
},
|
|
29752
30758
|
requestBody: trigger,
|
|
29753
|
-
queryParameters: [
|
|
30759
|
+
queryParameters: [apiVersion3],
|
|
29754
30760
|
urlParameters: [endpoint, triggerName],
|
|
29755
30761
|
headerParameters: [
|
|
29756
30762
|
accept,
|
|
@@ -29758,7 +30764,7 @@ const createOrUpdateTriggerOperationSpec = {
|
|
|
29758
30764
|
ifMatch
|
|
29759
30765
|
],
|
|
29760
30766
|
mediaType: "json",
|
|
29761
|
-
serializer: serializer$
|
|
30767
|
+
serializer: serializer$2
|
|
29762
30768
|
};
|
|
29763
30769
|
const getTriggerOperationSpec = {
|
|
29764
30770
|
path: "/triggers/{triggerName}",
|
|
@@ -29772,10 +30778,10 @@ const getTriggerOperationSpec = {
|
|
|
29772
30778
|
bodyMapper: CloudErrorAutoGenerated
|
|
29773
30779
|
}
|
|
29774
30780
|
},
|
|
29775
|
-
queryParameters: [
|
|
30781
|
+
queryParameters: [apiVersion3],
|
|
29776
30782
|
urlParameters: [endpoint, triggerName],
|
|
29777
30783
|
headerParameters: [accept, ifNoneMatch],
|
|
29778
|
-
serializer: serializer$
|
|
30784
|
+
serializer: serializer$2
|
|
29779
30785
|
};
|
|
29780
30786
|
const deleteTriggerOperationSpec = {
|
|
29781
30787
|
path: "/triggers/{triggerName}",
|
|
@@ -29789,10 +30795,10 @@ const deleteTriggerOperationSpec = {
|
|
|
29789
30795
|
bodyMapper: CloudErrorAutoGenerated
|
|
29790
30796
|
}
|
|
29791
30797
|
},
|
|
29792
|
-
queryParameters: [
|
|
30798
|
+
queryParameters: [apiVersion3],
|
|
29793
30799
|
urlParameters: [endpoint, triggerName],
|
|
29794
30800
|
headerParameters: [accept],
|
|
29795
|
-
serializer: serializer$
|
|
30801
|
+
serializer: serializer$2
|
|
29796
30802
|
};
|
|
29797
30803
|
const subscribeTriggerToEventsOperationSpec = {
|
|
29798
30804
|
path: "/triggers/{triggerName}/subscribeToEvents",
|
|
@@ -29814,10 +30820,10 @@ const subscribeTriggerToEventsOperationSpec = {
|
|
|
29814
30820
|
bodyMapper: CloudErrorAutoGenerated
|
|
29815
30821
|
}
|
|
29816
30822
|
},
|
|
29817
|
-
queryParameters: [
|
|
30823
|
+
queryParameters: [apiVersion3],
|
|
29818
30824
|
urlParameters: [endpoint, triggerName],
|
|
29819
30825
|
headerParameters: [accept],
|
|
29820
|
-
serializer: serializer$
|
|
30826
|
+
serializer: serializer$2
|
|
29821
30827
|
};
|
|
29822
30828
|
const getEventSubscriptionStatusOperationSpec = {
|
|
29823
30829
|
path: "/triggers/{triggerName}/getEventSubscriptionStatus",
|
|
@@ -29830,10 +30836,10 @@ const getEventSubscriptionStatusOperationSpec = {
|
|
|
29830
30836
|
bodyMapper: CloudErrorAutoGenerated
|
|
29831
30837
|
}
|
|
29832
30838
|
},
|
|
29833
|
-
queryParameters: [
|
|
30839
|
+
queryParameters: [apiVersion3],
|
|
29834
30840
|
urlParameters: [endpoint, triggerName],
|
|
29835
30841
|
headerParameters: [accept],
|
|
29836
|
-
serializer: serializer$
|
|
30842
|
+
serializer: serializer$2
|
|
29837
30843
|
};
|
|
29838
30844
|
const unsubscribeTriggerFromEventsOperationSpec = {
|
|
29839
30845
|
path: "/triggers/{triggerName}/unsubscribeFromEvents",
|
|
@@ -29855,10 +30861,10 @@ const unsubscribeTriggerFromEventsOperationSpec = {
|
|
|
29855
30861
|
bodyMapper: CloudErrorAutoGenerated
|
|
29856
30862
|
}
|
|
29857
30863
|
},
|
|
29858
|
-
queryParameters: [
|
|
30864
|
+
queryParameters: [apiVersion3],
|
|
29859
30865
|
urlParameters: [endpoint, triggerName],
|
|
29860
30866
|
headerParameters: [accept],
|
|
29861
|
-
serializer: serializer$
|
|
30867
|
+
serializer: serializer$2
|
|
29862
30868
|
};
|
|
29863
30869
|
const startTriggerOperationSpec = {
|
|
29864
30870
|
path: "/triggers/{triggerName}/start",
|
|
@@ -29872,10 +30878,10 @@ const startTriggerOperationSpec = {
|
|
|
29872
30878
|
bodyMapper: CloudErrorAutoGenerated
|
|
29873
30879
|
}
|
|
29874
30880
|
},
|
|
29875
|
-
queryParameters: [
|
|
30881
|
+
queryParameters: [apiVersion3],
|
|
29876
30882
|
urlParameters: [endpoint, triggerName],
|
|
29877
30883
|
headerParameters: [accept],
|
|
29878
|
-
serializer: serializer$
|
|
30884
|
+
serializer: serializer$2
|
|
29879
30885
|
};
|
|
29880
30886
|
const stopTriggerOperationSpec = {
|
|
29881
30887
|
path: "/triggers/{triggerName}/stop",
|
|
@@ -29889,10 +30895,10 @@ const stopTriggerOperationSpec = {
|
|
|
29889
30895
|
bodyMapper: CloudErrorAutoGenerated
|
|
29890
30896
|
}
|
|
29891
30897
|
},
|
|
29892
|
-
queryParameters: [
|
|
30898
|
+
queryParameters: [apiVersion3],
|
|
29893
30899
|
urlParameters: [endpoint, triggerName],
|
|
29894
30900
|
headerParameters: [accept],
|
|
29895
|
-
serializer: serializer$
|
|
30901
|
+
serializer: serializer$2
|
|
29896
30902
|
};
|
|
29897
30903
|
const getTriggersByWorkspaceNextOperationSpec = {
|
|
29898
30904
|
path: "{nextLink}",
|
|
@@ -29905,10 +30911,10 @@ const getTriggersByWorkspaceNextOperationSpec = {
|
|
|
29905
30911
|
bodyMapper: CloudErrorAutoGenerated
|
|
29906
30912
|
}
|
|
29907
30913
|
},
|
|
29908
|
-
queryParameters: [
|
|
30914
|
+
queryParameters: [apiVersion3],
|
|
29909
30915
|
urlParameters: [endpoint, nextLink],
|
|
29910
30916
|
headerParameters: [accept],
|
|
29911
|
-
serializer: serializer$
|
|
30917
|
+
serializer: serializer$2
|
|
29912
30918
|
};
|
|
29913
30919
|
|
|
29914
30920
|
/*
|
|
@@ -29941,7 +30947,7 @@ class TriggerRunOperationsImpl {
|
|
|
29941
30947
|
}
|
|
29942
30948
|
catch (error) {
|
|
29943
30949
|
span.setStatus({
|
|
29944
|
-
code:
|
|
30950
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29945
30951
|
message: error.message
|
|
29946
30952
|
});
|
|
29947
30953
|
throw error;
|
|
@@ -29964,7 +30970,7 @@ class TriggerRunOperationsImpl {
|
|
|
29964
30970
|
}
|
|
29965
30971
|
catch (error) {
|
|
29966
30972
|
span.setStatus({
|
|
29967
|
-
code:
|
|
30973
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29968
30974
|
message: error.message
|
|
29969
30975
|
});
|
|
29970
30976
|
throw error;
|
|
@@ -29986,7 +30992,7 @@ class TriggerRunOperationsImpl {
|
|
|
29986
30992
|
}
|
|
29987
30993
|
catch (error) {
|
|
29988
30994
|
span.setStatus({
|
|
29989
|
-
code:
|
|
30995
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
29990
30996
|
message: error.message
|
|
29991
30997
|
});
|
|
29992
30998
|
throw error;
|
|
@@ -29997,7 +31003,7 @@ class TriggerRunOperationsImpl {
|
|
|
29997
31003
|
}
|
|
29998
31004
|
}
|
|
29999
31005
|
// Operation Specifications
|
|
30000
|
-
const serializer$
|
|
31006
|
+
const serializer$1 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
30001
31007
|
const rerunTriggerInstanceOperationSpec = {
|
|
30002
31008
|
path: "/triggers/{triggerName}/triggerRuns/{runId}/rerun",
|
|
30003
31009
|
httpMethod: "POST",
|
|
@@ -30007,14 +31013,14 @@ const rerunTriggerInstanceOperationSpec = {
|
|
|
30007
31013
|
bodyMapper: CloudErrorAutoGenerated
|
|
30008
31014
|
}
|
|
30009
31015
|
},
|
|
30010
|
-
queryParameters: [
|
|
31016
|
+
queryParameters: [apiVersion3],
|
|
30011
31017
|
urlParameters: [
|
|
30012
31018
|
endpoint,
|
|
30013
31019
|
runId,
|
|
30014
31020
|
triggerName
|
|
30015
31021
|
],
|
|
30016
31022
|
headerParameters: [accept],
|
|
30017
|
-
serializer: serializer$
|
|
31023
|
+
serializer: serializer$1
|
|
30018
31024
|
};
|
|
30019
31025
|
const cancelTriggerInstanceOperationSpec = {
|
|
30020
31026
|
path: "/triggers/{triggerName}/triggerRuns/{runId}/cancel",
|
|
@@ -30025,14 +31031,14 @@ const cancelTriggerInstanceOperationSpec = {
|
|
|
30025
31031
|
bodyMapper: CloudErrorAutoGenerated
|
|
30026
31032
|
}
|
|
30027
31033
|
},
|
|
30028
|
-
queryParameters: [
|
|
31034
|
+
queryParameters: [apiVersion3],
|
|
30029
31035
|
urlParameters: [
|
|
30030
31036
|
endpoint,
|
|
30031
31037
|
runId,
|
|
30032
31038
|
triggerName
|
|
30033
31039
|
],
|
|
30034
31040
|
headerParameters: [accept],
|
|
30035
|
-
serializer: serializer$
|
|
31041
|
+
serializer: serializer$1
|
|
30036
31042
|
};
|
|
30037
31043
|
const queryTriggerRunsByWorkspaceOperationSpec = {
|
|
30038
31044
|
path: "/queryTriggerRuns",
|
|
@@ -30046,11 +31052,11 @@ const queryTriggerRunsByWorkspaceOperationSpec = {
|
|
|
30046
31052
|
}
|
|
30047
31053
|
},
|
|
30048
31054
|
requestBody: filterParameters,
|
|
30049
|
-
queryParameters: [
|
|
31055
|
+
queryParameters: [apiVersion3],
|
|
30050
31056
|
urlParameters: [endpoint],
|
|
30051
31057
|
headerParameters: [accept, contentType],
|
|
30052
31058
|
mediaType: "json",
|
|
30053
|
-
serializer: serializer$
|
|
31059
|
+
serializer: serializer$1
|
|
30054
31060
|
};
|
|
30055
31061
|
|
|
30056
31062
|
/*
|
|
@@ -30076,12 +31082,12 @@ class WorkspaceOperationsImpl {
|
|
|
30076
31082
|
async get(options) {
|
|
30077
31083
|
const { span } = createSpan("ArtifactsClient-get", options || {});
|
|
30078
31084
|
try {
|
|
30079
|
-
const result = await this.client.sendOperationRequest({ options }, getOperationSpec
|
|
31085
|
+
const result = await this.client.sendOperationRequest({ options }, getOperationSpec);
|
|
30080
31086
|
return result;
|
|
30081
31087
|
}
|
|
30082
31088
|
catch (error) {
|
|
30083
31089
|
span.setStatus({
|
|
30084
|
-
code:
|
|
31090
|
+
code: coreTracing__namespace.SpanStatusCode.UNSET,
|
|
30085
31091
|
message: error.message
|
|
30086
31092
|
});
|
|
30087
31093
|
throw error;
|
|
@@ -30092,8 +31098,8 @@ class WorkspaceOperationsImpl {
|
|
|
30092
31098
|
}
|
|
30093
31099
|
}
|
|
30094
31100
|
// Operation Specifications
|
|
30095
|
-
const serializer
|
|
30096
|
-
const getOperationSpec
|
|
31101
|
+
const serializer = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
31102
|
+
const getOperationSpec = {
|
|
30097
31103
|
path: "/workspace",
|
|
30098
31104
|
httpMethod: "GET",
|
|
30099
31105
|
responses: {
|
|
@@ -30104,10 +31110,10 @@ const getOperationSpec$5 = {
|
|
|
30104
31110
|
bodyMapper: ErrorContract
|
|
30105
31111
|
}
|
|
30106
31112
|
},
|
|
30107
|
-
queryParameters: [
|
|
31113
|
+
queryParameters: [apiVersion3],
|
|
30108
31114
|
urlParameters: [endpoint],
|
|
30109
31115
|
headerParameters: [accept],
|
|
30110
|
-
serializer
|
|
31116
|
+
serializer
|
|
30111
31117
|
};
|
|
30112
31118
|
|
|
30113
31119
|
/*
|
|
@@ -30117,9 +31123,9 @@ const getOperationSpec$5 = {
|
|
|
30117
31123
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
30118
31124
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
30119
31125
|
*/
|
|
30120
|
-
class
|
|
31126
|
+
class ArtifactsClient extends coreClient__namespace.ServiceClient {
|
|
30121
31127
|
/**
|
|
30122
|
-
* Initializes a new instance of the
|
|
31128
|
+
* Initializes a new instance of the ArtifactsClient class.
|
|
30123
31129
|
* @param credentials Subscription credentials which uniquely identify client subscription.
|
|
30124
31130
|
* @param endpoint The workspace development endpoint, for example
|
|
30125
31131
|
* https://myworkspace.dev.azuresynapse.net.
|
|
@@ -30140,7 +31146,7 @@ class ArtifactsClientContext extends coreClient.ServiceClient {
|
|
|
30140
31146
|
requestContentType: "application/json; charset=utf-8",
|
|
30141
31147
|
credential: credentials
|
|
30142
31148
|
};
|
|
30143
|
-
const packageDetails = `azsdk-js-synapse-artifacts/1.0.0-beta.
|
|
31149
|
+
const packageDetails = `azsdk-js-synapse-artifacts/1.0.0-beta.9`;
|
|
30144
31150
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
|
30145
31151
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
|
30146
31152
|
: `${packageDetails}`;
|
|
@@ -30153,28 +31159,9 @@ class ArtifactsClientContext extends coreClient.ServiceClient {
|
|
|
30153
31159
|
super(optionsWithDefaults);
|
|
30154
31160
|
// Parameter assignments
|
|
30155
31161
|
this.endpoint = endpoint;
|
|
30156
|
-
}
|
|
30157
|
-
}
|
|
30158
|
-
|
|
30159
|
-
/*
|
|
30160
|
-
* Copyright (c) Microsoft Corporation.
|
|
30161
|
-
* Licensed under the MIT License.
|
|
30162
|
-
*
|
|
30163
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
30164
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
30165
|
-
*/
|
|
30166
|
-
class ArtifactsClient extends ArtifactsClientContext {
|
|
30167
|
-
/**
|
|
30168
|
-
* Initializes a new instance of the ArtifactsClient class.
|
|
30169
|
-
* @param credentials Subscription credentials which uniquely identify client subscription.
|
|
30170
|
-
* @param endpoint The workspace development endpoint, for example
|
|
30171
|
-
* https://myworkspace.dev.azuresynapse.net.
|
|
30172
|
-
* @param options The parameter options
|
|
30173
|
-
*/
|
|
30174
|
-
constructor(credentials, endpoint, options) {
|
|
30175
|
-
super(credentials, endpoint, options);
|
|
30176
31162
|
this.kqlScripts = new KqlScriptsImpl(this);
|
|
30177
31163
|
this.kqlScriptOperations = new KqlScriptOperationsImpl(this);
|
|
31164
|
+
this.metastore = new MetastoreImpl(this);
|
|
30178
31165
|
this.sparkConfigurationOperations = new SparkConfigurationOperationsImpl(this);
|
|
30179
31166
|
this.bigDataPools = new BigDataPoolsImpl(this);
|
|
30180
31167
|
this.dataFlowOperations = new DataFlowOperationsImpl(this);
|
|
@@ -30198,5 +31185,4 @@ class ArtifactsClient extends ArtifactsClientContext {
|
|
|
30198
31185
|
}
|
|
30199
31186
|
|
|
30200
31187
|
exports.ArtifactsClient = ArtifactsClient;
|
|
30201
|
-
exports.ArtifactsClientContext = ArtifactsClientContext;
|
|
30202
31188
|
//# sourceMappingURL=index.js.map
|