@aws-sdk/client-m2 3.986.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 +56 -1575
- package/dist-cjs/models/M2ServiceException.js +12 -0
- package/dist-cjs/models/errors.js +155 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1230 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +82 -76
- package/dist-types/schemas/schemas_0.d.ts +16 -9
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -9
- 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 { defaultM2HttpAuthSchemeProvider } 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-04-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.m2",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2021-04-28",
|
|
30
32
|
serviceTarget: "AwsSupernovaControlPlaneService",
|
|
31
33
|
},
|
|
@@ -324,19 +324,19 @@ const _rI = "resourceId";
|
|
|
324
324
|
const _rL = "recordLength";
|
|
325
325
|
const _rP = "relativePath";
|
|
326
326
|
const _rT = "resourceType";
|
|
327
|
-
const _s = "
|
|
327
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.m2";
|
|
328
328
|
const _sA = "startedAfter";
|
|
329
329
|
const _sB = "startedBefore";
|
|
330
330
|
const _sBJD = "scriptBatchJobDefinition";
|
|
331
331
|
const _sBJI = "scriptBatchJobIdentifier";
|
|
332
332
|
const _sBJIa = "s3BatchJobIdentifier";
|
|
333
333
|
const _sBU = "signedBiUrl";
|
|
334
|
-
const _sC = "
|
|
334
|
+
const _sC = "serviceCode";
|
|
335
335
|
const _sCC = "stepCondCode";
|
|
336
336
|
const _sCS = "stepCheckpointStatus";
|
|
337
337
|
const _sCT = "stepCheckpointTime";
|
|
338
|
-
const
|
|
339
|
-
const
|
|
338
|
+
const _sCt = "storageConfigurations";
|
|
339
|
+
const _sCte = "stepCheckpoint";
|
|
340
340
|
const _sGI = "securityGroupIds";
|
|
341
341
|
const _sI = "subnetIds";
|
|
342
342
|
const _sL = "s3Location";
|
|
@@ -350,7 +350,7 @@ const _sTt = "storageType";
|
|
|
350
350
|
const _sc = "schedule";
|
|
351
351
|
const _se = "server";
|
|
352
352
|
const _sk = "skip";
|
|
353
|
-
const
|
|
353
|
+
const _st = "status";
|
|
354
354
|
const _su = "succeeded";
|
|
355
355
|
const _sum = "summary";
|
|
356
356
|
const _t = "tags";
|
|
@@ -367,12 +367,68 @@ const n0 = "com.amazonaws.m2";
|
|
|
367
367
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
368
368
|
import { AccessDeniedException, ConflictException, ExecutionTimeoutException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ServiceUnavailableException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
369
369
|
import { M2ServiceException } from "../models/M2ServiceException";
|
|
370
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
371
|
+
export var M2ServiceException$ = [-3, _s, "M2ServiceException", 0, [], []];
|
|
372
|
+
_s_registry.registerError(M2ServiceException$, M2ServiceException);
|
|
373
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
370
374
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
371
375
|
{ [_e]: _c, [_hE]: 403 },
|
|
372
376
|
[_m],
|
|
373
377
|
[0], 1
|
|
374
378
|
];
|
|
375
|
-
|
|
379
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
380
|
+
export var ConflictException$ = [-3, n0, _CE,
|
|
381
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
382
|
+
[_m, _rI, _rT],
|
|
383
|
+
[0, 0, 0], 1
|
|
384
|
+
];
|
|
385
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
386
|
+
export var ExecutionTimeoutException$ = [-3, n0, _ETE,
|
|
387
|
+
{ [_e]: _se, [_hE]: 504 },
|
|
388
|
+
[_m],
|
|
389
|
+
[0], 1
|
|
390
|
+
];
|
|
391
|
+
n0_registry.registerError(ExecutionTimeoutException$, ExecutionTimeoutException);
|
|
392
|
+
export var InternalServerException$ = [-3, n0, _ISE,
|
|
393
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
394
|
+
[_m, _rAS],
|
|
395
|
+
[0, [1, { [_hH]: _RA }]], 1
|
|
396
|
+
];
|
|
397
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
398
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
399
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
400
|
+
[_m, _rI, _rT],
|
|
401
|
+
[0, 0, 0], 1
|
|
402
|
+
];
|
|
403
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
404
|
+
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
405
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
406
|
+
[_m, _rI, _rT, _sC, _qC],
|
|
407
|
+
[0, 0, 0, 0, 0], 1
|
|
408
|
+
];
|
|
409
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
410
|
+
export var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
411
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
412
|
+
[_m],
|
|
413
|
+
[0], 1
|
|
414
|
+
];
|
|
415
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
416
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
417
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
418
|
+
[_m, _sC, _qC, _rAS],
|
|
419
|
+
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
420
|
+
];
|
|
421
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
422
|
+
export var ValidationException$ = [-3, n0, _VE,
|
|
423
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
424
|
+
[_m, _r, _fL],
|
|
425
|
+
[0, 0, () => ValidationExceptionFieldList], 1
|
|
426
|
+
];
|
|
427
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
428
|
+
export const errorTypeRegistries = [
|
|
429
|
+
_s_registry,
|
|
430
|
+
n0_registry,
|
|
431
|
+
];
|
|
376
432
|
export var AlternateKey$ = [3, n0, _AK,
|
|
377
433
|
0,
|
|
378
434
|
[_o, _l, _n, _aD],
|
|
@@ -380,17 +436,17 @@ export var AlternateKey$ = [3, n0, _AK,
|
|
|
380
436
|
];
|
|
381
437
|
export var ApplicationSummary$ = [3, n0, _AS,
|
|
382
438
|
0,
|
|
383
|
-
[_n, _aI, _aA, _aV,
|
|
439
|
+
[_n, _aI, _aA, _aV, _st, _eT, _cT, _d, _eI, _lST, _vS, _dS, _rA],
|
|
384
440
|
[0, 0, 0, 1, 0, 0, 4, 0, 0, 4, 0, 0, 0], 7
|
|
385
441
|
];
|
|
386
442
|
export var ApplicationVersionSummary$ = [3, n0, _AVS,
|
|
387
443
|
0,
|
|
388
|
-
[_aV,
|
|
444
|
+
[_aV, _st, _cT, _sR],
|
|
389
445
|
[1, 0, 4, 0], 3
|
|
390
446
|
];
|
|
391
447
|
export var BatchJobExecutionSummary$ = [3, n0, _BJES,
|
|
392
448
|
0,
|
|
393
|
-
[_eIx, _aI,
|
|
449
|
+
[_eIx, _aI, _st, _sT, _jI, _jN, _jT, _eTn, _rC, _bJI],
|
|
394
450
|
[0, 0, 0, 4, 0, 0, 0, 4, 0, () => BatchJobIdentifier$], 4
|
|
395
451
|
];
|
|
396
452
|
export var CancelBatchJobExecutionRequest$ = [3, n0, _CBJER,
|
|
@@ -403,12 +459,6 @@ export var CancelBatchJobExecutionResponse$ = [3, n0, _CBJERa,
|
|
|
403
459
|
[],
|
|
404
460
|
[]
|
|
405
461
|
];
|
|
406
|
-
export var ConflictException$ = [-3, n0, _CE,
|
|
407
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
408
|
-
[_m, _rI, _rT],
|
|
409
|
-
[0, 0, 0], 1
|
|
410
|
-
];
|
|
411
|
-
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
412
462
|
export var CreateApplicationRequest$ = [3, n0, _CAR,
|
|
413
463
|
0,
|
|
414
464
|
[_n, _eT, _de, _d, _t, _cTl, _kKI, _rA],
|
|
@@ -451,7 +501,7 @@ export var CreateDeploymentResponse$ = [3, n0, _CDRr,
|
|
|
451
501
|
];
|
|
452
502
|
export var CreateEnvironmentRequest$ = [3, n0, _CER,
|
|
453
503
|
0,
|
|
454
|
-
[_n, _iT, _eT, _d, _eV, _sI, _sGI,
|
|
504
|
+
[_n, _iT, _eT, _d, _eV, _sI, _sGI, _sCt, _pA, _hAC, _t, _pMW, _nT, _cTl, _kKI],
|
|
455
505
|
[0, 0, 0, 0, 0, 64 | 0, 64 | 0, [() => StorageConfigurationList, 0], 2, () => HighAvailabilityConfig$, 128 | 0, 0, 0, [0, 4], 0], 3
|
|
456
506
|
];
|
|
457
507
|
export var CreateEnvironmentResponse$ = [3, n0, _CERr,
|
|
@@ -476,7 +526,7 @@ export var DataSetExportSummary$ = [3, n0, _DSES,
|
|
|
476
526
|
];
|
|
477
527
|
export var DataSetExportTask$ = [3, n0, _DSET,
|
|
478
528
|
0,
|
|
479
|
-
[_tI,
|
|
529
|
+
[_tI, _st, _sum, _sR],
|
|
480
530
|
[0, 0, () => DataSetExportSummary$, 0], 3
|
|
481
531
|
];
|
|
482
532
|
export var DataSetImportItem$ = [3, n0, _DSII,
|
|
@@ -491,7 +541,7 @@ export var DataSetImportSummary$ = [3, n0, _DSIS,
|
|
|
491
541
|
];
|
|
492
542
|
export var DataSetImportTask$ = [3, n0, _DSIT,
|
|
493
543
|
0,
|
|
494
|
-
[_tI,
|
|
544
|
+
[_tI, _st, _sum, _sR],
|
|
495
545
|
[0, 0, () => DataSetImportSummary$, 0], 3
|
|
496
546
|
];
|
|
497
547
|
export var DataSetSummary$ = [3, n0, _DSS,
|
|
@@ -531,12 +581,12 @@ export var DeleteEnvironmentResponse$ = [3, n0, _DERe,
|
|
|
531
581
|
];
|
|
532
582
|
export var DeployedVersionSummary$ = [3, n0, _DVS,
|
|
533
583
|
0,
|
|
534
|
-
[_aV,
|
|
584
|
+
[_aV, _st, _sR],
|
|
535
585
|
[1, 0, 0], 2
|
|
536
586
|
];
|
|
537
587
|
export var DeploymentSummary$ = [3, n0, _DSe,
|
|
538
588
|
0,
|
|
539
|
-
[_dI, _aI, _eI, _aV,
|
|
589
|
+
[_dI, _aI, _eI, _aV, _st, _cT, _sR],
|
|
540
590
|
[0, 0, 0, 1, 0, 4, 0], 6
|
|
541
591
|
];
|
|
542
592
|
export var EfsStorageConfiguration$ = [3, n0, _ESC,
|
|
@@ -551,15 +601,9 @@ export var EngineVersionsSummary$ = [3, n0, _EVS,
|
|
|
551
601
|
];
|
|
552
602
|
export var EnvironmentSummary$ = [3, n0, _ES,
|
|
553
603
|
0,
|
|
554
|
-
[_n, _eA, _eI, _iT,
|
|
604
|
+
[_n, _eA, _eI, _iT, _st, _eT, _eV, _cT, _nT],
|
|
555
605
|
[0, 0, 0, 0, 0, 0, 0, 4, 0], 8
|
|
556
606
|
];
|
|
557
|
-
export var ExecutionTimeoutException$ = [-3, n0, _ETE,
|
|
558
|
-
{ [_e]: _se, [_hE]: 504 },
|
|
559
|
-
[_m],
|
|
560
|
-
[0], 1
|
|
561
|
-
];
|
|
562
|
-
TypeRegistry.for(n0).registerError(ExecutionTimeoutException$, ExecutionTimeoutException);
|
|
563
607
|
export var FileBatchJobDefinition$ = [3, n0, _FBJD,
|
|
564
608
|
0,
|
|
565
609
|
[_fN, _fP],
|
|
@@ -592,7 +636,7 @@ export var GetApplicationRequest$ = [3, n0, _GAR,
|
|
|
592
636
|
];
|
|
593
637
|
export var GetApplicationResponse$ = [3, n0, _GARe,
|
|
594
638
|
0,
|
|
595
|
-
[_n, _aI, _aA,
|
|
639
|
+
[_n, _aI, _aA, _st, _lV, _eT, _cT, _d, _dV, _lG, _lST, _t, _eI, _tGA, _lA, _lP, _lBDN, _sR, _kKI, _rA],
|
|
596
640
|
[0, 0, 0, 0, () => ApplicationVersionSummary$, 0, 4, 0, () => DeployedVersionSummary$, () => LogGroupSummaries, 4, 128 | 0, 0, 64 | 0, 64 | 0, 64 | 1, 0, 0, 0, 0], 7
|
|
597
641
|
];
|
|
598
642
|
export var GetApplicationVersionRequest$ = [3, n0, _GAVR,
|
|
@@ -602,7 +646,7 @@ export var GetApplicationVersionRequest$ = [3, n0, _GAVR,
|
|
|
602
646
|
];
|
|
603
647
|
export var GetApplicationVersionResponse$ = [3, n0, _GAVRe,
|
|
604
648
|
0,
|
|
605
|
-
[_n, _aV, _dC,
|
|
649
|
+
[_n, _aV, _dC, _st, _cT, _d, _sR],
|
|
606
650
|
[0, 1, 0, 0, 4, 0, 0], 5
|
|
607
651
|
];
|
|
608
652
|
export var GetBatchJobExecutionRequest$ = [3, n0, _GBJER,
|
|
@@ -612,7 +656,7 @@ export var GetBatchJobExecutionRequest$ = [3, n0, _GBJER,
|
|
|
612
656
|
];
|
|
613
657
|
export var GetBatchJobExecutionResponse$ = [3, n0, _GBJERe,
|
|
614
658
|
0,
|
|
615
|
-
[_eIx, _aI,
|
|
659
|
+
[_eIx, _aI, _st, _sT, _jI, _jN, _jU, _jT, _eTn, _sR, _rC, _bJI, _jSRM],
|
|
616
660
|
[0, 0, 0, 4, 0, 0, 0, 0, 4, 0, 0, () => BatchJobIdentifier$, () => JobStepRestartMarker$], 4
|
|
617
661
|
];
|
|
618
662
|
export var GetDataSetDetailsRequest$ = [3, n0, _GDSDR,
|
|
@@ -632,7 +676,7 @@ export var GetDataSetExportTaskRequest$ = [3, n0, _GDSETR,
|
|
|
632
676
|
];
|
|
633
677
|
export var GetDataSetExportTaskResponse$ = [3, n0, _GDSETRe,
|
|
634
678
|
0,
|
|
635
|
-
[_tI,
|
|
679
|
+
[_tI, _st, _sum, _sR, _kKA],
|
|
636
680
|
[0, 0, () => DataSetExportSummary$, 0, 0], 2
|
|
637
681
|
];
|
|
638
682
|
export var GetDataSetImportTaskRequest$ = [3, n0, _GDSITR,
|
|
@@ -642,7 +686,7 @@ export var GetDataSetImportTaskRequest$ = [3, n0, _GDSITR,
|
|
|
642
686
|
];
|
|
643
687
|
export var GetDataSetImportTaskResponse$ = [3, n0, _GDSITRe,
|
|
644
688
|
0,
|
|
645
|
-
[_tI,
|
|
689
|
+
[_tI, _st, _sum],
|
|
646
690
|
[0, 0, () => DataSetImportSummary$], 2
|
|
647
691
|
];
|
|
648
692
|
export var GetDeploymentRequest$ = [3, n0, _GDR,
|
|
@@ -652,7 +696,7 @@ export var GetDeploymentRequest$ = [3, n0, _GDR,
|
|
|
652
696
|
];
|
|
653
697
|
export var GetDeploymentResponse$ = [3, n0, _GDRe,
|
|
654
698
|
0,
|
|
655
|
-
[_dI, _aI, _eI, _aV,
|
|
699
|
+
[_dI, _aI, _eI, _aV, _st, _cT, _sR],
|
|
656
700
|
[0, 0, 0, 1, 0, 4, 0], 6
|
|
657
701
|
];
|
|
658
702
|
export var GetEnvironmentRequest$ = [3, n0, _GER,
|
|
@@ -662,7 +706,7 @@ export var GetEnvironmentRequest$ = [3, n0, _GER,
|
|
|
662
706
|
];
|
|
663
707
|
export var GetEnvironmentResponse$ = [3, n0, _GERe,
|
|
664
708
|
0,
|
|
665
|
-
[_n, _eA, _eI, _iT,
|
|
709
|
+
[_n, _eA, _eI, _iT, _st, _eT, _eV, _vI, _sI, _sGI, _cT, _d, _sCt, _t, _hAC, _pA, _aC, _lBA, _sR, _pMW, _pM, _kKI, _nT],
|
|
666
710
|
[0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0, 4, 0, [() => StorageConfigurationList, 0], 128 | 0, () => HighAvailabilityConfig$, 2, 1, 0, 0, 0, () => PendingMaintenance$, 0, 0], 11
|
|
667
711
|
];
|
|
668
712
|
export var GetSignedBluinsightsUrlResponse$ = [3, n0, _GSBUR,
|
|
@@ -675,20 +719,14 @@ export var HighAvailabilityConfig$ = [3, n0, _HAC,
|
|
|
675
719
|
[_dCe],
|
|
676
720
|
[1], 1
|
|
677
721
|
];
|
|
678
|
-
export var InternalServerException$ = [-3, n0, _ISE,
|
|
679
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
680
|
-
[_m, _rAS],
|
|
681
|
-
[0, [1, { [_hH]: _RA }]], 1
|
|
682
|
-
];
|
|
683
|
-
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
684
722
|
export var JobStep$ = [3, n0, _JS,
|
|
685
723
|
0,
|
|
686
|
-
[_sN, _sNt, _pSN, _pSNr, _sCC, _sRt,
|
|
724
|
+
[_sN, _sNt, _pSN, _pSNr, _sCC, _sRt, _sCte, _sCS, _sCT],
|
|
687
725
|
[1, 0, 1, 0, 0, 2, 1, 0, 4]
|
|
688
726
|
];
|
|
689
727
|
export var JobStepRestartMarker$ = [3, n0, _JSRM,
|
|
690
728
|
0,
|
|
691
|
-
[_fSr, _fPS, _tS, _tPS,
|
|
729
|
+
[_fSr, _fPS, _tS, _tPS, _sCte, _sk],
|
|
692
730
|
[0, 0, 0, 0, 1, 2], 1
|
|
693
731
|
];
|
|
694
732
|
export var ListApplicationsRequest$ = [3, n0, _LAR,
|
|
@@ -723,8 +761,8 @@ export var ListBatchJobDefinitionsResponse$ = [3, n0, _LBJDRi,
|
|
|
723
761
|
];
|
|
724
762
|
export var ListBatchJobExecutionsRequest$ = [3, n0, _LBJER,
|
|
725
763
|
0,
|
|
726
|
-
[_aI, _nTe, _mR, _eIxe, _jN,
|
|
727
|
-
[[0, 1], [0, { [_hQ]: _nTe }], [1, { [_hQ]: _mR }], [64 | 0, { [_hQ]: _eIxe }], [0, { [_hQ]: _jN }], [0, { [_hQ]:
|
|
764
|
+
[_aI, _nTe, _mR, _eIxe, _jN, _st, _sA, _sB],
|
|
765
|
+
[[0, 1], [0, { [_hQ]: _nTe }], [1, { [_hQ]: _mR }], [64 | 0, { [_hQ]: _eIxe }], [0, { [_hQ]: _jN }], [0, { [_hQ]: _st }], [4, { [_hQ]: _sA }], [4, { [_hQ]: _sB }]], 1
|
|
728
766
|
];
|
|
729
767
|
export var ListBatchJobExecutionsResponse$ = [3, n0, _LBJERi,
|
|
730
768
|
0,
|
|
@@ -856,12 +894,6 @@ export var RecordLength$ = [3, n0, _RL,
|
|
|
856
894
|
[_mi, _ma],
|
|
857
895
|
[1, 1], 2
|
|
858
896
|
];
|
|
859
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
860
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
861
|
-
[_m, _rI, _rT],
|
|
862
|
-
[0, 0, 0], 1
|
|
863
|
-
];
|
|
864
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
865
897
|
export var RestartBatchJobIdentifier$ = [3, n0, _RBJI,
|
|
866
898
|
0,
|
|
867
899
|
[_eIx, _jSRM],
|
|
@@ -882,18 +914,6 @@ export var ScriptBatchJobIdentifier$ = [3, n0, _SBJIc,
|
|
|
882
914
|
[_sNc],
|
|
883
915
|
[0], 1
|
|
884
916
|
];
|
|
885
|
-
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
886
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
887
|
-
[_m, _rI, _rT, _sCe, _qC],
|
|
888
|
-
[0, 0, 0, 0, 0], 1
|
|
889
|
-
];
|
|
890
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
891
|
-
export var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
892
|
-
{ [_e]: _se, [_hE]: 503 },
|
|
893
|
-
[_m],
|
|
894
|
-
[0], 1
|
|
895
|
-
];
|
|
896
|
-
TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
897
917
|
export var StartApplicationRequest$ = [3, n0, _SAR,
|
|
898
918
|
0,
|
|
899
919
|
[_aI],
|
|
@@ -934,12 +954,6 @@ export var TagResourceResponse$ = [3, n0, _TRRa,
|
|
|
934
954
|
[],
|
|
935
955
|
[]
|
|
936
956
|
];
|
|
937
|
-
export var ThrottlingException$ = [-3, n0, _TE,
|
|
938
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
939
|
-
[_m, _sCe, _qC, _rAS],
|
|
940
|
-
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
941
|
-
];
|
|
942
|
-
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
943
957
|
export var UntagResourceRequest$ = [3, n0, _URR,
|
|
944
958
|
0,
|
|
945
959
|
[_rAe, _tK],
|
|
@@ -970,12 +984,6 @@ export var UpdateEnvironmentResponse$ = [3, n0, _UERp,
|
|
|
970
984
|
[_eI],
|
|
971
985
|
[0], 1
|
|
972
986
|
];
|
|
973
|
-
export var ValidationException$ = [-3, n0, _VE,
|
|
974
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
975
|
-
[_m, _r, _fL],
|
|
976
|
-
[0, 0, () => ValidationExceptionFieldList], 1
|
|
977
|
-
];
|
|
978
|
-
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
979
987
|
export var ValidationExceptionField$ = [3, n0, _VEF,
|
|
980
988
|
0,
|
|
981
989
|
[_n, _m],
|
|
@@ -992,8 +1000,6 @@ export var VsamDetailAttributes$ = [3, n0, _VDA,
|
|
|
992
1000
|
[0, 0, 2, 2, () => PrimaryKey$, () => AlternateKeyList]
|
|
993
1001
|
];
|
|
994
1002
|
var __Unit = "unit";
|
|
995
|
-
export var M2ServiceException$ = [-3, _sm, "M2ServiceException", 0, [], []];
|
|
996
|
-
TypeRegistry.for(_sm).registerError(M2ServiceException$, M2ServiceException);
|
|
997
1003
|
var AlternateKeyList = [1, n0, _AKL,
|
|
998
1004
|
0, () => AlternateKey$
|
|
999
1005
|
];
|
|
@@ -1,12 +1,27 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
|
+
export declare var M2ServiceException$: StaticErrorSchema;
|
|
2
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
6
|
+
export declare var ExecutionTimeoutException$: StaticErrorSchema;
|
|
7
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
8
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
9
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
10
|
+
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
11
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
12
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
13
|
+
/**
|
|
14
|
+
* TypeRegistry instances containing modeled errors.
|
|
15
|
+
* @internal
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
18
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
3
19
|
export declare var AlternateKey$: StaticStructureSchema;
|
|
4
20
|
export declare var ApplicationSummary$: StaticStructureSchema;
|
|
5
21
|
export declare var ApplicationVersionSummary$: StaticStructureSchema;
|
|
6
22
|
export declare var BatchJobExecutionSummary$: StaticStructureSchema;
|
|
7
23
|
export declare var CancelBatchJobExecutionRequest$: StaticStructureSchema;
|
|
8
24
|
export declare var CancelBatchJobExecutionResponse$: StaticStructureSchema;
|
|
9
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
10
25
|
export declare var CreateApplicationRequest$: StaticStructureSchema;
|
|
11
26
|
export declare var CreateApplicationResponse$: StaticStructureSchema;
|
|
12
27
|
export declare var CreateDataSetExportTaskRequest$: StaticStructureSchema;
|
|
@@ -36,7 +51,6 @@ export declare var DeploymentSummary$: StaticStructureSchema;
|
|
|
36
51
|
export declare var EfsStorageConfiguration$: StaticStructureSchema;
|
|
37
52
|
export declare var EngineVersionsSummary$: StaticStructureSchema;
|
|
38
53
|
export declare var EnvironmentSummary$: StaticStructureSchema;
|
|
39
|
-
export declare var ExecutionTimeoutException$: StaticErrorSchema;
|
|
40
54
|
export declare var FileBatchJobDefinition$: StaticStructureSchema;
|
|
41
55
|
export declare var FileBatchJobIdentifier$: StaticStructureSchema;
|
|
42
56
|
export declare var FsxStorageConfiguration$: StaticStructureSchema;
|
|
@@ -60,7 +74,6 @@ export declare var GetEnvironmentRequest$: StaticStructureSchema;
|
|
|
60
74
|
export declare var GetEnvironmentResponse$: StaticStructureSchema;
|
|
61
75
|
export declare var GetSignedBluinsightsUrlResponse$: StaticStructureSchema;
|
|
62
76
|
export declare var HighAvailabilityConfig$: StaticStructureSchema;
|
|
63
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
64
77
|
export declare var JobStep$: StaticStructureSchema;
|
|
65
78
|
export declare var JobStepRestartMarker$: StaticStructureSchema;
|
|
66
79
|
export declare var ListApplicationsRequest$: StaticStructureSchema;
|
|
@@ -96,13 +109,10 @@ export declare var PrimaryKey$: StaticStructureSchema;
|
|
|
96
109
|
export declare var PsAttributes$: StaticStructureSchema;
|
|
97
110
|
export declare var PsDetailAttributes$: StaticStructureSchema;
|
|
98
111
|
export declare var RecordLength$: StaticStructureSchema;
|
|
99
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
100
112
|
export declare var RestartBatchJobIdentifier$: StaticStructureSchema;
|
|
101
113
|
export declare var S3BatchJobIdentifier$: StaticStructureSchema;
|
|
102
114
|
export declare var ScriptBatchJobDefinition$: StaticStructureSchema;
|
|
103
115
|
export declare var ScriptBatchJobIdentifier$: StaticStructureSchema;
|
|
104
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
105
|
-
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
106
116
|
export declare var StartApplicationRequest$: StaticStructureSchema;
|
|
107
117
|
export declare var StartApplicationResponse$: StaticStructureSchema;
|
|
108
118
|
export declare var StartBatchJobRequest$: StaticStructureSchema;
|
|
@@ -111,18 +121,15 @@ export declare var StopApplicationRequest$: StaticStructureSchema;
|
|
|
111
121
|
export declare var StopApplicationResponse$: StaticStructureSchema;
|
|
112
122
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
113
123
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
114
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
115
124
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
116
125
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
117
126
|
export declare var UpdateApplicationRequest$: StaticStructureSchema;
|
|
118
127
|
export declare var UpdateApplicationResponse$: StaticStructureSchema;
|
|
119
128
|
export declare var UpdateEnvironmentRequest$: StaticStructureSchema;
|
|
120
129
|
export declare var UpdateEnvironmentResponse$: StaticStructureSchema;
|
|
121
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
122
130
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
123
131
|
export declare var VsamAttributes$: StaticStructureSchema;
|
|
124
132
|
export declare var VsamDetailAttributes$: StaticStructureSchema;
|
|
125
|
-
export declare var M2ServiceException$: StaticErrorSchema;
|
|
126
133
|
export declare var BatchJobDefinition$: StaticUnionSchema;
|
|
127
134
|
export declare var BatchJobIdentifier$: StaticUnionSchema;
|
|
128
135
|
export declare var DatasetDetailOrgAttributes$: StaticUnionSchema;
|
|
@@ -1,17 +1,27 @@
|
|
|
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 M2ServiceException$: StaticErrorSchema;
|
|
7
9
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
10
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
11
|
+
export declare var ExecutionTimeoutException$: StaticErrorSchema;
|
|
12
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
13
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
14
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
15
|
+
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
16
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
17
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
18
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
8
19
|
export declare var AlternateKey$: StaticStructureSchema;
|
|
9
20
|
export declare var ApplicationSummary$: StaticStructureSchema;
|
|
10
21
|
export declare var ApplicationVersionSummary$: StaticStructureSchema;
|
|
11
22
|
export declare var BatchJobExecutionSummary$: StaticStructureSchema;
|
|
12
23
|
export declare var CancelBatchJobExecutionRequest$: StaticStructureSchema;
|
|
13
24
|
export declare var CancelBatchJobExecutionResponse$: StaticStructureSchema;
|
|
14
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
15
25
|
export declare var CreateApplicationRequest$: StaticStructureSchema;
|
|
16
26
|
export declare var CreateApplicationResponse$: StaticStructureSchema;
|
|
17
27
|
export declare var CreateDataSetExportTaskRequest$: StaticStructureSchema;
|
|
@@ -41,7 +51,6 @@ export declare var DeploymentSummary$: StaticStructureSchema;
|
|
|
41
51
|
export declare var EfsStorageConfiguration$: StaticStructureSchema;
|
|
42
52
|
export declare var EngineVersionsSummary$: StaticStructureSchema;
|
|
43
53
|
export declare var EnvironmentSummary$: StaticStructureSchema;
|
|
44
|
-
export declare var ExecutionTimeoutException$: StaticErrorSchema;
|
|
45
54
|
export declare var FileBatchJobDefinition$: StaticStructureSchema;
|
|
46
55
|
export declare var FileBatchJobIdentifier$: StaticStructureSchema;
|
|
47
56
|
export declare var FsxStorageConfiguration$: StaticStructureSchema;
|
|
@@ -65,7 +74,6 @@ export declare var GetEnvironmentRequest$: StaticStructureSchema;
|
|
|
65
74
|
export declare var GetEnvironmentResponse$: StaticStructureSchema;
|
|
66
75
|
export declare var GetSignedBluinsightsUrlResponse$: StaticStructureSchema;
|
|
67
76
|
export declare var HighAvailabilityConfig$: StaticStructureSchema;
|
|
68
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
69
77
|
export declare var JobStep$: StaticStructureSchema;
|
|
70
78
|
export declare var JobStepRestartMarker$: StaticStructureSchema;
|
|
71
79
|
export declare var ListApplicationsRequest$: StaticStructureSchema;
|
|
@@ -101,13 +109,10 @@ export declare var PrimaryKey$: StaticStructureSchema;
|
|
|
101
109
|
export declare var PsAttributes$: StaticStructureSchema;
|
|
102
110
|
export declare var PsDetailAttributes$: StaticStructureSchema;
|
|
103
111
|
export declare var RecordLength$: StaticStructureSchema;
|
|
104
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
105
112
|
export declare var RestartBatchJobIdentifier$: StaticStructureSchema;
|
|
106
113
|
export declare var S3BatchJobIdentifier$: StaticStructureSchema;
|
|
107
114
|
export declare var ScriptBatchJobDefinition$: StaticStructureSchema;
|
|
108
115
|
export declare var ScriptBatchJobIdentifier$: StaticStructureSchema;
|
|
109
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
110
|
-
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
111
116
|
export declare var StartApplicationRequest$: StaticStructureSchema;
|
|
112
117
|
export declare var StartApplicationResponse$: StaticStructureSchema;
|
|
113
118
|
export declare var StartBatchJobRequest$: StaticStructureSchema;
|
|
@@ -116,18 +121,15 @@ export declare var StopApplicationRequest$: StaticStructureSchema;
|
|
|
116
121
|
export declare var StopApplicationResponse$: StaticStructureSchema;
|
|
117
122
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
118
123
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
119
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
120
124
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
121
125
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
122
126
|
export declare var UpdateApplicationRequest$: StaticStructureSchema;
|
|
123
127
|
export declare var UpdateApplicationResponse$: StaticStructureSchema;
|
|
124
128
|
export declare var UpdateEnvironmentRequest$: StaticStructureSchema;
|
|
125
129
|
export declare var UpdateEnvironmentResponse$: StaticStructureSchema;
|
|
126
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
127
130
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
128
131
|
export declare var VsamAttributes$: StaticStructureSchema;
|
|
129
132
|
export declare var VsamDetailAttributes$: StaticStructureSchema;
|
|
130
|
-
export declare var M2ServiceException$: StaticErrorSchema;
|
|
131
133
|
export declare var BatchJobDefinition$: StaticUnionSchema;
|
|
132
134
|
export declare var BatchJobIdentifier$: StaticUnionSchema;
|
|
133
135
|
export declare var DatasetDetailOrgAttributes$: StaticUnionSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-m2",
|
|
3
3
|
"description": "AWS SDK for JavaScript M2 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-m2",
|
|
@@ -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",
|