@aws-sdk/client-eks 3.1112.0 → 3.1114.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 (65) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/index.js +381 -123
  3. package/dist-es/EKS.js +14 -0
  4. package/dist-es/commands/ActivateCertificateAuthorityCommand.js +4 -0
  5. package/dist-es/commands/CreateCertificateAuthorityCommand.js +4 -0
  6. package/dist-es/commands/DeleteCertificateAuthorityCommand.js +4 -0
  7. package/dist-es/commands/DescribeCertificateAuthorityCommand.js +4 -0
  8. package/dist-es/commands/ListCertificateAuthoritiesCommand.js +4 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/enums.js +76 -52
  11. package/dist-es/models/errors.js +29 -29
  12. package/dist-es/pagination/ListCertificateAuthoritiesPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +1 -0
  14. package/dist-es/schemas/schemas_0.js +166 -36
  15. package/dist-es/waiters/index.js +1 -0
  16. package/dist-es/waiters/waitForCertificateAuthorityUpdateComplete.js +49 -0
  17. package/dist-types/EKS.d.ts +48 -0
  18. package/dist-types/EKSClient.d.ts +7 -2
  19. package/dist-types/commands/ActivateCertificateAuthorityCommand.d.ts +139 -0
  20. package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +2 -2
  21. package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +2 -2
  22. package/dist-types/commands/CancelUpdateCommand.d.ts +2 -2
  23. package/dist-types/commands/CreateCertificateAuthorityCommand.d.ts +149 -0
  24. package/dist-types/commands/CreateClusterCommand.d.ts +4 -0
  25. package/dist-types/commands/DeleteCertificateAuthorityCommand.d.ts +134 -0
  26. package/dist-types/commands/DeleteClusterCommand.d.ts +4 -0
  27. package/dist-types/commands/DeregisterClusterCommand.d.ts +4 -0
  28. package/dist-types/commands/DescribeCertificateAuthorityCommand.d.ts +104 -0
  29. package/dist-types/commands/DescribeClusterCommand.d.ts +4 -0
  30. package/dist-types/commands/DescribeUpdateCommand.d.ts +2 -2
  31. package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +2 -2
  32. package/dist-types/commands/ListCertificateAuthoritiesCommand.d.ts +102 -0
  33. package/dist-types/commands/RegisterClusterCommand.d.ts +4 -0
  34. package/dist-types/commands/UpdateAddonCommand.d.ts +2 -2
  35. package/dist-types/commands/UpdateCapabilityCommand.d.ts +2 -2
  36. package/dist-types/commands/UpdateClusterConfigCommand.d.ts +2 -2
  37. package/dist-types/commands/UpdateClusterVersionCommand.d.ts +2 -2
  38. package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +2 -2
  39. package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +2 -2
  40. package/dist-types/commands/index.d.ts +5 -0
  41. package/dist-types/models/enums.d.ts +120 -64
  42. package/dist-types/models/errors.d.ts +37 -37
  43. package/dist-types/models/models_0.d.ts +569 -186
  44. package/dist-types/pagination/ListCertificateAuthoritiesPaginator.d.ts +7 -0
  45. package/dist-types/pagination/index.d.ts +1 -0
  46. package/dist-types/schemas/schemas_0.d.ts +20 -0
  47. package/dist-types/ts3.4/EKS.d.ts +98 -0
  48. package/dist-types/ts3.4/EKSClient.d.ts +30 -0
  49. package/dist-types/ts3.4/commands/ActivateCertificateAuthorityCommand.d.ts +42 -0
  50. package/dist-types/ts3.4/commands/CreateCertificateAuthorityCommand.d.ts +42 -0
  51. package/dist-types/ts3.4/commands/DeleteCertificateAuthorityCommand.d.ts +42 -0
  52. package/dist-types/ts3.4/commands/DescribeCertificateAuthorityCommand.d.ts +42 -0
  53. package/dist-types/ts3.4/commands/ListCertificateAuthoritiesCommand.d.ts +42 -0
  54. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  55. package/dist-types/ts3.4/models/enums.d.ts +90 -58
  56. package/dist-types/ts3.4/models/errors.d.ts +14 -14
  57. package/dist-types/ts3.4/models/models_0.d.ts +103 -22
  58. package/dist-types/ts3.4/pagination/ListCertificateAuthoritiesPaginator.d.ts +11 -0
  59. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  60. package/dist-types/ts3.4/schemas/schemas_0.d.ts +20 -0
  61. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  62. package/dist-types/ts3.4/waiters/waitForCertificateAuthorityUpdateComplete.d.ts +15 -0
  63. package/dist-types/waiters/index.d.ts +1 -0
  64. package/dist-types/waiters/waitForCertificateAuthorityUpdateComplete.d.ts +15 -0
  65. package/package.json +1 -1
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1111.0";
72
+ var version = "3.1113.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -178,62 +178,74 @@ class InvalidParameterException extends EKSServiceException {
178
178
  this.subscriptionId = opts.subscriptionId;
179
179
  }
180
180
  }
181
- class InvalidRequestException extends EKSServiceException {
182
- name = "InvalidRequestException";
181
+ class ResourceNotFoundException extends EKSServiceException {
182
+ name = "ResourceNotFoundException";
183
183
  $fault = "client";
184
184
  clusterName;
185
185
  nodegroupName;
186
+ fargateProfileName;
186
187
  addonName;
187
188
  subscriptionId;
188
189
  constructor(opts) {
189
190
  super({
190
- name: "InvalidRequestException",
191
+ name: "ResourceNotFoundException",
191
192
  $fault: "client",
192
193
  ...opts,
193
194
  });
194
- Object.setPrototypeOf(this, InvalidRequestException.prototype);
195
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
195
196
  this.clusterName = opts.clusterName;
196
197
  this.nodegroupName = opts.nodegroupName;
198
+ this.fargateProfileName = opts.fargateProfileName;
197
199
  this.addonName = opts.addonName;
198
200
  this.subscriptionId = opts.subscriptionId;
199
201
  }
200
202
  }
201
- class ResourceNotFoundException extends EKSServiceException {
202
- name = "ResourceNotFoundException";
203
- $fault = "client";
203
+ class ServerException extends EKSServiceException {
204
+ name = "ServerException";
205
+ $fault = "server";
204
206
  clusterName;
205
207
  nodegroupName;
206
- fargateProfileName;
207
208
  addonName;
208
209
  subscriptionId;
209
210
  constructor(opts) {
210
211
  super({
211
- name: "ResourceNotFoundException",
212
- $fault: "client",
212
+ name: "ServerException",
213
+ $fault: "server",
213
214
  ...opts,
214
215
  });
215
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
216
+ Object.setPrototypeOf(this, ServerException.prototype);
216
217
  this.clusterName = opts.clusterName;
217
218
  this.nodegroupName = opts.nodegroupName;
218
- this.fargateProfileName = opts.fargateProfileName;
219
219
  this.addonName = opts.addonName;
220
220
  this.subscriptionId = opts.subscriptionId;
221
221
  }
222
222
  }
223
- class ServerException extends EKSServiceException {
224
- name = "ServerException";
223
+ class ServiceUnavailableException extends EKSServiceException {
224
+ name = "ServiceUnavailableException";
225
225
  $fault = "server";
226
+ constructor(opts) {
227
+ super({
228
+ name: "ServiceUnavailableException",
229
+ $fault: "server",
230
+ ...opts,
231
+ });
232
+ Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
233
+ }
234
+ }
235
+ class InvalidRequestException extends EKSServiceException {
236
+ name = "InvalidRequestException";
237
+ $fault = "client";
226
238
  clusterName;
227
239
  nodegroupName;
228
240
  addonName;
229
241
  subscriptionId;
230
242
  constructor(opts) {
231
243
  super({
232
- name: "ServerException",
233
- $fault: "server",
244
+ name: "InvalidRequestException",
245
+ $fault: "client",
234
246
  ...opts,
235
247
  });
236
- Object.setPrototypeOf(this, ServerException.prototype);
248
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
237
249
  this.clusterName = opts.clusterName;
238
250
  this.nodegroupName = opts.nodegroupName;
239
251
  this.addonName = opts.addonName;
@@ -324,18 +336,6 @@ class ResourceLimitExceededException extends EKSServiceException {
324
336
  this.subscriptionId = opts.subscriptionId;
325
337
  }
326
338
  }
327
- class ServiceUnavailableException extends EKSServiceException {
328
- name = "ServiceUnavailableException";
329
- $fault = "server";
330
- constructor(opts) {
331
- super({
332
- name: "ServiceUnavailableException",
333
- $fault: "server",
334
- ...opts,
335
- });
336
- Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
337
- }
338
- }
339
339
  class UnsupportedAvailabilityZoneException extends EKSServiceException {
340
340
  name = "UnsupportedAvailabilityZoneException";
341
341
  $fault = "client";
@@ -397,8 +397,12 @@ const _AAPL = "AssociatedAccessPoliciesList";
397
397
  const _AAPR = "AssociateAccessPolicyRequest";
398
398
  const _AAPRs = "AssociateAccessPolicyResponse";
399
399
  const _AAPs = "AssociateAccessPolicy";
400
+ const _ACA = "ActiveCertificateAuthority";
400
401
  const _ACAICR = "ArgoCdAwsIdcConfigRequest";
401
402
  const _ACAICRr = "ArgoCdAwsIdcConfigResponse";
403
+ const _ACAR = "ActivateCertificateAuthorityRequest";
404
+ const _ACARc = "ActivateCertificateAuthorityResponse";
405
+ const _ACAc = "ActivateCertificateAuthority";
402
406
  const _ACCR = "ArgoCdConfigRequest";
403
407
  const _ACCRr = "ArgoCdConfigResponse";
404
408
  const _ACD = "AddonCompatibilityDetail";
@@ -438,14 +442,22 @@ const _Ad = "Addons";
438
442
  const _BRE = "BadRequestException";
439
443
  const _BS = "BlockStorage";
440
444
  const _C = "Cancellation";
441
- const _CA = "CreateAddon";
445
+ const _CA = "CertificateAuthority";
442
446
  const _CACR = "CreateAccessConfigRequest";
443
447
  const _CAE = "CreateAccessEntry";
444
448
  const _CAER = "CreateAccessEntryRequest";
445
449
  const _CAERr = "CreateAccessEntryResponse";
446
450
  const _CAR = "CreateAddonRequest";
447
451
  const _CARr = "CreateAddonResponse";
452
+ const _CAS = "CertificateAuthoritySummary";
453
+ const _CASE = "CertificateAuthorityScheduledEvents";
454
+ const _CASL = "CertificateAuthoritySummaryList";
455
+ const _CAV = "CertificateAuthorityValidity";
456
+ const _CAr = "CreateAddon";
448
457
  const _CC = "CreateCapability";
458
+ const _CCA = "CreateCertificateAuthority";
459
+ const _CCAR = "CreateCertificateAuthorityRequest";
460
+ const _CCARr = "CreateCertificateAuthorityResponse";
449
461
  const _CCR = "CapabilityConfigurationRequest";
450
462
  const _CCRa = "CapabilityConfigurationResponse";
451
463
  const _CCRo = "ComputeConfigRequest";
@@ -518,6 +530,12 @@ const _DAVR = "DescribeAddonVersionsRequest";
518
530
  const _DAVRe = "DescribeAddonVersionsResponse";
519
531
  const _DAe = "DescribeAddon";
520
532
  const _DC = "DurationConstraints";
533
+ const _DCA = "DeleteCertificateAuthority";
534
+ const _DCAR = "DeleteCertificateAuthorityRequest";
535
+ const _DCARe = "DeleteCertificateAuthorityResponse";
536
+ const _DCARes = "DescribeCertificateAuthorityRequest";
537
+ const _DCAResc = "DescribeCertificateAuthorityResponse";
538
+ const _DCAe = "DescribeCertificateAuthority";
521
539
  const _DCR = "DeleteCapabilityRequest";
522
540
  const _DCRe = "DeleteCapabilityResponse";
523
541
  const _DCRel = "DeleteClusterRequest";
@@ -640,6 +658,9 @@ const _LAPRi = "ListAccessPoliciesResponse";
640
658
  const _LAR = "ListAddonsRequest";
641
659
  const _LARi = "ListAddonsResponse";
642
660
  const _LC = "ListCapabilities";
661
+ const _LCA = "ListCertificateAuthorities";
662
+ const _LCAR = "ListCertificateAuthoritiesRequest";
663
+ const _LCARi = "ListCertificateAuthoritiesResponse";
643
664
  const _LCR = "ListCapabilitiesRequest";
644
665
  const _LCRi = "ListCapabilitiesResponse";
645
666
  const _LCRis = "ListClustersRequest";
@@ -784,8 +805,10 @@ const _a = "arn";
784
805
  const _aA = "addonArn";
785
806
  const _aAP = "associatedAccessPolicy";
786
807
  const _aAPs = "associatedAccessPolicies";
808
+ const _aAc = "activatedAt";
787
809
  const _aAs = "associatedAt";
788
810
  const _aAss = "associationArn";
811
+ const _aB = "activatedBy";
789
812
  const _aC = "argoCd";
790
813
  const _aCD = "addonCompatibilityDetails";
791
814
  const _aCc = "accessConfig";
@@ -813,6 +836,7 @@ const _aT = "amiType";
813
836
  const _aV = "addonVersion";
814
837
  const _aVd = "addonVersions";
815
838
  const _aVl = "allowedValues";
839
+ const _ac = "active";
816
840
  const _ad = "addon";
817
841
  const _add = "addons";
818
842
  const _ar = "architecture";
@@ -823,7 +847,10 @@ const _bS = "blockStorage";
823
847
  const _bSMA = "bootstrapSelfManagedAddons";
824
848
  const _c = "client";
825
849
  const _cA = "createdAt";
850
+ const _cAI = "certificateAuthorityId";
826
851
  const _cAe = "certificateAuthority";
852
+ const _cAer = "certificateAuthorities";
853
+ const _cB = "createdBy";
827
854
  const _cC = "connectorConfig";
828
855
  const _cCo = "computeConfig";
829
856
  const _cDSG = "clusterDatabaseSizeGb";
@@ -869,9 +896,10 @@ const _dO = "defaultOnly";
869
896
  const _dP = "deletionProtection";
870
897
  const _dPP = "deletePropagationPolicy";
871
898
  const _dPV = "defaultPlatformVersion";
872
- const _dS = "diskSize";
899
+ const _dS = "distributionStatus";
873
900
  const _dST = "disableSessionTags";
874
901
  const _dSe = "desiredSize";
902
+ const _dSi = "diskSize";
875
903
  const _dV = "defaultVersion";
876
904
  const _dVe = "defaultValue";
877
905
  const _de = "description";
@@ -898,6 +926,8 @@ const _en = "enabled";
898
926
  const _end = "endpoint";
899
927
  const _er = "errors";
900
928
  const _f = "filter";
929
+ const _fAA = "firstAutoActivation";
930
+ const _fAAi = "finalAutoActivation";
901
931
  const _fP = "fargateProfile";
902
932
  const _fPA = "fargateProfileArn";
903
933
  const _fPN = "fargateProfileName";
@@ -912,7 +942,7 @@ const _hPACC = "horizontalPodAutoscalerControllerConfig";
912
942
  const _hPASP = "horizontalPodAutoscalerSyncPeriod";
913
943
  const _hQ = "httpQuery";
914
944
  const _ht = "http";
915
- const _i = "issues";
945
+ const _i = "id";
916
946
  const _iA = "includeAll";
917
947
  const _iF = "ipFamily";
918
948
  const _iIA = "idcInstanceArn";
@@ -925,14 +955,15 @@ const _iR = "idcRegion";
925
955
  const _iS = "insightStatus";
926
956
  const _iSn = "includeStatus";
927
957
  const _iT = "instanceTypes";
958
+ const _iTd = "idempotencyToken";
928
959
  const _iU = "issuerUrl";
929
960
  const _id = "identities";
930
- const _id_ = "id";
931
961
  const _ide = "identity";
932
962
  const _in = "insight";
933
963
  const _inc = "include";
934
964
  const _ins = "insights";
935
- const _is = "issuer";
965
+ const _is = "issues";
966
+ const _iss = "issuer";
936
967
  const _k = "key";
937
968
  const _kA = "keyArn";
938
969
  const _kASC = "kubeApiServerConfig";
@@ -974,7 +1005,9 @@ const _ma = "max";
974
1005
  const _mi = "min";
975
1006
  const _n = "name";
976
1007
  const _nA = "networkAccess";
977
- const _nAo = "nodegroupArn";
1008
+ const _nAo = "notAfter";
1009
+ const _nAod = "nodegroupArn";
1010
+ const _nB = "notBefore";
978
1011
  const _nC = "namespaceConfig";
979
1012
  const _nMC = "nodeMonitoringCondition";
980
1013
  const _nN = "nodegroupName";
@@ -1021,6 +1054,7 @@ const _rASG = "remoteAccessSecurityGroup";
1021
1054
  const _rAe = "remoteAccess";
1022
1055
  const _rAep = "repairAction";
1023
1056
  const _rAes = "resourceArn";
1057
+ const _rAo = "rollbackAvailable";
1024
1058
  const _rC = "requiresConfiguration";
1025
1059
  const _rCe = "resolveConflicts";
1026
1060
  const _rCeq = "requiredClaims";
@@ -1049,6 +1083,7 @@ const _sARA = "serviceAccountRoleArn";
1049
1083
  const _sAt = "startedAt";
1050
1084
  const _sC = "storageConfig";
1051
1085
  const _sCc = "scalingConfig";
1086
+ const _sE = "scheduledEvents";
1052
1087
  const _sGI = "securityGroupIds";
1053
1088
  const _sI = "subscriptionId";
1054
1089
  const _sIC = "serviceIpv4Cidr";
@@ -1056,10 +1091,11 @@ const _sICe = "serviceIpv6Cidr";
1056
1091
  const _sIu = "subnetIds";
1057
1092
  const _sL = "spreadLevel";
1058
1093
  const _sNPR = "serviceNodePortRange";
1059
- const _sS = "scoringStrategy";
1094
+ const _sS = "signingStatus";
1060
1095
  const _sSG = "sourceSecurityGroups";
1061
1096
  const _sSRV = "startServingReplacementVersion";
1062
1097
  const _sSV = "stopServingVersion";
1098
+ const _sSc = "scoringStrategy";
1063
1099
  const _sT = "supportType";
1064
1100
  const _sU = "serverUrl";
1065
1101
  const _se = "server";
@@ -1098,7 +1134,8 @@ const _vI = "vpceIds";
1098
1134
  const _vIp = "vpcId";
1099
1135
  const _vS = "versionStatus";
1100
1136
  const _vZ = "validZones";
1101
- const _va = "value";
1137
+ const _va = "validity";
1138
+ const _val = "value";
1102
1139
  const _w = "weight";
1103
1140
  const _wPC = "warmPoolConfig";
1104
1141
  const _zSC = "zonalShiftConfig";
@@ -1221,6 +1258,21 @@ var AccessScope$ = [3, n0, _AS,
1221
1258
  [_ty, _na],
1222
1259
  [0, 64 | 0]
1223
1260
  ];
1261
+ var ActivateCertificateAuthorityRequest$ = [3, n0, _ACAR,
1262
+ 0,
1263
+ [_cN, _cAI, _cRT],
1264
+ [[0, 1], [0, 1], [0, 4]], 2
1265
+ ];
1266
+ var ActivateCertificateAuthorityResponse$ = [3, n0, _ACARc,
1267
+ 0,
1268
+ [_up, _cAe],
1269
+ [() => Update$, () => CertificateAuthoritySummary$]
1270
+ ];
1271
+ var ActiveCertificateAuthority$ = [3, n0, _ACA,
1272
+ 0,
1273
+ [_i, _aB],
1274
+ [0, 0]
1275
+ ];
1224
1276
  var Addon$ = [3, n0, _A,
1225
1277
  0,
1226
1278
  [_aN, _cN, _st, _aV, _h, _aA, _cA, _mA, _sARA, _t, _p, _o, _mI, _cV, _pIA, _nC],
@@ -1233,7 +1285,7 @@ var AddonCompatibilityDetail$ = [3, n0, _ACD,
1233
1285
  ];
1234
1286
  var AddonHealth$ = [3, n0, _AH,
1235
1287
  0,
1236
- [_i],
1288
+ [_is],
1237
1289
  [() => AddonIssueList]
1238
1290
  ];
1239
1291
  var AddonInfo$ = [3, n0, _AI,
@@ -1388,7 +1440,7 @@ var CapabilityConfigurationResponse$ = [3, n0, _CCRa,
1388
1440
  ];
1389
1441
  var CapabilityHealth$ = [3, n0, _CH,
1390
1442
  0,
1391
- [_i],
1443
+ [_is],
1392
1444
  [() => CapabilityIssueList]
1393
1445
  ];
1394
1446
  var CapabilityIssue$ = [3, n0, _CI,
@@ -1403,8 +1455,28 @@ var CapabilitySummary$ = [3, n0, _CS,
1403
1455
  ];
1404
1456
  var Certificate$ = [3, n0, _Ce,
1405
1457
  0,
1406
- [_d],
1407
- [0]
1458
+ [_d, _ac],
1459
+ [0, () => ActiveCertificateAuthority$]
1460
+ ];
1461
+ var CertificateAuthority$ = [3, n0, _CA,
1462
+ 0,
1463
+ [_i, _cA, _cB, _aAc, _aB, _sS, _dS, _va, _sE, _rAo, _d],
1464
+ [0, 4, 0, 4, 0, 0, 0, () => CertificateAuthorityValidity$, () => CertificateAuthorityScheduledEvents$, 2, 0]
1465
+ ];
1466
+ var CertificateAuthorityScheduledEvents$ = [3, n0, _CASE,
1467
+ 0,
1468
+ [_fAA, _fAAi],
1469
+ [4, 4]
1470
+ ];
1471
+ var CertificateAuthoritySummary$ = [3, n0, _CAS,
1472
+ 0,
1473
+ [_i, _cA, _cB, _aAc, _aB, _sS, _dS],
1474
+ [0, 4, 0, 4, 0, 0, 0]
1475
+ ];
1476
+ var CertificateAuthorityValidity$ = [3, n0, _CAV,
1477
+ 0,
1478
+ [_nB, _nAo],
1479
+ [4, 4]
1408
1480
  ];
1409
1481
  var ClientStat$ = [3, n0, _CSl,
1410
1482
  0,
@@ -1413,12 +1485,12 @@ var ClientStat$ = [3, n0, _CSl,
1413
1485
  ];
1414
1486
  var Cluster$ = [3, n0, _Cl,
1415
1487
  0,
1416
- [_n, _a, _cA, _v, _end, _rA, _rVC, _kNC, _l, _ide, _st, _cAe, _cRT, _pV, _t, _eC, _cC, _id_, _h, _oC, _aCc, _uP, _zSC, _rNC, _cCo, _sC, _dP, _cPSC, _kASC, _kSC, _kCMC],
1488
+ [_n, _a, _cA, _v, _end, _rA, _rVC, _kNC, _l, _ide, _st, _cAe, _cRT, _pV, _t, _eC, _cC, _i, _h, _oC, _aCc, _uP, _zSC, _rNC, _cCo, _sC, _dP, _cPSC, _kASC, _kSC, _kCMC],
1417
1489
  [0, 0, 4, 0, 0, 0, () => VpcConfigResponse$, () => KubernetesNetworkConfigResponse$, () => Logging$, () => Identity$, 0, () => Certificate$, 0, 0, 128 | 0, () => EncryptionConfigList, () => ConnectorConfigResponse$, 0, () => ClusterHealth$, () => OutpostConfigResponse$, () => AccessConfigResponse$, () => UpgradePolicyResponse$, () => ZonalShiftConfigResponse$, () => RemoteNetworkConfigResponse$, () => ComputeConfigResponse$, () => StorageConfigResponse$, 2, () => ControlPlaneScalingConfig$, () => KubeApiServerConfigResponse$, () => KubeSchedulerConfigResponse$, () => KubeControllerManagerConfigResponse$]
1418
1490
  ];
1419
1491
  var ClusterHealth$ = [3, n0, _CHl,
1420
1492
  0,
1421
- [_i],
1493
+ [_is],
1422
1494
  [() => ClusterIssueList]
1423
1495
  ];
1424
1496
  var ClusterIssue$ = [3, n0, _CIl,
@@ -1516,6 +1588,16 @@ var CreateCapabilityResponse$ = [3, n0, _CCRre,
1516
1588
  [_ca],
1517
1589
  [() => Capability$]
1518
1590
  ];
1591
+ var CreateCertificateAuthorityRequest$ = [3, n0, _CCAR,
1592
+ 0,
1593
+ [_cN, _cRT],
1594
+ [[0, 1], [0, 4]], 1
1595
+ ];
1596
+ var CreateCertificateAuthorityResponse$ = [3, n0, _CCARr,
1597
+ 0,
1598
+ [_up, _cAe],
1599
+ [() => Update$, () => CertificateAuthoritySummary$]
1600
+ ];
1519
1601
  var CreateClusterRequest$ = [3, n0, _CCRrea,
1520
1602
  0,
1521
1603
  [_n, _rA, _rVC, _v, _kNC, _l, _cRT, _t, _eC, _oC, _aCc, _bSMA, _uP, _zSC, _rNC, _cCo, _sC, _dP, _cPSC, _kASC, _kSC, _kCMC],
@@ -1548,7 +1630,7 @@ var CreateFargateProfileResponse$ = [3, n0, _CFPRr,
1548
1630
  ];
1549
1631
  var CreateNodegroupRequest$ = [3, n0, _CNR,
1550
1632
  0,
1551
- [_cN, _nN, _sub, _nR, _sCc, _dS, _iT, _aT, _rAe, _la, _ta, _t, _cRT, _lTa, _uC, _nRC, _cTa, _v, _rV, _wPC],
1633
+ [_cN, _nN, _sub, _nR, _sCc, _dSi, _iT, _aT, _rAe, _la, _ta, _t, _cRT, _lTa, _uC, _nRC, _cTa, _v, _rV, _wPC],
1552
1634
  [[0, 1], 0, 64 | 0, 0, () => NodegroupScalingConfig$, 1, 64 | 0, 0, () => RemoteAccessConfig$, 128 | 0, () => taintsList, 128 | 0, [0, 4], () => LaunchTemplateSpecification$, () => NodegroupUpdateConfig$, () => NodeRepairConfig$, 0, 0, 0, () => WarmPoolConfig$], 4
1553
1635
  ];
1554
1636
  var CreateNodegroupResponse$ = [3, n0, _CNRr,
@@ -1596,6 +1678,16 @@ var DeleteCapabilityResponse$ = [3, n0, _DCRe,
1596
1678
  [_ca],
1597
1679
  [() => Capability$]
1598
1680
  ];
1681
+ var DeleteCertificateAuthorityRequest$ = [3, n0, _DCAR,
1682
+ 0,
1683
+ [_cN, _cAI, _cRT],
1684
+ [[0, 1], [0, 1], [0, { [_hQ]: _cRT, [_iTd]: 1 }]], 2
1685
+ ];
1686
+ var DeleteCertificateAuthorityResponse$ = [3, n0, _DCARe,
1687
+ 0,
1688
+ [_up, _cAe],
1689
+ [() => Update$, () => CertificateAuthoritySummary$]
1690
+ ];
1599
1691
  var DeleteClusterRequest$ = [3, n0, _DCRel,
1600
1692
  0,
1601
1693
  [_n],
@@ -1608,7 +1700,7 @@ var DeleteClusterResponse$ = [3, n0, _DCRele,
1608
1700
  ];
1609
1701
  var DeleteEksAnywhereSubscriptionRequest$ = [3, n0, _DEASR,
1610
1702
  0,
1611
- [_id_],
1703
+ [_i],
1612
1704
  [[0, 1]], 1
1613
1705
  ];
1614
1706
  var DeleteEksAnywhereSubscriptionResponse$ = [3, n0, _DEASRe,
@@ -1711,6 +1803,16 @@ var DescribeCapabilityResponse$ = [3, n0, _DCResc,
1711
1803
  [_ca],
1712
1804
  [() => Capability$]
1713
1805
  ];
1806
+ var DescribeCertificateAuthorityRequest$ = [3, n0, _DCARes,
1807
+ 0,
1808
+ [_cN, _cAI],
1809
+ [[0, 1], [0, 1]], 2
1810
+ ];
1811
+ var DescribeCertificateAuthorityResponse$ = [3, n0, _DCAResc,
1812
+ 0,
1813
+ [_cAe],
1814
+ [() => CertificateAuthority$]
1815
+ ];
1714
1816
  var DescribeClusterRequest$ = [3, n0, _DCRescr,
1715
1817
  0,
1716
1818
  [_n],
@@ -1733,7 +1835,7 @@ var DescribeClusterVersionsResponse$ = [3, n0, _DCVRe,
1733
1835
  ];
1734
1836
  var DescribeEksAnywhereSubscriptionRequest$ = [3, n0, _DEASRes,
1735
1837
  0,
1736
- [_id_],
1838
+ [_i],
1737
1839
  [[0, 1]], 1
1738
1840
  ];
1739
1841
  var DescribeEksAnywhereSubscriptionResponse$ = [3, n0, _DEASResc,
@@ -1763,7 +1865,7 @@ var DescribeIdentityProviderConfigResponse$ = [3, n0, _DIPCRe,
1763
1865
  ];
1764
1866
  var DescribeInsightRequest$ = [3, n0, _DIR,
1765
1867
  0,
1766
- [_cN, _id_],
1868
+ [_cN, _i],
1767
1869
  [[0, 1], [0, 1]], 2
1768
1870
  ];
1769
1871
  var DescribeInsightResponse$ = [3, n0, _DIRe,
@@ -1843,7 +1945,7 @@ var DurationParameterConfig$ = [3, n0, _DPC,
1843
1945
  ];
1844
1946
  var EksAnywhereSubscription$ = [3, n0, _EAS,
1845
1947
  0,
1846
- [_id_, _a, _cA, _eD, _eDx, _lQ, _lT, _te, _st, _aR, _lA, _li, _t],
1948
+ [_i, _a, _cA, _eD, _eDx, _lQ, _lT, _te, _st, _aR, _lA, _li, _t],
1847
1949
  [0, 0, 4, 4, 4, 1, 0, () => EksAnywhereSubscriptionTerm$, 0, 2, 64 | 0, () => LicenseList, 128 | 0]
1848
1950
  ];
1849
1951
  var EksAnywhereSubscriptionTerm$ = [3, n0, _EAST,
@@ -1883,7 +1985,7 @@ var FargateProfile$ = [3, n0, _FP,
1883
1985
  ];
1884
1986
  var FargateProfileHealth$ = [3, n0, _FPH,
1885
1987
  0,
1886
- [_i],
1988
+ [_is],
1887
1989
  [() => FargateProfileIssueList]
1888
1990
  ];
1889
1991
  var FargateProfileIssue$ = [3, n0, _FPI,
@@ -1928,7 +2030,7 @@ var IdentityProviderConfigResponse$ = [3, n0, _IPCR,
1928
2030
  ];
1929
2031
  var Insight$ = [3, n0, _In,
1930
2032
  0,
1931
- [_id_, _n, _cat, _kV, _lRTa, _lTT, _de, _iS, _rec, _aId, _res, _cSS],
2033
+ [_i, _n, _cat, _kV, _lRTa, _lTT, _de, _iS, _rec, _aId, _res, _cSS],
1932
2034
  [0, 0, 0, 0, 4, 4, 0, () => InsightStatus$, 0, 128 | 0, () => InsightResourceDetails, () => InsightCategorySpecificSummary$]
1933
2035
  ];
1934
2036
  var InsightCategorySpecificSummary$ = [3, n0, _ICSS,
@@ -1953,7 +2055,7 @@ var InsightStatus$ = [3, n0, _IS,
1953
2055
  ];
1954
2056
  var InsightSummary$ = [3, n0, _ISn,
1955
2057
  0,
1956
- [_id_, _n, _cat, _kV, _lRTa, _lTT, _de, _iS],
2058
+ [_i, _n, _cat, _kV, _lRTa, _lTT, _de, _iS],
1957
2059
  [0, 0, 0, 0, 4, 4, 0, () => InsightStatus$]
1958
2060
  ];
1959
2061
  var IntegerRangeConstraint$ = [3, n0, _IRC,
@@ -2023,12 +2125,12 @@ var KubeSchedulerVersionConfig$ = [3, n0, _KSVC,
2023
2125
  ];
2024
2126
  var LaunchTemplateSpecification$ = [3, n0, _LTS,
2025
2127
  0,
2026
- [_n, _v, _id_],
2128
+ [_n, _v, _i],
2027
2129
  [0, 0, 0]
2028
2130
  ];
2029
2131
  var License$ = [3, n0, _L,
2030
2132
  0,
2031
- [_id_, _to],
2133
+ [_i, _to],
2032
2134
  [0, 0]
2033
2135
  ];
2034
2136
  var ListAccessEntriesRequest$ = [3, n0, _LAER,
@@ -2081,6 +2183,16 @@ var ListCapabilitiesResponse$ = [3, n0, _LCRi,
2081
2183
  [_cap, _nT],
2082
2184
  [() => CapabilitySummaryList, 0]
2083
2185
  ];
2186
+ var ListCertificateAuthoritiesRequest$ = [3, n0, _LCAR,
2187
+ 0,
2188
+ [_cN, _mR, _nT],
2189
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
2190
+ ];
2191
+ var ListCertificateAuthoritiesResponse$ = [3, n0, _LCARi,
2192
+ 0,
2193
+ [_cAer, _nT],
2194
+ [() => CertificateAuthoritySummaryList, 0]
2195
+ ];
2084
2196
  var ListClustersRequest$ = [3, n0, _LCRis,
2085
2197
  0,
2086
2198
  [_mR, _nT, _inc],
@@ -2188,12 +2300,12 @@ var MarketplaceInformation$ = [3, n0, _MI,
2188
2300
  ];
2189
2301
  var Nodegroup$ = [3, n0, _N,
2190
2302
  0,
2191
- [_nN, _nAo, _cN, _v, _rV, _cA, _mA, _st, _cTa, _sCc, _iT, _sub, _rAe, _aT, _nR, _la, _ta, _res, _dS, _h, _uC, _nRC, _lTa, _t, _wPC],
2303
+ [_nN, _nAod, _cN, _v, _rV, _cA, _mA, _st, _cTa, _sCc, _iT, _sub, _rAe, _aT, _nR, _la, _ta, _res, _dSi, _h, _uC, _nRC, _lTa, _t, _wPC],
2192
2304
  [0, 0, 0, 0, 0, 4, 4, 0, 0, () => NodegroupScalingConfig$, 64 | 0, 64 | 0, () => RemoteAccessConfig$, 0, 0, 128 | 0, () => taintsList, () => NodegroupResources$, 1, () => NodegroupHealth$, () => NodegroupUpdateConfig$, () => NodeRepairConfig$, () => LaunchTemplateSpecification$, 128 | 0, () => WarmPoolConfig$]
2193
2305
  ];
2194
2306
  var NodegroupHealth$ = [3, n0, _NH,
2195
2307
  0,
2196
- [_i],
2308
+ [_is],
2197
2309
  [() => IssueList]
2198
2310
  ];
2199
2311
  var NodegroupResources$ = [3, n0, _NR,
@@ -2223,17 +2335,17 @@ var NodeRepairConfigOverrides$ = [3, n0, _NRCO,
2223
2335
  ];
2224
2336
  var NodeResourcesFitConfig$ = [3, n0, _NRFC,
2225
2337
  0,
2226
- [_sS],
2338
+ [_sSc],
2227
2339
  [() => ScoringStrategy$]
2228
2340
  ];
2229
2341
  var NodeResourcesFitVersionConfig$ = [3, n0, _NRFVC,
2230
2342
  0,
2231
- [_sS],
2343
+ [_sSc],
2232
2344
  [() => ScoringStrategyConfig$]
2233
2345
  ];
2234
2346
  var OIDC$ = [3, n0, _OIDC,
2235
2347
  0,
2236
- [_is],
2348
+ [_iss],
2237
2349
  [0]
2238
2350
  ];
2239
2351
  var OidcIdentityProviderConfig$ = [3, n0, _OIPC,
@@ -2343,7 +2455,7 @@ var ScoringStrategyConfig$ = [3, n0, _SSC,
2343
2455
  ];
2344
2456
  var ScoringStrategyConstraints$ = [3, n0, _SSCc,
2345
2457
  0,
2346
- [_sS, _res],
2458
+ [_sSc, _res],
2347
2459
  [() => AllowedValuesConstraint$, () => ResourceConstraints$]
2348
2460
  ];
2349
2461
  var ServiceNodePortRange$ = [3, n0, _SNPR,
@@ -2353,7 +2465,7 @@ var ServiceNodePortRange$ = [3, n0, _SNPR,
2353
2465
  ];
2354
2466
  var SsoIdentity$ = [3, n0, _SI,
2355
2467
  0,
2356
- [_id_, _ty],
2468
+ [_i, _ty],
2357
2469
  [0, 0], 2
2358
2470
  ];
2359
2471
  var StartInsightsRefreshRequest$ = [3, n0, _SIRR,
@@ -2388,7 +2500,7 @@ var TagResourceResponse$ = [3, n0, _TRRa,
2388
2500
  ];
2389
2501
  var Taint$ = [3, n0, _T,
2390
2502
  0,
2391
- [_k, _va, _ef],
2503
+ [_k, _val, _ef],
2392
2504
  [0, 0, 0]
2393
2505
  ];
2394
2506
  var UntagResourceRequest$ = [3, n0, _URR,
@@ -2403,7 +2515,7 @@ var UntagResourceResponse$ = [3, n0, _URRn,
2403
2515
  ];
2404
2516
  var Update$ = [3, n0, _U,
2405
2517
  0,
2406
- [_id_, _st, _ty, _pa, _cA, _er, _can],
2518
+ [_i, _st, _ty, _pa, _cA, _er, _can],
2407
2519
  [0, 0, 0, () => UpdateParams, 4, () => ErrorDetails, () => Cancellation$]
2408
2520
  ];
2409
2521
  var UpdateAccessConfigRequest$ = [3, n0, _UACR,
@@ -2473,7 +2585,7 @@ var UpdateClusterVersionResponse$ = [3, n0, _UCVRp,
2473
2585
  ];
2474
2586
  var UpdateEksAnywhereSubscriptionRequest$ = [3, n0, _UEASR,
2475
2587
  0,
2476
- [_id_, _aR, _cRT],
2588
+ [_i, _aR, _cRT],
2477
2589
  [[0, 1], 2, [0, 4]], 2
2478
2590
  ];
2479
2591
  var UpdateEksAnywhereSubscriptionResponse$ = [3, n0, _UEASRp,
@@ -2508,7 +2620,7 @@ var UpdateNodegroupVersionResponse$ = [3, n0, _UNVRp,
2508
2620
  ];
2509
2621
  var UpdateParam$ = [3, n0, _UP,
2510
2622
  0,
2511
- [_ty, _va],
2623
+ [_ty, _val],
2512
2624
  [0, 0]
2513
2625
  ];
2514
2626
  var UpdatePodIdentityAssociationRequest$ = [3, n0, _UPIAR,
@@ -2602,6 +2714,9 @@ var CapabilityIssueList = [1, n0, _CIL,
2602
2714
  var CapabilitySummaryList = [1, n0, _CSL,
2603
2715
  0, () => CapabilitySummary$
2604
2716
  ];
2717
+ var CertificateAuthoritySummaryList = [1, n0, _CASL,
2718
+ 0, () => CertificateAuthoritySummary$
2719
+ ];
2605
2720
  var ClientStats = [1, n0, _CSli,
2606
2721
  0, () => ClientStat$
2607
2722
  ];
@@ -2677,6 +2792,9 @@ var taintsList = [1, n0, _tL,
2677
2792
  var UpdateParams = [1, n0, _UPp,
2678
2793
  0, () => UpdateParam$
2679
2794
  ];
2795
+ var ActivateCertificateAuthority$ = [9, n0, _ACAc,
2796
+ { [_ht]: ["POST", "/clusters/{clusterName}/certificate-authorities/{certificateAuthorityId}/activate", 200] }, () => ActivateCertificateAuthorityRequest$, () => ActivateCertificateAuthorityResponse$
2797
+ ];
2680
2798
  var AssociateAccessPolicy$ = [9, n0, _AAPs,
2681
2799
  { [_ht]: ["POST", "/clusters/{clusterName}/access-entries/{principalArn}/access-policies", 200] }, () => AssociateAccessPolicyRequest$, () => AssociateAccessPolicyResponse$
2682
2800
  ];
@@ -2692,12 +2810,15 @@ var CancelUpdate$ = [9, n0, _CU,
2692
2810
  var CreateAccessEntry$ = [9, n0, _CAE,
2693
2811
  { [_ht]: ["POST", "/clusters/{clusterName}/access-entries", 200] }, () => CreateAccessEntryRequest$, () => CreateAccessEntryResponse$
2694
2812
  ];
2695
- var CreateAddon$ = [9, n0, _CA,
2813
+ var CreateAddon$ = [9, n0, _CAr,
2696
2814
  { [_ht]: ["POST", "/clusters/{clusterName}/addons", 200] }, () => CreateAddonRequest$, () => CreateAddonResponse$
2697
2815
  ];
2698
2816
  var CreateCapability$ = [9, n0, _CC,
2699
2817
  { [_ht]: ["POST", "/clusters/{clusterName}/capabilities", 200] }, () => CreateCapabilityRequest$, () => CreateCapabilityResponse$
2700
2818
  ];
2819
+ var CreateCertificateAuthority$ = [9, n0, _CCA,
2820
+ { [_ht]: ["POST", "/clusters/{clusterName}/certificate-authorities", 200] }, () => CreateCertificateAuthorityRequest$, () => CreateCertificateAuthorityResponse$
2821
+ ];
2701
2822
  var CreateCluster$ = [9, n0, _CCr,
2702
2823
  { [_ht]: ["POST", "/clusters", 200] }, () => CreateClusterRequest$, () => CreateClusterResponse$
2703
2824
  ];
@@ -2722,6 +2843,9 @@ var DeleteAddon$ = [9, n0, _DA,
2722
2843
  var DeleteCapability$ = [9, n0, _DCe,
2723
2844
  { [_ht]: ["DELETE", "/clusters/{clusterName}/capabilities/{capabilityName}", 200] }, () => DeleteCapabilityRequest$, () => DeleteCapabilityResponse$
2724
2845
  ];
2846
+ var DeleteCertificateAuthority$ = [9, n0, _DCA,
2847
+ { [_ht]: ["DELETE", "/clusters/{clusterName}/certificate-authorities/{certificateAuthorityId}", 200] }, () => DeleteCertificateAuthorityRequest$, () => DeleteCertificateAuthorityResponse$
2848
+ ];
2725
2849
  var DeleteCluster$ = [9, n0, _DCel,
2726
2850
  { [_ht]: ["DELETE", "/clusters/{name}", 200] }, () => DeleteClusterRequest$, () => DeleteClusterResponse$
2727
2851
  ];
@@ -2755,6 +2879,9 @@ var DescribeAddonVersions$ = [9, n0, _DAV,
2755
2879
  var DescribeCapability$ = [9, n0, _DCes,
2756
2880
  { [_ht]: ["GET", "/clusters/{clusterName}/capabilities/{capabilityName}", 200] }, () => DescribeCapabilityRequest$, () => DescribeCapabilityResponse$
2757
2881
  ];
2882
+ var DescribeCertificateAuthority$ = [9, n0, _DCAe,
2883
+ { [_ht]: ["GET", "/clusters/{clusterName}/certificate-authorities/{certificateAuthorityId}", 200] }, () => DescribeCertificateAuthorityRequest$, () => DescribeCertificateAuthorityResponse$
2884
+ ];
2758
2885
  var DescribeCluster$ = [9, n0, _DCesc,
2759
2886
  { [_ht]: ["GET", "/clusters/{name}", 200] }, () => DescribeClusterRequest$, () => DescribeClusterResponse$
2760
2887
  ];
@@ -2806,6 +2933,9 @@ var ListAssociatedAccessPolicies$ = [9, n0, _LAAP,
2806
2933
  var ListCapabilities$ = [9, n0, _LC,
2807
2934
  { [_ht]: ["GET", "/clusters/{clusterName}/capabilities", 200] }, () => ListCapabilitiesRequest$, () => ListCapabilitiesResponse$
2808
2935
  ];
2936
+ var ListCertificateAuthorities$ = [9, n0, _LCA,
2937
+ { [_ht]: ["GET", "/clusters/{clusterName}/certificate-authorities", 200] }, () => ListCertificateAuthoritiesRequest$, () => ListCertificateAuthoritiesResponse$
2938
+ ];
2809
2939
  var ListClusters$ = [9, n0, _LCi,
2810
2940
  { [_ht]: ["GET", "/clusters", 200] }, () => ListClustersRequest$, () => ListClustersResponse$
2811
2941
  ];
@@ -3023,6 +3153,9 @@ const command = makeBuilder(commonParams, "AWSWesleyFrontend", "EKSClient", getE
3023
3153
  const _ep0 = {};
3024
3154
  const _mw0 = (Command, cs, config, o) => [];
3025
3155
 
3156
+ class ActivateCertificateAuthorityCommand extends command(_ep0, _mw0, "ActivateCertificateAuthority", ActivateCertificateAuthority$) {
3157
+ }
3158
+
3026
3159
  class AssociateAccessPolicyCommand extends command(_ep0, _mw0, "AssociateAccessPolicy", AssociateAccessPolicy$) {
3027
3160
  }
3028
3161
 
@@ -3044,6 +3177,9 @@ class CreateAddonCommand extends command(_ep0, _mw0, "CreateAddon", CreateAddon$
3044
3177
  class CreateCapabilityCommand extends command(_ep0, _mw0, "CreateCapability", CreateCapability$) {
3045
3178
  }
3046
3179
 
3180
+ class CreateCertificateAuthorityCommand extends command(_ep0, _mw0, "CreateCertificateAuthority", CreateCertificateAuthority$) {
3181
+ }
3182
+
3047
3183
  class CreateClusterCommand extends command(_ep0, _mw0, "CreateCluster", CreateCluster$) {
3048
3184
  }
3049
3185
 
@@ -3068,6 +3204,9 @@ class DeleteAddonCommand extends command(_ep0, _mw0, "DeleteAddon", DeleteAddon$
3068
3204
  class DeleteCapabilityCommand extends command(_ep0, _mw0, "DeleteCapability", DeleteCapability$) {
3069
3205
  }
3070
3206
 
3207
+ class DeleteCertificateAuthorityCommand extends command(_ep0, _mw0, "DeleteCertificateAuthority", DeleteCertificateAuthority$) {
3208
+ }
3209
+
3071
3210
  class DeleteClusterCommand extends command(_ep0, _mw0, "DeleteCluster", DeleteCluster$) {
3072
3211
  }
3073
3212
 
@@ -3101,6 +3240,9 @@ class DescribeAddonVersionsCommand extends command(_ep0, _mw0, "DescribeAddonVer
3101
3240
  class DescribeCapabilityCommand extends command(_ep0, _mw0, "DescribeCapability", DescribeCapability$) {
3102
3241
  }
3103
3242
 
3243
+ class DescribeCertificateAuthorityCommand extends command(_ep0, _mw0, "DescribeCertificateAuthority", DescribeCertificateAuthority$) {
3244
+ }
3245
+
3104
3246
  class DescribeClusterCommand extends command(_ep0, _mw0, "DescribeCluster", DescribeCluster$) {
3105
3247
  }
3106
3248
 
@@ -3152,6 +3294,9 @@ class ListAssociatedAccessPoliciesCommand extends command(_ep0, _mw0, "ListAssoc
3152
3294
  class ListCapabilitiesCommand extends command(_ep0, _mw0, "ListCapabilities", ListCapabilities$) {
3153
3295
  }
3154
3296
 
3297
+ class ListCertificateAuthoritiesCommand extends command(_ep0, _mw0, "ListCertificateAuthorities", ListCertificateAuthorities$) {
3298
+ }
3299
+
3155
3300
  class ListClustersCommand extends command(_ep0, _mw0, "ListClusters", ListClusters$) {
3156
3301
  }
3157
3302
 
@@ -3232,6 +3377,8 @@ const paginateListAssociatedAccessPolicies = createPaginator(EKSClient, ListAsso
3232
3377
 
3233
3378
  const paginateListCapabilities = createPaginator(EKSClient, ListCapabilitiesCommand, "nextToken", "nextToken", "maxResults");
3234
3379
 
3380
+ const paginateListCertificateAuthorities = createPaginator(EKSClient, ListCertificateAuthoritiesCommand, "nextToken", "nextToken", "maxResults");
3381
+
3235
3382
  const paginateListClusters = createPaginator(EKSClient, ListClustersCommand, "nextToken", "nextToken", "maxResults");
3236
3383
 
3237
3384
  const paginateListEksAnywhereSubscriptions = createPaginator(EKSClient, ListEksAnywhereSubscriptionsCommand, "nextToken", "nextToken", "maxResults");
@@ -3248,7 +3395,7 @@ const paginateListPodIdentityAssociations = createPaginator(EKSClient, ListPodId
3248
3395
 
3249
3396
  const paginateListUpdates = createPaginator(EKSClient, ListUpdatesCommand, "nextToken", "nextToken", "maxResults");
3250
3397
 
3251
- const checkState$7 = async (client, input) => {
3398
+ const checkState$8 = async (client, input) => {
3252
3399
  let reason;
3253
3400
  try {
3254
3401
  let result = await client.send(new DescribeAddonCommand(input));
@@ -3288,15 +3435,15 @@ const checkState$7 = async (client, input) => {
3288
3435
  };
3289
3436
  const waitForAddonActive = async (params, input) => {
3290
3437
  const serviceDefaults = { minDelay: 10, maxDelay: 120 };
3291
- return createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);
3438
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState$8);
3292
3439
  };
3293
3440
  const waitUntilAddonActive = async (params, input) => {
3294
3441
  const serviceDefaults = { minDelay: 10, maxDelay: 120 };
3295
- const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);
3442
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$8);
3296
3443
  return checkExceptions(result);
3297
3444
  };
3298
3445
 
3299
- const checkState$6 = async (client, input) => {
3446
+ const checkState$7 = async (client, input) => {
3300
3447
  let reason;
3301
3448
  try {
3302
3449
  let result = await client.send(new DescribeAddonCommand(input));
@@ -3321,10 +3468,58 @@ const checkState$6 = async (client, input) => {
3321
3468
  };
3322
3469
  const waitForAddonDeleted = async (params, input) => {
3323
3470
  const serviceDefaults = { minDelay: 10, maxDelay: 120 };
3324
- return createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);
3471
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);
3325
3472
  };
3326
3473
  const waitUntilAddonDeleted = async (params, input) => {
3327
3474
  const serviceDefaults = { minDelay: 10, maxDelay: 120 };
3475
+ const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$7);
3476
+ return checkExceptions(result);
3477
+ };
3478
+
3479
+ const checkState$6 = async (client, input) => {
3480
+ let reason;
3481
+ try {
3482
+ let result = await client.send(new DescribeUpdateCommand(input));
3483
+ reason = result;
3484
+ try {
3485
+ const returnComparator = () => {
3486
+ return result.update.status;
3487
+ };
3488
+ if (returnComparator() === "Failed") {
3489
+ return { state: WaiterState.FAILURE, reason };
3490
+ }
3491
+ }
3492
+ catch (e) { }
3493
+ try {
3494
+ const returnComparator = () => {
3495
+ return result.update.status;
3496
+ };
3497
+ if (returnComparator() === "Cancelled") {
3498
+ return { state: WaiterState.FAILURE, reason };
3499
+ }
3500
+ }
3501
+ catch (e) { }
3502
+ try {
3503
+ const returnComparator = () => {
3504
+ return result.update.status;
3505
+ };
3506
+ if (returnComparator() === "Successful") {
3507
+ return { state: WaiterState.SUCCESS, reason };
3508
+ }
3509
+ }
3510
+ catch (e) { }
3511
+ }
3512
+ catch (exception) {
3513
+ reason = exception;
3514
+ }
3515
+ return { state: WaiterState.RETRY, reason };
3516
+ };
3517
+ const waitForCertificateAuthorityUpdateComplete = async (params, input) => {
3518
+ const serviceDefaults = { minDelay: 30, maxDelay: 120 };
3519
+ return createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);
3520
+ };
3521
+ const waitUntilCertificateAuthorityUpdateComplete = async (params, input) => {
3522
+ const serviceDefaults = { minDelay: 30, maxDelay: 120 };
3328
3523
  const result = await createWaiter({ ...serviceDefaults, ...params }, input, checkState$6);
3329
3524
  return checkExceptions(result);
3330
3525
  };
@@ -3573,6 +3768,7 @@ const waitUntilNodegroupDeleted = async (params, input) => {
3573
3768
  };
3574
3769
 
3575
3770
  const commands = {
3771
+ ActivateCertificateAuthorityCommand,
3576
3772
  AssociateAccessPolicyCommand,
3577
3773
  AssociateEncryptionConfigCommand,
3578
3774
  AssociateIdentityProviderConfigCommand,
@@ -3580,6 +3776,7 @@ const commands = {
3580
3776
  CreateAccessEntryCommand,
3581
3777
  CreateAddonCommand,
3582
3778
  CreateCapabilityCommand,
3779
+ CreateCertificateAuthorityCommand,
3583
3780
  CreateClusterCommand,
3584
3781
  CreateEksAnywhereSubscriptionCommand,
3585
3782
  CreateFargateProfileCommand,
@@ -3588,6 +3785,7 @@ const commands = {
3588
3785
  DeleteAccessEntryCommand,
3589
3786
  DeleteAddonCommand,
3590
3787
  DeleteCapabilityCommand,
3788
+ DeleteCertificateAuthorityCommand,
3591
3789
  DeleteClusterCommand,
3592
3790
  DeleteEksAnywhereSubscriptionCommand,
3593
3791
  DeleteFargateProfileCommand,
@@ -3599,6 +3797,7 @@ const commands = {
3599
3797
  DescribeAddonConfigurationCommand,
3600
3798
  DescribeAddonVersionsCommand,
3601
3799
  DescribeCapabilityCommand,
3800
+ DescribeCertificateAuthorityCommand,
3602
3801
  DescribeClusterCommand,
3603
3802
  DescribeClusterVersionsCommand,
3604
3803
  DescribeEksAnywhereSubscriptionCommand,
@@ -3616,6 +3815,7 @@ const commands = {
3616
3815
  ListAddonsCommand,
3617
3816
  ListAssociatedAccessPoliciesCommand,
3618
3817
  ListCapabilitiesCommand,
3818
+ ListCertificateAuthoritiesCommand,
3619
3819
  ListClustersCommand,
3620
3820
  ListEksAnywhereSubscriptionsCommand,
3621
3821
  ListFargateProfilesCommand,
@@ -3647,6 +3847,7 @@ const paginators = {
3647
3847
  paginateListAddons,
3648
3848
  paginateListAssociatedAccessPolicies,
3649
3849
  paginateListCapabilities,
3850
+ paginateListCertificateAuthorities,
3650
3851
  paginateListClusters,
3651
3852
  paginateListEksAnywhereSubscriptions,
3652
3853
  paginateListFargateProfiles,
@@ -3665,6 +3866,7 @@ const waiters = {
3665
3866
  waitUntilFargateProfileDeleted,
3666
3867
  waitUntilNodegroupActive,
3667
3868
  waitUntilNodegroupDeleted,
3869
+ waitUntilCertificateAuthorityUpdateComplete,
3668
3870
  };
3669
3871
  class EKS extends EKSClient {
3670
3872
  }
@@ -3679,61 +3881,24 @@ const AccessScopeType = {
3679
3881
  cluster: "cluster",
3680
3882
  namespace: "namespace",
3681
3883
  };
3682
- const AddonIssueCode = {
3683
- ACCESS_DENIED: "AccessDenied",
3684
- ADDON_PERMISSION_FAILURE: "AddonPermissionFailure",
3685
- ADDON_SUBSCRIPTION_NEEDED: "AddonSubscriptionNeeded",
3686
- ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied",
3687
- CLUSTER_UNREACHABLE: "ClusterUnreachable",
3688
- CONFIGURATION_CONFLICT: "ConfigurationConflict",
3689
- INSUFFICIENT_NUMBER_OF_REPLICAS: "InsufficientNumberOfReplicas",
3690
- INTERNAL_FAILURE: "InternalFailure",
3691
- K8S_RESOURCE_NOT_FOUND: "K8sResourceNotFound",
3692
- UNSUPPORTED_ADDON_MODIFICATION: "UnsupportedAddonModification",
3693
- };
3694
- const AddonStatus = {
3695
- ACTIVE: "ACTIVE",
3696
- CREATE_FAILED: "CREATE_FAILED",
3697
- CREATING: "CREATING",
3698
- DEGRADED: "DEGRADED",
3699
- DELETE_FAILED: "DELETE_FAILED",
3700
- DELETING: "DELETING",
3701
- UPDATE_FAILED: "UPDATE_FAILED",
3702
- UPDATING: "UPDATING",
3884
+ const CertificateAuthorityActivatedBy = {
3885
+ CUSTOMER: "CUSTOMER",
3886
+ EKS: "EKS",
3703
3887
  };
3704
- const AMITypes = {
3705
- AL2023_ARM_64_NVIDIA: "AL2023_ARM_64_NVIDIA",
3706
- AL2023_ARM_64_STANDARD: "AL2023_ARM_64_STANDARD",
3707
- AL2023_x86_64_NEURON: "AL2023_x86_64_NEURON",
3708
- AL2023_x86_64_NVIDIA: "AL2023_x86_64_NVIDIA",
3709
- AL2023_x86_64_STANDARD: "AL2023_x86_64_STANDARD",
3710
- AL2_ARM_64: "AL2_ARM_64",
3711
- AL2_x86_64: "AL2_x86_64",
3712
- AL2_x86_64_GPU: "AL2_x86_64_GPU",
3713
- BOTTLEROCKET_ARM_64: "BOTTLEROCKET_ARM_64",
3714
- BOTTLEROCKET_ARM_64_FIPS: "BOTTLEROCKET_ARM_64_FIPS",
3715
- BOTTLEROCKET_ARM_64_NVIDIA: "BOTTLEROCKET_ARM_64_NVIDIA",
3716
- BOTTLEROCKET_ARM_64_NVIDIA_FIPS: "BOTTLEROCKET_ARM_64_NVIDIA_FIPS",
3717
- BOTTLEROCKET_x86_64: "BOTTLEROCKET_x86_64",
3718
- BOTTLEROCKET_x86_64_FIPS: "BOTTLEROCKET_x86_64_FIPS",
3719
- BOTTLEROCKET_x86_64_NVIDIA: "BOTTLEROCKET_x86_64_NVIDIA",
3720
- BOTTLEROCKET_x86_64_NVIDIA_FIPS: "BOTTLEROCKET_x86_64_NVIDIA_FIPS",
3721
- CUSTOM: "CUSTOM",
3722
- WINDOWS_CORE_2019_x86_64: "WINDOWS_CORE_2019_x86_64",
3723
- WINDOWS_CORE_2022_x86_64: "WINDOWS_CORE_2022_x86_64",
3724
- WINDOWS_CORE_2025_x86_64: "WINDOWS_CORE_2025_x86_64",
3725
- WINDOWS_FULL_2019_x86_64: "WINDOWS_FULL_2019_x86_64",
3726
- WINDOWS_FULL_2022_x86_64: "WINDOWS_FULL_2022_x86_64",
3727
- WINDOWS_FULL_2025_x86_64: "WINDOWS_FULL_2025_x86_64",
3888
+ const CertificateAuthorityCreatedBy = {
3889
+ CUSTOMER: "CUSTOMER",
3890
+ EKS: "EKS",
3728
3891
  };
3729
- const SsoIdentityType = {
3730
- SSO_GROUP: "SSO_GROUP",
3731
- SSO_USER: "SSO_USER",
3892
+ const CertificateAuthorityDistributionStatus = {
3893
+ COMPLETE: "COMPLETE",
3894
+ DELETING: "DELETING",
3895
+ FAILED: "FAILED",
3896
+ IN_PROGRESS: "IN_PROGRESS",
3732
3897
  };
3733
- const ArgoCdRole = {
3734
- ADMIN: "ADMIN",
3735
- EDITOR: "EDITOR",
3736
- VIEWER: "VIEWER",
3898
+ const CertificateAuthoritySigningStatus = {
3899
+ ACTIVATING: "ACTIVATING",
3900
+ IN_USE: "IN_USE",
3901
+ NOT_USED: "NOT_USED",
3737
3902
  };
3738
3903
  const CancellationStatus = {
3739
3904
  FAILED: "Failed",
@@ -3760,8 +3925,10 @@ const ErrorCode = {
3760
3925
  VPC_ID_NOT_FOUND: "VpcIdNotFound",
3761
3926
  };
3762
3927
  const UpdateParamType = {
3928
+ ACTIVE_CERTIFICATE_AUTHORITY: "ActiveCertificateAuthority",
3763
3929
  ADDON_VERSION: "AddonVersion",
3764
3930
  AUTHENTICATION_MODE: "AuthenticationMode",
3931
+ CERTIFICATE_AUTHORITY_ID: "CertificateAuthorityId",
3765
3932
  CLUSTER_LOGGING: "ClusterLogging",
3766
3933
  COMPUTE_CONFIG: "ComputeConfig",
3767
3934
  CONFIGURATION_VALUES: "ConfigurationValues",
@@ -3799,10 +3966,12 @@ const UpdateParamType = {
3799
3966
  ROLE_MAPPINGS_TO_REMOVE: "RoleMappingsToRemove",
3800
3967
  SECURITY_GROUPS: "SecurityGroups",
3801
3968
  SERVICE_ACCOUNT_ROLE_ARN: "ServiceAccountRoleArn",
3969
+ SIGNING_STATUS: "SigningStatus",
3802
3970
  STORAGE_CONFIG: "StorageConfig",
3803
3971
  SUBNETS: "Subnets",
3804
3972
  TAINTS_TO_ADD: "TaintsToAdd",
3805
3973
  TAINTS_TO_REMOVE: "TaintsToRemove",
3974
+ TRUSTED_CERTIFICATE_AUTHORITIES: "TrustedCertificateAuthorities",
3806
3975
  UPDATED_TIER: "UpdatedTier",
3807
3976
  UPDATE_STRATEGY: "UpdateStrategy",
3808
3977
  UPGRADE_POLICY: "UpgradePolicy",
@@ -3828,6 +3997,7 @@ const UpdateType = {
3828
3997
  ASSOCIATE_IDENTITY_PROVIDER_CONFIG: "AssociateIdentityProviderConfig",
3829
3998
  AUTO_MODE_UPDATE: "AutoModeUpdate",
3830
3999
  CAPABILITY_UPDATE: "CapabilityUpdate",
4000
+ CERTIFICATE_AUTHORITY_UPDATE: "CertificateAuthorityUpdate",
3831
4001
  CONFIG_UPDATE: "ConfigUpdate",
3832
4002
  CONTROL_PLANE_COMPONENT_CONFIG_UPDATE: "ControlPlaneComponentConfigUpdate",
3833
4003
  CONTROL_PLANE_EGRESS_UPDATE: "ControlPlaneEgressUpdate",
@@ -3844,6 +4014,62 @@ const UpdateType = {
3844
4014
  VPC_CONFIG_UPDATE: "VpcConfigUpdate",
3845
4015
  ZONAL_SHIFT_CONFIG_UPDATE: "ZonalShiftConfigUpdate",
3846
4016
  };
4017
+ const AddonIssueCode = {
4018
+ ACCESS_DENIED: "AccessDenied",
4019
+ ADDON_PERMISSION_FAILURE: "AddonPermissionFailure",
4020
+ ADDON_SUBSCRIPTION_NEEDED: "AddonSubscriptionNeeded",
4021
+ ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied",
4022
+ CLUSTER_UNREACHABLE: "ClusterUnreachable",
4023
+ CONFIGURATION_CONFLICT: "ConfigurationConflict",
4024
+ INSUFFICIENT_NUMBER_OF_REPLICAS: "InsufficientNumberOfReplicas",
4025
+ INTERNAL_FAILURE: "InternalFailure",
4026
+ K8S_RESOURCE_NOT_FOUND: "K8sResourceNotFound",
4027
+ UNSUPPORTED_ADDON_MODIFICATION: "UnsupportedAddonModification",
4028
+ };
4029
+ const AddonStatus = {
4030
+ ACTIVE: "ACTIVE",
4031
+ CREATE_FAILED: "CREATE_FAILED",
4032
+ CREATING: "CREATING",
4033
+ DEGRADED: "DEGRADED",
4034
+ DELETE_FAILED: "DELETE_FAILED",
4035
+ DELETING: "DELETING",
4036
+ UPDATE_FAILED: "UPDATE_FAILED",
4037
+ UPDATING: "UPDATING",
4038
+ };
4039
+ const AMITypes = {
4040
+ AL2023_ARM_64_NVIDIA: "AL2023_ARM_64_NVIDIA",
4041
+ AL2023_ARM_64_STANDARD: "AL2023_ARM_64_STANDARD",
4042
+ AL2023_x86_64_NEURON: "AL2023_x86_64_NEURON",
4043
+ AL2023_x86_64_NVIDIA: "AL2023_x86_64_NVIDIA",
4044
+ AL2023_x86_64_STANDARD: "AL2023_x86_64_STANDARD",
4045
+ AL2_ARM_64: "AL2_ARM_64",
4046
+ AL2_x86_64: "AL2_x86_64",
4047
+ AL2_x86_64_GPU: "AL2_x86_64_GPU",
4048
+ BOTTLEROCKET_ARM_64: "BOTTLEROCKET_ARM_64",
4049
+ BOTTLEROCKET_ARM_64_FIPS: "BOTTLEROCKET_ARM_64_FIPS",
4050
+ BOTTLEROCKET_ARM_64_NVIDIA: "BOTTLEROCKET_ARM_64_NVIDIA",
4051
+ BOTTLEROCKET_ARM_64_NVIDIA_FIPS: "BOTTLEROCKET_ARM_64_NVIDIA_FIPS",
4052
+ BOTTLEROCKET_x86_64: "BOTTLEROCKET_x86_64",
4053
+ BOTTLEROCKET_x86_64_FIPS: "BOTTLEROCKET_x86_64_FIPS",
4054
+ BOTTLEROCKET_x86_64_NVIDIA: "BOTTLEROCKET_x86_64_NVIDIA",
4055
+ BOTTLEROCKET_x86_64_NVIDIA_FIPS: "BOTTLEROCKET_x86_64_NVIDIA_FIPS",
4056
+ CUSTOM: "CUSTOM",
4057
+ WINDOWS_CORE_2019_x86_64: "WINDOWS_CORE_2019_x86_64",
4058
+ WINDOWS_CORE_2022_x86_64: "WINDOWS_CORE_2022_x86_64",
4059
+ WINDOWS_CORE_2025_x86_64: "WINDOWS_CORE_2025_x86_64",
4060
+ WINDOWS_FULL_2019_x86_64: "WINDOWS_FULL_2019_x86_64",
4061
+ WINDOWS_FULL_2022_x86_64: "WINDOWS_FULL_2022_x86_64",
4062
+ WINDOWS_FULL_2025_x86_64: "WINDOWS_FULL_2025_x86_64",
4063
+ };
4064
+ const SsoIdentityType = {
4065
+ SSO_GROUP: "SSO_GROUP",
4066
+ SSO_USER: "SSO_USER",
4067
+ };
4068
+ const ArgoCdRole = {
4069
+ ADMIN: "ADMIN",
4070
+ EDITOR: "EDITOR",
4071
+ VIEWER: "VIEWER",
4072
+ };
3847
4073
  const ResolveConflicts = {
3848
4074
  NONE: "NONE",
3849
4075
  OVERWRITE: "OVERWRITE",
@@ -4083,6 +4309,11 @@ exports.AccessEntry$ = AccessEntry$;
4083
4309
  exports.AccessPolicy$ = AccessPolicy$;
4084
4310
  exports.AccessScope$ = AccessScope$;
4085
4311
  exports.AccessScopeType = AccessScopeType;
4312
+ exports.ActivateCertificateAuthority$ = ActivateCertificateAuthority$;
4313
+ exports.ActivateCertificateAuthorityCommand = ActivateCertificateAuthorityCommand;
4314
+ exports.ActivateCertificateAuthorityRequest$ = ActivateCertificateAuthorityRequest$;
4315
+ exports.ActivateCertificateAuthorityResponse$ = ActivateCertificateAuthorityResponse$;
4316
+ exports.ActiveCertificateAuthority$ = ActiveCertificateAuthority$;
4086
4317
  exports.Addon$ = Addon$;
4087
4318
  exports.AddonCompatibilityDetail$ = AddonCompatibilityDetail$;
4088
4319
  exports.AddonHealth$ = AddonHealth$;
@@ -4141,6 +4372,14 @@ exports.CapabilityType = CapabilityType;
4141
4372
  exports.CapacityTypes = CapacityTypes;
4142
4373
  exports.Category = Category;
4143
4374
  exports.Certificate$ = Certificate$;
4375
+ exports.CertificateAuthority$ = CertificateAuthority$;
4376
+ exports.CertificateAuthorityActivatedBy = CertificateAuthorityActivatedBy;
4377
+ exports.CertificateAuthorityCreatedBy = CertificateAuthorityCreatedBy;
4378
+ exports.CertificateAuthorityDistributionStatus = CertificateAuthorityDistributionStatus;
4379
+ exports.CertificateAuthorityScheduledEvents$ = CertificateAuthorityScheduledEvents$;
4380
+ exports.CertificateAuthoritySigningStatus = CertificateAuthoritySigningStatus;
4381
+ exports.CertificateAuthoritySummary$ = CertificateAuthoritySummary$;
4382
+ exports.CertificateAuthorityValidity$ = CertificateAuthorityValidity$;
4144
4383
  exports.ClientException = ClientException;
4145
4384
  exports.ClientException$ = ClientException$;
4146
4385
  exports.ClientStat$ = ClientStat$;
@@ -4177,6 +4416,10 @@ exports.CreateCapability$ = CreateCapability$;
4177
4416
  exports.CreateCapabilityCommand = CreateCapabilityCommand;
4178
4417
  exports.CreateCapabilityRequest$ = CreateCapabilityRequest$;
4179
4418
  exports.CreateCapabilityResponse$ = CreateCapabilityResponse$;
4419
+ exports.CreateCertificateAuthority$ = CreateCertificateAuthority$;
4420
+ exports.CreateCertificateAuthorityCommand = CreateCertificateAuthorityCommand;
4421
+ exports.CreateCertificateAuthorityRequest$ = CreateCertificateAuthorityRequest$;
4422
+ exports.CreateCertificateAuthorityResponse$ = CreateCertificateAuthorityResponse$;
4180
4423
  exports.CreateCluster$ = CreateCluster$;
4181
4424
  exports.CreateClusterCommand = CreateClusterCommand;
4182
4425
  exports.CreateClusterRequest$ = CreateClusterRequest$;
@@ -4209,6 +4452,10 @@ exports.DeleteCapability$ = DeleteCapability$;
4209
4452
  exports.DeleteCapabilityCommand = DeleteCapabilityCommand;
4210
4453
  exports.DeleteCapabilityRequest$ = DeleteCapabilityRequest$;
4211
4454
  exports.DeleteCapabilityResponse$ = DeleteCapabilityResponse$;
4455
+ exports.DeleteCertificateAuthority$ = DeleteCertificateAuthority$;
4456
+ exports.DeleteCertificateAuthorityCommand = DeleteCertificateAuthorityCommand;
4457
+ exports.DeleteCertificateAuthorityRequest$ = DeleteCertificateAuthorityRequest$;
4458
+ exports.DeleteCertificateAuthorityResponse$ = DeleteCertificateAuthorityResponse$;
4212
4459
  exports.DeleteCluster$ = DeleteCluster$;
4213
4460
  exports.DeleteClusterCommand = DeleteClusterCommand;
4214
4461
  exports.DeleteClusterRequest$ = DeleteClusterRequest$;
@@ -4254,6 +4501,10 @@ exports.DescribeCapability$ = DescribeCapability$;
4254
4501
  exports.DescribeCapabilityCommand = DescribeCapabilityCommand;
4255
4502
  exports.DescribeCapabilityRequest$ = DescribeCapabilityRequest$;
4256
4503
  exports.DescribeCapabilityResponse$ = DescribeCapabilityResponse$;
4504
+ exports.DescribeCertificateAuthority$ = DescribeCertificateAuthority$;
4505
+ exports.DescribeCertificateAuthorityCommand = DescribeCertificateAuthorityCommand;
4506
+ exports.DescribeCertificateAuthorityRequest$ = DescribeCertificateAuthorityRequest$;
4507
+ exports.DescribeCertificateAuthorityResponse$ = DescribeCertificateAuthorityResponse$;
4257
4508
  exports.DescribeCluster$ = DescribeCluster$;
4258
4509
  exports.DescribeClusterCommand = DescribeClusterCommand;
4259
4510
  exports.DescribeClusterRequest$ = DescribeClusterRequest$;
@@ -4381,6 +4632,10 @@ exports.ListCapabilities$ = ListCapabilities$;
4381
4632
  exports.ListCapabilitiesCommand = ListCapabilitiesCommand;
4382
4633
  exports.ListCapabilitiesRequest$ = ListCapabilitiesRequest$;
4383
4634
  exports.ListCapabilitiesResponse$ = ListCapabilitiesResponse$;
4635
+ exports.ListCertificateAuthorities$ = ListCertificateAuthorities$;
4636
+ exports.ListCertificateAuthoritiesCommand = ListCertificateAuthoritiesCommand;
4637
+ exports.ListCertificateAuthoritiesRequest$ = ListCertificateAuthoritiesRequest$;
4638
+ exports.ListCertificateAuthoritiesResponse$ = ListCertificateAuthoritiesResponse$;
4384
4639
  exports.ListClusters$ = ListClusters$;
4385
4640
  exports.ListClustersCommand = ListClustersCommand;
4386
4641
  exports.ListClustersRequest$ = ListClustersRequest$;
@@ -4565,6 +4820,7 @@ exports.paginateListAccessPolicies = paginateListAccessPolicies;
4565
4820
  exports.paginateListAddons = paginateListAddons;
4566
4821
  exports.paginateListAssociatedAccessPolicies = paginateListAssociatedAccessPolicies;
4567
4822
  exports.paginateListCapabilities = paginateListCapabilities;
4823
+ exports.paginateListCertificateAuthorities = paginateListCertificateAuthorities;
4568
4824
  exports.paginateListClusters = paginateListClusters;
4569
4825
  exports.paginateListEksAnywhereSubscriptions = paginateListEksAnywhereSubscriptions;
4570
4826
  exports.paginateListFargateProfiles = paginateListFargateProfiles;
@@ -4575,6 +4831,7 @@ exports.paginateListPodIdentityAssociations = paginateListPodIdentityAssociation
4575
4831
  exports.paginateListUpdates = paginateListUpdates;
4576
4832
  exports.waitForAddonActive = waitForAddonActive;
4577
4833
  exports.waitForAddonDeleted = waitForAddonDeleted;
4834
+ exports.waitForCertificateAuthorityUpdateComplete = waitForCertificateAuthorityUpdateComplete;
4578
4835
  exports.waitForClusterActive = waitForClusterActive;
4579
4836
  exports.waitForClusterDeleted = waitForClusterDeleted;
4580
4837
  exports.waitForFargateProfileActive = waitForFargateProfileActive;
@@ -4583,6 +4840,7 @@ exports.waitForNodegroupActive = waitForNodegroupActive;
4583
4840
  exports.waitForNodegroupDeleted = waitForNodegroupDeleted;
4584
4841
  exports.waitUntilAddonActive = waitUntilAddonActive;
4585
4842
  exports.waitUntilAddonDeleted = waitUntilAddonDeleted;
4843
+ exports.waitUntilCertificateAuthorityUpdateComplete = waitUntilCertificateAuthorityUpdateComplete;
4586
4844
  exports.waitUntilClusterActive = waitUntilClusterActive;
4587
4845
  exports.waitUntilClusterDeleted = waitUntilClusterDeleted;
4588
4846
  exports.waitUntilFargateProfileActive = waitUntilFargateProfileActive;