@aws-sdk/client-eks 3.718.0 → 3.723.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 CHANGED
@@ -253,7 +253,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
253
253
  }, "resolveRuntimeExtensions");
254
254
 
255
255
  // src/EKSClient.ts
256
- var _EKSClient = class _EKSClient extends import_smithy_client.Client {
256
+ var EKSClient = class extends import_smithy_client.Client {
257
+ static {
258
+ __name(this, "EKSClient");
259
+ }
260
+ /**
261
+ * The resolved configuration of EKSClient class. This is resolved and normalized from the {@link EKSClientConfig | constructor configuration interface}.
262
+ */
263
+ config;
257
264
  constructor(...[configuration]) {
258
265
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
259
266
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -263,7 +270,7 @@ var _EKSClient = class _EKSClient extends import_smithy_client.Client {
263
270
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
264
271
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
265
272
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
266
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
273
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
267
274
  super(_config_8);
268
275
  this.config = _config_8;
269
276
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -291,8 +298,6 @@ var _EKSClient = class _EKSClient extends import_smithy_client.Client {
291
298
  super.destroy();
292
299
  }
293
300
  };
294
- __name(_EKSClient, "EKSClient");
295
- var EKSClient = _EKSClient;
296
301
 
297
302
  // src/EKS.ts
298
303
 
@@ -310,7 +315,10 @@ var import_uuid = require("uuid");
310
315
 
311
316
  // src/models/EKSServiceException.ts
312
317
 
313
- var _EKSServiceException = class _EKSServiceException extends import_smithy_client.ServiceException {
318
+ var EKSServiceException = class _EKSServiceException extends import_smithy_client.ServiceException {
319
+ static {
320
+ __name(this, "EKSServiceException");
321
+ }
314
322
  /**
315
323
  * @internal
316
324
  */
@@ -319,8 +327,6 @@ var _EKSServiceException = class _EKSServiceException extends import_smithy_clie
319
327
  Object.setPrototypeOf(this, _EKSServiceException.prototype);
320
328
  }
321
329
  };
322
- __name(_EKSServiceException, "EKSServiceException");
323
- var EKSServiceException = _EKSServiceException;
324
330
 
325
331
  // src/models/models_0.ts
326
332
  var AuthenticationMode = {
@@ -328,7 +334,12 @@ var AuthenticationMode = {
328
334
  API_AND_CONFIG_MAP: "API_AND_CONFIG_MAP",
329
335
  CONFIG_MAP: "CONFIG_MAP"
330
336
  };
331
- var _AccessDeniedException = class _AccessDeniedException extends EKSServiceException {
337
+ var AccessDeniedException = class _AccessDeniedException extends EKSServiceException {
338
+ static {
339
+ __name(this, "AccessDeniedException");
340
+ }
341
+ name = "AccessDeniedException";
342
+ $fault = "client";
332
343
  /**
333
344
  * @internal
334
345
  */
@@ -338,13 +349,9 @@ var _AccessDeniedException = class _AccessDeniedException extends EKSServiceExce
338
349
  $fault: "client",
339
350
  ...opts
340
351
  });
341
- this.name = "AccessDeniedException";
342
- this.$fault = "client";
343
352
  Object.setPrototypeOf(this, _AccessDeniedException.prototype);
344
353
  }
345
354
  };
346
- __name(_AccessDeniedException, "AccessDeniedException");
347
- var AccessDeniedException = _AccessDeniedException;
348
355
  var AccessScopeType = {
349
356
  cluster: "cluster",
350
357
  namespace: "namespace"
@@ -389,7 +396,38 @@ var AMITypes = {
389
396
  WINDOWS_FULL_2019_x86_64: "WINDOWS_FULL_2019_x86_64",
390
397
  WINDOWS_FULL_2022_x86_64: "WINDOWS_FULL_2022_x86_64"
391
398
  };
392
- var _InvalidParameterException = class _InvalidParameterException extends EKSServiceException {
399
+ var InvalidParameterException = class _InvalidParameterException extends EKSServiceException {
400
+ static {
401
+ __name(this, "InvalidParameterException");
402
+ }
403
+ name = "InvalidParameterException";
404
+ $fault = "client";
405
+ /**
406
+ * <p>The Amazon EKS cluster associated with the exception.</p>
407
+ * @public
408
+ */
409
+ clusterName;
410
+ /**
411
+ * <p>The Amazon EKS managed node group associated with the exception.</p>
412
+ * @public
413
+ */
414
+ nodegroupName;
415
+ /**
416
+ * <p>The Fargate profile associated with the exception.</p>
417
+ * @public
418
+ */
419
+ fargateProfileName;
420
+ /**
421
+ * <p>The specified parameter for the add-on name is invalid. Review the available
422
+ * parameters for the API request</p>
423
+ * @public
424
+ */
425
+ addonName;
426
+ /**
427
+ * <p>The Amazon EKS subscription ID with the exception.</p>
428
+ * @public
429
+ */
430
+ subscriptionId;
393
431
  /**
394
432
  * @internal
395
433
  */
@@ -399,8 +437,6 @@ var _InvalidParameterException = class _InvalidParameterException extends EKSSer
399
437
  $fault: "client",
400
438
  ...opts
401
439
  });
402
- this.name = "InvalidParameterException";
403
- this.$fault = "client";
404
440
  Object.setPrototypeOf(this, _InvalidParameterException.prototype);
405
441
  this.clusterName = opts.clusterName;
406
442
  this.nodegroupName = opts.nodegroupName;
@@ -409,9 +445,33 @@ var _InvalidParameterException = class _InvalidParameterException extends EKSSer
409
445
  this.subscriptionId = opts.subscriptionId;
410
446
  }
411
447
  };
412
- __name(_InvalidParameterException, "InvalidParameterException");
413
- var InvalidParameterException = _InvalidParameterException;
414
- var _InvalidRequestException = class _InvalidRequestException extends EKSServiceException {
448
+ var InvalidRequestException = class _InvalidRequestException extends EKSServiceException {
449
+ static {
450
+ __name(this, "InvalidRequestException");
451
+ }
452
+ name = "InvalidRequestException";
453
+ $fault = "client";
454
+ /**
455
+ * <p>The Amazon EKS cluster associated with the exception.</p>
456
+ * @public
457
+ */
458
+ clusterName;
459
+ /**
460
+ * <p>The Amazon EKS managed node group associated with the exception.</p>
461
+ * @public
462
+ */
463
+ nodegroupName;
464
+ /**
465
+ * <p>The request is invalid given the state of the add-on name. Check the state of the
466
+ * cluster and the associated operations.</p>
467
+ * @public
468
+ */
469
+ addonName;
470
+ /**
471
+ * <p>The Amazon EKS subscription ID with the exception.</p>
472
+ * @public
473
+ */
474
+ subscriptionId;
415
475
  /**
416
476
  * @internal
417
477
  */
@@ -421,8 +481,6 @@ var _InvalidRequestException = class _InvalidRequestException extends EKSService
421
481
  $fault: "client",
422
482
  ...opts
423
483
  });
424
- this.name = "InvalidRequestException";
425
- this.$fault = "client";
426
484
  Object.setPrototypeOf(this, _InvalidRequestException.prototype);
427
485
  this.clusterName = opts.clusterName;
428
486
  this.nodegroupName = opts.nodegroupName;
@@ -430,9 +488,37 @@ var _InvalidRequestException = class _InvalidRequestException extends EKSService
430
488
  this.subscriptionId = opts.subscriptionId;
431
489
  }
432
490
  };
433
- __name(_InvalidRequestException, "InvalidRequestException");
434
- var InvalidRequestException = _InvalidRequestException;
435
- var _ResourceNotFoundException = class _ResourceNotFoundException extends EKSServiceException {
491
+ var ResourceNotFoundException = class _ResourceNotFoundException extends EKSServiceException {
492
+ static {
493
+ __name(this, "ResourceNotFoundException");
494
+ }
495
+ name = "ResourceNotFoundException";
496
+ $fault = "client";
497
+ /**
498
+ * <p>The Amazon EKS cluster associated with the exception.</p>
499
+ * @public
500
+ */
501
+ clusterName;
502
+ /**
503
+ * <p>The Amazon EKS managed node group associated with the exception.</p>
504
+ * @public
505
+ */
506
+ nodegroupName;
507
+ /**
508
+ * <p>The Fargate profile associated with the exception.</p>
509
+ * @public
510
+ */
511
+ fargateProfileName;
512
+ /**
513
+ * <p>The Amazon EKS add-on name associated with the exception.</p>
514
+ * @public
515
+ */
516
+ addonName;
517
+ /**
518
+ * <p>The Amazon EKS subscription ID with the exception.</p>
519
+ * @public
520
+ */
521
+ subscriptionId;
436
522
  /**
437
523
  * @internal
438
524
  */
@@ -442,8 +528,6 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends EKSSer
442
528
  $fault: "client",
443
529
  ...opts
444
530
  });
445
- this.name = "ResourceNotFoundException";
446
- this.$fault = "client";
447
531
  Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
448
532
  this.clusterName = opts.clusterName;
449
533
  this.nodegroupName = opts.nodegroupName;
@@ -452,9 +536,32 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends EKSSer
452
536
  this.subscriptionId = opts.subscriptionId;
453
537
  }
454
538
  };
455
- __name(_ResourceNotFoundException, "ResourceNotFoundException");
456
- var ResourceNotFoundException = _ResourceNotFoundException;
457
- var _ServerException = class _ServerException extends EKSServiceException {
539
+ var ServerException = class _ServerException extends EKSServiceException {
540
+ static {
541
+ __name(this, "ServerException");
542
+ }
543
+ name = "ServerException";
544
+ $fault = "server";
545
+ /**
546
+ * <p>The Amazon EKS cluster associated with the exception.</p>
547
+ * @public
548
+ */
549
+ clusterName;
550
+ /**
551
+ * <p>The Amazon EKS managed node group associated with the exception.</p>
552
+ * @public
553
+ */
554
+ nodegroupName;
555
+ /**
556
+ * <p>The Amazon EKS add-on name associated with the exception.</p>
557
+ * @public
558
+ */
559
+ addonName;
560
+ /**
561
+ * <p>The Amazon EKS subscription ID with the exception.</p>
562
+ * @public
563
+ */
564
+ subscriptionId;
458
565
  /**
459
566
  * @internal
460
567
  */
@@ -464,8 +571,6 @@ var _ServerException = class _ServerException extends EKSServiceException {
464
571
  $fault: "server",
465
572
  ...opts
466
573
  });
467
- this.name = "ServerException";
468
- this.$fault = "server";
469
574
  Object.setPrototypeOf(this, _ServerException.prototype);
470
575
  this.clusterName = opts.clusterName;
471
576
  this.nodegroupName = opts.nodegroupName;
@@ -473,8 +578,6 @@ var _ServerException = class _ServerException extends EKSServiceException {
473
578
  this.subscriptionId = opts.subscriptionId;
474
579
  }
475
580
  };
476
- __name(_ServerException, "ServerException");
477
- var ServerException = _ServerException;
478
581
  var ErrorCode = {
479
582
  ACCESS_DENIED: "AccessDenied",
480
583
  ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied",
@@ -551,7 +654,32 @@ var UpdateType = {
551
654
  VPC_CONFIG_UPDATE: "VpcConfigUpdate",
552
655
  ZONAL_SHIFT_CONFIG_UPDATE: "ZonalShiftConfigUpdate"
553
656
  };
554
- var _ClientException = class _ClientException extends EKSServiceException {
657
+ var ClientException = class _ClientException extends EKSServiceException {
658
+ static {
659
+ __name(this, "ClientException");
660
+ }
661
+ name = "ClientException";
662
+ $fault = "client";
663
+ /**
664
+ * <p>The Amazon EKS cluster associated with the exception.</p>
665
+ * @public
666
+ */
667
+ clusterName;
668
+ /**
669
+ * <p>The Amazon EKS managed node group associated with the exception.</p>
670
+ * @public
671
+ */
672
+ nodegroupName;
673
+ /**
674
+ * <p>The Amazon EKS add-on name associated with the exception.</p>
675
+ * @public
676
+ */
677
+ addonName;
678
+ /**
679
+ * <p>The Amazon EKS subscription ID with the exception.</p>
680
+ * @public
681
+ */
682
+ subscriptionId;
555
683
  /**
556
684
  * @internal
557
685
  */
@@ -561,8 +689,6 @@ var _ClientException = class _ClientException extends EKSServiceException {
561
689
  $fault: "client",
562
690
  ...opts
563
691
  });
564
- this.name = "ClientException";
565
- this.$fault = "client";
566
692
  Object.setPrototypeOf(this, _ClientException.prototype);
567
693
  this.clusterName = opts.clusterName;
568
694
  this.nodegroupName = opts.nodegroupName;
@@ -570,9 +696,27 @@ var _ClientException = class _ClientException extends EKSServiceException {
570
696
  this.subscriptionId = opts.subscriptionId;
571
697
  }
572
698
  };
573
- __name(_ClientException, "ClientException");
574
- var ClientException = _ClientException;
575
- var _ResourceInUseException = class _ResourceInUseException extends EKSServiceException {
699
+ var ResourceInUseException = class _ResourceInUseException extends EKSServiceException {
700
+ static {
701
+ __name(this, "ResourceInUseException");
702
+ }
703
+ name = "ResourceInUseException";
704
+ $fault = "client";
705
+ /**
706
+ * <p>The Amazon EKS cluster associated with the exception.</p>
707
+ * @public
708
+ */
709
+ clusterName;
710
+ /**
711
+ * <p>The Amazon EKS managed node group associated with the exception.</p>
712
+ * @public
713
+ */
714
+ nodegroupName;
715
+ /**
716
+ * <p>The specified add-on name is in use.</p>
717
+ * @public
718
+ */
719
+ addonName;
576
720
  /**
577
721
  * @internal
578
722
  */
@@ -582,17 +726,33 @@ var _ResourceInUseException = class _ResourceInUseException extends EKSServiceEx
582
726
  $fault: "client",
583
727
  ...opts
584
728
  });
585
- this.name = "ResourceInUseException";
586
- this.$fault = "client";
587
729
  Object.setPrototypeOf(this, _ResourceInUseException.prototype);
588
730
  this.clusterName = opts.clusterName;
589
731
  this.nodegroupName = opts.nodegroupName;
590
732
  this.addonName = opts.addonName;
591
733
  }
592
734
  };
593
- __name(_ResourceInUseException, "ResourceInUseException");
594
- var ResourceInUseException = _ResourceInUseException;
595
- var _ResourceLimitExceededException = class _ResourceLimitExceededException extends EKSServiceException {
735
+ var ResourceLimitExceededException = class _ResourceLimitExceededException extends EKSServiceException {
736
+ static {
737
+ __name(this, "ResourceLimitExceededException");
738
+ }
739
+ name = "ResourceLimitExceededException";
740
+ $fault = "client";
741
+ /**
742
+ * <p>The Amazon EKS cluster associated with the exception.</p>
743
+ * @public
744
+ */
745
+ clusterName;
746
+ /**
747
+ * <p>The Amazon EKS managed node group associated with the exception.</p>
748
+ * @public
749
+ */
750
+ nodegroupName;
751
+ /**
752
+ * <p>The Amazon EKS subscription ID with the exception.</p>
753
+ * @public
754
+ */
755
+ subscriptionId;
596
756
  /**
597
757
  * @internal
598
758
  */
@@ -602,16 +762,12 @@ var _ResourceLimitExceededException = class _ResourceLimitExceededException exte
602
762
  $fault: "client",
603
763
  ...opts
604
764
  });
605
- this.name = "ResourceLimitExceededException";
606
- this.$fault = "client";
607
765
  Object.setPrototypeOf(this, _ResourceLimitExceededException.prototype);
608
766
  this.clusterName = opts.clusterName;
609
767
  this.nodegroupName = opts.nodegroupName;
610
768
  this.subscriptionId = opts.subscriptionId;
611
769
  }
612
770
  };
613
- __name(_ResourceLimitExceededException, "ResourceLimitExceededException");
614
- var ResourceLimitExceededException = _ResourceLimitExceededException;
615
771
  var ResolveConflicts = {
616
772
  NONE: "NONE",
617
773
  OVERWRITE: "OVERWRITE",
@@ -661,7 +817,12 @@ var ClusterStatus = {
661
817
  PENDING: "PENDING",
662
818
  UPDATING: "UPDATING"
663
819
  };
664
- var _ServiceUnavailableException = class _ServiceUnavailableException extends EKSServiceException {
820
+ var ServiceUnavailableException = class _ServiceUnavailableException extends EKSServiceException {
821
+ static {
822
+ __name(this, "ServiceUnavailableException");
823
+ }
824
+ name = "ServiceUnavailableException";
825
+ $fault = "server";
665
826
  /**
666
827
  * @internal
667
828
  */
@@ -671,14 +832,31 @@ var _ServiceUnavailableException = class _ServiceUnavailableException extends EK
671
832
  $fault: "server",
672
833
  ...opts
673
834
  });
674
- this.name = "ServiceUnavailableException";
675
- this.$fault = "server";
676
835
  Object.setPrototypeOf(this, _ServiceUnavailableException.prototype);
677
836
  }
678
837
  };
679
- __name(_ServiceUnavailableException, "ServiceUnavailableException");
680
- var ServiceUnavailableException = _ServiceUnavailableException;
681
- var _UnsupportedAvailabilityZoneException = class _UnsupportedAvailabilityZoneException extends EKSServiceException {
838
+ var UnsupportedAvailabilityZoneException = class _UnsupportedAvailabilityZoneException extends EKSServiceException {
839
+ static {
840
+ __name(this, "UnsupportedAvailabilityZoneException");
841
+ }
842
+ name = "UnsupportedAvailabilityZoneException";
843
+ $fault = "client";
844
+ /**
845
+ * <p>The Amazon EKS cluster associated with the exception.</p>
846
+ * @public
847
+ */
848
+ clusterName;
849
+ /**
850
+ * <p>The Amazon EKS managed node group associated with the exception.</p>
851
+ * @public
852
+ */
853
+ nodegroupName;
854
+ /**
855
+ * <p>The supported Availability Zones for your account. Choose subnets in these
856
+ * Availability Zones for your cluster.</p>
857
+ * @public
858
+ */
859
+ validZones;
682
860
  /**
683
861
  * @internal
684
862
  */
@@ -688,16 +866,12 @@ var _UnsupportedAvailabilityZoneException = class _UnsupportedAvailabilityZoneEx
688
866
  $fault: "client",
689
867
  ...opts
690
868
  });
691
- this.name = "UnsupportedAvailabilityZoneException";
692
- this.$fault = "client";
693
869
  Object.setPrototypeOf(this, _UnsupportedAvailabilityZoneException.prototype);
694
870
  this.clusterName = opts.clusterName;
695
871
  this.nodegroupName = opts.nodegroupName;
696
872
  this.validZones = opts.validZones;
697
873
  }
698
874
  };
699
- __name(_UnsupportedAvailabilityZoneException, "UnsupportedAvailabilityZoneException");
700
- var UnsupportedAvailabilityZoneException = _UnsupportedAvailabilityZoneException;
701
875
  var EksAnywhereSubscriptionLicenseType = {
702
876
  Cluster: "Cluster"
703
877
  };
@@ -801,7 +975,12 @@ var EksAnywhereSubscriptionStatus = {
801
975
  EXPIRING: "EXPIRING",
802
976
  UPDATING: "UPDATING"
803
977
  };
804
- var _BadRequestException = class _BadRequestException extends EKSServiceException {
978
+ var BadRequestException = class _BadRequestException extends EKSServiceException {
979
+ static {
980
+ __name(this, "BadRequestException");
981
+ }
982
+ name = "BadRequestException";
983
+ $fault = "client";
805
984
  /**
806
985
  * @internal
807
986
  */
@@ -811,14 +990,15 @@ var _BadRequestException = class _BadRequestException extends EKSServiceExceptio
811
990
  $fault: "client",
812
991
  ...opts
813
992
  });
814
- this.name = "BadRequestException";
815
- this.$fault = "client";
816
993
  Object.setPrototypeOf(this, _BadRequestException.prototype);
817
994
  }
818
995
  };
819
- __name(_BadRequestException, "BadRequestException");
820
- var BadRequestException = _BadRequestException;
821
- var _NotFoundException = class _NotFoundException extends EKSServiceException {
996
+ var NotFoundException = class _NotFoundException extends EKSServiceException {
997
+ static {
998
+ __name(this, "NotFoundException");
999
+ }
1000
+ name = "NotFoundException";
1001
+ $fault = "client";
822
1002
  /**
823
1003
  * @internal
824
1004
  */
@@ -828,13 +1008,9 @@ var _NotFoundException = class _NotFoundException extends EKSServiceException {
828
1008
  $fault: "client",
829
1009
  ...opts
830
1010
  });
831
- this.name = "NotFoundException";
832
- this.$fault = "client";
833
1011
  Object.setPrototypeOf(this, _NotFoundException.prototype);
834
1012
  }
835
1013
  };
836
- __name(_NotFoundException, "NotFoundException");
837
- var NotFoundException = _NotFoundException;
838
1014
  var ConnectorConfigProvider = {
839
1015
  AKS: "AKS",
840
1016
  ANTHOS: "ANTHOS",
@@ -846,7 +1022,12 @@ var ConnectorConfigProvider = {
846
1022
  RANCHER: "RANCHER",
847
1023
  TANZU: "TANZU"
848
1024
  };
849
- var _ResourcePropagationDelayException = class _ResourcePropagationDelayException extends EKSServiceException {
1025
+ var ResourcePropagationDelayException = class _ResourcePropagationDelayException extends EKSServiceException {
1026
+ static {
1027
+ __name(this, "ResourcePropagationDelayException");
1028
+ }
1029
+ name = "ResourcePropagationDelayException";
1030
+ $fault = "client";
850
1031
  /**
851
1032
  * @internal
852
1033
  */
@@ -856,13 +1037,9 @@ var _ResourcePropagationDelayException = class _ResourcePropagationDelayExceptio
856
1037
  $fault: "client",
857
1038
  ...opts
858
1039
  });
859
- this.name = "ResourcePropagationDelayException";
860
- this.$fault = "client";
861
1040
  Object.setPrototypeOf(this, _ResourcePropagationDelayException.prototype);
862
1041
  }
863
1042
  };
864
- __name(_ResourcePropagationDelayException, "ResourcePropagationDelayException");
865
- var ResourcePropagationDelayException = _ResourcePropagationDelayException;
866
1043
 
867
1044
  // src/protocols/Aws_restJson1.ts
868
1045
  var se_AssociateAccessPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
@@ -3080,799 +3257,856 @@ var _t = "types";
3080
3257
  var _tK = "tagKeys";
3081
3258
 
3082
3259
  // src/commands/AssociateAccessPolicyCommand.ts
3083
- var _AssociateAccessPolicyCommand = class _AssociateAccessPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3260
+ var AssociateAccessPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3084
3261
  return [
3085
3262
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3086
3263
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3087
3264
  ];
3088
3265
  }).s("AWSWesleyFrontend", "AssociateAccessPolicy", {}).n("EKSClient", "AssociateAccessPolicyCommand").f(void 0, void 0).ser(se_AssociateAccessPolicyCommand).de(de_AssociateAccessPolicyCommand).build() {
3266
+ static {
3267
+ __name(this, "AssociateAccessPolicyCommand");
3268
+ }
3089
3269
  };
3090
- __name(_AssociateAccessPolicyCommand, "AssociateAccessPolicyCommand");
3091
- var AssociateAccessPolicyCommand = _AssociateAccessPolicyCommand;
3092
3270
 
3093
3271
  // src/commands/AssociateEncryptionConfigCommand.ts
3094
3272
 
3095
3273
 
3096
3274
 
3097
- var _AssociateEncryptionConfigCommand = class _AssociateEncryptionConfigCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3275
+ var AssociateEncryptionConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3098
3276
  return [
3099
3277
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3100
3278
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3101
3279
  ];
3102
3280
  }).s("AWSWesleyFrontend", "AssociateEncryptionConfig", {}).n("EKSClient", "AssociateEncryptionConfigCommand").f(void 0, void 0).ser(se_AssociateEncryptionConfigCommand).de(de_AssociateEncryptionConfigCommand).build() {
3281
+ static {
3282
+ __name(this, "AssociateEncryptionConfigCommand");
3283
+ }
3103
3284
  };
3104
- __name(_AssociateEncryptionConfigCommand, "AssociateEncryptionConfigCommand");
3105
- var AssociateEncryptionConfigCommand = _AssociateEncryptionConfigCommand;
3106
3285
 
3107
3286
  // src/commands/AssociateIdentityProviderConfigCommand.ts
3108
3287
 
3109
3288
 
3110
3289
 
3111
- var _AssociateIdentityProviderConfigCommand = class _AssociateIdentityProviderConfigCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3290
+ var AssociateIdentityProviderConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3112
3291
  return [
3113
3292
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3114
3293
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3115
3294
  ];
3116
3295
  }).s("AWSWesleyFrontend", "AssociateIdentityProviderConfig", {}).n("EKSClient", "AssociateIdentityProviderConfigCommand").f(void 0, void 0).ser(se_AssociateIdentityProviderConfigCommand).de(de_AssociateIdentityProviderConfigCommand).build() {
3296
+ static {
3297
+ __name(this, "AssociateIdentityProviderConfigCommand");
3298
+ }
3117
3299
  };
3118
- __name(_AssociateIdentityProviderConfigCommand, "AssociateIdentityProviderConfigCommand");
3119
- var AssociateIdentityProviderConfigCommand = _AssociateIdentityProviderConfigCommand;
3120
3300
 
3121
3301
  // src/commands/CreateAccessEntryCommand.ts
3122
3302
 
3123
3303
 
3124
3304
 
3125
- var _CreateAccessEntryCommand = class _CreateAccessEntryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3305
+ var CreateAccessEntryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3126
3306
  return [
3127
3307
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3128
3308
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3129
3309
  ];
3130
3310
  }).s("AWSWesleyFrontend", "CreateAccessEntry", {}).n("EKSClient", "CreateAccessEntryCommand").f(void 0, void 0).ser(se_CreateAccessEntryCommand).de(de_CreateAccessEntryCommand).build() {
3311
+ static {
3312
+ __name(this, "CreateAccessEntryCommand");
3313
+ }
3131
3314
  };
3132
- __name(_CreateAccessEntryCommand, "CreateAccessEntryCommand");
3133
- var CreateAccessEntryCommand = _CreateAccessEntryCommand;
3134
3315
 
3135
3316
  // src/commands/CreateAddonCommand.ts
3136
3317
 
3137
3318
 
3138
3319
 
3139
- var _CreateAddonCommand = class _CreateAddonCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3320
+ var CreateAddonCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3140
3321
  return [
3141
3322
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3142
3323
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3143
3324
  ];
3144
3325
  }).s("AWSWesleyFrontend", "CreateAddon", {}).n("EKSClient", "CreateAddonCommand").f(void 0, void 0).ser(se_CreateAddonCommand).de(de_CreateAddonCommand).build() {
3326
+ static {
3327
+ __name(this, "CreateAddonCommand");
3328
+ }
3145
3329
  };
3146
- __name(_CreateAddonCommand, "CreateAddonCommand");
3147
- var CreateAddonCommand = _CreateAddonCommand;
3148
3330
 
3149
3331
  // src/commands/CreateClusterCommand.ts
3150
3332
 
3151
3333
 
3152
3334
 
3153
- var _CreateClusterCommand = class _CreateClusterCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3335
+ var CreateClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3154
3336
  return [
3155
3337
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3156
3338
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3157
3339
  ];
3158
3340
  }).s("AWSWesleyFrontend", "CreateCluster", {}).n("EKSClient", "CreateClusterCommand").f(void 0, void 0).ser(se_CreateClusterCommand).de(de_CreateClusterCommand).build() {
3341
+ static {
3342
+ __name(this, "CreateClusterCommand");
3343
+ }
3159
3344
  };
3160
- __name(_CreateClusterCommand, "CreateClusterCommand");
3161
- var CreateClusterCommand = _CreateClusterCommand;
3162
3345
 
3163
3346
  // src/commands/CreateEksAnywhereSubscriptionCommand.ts
3164
3347
 
3165
3348
 
3166
3349
 
3167
- var _CreateEksAnywhereSubscriptionCommand = class _CreateEksAnywhereSubscriptionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3350
+ var CreateEksAnywhereSubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3168
3351
  return [
3169
3352
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3170
3353
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3171
3354
  ];
3172
3355
  }).s("AWSWesleyFrontend", "CreateEksAnywhereSubscription", {}).n("EKSClient", "CreateEksAnywhereSubscriptionCommand").f(void 0, void 0).ser(se_CreateEksAnywhereSubscriptionCommand).de(de_CreateEksAnywhereSubscriptionCommand).build() {
3356
+ static {
3357
+ __name(this, "CreateEksAnywhereSubscriptionCommand");
3358
+ }
3173
3359
  };
3174
- __name(_CreateEksAnywhereSubscriptionCommand, "CreateEksAnywhereSubscriptionCommand");
3175
- var CreateEksAnywhereSubscriptionCommand = _CreateEksAnywhereSubscriptionCommand;
3176
3360
 
3177
3361
  // src/commands/CreateFargateProfileCommand.ts
3178
3362
 
3179
3363
 
3180
3364
 
3181
- var _CreateFargateProfileCommand = class _CreateFargateProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3365
+ var CreateFargateProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3182
3366
  return [
3183
3367
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3184
3368
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3185
3369
  ];
3186
3370
  }).s("AWSWesleyFrontend", "CreateFargateProfile", {}).n("EKSClient", "CreateFargateProfileCommand").f(void 0, void 0).ser(se_CreateFargateProfileCommand).de(de_CreateFargateProfileCommand).build() {
3371
+ static {
3372
+ __name(this, "CreateFargateProfileCommand");
3373
+ }
3187
3374
  };
3188
- __name(_CreateFargateProfileCommand, "CreateFargateProfileCommand");
3189
- var CreateFargateProfileCommand = _CreateFargateProfileCommand;
3190
3375
 
3191
3376
  // src/commands/CreateNodegroupCommand.ts
3192
3377
 
3193
3378
 
3194
3379
 
3195
- var _CreateNodegroupCommand = class _CreateNodegroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3380
+ var CreateNodegroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3196
3381
  return [
3197
3382
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3198
3383
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3199
3384
  ];
3200
3385
  }).s("AWSWesleyFrontend", "CreateNodegroup", {}).n("EKSClient", "CreateNodegroupCommand").f(void 0, void 0).ser(se_CreateNodegroupCommand).de(de_CreateNodegroupCommand).build() {
3386
+ static {
3387
+ __name(this, "CreateNodegroupCommand");
3388
+ }
3201
3389
  };
3202
- __name(_CreateNodegroupCommand, "CreateNodegroupCommand");
3203
- var CreateNodegroupCommand = _CreateNodegroupCommand;
3204
3390
 
3205
3391
  // src/commands/CreatePodIdentityAssociationCommand.ts
3206
3392
 
3207
3393
 
3208
3394
 
3209
- var _CreatePodIdentityAssociationCommand = class _CreatePodIdentityAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3395
+ var CreatePodIdentityAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3210
3396
  return [
3211
3397
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3212
3398
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3213
3399
  ];
3214
3400
  }).s("AWSWesleyFrontend", "CreatePodIdentityAssociation", {}).n("EKSClient", "CreatePodIdentityAssociationCommand").f(void 0, void 0).ser(se_CreatePodIdentityAssociationCommand).de(de_CreatePodIdentityAssociationCommand).build() {
3401
+ static {
3402
+ __name(this, "CreatePodIdentityAssociationCommand");
3403
+ }
3215
3404
  };
3216
- __name(_CreatePodIdentityAssociationCommand, "CreatePodIdentityAssociationCommand");
3217
- var CreatePodIdentityAssociationCommand = _CreatePodIdentityAssociationCommand;
3218
3405
 
3219
3406
  // src/commands/DeleteAccessEntryCommand.ts
3220
3407
 
3221
3408
 
3222
3409
 
3223
- var _DeleteAccessEntryCommand = class _DeleteAccessEntryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3410
+ var DeleteAccessEntryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3224
3411
  return [
3225
3412
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3226
3413
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3227
3414
  ];
3228
3415
  }).s("AWSWesleyFrontend", "DeleteAccessEntry", {}).n("EKSClient", "DeleteAccessEntryCommand").f(void 0, void 0).ser(se_DeleteAccessEntryCommand).de(de_DeleteAccessEntryCommand).build() {
3416
+ static {
3417
+ __name(this, "DeleteAccessEntryCommand");
3418
+ }
3229
3419
  };
3230
- __name(_DeleteAccessEntryCommand, "DeleteAccessEntryCommand");
3231
- var DeleteAccessEntryCommand = _DeleteAccessEntryCommand;
3232
3420
 
3233
3421
  // src/commands/DeleteAddonCommand.ts
3234
3422
 
3235
3423
 
3236
3424
 
3237
- var _DeleteAddonCommand = class _DeleteAddonCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3425
+ var DeleteAddonCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3238
3426
  return [
3239
3427
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3240
3428
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3241
3429
  ];
3242
3430
  }).s("AWSWesleyFrontend", "DeleteAddon", {}).n("EKSClient", "DeleteAddonCommand").f(void 0, void 0).ser(se_DeleteAddonCommand).de(de_DeleteAddonCommand).build() {
3431
+ static {
3432
+ __name(this, "DeleteAddonCommand");
3433
+ }
3243
3434
  };
3244
- __name(_DeleteAddonCommand, "DeleteAddonCommand");
3245
- var DeleteAddonCommand = _DeleteAddonCommand;
3246
3435
 
3247
3436
  // src/commands/DeleteClusterCommand.ts
3248
3437
 
3249
3438
 
3250
3439
 
3251
- var _DeleteClusterCommand = class _DeleteClusterCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3440
+ var DeleteClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3252
3441
  return [
3253
3442
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3254
3443
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3255
3444
  ];
3256
3445
  }).s("AWSWesleyFrontend", "DeleteCluster", {}).n("EKSClient", "DeleteClusterCommand").f(void 0, void 0).ser(se_DeleteClusterCommand).de(de_DeleteClusterCommand).build() {
3446
+ static {
3447
+ __name(this, "DeleteClusterCommand");
3448
+ }
3257
3449
  };
3258
- __name(_DeleteClusterCommand, "DeleteClusterCommand");
3259
- var DeleteClusterCommand = _DeleteClusterCommand;
3260
3450
 
3261
3451
  // src/commands/DeleteEksAnywhereSubscriptionCommand.ts
3262
3452
 
3263
3453
 
3264
3454
 
3265
- var _DeleteEksAnywhereSubscriptionCommand = class _DeleteEksAnywhereSubscriptionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3455
+ var DeleteEksAnywhereSubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3266
3456
  return [
3267
3457
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3268
3458
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3269
3459
  ];
3270
3460
  }).s("AWSWesleyFrontend", "DeleteEksAnywhereSubscription", {}).n("EKSClient", "DeleteEksAnywhereSubscriptionCommand").f(void 0, void 0).ser(se_DeleteEksAnywhereSubscriptionCommand).de(de_DeleteEksAnywhereSubscriptionCommand).build() {
3461
+ static {
3462
+ __name(this, "DeleteEksAnywhereSubscriptionCommand");
3463
+ }
3271
3464
  };
3272
- __name(_DeleteEksAnywhereSubscriptionCommand, "DeleteEksAnywhereSubscriptionCommand");
3273
- var DeleteEksAnywhereSubscriptionCommand = _DeleteEksAnywhereSubscriptionCommand;
3274
3465
 
3275
3466
  // src/commands/DeleteFargateProfileCommand.ts
3276
3467
 
3277
3468
 
3278
3469
 
3279
- var _DeleteFargateProfileCommand = class _DeleteFargateProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3470
+ var DeleteFargateProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3280
3471
  return [
3281
3472
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3282
3473
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3283
3474
  ];
3284
3475
  }).s("AWSWesleyFrontend", "DeleteFargateProfile", {}).n("EKSClient", "DeleteFargateProfileCommand").f(void 0, void 0).ser(se_DeleteFargateProfileCommand).de(de_DeleteFargateProfileCommand).build() {
3476
+ static {
3477
+ __name(this, "DeleteFargateProfileCommand");
3478
+ }
3285
3479
  };
3286
- __name(_DeleteFargateProfileCommand, "DeleteFargateProfileCommand");
3287
- var DeleteFargateProfileCommand = _DeleteFargateProfileCommand;
3288
3480
 
3289
3481
  // src/commands/DeleteNodegroupCommand.ts
3290
3482
 
3291
3483
 
3292
3484
 
3293
- var _DeleteNodegroupCommand = class _DeleteNodegroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3485
+ var DeleteNodegroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3294
3486
  return [
3295
3487
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3296
3488
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3297
3489
  ];
3298
3490
  }).s("AWSWesleyFrontend", "DeleteNodegroup", {}).n("EKSClient", "DeleteNodegroupCommand").f(void 0, void 0).ser(se_DeleteNodegroupCommand).de(de_DeleteNodegroupCommand).build() {
3491
+ static {
3492
+ __name(this, "DeleteNodegroupCommand");
3493
+ }
3299
3494
  };
3300
- __name(_DeleteNodegroupCommand, "DeleteNodegroupCommand");
3301
- var DeleteNodegroupCommand = _DeleteNodegroupCommand;
3302
3495
 
3303
3496
  // src/commands/DeletePodIdentityAssociationCommand.ts
3304
3497
 
3305
3498
 
3306
3499
 
3307
- var _DeletePodIdentityAssociationCommand = class _DeletePodIdentityAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3500
+ var DeletePodIdentityAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3308
3501
  return [
3309
3502
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3310
3503
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3311
3504
  ];
3312
3505
  }).s("AWSWesleyFrontend", "DeletePodIdentityAssociation", {}).n("EKSClient", "DeletePodIdentityAssociationCommand").f(void 0, void 0).ser(se_DeletePodIdentityAssociationCommand).de(de_DeletePodIdentityAssociationCommand).build() {
3506
+ static {
3507
+ __name(this, "DeletePodIdentityAssociationCommand");
3508
+ }
3313
3509
  };
3314
- __name(_DeletePodIdentityAssociationCommand, "DeletePodIdentityAssociationCommand");
3315
- var DeletePodIdentityAssociationCommand = _DeletePodIdentityAssociationCommand;
3316
3510
 
3317
3511
  // src/commands/DeregisterClusterCommand.ts
3318
3512
 
3319
3513
 
3320
3514
 
3321
- var _DeregisterClusterCommand = class _DeregisterClusterCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3515
+ var DeregisterClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3322
3516
  return [
3323
3517
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3324
3518
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3325
3519
  ];
3326
3520
  }).s("AWSWesleyFrontend", "DeregisterCluster", {}).n("EKSClient", "DeregisterClusterCommand").f(void 0, void 0).ser(se_DeregisterClusterCommand).de(de_DeregisterClusterCommand).build() {
3521
+ static {
3522
+ __name(this, "DeregisterClusterCommand");
3523
+ }
3327
3524
  };
3328
- __name(_DeregisterClusterCommand, "DeregisterClusterCommand");
3329
- var DeregisterClusterCommand = _DeregisterClusterCommand;
3330
3525
 
3331
3526
  // src/commands/DescribeAccessEntryCommand.ts
3332
3527
 
3333
3528
 
3334
3529
 
3335
- var _DescribeAccessEntryCommand = class _DescribeAccessEntryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3530
+ var DescribeAccessEntryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3336
3531
  return [
3337
3532
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3338
3533
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3339
3534
  ];
3340
3535
  }).s("AWSWesleyFrontend", "DescribeAccessEntry", {}).n("EKSClient", "DescribeAccessEntryCommand").f(void 0, void 0).ser(se_DescribeAccessEntryCommand).de(de_DescribeAccessEntryCommand).build() {
3536
+ static {
3537
+ __name(this, "DescribeAccessEntryCommand");
3538
+ }
3341
3539
  };
3342
- __name(_DescribeAccessEntryCommand, "DescribeAccessEntryCommand");
3343
- var DescribeAccessEntryCommand = _DescribeAccessEntryCommand;
3344
3540
 
3345
3541
  // src/commands/DescribeAddonCommand.ts
3346
3542
 
3347
3543
 
3348
3544
 
3349
- var _DescribeAddonCommand = class _DescribeAddonCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3545
+ var DescribeAddonCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3350
3546
  return [
3351
3547
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3352
3548
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3353
3549
  ];
3354
3550
  }).s("AWSWesleyFrontend", "DescribeAddon", {}).n("EKSClient", "DescribeAddonCommand").f(void 0, void 0).ser(se_DescribeAddonCommand).de(de_DescribeAddonCommand).build() {
3551
+ static {
3552
+ __name(this, "DescribeAddonCommand");
3553
+ }
3355
3554
  };
3356
- __name(_DescribeAddonCommand, "DescribeAddonCommand");
3357
- var DescribeAddonCommand = _DescribeAddonCommand;
3358
3555
 
3359
3556
  // src/commands/DescribeAddonConfigurationCommand.ts
3360
3557
 
3361
3558
 
3362
3559
 
3363
- var _DescribeAddonConfigurationCommand = class _DescribeAddonConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3560
+ var DescribeAddonConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3364
3561
  return [
3365
3562
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3366
3563
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3367
3564
  ];
3368
3565
  }).s("AWSWesleyFrontend", "DescribeAddonConfiguration", {}).n("EKSClient", "DescribeAddonConfigurationCommand").f(void 0, void 0).ser(se_DescribeAddonConfigurationCommand).de(de_DescribeAddonConfigurationCommand).build() {
3566
+ static {
3567
+ __name(this, "DescribeAddonConfigurationCommand");
3568
+ }
3369
3569
  };
3370
- __name(_DescribeAddonConfigurationCommand, "DescribeAddonConfigurationCommand");
3371
- var DescribeAddonConfigurationCommand = _DescribeAddonConfigurationCommand;
3372
3570
 
3373
3571
  // src/commands/DescribeAddonVersionsCommand.ts
3374
3572
 
3375
3573
 
3376
3574
 
3377
- var _DescribeAddonVersionsCommand = class _DescribeAddonVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3575
+ var DescribeAddonVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3378
3576
  return [
3379
3577
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3380
3578
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3381
3579
  ];
3382
3580
  }).s("AWSWesleyFrontend", "DescribeAddonVersions", {}).n("EKSClient", "DescribeAddonVersionsCommand").f(void 0, void 0).ser(se_DescribeAddonVersionsCommand).de(de_DescribeAddonVersionsCommand).build() {
3581
+ static {
3582
+ __name(this, "DescribeAddonVersionsCommand");
3583
+ }
3383
3584
  };
3384
- __name(_DescribeAddonVersionsCommand, "DescribeAddonVersionsCommand");
3385
- var DescribeAddonVersionsCommand = _DescribeAddonVersionsCommand;
3386
3585
 
3387
3586
  // src/commands/DescribeClusterCommand.ts
3388
3587
 
3389
3588
 
3390
3589
 
3391
- var _DescribeClusterCommand = class _DescribeClusterCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3590
+ var DescribeClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3392
3591
  return [
3393
3592
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3394
3593
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3395
3594
  ];
3396
3595
  }).s("AWSWesleyFrontend", "DescribeCluster", {}).n("EKSClient", "DescribeClusterCommand").f(void 0, void 0).ser(se_DescribeClusterCommand).de(de_DescribeClusterCommand).build() {
3596
+ static {
3597
+ __name(this, "DescribeClusterCommand");
3598
+ }
3397
3599
  };
3398
- __name(_DescribeClusterCommand, "DescribeClusterCommand");
3399
- var DescribeClusterCommand = _DescribeClusterCommand;
3400
3600
 
3401
3601
  // src/commands/DescribeClusterVersionsCommand.ts
3402
3602
 
3403
3603
 
3404
3604
 
3405
- var _DescribeClusterVersionsCommand = class _DescribeClusterVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3605
+ var DescribeClusterVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3406
3606
  return [
3407
3607
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3408
3608
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3409
3609
  ];
3410
3610
  }).s("AWSWesleyFrontend", "DescribeClusterVersions", {}).n("EKSClient", "DescribeClusterVersionsCommand").f(void 0, void 0).ser(se_DescribeClusterVersionsCommand).de(de_DescribeClusterVersionsCommand).build() {
3611
+ static {
3612
+ __name(this, "DescribeClusterVersionsCommand");
3613
+ }
3411
3614
  };
3412
- __name(_DescribeClusterVersionsCommand, "DescribeClusterVersionsCommand");
3413
- var DescribeClusterVersionsCommand = _DescribeClusterVersionsCommand;
3414
3615
 
3415
3616
  // src/commands/DescribeEksAnywhereSubscriptionCommand.ts
3416
3617
 
3417
3618
 
3418
3619
 
3419
- var _DescribeEksAnywhereSubscriptionCommand = class _DescribeEksAnywhereSubscriptionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3620
+ var DescribeEksAnywhereSubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3420
3621
  return [
3421
3622
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3422
3623
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3423
3624
  ];
3424
3625
  }).s("AWSWesleyFrontend", "DescribeEksAnywhereSubscription", {}).n("EKSClient", "DescribeEksAnywhereSubscriptionCommand").f(void 0, void 0).ser(se_DescribeEksAnywhereSubscriptionCommand).de(de_DescribeEksAnywhereSubscriptionCommand).build() {
3626
+ static {
3627
+ __name(this, "DescribeEksAnywhereSubscriptionCommand");
3628
+ }
3425
3629
  };
3426
- __name(_DescribeEksAnywhereSubscriptionCommand, "DescribeEksAnywhereSubscriptionCommand");
3427
- var DescribeEksAnywhereSubscriptionCommand = _DescribeEksAnywhereSubscriptionCommand;
3428
3630
 
3429
3631
  // src/commands/DescribeFargateProfileCommand.ts
3430
3632
 
3431
3633
 
3432
3634
 
3433
- var _DescribeFargateProfileCommand = class _DescribeFargateProfileCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3635
+ var DescribeFargateProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3434
3636
  return [
3435
3637
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3436
3638
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3437
3639
  ];
3438
3640
  }).s("AWSWesleyFrontend", "DescribeFargateProfile", {}).n("EKSClient", "DescribeFargateProfileCommand").f(void 0, void 0).ser(se_DescribeFargateProfileCommand).de(de_DescribeFargateProfileCommand).build() {
3641
+ static {
3642
+ __name(this, "DescribeFargateProfileCommand");
3643
+ }
3439
3644
  };
3440
- __name(_DescribeFargateProfileCommand, "DescribeFargateProfileCommand");
3441
- var DescribeFargateProfileCommand = _DescribeFargateProfileCommand;
3442
3645
 
3443
3646
  // src/commands/DescribeIdentityProviderConfigCommand.ts
3444
3647
 
3445
3648
 
3446
3649
 
3447
- var _DescribeIdentityProviderConfigCommand = class _DescribeIdentityProviderConfigCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3650
+ var DescribeIdentityProviderConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3448
3651
  return [
3449
3652
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3450
3653
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3451
3654
  ];
3452
3655
  }).s("AWSWesleyFrontend", "DescribeIdentityProviderConfig", {}).n("EKSClient", "DescribeIdentityProviderConfigCommand").f(void 0, void 0).ser(se_DescribeIdentityProviderConfigCommand).de(de_DescribeIdentityProviderConfigCommand).build() {
3656
+ static {
3657
+ __name(this, "DescribeIdentityProviderConfigCommand");
3658
+ }
3453
3659
  };
3454
- __name(_DescribeIdentityProviderConfigCommand, "DescribeIdentityProviderConfigCommand");
3455
- var DescribeIdentityProviderConfigCommand = _DescribeIdentityProviderConfigCommand;
3456
3660
 
3457
3661
  // src/commands/DescribeInsightCommand.ts
3458
3662
 
3459
3663
 
3460
3664
 
3461
- var _DescribeInsightCommand = class _DescribeInsightCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3665
+ var DescribeInsightCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3462
3666
  return [
3463
3667
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3464
3668
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3465
3669
  ];
3466
3670
  }).s("AWSWesleyFrontend", "DescribeInsight", {}).n("EKSClient", "DescribeInsightCommand").f(void 0, void 0).ser(se_DescribeInsightCommand).de(de_DescribeInsightCommand).build() {
3671
+ static {
3672
+ __name(this, "DescribeInsightCommand");
3673
+ }
3467
3674
  };
3468
- __name(_DescribeInsightCommand, "DescribeInsightCommand");
3469
- var DescribeInsightCommand = _DescribeInsightCommand;
3470
3675
 
3471
3676
  // src/commands/DescribeNodegroupCommand.ts
3472
3677
 
3473
3678
 
3474
3679
 
3475
- var _DescribeNodegroupCommand = class _DescribeNodegroupCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3680
+ var DescribeNodegroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3476
3681
  return [
3477
3682
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3478
3683
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3479
3684
  ];
3480
3685
  }).s("AWSWesleyFrontend", "DescribeNodegroup", {}).n("EKSClient", "DescribeNodegroupCommand").f(void 0, void 0).ser(se_DescribeNodegroupCommand).de(de_DescribeNodegroupCommand).build() {
3686
+ static {
3687
+ __name(this, "DescribeNodegroupCommand");
3688
+ }
3481
3689
  };
3482
- __name(_DescribeNodegroupCommand, "DescribeNodegroupCommand");
3483
- var DescribeNodegroupCommand = _DescribeNodegroupCommand;
3484
3690
 
3485
3691
  // src/commands/DescribePodIdentityAssociationCommand.ts
3486
3692
 
3487
3693
 
3488
3694
 
3489
- var _DescribePodIdentityAssociationCommand = class _DescribePodIdentityAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3695
+ var DescribePodIdentityAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3490
3696
  return [
3491
3697
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3492
3698
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3493
3699
  ];
3494
3700
  }).s("AWSWesleyFrontend", "DescribePodIdentityAssociation", {}).n("EKSClient", "DescribePodIdentityAssociationCommand").f(void 0, void 0).ser(se_DescribePodIdentityAssociationCommand).de(de_DescribePodIdentityAssociationCommand).build() {
3701
+ static {
3702
+ __name(this, "DescribePodIdentityAssociationCommand");
3703
+ }
3495
3704
  };
3496
- __name(_DescribePodIdentityAssociationCommand, "DescribePodIdentityAssociationCommand");
3497
- var DescribePodIdentityAssociationCommand = _DescribePodIdentityAssociationCommand;
3498
3705
 
3499
3706
  // src/commands/DescribeUpdateCommand.ts
3500
3707
 
3501
3708
 
3502
3709
 
3503
- var _DescribeUpdateCommand = class _DescribeUpdateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3710
+ var DescribeUpdateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3504
3711
  return [
3505
3712
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3506
3713
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3507
3714
  ];
3508
3715
  }).s("AWSWesleyFrontend", "DescribeUpdate", {}).n("EKSClient", "DescribeUpdateCommand").f(void 0, void 0).ser(se_DescribeUpdateCommand).de(de_DescribeUpdateCommand).build() {
3716
+ static {
3717
+ __name(this, "DescribeUpdateCommand");
3718
+ }
3509
3719
  };
3510
- __name(_DescribeUpdateCommand, "DescribeUpdateCommand");
3511
- var DescribeUpdateCommand = _DescribeUpdateCommand;
3512
3720
 
3513
3721
  // src/commands/DisassociateAccessPolicyCommand.ts
3514
3722
 
3515
3723
 
3516
3724
 
3517
- var _DisassociateAccessPolicyCommand = class _DisassociateAccessPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3725
+ var DisassociateAccessPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3518
3726
  return [
3519
3727
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3520
3728
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3521
3729
  ];
3522
3730
  }).s("AWSWesleyFrontend", "DisassociateAccessPolicy", {}).n("EKSClient", "DisassociateAccessPolicyCommand").f(void 0, void 0).ser(se_DisassociateAccessPolicyCommand).de(de_DisassociateAccessPolicyCommand).build() {
3731
+ static {
3732
+ __name(this, "DisassociateAccessPolicyCommand");
3733
+ }
3523
3734
  };
3524
- __name(_DisassociateAccessPolicyCommand, "DisassociateAccessPolicyCommand");
3525
- var DisassociateAccessPolicyCommand = _DisassociateAccessPolicyCommand;
3526
3735
 
3527
3736
  // src/commands/DisassociateIdentityProviderConfigCommand.ts
3528
3737
 
3529
3738
 
3530
3739
 
3531
- var _DisassociateIdentityProviderConfigCommand = class _DisassociateIdentityProviderConfigCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3740
+ var DisassociateIdentityProviderConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3532
3741
  return [
3533
3742
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3534
3743
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3535
3744
  ];
3536
3745
  }).s("AWSWesleyFrontend", "DisassociateIdentityProviderConfig", {}).n("EKSClient", "DisassociateIdentityProviderConfigCommand").f(void 0, void 0).ser(se_DisassociateIdentityProviderConfigCommand).de(de_DisassociateIdentityProviderConfigCommand).build() {
3746
+ static {
3747
+ __name(this, "DisassociateIdentityProviderConfigCommand");
3748
+ }
3537
3749
  };
3538
- __name(_DisassociateIdentityProviderConfigCommand, "DisassociateIdentityProviderConfigCommand");
3539
- var DisassociateIdentityProviderConfigCommand = _DisassociateIdentityProviderConfigCommand;
3540
3750
 
3541
3751
  // src/commands/ListAccessEntriesCommand.ts
3542
3752
 
3543
3753
 
3544
3754
 
3545
- var _ListAccessEntriesCommand = class _ListAccessEntriesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3755
+ var ListAccessEntriesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3546
3756
  return [
3547
3757
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3548
3758
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3549
3759
  ];
3550
3760
  }).s("AWSWesleyFrontend", "ListAccessEntries", {}).n("EKSClient", "ListAccessEntriesCommand").f(void 0, void 0).ser(se_ListAccessEntriesCommand).de(de_ListAccessEntriesCommand).build() {
3761
+ static {
3762
+ __name(this, "ListAccessEntriesCommand");
3763
+ }
3551
3764
  };
3552
- __name(_ListAccessEntriesCommand, "ListAccessEntriesCommand");
3553
- var ListAccessEntriesCommand = _ListAccessEntriesCommand;
3554
3765
 
3555
3766
  // src/commands/ListAccessPoliciesCommand.ts
3556
3767
 
3557
3768
 
3558
3769
 
3559
- var _ListAccessPoliciesCommand = class _ListAccessPoliciesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3770
+ var ListAccessPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3560
3771
  return [
3561
3772
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3562
3773
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3563
3774
  ];
3564
3775
  }).s("AWSWesleyFrontend", "ListAccessPolicies", {}).n("EKSClient", "ListAccessPoliciesCommand").f(void 0, void 0).ser(se_ListAccessPoliciesCommand).de(de_ListAccessPoliciesCommand).build() {
3776
+ static {
3777
+ __name(this, "ListAccessPoliciesCommand");
3778
+ }
3565
3779
  };
3566
- __name(_ListAccessPoliciesCommand, "ListAccessPoliciesCommand");
3567
- var ListAccessPoliciesCommand = _ListAccessPoliciesCommand;
3568
3780
 
3569
3781
  // src/commands/ListAddonsCommand.ts
3570
3782
 
3571
3783
 
3572
3784
 
3573
- var _ListAddonsCommand = class _ListAddonsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3785
+ var ListAddonsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3574
3786
  return [
3575
3787
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3576
3788
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3577
3789
  ];
3578
3790
  }).s("AWSWesleyFrontend", "ListAddons", {}).n("EKSClient", "ListAddonsCommand").f(void 0, void 0).ser(se_ListAddonsCommand).de(de_ListAddonsCommand).build() {
3791
+ static {
3792
+ __name(this, "ListAddonsCommand");
3793
+ }
3579
3794
  };
3580
- __name(_ListAddonsCommand, "ListAddonsCommand");
3581
- var ListAddonsCommand = _ListAddonsCommand;
3582
3795
 
3583
3796
  // src/commands/ListAssociatedAccessPoliciesCommand.ts
3584
3797
 
3585
3798
 
3586
3799
 
3587
- var _ListAssociatedAccessPoliciesCommand = class _ListAssociatedAccessPoliciesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3800
+ var ListAssociatedAccessPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3588
3801
  return [
3589
3802
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3590
3803
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3591
3804
  ];
3592
3805
  }).s("AWSWesleyFrontend", "ListAssociatedAccessPolicies", {}).n("EKSClient", "ListAssociatedAccessPoliciesCommand").f(void 0, void 0).ser(se_ListAssociatedAccessPoliciesCommand).de(de_ListAssociatedAccessPoliciesCommand).build() {
3806
+ static {
3807
+ __name(this, "ListAssociatedAccessPoliciesCommand");
3808
+ }
3593
3809
  };
3594
- __name(_ListAssociatedAccessPoliciesCommand, "ListAssociatedAccessPoliciesCommand");
3595
- var ListAssociatedAccessPoliciesCommand = _ListAssociatedAccessPoliciesCommand;
3596
3810
 
3597
3811
  // src/commands/ListClustersCommand.ts
3598
3812
 
3599
3813
 
3600
3814
 
3601
- var _ListClustersCommand = class _ListClustersCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3815
+ var ListClustersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3602
3816
  return [
3603
3817
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3604
3818
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3605
3819
  ];
3606
3820
  }).s("AWSWesleyFrontend", "ListClusters", {}).n("EKSClient", "ListClustersCommand").f(void 0, void 0).ser(se_ListClustersCommand).de(de_ListClustersCommand).build() {
3821
+ static {
3822
+ __name(this, "ListClustersCommand");
3823
+ }
3607
3824
  };
3608
- __name(_ListClustersCommand, "ListClustersCommand");
3609
- var ListClustersCommand = _ListClustersCommand;
3610
3825
 
3611
3826
  // src/commands/ListEksAnywhereSubscriptionsCommand.ts
3612
3827
 
3613
3828
 
3614
3829
 
3615
- var _ListEksAnywhereSubscriptionsCommand = class _ListEksAnywhereSubscriptionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3830
+ var ListEksAnywhereSubscriptionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3616
3831
  return [
3617
3832
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3618
3833
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3619
3834
  ];
3620
3835
  }).s("AWSWesleyFrontend", "ListEksAnywhereSubscriptions", {}).n("EKSClient", "ListEksAnywhereSubscriptionsCommand").f(void 0, void 0).ser(se_ListEksAnywhereSubscriptionsCommand).de(de_ListEksAnywhereSubscriptionsCommand).build() {
3836
+ static {
3837
+ __name(this, "ListEksAnywhereSubscriptionsCommand");
3838
+ }
3621
3839
  };
3622
- __name(_ListEksAnywhereSubscriptionsCommand, "ListEksAnywhereSubscriptionsCommand");
3623
- var ListEksAnywhereSubscriptionsCommand = _ListEksAnywhereSubscriptionsCommand;
3624
3840
 
3625
3841
  // src/commands/ListFargateProfilesCommand.ts
3626
3842
 
3627
3843
 
3628
3844
 
3629
- var _ListFargateProfilesCommand = class _ListFargateProfilesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3845
+ var ListFargateProfilesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3630
3846
  return [
3631
3847
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3632
3848
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3633
3849
  ];
3634
3850
  }).s("AWSWesleyFrontend", "ListFargateProfiles", {}).n("EKSClient", "ListFargateProfilesCommand").f(void 0, void 0).ser(se_ListFargateProfilesCommand).de(de_ListFargateProfilesCommand).build() {
3851
+ static {
3852
+ __name(this, "ListFargateProfilesCommand");
3853
+ }
3635
3854
  };
3636
- __name(_ListFargateProfilesCommand, "ListFargateProfilesCommand");
3637
- var ListFargateProfilesCommand = _ListFargateProfilesCommand;
3638
3855
 
3639
3856
  // src/commands/ListIdentityProviderConfigsCommand.ts
3640
3857
 
3641
3858
 
3642
3859
 
3643
- var _ListIdentityProviderConfigsCommand = class _ListIdentityProviderConfigsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3860
+ var ListIdentityProviderConfigsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3644
3861
  return [
3645
3862
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3646
3863
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3647
3864
  ];
3648
3865
  }).s("AWSWesleyFrontend", "ListIdentityProviderConfigs", {}).n("EKSClient", "ListIdentityProviderConfigsCommand").f(void 0, void 0).ser(se_ListIdentityProviderConfigsCommand).de(de_ListIdentityProviderConfigsCommand).build() {
3866
+ static {
3867
+ __name(this, "ListIdentityProviderConfigsCommand");
3868
+ }
3649
3869
  };
3650
- __name(_ListIdentityProviderConfigsCommand, "ListIdentityProviderConfigsCommand");
3651
- var ListIdentityProviderConfigsCommand = _ListIdentityProviderConfigsCommand;
3652
3870
 
3653
3871
  // src/commands/ListInsightsCommand.ts
3654
3872
 
3655
3873
 
3656
3874
 
3657
- var _ListInsightsCommand = class _ListInsightsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3875
+ var ListInsightsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3658
3876
  return [
3659
3877
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3660
3878
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3661
3879
  ];
3662
3880
  }).s("AWSWesleyFrontend", "ListInsights", {}).n("EKSClient", "ListInsightsCommand").f(void 0, void 0).ser(se_ListInsightsCommand).de(de_ListInsightsCommand).build() {
3881
+ static {
3882
+ __name(this, "ListInsightsCommand");
3883
+ }
3663
3884
  };
3664
- __name(_ListInsightsCommand, "ListInsightsCommand");
3665
- var ListInsightsCommand = _ListInsightsCommand;
3666
3885
 
3667
3886
  // src/commands/ListNodegroupsCommand.ts
3668
3887
 
3669
3888
 
3670
3889
 
3671
- var _ListNodegroupsCommand = class _ListNodegroupsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3890
+ var ListNodegroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3672
3891
  return [
3673
3892
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3674
3893
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3675
3894
  ];
3676
3895
  }).s("AWSWesleyFrontend", "ListNodegroups", {}).n("EKSClient", "ListNodegroupsCommand").f(void 0, void 0).ser(se_ListNodegroupsCommand).de(de_ListNodegroupsCommand).build() {
3896
+ static {
3897
+ __name(this, "ListNodegroupsCommand");
3898
+ }
3677
3899
  };
3678
- __name(_ListNodegroupsCommand, "ListNodegroupsCommand");
3679
- var ListNodegroupsCommand = _ListNodegroupsCommand;
3680
3900
 
3681
3901
  // src/commands/ListPodIdentityAssociationsCommand.ts
3682
3902
 
3683
3903
 
3684
3904
 
3685
- var _ListPodIdentityAssociationsCommand = class _ListPodIdentityAssociationsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3905
+ var ListPodIdentityAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3686
3906
  return [
3687
3907
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3688
3908
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3689
3909
  ];
3690
3910
  }).s("AWSWesleyFrontend", "ListPodIdentityAssociations", {}).n("EKSClient", "ListPodIdentityAssociationsCommand").f(void 0, void 0).ser(se_ListPodIdentityAssociationsCommand).de(de_ListPodIdentityAssociationsCommand).build() {
3911
+ static {
3912
+ __name(this, "ListPodIdentityAssociationsCommand");
3913
+ }
3691
3914
  };
3692
- __name(_ListPodIdentityAssociationsCommand, "ListPodIdentityAssociationsCommand");
3693
- var ListPodIdentityAssociationsCommand = _ListPodIdentityAssociationsCommand;
3694
3915
 
3695
3916
  // src/commands/ListTagsForResourceCommand.ts
3696
3917
 
3697
3918
 
3698
3919
 
3699
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3920
+ var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3700
3921
  return [
3701
3922
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3702
3923
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3703
3924
  ];
3704
3925
  }).s("AWSWesleyFrontend", "ListTagsForResource", {}).n("EKSClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
3926
+ static {
3927
+ __name(this, "ListTagsForResourceCommand");
3928
+ }
3705
3929
  };
3706
- __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
3707
- var ListTagsForResourceCommand = _ListTagsForResourceCommand;
3708
3930
 
3709
3931
  // src/commands/ListUpdatesCommand.ts
3710
3932
 
3711
3933
 
3712
3934
 
3713
- var _ListUpdatesCommand = class _ListUpdatesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3935
+ var ListUpdatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3714
3936
  return [
3715
3937
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3716
3938
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3717
3939
  ];
3718
3940
  }).s("AWSWesleyFrontend", "ListUpdates", {}).n("EKSClient", "ListUpdatesCommand").f(void 0, void 0).ser(se_ListUpdatesCommand).de(de_ListUpdatesCommand).build() {
3941
+ static {
3942
+ __name(this, "ListUpdatesCommand");
3943
+ }
3719
3944
  };
3720
- __name(_ListUpdatesCommand, "ListUpdatesCommand");
3721
- var ListUpdatesCommand = _ListUpdatesCommand;
3722
3945
 
3723
3946
  // src/commands/RegisterClusterCommand.ts
3724
3947
 
3725
3948
 
3726
3949
 
3727
- var _RegisterClusterCommand = class _RegisterClusterCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3950
+ var RegisterClusterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3728
3951
  return [
3729
3952
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3730
3953
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3731
3954
  ];
3732
3955
  }).s("AWSWesleyFrontend", "RegisterCluster", {}).n("EKSClient", "RegisterClusterCommand").f(void 0, void 0).ser(se_RegisterClusterCommand).de(de_RegisterClusterCommand).build() {
3956
+ static {
3957
+ __name(this, "RegisterClusterCommand");
3958
+ }
3733
3959
  };
3734
- __name(_RegisterClusterCommand, "RegisterClusterCommand");
3735
- var RegisterClusterCommand = _RegisterClusterCommand;
3736
3960
 
3737
3961
  // src/commands/TagResourceCommand.ts
3738
3962
 
3739
3963
 
3740
3964
 
3741
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3965
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3742
3966
  return [
3743
3967
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3744
3968
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3745
3969
  ];
3746
3970
  }).s("AWSWesleyFrontend", "TagResource", {}).n("EKSClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
3971
+ static {
3972
+ __name(this, "TagResourceCommand");
3973
+ }
3747
3974
  };
3748
- __name(_TagResourceCommand, "TagResourceCommand");
3749
- var TagResourceCommand = _TagResourceCommand;
3750
3975
 
3751
3976
  // src/commands/UntagResourceCommand.ts
3752
3977
 
3753
3978
 
3754
3979
 
3755
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3980
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3756
3981
  return [
3757
3982
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3758
3983
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3759
3984
  ];
3760
3985
  }).s("AWSWesleyFrontend", "UntagResource", {}).n("EKSClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
3986
+ static {
3987
+ __name(this, "UntagResourceCommand");
3988
+ }
3761
3989
  };
3762
- __name(_UntagResourceCommand, "UntagResourceCommand");
3763
- var UntagResourceCommand = _UntagResourceCommand;
3764
3990
 
3765
3991
  // src/commands/UpdateAccessEntryCommand.ts
3766
3992
 
3767
3993
 
3768
3994
 
3769
- var _UpdateAccessEntryCommand = class _UpdateAccessEntryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3995
+ var UpdateAccessEntryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3770
3996
  return [
3771
3997
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3772
3998
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3773
3999
  ];
3774
4000
  }).s("AWSWesleyFrontend", "UpdateAccessEntry", {}).n("EKSClient", "UpdateAccessEntryCommand").f(void 0, void 0).ser(se_UpdateAccessEntryCommand).de(de_UpdateAccessEntryCommand).build() {
4001
+ static {
4002
+ __name(this, "UpdateAccessEntryCommand");
4003
+ }
3775
4004
  };
3776
- __name(_UpdateAccessEntryCommand, "UpdateAccessEntryCommand");
3777
- var UpdateAccessEntryCommand = _UpdateAccessEntryCommand;
3778
4005
 
3779
4006
  // src/commands/UpdateAddonCommand.ts
3780
4007
 
3781
4008
 
3782
4009
 
3783
- var _UpdateAddonCommand = class _UpdateAddonCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4010
+ var UpdateAddonCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3784
4011
  return [
3785
4012
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3786
4013
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3787
4014
  ];
3788
4015
  }).s("AWSWesleyFrontend", "UpdateAddon", {}).n("EKSClient", "UpdateAddonCommand").f(void 0, void 0).ser(se_UpdateAddonCommand).de(de_UpdateAddonCommand).build() {
4016
+ static {
4017
+ __name(this, "UpdateAddonCommand");
4018
+ }
3789
4019
  };
3790
- __name(_UpdateAddonCommand, "UpdateAddonCommand");
3791
- var UpdateAddonCommand = _UpdateAddonCommand;
3792
4020
 
3793
4021
  // src/commands/UpdateClusterConfigCommand.ts
3794
4022
 
3795
4023
 
3796
4024
 
3797
- var _UpdateClusterConfigCommand = class _UpdateClusterConfigCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4025
+ var UpdateClusterConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3798
4026
  return [
3799
4027
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3800
4028
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3801
4029
  ];
3802
4030
  }).s("AWSWesleyFrontend", "UpdateClusterConfig", {}).n("EKSClient", "UpdateClusterConfigCommand").f(void 0, void 0).ser(se_UpdateClusterConfigCommand).de(de_UpdateClusterConfigCommand).build() {
4031
+ static {
4032
+ __name(this, "UpdateClusterConfigCommand");
4033
+ }
3803
4034
  };
3804
- __name(_UpdateClusterConfigCommand, "UpdateClusterConfigCommand");
3805
- var UpdateClusterConfigCommand = _UpdateClusterConfigCommand;
3806
4035
 
3807
4036
  // src/commands/UpdateClusterVersionCommand.ts
3808
4037
 
3809
4038
 
3810
4039
 
3811
- var _UpdateClusterVersionCommand = class _UpdateClusterVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4040
+ var UpdateClusterVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3812
4041
  return [
3813
4042
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3814
4043
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3815
4044
  ];
3816
4045
  }).s("AWSWesleyFrontend", "UpdateClusterVersion", {}).n("EKSClient", "UpdateClusterVersionCommand").f(void 0, void 0).ser(se_UpdateClusterVersionCommand).de(de_UpdateClusterVersionCommand).build() {
4046
+ static {
4047
+ __name(this, "UpdateClusterVersionCommand");
4048
+ }
3817
4049
  };
3818
- __name(_UpdateClusterVersionCommand, "UpdateClusterVersionCommand");
3819
- var UpdateClusterVersionCommand = _UpdateClusterVersionCommand;
3820
4050
 
3821
4051
  // src/commands/UpdateEksAnywhereSubscriptionCommand.ts
3822
4052
 
3823
4053
 
3824
4054
 
3825
- var _UpdateEksAnywhereSubscriptionCommand = class _UpdateEksAnywhereSubscriptionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4055
+ var UpdateEksAnywhereSubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3826
4056
  return [
3827
4057
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3828
4058
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3829
4059
  ];
3830
4060
  }).s("AWSWesleyFrontend", "UpdateEksAnywhereSubscription", {}).n("EKSClient", "UpdateEksAnywhereSubscriptionCommand").f(void 0, void 0).ser(se_UpdateEksAnywhereSubscriptionCommand).de(de_UpdateEksAnywhereSubscriptionCommand).build() {
4061
+ static {
4062
+ __name(this, "UpdateEksAnywhereSubscriptionCommand");
4063
+ }
3831
4064
  };
3832
- __name(_UpdateEksAnywhereSubscriptionCommand, "UpdateEksAnywhereSubscriptionCommand");
3833
- var UpdateEksAnywhereSubscriptionCommand = _UpdateEksAnywhereSubscriptionCommand;
3834
4065
 
3835
4066
  // src/commands/UpdateNodegroupConfigCommand.ts
3836
4067
 
3837
4068
 
3838
4069
 
3839
- var _UpdateNodegroupConfigCommand = class _UpdateNodegroupConfigCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4070
+ var UpdateNodegroupConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3840
4071
  return [
3841
4072
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3842
4073
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3843
4074
  ];
3844
4075
  }).s("AWSWesleyFrontend", "UpdateNodegroupConfig", {}).n("EKSClient", "UpdateNodegroupConfigCommand").f(void 0, void 0).ser(se_UpdateNodegroupConfigCommand).de(de_UpdateNodegroupConfigCommand).build() {
4076
+ static {
4077
+ __name(this, "UpdateNodegroupConfigCommand");
4078
+ }
3845
4079
  };
3846
- __name(_UpdateNodegroupConfigCommand, "UpdateNodegroupConfigCommand");
3847
- var UpdateNodegroupConfigCommand = _UpdateNodegroupConfigCommand;
3848
4080
 
3849
4081
  // src/commands/UpdateNodegroupVersionCommand.ts
3850
4082
 
3851
4083
 
3852
4084
 
3853
- var _UpdateNodegroupVersionCommand = class _UpdateNodegroupVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4085
+ var UpdateNodegroupVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3854
4086
  return [
3855
4087
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3856
4088
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3857
4089
  ];
3858
4090
  }).s("AWSWesleyFrontend", "UpdateNodegroupVersion", {}).n("EKSClient", "UpdateNodegroupVersionCommand").f(void 0, void 0).ser(se_UpdateNodegroupVersionCommand).de(de_UpdateNodegroupVersionCommand).build() {
4091
+ static {
4092
+ __name(this, "UpdateNodegroupVersionCommand");
4093
+ }
3859
4094
  };
3860
- __name(_UpdateNodegroupVersionCommand, "UpdateNodegroupVersionCommand");
3861
- var UpdateNodegroupVersionCommand = _UpdateNodegroupVersionCommand;
3862
4095
 
3863
4096
  // src/commands/UpdatePodIdentityAssociationCommand.ts
3864
4097
 
3865
4098
 
3866
4099
 
3867
- var _UpdatePodIdentityAssociationCommand = class _UpdatePodIdentityAssociationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
4100
+ var UpdatePodIdentityAssociationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
3868
4101
  return [
3869
4102
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
3870
4103
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
3871
4104
  ];
3872
4105
  }).s("AWSWesleyFrontend", "UpdatePodIdentityAssociation", {}).n("EKSClient", "UpdatePodIdentityAssociationCommand").f(void 0, void 0).ser(se_UpdatePodIdentityAssociationCommand).de(de_UpdatePodIdentityAssociationCommand).build() {
4106
+ static {
4107
+ __name(this, "UpdatePodIdentityAssociationCommand");
4108
+ }
3873
4109
  };
3874
- __name(_UpdatePodIdentityAssociationCommand, "UpdatePodIdentityAssociationCommand");
3875
- var UpdatePodIdentityAssociationCommand = _UpdatePodIdentityAssociationCommand;
3876
4110
 
3877
4111
  // src/EKS.ts
3878
4112
  var commands = {
@@ -3934,10 +4168,11 @@ var commands = {
3934
4168
  UpdateNodegroupVersionCommand,
3935
4169
  UpdatePodIdentityAssociationCommand
3936
4170
  };
3937
- var _EKS = class _EKS extends EKSClient {
4171
+ var EKS = class extends EKSClient {
4172
+ static {
4173
+ __name(this, "EKS");
4174
+ }
3938
4175
  };
3939
- __name(_EKS, "EKS");
3940
- var EKS = _EKS;
3941
4176
  (0, import_smithy_client.createAggregatedClient)(commands, EKS);
3942
4177
 
3943
4178
  // src/pagination/DescribeAddonVersionsPaginator.ts