@aws-sdk/client-migrationhuborchestrator 3.987.0 → 3.988.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/index.js +50 -1025
- package/dist-cjs/models/MigrationHubOrchestratorServiceException.js +12 -0
- package/dist-cjs/models/errors.js +85 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +804 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +54 -48
- package/dist-types/schemas/schemas_0.d.ts +12 -5
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -5
- package/package.json +13 -13
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultMigrationHubOrchestratorHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2021-08-28",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.migrationhuborchestrator",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2021-08-28",
|
|
30
32
|
serviceTarget: "AWSMigrationHubOrchestrator",
|
|
31
33
|
},
|
|
@@ -175,7 +175,7 @@ const _r = "required";
|
|
|
175
175
|
const _rA = "resourceArn";
|
|
176
176
|
const _rE = "runEnvironment";
|
|
177
177
|
const _rT = "registeredTime";
|
|
178
|
-
const _s = "
|
|
178
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.migrationhuborchestrator";
|
|
179
179
|
const _sAC = "stepAutomationConfiguration";
|
|
180
180
|
const _sAT = "stepActionType";
|
|
181
181
|
const _sGI = "stepGroupId";
|
|
@@ -189,7 +189,7 @@ const _sT = "stepTargets";
|
|
|
189
189
|
const _sTt = "stepTarget";
|
|
190
190
|
const _sV = "stringValue";
|
|
191
191
|
const _se = "server";
|
|
192
|
-
const
|
|
192
|
+
const _st = "status";
|
|
193
193
|
const _t = "tags";
|
|
194
194
|
const _tA = "templateArn";
|
|
195
195
|
const _tC = "templateClass";
|
|
@@ -219,18 +219,50 @@ const n0 = "com.amazonaws.migrationhuborchestrator";
|
|
|
219
219
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
220
220
|
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
221
221
|
import { MigrationHubOrchestratorServiceException } from "../models/MigrationHubOrchestratorServiceException";
|
|
222
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
223
|
+
export var MigrationHubOrchestratorServiceException$ = [-3, _s, "MigrationHubOrchestratorServiceException", 0, [], []];
|
|
224
|
+
_s_registry.registerError(MigrationHubOrchestratorServiceException$, MigrationHubOrchestratorServiceException);
|
|
225
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
222
226
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
223
227
|
{ [_e]: _c, [_hE]: 403 },
|
|
224
228
|
[_m],
|
|
225
229
|
[0], 1
|
|
226
230
|
];
|
|
227
|
-
|
|
231
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
228
232
|
export var ConflictException$ = [-3, n0, _CE,
|
|
229
233
|
{ [_e]: _c, [_hE]: 409 },
|
|
230
234
|
[_m],
|
|
231
235
|
[0], 1
|
|
232
236
|
];
|
|
233
|
-
|
|
237
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
238
|
+
export var InternalServerException$ = [-3, n0, _ISE,
|
|
239
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
240
|
+
[_m],
|
|
241
|
+
[0], 1
|
|
242
|
+
];
|
|
243
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
244
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
245
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
246
|
+
[_m],
|
|
247
|
+
[0], 1
|
|
248
|
+
];
|
|
249
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
250
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
251
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
252
|
+
[_m],
|
|
253
|
+
[0], 1
|
|
254
|
+
];
|
|
255
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
256
|
+
export var ValidationException$ = [-3, n0, _VE,
|
|
257
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
258
|
+
[_m],
|
|
259
|
+
[0], 1
|
|
260
|
+
];
|
|
261
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
262
|
+
export const errorTypeRegistries = [
|
|
263
|
+
_s_registry,
|
|
264
|
+
n0_registry,
|
|
265
|
+
];
|
|
234
266
|
export var CreateMigrationWorkflowRequest$ = [3, n0, _CMWR,
|
|
235
267
|
0,
|
|
236
268
|
[_n, _tI, _iP, _d, _aCI, _sT, _t],
|
|
@@ -238,7 +270,7 @@ export var CreateMigrationWorkflowRequest$ = [3, n0, _CMWR,
|
|
|
238
270
|
];
|
|
239
271
|
export var CreateMigrationWorkflowResponse$ = [3, n0, _CMWRr,
|
|
240
272
|
0,
|
|
241
|
-
[_i, _a, _n, _d, _tI, _aACI, _wI, _sT,
|
|
273
|
+
[_i, _a, _n, _d, _tI, _aACI, _wI, _sT, _st, _cT, _t],
|
|
242
274
|
[0, 0, 0, 0, 0, 0, [() => StepInputParameters, 0], 64 | 0, 0, 4, 128 | 0]
|
|
243
275
|
];
|
|
244
276
|
export var CreateTemplateRequest$ = [3, n0, _CTR,
|
|
@@ -278,7 +310,7 @@ export var DeleteMigrationWorkflowRequest$ = [3, n0, _DMWR,
|
|
|
278
310
|
];
|
|
279
311
|
export var DeleteMigrationWorkflowResponse$ = [3, n0, _DMWRe,
|
|
280
312
|
0,
|
|
281
|
-
[_i, _a,
|
|
313
|
+
[_i, _a, _st],
|
|
282
314
|
[0, 0, 0]
|
|
283
315
|
];
|
|
284
316
|
export var DeleteTemplateRequest$ = [3, n0, _DTR,
|
|
@@ -318,7 +350,7 @@ export var GetMigrationWorkflowRequest$ = [3, n0, _GMWR,
|
|
|
318
350
|
];
|
|
319
351
|
export var GetMigrationWorkflowResponse$ = [3, n0, _GMWRe,
|
|
320
352
|
0,
|
|
321
|
-
[_i, _a, _n, _d, _tI, _aACI, _aAN,
|
|
353
|
+
[_i, _a, _n, _d, _tI, _aACI, _aAN, _st, _sM, _cT, _lST, _lSTa, _lMT, _eT, _to, _tSo, _cS, _wI, _t, _wB],
|
|
322
354
|
[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 4, () => ToolsList, 1, 1, [() => StepInputParameters, 0], 128 | 0, 0]
|
|
323
355
|
];
|
|
324
356
|
export var GetMigrationWorkflowTemplateRequest$ = [3, n0, _GMWTR,
|
|
@@ -328,7 +360,7 @@ export var GetMigrationWorkflowTemplateRequest$ = [3, n0, _GMWTR,
|
|
|
328
360
|
];
|
|
329
361
|
export var GetMigrationWorkflowTemplateResponse$ = [3, n0, _GMWTRe,
|
|
330
362
|
0,
|
|
331
|
-
[_i, _tA, _n, _d, _in, _to, _cT, _ow,
|
|
363
|
+
[_i, _tA, _n, _d, _in, _to, _cT, _ow, _st, _sM, _tC, _t],
|
|
332
364
|
[0, 0, 0, 0, () => TemplateInputList, () => ToolsList, 4, 0, 0, 0, 0, 128 | 0]
|
|
333
365
|
];
|
|
334
366
|
export var GetTemplateStepGroupRequest$ = [3, n0, _GTSGR,
|
|
@@ -338,7 +370,7 @@ export var GetTemplateStepGroupRequest$ = [3, n0, _GTSGR,
|
|
|
338
370
|
];
|
|
339
371
|
export var GetTemplateStepGroupResponse$ = [3, n0, _GTSGRe,
|
|
340
372
|
0,
|
|
341
|
-
[_tI, _i, _n, _d,
|
|
373
|
+
[_tI, _i, _n, _d, _st, _cT, _lMT, _to, _p, _ne],
|
|
342
374
|
[0, 0, 0, 0, 0, 4, 4, () => ToolsList, 64 | 0, 64 | 0]
|
|
343
375
|
];
|
|
344
376
|
export var GetTemplateStepRequest$ = [3, n0, _GTSR,
|
|
@@ -358,7 +390,7 @@ export var GetWorkflowStepGroupRequest$ = [3, n0, _GWSGR,
|
|
|
358
390
|
];
|
|
359
391
|
export var GetWorkflowStepGroupResponse$ = [3, n0, _GWSGRe,
|
|
360
392
|
0,
|
|
361
|
-
[_i, _wIo, _n, _d,
|
|
393
|
+
[_i, _wIo, _n, _d, _st, _ow, _cT, _lMT, _eT, _to, _p, _ne],
|
|
362
394
|
[0, 0, 0, 0, 0, 0, 4, 4, 4, () => ToolsList, 64 | 0, 64 | 0]
|
|
363
395
|
];
|
|
364
396
|
export var GetWorkflowStepRequest$ = [3, n0, _GWSR,
|
|
@@ -368,19 +400,13 @@ export var GetWorkflowStepRequest$ = [3, n0, _GWSR,
|
|
|
368
400
|
];
|
|
369
401
|
export var GetWorkflowStepResponse$ = [3, n0, _GWSRe,
|
|
370
402
|
0,
|
|
371
|
-
[_n, _sGI, _wIo, _sI, _d, _sAT, _ow, _wSAC, _sTt, _o, _p, _ne,
|
|
403
|
+
[_n, _sGI, _wIo, _sI, _d, _sAT, _ow, _wSAC, _sTt, _o, _p, _ne, _st, _sM, _sOL, _cT, _lST, _eT, _nOSC, _nOSF, _tNOS],
|
|
372
404
|
[0, 0, 0, 0, 0, 0, 0, () => WorkflowStepAutomationConfiguration$, 64 | 0, () => WorkflowStepOutputList, 64 | 0, 64 | 0, 0, 0, 0, 4, 4, 4, 1, 1, 1]
|
|
373
405
|
];
|
|
374
|
-
export var InternalServerException$ = [-3, n0, _ISE,
|
|
375
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
376
|
-
[_m],
|
|
377
|
-
[0], 1
|
|
378
|
-
];
|
|
379
|
-
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
380
406
|
export var ListMigrationWorkflowsRequest$ = [3, n0, _LMWR,
|
|
381
407
|
0,
|
|
382
|
-
[_mR, _nT, _tI, _aACN,
|
|
383
|
-
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _tI }], [0, { [_hQ]: _aACN }], [0, { [_hQ]:
|
|
408
|
+
[_mR, _nT, _tI, _aACN, _st, _n],
|
|
409
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _tI }], [0, { [_hQ]: _aACN }], [0, { [_hQ]: _st }], [0, { [_hQ]: _n }]]
|
|
384
410
|
];
|
|
385
411
|
export var ListMigrationWorkflowsResponse$ = [3, n0, _LMWRi,
|
|
386
412
|
0,
|
|
@@ -459,7 +485,7 @@ export var ListWorkflowStepsResponse$ = [3, n0, _LWSRi,
|
|
|
459
485
|
];
|
|
460
486
|
export var MigrationWorkflowSummary$ = [3, n0, _MWS,
|
|
461
487
|
0,
|
|
462
|
-
[_i, _n, _tI, _aACN,
|
|
488
|
+
[_i, _n, _tI, _aACN, _st, _cT, _eT, _sM, _cS, _tSo],
|
|
463
489
|
[0, 0, 0, 0, 0, 4, 4, 0, 1, 1]
|
|
464
490
|
];
|
|
465
491
|
export var PlatformCommand$ = [3, n0, _PC,
|
|
@@ -474,15 +500,9 @@ export var PlatformScriptKey$ = [3, n0, _PSK,
|
|
|
474
500
|
];
|
|
475
501
|
export var PluginSummary$ = [3, n0, _PS,
|
|
476
502
|
0,
|
|
477
|
-
[_pI, _h,
|
|
503
|
+
[_pI, _h, _st, _iA, _v, _rT],
|
|
478
504
|
[0, 0, 0, 0, 0, 0]
|
|
479
505
|
];
|
|
480
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
481
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
482
|
-
[_m],
|
|
483
|
-
[0], 1
|
|
484
|
-
];
|
|
485
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
486
506
|
export var RetryWorkflowStepRequest$ = [3, n0, _RWSR,
|
|
487
507
|
0,
|
|
488
508
|
[_wIo, _sGI, _i],
|
|
@@ -490,7 +510,7 @@ export var RetryWorkflowStepRequest$ = [3, n0, _RWSR,
|
|
|
490
510
|
];
|
|
491
511
|
export var RetryWorkflowStepResponse$ = [3, n0, _RWSRe,
|
|
492
512
|
0,
|
|
493
|
-
[_sGI, _wIo, _i,
|
|
513
|
+
[_sGI, _wIo, _i, _st],
|
|
494
514
|
[0, 0, 0, 0]
|
|
495
515
|
];
|
|
496
516
|
export var StartMigrationWorkflowRequest$ = [3, n0, _SMWR,
|
|
@@ -500,7 +520,7 @@ export var StartMigrationWorkflowRequest$ = [3, n0, _SMWR,
|
|
|
500
520
|
];
|
|
501
521
|
export var StartMigrationWorkflowResponse$ = [3, n0, _SMWRt,
|
|
502
522
|
0,
|
|
503
|
-
[_i, _a,
|
|
523
|
+
[_i, _a, _st, _sM, _lST],
|
|
504
524
|
[0, 0, 0, 0, 4]
|
|
505
525
|
];
|
|
506
526
|
export var StepAutomationConfiguration$ = [3, n0, _SAC,
|
|
@@ -520,7 +540,7 @@ export var StopMigrationWorkflowRequest$ = [3, n0, _SMWRto,
|
|
|
520
540
|
];
|
|
521
541
|
export var StopMigrationWorkflowResponse$ = [3, n0, _SMWRtop,
|
|
522
542
|
0,
|
|
523
|
-
[_i, _a,
|
|
543
|
+
[_i, _a, _st, _sM, _lSTa],
|
|
524
544
|
[0, 0, 0, 0, 4]
|
|
525
545
|
];
|
|
526
546
|
export var TagResourceRequest$ = [3, n0, _TRR,
|
|
@@ -553,12 +573,6 @@ export var TemplateSummary$ = [3, n0, _TS,
|
|
|
553
573
|
[_i, _n, _a, _d],
|
|
554
574
|
[0, 0, 0, 0]
|
|
555
575
|
];
|
|
556
|
-
export var ThrottlingException$ = [-3, n0, _TE,
|
|
557
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
558
|
-
[_m],
|
|
559
|
-
[0], 1
|
|
560
|
-
];
|
|
561
|
-
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
562
576
|
export var Tool$ = [3, n0, _T,
|
|
563
577
|
0,
|
|
564
578
|
[_n, _u],
|
|
@@ -581,7 +595,7 @@ export var UpdateMigrationWorkflowRequest$ = [3, n0, _UMWR,
|
|
|
581
595
|
];
|
|
582
596
|
export var UpdateMigrationWorkflowResponse$ = [3, n0, _UMWRp,
|
|
583
597
|
0,
|
|
584
|
-
[_i, _a, _n, _d, _tI, _aACI, _wI, _sT,
|
|
598
|
+
[_i, _a, _n, _d, _tI, _aACI, _wI, _sT, _st, _cT, _lMT, _t],
|
|
585
599
|
[0, 0, 0, 0, 0, 0, [() => StepInputParameters, 0], 64 | 0, 0, 4, 4, 128 | 0]
|
|
586
600
|
];
|
|
587
601
|
export var UpdateTemplateRequest$ = [3, n0, _UTR,
|
|
@@ -606,7 +620,7 @@ export var UpdateWorkflowStepGroupResponse$ = [3, n0, _UWSGRp,
|
|
|
606
620
|
];
|
|
607
621
|
export var UpdateWorkflowStepRequest$ = [3, n0, _UWSR,
|
|
608
622
|
0,
|
|
609
|
-
[_i, _sGI, _wIo, _n, _d, _sAT, _wSAC, _sTt, _o, _p, _ne,
|
|
623
|
+
[_i, _sGI, _wIo, _n, _d, _sAT, _wSAC, _sTt, _o, _p, _ne, _st],
|
|
610
624
|
[[0, 1], 0, 0, 0, 0, 0, () => WorkflowStepAutomationConfiguration$, 64 | 0, () => WorkflowStepOutputList, 64 | 0, 64 | 0, 0], 3
|
|
611
625
|
];
|
|
612
626
|
export var UpdateWorkflowStepResponse$ = [3, n0, _UWSRp,
|
|
@@ -614,12 +628,6 @@ export var UpdateWorkflowStepResponse$ = [3, n0, _UWSRp,
|
|
|
614
628
|
[_i, _sGI, _wIo, _n],
|
|
615
629
|
[0, 0, 0, 0]
|
|
616
630
|
];
|
|
617
|
-
export var ValidationException$ = [-3, n0, _VE,
|
|
618
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
619
|
-
[_m],
|
|
620
|
-
[0], 1
|
|
621
|
-
];
|
|
622
|
-
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
623
631
|
export var WorkflowStepAutomationConfiguration$ = [3, n0, _WSAC,
|
|
624
632
|
0,
|
|
625
633
|
[_sLSB, _sLSK, _co, _rE, _tT],
|
|
@@ -627,7 +635,7 @@ export var WorkflowStepAutomationConfiguration$ = [3, n0, _WSAC,
|
|
|
627
635
|
];
|
|
628
636
|
export var WorkflowStepGroupSummary$ = [3, n0, _WSGS,
|
|
629
637
|
0,
|
|
630
|
-
[_i, _n, _ow,
|
|
638
|
+
[_i, _n, _ow, _st, _p, _ne],
|
|
631
639
|
[0, 0, 0, 0, 64 | 0, 64 | 0]
|
|
632
640
|
];
|
|
633
641
|
export var WorkflowStepOutput$ = [3, n0, _WSO,
|
|
@@ -637,11 +645,9 @@ export var WorkflowStepOutput$ = [3, n0, _WSO,
|
|
|
637
645
|
];
|
|
638
646
|
export var WorkflowStepSummary$ = [3, n0, _WSS,
|
|
639
647
|
0,
|
|
640
|
-
[_sI, _n, _sAT, _ow, _p, _ne,
|
|
648
|
+
[_sI, _n, _sAT, _ow, _p, _ne, _st, _sM, _nOSC, _nOSF, _tNOS, _d, _sL],
|
|
641
649
|
[0, 0, 0, 0, 64 | 0, 64 | 0, 0, 0, 1, 1, 1, 0, 0]
|
|
642
650
|
];
|
|
643
|
-
export var MigrationHubOrchestratorServiceException$ = [-3, _sm, "MigrationHubOrchestratorServiceException", 0, [], []];
|
|
644
|
-
TypeRegistry.for(_sm).registerError(MigrationHubOrchestratorServiceException$, MigrationHubOrchestratorServiceException);
|
|
645
651
|
var MaxStringList = 64 | 0;
|
|
646
652
|
var MigrationWorkflowSummaryList = [1, n0, _MWSL,
|
|
647
653
|
0, () => MigrationWorkflowSummary$
|
|
@@ -1,6 +1,18 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
|
+
export declare var MigrationHubOrchestratorServiceException$: StaticErrorSchema;
|
|
2
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
3
5
|
export declare var ConflictException$: StaticErrorSchema;
|
|
6
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
7
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
8
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
9
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
10
|
+
/**
|
|
11
|
+
* TypeRegistry instances containing modeled errors.
|
|
12
|
+
* @internal
|
|
13
|
+
*
|
|
14
|
+
*/
|
|
15
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
4
16
|
export declare var CreateMigrationWorkflowRequest$: StaticStructureSchema;
|
|
5
17
|
export declare var CreateMigrationWorkflowResponse$: StaticStructureSchema;
|
|
6
18
|
export declare var CreateTemplateRequest$: StaticStructureSchema;
|
|
@@ -29,7 +41,6 @@ export declare var GetWorkflowStepGroupRequest$: StaticStructureSchema;
|
|
|
29
41
|
export declare var GetWorkflowStepGroupResponse$: StaticStructureSchema;
|
|
30
42
|
export declare var GetWorkflowStepRequest$: StaticStructureSchema;
|
|
31
43
|
export declare var GetWorkflowStepResponse$: StaticStructureSchema;
|
|
32
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
33
44
|
export declare var ListMigrationWorkflowsRequest$: StaticStructureSchema;
|
|
34
45
|
export declare var ListMigrationWorkflowsResponse$: StaticStructureSchema;
|
|
35
46
|
export declare var ListMigrationWorkflowTemplatesRequest$: StaticStructureSchema;
|
|
@@ -50,7 +61,6 @@ export declare var MigrationWorkflowSummary$: StaticStructureSchema;
|
|
|
50
61
|
export declare var PlatformCommand$: StaticStructureSchema;
|
|
51
62
|
export declare var PlatformScriptKey$: StaticStructureSchema;
|
|
52
63
|
export declare var PluginSummary$: StaticStructureSchema;
|
|
53
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
54
64
|
export declare var RetryWorkflowStepRequest$: StaticStructureSchema;
|
|
55
65
|
export declare var RetryWorkflowStepResponse$: StaticStructureSchema;
|
|
56
66
|
export declare var StartMigrationWorkflowRequest$: StaticStructureSchema;
|
|
@@ -65,7 +75,6 @@ export declare var TemplateInput$: StaticStructureSchema;
|
|
|
65
75
|
export declare var TemplateStepGroupSummary$: StaticStructureSchema;
|
|
66
76
|
export declare var TemplateStepSummary$: StaticStructureSchema;
|
|
67
77
|
export declare var TemplateSummary$: StaticStructureSchema;
|
|
68
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
69
78
|
export declare var Tool$: StaticStructureSchema;
|
|
70
79
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
71
80
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
@@ -77,12 +86,10 @@ export declare var UpdateWorkflowStepGroupRequest$: StaticStructureSchema;
|
|
|
77
86
|
export declare var UpdateWorkflowStepGroupResponse$: StaticStructureSchema;
|
|
78
87
|
export declare var UpdateWorkflowStepRequest$: StaticStructureSchema;
|
|
79
88
|
export declare var UpdateWorkflowStepResponse$: StaticStructureSchema;
|
|
80
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
81
89
|
export declare var WorkflowStepAutomationConfiguration$: StaticStructureSchema;
|
|
82
90
|
export declare var WorkflowStepGroupSummary$: StaticStructureSchema;
|
|
83
91
|
export declare var WorkflowStepOutput$: StaticStructureSchema;
|
|
84
92
|
export declare var WorkflowStepSummary$: StaticStructureSchema;
|
|
85
|
-
export declare var MigrationHubOrchestratorServiceException$: StaticErrorSchema;
|
|
86
93
|
export declare var StepInput$: StaticUnionSchema;
|
|
87
94
|
export declare var TemplateSource$: StaticUnionSchema;
|
|
88
95
|
export declare var WorkflowStepOutputUnion$: StaticUnionSchema;
|
|
@@ -1,11 +1,18 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
StaticUnionSchema,
|
|
6
7
|
} from "@smithy/types";
|
|
8
|
+
export declare var MigrationHubOrchestratorServiceException$: StaticErrorSchema;
|
|
7
9
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
8
10
|
export declare var ConflictException$: StaticErrorSchema;
|
|
11
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
12
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
13
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
14
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
15
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
9
16
|
export declare var CreateMigrationWorkflowRequest$: StaticStructureSchema;
|
|
10
17
|
export declare var CreateMigrationWorkflowResponse$: StaticStructureSchema;
|
|
11
18
|
export declare var CreateTemplateRequest$: StaticStructureSchema;
|
|
@@ -34,7 +41,6 @@ export declare var GetWorkflowStepGroupRequest$: StaticStructureSchema;
|
|
|
34
41
|
export declare var GetWorkflowStepGroupResponse$: StaticStructureSchema;
|
|
35
42
|
export declare var GetWorkflowStepRequest$: StaticStructureSchema;
|
|
36
43
|
export declare var GetWorkflowStepResponse$: StaticStructureSchema;
|
|
37
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
38
44
|
export declare var ListMigrationWorkflowsRequest$: StaticStructureSchema;
|
|
39
45
|
export declare var ListMigrationWorkflowsResponse$: StaticStructureSchema;
|
|
40
46
|
export declare var ListMigrationWorkflowTemplatesRequest$: StaticStructureSchema;
|
|
@@ -55,7 +61,6 @@ export declare var MigrationWorkflowSummary$: StaticStructureSchema;
|
|
|
55
61
|
export declare var PlatformCommand$: StaticStructureSchema;
|
|
56
62
|
export declare var PlatformScriptKey$: StaticStructureSchema;
|
|
57
63
|
export declare var PluginSummary$: StaticStructureSchema;
|
|
58
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
59
64
|
export declare var RetryWorkflowStepRequest$: StaticStructureSchema;
|
|
60
65
|
export declare var RetryWorkflowStepResponse$: StaticStructureSchema;
|
|
61
66
|
export declare var StartMigrationWorkflowRequest$: StaticStructureSchema;
|
|
@@ -70,7 +75,6 @@ export declare var TemplateInput$: StaticStructureSchema;
|
|
|
70
75
|
export declare var TemplateStepGroupSummary$: StaticStructureSchema;
|
|
71
76
|
export declare var TemplateStepSummary$: StaticStructureSchema;
|
|
72
77
|
export declare var TemplateSummary$: StaticStructureSchema;
|
|
73
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
74
78
|
export declare var Tool$: StaticStructureSchema;
|
|
75
79
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
76
80
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
@@ -82,12 +86,10 @@ export declare var UpdateWorkflowStepGroupRequest$: StaticStructureSchema;
|
|
|
82
86
|
export declare var UpdateWorkflowStepGroupResponse$: StaticStructureSchema;
|
|
83
87
|
export declare var UpdateWorkflowStepRequest$: StaticStructureSchema;
|
|
84
88
|
export declare var UpdateWorkflowStepResponse$: StaticStructureSchema;
|
|
85
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
86
89
|
export declare var WorkflowStepAutomationConfiguration$: StaticStructureSchema;
|
|
87
90
|
export declare var WorkflowStepGroupSummary$: StaticStructureSchema;
|
|
88
91
|
export declare var WorkflowStepOutput$: StaticStructureSchema;
|
|
89
92
|
export declare var WorkflowStepSummary$: StaticStructureSchema;
|
|
90
|
-
export declare var MigrationHubOrchestratorServiceException$: StaticErrorSchema;
|
|
91
93
|
export declare var StepInput$: StaticUnionSchema;
|
|
92
94
|
export declare var TemplateSource$: StaticUnionSchema;
|
|
93
95
|
export declare var WorkflowStepOutputUnion$: StaticUnionSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-migrationhuborchestrator",
|
|
3
3
|
"description": "AWS SDK for JavaScript Migrationhuborchestrator Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.988.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 client-migrationhuborchestrator",
|
|
@@ -21,38 +21,38 @@
|
|
|
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.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.8",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.7",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.8",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.988.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.6",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|