@aws-sdk/client-mwaa-serverless 3.1067.0 → 3.1069.0
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/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +92 -111
- package/dist-cjs/models/MWAAServerlessServiceException.js +4 -8
- package/dist-cjs/models/errors.js +17 -28
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +142 -95
- package/package.json +8 -8
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.WorkflowRunSummary$ = exports.WorkflowRunDetail$ = exports.ValidationExceptionField$ = exports.UpdateWorkflowResponse$ = exports.UpdateWorkflowRequest$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TaskInstanceSummary$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.StopWorkflowRunResponse$ = exports.StopWorkflowRunRequest$ = exports.StartWorkflowRunResponse$ = exports.StartWorkflowRunRequest$ = exports.ScheduleConfiguration$ = exports.RunDetailSummary$ = exports.NetworkConfiguration$ = exports.LoggingConfiguration$ = exports.ListWorkflowVersionsResponse$ = exports.ListWorkflowVersionsRequest$ = exports.ListWorkflowsResponse$ = exports.ListWorkflowsRequest$ = exports.ListWorkflowRunsResponse$ = exports.ListWorkflowRunsRequest$ = exports.ListTaskInstancesResponse$ = exports.ListTaskInstancesRequest$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.GetWorkflowRunResponse$ = exports.GetWorkflowRunRequest$ = exports.GetWorkflowResponse$ = exports.GetWorkflowRequest$ = exports.GetTaskInstanceResponse$ = exports.GetTaskInstanceRequest$ = exports.EncryptionConfiguration$ = exports.DeleteWorkflowResponse$ = exports.DeleteWorkflowRequest$ = exports.DefinitionS3Location$ = exports.CreateWorkflowResponse$ = exports.CreateWorkflowRequest$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.OperationTimeoutException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.MWAAServerlessServiceException$ = void 0;
|
|
4
|
-
exports.UpdateWorkflow$ = exports.UntagResource$ = exports.TagResource$ = exports.StopWorkflowRun$ = exports.StartWorkflowRun$ = exports.ListWorkflowVersions$ = exports.ListWorkflows$ = exports.ListWorkflowRuns$ = exports.ListTaskInstances$ = exports.ListTagsForResource$ = exports.GetWorkflowRun$ = exports.GetWorkflow$ = exports.GetTaskInstance$ = exports.DeleteWorkflow$ = exports.CreateWorkflow$ = exports.WorkflowVersionSummary$ = exports.WorkflowSummary$ = void 0;
|
|
5
1
|
const _ADE = "AccessDeniedException";
|
|
6
2
|
const _AN = "AttemptNumber";
|
|
7
3
|
const _B = "Bucket";
|
|
@@ -148,294 +144,345 @@ const _se = "server";
|
|
|
148
144
|
const _tK = "tagKeys";
|
|
149
145
|
const _wV = "workflowVersion";
|
|
150
146
|
const n0 = "com.amazonaws.mwaaserverless";
|
|
151
|
-
const
|
|
152
|
-
const
|
|
153
|
-
const
|
|
154
|
-
const _s_registry =
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
147
|
+
const { TypeRegistry } = require("@smithy/core/schema");
|
|
148
|
+
const { AccessDeniedException, ConflictException, InternalServerException, OperationTimeoutException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException } = require("../models/errors");
|
|
149
|
+
const { MWAAServerlessServiceException } = require("../models/MWAAServerlessServiceException");
|
|
150
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
151
|
+
const MWAAServerlessServiceException$ = [-3, _s, "MWAAServerlessServiceException", 0, [], []];
|
|
152
|
+
exports.MWAAServerlessServiceException$ = MWAAServerlessServiceException$;
|
|
153
|
+
_s_registry.registerError(MWAAServerlessServiceException$, MWAAServerlessServiceException);
|
|
154
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
155
|
+
const AccessDeniedException$ = [-3, n0, _ADE,
|
|
159
156
|
{ [_e]: _c, [_hE]: 403 },
|
|
160
157
|
[_M],
|
|
161
158
|
[0], 1
|
|
162
159
|
];
|
|
163
|
-
|
|
164
|
-
|
|
160
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
161
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
162
|
+
const ConflictException$ = [-3, n0, _CE,
|
|
165
163
|
{ [_e]: _c, [_hE]: 409 },
|
|
166
164
|
[_M, _RI, _RT],
|
|
167
165
|
[0, 0, 0], 3
|
|
168
166
|
];
|
|
169
|
-
|
|
170
|
-
|
|
167
|
+
exports.ConflictException$ = ConflictException$;
|
|
168
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
169
|
+
const InternalServerException$ = [-3, n0, _ISE,
|
|
171
170
|
{ [_e]: _se, [_hE]: 500 },
|
|
172
171
|
[_M, _RAS],
|
|
173
172
|
[0, [1, { [_hH]: _RA }]], 1
|
|
174
173
|
];
|
|
175
|
-
|
|
176
|
-
|
|
174
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
175
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
176
|
+
const OperationTimeoutException$ = [-3, n0, _OTE,
|
|
177
177
|
{ [_e]: _se, [_hE]: 504 },
|
|
178
178
|
[_M],
|
|
179
179
|
[0]
|
|
180
180
|
];
|
|
181
|
-
|
|
182
|
-
|
|
181
|
+
exports.OperationTimeoutException$ = OperationTimeoutException$;
|
|
182
|
+
n0_registry.registerError(OperationTimeoutException$, OperationTimeoutException);
|
|
183
|
+
const ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
183
184
|
{ [_e]: _c, [_hE]: 404 },
|
|
184
185
|
[_M, _RI, _RT],
|
|
185
186
|
[0, 0, 0], 3
|
|
186
187
|
];
|
|
187
|
-
|
|
188
|
-
|
|
188
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
189
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
190
|
+
const ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
189
191
|
{ [_e]: _c, [_hE]: 402 },
|
|
190
192
|
[_M, _RI, _RT, _SC, _QC],
|
|
191
193
|
[0, 0, 0, 0, 0], 5
|
|
192
194
|
];
|
|
193
|
-
|
|
194
|
-
|
|
195
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
196
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
197
|
+
const ThrottlingException$ = [-3, n0, _TE,
|
|
195
198
|
{ [_e]: _c, [_hE]: 429 },
|
|
196
199
|
[_M, _SC, _QC, _RAS],
|
|
197
200
|
[0, 0, 0, [1, { [_hH]: _RA }]], 3
|
|
198
201
|
];
|
|
199
|
-
|
|
200
|
-
|
|
202
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
203
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
204
|
+
const ValidationException$ = [-3, n0, _VE,
|
|
201
205
|
{ [_e]: _c, [_hE]: 400 },
|
|
202
206
|
[_M, _R, _FL],
|
|
203
207
|
[0, 0, () => ValidationExceptionFields], 2
|
|
204
208
|
];
|
|
205
|
-
|
|
209
|
+
exports.ValidationException$ = ValidationException$;
|
|
210
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
206
211
|
exports.errorTypeRegistries = [
|
|
207
212
|
_s_registry,
|
|
208
213
|
n0_registry,
|
|
209
214
|
];
|
|
210
|
-
|
|
215
|
+
const CreateWorkflowRequest$ = [3, n0, _CWR,
|
|
211
216
|
0,
|
|
212
217
|
[_N, _DSL, _RAo, _CT, _D, _EC, _LC, _EV, _NC, _T, _TM],
|
|
213
|
-
[0, () =>
|
|
218
|
+
[0, () => DefinitionS3Location$, 0, [0, 4], 0, () => EncryptionConfiguration$, () => LoggingConfiguration$, 1, () => NetworkConfiguration$, 128 | 0, 0], 3
|
|
214
219
|
];
|
|
215
|
-
exports.
|
|
220
|
+
exports.CreateWorkflowRequest$ = CreateWorkflowRequest$;
|
|
221
|
+
const CreateWorkflowResponse$ = [3, n0, _CWRr,
|
|
216
222
|
0,
|
|
217
223
|
[_WA, _CA, _RIe, _WS, _WV, _ILV, _W],
|
|
218
224
|
[0, 5, 0, 0, 0, 2, 64 | 0], 1
|
|
219
225
|
];
|
|
220
|
-
exports.
|
|
226
|
+
exports.CreateWorkflowResponse$ = CreateWorkflowResponse$;
|
|
227
|
+
const DefinitionS3Location$ = [3, n0, _DSL,
|
|
221
228
|
0,
|
|
222
229
|
[_B, _OK, _VI],
|
|
223
230
|
[0, 0, 0], 2
|
|
224
231
|
];
|
|
225
|
-
exports.
|
|
232
|
+
exports.DefinitionS3Location$ = DefinitionS3Location$;
|
|
233
|
+
const DeleteWorkflowRequest$ = [3, n0, _DWR,
|
|
226
234
|
0,
|
|
227
235
|
[_WA, _WV],
|
|
228
236
|
[[0, 1], [0, { [_hQ]: _wV }]], 1
|
|
229
237
|
];
|
|
230
|
-
exports.
|
|
238
|
+
exports.DeleteWorkflowRequest$ = DeleteWorkflowRequest$;
|
|
239
|
+
const DeleteWorkflowResponse$ = [3, n0, _DWRe,
|
|
231
240
|
0,
|
|
232
241
|
[_WA, _WV],
|
|
233
242
|
[0, 0], 1
|
|
234
243
|
];
|
|
235
|
-
exports.
|
|
244
|
+
exports.DeleteWorkflowResponse$ = DeleteWorkflowResponse$;
|
|
245
|
+
const EncryptionConfiguration$ = [3, n0, _EC,
|
|
236
246
|
0,
|
|
237
247
|
[_Ty, _KKI],
|
|
238
248
|
[0, 0], 1
|
|
239
249
|
];
|
|
240
|
-
exports.
|
|
250
|
+
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
251
|
+
const GetTaskInstanceRequest$ = [3, n0, _GTIR,
|
|
241
252
|
0,
|
|
242
253
|
[_WA, _TII, _RIu],
|
|
243
254
|
[[0, 1], [0, 1], [0, 1]], 3
|
|
244
255
|
];
|
|
245
|
-
exports.
|
|
256
|
+
exports.GetTaskInstanceRequest$ = GetTaskInstanceRequest$;
|
|
257
|
+
const GetTaskInstanceResponse$ = [3, n0, _GTIRe,
|
|
246
258
|
0,
|
|
247
259
|
[_WA, _RIu, _TII, _WV, _S, _DIS, _ON, _MA, _EA, _SA, _AN, _EM, _TI, _LS, _X],
|
|
248
260
|
[0, 0, 0, 0, 0, 1, 0, 5, 5, 5, 1, 0, 0, 0, 128 | 0], 3
|
|
249
261
|
];
|
|
250
|
-
exports.
|
|
262
|
+
exports.GetTaskInstanceResponse$ = GetTaskInstanceResponse$;
|
|
263
|
+
const GetWorkflowRequest$ = [3, n0, _GWR,
|
|
251
264
|
0,
|
|
252
265
|
[_WA, _WV],
|
|
253
266
|
[[0, 1], [0, { [_hQ]: _wV }]], 1
|
|
254
267
|
];
|
|
255
|
-
exports.
|
|
268
|
+
exports.GetWorkflowRequest$ = GetWorkflowRequest$;
|
|
269
|
+
const GetWorkflowResponse$ = [3, n0, _GWRe,
|
|
256
270
|
0,
|
|
257
271
|
[_WA, _WV, _N, _D, _CA, _MA, _EC, _LC, _EV, _WS, _DSL, _SCc, _RAo, _NC, _TM, _WD],
|
|
258
|
-
[0, 0, 0, 0, 5, 5, () =>
|
|
272
|
+
[0, 0, 0, 0, 5, 5, () => EncryptionConfiguration$, () => LoggingConfiguration$, 1, 0, () => DefinitionS3Location$, () => ScheduleConfiguration$, 0, () => NetworkConfiguration$, 0, 0], 1
|
|
259
273
|
];
|
|
260
|
-
exports.
|
|
274
|
+
exports.GetWorkflowResponse$ = GetWorkflowResponse$;
|
|
275
|
+
const GetWorkflowRunRequest$ = [3, n0, _GWRR,
|
|
261
276
|
0,
|
|
262
277
|
[_WA, _RIu],
|
|
263
278
|
[[0, 1], [0, 1]], 2
|
|
264
279
|
];
|
|
265
|
-
exports.
|
|
280
|
+
exports.GetWorkflowRunRequest$ = GetWorkflowRunRequest$;
|
|
281
|
+
const GetWorkflowRunResponse$ = [3, n0, _GWRRe,
|
|
266
282
|
0,
|
|
267
283
|
[_WA, _WV, _RIu, _RTu, _OP, _RD],
|
|
268
|
-
[0, 0, 0, 0, [() => ObjectMap, 0], () =>
|
|
284
|
+
[0, 0, 0, 0, [() => ObjectMap, 0], () => WorkflowRunDetail$]
|
|
269
285
|
];
|
|
270
|
-
exports.
|
|
286
|
+
exports.GetWorkflowRunResponse$ = GetWorkflowRunResponse$;
|
|
287
|
+
const ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
271
288
|
0,
|
|
272
289
|
[_RAe],
|
|
273
290
|
[[0, 1]], 1
|
|
274
291
|
];
|
|
275
|
-
exports.
|
|
292
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
293
|
+
const ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
276
294
|
0,
|
|
277
295
|
[_T],
|
|
278
296
|
[128 | 0]
|
|
279
297
|
];
|
|
280
|
-
exports.
|
|
298
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
299
|
+
const ListTaskInstancesRequest$ = [3, n0, _LTIR,
|
|
281
300
|
0,
|
|
282
301
|
[_WA, _RIu, _MR, _NT],
|
|
283
302
|
[[0, 1], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
284
303
|
];
|
|
285
|
-
exports.
|
|
304
|
+
exports.ListTaskInstancesRequest$ = ListTaskInstancesRequest$;
|
|
305
|
+
const ListTaskInstancesResponse$ = [3, n0, _LTIRi,
|
|
286
306
|
0,
|
|
287
307
|
[_TIa, _NT],
|
|
288
308
|
[() => TaskInstanceSummaries, 0]
|
|
289
309
|
];
|
|
290
|
-
exports.
|
|
310
|
+
exports.ListTaskInstancesResponse$ = ListTaskInstancesResponse$;
|
|
311
|
+
const ListWorkflowRunsRequest$ = [3, n0, _LWRR,
|
|
291
312
|
0,
|
|
292
313
|
[_WA, _MR, _NT, _WV],
|
|
293
314
|
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _wV }]], 1
|
|
294
315
|
];
|
|
295
|
-
exports.
|
|
316
|
+
exports.ListWorkflowRunsRequest$ = ListWorkflowRunsRequest$;
|
|
317
|
+
const ListWorkflowRunsResponse$ = [3, n0, _LWRRi,
|
|
296
318
|
0,
|
|
297
319
|
[_WR, _NT],
|
|
298
320
|
[() => WorkflowRunSummaries, 0]
|
|
299
321
|
];
|
|
300
|
-
exports.
|
|
322
|
+
exports.ListWorkflowRunsResponse$ = ListWorkflowRunsResponse$;
|
|
323
|
+
const ListWorkflowsRequest$ = [3, n0, _LWR,
|
|
301
324
|
0,
|
|
302
325
|
[_MR, _NT],
|
|
303
326
|
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
304
327
|
];
|
|
305
|
-
exports.
|
|
328
|
+
exports.ListWorkflowsRequest$ = ListWorkflowsRequest$;
|
|
329
|
+
const ListWorkflowsResponse$ = [3, n0, _LWRi,
|
|
306
330
|
0,
|
|
307
331
|
[_Wo, _NT],
|
|
308
332
|
[() => WorkflowSummaries, 0], 1
|
|
309
333
|
];
|
|
310
|
-
exports.
|
|
334
|
+
exports.ListWorkflowsResponse$ = ListWorkflowsResponse$;
|
|
335
|
+
const ListWorkflowVersionsRequest$ = [3, n0, _LWVR,
|
|
311
336
|
0,
|
|
312
337
|
[_WA, _MR, _NT],
|
|
313
338
|
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
314
339
|
];
|
|
315
|
-
exports.
|
|
340
|
+
exports.ListWorkflowVersionsRequest$ = ListWorkflowVersionsRequest$;
|
|
341
|
+
const ListWorkflowVersionsResponse$ = [3, n0, _LWVRi,
|
|
316
342
|
0,
|
|
317
343
|
[_WVo, _NT],
|
|
318
344
|
[() => WorkflowVersionSummaries, 0]
|
|
319
345
|
];
|
|
320
|
-
exports.
|
|
346
|
+
exports.ListWorkflowVersionsResponse$ = ListWorkflowVersionsResponse$;
|
|
347
|
+
const LoggingConfiguration$ = [3, n0, _LC,
|
|
321
348
|
0,
|
|
322
349
|
[_LGN],
|
|
323
350
|
[0], 1
|
|
324
351
|
];
|
|
325
|
-
exports.
|
|
352
|
+
exports.LoggingConfiguration$ = LoggingConfiguration$;
|
|
353
|
+
const NetworkConfiguration$ = [3, n0, _NC,
|
|
326
354
|
0,
|
|
327
355
|
[_SGI, _SI],
|
|
328
356
|
[64 | 0, 64 | 0]
|
|
329
357
|
];
|
|
330
|
-
exports.
|
|
358
|
+
exports.NetworkConfiguration$ = NetworkConfiguration$;
|
|
359
|
+
const RunDetailSummary$ = [3, n0, _RDS,
|
|
331
360
|
0,
|
|
332
361
|
[_S, _CO, _SA, _EA],
|
|
333
362
|
[0, 5, 5, 5]
|
|
334
363
|
];
|
|
335
|
-
exports.
|
|
364
|
+
exports.RunDetailSummary$ = RunDetailSummary$;
|
|
365
|
+
const ScheduleConfiguration$ = [3, n0, _SCc,
|
|
336
366
|
0,
|
|
337
367
|
[_CEr],
|
|
338
368
|
[0]
|
|
339
369
|
];
|
|
340
|
-
exports.
|
|
370
|
+
exports.ScheduleConfiguration$ = ScheduleConfiguration$;
|
|
371
|
+
const StartWorkflowRunRequest$ = [3, n0, _SWRR,
|
|
341
372
|
0,
|
|
342
373
|
[_WA, _CT, _OP, _WV],
|
|
343
374
|
[[0, 1], [0, 4], [() => ObjectMap, 0], 0], 1
|
|
344
375
|
];
|
|
345
|
-
exports.
|
|
376
|
+
exports.StartWorkflowRunRequest$ = StartWorkflowRunRequest$;
|
|
377
|
+
const StartWorkflowRunResponse$ = [3, n0, _SWRRt,
|
|
346
378
|
0,
|
|
347
379
|
[_RIu, _S, _SA],
|
|
348
380
|
[0, 0, 5]
|
|
349
381
|
];
|
|
350
|
-
exports.
|
|
382
|
+
exports.StartWorkflowRunResponse$ = StartWorkflowRunResponse$;
|
|
383
|
+
const StopWorkflowRunRequest$ = [3, n0, _SWRRto,
|
|
351
384
|
0,
|
|
352
385
|
[_WA, _RIu],
|
|
353
386
|
[[0, 1], [0, 1]], 2
|
|
354
387
|
];
|
|
355
|
-
exports.
|
|
388
|
+
exports.StopWorkflowRunRequest$ = StopWorkflowRunRequest$;
|
|
389
|
+
const StopWorkflowRunResponse$ = [3, n0, _SWRRtop,
|
|
356
390
|
0,
|
|
357
391
|
[_WA, _WV, _RIu, _S],
|
|
358
392
|
[0, 0, 0, 0]
|
|
359
393
|
];
|
|
360
|
-
exports.
|
|
394
|
+
exports.StopWorkflowRunResponse$ = StopWorkflowRunResponse$;
|
|
395
|
+
const TagResourceRequest$ = [3, n0, _TRR,
|
|
361
396
|
0,
|
|
362
397
|
[_RAe, _T],
|
|
363
398
|
[[0, 1], 128 | 0], 2
|
|
364
399
|
];
|
|
365
|
-
exports.
|
|
400
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
401
|
+
const TagResourceResponse$ = [3, n0, _TRRa,
|
|
366
402
|
0,
|
|
367
403
|
[],
|
|
368
404
|
[]
|
|
369
405
|
];
|
|
370
|
-
exports.
|
|
406
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
407
|
+
const TaskInstanceSummary$ = [3, n0, _TIS,
|
|
371
408
|
0,
|
|
372
409
|
[_WA, _WV, _RIu, _TII, _S, _DIS, _ON],
|
|
373
410
|
[0, 0, 0, 0, 0, 1, 0]
|
|
374
411
|
];
|
|
375
|
-
exports.
|
|
412
|
+
exports.TaskInstanceSummary$ = TaskInstanceSummary$;
|
|
413
|
+
const UntagResourceRequest$ = [3, n0, _URR,
|
|
376
414
|
0,
|
|
377
415
|
[_RAe, _TK],
|
|
378
416
|
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
379
417
|
];
|
|
380
|
-
exports.
|
|
418
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
419
|
+
const UntagResourceResponse$ = [3, n0, _URRn,
|
|
381
420
|
0,
|
|
382
421
|
[],
|
|
383
422
|
[]
|
|
384
423
|
];
|
|
385
|
-
exports.
|
|
424
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
425
|
+
const UpdateWorkflowRequest$ = [3, n0, _UWR,
|
|
386
426
|
0,
|
|
387
427
|
[_WA, _DSL, _RAo, _D, _LC, _EV, _NC, _TM],
|
|
388
|
-
[[0, 1], () =>
|
|
428
|
+
[[0, 1], () => DefinitionS3Location$, 0, 0, () => LoggingConfiguration$, 1, () => NetworkConfiguration$, 0], 3
|
|
389
429
|
];
|
|
390
|
-
exports.
|
|
430
|
+
exports.UpdateWorkflowRequest$ = UpdateWorkflowRequest$;
|
|
431
|
+
const UpdateWorkflowResponse$ = [3, n0, _UWRp,
|
|
391
432
|
0,
|
|
392
433
|
[_WA, _MA, _WV, _W],
|
|
393
434
|
[0, 5, 0, 64 | 0], 1
|
|
394
435
|
];
|
|
395
|
-
exports.
|
|
436
|
+
exports.UpdateWorkflowResponse$ = UpdateWorkflowResponse$;
|
|
437
|
+
const ValidationExceptionField$ = [3, n0, _VEF,
|
|
396
438
|
0,
|
|
397
439
|
[_N, _M],
|
|
398
440
|
[0, 0], 2
|
|
399
441
|
];
|
|
400
|
-
exports.
|
|
442
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
443
|
+
const WorkflowRunDetail$ = [3, n0, _WRD,
|
|
401
444
|
0,
|
|
402
445
|
[_WA, _WV, _RIu, _RTu, _SO, _CA, _COo, _MA, _Du, _EM, _TIa, _RS],
|
|
403
446
|
[0, 0, 0, 0, 5, 5, 5, 5, 1, 0, 64 | 0, 0]
|
|
404
447
|
];
|
|
405
|
-
exports.
|
|
448
|
+
exports.WorkflowRunDetail$ = WorkflowRunDetail$;
|
|
449
|
+
const WorkflowRunSummary$ = [3, n0, _WRS,
|
|
406
450
|
0,
|
|
407
451
|
[_RIu, _WA, _WV, _RTu, _RDS],
|
|
408
|
-
[0, 0, 0, 0, () =>
|
|
452
|
+
[0, 0, 0, 0, () => RunDetailSummary$]
|
|
409
453
|
];
|
|
410
|
-
exports.
|
|
454
|
+
exports.WorkflowRunSummary$ = WorkflowRunSummary$;
|
|
455
|
+
const WorkflowSummary$ = [3, n0, _WSo,
|
|
411
456
|
0,
|
|
412
457
|
[_WA, _WV, _N, _D, _CA, _MA, _WS, _TM],
|
|
413
458
|
[0, 0, 0, 0, 5, 5, 0, 0], 1
|
|
414
459
|
];
|
|
415
|
-
exports.
|
|
460
|
+
exports.WorkflowSummary$ = WorkflowSummary$;
|
|
461
|
+
const WorkflowVersionSummary$ = [3, n0, _WVS,
|
|
416
462
|
0,
|
|
417
463
|
[_WV, _WA, _ILV, _CA, _MA, _DSL, _SCc, _TM],
|
|
418
|
-
[0, 0, 2, 5, 5, () =>
|
|
464
|
+
[0, 0, 2, 5, 5, () => DefinitionS3Location$, () => ScheduleConfiguration$, 0], 2
|
|
419
465
|
];
|
|
466
|
+
exports.WorkflowVersionSummary$ = WorkflowVersionSummary$;
|
|
420
467
|
var SecurityGroupIds = 64 | 0;
|
|
421
468
|
var SubnetIds = 64 | 0;
|
|
422
469
|
var TagKeys = 64 | 0;
|
|
423
470
|
var TaskInstanceIds = 64 | 0;
|
|
424
471
|
var TaskInstanceSummaries = [1, n0, _TISa,
|
|
425
|
-
0, () =>
|
|
472
|
+
0, () => TaskInstanceSummary$
|
|
426
473
|
];
|
|
427
474
|
var ValidationExceptionFields = [1, n0, _VEFa,
|
|
428
|
-
0, () =>
|
|
475
|
+
0, () => ValidationExceptionField$
|
|
429
476
|
];
|
|
430
477
|
var WarningMessages = 64 | 0;
|
|
431
478
|
var WorkflowRunSummaries = [1, n0, _WRSo,
|
|
432
|
-
0, () =>
|
|
479
|
+
0, () => WorkflowRunSummary$
|
|
433
480
|
];
|
|
434
481
|
var WorkflowSummaries = [1, n0, _WSor,
|
|
435
|
-
0, () =>
|
|
482
|
+
0, () => WorkflowSummary$
|
|
436
483
|
];
|
|
437
484
|
var WorkflowVersionSummaries = [1, n0, _WVSo,
|
|
438
|
-
0, () =>
|
|
485
|
+
0, () => WorkflowVersionSummary$
|
|
439
486
|
];
|
|
440
487
|
var GenericMap = 128 | 0;
|
|
441
488
|
var ObjectMap = [2, n0, _OM,
|
|
@@ -443,47 +490,47 @@ var ObjectMap = [2, n0, _OM,
|
|
|
443
490
|
];
|
|
444
491
|
var Tags = 128 | 0;
|
|
445
492
|
exports.CreateWorkflow$ = [9, n0, _CW,
|
|
446
|
-
{ [_h]: ["POST", "/workflows", 200] }, () =>
|
|
493
|
+
{ [_h]: ["POST", "/workflows", 200] }, () => CreateWorkflowRequest$, () => CreateWorkflowResponse$
|
|
447
494
|
];
|
|
448
495
|
exports.DeleteWorkflow$ = [9, n0, _DW,
|
|
449
|
-
{ [_h]: ["DELETE", "/workflows/{WorkflowArn}", 200] }, () =>
|
|
496
|
+
{ [_h]: ["DELETE", "/workflows/{WorkflowArn}", 200] }, () => DeleteWorkflowRequest$, () => DeleteWorkflowResponse$
|
|
450
497
|
];
|
|
451
498
|
exports.GetTaskInstance$ = [9, n0, _GTI,
|
|
452
|
-
{ [_h]: ["GET", "/workflows/{WorkflowArn}/runs/{RunId}/tasks/{TaskInstanceId}", 200] }, () =>
|
|
499
|
+
{ [_h]: ["GET", "/workflows/{WorkflowArn}/runs/{RunId}/tasks/{TaskInstanceId}", 200] }, () => GetTaskInstanceRequest$, () => GetTaskInstanceResponse$
|
|
453
500
|
];
|
|
454
501
|
exports.GetWorkflow$ = [9, n0, _GW,
|
|
455
|
-
{ [_h]: ["GET", "/workflows/{WorkflowArn}", 200] }, () =>
|
|
502
|
+
{ [_h]: ["GET", "/workflows/{WorkflowArn}", 200] }, () => GetWorkflowRequest$, () => GetWorkflowResponse$
|
|
456
503
|
];
|
|
457
504
|
exports.GetWorkflowRun$ = [9, n0, _GWRet,
|
|
458
|
-
{ [_h]: ["GET", "/workflows/{WorkflowArn}/runs/{RunId}", 200] }, () =>
|
|
505
|
+
{ [_h]: ["GET", "/workflows/{WorkflowArn}/runs/{RunId}", 200] }, () => GetWorkflowRunRequest$, () => GetWorkflowRunResponse$
|
|
459
506
|
];
|
|
460
507
|
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
461
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () =>
|
|
508
|
+
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
462
509
|
];
|
|
463
510
|
exports.ListTaskInstances$ = [9, n0, _LTI,
|
|
464
|
-
{ [_h]: ["GET", "/workflows/{WorkflowArn}/runs/{RunId}/tasks", 200] }, () =>
|
|
511
|
+
{ [_h]: ["GET", "/workflows/{WorkflowArn}/runs/{RunId}/tasks", 200] }, () => ListTaskInstancesRequest$, () => ListTaskInstancesResponse$
|
|
465
512
|
];
|
|
466
513
|
exports.ListWorkflowRuns$ = [9, n0, _LWRis,
|
|
467
|
-
{ [_h]: ["GET", "/workflows/{WorkflowArn}/runs", 200] }, () =>
|
|
514
|
+
{ [_h]: ["GET", "/workflows/{WorkflowArn}/runs", 200] }, () => ListWorkflowRunsRequest$, () => ListWorkflowRunsResponse$
|
|
468
515
|
];
|
|
469
516
|
exports.ListWorkflows$ = [9, n0, _LW,
|
|
470
|
-
{ [_h]: ["GET", "/workflows", 200] }, () =>
|
|
517
|
+
{ [_h]: ["GET", "/workflows", 200] }, () => ListWorkflowsRequest$, () => ListWorkflowsResponse$
|
|
471
518
|
];
|
|
472
519
|
exports.ListWorkflowVersions$ = [9, n0, _LWV,
|
|
473
|
-
{ [_h]: ["GET", "/workflows/{WorkflowArn}/versions", 200] }, () =>
|
|
520
|
+
{ [_h]: ["GET", "/workflows/{WorkflowArn}/versions", 200] }, () => ListWorkflowVersionsRequest$, () => ListWorkflowVersionsResponse$
|
|
474
521
|
];
|
|
475
522
|
exports.StartWorkflowRun$ = [9, n0, _SWR,
|
|
476
|
-
{ [_h]: ["POST", "/workflows/{WorkflowArn}/runs", 200] }, () =>
|
|
523
|
+
{ [_h]: ["POST", "/workflows/{WorkflowArn}/runs", 200] }, () => StartWorkflowRunRequest$, () => StartWorkflowRunResponse$
|
|
477
524
|
];
|
|
478
525
|
exports.StopWorkflowRun$ = [9, n0, _SWRt,
|
|
479
|
-
{ [_h]: ["DELETE", "/workflows/{WorkflowArn}/runs/{RunId}", 200] }, () =>
|
|
526
|
+
{ [_h]: ["DELETE", "/workflows/{WorkflowArn}/runs/{RunId}", 200] }, () => StopWorkflowRunRequest$, () => StopWorkflowRunResponse$
|
|
480
527
|
];
|
|
481
528
|
exports.TagResource$ = [9, n0, _TR,
|
|
482
|
-
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () =>
|
|
529
|
+
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
483
530
|
];
|
|
484
531
|
exports.UntagResource$ = [9, n0, _UR,
|
|
485
|
-
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () =>
|
|
532
|
+
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
486
533
|
];
|
|
487
534
|
exports.UpdateWorkflow$ = [9, n0, _UW,
|
|
488
|
-
{ [_h]: ["PUT", "/workflows/{WorkflowArn}", 200] }, () =>
|
|
535
|
+
{ [_h]: ["PUT", "/workflows/{WorkflowArn}", 200] }, () => UpdateWorkflowRequest$, () => UpdateWorkflowResponse$
|
|
489
536
|
];
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mwaa-serverless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mwaa Serverless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1069.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
8
|
-
"build:es": "tsc -p tsconfig.es.json",
|
|
8
|
+
"build:es": "premove dist-es && tsc -p tsconfig.es.json",
|
|
9
9
|
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
10
|
+
"build:types": "premove dist-types && tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "premove dist-cjs dist-es dist-types
|
|
12
|
+
"clean": "premove dist-cjs dist-es dist-types",
|
|
13
13
|
"extract:docs": "api-extractor run --local",
|
|
14
|
-
"generate:client": "node ../../scripts/generate-clients/single-service
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
15
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
16
|
},
|
|
17
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.974.21",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.56",
|
|
26
|
+
"@aws-sdk/types": "^3.973.13",
|
|
27
27
|
"@smithy/core": "^3.24.6",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
29
29
|
"@smithy/node-http-handler": "^4.7.6",
|