@aws-sdk/client-pcs 3.952.0 → 3.953.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.
Files changed (39) hide show
  1. package/dist-cjs/index.js +320 -216
  2. package/dist-cjs/runtimeConfig.shared.js +6 -6
  3. package/dist-es/commands/CreateClusterCommand.js +2 -2
  4. package/dist-es/commands/CreateComputeNodeGroupCommand.js +2 -2
  5. package/dist-es/commands/CreateQueueCommand.js +2 -2
  6. package/dist-es/commands/DeleteClusterCommand.js +2 -2
  7. package/dist-es/commands/DeleteComputeNodeGroupCommand.js +2 -2
  8. package/dist-es/commands/DeleteQueueCommand.js +2 -2
  9. package/dist-es/commands/GetClusterCommand.js +2 -2
  10. package/dist-es/commands/GetComputeNodeGroupCommand.js +2 -2
  11. package/dist-es/commands/GetQueueCommand.js +2 -2
  12. package/dist-es/commands/ListClustersCommand.js +2 -2
  13. package/dist-es/commands/ListComputeNodeGroupsCommand.js +2 -2
  14. package/dist-es/commands/ListQueuesCommand.js +2 -2
  15. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  16. package/dist-es/commands/RegisterComputeNodeGroupInstanceCommand.js +2 -2
  17. package/dist-es/commands/TagResourceCommand.js +2 -2
  18. package/dist-es/commands/UntagResourceCommand.js +2 -2
  19. package/dist-es/commands/UpdateClusterCommand.js +2 -2
  20. package/dist-es/commands/UpdateComputeNodeGroupCommand.js +2 -2
  21. package/dist-es/commands/UpdateQueueCommand.js +2 -2
  22. package/dist-es/index.js +1 -0
  23. package/dist-es/runtimeConfig.shared.js +6 -6
  24. package/dist-es/schemas/schemas_0.js +183 -182
  25. package/dist-types/PCSClient.d.ts +1 -10
  26. package/dist-types/index.d.ts +1 -0
  27. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  28. package/dist-types/runtimeConfig.d.ts +6 -2
  29. package/dist-types/runtimeConfig.native.d.ts +6 -2
  30. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  31. package/dist-types/schemas/schemas_0.d.ts +104 -120
  32. package/dist-types/ts3.4/PCSClient.d.ts +0 -4
  33. package/dist-types/ts3.4/index.d.ts +1 -0
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  37. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  38. package/dist-types/ts3.4/schemas/schemas_0.d.ts +103 -121
  39. package/package.json +34 -34
package/dist-cjs/index.js CHANGED
@@ -110,14 +110,14 @@ class PCSClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- let PCSServiceException$1 = class PCSServiceException extends smithyClient.ServiceException {
113
+ class PCSServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, PCSServiceException.prototype);
117
117
  }
118
- };
118
+ }
119
119
 
120
- let AccessDeniedException$1 = class AccessDeniedException extends PCSServiceException$1 {
120
+ class AccessDeniedException extends PCSServiceException {
121
121
  name = "AccessDeniedException";
122
122
  $fault = "client";
123
123
  constructor(opts) {
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends PCSServiceExce
128
128
  });
129
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
130
130
  }
131
- };
132
- let ConflictException$1 = class ConflictException extends PCSServiceException$1 {
131
+ }
132
+ class ConflictException extends PCSServiceException {
133
133
  name = "ConflictException";
134
134
  $fault = "client";
135
135
  resourceId;
@@ -144,8 +144,8 @@ let ConflictException$1 = class ConflictException extends PCSServiceException$1
144
144
  this.resourceId = opts.resourceId;
145
145
  this.resourceType = opts.resourceType;
146
146
  }
147
- };
148
- let InternalServerException$1 = class InternalServerException extends PCSServiceException$1 {
147
+ }
148
+ class InternalServerException extends PCSServiceException {
149
149
  name = "InternalServerException";
150
150
  $fault = "server";
151
151
  $retryable = {};
@@ -157,8 +157,8 @@ let InternalServerException$1 = class InternalServerException extends PCSService
157
157
  });
158
158
  Object.setPrototypeOf(this, InternalServerException.prototype);
159
159
  }
160
- };
161
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends PCSServiceException$1 {
160
+ }
161
+ class ResourceNotFoundException extends PCSServiceException {
162
162
  name = "ResourceNotFoundException";
163
163
  $fault = "client";
164
164
  resourceId;
@@ -173,8 +173,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends PCSSer
173
173
  this.resourceId = opts.resourceId;
174
174
  this.resourceType = opts.resourceType;
175
175
  }
176
- };
177
- let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends PCSServiceException$1 {
176
+ }
177
+ class ServiceQuotaExceededException extends PCSServiceException {
178
178
  name = "ServiceQuotaExceededException";
179
179
  $fault = "client";
180
180
  serviceCode;
@@ -193,8 +193,8 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
193
193
  this.resourceType = opts.resourceType;
194
194
  this.quotaCode = opts.quotaCode;
195
195
  }
196
- };
197
- let ThrottlingException$1 = class ThrottlingException extends PCSServiceException$1 {
196
+ }
197
+ class ThrottlingException extends PCSServiceException {
198
198
  name = "ThrottlingException";
199
199
  $fault = "client";
200
200
  $retryable = {};
@@ -208,8 +208,8 @@ let ThrottlingException$1 = class ThrottlingException extends PCSServiceExceptio
208
208
  Object.setPrototypeOf(this, ThrottlingException.prototype);
209
209
  this.retryAfterSeconds = opts.retryAfterSeconds;
210
210
  }
211
- };
212
- let ValidationException$1 = class ValidationException extends PCSServiceException$1 {
211
+ }
212
+ class ValidationException extends PCSServiceException {
213
213
  name = "ValidationException";
214
214
  $fault = "client";
215
215
  reason;
@@ -224,7 +224,7 @@ let ValidationException$1 = class ValidationException extends PCSServiceExceptio
224
224
  this.reason = opts.reason;
225
225
  this.fieldList = opts.fieldList;
226
226
  }
227
- };
227
+ }
228
228
 
229
229
  const _A = "Accounting";
230
230
  const _ADE = "AccessDeniedException";
@@ -426,11 +426,11 @@ const _ty = "type";
426
426
  const _v = "version";
427
427
  const n0 = "com.amazonaws.pcs";
428
428
  var SharedSecret = [0, n0, _SS, 8, 0];
429
- var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
430
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
431
- var Accounting = [3, n0, _A, 0, [_dPTID, _mo], [1, 0]];
432
- var AccountingRequest = [3, n0, _AR, 0, [_dPTID, _mo], [1, 0]];
433
- var Cluster = [
429
+ var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
430
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
431
+ var Accounting$ = [3, n0, _A, 0, [_dPTID, _mo], [1, 0]];
432
+ var AccountingRequest$ = [3, n0, _AR, 0, [_dPTID, _mo], [1, 0]];
433
+ var Cluster$ = [
434
434
  3,
435
435
  n0,
436
436
  _C,
@@ -443,32 +443,32 @@ var Cluster = [
443
443
  0,
444
444
  5,
445
445
  5,
446
- () => Scheduler,
446
+ () => Scheduler$,
447
447
  0,
448
- () => ClusterSlurmConfiguration,
449
- () => Networking,
448
+ () => ClusterSlurmConfiguration$,
449
+ () => Networking$,
450
450
  () => Endpoints,
451
451
  () => ErrorInfoList,
452
452
  ],
453
453
  ];
454
- var ClusterSlurmConfiguration = [
454
+ var ClusterSlurmConfiguration$ = [
455
455
  3,
456
456
  n0,
457
457
  _CSC,
458
458
  0,
459
459
  [_sDITIS, _sCS, _aK, _jA, _ac, _sR],
460
- [1, () => SlurmCustomSettings, () => SlurmAuthKey, () => JwtAuth, () => Accounting, () => SlurmRest],
460
+ [1, () => SlurmCustomSettings, () => SlurmAuthKey$, () => JwtAuth$, () => Accounting$, () => SlurmRest$],
461
461
  ];
462
- var ClusterSlurmConfigurationRequest = [
462
+ var ClusterSlurmConfigurationRequest$ = [
463
463
  3,
464
464
  n0,
465
465
  _CSCR,
466
466
  0,
467
467
  [_sDITIS, _sCS, _ac, _sR],
468
- [1, () => SlurmCustomSettings, () => AccountingRequest, () => SlurmRestRequest],
468
+ [1, () => SlurmCustomSettings, () => AccountingRequest$, () => SlurmRestRequest$],
469
469
  ];
470
- var ClusterSummary = [3, n0, _CS, 0, [_n, _i, _a, _cA, _mA, _s], [0, 0, 0, 5, 5, 0]];
471
- var ComputeNodeGroup = [
470
+ var ClusterSummary$ = [3, n0, _CS, 0, [_n, _i, _a, _cA, _mA, _s], [0, 0, 0, 5, 5, 0]];
471
+ var ComputeNodeGroup$ = [
472
472
  3,
473
473
  n0,
474
474
  _CNG,
@@ -485,17 +485,17 @@ var ComputeNodeGroup = [
485
485
  0,
486
486
  64 | 0,
487
487
  0,
488
- () => CustomLaunchTemplate,
488
+ () => CustomLaunchTemplate$,
489
489
  0,
490
- () => ScalingConfiguration,
490
+ () => ScalingConfiguration$,
491
491
  () => InstanceList,
492
- () => SpotOptions,
493
- () => ComputeNodeGroupSlurmConfiguration,
492
+ () => SpotOptions$,
493
+ () => ComputeNodeGroupSlurmConfiguration$,
494
494
  () => ErrorInfoList,
495
495
  ],
496
496
  ];
497
- var ComputeNodeGroupConfiguration = [3, n0, _CNGC, 0, [_cNGI], [0]];
498
- var ComputeNodeGroupSlurmConfiguration = [
497
+ var ComputeNodeGroupConfiguration$ = [3, n0, _CNGC, 0, [_cNGI], [0]];
498
+ var ComputeNodeGroupSlurmConfiguration$ = [
499
499
  3,
500
500
  n0,
501
501
  _CNGSC,
@@ -503,7 +503,7 @@ var ComputeNodeGroupSlurmConfiguration = [
503
503
  [_sCS],
504
504
  [() => SlurmCustomSettings],
505
505
  ];
506
- var ComputeNodeGroupSlurmConfigurationRequest = [
506
+ var ComputeNodeGroupSlurmConfigurationRequest$ = [
507
507
  3,
508
508
  n0,
509
509
  _CNGSCR,
@@ -511,7 +511,7 @@ var ComputeNodeGroupSlurmConfigurationRequest = [
511
511
  [_sCS],
512
512
  [() => SlurmCustomSettings],
513
513
  ];
514
- var ComputeNodeGroupSummary = [
514
+ var ComputeNodeGroupSummary$ = [
515
515
  3,
516
516
  n0,
517
517
  _CNGS,
@@ -519,18 +519,18 @@ var ComputeNodeGroupSummary = [
519
519
  [_n, _i, _a, _cI, _cA, _mA, _s],
520
520
  [0, 0, 0, 0, 5, 5, 0],
521
521
  ];
522
- var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
523
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
524
- var CreateClusterRequest = [
522
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
523
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
524
+ var CreateClusterRequest$ = [
525
525
  3,
526
526
  n0,
527
527
  _CCR,
528
528
  0,
529
529
  [_cN, _sc, _si, _ne, _sC, _cT, _t],
530
- [0, () => SchedulerRequest, 0, () => NetworkingRequest, () => ClusterSlurmConfigurationRequest, [0, 4], 128 | 0],
530
+ [0, () => SchedulerRequest$, 0, () => NetworkingRequest$, () => ClusterSlurmConfigurationRequest$, [0, 4], 128 | 0],
531
531
  ];
532
- var CreateClusterResponse = [3, n0, _CCRr, 0, [_cl], [() => Cluster]];
533
- var CreateComputeNodeGroupRequest = [
532
+ var CreateClusterResponse$ = [3, n0, _CCRr, 0, [_cl], [() => Cluster$]];
533
+ var CreateComputeNodeGroupRequest$ = [
534
534
  3,
535
535
  n0,
536
536
  _CCNGR,
@@ -542,37 +542,37 @@ var CreateComputeNodeGroupRequest = [
542
542
  0,
543
543
  64 | 0,
544
544
  0,
545
- () => CustomLaunchTemplate,
545
+ () => CustomLaunchTemplate$,
546
546
  0,
547
- () => ScalingConfigurationRequest,
547
+ () => ScalingConfigurationRequest$,
548
548
  () => InstanceList,
549
- () => SpotOptions,
550
- () => ComputeNodeGroupSlurmConfigurationRequest,
549
+ () => SpotOptions$,
550
+ () => ComputeNodeGroupSlurmConfigurationRequest$,
551
551
  [0, 4],
552
552
  128 | 0,
553
553
  ],
554
554
  ];
555
- var CreateComputeNodeGroupResponse = [
555
+ var CreateComputeNodeGroupResponse$ = [
556
556
  3,
557
557
  n0,
558
558
  _CCNGRr,
559
559
  0,
560
560
  [_cNG],
561
- [() => ComputeNodeGroup],
561
+ [() => ComputeNodeGroup$],
562
562
  ];
563
- var CreateQueueRequest = [
563
+ var CreateQueueRequest$ = [
564
564
  3,
565
565
  n0,
566
566
  _CQR,
567
567
  0,
568
568
  [_cIl, _qN, _cNGC, _sC, _cT, _t],
569
- [0, 0, () => ComputeNodeGroupConfigurationList, () => QueueSlurmConfigurationRequest, [0, 4], 128 | 0],
569
+ [0, 0, () => ComputeNodeGroupConfigurationList, () => QueueSlurmConfigurationRequest$, [0, 4], 128 | 0],
570
570
  ];
571
- var CreateQueueResponse = [3, n0, _CQRr, 0, [_q], [() => Queue]];
572
- var CustomLaunchTemplate = [3, n0, _CLT, 0, [_i, _v], [0, 0]];
573
- var DeleteClusterRequest = [3, n0, _DCR, 0, [_cIl, _cT], [0, [0, 4]]];
574
- var DeleteClusterResponse = [3, n0, _DCRe, 0, [], []];
575
- var DeleteComputeNodeGroupRequest = [
571
+ var CreateQueueResponse$ = [3, n0, _CQRr, 0, [_q], [() => Queue$]];
572
+ var CustomLaunchTemplate$ = [3, n0, _CLT, 0, [_i, _v], [0, 0]];
573
+ var DeleteClusterRequest$ = [3, n0, _DCR, 0, [_cIl, _cT], [0, [0, 4]]];
574
+ var DeleteClusterResponse$ = [3, n0, _DCRe, 0, [], []];
575
+ var DeleteComputeNodeGroupRequest$ = [
576
576
  3,
577
577
  n0,
578
578
  _DCNGR,
@@ -580,23 +580,23 @@ var DeleteComputeNodeGroupRequest = [
580
580
  [_cIl, _cNGIo, _cT],
581
581
  [0, 0, [0, 4]],
582
582
  ];
583
- var DeleteComputeNodeGroupResponse = [3, n0, _DCNGRe, 0, [], []];
584
- var DeleteQueueRequest = [3, n0, _DQR, 0, [_cIl, _qI, _cT], [0, 0, [0, 4]]];
585
- var DeleteQueueResponse = [3, n0, _DQRe, 0, [], []];
586
- var Endpoint = [3, n0, _E, 0, [_ty, _pIA, _pIAu, _iA, _p], [0, 0, 0, 0, 0]];
587
- var ErrorInfo = [3, n0, _EI, 0, [_co, _m], [0, 0]];
588
- var GetClusterRequest = [3, n0, _GCR, 0, [_cIl], [0]];
589
- var GetClusterResponse = [3, n0, _GCRe, 0, [_cl], [() => Cluster]];
590
- var GetComputeNodeGroupRequest = [3, n0, _GCNGR, 0, [_cIl, _cNGIo], [0, 0]];
591
- var GetComputeNodeGroupResponse = [3, n0, _GCNGRe, 0, [_cNG], [() => ComputeNodeGroup]];
592
- var GetQueueRequest = [3, n0, _GQR, 0, [_cIl, _qI], [0, 0]];
593
- var GetQueueResponse = [3, n0, _GQRe, 0, [_q], [() => Queue]];
594
- var InstanceConfig = [3, n0, _IC, 0, [_iT], [0]];
595
- var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
596
- schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
597
- var JwtAuth = [3, n0, _JA, 0, [_jK], [() => JwtKey]];
598
- var JwtKey = [3, n0, _JK, 0, [_sA, _sV], [0, 0]];
599
- var ListClustersRequest = [
583
+ var DeleteComputeNodeGroupResponse$ = [3, n0, _DCNGRe, 0, [], []];
584
+ var DeleteQueueRequest$ = [3, n0, _DQR, 0, [_cIl, _qI, _cT], [0, 0, [0, 4]]];
585
+ var DeleteQueueResponse$ = [3, n0, _DQRe, 0, [], []];
586
+ var Endpoint$ = [3, n0, _E, 0, [_ty, _pIA, _pIAu, _iA, _p], [0, 0, 0, 0, 0]];
587
+ var ErrorInfo$ = [3, n0, _EI, 0, [_co, _m], [0, 0]];
588
+ var GetClusterRequest$ = [3, n0, _GCR, 0, [_cIl], [0]];
589
+ var GetClusterResponse$ = [3, n0, _GCRe, 0, [_cl], [() => Cluster$]];
590
+ var GetComputeNodeGroupRequest$ = [3, n0, _GCNGR, 0, [_cIl, _cNGIo], [0, 0]];
591
+ var GetComputeNodeGroupResponse$ = [3, n0, _GCNGRe, 0, [_cNG], [() => ComputeNodeGroup$]];
592
+ var GetQueueRequest$ = [3, n0, _GQR, 0, [_cIl, _qI], [0, 0]];
593
+ var GetQueueResponse$ = [3, n0, _GQRe, 0, [_q], [() => Queue$]];
594
+ var InstanceConfig$ = [3, n0, _IC, 0, [_iT], [0]];
595
+ var InternalServerException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
596
+ schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
597
+ var JwtAuth$ = [3, n0, _JA, 0, [_jK], [() => JwtKey$]];
598
+ var JwtKey$ = [3, n0, _JK, 0, [_sA, _sV], [0, 0]];
599
+ var ListClustersRequest$ = [
600
600
  3,
601
601
  n0,
602
602
  _LCR,
@@ -607,9 +607,9 @@ var ListClustersRequest = [
607
607
  [1, { [_hQ]: _mR }],
608
608
  ],
609
609
  ];
610
- var ListClustersResponse = [3, n0, _LCRi, 0, [_clu, _nT], [() => ClusterList, 0]];
611
- var ListComputeNodeGroupsRequest = [3, n0, _LCNGR, 0, [_cIl, _nT, _mR], [0, 0, 1]];
612
- var ListComputeNodeGroupsResponse = [
610
+ var ListClustersResponse$ = [3, n0, _LCRi, 0, [_clu, _nT], [() => ClusterList, 0]];
611
+ var ListComputeNodeGroupsRequest$ = [3, n0, _LCNGR, 0, [_cIl, _nT, _mR], [0, 0, 1]];
612
+ var ListComputeNodeGroupsResponse$ = [
613
613
  3,
614
614
  n0,
615
615
  _LCNGRi,
@@ -617,22 +617,22 @@ var ListComputeNodeGroupsResponse = [
617
617
  [_cNGo, _nT],
618
618
  [() => ComputeNodeGroupList, 0],
619
619
  ];
620
- var ListQueuesRequest = [3, n0, _LQR, 0, [_cIl, _nT, _mR], [0, 0, 1]];
621
- var ListQueuesResponse = [3, n0, _LQRi, 0, [_qu, _nT], [() => QueueList, 0]];
622
- var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
623
- var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
624
- var Networking = [3, n0, _N, 0, [_sI, _sGI, _nTe], [64 | 0, 64 | 0, 0]];
625
- var NetworkingRequest = [3, n0, _NR, 0, [_sI, _sGI, _nTe], [64 | 0, 64 | 0, 0]];
626
- var Queue = [
620
+ var ListQueuesRequest$ = [3, n0, _LQR, 0, [_cIl, _nT, _mR], [0, 0, 1]];
621
+ var ListQueuesResponse$ = [3, n0, _LQRi, 0, [_qu, _nT], [() => QueueList, 0]];
622
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [0]];
623
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
624
+ var Networking$ = [3, n0, _N, 0, [_sI, _sGI, _nTe], [64 | 0, 64 | 0, 0]];
625
+ var NetworkingRequest$ = [3, n0, _NR, 0, [_sI, _sGI, _nTe], [64 | 0, 64 | 0, 0]];
626
+ var Queue$ = [
627
627
  3,
628
628
  n0,
629
629
  _Q,
630
630
  0,
631
631
  [_n, _i, _a, _cI, _cA, _mA, _s, _cNGC, _sC, _eI],
632
- [0, 0, 0, 0, 5, 5, 0, () => ComputeNodeGroupConfigurationList, () => QueueSlurmConfiguration, () => ErrorInfoList],
632
+ [0, 0, 0, 0, 5, 5, 0, () => ComputeNodeGroupConfigurationList, () => QueueSlurmConfiguration$, () => ErrorInfoList],
633
633
  ];
634
- var QueueSlurmConfiguration = [3, n0, _QSC, 0, [_sCS], [() => SlurmCustomSettings]];
635
- var QueueSlurmConfigurationRequest = [
634
+ var QueueSlurmConfiguration$ = [3, n0, _QSC, 0, [_sCS], [() => SlurmCustomSettings]];
635
+ var QueueSlurmConfigurationRequest$ = [
636
636
  3,
637
637
  n0,
638
638
  _QSCR,
@@ -640,7 +640,7 @@ var QueueSlurmConfigurationRequest = [
640
640
  [_sCS],
641
641
  [() => SlurmCustomSettings],
642
642
  ];
643
- var QueueSummary = [
643
+ var QueueSummary$ = [
644
644
  3,
645
645
  n0,
646
646
  _QS,
@@ -648,8 +648,8 @@ var QueueSummary = [
648
648
  [_n, _i, _a, _cI, _cA, _mA, _s],
649
649
  [0, 0, 0, 0, 5, 5, 0],
650
650
  ];
651
- var RegisterComputeNodeGroupInstanceRequest = [3, n0, _RCNGIR, 0, [_cIl, _bI], [0, 0]];
652
- var RegisterComputeNodeGroupInstanceResponse = [
651
+ var RegisterComputeNodeGroupInstanceRequest$ = [3, n0, _RCNGIR, 0, [_cIl, _bI], [0, 0]];
652
+ var RegisterComputeNodeGroupInstanceResponse$ = [
653
653
  3,
654
654
  n0,
655
655
  _RCNGIRe,
@@ -657,7 +657,7 @@ var RegisterComputeNodeGroupInstanceResponse = [
657
657
  [_nID, _sS, _en],
658
658
  [0, [() => SharedSecret, 0], () => Endpoints],
659
659
  ];
660
- var ResourceNotFoundException = [
660
+ var ResourceNotFoundException$ = [
661
661
  -3,
662
662
  n0,
663
663
  _RNFE,
@@ -665,12 +665,12 @@ var ResourceNotFoundException = [
665
665
  [_m, _rI, _rT],
666
666
  [0, 0, 0],
667
667
  ];
668
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
669
- var ScalingConfiguration = [3, n0, _SC, 0, [_mIC, _mICa], [1, 1]];
670
- var ScalingConfigurationRequest = [3, n0, _SCR, 0, [_mIC, _mICa], [1, 1]];
671
- var Scheduler = [3, n0, _S, 0, [_ty, _v], [0, 0]];
672
- var SchedulerRequest = [3, n0, _SR, 0, [_ty, _v], [0, 0]];
673
- var ServiceQuotaExceededException = [
668
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
669
+ var ScalingConfiguration$ = [3, n0, _SC, 0, [_mIC, _mICa], [1, 1]];
670
+ var ScalingConfigurationRequest$ = [3, n0, _SCR, 0, [_mIC, _mICa], [1, 1]];
671
+ var Scheduler$ = [3, n0, _S, 0, [_ty, _v], [0, 0]];
672
+ var SchedulerRequest$ = [3, n0, _SR, 0, [_ty, _v], [0, 0]];
673
+ var ServiceQuotaExceededException$ = [
674
674
  -3,
675
675
  n0,
676
676
  _SQEE,
@@ -678,15 +678,15 @@ var ServiceQuotaExceededException = [
678
678
  [_m, _sCe, _rI, _rT, _qC],
679
679
  [0, 0, 0, 0, 0],
680
680
  ];
681
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
682
- var SlurmAuthKey = [3, n0, _SAK, 0, [_sA, _sV], [0, 0]];
683
- var SlurmCustomSetting = [3, n0, _SCS, 0, [_pN, _pV], [0, 0]];
684
- var SlurmRest = [3, n0, _SRl, 0, [_mo], [0]];
685
- var SlurmRestRequest = [3, n0, _SRR, 0, [_mo], [0]];
686
- var SpotOptions = [3, n0, _SO, 0, [_aS], [0]];
687
- var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [0, 128 | 0]];
688
- var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
689
- var ThrottlingException = [
681
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
682
+ var SlurmAuthKey$ = [3, n0, _SAK, 0, [_sA, _sV], [0, 0]];
683
+ var SlurmCustomSetting$ = [3, n0, _SCS, 0, [_pN, _pV], [0, 0]];
684
+ var SlurmRest$ = [3, n0, _SRl, 0, [_mo], [0]];
685
+ var SlurmRestRequest$ = [3, n0, _SRR, 0, [_mo], [0]];
686
+ var SpotOptions$ = [3, n0, _SO, 0, [_aS], [0]];
687
+ var TagResourceRequest$ = [3, n0, _TRR, 0, [_rA, _t], [0, 128 | 0]];
688
+ var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
689
+ var ThrottlingException$ = [
690
690
  -3,
691
691
  n0,
692
692
  _TE,
@@ -694,28 +694,28 @@ var ThrottlingException = [
694
694
  [_m, _rAS],
695
695
  [0, [1, { [_hH]: _RA }]],
696
696
  ];
697
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
698
- var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _tK], [[0, 1], 64 | 0]];
699
- var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
700
- var UpdateAccountingRequest = [3, n0, _UAR, 0, [_dPTID, _mo], [1, 0]];
701
- var UpdateClusterRequest = [
697
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
698
+ var UntagResourceRequest$ = [3, n0, _URR, 0, [_rA, _tK], [[0, 1], 64 | 0]];
699
+ var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
700
+ var UpdateAccountingRequest$ = [3, n0, _UAR, 0, [_dPTID, _mo], [1, 0]];
701
+ var UpdateClusterRequest$ = [
702
702
  3,
703
703
  n0,
704
704
  _UCR,
705
705
  0,
706
706
  [_cIl, _cT, _sC],
707
- [0, [0, 4], () => UpdateClusterSlurmConfigurationRequest],
707
+ [0, [0, 4], () => UpdateClusterSlurmConfigurationRequest$],
708
708
  ];
709
- var UpdateClusterResponse = [3, n0, _UCRp, 0, [_cl], [() => Cluster]];
710
- var UpdateClusterSlurmConfigurationRequest = [
709
+ var UpdateClusterResponse$ = [3, n0, _UCRp, 0, [_cl], [() => Cluster$]];
710
+ var UpdateClusterSlurmConfigurationRequest$ = [
711
711
  3,
712
712
  n0,
713
713
  _UCSCR,
714
714
  0,
715
715
  [_sDITIS, _sCS, _ac, _sR],
716
- [1, () => SlurmCustomSettings, () => UpdateAccountingRequest, () => UpdateSlurmRestRequest],
716
+ [1, () => SlurmCustomSettings, () => UpdateAccountingRequest$, () => UpdateSlurmRestRequest$],
717
717
  ];
718
- var UpdateComputeNodeGroupRequest = [
718
+ var UpdateComputeNodeGroupRequest$ = [
719
719
  3,
720
720
  n0,
721
721
  _UCNGR,
@@ -726,24 +726,24 @@ var UpdateComputeNodeGroupRequest = [
726
726
  0,
727
727
  0,
728
728
  64 | 0,
729
- () => CustomLaunchTemplate,
729
+ () => CustomLaunchTemplate$,
730
730
  0,
731
- () => SpotOptions,
732
- () => ScalingConfigurationRequest,
731
+ () => SpotOptions$,
732
+ () => ScalingConfigurationRequest$,
733
733
  0,
734
- () => UpdateComputeNodeGroupSlurmConfigurationRequest,
734
+ () => UpdateComputeNodeGroupSlurmConfigurationRequest$,
735
735
  [0, 4],
736
736
  ],
737
737
  ];
738
- var UpdateComputeNodeGroupResponse = [
738
+ var UpdateComputeNodeGroupResponse$ = [
739
739
  3,
740
740
  n0,
741
741
  _UCNGRp,
742
742
  0,
743
743
  [_cNG],
744
- [() => ComputeNodeGroup],
744
+ [() => ComputeNodeGroup$],
745
745
  ];
746
- var UpdateComputeNodeGroupSlurmConfigurationRequest = [
746
+ var UpdateComputeNodeGroupSlurmConfigurationRequest$ = [
747
747
  3,
748
748
  n0,
749
749
  _UCNGSCR,
@@ -751,16 +751,16 @@ var UpdateComputeNodeGroupSlurmConfigurationRequest = [
751
751
  [_sCS],
752
752
  [() => SlurmCustomSettings],
753
753
  ];
754
- var UpdateQueueRequest = [
754
+ var UpdateQueueRequest$ = [
755
755
  3,
756
756
  n0,
757
757
  _UQR,
758
758
  0,
759
759
  [_cIl, _qI, _cNGC, _sC, _cT],
760
- [0, 0, () => ComputeNodeGroupConfigurationList, () => UpdateQueueSlurmConfigurationRequest, [0, 4]],
760
+ [0, 0, () => ComputeNodeGroupConfigurationList, () => UpdateQueueSlurmConfigurationRequest$, [0, 4]],
761
761
  ];
762
- var UpdateQueueResponse = [3, n0, _UQRp, 0, [_q], [() => Queue]];
763
- var UpdateQueueSlurmConfigurationRequest = [
762
+ var UpdateQueueResponse$ = [3, n0, _UQRp, 0, [_q], [() => Queue$]];
763
+ var UpdateQueueSlurmConfigurationRequest$ = [
764
764
  3,
765
765
  n0,
766
766
  _UQSCR,
@@ -768,8 +768,8 @@ var UpdateQueueSlurmConfigurationRequest = [
768
768
  [_sCS],
769
769
  [() => SlurmCustomSettings],
770
770
  ];
771
- var UpdateSlurmRestRequest = [3, n0, _USRR, 0, [_mo], [0]];
772
- var ValidationException = [
771
+ var UpdateSlurmRestRequest$ = [3, n0, _USRR, 0, [_mo], [0]];
772
+ var ValidationException$ = [
773
773
  -3,
774
774
  n0,
775
775
  _VE,
@@ -777,121 +777,122 @@ var ValidationException = [
777
777
  [_m, _r, _fL],
778
778
  [0, 0, () => ValidationExceptionFieldList],
779
779
  ];
780
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
781
- var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
782
- var PCSServiceException = [-3, _sm, "PCSServiceException", 0, [], []];
783
- schema.TypeRegistry.for(_sm).registerError(PCSServiceException, PCSServiceException$1);
784
- var ClusterList = [1, n0, _CL, 0, () => ClusterSummary];
785
- var ComputeNodeGroupConfigurationList = [
786
- 1,
787
- n0,
788
- _CNGCL,
789
- 0,
790
- () => ComputeNodeGroupConfiguration,
791
- ];
792
- var ComputeNodeGroupList = [1, n0, _CNGL, 0, () => ComputeNodeGroupSummary];
793
- var Endpoints = [1, n0, _En, 0, () => Endpoint];
794
- var ErrorInfoList = [1, n0, _EIL, 0, () => ErrorInfo];
795
- var InstanceList = [1, n0, _IL, 0, () => InstanceConfig];
796
- var QueueList = [1, n0, _QL, 0, () => QueueSummary];
797
- var SlurmCustomSettings = [1, n0, _SCSl, 0, () => SlurmCustomSetting];
798
- var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
799
- var CreateCluster = [
780
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
781
+ var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
782
+ var PCSServiceException$ = [-3, _sm, "PCSServiceException", 0, [], []];
783
+ schema.TypeRegistry.for(_sm).registerError(PCSServiceException$, PCSServiceException);
784
+ var ClusterList = [1, n0, _CL, 0, () => ClusterSummary$];
785
+ var ComputeNodeGroupConfigurationList = [1, n0, _CNGCL, 0, () => ComputeNodeGroupConfiguration$];
786
+ var ComputeNodeGroupList = [1, n0, _CNGL, 0, () => ComputeNodeGroupSummary$];
787
+ var Endpoints = [1, n0, _En, 0, () => Endpoint$];
788
+ var ErrorInfoList = [1, n0, _EIL, 0, () => ErrorInfo$];
789
+ var InstanceList = [1, n0, _IL, 0, () => InstanceConfig$];
790
+ var QueueList = [1, n0, _QL, 0, () => QueueSummary$];
791
+ var SlurmCustomSettings = [1, n0, _SCSl, 0, () => SlurmCustomSetting$];
792
+ var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
793
+ var CreateCluster$ = [
800
794
  9,
801
795
  n0,
802
796
  _CC,
803
797
  2,
804
- () => CreateClusterRequest,
805
- () => CreateClusterResponse,
798
+ () => CreateClusterRequest$,
799
+ () => CreateClusterResponse$,
806
800
  ];
807
- var CreateComputeNodeGroup = [
801
+ var CreateComputeNodeGroup$ = [
808
802
  9,
809
803
  n0,
810
804
  _CCNG,
811
805
  2,
812
- () => CreateComputeNodeGroupRequest,
813
- () => CreateComputeNodeGroupResponse,
806
+ () => CreateComputeNodeGroupRequest$,
807
+ () => CreateComputeNodeGroupResponse$,
814
808
  ];
815
- var CreateQueue = [9, n0, _CQ, 2, () => CreateQueueRequest, () => CreateQueueResponse];
816
- var DeleteCluster = [
809
+ var CreateQueue$ = [9, n0, _CQ, 2, () => CreateQueueRequest$, () => CreateQueueResponse$];
810
+ var DeleteCluster$ = [
817
811
  9,
818
812
  n0,
819
813
  _DC,
820
814
  2,
821
- () => DeleteClusterRequest,
822
- () => DeleteClusterResponse,
815
+ () => DeleteClusterRequest$,
816
+ () => DeleteClusterResponse$,
823
817
  ];
824
- var DeleteComputeNodeGroup = [
818
+ var DeleteComputeNodeGroup$ = [
825
819
  9,
826
820
  n0,
827
821
  _DCNG,
828
822
  2,
829
- () => DeleteComputeNodeGroupRequest,
830
- () => DeleteComputeNodeGroupResponse,
823
+ () => DeleteComputeNodeGroupRequest$,
824
+ () => DeleteComputeNodeGroupResponse$,
831
825
  ];
832
- var DeleteQueue = [9, n0, _DQ, 2, () => DeleteQueueRequest, () => DeleteQueueResponse];
833
- var GetCluster = [9, n0, _GC, 0, () => GetClusterRequest, () => GetClusterResponse];
834
- var GetComputeNodeGroup = [
826
+ var DeleteQueue$ = [9, n0, _DQ, 2, () => DeleteQueueRequest$, () => DeleteQueueResponse$];
827
+ var GetCluster$ = [9, n0, _GC, 0, () => GetClusterRequest$, () => GetClusterResponse$];
828
+ var GetComputeNodeGroup$ = [
835
829
  9,
836
830
  n0,
837
831
  _GCNG,
838
832
  0,
839
- () => GetComputeNodeGroupRequest,
840
- () => GetComputeNodeGroupResponse,
833
+ () => GetComputeNodeGroupRequest$,
834
+ () => GetComputeNodeGroupResponse$,
835
+ ];
836
+ var GetQueue$ = [9, n0, _GQ, 0, () => GetQueueRequest$, () => GetQueueResponse$];
837
+ var ListClusters$ = [
838
+ 9,
839
+ n0,
840
+ _LC,
841
+ 0,
842
+ () => ListClustersRequest$,
843
+ () => ListClustersResponse$,
841
844
  ];
842
- var GetQueue = [9, n0, _GQ, 0, () => GetQueueRequest, () => GetQueueResponse];
843
- var ListClusters = [9, n0, _LC, 0, () => ListClustersRequest, () => ListClustersResponse];
844
- var ListComputeNodeGroups = [
845
+ var ListComputeNodeGroups$ = [
845
846
  9,
846
847
  n0,
847
848
  _LCNG,
848
849
  0,
849
- () => ListComputeNodeGroupsRequest,
850
- () => ListComputeNodeGroupsResponse,
850
+ () => ListComputeNodeGroupsRequest$,
851
+ () => ListComputeNodeGroupsResponse$,
851
852
  ];
852
- var ListQueues = [9, n0, _LQ, 0, () => ListQueuesRequest, () => ListQueuesResponse];
853
- var ListTagsForResource = [
853
+ var ListQueues$ = [9, n0, _LQ, 0, () => ListQueuesRequest$, () => ListQueuesResponse$];
854
+ var ListTagsForResource$ = [
854
855
  9,
855
856
  n0,
856
857
  _LTFR,
857
858
  0,
858
- () => ListTagsForResourceRequest,
859
- () => ListTagsForResourceResponse,
859
+ () => ListTagsForResourceRequest$,
860
+ () => ListTagsForResourceResponse$,
860
861
  ];
861
- var RegisterComputeNodeGroupInstance = [
862
+ var RegisterComputeNodeGroupInstance$ = [
862
863
  9,
863
864
  n0,
864
865
  _RCNGI,
865
866
  0,
866
- () => RegisterComputeNodeGroupInstanceRequest,
867
- () => RegisterComputeNodeGroupInstanceResponse,
867
+ () => RegisterComputeNodeGroupInstanceRequest$,
868
+ () => RegisterComputeNodeGroupInstanceResponse$,
868
869
  ];
869
- var TagResource = [9, n0, _TR, 2, () => TagResourceRequest, () => TagResourceResponse];
870
- var UntagResource = [
870
+ var TagResource$ = [9, n0, _TR, 2, () => TagResourceRequest$, () => TagResourceResponse$];
871
+ var UntagResource$ = [
871
872
  9,
872
873
  n0,
873
874
  _UR,
874
875
  2,
875
- () => UntagResourceRequest,
876
- () => UntagResourceResponse,
876
+ () => UntagResourceRequest$,
877
+ () => UntagResourceResponse$,
877
878
  ];
878
- var UpdateCluster = [
879
+ var UpdateCluster$ = [
879
880
  9,
880
881
  n0,
881
882
  _UC,
882
883
  2,
883
- () => UpdateClusterRequest,
884
- () => UpdateClusterResponse,
884
+ () => UpdateClusterRequest$,
885
+ () => UpdateClusterResponse$,
885
886
  ];
886
- var UpdateComputeNodeGroup = [
887
+ var UpdateComputeNodeGroup$ = [
887
888
  9,
888
889
  n0,
889
890
  _UCNG,
890
891
  2,
891
- () => UpdateComputeNodeGroupRequest,
892
- () => UpdateComputeNodeGroupResponse,
892
+ () => UpdateComputeNodeGroupRequest$,
893
+ () => UpdateComputeNodeGroupResponse$,
893
894
  ];
894
- var UpdateQueue = [9, n0, _UQ, 2, () => UpdateQueueRequest, () => UpdateQueueResponse];
895
+ var UpdateQueue$ = [9, n0, _UQ, 2, () => UpdateQueueRequest$, () => UpdateQueueResponse$];
895
896
 
896
897
  class CreateClusterCommand extends smithyClient.Command
897
898
  .classBuilder()
@@ -901,7 +902,7 @@ class CreateClusterCommand extends smithyClient.Command
901
902
  })
902
903
  .s("AWSParallelComputingService", "CreateCluster", {})
903
904
  .n("PCSClient", "CreateClusterCommand")
904
- .sc(CreateCluster)
905
+ .sc(CreateCluster$)
905
906
  .build() {
906
907
  }
907
908
 
@@ -913,7 +914,7 @@ class CreateComputeNodeGroupCommand extends smithyClient.Command
913
914
  })
914
915
  .s("AWSParallelComputingService", "CreateComputeNodeGroup", {})
915
916
  .n("PCSClient", "CreateComputeNodeGroupCommand")
916
- .sc(CreateComputeNodeGroup)
917
+ .sc(CreateComputeNodeGroup$)
917
918
  .build() {
918
919
  }
919
920
 
@@ -925,7 +926,7 @@ class CreateQueueCommand extends smithyClient.Command
925
926
  })
926
927
  .s("AWSParallelComputingService", "CreateQueue", {})
927
928
  .n("PCSClient", "CreateQueueCommand")
928
- .sc(CreateQueue)
929
+ .sc(CreateQueue$)
929
930
  .build() {
930
931
  }
931
932
 
@@ -937,7 +938,7 @@ class DeleteClusterCommand extends smithyClient.Command
937
938
  })
938
939
  .s("AWSParallelComputingService", "DeleteCluster", {})
939
940
  .n("PCSClient", "DeleteClusterCommand")
940
- .sc(DeleteCluster)
941
+ .sc(DeleteCluster$)
941
942
  .build() {
942
943
  }
943
944
 
@@ -949,7 +950,7 @@ class DeleteComputeNodeGroupCommand extends smithyClient.Command
949
950
  })
950
951
  .s("AWSParallelComputingService", "DeleteComputeNodeGroup", {})
951
952
  .n("PCSClient", "DeleteComputeNodeGroupCommand")
952
- .sc(DeleteComputeNodeGroup)
953
+ .sc(DeleteComputeNodeGroup$)
953
954
  .build() {
954
955
  }
955
956
 
@@ -961,7 +962,7 @@ class DeleteQueueCommand extends smithyClient.Command
961
962
  })
962
963
  .s("AWSParallelComputingService", "DeleteQueue", {})
963
964
  .n("PCSClient", "DeleteQueueCommand")
964
- .sc(DeleteQueue)
965
+ .sc(DeleteQueue$)
965
966
  .build() {
966
967
  }
967
968
 
@@ -973,7 +974,7 @@ class GetClusterCommand extends smithyClient.Command
973
974
  })
974
975
  .s("AWSParallelComputingService", "GetCluster", {})
975
976
  .n("PCSClient", "GetClusterCommand")
976
- .sc(GetCluster)
977
+ .sc(GetCluster$)
977
978
  .build() {
978
979
  }
979
980
 
@@ -985,7 +986,7 @@ class GetComputeNodeGroupCommand extends smithyClient.Command
985
986
  })
986
987
  .s("AWSParallelComputingService", "GetComputeNodeGroup", {})
987
988
  .n("PCSClient", "GetComputeNodeGroupCommand")
988
- .sc(GetComputeNodeGroup)
989
+ .sc(GetComputeNodeGroup$)
989
990
  .build() {
990
991
  }
991
992
 
@@ -997,7 +998,7 @@ class GetQueueCommand extends smithyClient.Command
997
998
  })
998
999
  .s("AWSParallelComputingService", "GetQueue", {})
999
1000
  .n("PCSClient", "GetQueueCommand")
1000
- .sc(GetQueue)
1001
+ .sc(GetQueue$)
1001
1002
  .build() {
1002
1003
  }
1003
1004
 
@@ -1009,7 +1010,7 @@ class ListClustersCommand extends smithyClient.Command
1009
1010
  })
1010
1011
  .s("AWSParallelComputingService", "ListClusters", {})
1011
1012
  .n("PCSClient", "ListClustersCommand")
1012
- .sc(ListClusters)
1013
+ .sc(ListClusters$)
1013
1014
  .build() {
1014
1015
  }
1015
1016
 
@@ -1021,7 +1022,7 @@ class ListComputeNodeGroupsCommand extends smithyClient.Command
1021
1022
  })
1022
1023
  .s("AWSParallelComputingService", "ListComputeNodeGroups", {})
1023
1024
  .n("PCSClient", "ListComputeNodeGroupsCommand")
1024
- .sc(ListComputeNodeGroups)
1025
+ .sc(ListComputeNodeGroups$)
1025
1026
  .build() {
1026
1027
  }
1027
1028
 
@@ -1033,7 +1034,7 @@ class ListQueuesCommand extends smithyClient.Command
1033
1034
  })
1034
1035
  .s("AWSParallelComputingService", "ListQueues", {})
1035
1036
  .n("PCSClient", "ListQueuesCommand")
1036
- .sc(ListQueues)
1037
+ .sc(ListQueues$)
1037
1038
  .build() {
1038
1039
  }
1039
1040
 
@@ -1045,7 +1046,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
1045
1046
  })
1046
1047
  .s("AWSParallelComputingService", "ListTagsForResource", {})
1047
1048
  .n("PCSClient", "ListTagsForResourceCommand")
1048
- .sc(ListTagsForResource)
1049
+ .sc(ListTagsForResource$)
1049
1050
  .build() {
1050
1051
  }
1051
1052
 
@@ -1057,7 +1058,7 @@ class RegisterComputeNodeGroupInstanceCommand extends smithyClient.Command
1057
1058
  })
1058
1059
  .s("AWSParallelComputingService", "RegisterComputeNodeGroupInstance", {})
1059
1060
  .n("PCSClient", "RegisterComputeNodeGroupInstanceCommand")
1060
- .sc(RegisterComputeNodeGroupInstance)
1061
+ .sc(RegisterComputeNodeGroupInstance$)
1061
1062
  .build() {
1062
1063
  }
1063
1064
 
@@ -1069,7 +1070,7 @@ class TagResourceCommand extends smithyClient.Command
1069
1070
  })
1070
1071
  .s("AWSParallelComputingService", "TagResource", {})
1071
1072
  .n("PCSClient", "TagResourceCommand")
1072
- .sc(TagResource)
1073
+ .sc(TagResource$)
1073
1074
  .build() {
1074
1075
  }
1075
1076
 
@@ -1081,7 +1082,7 @@ class UntagResourceCommand extends smithyClient.Command
1081
1082
  })
1082
1083
  .s("AWSParallelComputingService", "UntagResource", {})
1083
1084
  .n("PCSClient", "UntagResourceCommand")
1084
- .sc(UntagResource)
1085
+ .sc(UntagResource$)
1085
1086
  .build() {
1086
1087
  }
1087
1088
 
@@ -1093,7 +1094,7 @@ class UpdateClusterCommand extends smithyClient.Command
1093
1094
  })
1094
1095
  .s("AWSParallelComputingService", "UpdateCluster", {})
1095
1096
  .n("PCSClient", "UpdateClusterCommand")
1096
- .sc(UpdateCluster)
1097
+ .sc(UpdateCluster$)
1097
1098
  .build() {
1098
1099
  }
1099
1100
 
@@ -1105,7 +1106,7 @@ class UpdateComputeNodeGroupCommand extends smithyClient.Command
1105
1106
  })
1106
1107
  .s("AWSParallelComputingService", "UpdateComputeNodeGroup", {})
1107
1108
  .n("PCSClient", "UpdateComputeNodeGroupCommand")
1108
- .sc(UpdateComputeNodeGroup)
1109
+ .sc(UpdateComputeNodeGroup$)
1109
1110
  .build() {
1110
1111
  }
1111
1112
 
@@ -1117,7 +1118,7 @@ class UpdateQueueCommand extends smithyClient.Command
1117
1118
  })
1118
1119
  .s("AWSParallelComputingService", "UpdateQueue", {})
1119
1120
  .n("PCSClient", "UpdateQueueCommand")
1120
- .sc(UpdateQueue)
1121
+ .sc(UpdateQueue$)
1121
1122
  .build() {
1122
1123
  }
1123
1124
 
@@ -1236,46 +1237,149 @@ Object.defineProperty(exports, "__Client", {
1236
1237
  enumerable: true,
1237
1238
  get: function () { return smithyClient.Client; }
1238
1239
  });
1239
- exports.AccessDeniedException = AccessDeniedException$1;
1240
+ exports.AccessDeniedException = AccessDeniedException;
1241
+ exports.AccessDeniedException$ = AccessDeniedException$;
1242
+ exports.Accounting$ = Accounting$;
1240
1243
  exports.AccountingMode = AccountingMode;
1244
+ exports.AccountingRequest$ = AccountingRequest$;
1245
+ exports.Cluster$ = Cluster$;
1246
+ exports.ClusterSlurmConfiguration$ = ClusterSlurmConfiguration$;
1247
+ exports.ClusterSlurmConfigurationRequest$ = ClusterSlurmConfigurationRequest$;
1241
1248
  exports.ClusterStatus = ClusterStatus;
1249
+ exports.ClusterSummary$ = ClusterSummary$;
1250
+ exports.ComputeNodeGroup$ = ComputeNodeGroup$;
1251
+ exports.ComputeNodeGroupConfiguration$ = ComputeNodeGroupConfiguration$;
1252
+ exports.ComputeNodeGroupSlurmConfiguration$ = ComputeNodeGroupSlurmConfiguration$;
1253
+ exports.ComputeNodeGroupSlurmConfigurationRequest$ = ComputeNodeGroupSlurmConfigurationRequest$;
1242
1254
  exports.ComputeNodeGroupStatus = ComputeNodeGroupStatus;
1243
- exports.ConflictException = ConflictException$1;
1255
+ exports.ComputeNodeGroupSummary$ = ComputeNodeGroupSummary$;
1256
+ exports.ConflictException = ConflictException;
1257
+ exports.ConflictException$ = ConflictException$;
1258
+ exports.CreateCluster$ = CreateCluster$;
1244
1259
  exports.CreateClusterCommand = CreateClusterCommand;
1260
+ exports.CreateClusterRequest$ = CreateClusterRequest$;
1261
+ exports.CreateClusterResponse$ = CreateClusterResponse$;
1262
+ exports.CreateComputeNodeGroup$ = CreateComputeNodeGroup$;
1245
1263
  exports.CreateComputeNodeGroupCommand = CreateComputeNodeGroupCommand;
1264
+ exports.CreateComputeNodeGroupRequest$ = CreateComputeNodeGroupRequest$;
1265
+ exports.CreateComputeNodeGroupResponse$ = CreateComputeNodeGroupResponse$;
1266
+ exports.CreateQueue$ = CreateQueue$;
1246
1267
  exports.CreateQueueCommand = CreateQueueCommand;
1268
+ exports.CreateQueueRequest$ = CreateQueueRequest$;
1269
+ exports.CreateQueueResponse$ = CreateQueueResponse$;
1270
+ exports.CustomLaunchTemplate$ = CustomLaunchTemplate$;
1271
+ exports.DeleteCluster$ = DeleteCluster$;
1247
1272
  exports.DeleteClusterCommand = DeleteClusterCommand;
1273
+ exports.DeleteClusterRequest$ = DeleteClusterRequest$;
1274
+ exports.DeleteClusterResponse$ = DeleteClusterResponse$;
1275
+ exports.DeleteComputeNodeGroup$ = DeleteComputeNodeGroup$;
1248
1276
  exports.DeleteComputeNodeGroupCommand = DeleteComputeNodeGroupCommand;
1277
+ exports.DeleteComputeNodeGroupRequest$ = DeleteComputeNodeGroupRequest$;
1278
+ exports.DeleteComputeNodeGroupResponse$ = DeleteComputeNodeGroupResponse$;
1279
+ exports.DeleteQueue$ = DeleteQueue$;
1249
1280
  exports.DeleteQueueCommand = DeleteQueueCommand;
1281
+ exports.DeleteQueueRequest$ = DeleteQueueRequest$;
1282
+ exports.DeleteQueueResponse$ = DeleteQueueResponse$;
1283
+ exports.Endpoint$ = Endpoint$;
1250
1284
  exports.EndpointType = EndpointType;
1285
+ exports.ErrorInfo$ = ErrorInfo$;
1286
+ exports.GetCluster$ = GetCluster$;
1251
1287
  exports.GetClusterCommand = GetClusterCommand;
1288
+ exports.GetClusterRequest$ = GetClusterRequest$;
1289
+ exports.GetClusterResponse$ = GetClusterResponse$;
1290
+ exports.GetComputeNodeGroup$ = GetComputeNodeGroup$;
1252
1291
  exports.GetComputeNodeGroupCommand = GetComputeNodeGroupCommand;
1292
+ exports.GetComputeNodeGroupRequest$ = GetComputeNodeGroupRequest$;
1293
+ exports.GetComputeNodeGroupResponse$ = GetComputeNodeGroupResponse$;
1294
+ exports.GetQueue$ = GetQueue$;
1253
1295
  exports.GetQueueCommand = GetQueueCommand;
1254
- exports.InternalServerException = InternalServerException$1;
1296
+ exports.GetQueueRequest$ = GetQueueRequest$;
1297
+ exports.GetQueueResponse$ = GetQueueResponse$;
1298
+ exports.InstanceConfig$ = InstanceConfig$;
1299
+ exports.InternalServerException = InternalServerException;
1300
+ exports.InternalServerException$ = InternalServerException$;
1301
+ exports.JwtAuth$ = JwtAuth$;
1302
+ exports.JwtKey$ = JwtKey$;
1303
+ exports.ListClusters$ = ListClusters$;
1255
1304
  exports.ListClustersCommand = ListClustersCommand;
1305
+ exports.ListClustersRequest$ = ListClustersRequest$;
1306
+ exports.ListClustersResponse$ = ListClustersResponse$;
1307
+ exports.ListComputeNodeGroups$ = ListComputeNodeGroups$;
1256
1308
  exports.ListComputeNodeGroupsCommand = ListComputeNodeGroupsCommand;
1309
+ exports.ListComputeNodeGroupsRequest$ = ListComputeNodeGroupsRequest$;
1310
+ exports.ListComputeNodeGroupsResponse$ = ListComputeNodeGroupsResponse$;
1311
+ exports.ListQueues$ = ListQueues$;
1257
1312
  exports.ListQueuesCommand = ListQueuesCommand;
1313
+ exports.ListQueuesRequest$ = ListQueuesRequest$;
1314
+ exports.ListQueuesResponse$ = ListQueuesResponse$;
1315
+ exports.ListTagsForResource$ = ListTagsForResource$;
1258
1316
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1317
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
1318
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
1259
1319
  exports.NetworkType = NetworkType;
1320
+ exports.Networking$ = Networking$;
1321
+ exports.NetworkingRequest$ = NetworkingRequest$;
1260
1322
  exports.PCS = PCS;
1261
1323
  exports.PCSClient = PCSClient;
1262
- exports.PCSServiceException = PCSServiceException$1;
1324
+ exports.PCSServiceException = PCSServiceException;
1325
+ exports.PCSServiceException$ = PCSServiceException$;
1263
1326
  exports.PurchaseOption = PurchaseOption;
1327
+ exports.Queue$ = Queue$;
1328
+ exports.QueueSlurmConfiguration$ = QueueSlurmConfiguration$;
1329
+ exports.QueueSlurmConfigurationRequest$ = QueueSlurmConfigurationRequest$;
1264
1330
  exports.QueueStatus = QueueStatus;
1331
+ exports.QueueSummary$ = QueueSummary$;
1332
+ exports.RegisterComputeNodeGroupInstance$ = RegisterComputeNodeGroupInstance$;
1265
1333
  exports.RegisterComputeNodeGroupInstanceCommand = RegisterComputeNodeGroupInstanceCommand;
1266
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1334
+ exports.RegisterComputeNodeGroupInstanceRequest$ = RegisterComputeNodeGroupInstanceRequest$;
1335
+ exports.RegisterComputeNodeGroupInstanceResponse$ = RegisterComputeNodeGroupInstanceResponse$;
1336
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1337
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1338
+ exports.ScalingConfiguration$ = ScalingConfiguration$;
1339
+ exports.ScalingConfigurationRequest$ = ScalingConfigurationRequest$;
1340
+ exports.Scheduler$ = Scheduler$;
1341
+ exports.SchedulerRequest$ = SchedulerRequest$;
1267
1342
  exports.SchedulerType = SchedulerType;
1268
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1343
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1344
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
1269
1345
  exports.Size = Size;
1346
+ exports.SlurmAuthKey$ = SlurmAuthKey$;
1347
+ exports.SlurmCustomSetting$ = SlurmCustomSetting$;
1348
+ exports.SlurmRest$ = SlurmRest$;
1270
1349
  exports.SlurmRestMode = SlurmRestMode;
1350
+ exports.SlurmRestRequest$ = SlurmRestRequest$;
1271
1351
  exports.SpotAllocationStrategy = SpotAllocationStrategy;
1352
+ exports.SpotOptions$ = SpotOptions$;
1353
+ exports.TagResource$ = TagResource$;
1272
1354
  exports.TagResourceCommand = TagResourceCommand;
1273
- exports.ThrottlingException = ThrottlingException$1;
1355
+ exports.TagResourceRequest$ = TagResourceRequest$;
1356
+ exports.TagResourceResponse$ = TagResourceResponse$;
1357
+ exports.ThrottlingException = ThrottlingException;
1358
+ exports.ThrottlingException$ = ThrottlingException$;
1359
+ exports.UntagResource$ = UntagResource$;
1274
1360
  exports.UntagResourceCommand = UntagResourceCommand;
1361
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
1362
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
1363
+ exports.UpdateAccountingRequest$ = UpdateAccountingRequest$;
1364
+ exports.UpdateCluster$ = UpdateCluster$;
1275
1365
  exports.UpdateClusterCommand = UpdateClusterCommand;
1366
+ exports.UpdateClusterRequest$ = UpdateClusterRequest$;
1367
+ exports.UpdateClusterResponse$ = UpdateClusterResponse$;
1368
+ exports.UpdateClusterSlurmConfigurationRequest$ = UpdateClusterSlurmConfigurationRequest$;
1369
+ exports.UpdateComputeNodeGroup$ = UpdateComputeNodeGroup$;
1276
1370
  exports.UpdateComputeNodeGroupCommand = UpdateComputeNodeGroupCommand;
1371
+ exports.UpdateComputeNodeGroupRequest$ = UpdateComputeNodeGroupRequest$;
1372
+ exports.UpdateComputeNodeGroupResponse$ = UpdateComputeNodeGroupResponse$;
1373
+ exports.UpdateComputeNodeGroupSlurmConfigurationRequest$ = UpdateComputeNodeGroupSlurmConfigurationRequest$;
1374
+ exports.UpdateQueue$ = UpdateQueue$;
1277
1375
  exports.UpdateQueueCommand = UpdateQueueCommand;
1278
- exports.ValidationException = ValidationException$1;
1376
+ exports.UpdateQueueRequest$ = UpdateQueueRequest$;
1377
+ exports.UpdateQueueResponse$ = UpdateQueueResponse$;
1378
+ exports.UpdateQueueSlurmConfigurationRequest$ = UpdateQueueSlurmConfigurationRequest$;
1379
+ exports.UpdateSlurmRestRequest$ = UpdateSlurmRestRequest$;
1380
+ exports.ValidationException = ValidationException;
1381
+ exports.ValidationException$ = ValidationException$;
1382
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
1279
1383
  exports.ValidationExceptionReason = ValidationExceptionReason;
1280
1384
  exports.paginateListClusters = paginateListClusters;
1281
1385
  exports.paginateListComputeNodeGroups = paginateListComputeNodeGroups;