@aws-sdk/client-eks 3.1106.0 → 3.1108.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 +252 -15
- package/dist-es/index.js +1 -1
- package/dist-es/models/enums.js +8 -0
- package/dist-es/schemas/schemas_0.js +215 -14
- package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +2 -2
- package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +2 -2
- package/dist-types/commands/CancelUpdateCommand.d.ts +2 -2
- package/dist-types/commands/CreateClusterCommand.d.ts +50 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +25 -0
- package/dist-types/commands/DeregisterClusterCommand.d.ts +25 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +25 -0
- package/dist-types/commands/DescribeClusterVersionsCommand.d.ts +121 -0
- package/dist-types/commands/DescribeUpdateCommand.d.ts +2 -2
- package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +2 -2
- package/dist-types/commands/RegisterClusterCommand.d.ts +25 -0
- package/dist-types/commands/UpdateAddonCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCapabilityCommand.d.ts +2 -2
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +27 -2
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +2 -2
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +2 -2
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +16 -0
- package/dist-types/models/models_0.d.ts +464 -1
- package/dist-types/schemas/schemas_0.d.ts +28 -0
- package/dist-types/ts3.4/index.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +122 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +28 -0
- package/package.json +6 -6
package/dist-es/index.js
CHANGED
|
@@ -2,9 +2,9 @@ export * from "./EKSClient";
|
|
|
2
2
|
export * from "./EKS";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export { Command as $Command } from "@smithy/core/client";
|
|
5
|
-
export * from "./schemas/schemas_0";
|
|
6
5
|
export * from "./pagination";
|
|
7
6
|
export * from "./waiters";
|
|
7
|
+
export * from "./schemas/schemas_0";
|
|
8
8
|
export * from "./models/enums";
|
|
9
9
|
export * from "./models/errors";
|
|
10
10
|
export * from "./models/models_0";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -101,6 +101,9 @@ export const UpdateParamType = {
|
|
|
101
101
|
ENDPOINT_PUBLIC_ACCESS: "EndpointPublicAccess",
|
|
102
102
|
IDENTITY_PROVIDER_CONFIG: "IdentityProviderConfig",
|
|
103
103
|
KUBERNETES_NETWORK_CONFIG: "KubernetesNetworkConfig",
|
|
104
|
+
KUBE_API_SERVER_CONFIG: "KubeApiServerConfig",
|
|
105
|
+
KUBE_CONTROLLER_MANAGER_CONFIG: "KubeControllerManagerConfig",
|
|
106
|
+
KUBE_SCHEDULER_CONFIG: "KubeSchedulerConfig",
|
|
104
107
|
LABELS_TO_ADD: "LabelsToAdd",
|
|
105
108
|
LABELS_TO_REMOVE: "LabelsToRemove",
|
|
106
109
|
LAUNCH_TEMPLATE_NAME: "LaunchTemplateName",
|
|
@@ -154,6 +157,7 @@ export const UpdateType = {
|
|
|
154
157
|
AUTO_MODE_UPDATE: "AutoModeUpdate",
|
|
155
158
|
CAPABILITY_UPDATE: "CapabilityUpdate",
|
|
156
159
|
CONFIG_UPDATE: "ConfigUpdate",
|
|
160
|
+
CONTROL_PLANE_COMPONENT_CONFIG_UPDATE: "ControlPlaneComponentConfigUpdate",
|
|
157
161
|
CONTROL_PLANE_EGRESS_UPDATE: "ControlPlaneEgressUpdate",
|
|
158
162
|
CONTROL_PLANE_SCALING_CONFIG_UPDATE: "ControlPlaneScalingConfigUpdate",
|
|
159
163
|
DELETION_PROTECTION_UPDATE: "DeletionProtectionUpdate",
|
|
@@ -205,6 +209,10 @@ export const IpFamily = {
|
|
|
205
209
|
IPV4: "ipv4",
|
|
206
210
|
IPV6: "ipv6",
|
|
207
211
|
};
|
|
212
|
+
export const ScoringStrategyType = {
|
|
213
|
+
LEAST_ALLOCATED: "LeastAllocated",
|
|
214
|
+
MOST_ALLOCATED: "MostAllocated",
|
|
215
|
+
};
|
|
208
216
|
export const LogType = {
|
|
209
217
|
API: "api",
|
|
210
218
|
AUDIT: "audit",
|
|
@@ -38,6 +38,7 @@ const _APL = "AccessPoliciesList";
|
|
|
38
38
|
const _AS = "AccessScope";
|
|
39
39
|
const _ASG = "AutoScalingGroup";
|
|
40
40
|
const _ASGL = "AutoScalingGroupList";
|
|
41
|
+
const _AVC = "AllowedValuesConstraint";
|
|
41
42
|
const _AVI = "AddonVersionInfo";
|
|
42
43
|
const _AVIL = "AddonVersionInfoList";
|
|
43
44
|
const _Ad = "Addons";
|
|
@@ -79,12 +80,15 @@ const _CIl = "ClusterIssue";
|
|
|
79
80
|
const _CN = "CreateNodegroup";
|
|
80
81
|
const _CNR = "CreateNodegroupRequest";
|
|
81
82
|
const _CNRr = "CreateNodegroupResponse";
|
|
83
|
+
const _CPCI = "ControlPlaneConfigInfo";
|
|
82
84
|
const _CPIA = "CreatePodIdentityAssociation";
|
|
83
85
|
const _CPIAR = "CreatePodIdentityAssociationRequest";
|
|
84
86
|
const _CPIARr = "CreatePodIdentityAssociationResponse";
|
|
85
87
|
const _CPPR = "ControlPlanePlacementRequest";
|
|
86
88
|
const _CPPRo = "ControlPlanePlacementResponse";
|
|
87
89
|
const _CPSC = "ControlPlaneScalingConfig";
|
|
90
|
+
const _CPSTI = "ControlPlaneScalingTierInfo";
|
|
91
|
+
const _CPSTL = "ControlPlaneScalingTierList";
|
|
88
92
|
const _CS = "CapabilitySummary";
|
|
89
93
|
const _CSL = "CapabilitySummaryList";
|
|
90
94
|
const _CSl = "ClientStat";
|
|
@@ -120,7 +124,7 @@ const _DAV = "DescribeAddonVersions";
|
|
|
120
124
|
const _DAVR = "DescribeAddonVersionsRequest";
|
|
121
125
|
const _DAVRe = "DescribeAddonVersionsResponse";
|
|
122
126
|
const _DAe = "DescribeAddon";
|
|
123
|
-
const _DC = "
|
|
127
|
+
const _DC = "DurationConstraints";
|
|
124
128
|
const _DCR = "DeleteCapabilityRequest";
|
|
125
129
|
const _DCRe = "DeleteCapabilityResponse";
|
|
126
130
|
const _DCRel = "DeleteClusterRequest";
|
|
@@ -134,7 +138,8 @@ const _DCRescri = "DescribeClusterResponse";
|
|
|
134
138
|
const _DCV = "DescribeClusterVersions";
|
|
135
139
|
const _DCVR = "DescribeClusterVersionsRequest";
|
|
136
140
|
const _DCVRe = "DescribeClusterVersionsResponse";
|
|
137
|
-
const _DCe = "
|
|
141
|
+
const _DCe = "DeleteCapability";
|
|
142
|
+
const _DCel = "DeleteCluster";
|
|
138
143
|
const _DCer = "DeregisterCluster";
|
|
139
144
|
const _DCes = "DescribeCapability";
|
|
140
145
|
const _DCesc = "DescribeCluster";
|
|
@@ -170,6 +175,7 @@ const _DNRe = "DeleteNodegroupResponse";
|
|
|
170
175
|
const _DNRes = "DescribeNodegroupRequest";
|
|
171
176
|
const _DNResc = "DescribeNodegroupResponse";
|
|
172
177
|
const _DNe = "DescribeNodegroup";
|
|
178
|
+
const _DPC = "DurationParameterConfig";
|
|
173
179
|
const _DPIA = "DeletePodIdentityAssociation";
|
|
174
180
|
const _DPIAR = "DeletePodIdentityAssociationRequest";
|
|
175
181
|
const _DPIARe = "DeletePodIdentityAssociationResponse";
|
|
@@ -195,6 +201,9 @@ const _FPI = "FargateProfileIssue";
|
|
|
195
201
|
const _FPIL = "FargateProfileIssueList";
|
|
196
202
|
const _FPS = "FargateProfileSelector";
|
|
197
203
|
const _FPSa = "FargateProfileSelectors";
|
|
204
|
+
const _HPACCR = "HorizontalPodAutoscalerControllerConfigRequest";
|
|
205
|
+
const _HPACCRo = "HorizontalPodAutoscalerControllerConfigResponse";
|
|
206
|
+
const _HPACVC = "HorizontalPodAutoscalerControllerVersionConfig";
|
|
198
207
|
const _I = "Identity";
|
|
199
208
|
const _ICSS = "InsightCategorySpecificSummary";
|
|
200
209
|
const _IF = "InsightsFilter";
|
|
@@ -203,6 +212,7 @@ const _IPC = "IdentityProviderConfig";
|
|
|
203
212
|
const _IPCR = "IdentityProviderConfigResponse";
|
|
204
213
|
const _IPCd = "IdentityProviderConfigs";
|
|
205
214
|
const _IPE = "InvalidParameterException";
|
|
215
|
+
const _IRC = "IntegerRangeConstraint";
|
|
206
216
|
const _IRD = "InsightResourceDetail";
|
|
207
217
|
const _IRDn = "InsightResourceDetails";
|
|
208
218
|
const _IRE = "InvalidRequestException";
|
|
@@ -212,8 +222,17 @@ const _ISn = "InsightSummary";
|
|
|
212
222
|
const _ISns = "InsightSummaries";
|
|
213
223
|
const _In = "Insight";
|
|
214
224
|
const _Is = "Issue";
|
|
225
|
+
const _KASCR = "KubeApiServerConfigRequest";
|
|
226
|
+
const _KASCRu = "KubeApiServerConfigResponse";
|
|
227
|
+
const _KASVC = "KubeApiServerVersionConfig";
|
|
228
|
+
const _KCMCR = "KubeControllerManagerConfigRequest";
|
|
229
|
+
const _KCMCRu = "KubeControllerManagerConfigResponse";
|
|
230
|
+
const _KCMVC = "KubeControllerManagerVersionConfig";
|
|
215
231
|
const _KNCR = "KubernetesNetworkConfigRequest";
|
|
216
232
|
const _KNCRu = "KubernetesNetworkConfigResponse";
|
|
233
|
+
const _KSCR = "KubeSchedulerConfigRequest";
|
|
234
|
+
const _KSCRu = "KubeSchedulerConfigResponse";
|
|
235
|
+
const _KSVC = "KubeSchedulerVersionConfig";
|
|
217
236
|
const _L = "License";
|
|
218
237
|
const _LA = "ListAddons";
|
|
219
238
|
const _LAAP = "ListAssociatedAccessPolicies";
|
|
@@ -270,6 +289,8 @@ const _NR = "NodegroupResources";
|
|
|
270
289
|
const _NRC = "NodeRepairConfig";
|
|
271
290
|
const _NRCO = "NodeRepairConfigOverrides";
|
|
272
291
|
const _NRCOL = "NodeRepairConfigOverridesList";
|
|
292
|
+
const _NRFC = "NodeResourcesFitConfig";
|
|
293
|
+
const _NRFVC = "NodeResourcesFitVersionConfig";
|
|
273
294
|
const _NSC = "NodegroupScalingConfig";
|
|
274
295
|
const _NUC = "NodegroupUpdateConfig";
|
|
275
296
|
const _OCR = "OutpostConfigRequest";
|
|
@@ -281,11 +302,14 @@ const _P = "Provider";
|
|
|
281
302
|
const _PIA = "PodIdentityAssociation";
|
|
282
303
|
const _PIAS = "PodIdentityAssociationSummary";
|
|
283
304
|
const _PIASo = "PodIdentityAssociationSummaries";
|
|
305
|
+
const _PRC = "PortRangeConstraints";
|
|
306
|
+
const _PRPC = "PortRangeParameterConfig";
|
|
284
307
|
const _RAC = "RemoteAccessConfig";
|
|
285
|
-
const _RC = "
|
|
308
|
+
const _RC = "ResourceConstraints";
|
|
286
309
|
const _RCR = "RegisterClusterRequest";
|
|
287
310
|
const _RCRe = "RegisterClusterResponse";
|
|
288
311
|
const _RCe = "RegisterCluster";
|
|
312
|
+
const _RCo = "RollbackConfig";
|
|
289
313
|
const _RIUE = "ResourceInUseException";
|
|
290
314
|
const _RLEE = "ResourceLimitExceededException";
|
|
291
315
|
const _RNCR = "RemoteNetworkConfigRequest";
|
|
@@ -296,6 +320,8 @@ const _RNNL = "RemoteNodeNetworkList";
|
|
|
296
320
|
const _RPDE = "ResourcePropagationDelayException";
|
|
297
321
|
const _RPN = "RemotePodNetwork";
|
|
298
322
|
const _RPNL = "RemotePodNetworkList";
|
|
323
|
+
const _RW = "ResourceWeight";
|
|
324
|
+
const _RWL = "ResourceWeightList";
|
|
299
325
|
const _SCR = "StorageConfigRequest";
|
|
300
326
|
const _SCRt = "StorageConfigResponse";
|
|
301
327
|
const _SE = "ServerException";
|
|
@@ -304,6 +330,10 @@ const _SIL = "SsoIdentityList";
|
|
|
304
330
|
const _SIR = "StartInsightsRefresh";
|
|
305
331
|
const _SIRR = "StartInsightsRefreshRequest";
|
|
306
332
|
const _SIRRt = "StartInsightsRefreshResponse";
|
|
333
|
+
const _SNPR = "ServiceNodePortRange";
|
|
334
|
+
const _SS = "ScoringStrategy";
|
|
335
|
+
const _SSC = "ScoringStrategyConfig";
|
|
336
|
+
const _SSCc = "ScoringStrategyConstraints";
|
|
307
337
|
const _SUE = "ServiceUnavailableException";
|
|
308
338
|
const _T = "Taint";
|
|
309
339
|
const _TE = "ThrottlingException";
|
|
@@ -383,11 +413,13 @@ const _aOUT = "addOrUpdateTaints";
|
|
|
383
413
|
const _aP = "accessPolicies";
|
|
384
414
|
const _aPA = "associatedPolicyArn";
|
|
385
415
|
const _aR = "autoRenew";
|
|
416
|
+
const _aRC = "apiRequestConcurrency";
|
|
386
417
|
const _aS = "accessScope";
|
|
387
418
|
const _aSG = "autoScalingGroups";
|
|
388
419
|
const _aT = "amiType";
|
|
389
420
|
const _aV = "addonVersion";
|
|
390
421
|
const _aVd = "addonVersions";
|
|
422
|
+
const _aVl = "allowedValues";
|
|
391
423
|
const _ad = "addon";
|
|
392
424
|
const _add = "addons";
|
|
393
425
|
const _ar = "architecture";
|
|
@@ -401,14 +433,18 @@ const _cA = "createdAt";
|
|
|
401
433
|
const _cAe = "certificateAuthority";
|
|
402
434
|
const _cC = "connectorConfig";
|
|
403
435
|
const _cCo = "computeConfig";
|
|
436
|
+
const _cDSG = "clusterDatabaseSizeGb";
|
|
404
437
|
const _cI = "clientId";
|
|
405
438
|
const _cL = "clusterLogging";
|
|
406
439
|
const _cN = "clusterName";
|
|
407
440
|
const _cNa = "capabilityName";
|
|
441
|
+
const _cPCC = "controlPlaneComponentConfig";
|
|
442
|
+
const _cPCCO = "controlPlaneComponentConfigOverrides";
|
|
408
443
|
const _cPEM = "controlPlaneEgressMode";
|
|
409
444
|
const _cPIT = "controlPlaneInstanceType";
|
|
410
445
|
const _cPP = "controlPlanePlacement";
|
|
411
446
|
const _cPSC = "controlPlaneScalingConfig";
|
|
447
|
+
const _cPST = "controlPlaneScalingTiers";
|
|
412
448
|
const _cRT = "clientRequestToken";
|
|
413
449
|
const _cS = "clientStats";
|
|
414
450
|
const _cSGI = "clusterSecurityGroupId";
|
|
@@ -432,6 +468,7 @@ const _clu = "clusters";
|
|
|
432
468
|
const _co = "code";
|
|
433
469
|
const _com = "compatibilities";
|
|
434
470
|
const _con = "configuration";
|
|
471
|
+
const _cons = "constraints";
|
|
435
472
|
const _d = "data";
|
|
436
473
|
const _dD = "deprecationDetails";
|
|
437
474
|
const _dN = "defaultNamespace";
|
|
@@ -443,6 +480,7 @@ const _dS = "diskSize";
|
|
|
443
480
|
const _dST = "disableSessionTags";
|
|
444
481
|
const _dSe = "desiredSize";
|
|
445
482
|
const _dV = "defaultVersion";
|
|
483
|
+
const _dVe = "defaultValue";
|
|
446
484
|
const _de = "description";
|
|
447
485
|
const _du = "duration";
|
|
448
486
|
const _e = "error";
|
|
@@ -461,6 +499,7 @@ const _eP = "etcdPlacement";
|
|
|
461
499
|
const _ePA = "endpointPublicAccess";
|
|
462
500
|
const _ePAn = "endpointPrivateAccess";
|
|
463
501
|
const _eSK = "ec2SshKey";
|
|
502
|
+
const _eT = "eventTtl";
|
|
464
503
|
const _ef = "effect";
|
|
465
504
|
const _en = "enabled";
|
|
466
505
|
const _end = "endpoint";
|
|
@@ -476,6 +515,8 @@ const _gN = "groupName";
|
|
|
476
515
|
const _gP = "groupsPrefix";
|
|
477
516
|
const _h = "health";
|
|
478
517
|
const _hE = "httpError";
|
|
518
|
+
const _hPACC = "horizontalPodAutoscalerControllerConfig";
|
|
519
|
+
const _hPASP = "horizontalPodAutoscalerSyncPeriod";
|
|
479
520
|
const _hQ = "httpQuery";
|
|
480
521
|
const _ht = "http";
|
|
481
522
|
const _i = "issues";
|
|
@@ -501,10 +542,13 @@ const _ins = "insights";
|
|
|
501
542
|
const _is = "issuer";
|
|
502
543
|
const _k = "key";
|
|
503
544
|
const _kA = "keyArn";
|
|
545
|
+
const _kASC = "kubeApiServerConfig";
|
|
546
|
+
const _kCMC = "kubeControllerManagerConfig";
|
|
504
547
|
const _kG = "kubernetesGroups";
|
|
505
548
|
const _kNC = "kubernetesNetworkConfig";
|
|
506
549
|
const _kPV = "kubernetesPatchVersion";
|
|
507
550
|
const _kRU = "kubernetesResourceUri";
|
|
551
|
+
const _kSC = "kubeSchedulerConfig";
|
|
508
552
|
const _kV = "kubernetesVersion";
|
|
509
553
|
const _kVu = "kubernetesVersions";
|
|
510
554
|
const _l = "logging";
|
|
@@ -521,8 +565,10 @@ const _m = "message";
|
|
|
521
565
|
const _mA = "modifiedAt";
|
|
522
566
|
const _mGPC = "maxGroupPreparedCapacity";
|
|
523
567
|
const _mI = "marketplaceInformation";
|
|
568
|
+
const _mP = "minPort";
|
|
524
569
|
const _mPNRC = "maxParallelNodesRepairedCount";
|
|
525
570
|
const _mPNRP = "maxParallelNodesRepairedPercentage";
|
|
571
|
+
const _mPa = "maxPort";
|
|
526
572
|
const _mR = "maxResults";
|
|
527
573
|
const _mRWTM = "minRepairWaitTimeMins";
|
|
528
574
|
const _mS = "minSize";
|
|
@@ -531,6 +577,8 @@ const _mU = "maxUnavailable";
|
|
|
531
577
|
const _mUNTC = "maxUnhealthyNodeThresholdCount";
|
|
532
578
|
const _mUNTP = "maxUnhealthyNodeThresholdPercentage";
|
|
533
579
|
const _mUP = "maxUnavailablePercentage";
|
|
580
|
+
const _ma = "max";
|
|
581
|
+
const _mi = "min";
|
|
534
582
|
const _n = "name";
|
|
535
583
|
const _nA = "networkAccess";
|
|
536
584
|
const _nAo = "nodegroupArn";
|
|
@@ -543,6 +591,7 @@ const _nR = "nodeRole";
|
|
|
543
591
|
const _nRA = "nodeRoleArn";
|
|
544
592
|
const _nRC = "nodeRepairConfig";
|
|
545
593
|
const _nRCO = "nodeRepairConfigOverrides";
|
|
594
|
+
const _nRF = "nodeResourcesFit";
|
|
546
595
|
const _nT = "nextToken";
|
|
547
596
|
const _nUR = "nodeUnhealthyReason";
|
|
548
597
|
const _na = "namespaces";
|
|
@@ -564,6 +613,7 @@ const _pI = "productId";
|
|
|
564
613
|
const _pIA = "podIdentityAssociations";
|
|
565
614
|
const _pIC = "podIdentityConfiguration";
|
|
566
615
|
const _pS = "poolState";
|
|
616
|
+
const _pSRPS = "podSchedulingRatePerSecond";
|
|
567
617
|
const _pU = "productUrl";
|
|
568
618
|
const _pV = "platformVersion";
|
|
569
619
|
const _pVl = "platformVersions";
|
|
@@ -612,6 +662,8 @@ const _sIC = "serviceIpv4Cidr";
|
|
|
612
662
|
const _sICe = "serviceIpv6Cidr";
|
|
613
663
|
const _sIu = "subnetIds";
|
|
614
664
|
const _sL = "spreadLevel";
|
|
665
|
+
const _sNPR = "serviceNodePortRange";
|
|
666
|
+
const _sS = "scoringStrategy";
|
|
615
667
|
const _sSG = "sourceSecurityGroups";
|
|
616
668
|
const _sSRV = "startServingReplacementVersion";
|
|
617
669
|
const _sSV = "stopServingVersion";
|
|
@@ -628,6 +680,7 @@ const _t = "tags";
|
|
|
628
680
|
const _tK = "tagKeys";
|
|
629
681
|
const _tL = "taintsList";
|
|
630
682
|
const _tM = "timeoutMinutes";
|
|
683
|
+
const _tN = "tierName";
|
|
631
684
|
const _tRA = "targetRoleArn";
|
|
632
685
|
const _ta = "taints";
|
|
633
686
|
const _te = "term";
|
|
@@ -653,6 +706,7 @@ const _vIp = "vpcId";
|
|
|
653
706
|
const _vS = "versionStatus";
|
|
654
707
|
const _vZ = "validZones";
|
|
655
708
|
const _va = "value";
|
|
709
|
+
const _w = "weight";
|
|
656
710
|
const _wPC = "warmPoolConfig";
|
|
657
711
|
const _zSC = "zonalShiftConfig";
|
|
658
712
|
const n0 = "com.amazonaws.eks";
|
|
@@ -827,6 +881,11 @@ export var AddonVersionInfo$ = [3, n0, _AVI,
|
|
|
827
881
|
[_aV, _ar, _cT, _com, _rC, _rIP],
|
|
828
882
|
[0, 64 | 0, 64 | 0, () => Compatibilities, 2, 2]
|
|
829
883
|
];
|
|
884
|
+
export var AllowedValuesConstraint$ = [3, n0, _AVC,
|
|
885
|
+
0,
|
|
886
|
+
[_aVl],
|
|
887
|
+
[64 | 0]
|
|
888
|
+
];
|
|
830
889
|
export var ArgoCdAwsIdcConfigRequest$ = [3, n0, _ACAICR,
|
|
831
890
|
0,
|
|
832
891
|
[_iIA, _iR],
|
|
@@ -964,8 +1023,8 @@ export var ClientStat$ = [3, n0, _CSl,
|
|
|
964
1023
|
];
|
|
965
1024
|
export var Cluster$ = [3, n0, _Cl,
|
|
966
1025
|
0,
|
|
967
|
-
[_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],
|
|
968
|
-
[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$]
|
|
1026
|
+
[_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],
|
|
1027
|
+
[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$]
|
|
969
1028
|
];
|
|
970
1029
|
export var ClusterHealth$ = [3, n0, _CHl,
|
|
971
1030
|
0,
|
|
@@ -979,8 +1038,8 @@ export var ClusterIssue$ = [3, n0, _CIl,
|
|
|
979
1038
|
];
|
|
980
1039
|
export var ClusterVersionInformation$ = [3, n0, _CVI,
|
|
981
1040
|
0,
|
|
982
|
-
[_cVl, _cTl, _dPV, _dV, _rD, _eOSSD, _eOESD, _st, _vS, _kPV],
|
|
983
|
-
[0, 0, 0, 2, 4, 4, 4, 0, 0, 0]
|
|
1041
|
+
[_cVl, _cTl, _dPV, _dV, _rD, _eOSSD, _eOESD, _st, _vS, _kPV, _cPST, _cPCC],
|
|
1042
|
+
[0, 0, 0, 2, 4, 4, 4, 0, 0, 0, () => ControlPlaneScalingTierList, () => ControlPlaneConfigInfo$]
|
|
984
1043
|
];
|
|
985
1044
|
export var Compatibility$ = [3, n0, _Co,
|
|
986
1045
|
0,
|
|
@@ -1007,6 +1066,11 @@ export var ConnectorConfigResponse$ = [3, n0, _CCRonn,
|
|
|
1007
1066
|
[_aIc, _aCct, _aE, _pr, _rA],
|
|
1008
1067
|
[0, 0, 4, 0, 0]
|
|
1009
1068
|
];
|
|
1069
|
+
export var ControlPlaneConfigInfo$ = [3, n0, _CPCI,
|
|
1070
|
+
0,
|
|
1071
|
+
[_kASC, _kSC, _kCMC],
|
|
1072
|
+
[() => KubeApiServerVersionConfig$, () => KubeSchedulerVersionConfig$, () => KubeControllerManagerVersionConfig$]
|
|
1073
|
+
];
|
|
1010
1074
|
export var ControlPlanePlacementRequest$ = [3, n0, _CPPR,
|
|
1011
1075
|
0,
|
|
1012
1076
|
[_gN, _sL],
|
|
@@ -1022,6 +1086,11 @@ export var ControlPlaneScalingConfig$ = [3, n0, _CPSC,
|
|
|
1022
1086
|
[_ti],
|
|
1023
1087
|
[0]
|
|
1024
1088
|
];
|
|
1089
|
+
export var ControlPlaneScalingTierInfo$ = [3, n0, _CPSTI,
|
|
1090
|
+
0,
|
|
1091
|
+
[_tN, _aRC, _pSRPS, _cDSG, _cPCCO],
|
|
1092
|
+
[0, 1, 1, 1, () => ControlPlaneConfigInfo$]
|
|
1093
|
+
];
|
|
1025
1094
|
export var CreateAccessConfigRequest$ = [3, n0, _CACR,
|
|
1026
1095
|
0,
|
|
1027
1096
|
[_bCCAP, _aM],
|
|
@@ -1059,8 +1128,8 @@ export var CreateCapabilityResponse$ = [3, n0, _CCRre,
|
|
|
1059
1128
|
];
|
|
1060
1129
|
export var CreateClusterRequest$ = [3, n0, _CCRrea,
|
|
1061
1130
|
0,
|
|
1062
|
-
[_n, _rA, _rVC, _v, _kNC, _l, _cRT, _t, _eC, _oC, _aCc, _bSMA, _uP, _zSC, _rNC, _cCo, _sC, _dP, _cPSC],
|
|
1063
|
-
[0, 0, () => VpcConfigRequest$, 0, () => KubernetesNetworkConfigRequest$, () => Logging$, [0, 4], 128 | 0, () => EncryptionConfigList, () => OutpostConfigRequest$, () => CreateAccessConfigRequest$, 2, () => UpgradePolicyRequest$, () => ZonalShiftConfigRequest$, () => RemoteNetworkConfigRequest$, () => ComputeConfigRequest$, () => StorageConfigRequest$, 2, () => ControlPlaneScalingConfig$], 3
|
|
1131
|
+
[_n, _rA, _rVC, _v, _kNC, _l, _cRT, _t, _eC, _oC, _aCc, _bSMA, _uP, _zSC, _rNC, _cCo, _sC, _dP, _cPSC, _kASC, _kSC, _kCMC],
|
|
1132
|
+
[0, 0, () => VpcConfigRequest$, 0, () => KubernetesNetworkConfigRequest$, () => Logging$, [0, 4], 128 | 0, () => EncryptionConfigList, () => OutpostConfigRequest$, () => CreateAccessConfigRequest$, 2, () => UpgradePolicyRequest$, () => ZonalShiftConfigRequest$, () => RemoteNetworkConfigRequest$, () => ComputeConfigRequest$, () => StorageConfigRequest$, 2, () => ControlPlaneScalingConfig$, () => KubeApiServerConfigRequest$, () => KubeSchedulerConfigRequest$, () => KubeControllerManagerConfigRequest$], 3
|
|
1064
1133
|
];
|
|
1065
1134
|
export var CreateClusterResponse$ = [3, n0, _CCRreat,
|
|
1066
1135
|
0,
|
|
@@ -1372,6 +1441,16 @@ export var DisassociateIdentityProviderConfigResponse$ = [3, n0, _DIPCRis,
|
|
|
1372
1441
|
[_up],
|
|
1373
1442
|
[() => Update$]
|
|
1374
1443
|
];
|
|
1444
|
+
export var DurationConstraints$ = [3, n0, _DC,
|
|
1445
|
+
0,
|
|
1446
|
+
[_mi, _ma],
|
|
1447
|
+
[0, 0]
|
|
1448
|
+
];
|
|
1449
|
+
export var DurationParameterConfig$ = [3, n0, _DPC,
|
|
1450
|
+
0,
|
|
1451
|
+
[_dVe, _cons],
|
|
1452
|
+
[0, () => DurationConstraints$]
|
|
1453
|
+
];
|
|
1375
1454
|
export var EksAnywhereSubscription$ = [3, n0, _EAS,
|
|
1376
1455
|
0,
|
|
1377
1456
|
[_id_, _a, _cA, _eD, _eDx, _lQ, _lT, _te, _st, _aR, _lA, _li, _t],
|
|
@@ -1427,6 +1506,21 @@ export var FargateProfileSelector$ = [3, n0, _FPS,
|
|
|
1427
1506
|
[_nam, _la],
|
|
1428
1507
|
[0, 128 | 0]
|
|
1429
1508
|
];
|
|
1509
|
+
export var HorizontalPodAutoscalerControllerConfigRequest$ = [3, n0, _HPACCR,
|
|
1510
|
+
0,
|
|
1511
|
+
[_hPASP],
|
|
1512
|
+
[0]
|
|
1513
|
+
];
|
|
1514
|
+
export var HorizontalPodAutoscalerControllerConfigResponse$ = [3, n0, _HPACCRo,
|
|
1515
|
+
0,
|
|
1516
|
+
[_hPASP],
|
|
1517
|
+
[0]
|
|
1518
|
+
];
|
|
1519
|
+
export var HorizontalPodAutoscalerControllerVersionConfig$ = [3, n0, _HPACVC,
|
|
1520
|
+
0,
|
|
1521
|
+
[_hPASP],
|
|
1522
|
+
[() => DurationParameterConfig$]
|
|
1523
|
+
];
|
|
1430
1524
|
export var Identity$ = [3, n0, _I,
|
|
1431
1525
|
0,
|
|
1432
1526
|
[_oi],
|
|
@@ -1472,11 +1566,46 @@ export var InsightSummary$ = [3, n0, _ISn,
|
|
|
1472
1566
|
[_id_, _n, _cat, _kV, _lRTa, _lTT, _de, _iS],
|
|
1473
1567
|
[0, 0, 0, 0, 4, 4, 0, () => InsightStatus$]
|
|
1474
1568
|
];
|
|
1569
|
+
export var IntegerRangeConstraint$ = [3, n0, _IRC,
|
|
1570
|
+
0,
|
|
1571
|
+
[_mi, _ma],
|
|
1572
|
+
[1, 1]
|
|
1573
|
+
];
|
|
1475
1574
|
export var Issue$ = [3, n0, _Is,
|
|
1476
1575
|
0,
|
|
1477
1576
|
[_co, _m, _rI],
|
|
1478
1577
|
[0, 0, 64 | 0]
|
|
1479
1578
|
];
|
|
1579
|
+
export var KubeApiServerConfigRequest$ = [3, n0, _KASCR,
|
|
1580
|
+
0,
|
|
1581
|
+
[_eT, _sNPR],
|
|
1582
|
+
[0, () => ServiceNodePortRange$]
|
|
1583
|
+
];
|
|
1584
|
+
export var KubeApiServerConfigResponse$ = [3, n0, _KASCRu,
|
|
1585
|
+
0,
|
|
1586
|
+
[_eT, _sNPR],
|
|
1587
|
+
[0, () => ServiceNodePortRange$]
|
|
1588
|
+
];
|
|
1589
|
+
export var KubeApiServerVersionConfig$ = [3, n0, _KASVC,
|
|
1590
|
+
0,
|
|
1591
|
+
[_eT, _sNPR],
|
|
1592
|
+
[() => DurationParameterConfig$, () => PortRangeParameterConfig$]
|
|
1593
|
+
];
|
|
1594
|
+
export var KubeControllerManagerConfigRequest$ = [3, n0, _KCMCR,
|
|
1595
|
+
0,
|
|
1596
|
+
[_hPACC],
|
|
1597
|
+
[() => HorizontalPodAutoscalerControllerConfigRequest$]
|
|
1598
|
+
];
|
|
1599
|
+
export var KubeControllerManagerConfigResponse$ = [3, n0, _KCMCRu,
|
|
1600
|
+
0,
|
|
1601
|
+
[_hPACC],
|
|
1602
|
+
[() => HorizontalPodAutoscalerControllerConfigResponse$]
|
|
1603
|
+
];
|
|
1604
|
+
export var KubeControllerManagerVersionConfig$ = [3, n0, _KCMVC,
|
|
1605
|
+
0,
|
|
1606
|
+
[_hPACC],
|
|
1607
|
+
[() => HorizontalPodAutoscalerControllerVersionConfig$]
|
|
1608
|
+
];
|
|
1480
1609
|
export var KubernetesNetworkConfigRequest$ = [3, n0, _KNCR,
|
|
1481
1610
|
0,
|
|
1482
1611
|
[_sIC, _iF, _eLB],
|
|
@@ -1487,6 +1616,21 @@ export var KubernetesNetworkConfigResponse$ = [3, n0, _KNCRu,
|
|
|
1487
1616
|
[_sIC, _sICe, _iF, _eLB],
|
|
1488
1617
|
[0, 0, 0, () => ElasticLoadBalancing$]
|
|
1489
1618
|
];
|
|
1619
|
+
export var KubeSchedulerConfigRequest$ = [3, n0, _KSCR,
|
|
1620
|
+
0,
|
|
1621
|
+
[_nRF],
|
|
1622
|
+
[() => NodeResourcesFitConfig$]
|
|
1623
|
+
];
|
|
1624
|
+
export var KubeSchedulerConfigResponse$ = [3, n0, _KSCRu,
|
|
1625
|
+
0,
|
|
1626
|
+
[_nRF],
|
|
1627
|
+
[() => NodeResourcesFitConfig$]
|
|
1628
|
+
];
|
|
1629
|
+
export var KubeSchedulerVersionConfig$ = [3, n0, _KSVC,
|
|
1630
|
+
0,
|
|
1631
|
+
[_nRF],
|
|
1632
|
+
[() => NodeResourcesFitVersionConfig$]
|
|
1633
|
+
];
|
|
1490
1634
|
export var LaunchTemplateSpecification$ = [3, n0, _LTS,
|
|
1491
1635
|
0,
|
|
1492
1636
|
[_n, _v, _id_],
|
|
@@ -1687,6 +1831,16 @@ export var NodeRepairConfigOverrides$ = [3, n0, _NRCO,
|
|
|
1687
1831
|
[_nMC, _nUR, _mRWTM, _rAep],
|
|
1688
1832
|
[0, 0, 1, 0]
|
|
1689
1833
|
];
|
|
1834
|
+
export var NodeResourcesFitConfig$ = [3, n0, _NRFC,
|
|
1835
|
+
0,
|
|
1836
|
+
[_sS],
|
|
1837
|
+
[() => ScoringStrategy$]
|
|
1838
|
+
];
|
|
1839
|
+
export var NodeResourcesFitVersionConfig$ = [3, n0, _NRFVC,
|
|
1840
|
+
0,
|
|
1841
|
+
[_sS],
|
|
1842
|
+
[() => ScoringStrategyConfig$]
|
|
1843
|
+
];
|
|
1690
1844
|
export var OIDC$ = [3, n0, _OIDC,
|
|
1691
1845
|
0,
|
|
1692
1846
|
[_is],
|
|
@@ -1722,6 +1876,16 @@ export var PodIdentityAssociationSummary$ = [3, n0, _PIAS,
|
|
|
1722
1876
|
[_cN, _nam, _sA, _aAss, _aIs, _oAw],
|
|
1723
1877
|
[0, 0, 0, 0, 0, 0]
|
|
1724
1878
|
];
|
|
1879
|
+
export var PortRangeConstraints$ = [3, n0, _PRC,
|
|
1880
|
+
0,
|
|
1881
|
+
[_mP, _mPa],
|
|
1882
|
+
[() => IntegerRangeConstraint$, () => IntegerRangeConstraint$]
|
|
1883
|
+
];
|
|
1884
|
+
export var PortRangeParameterConfig$ = [3, n0, _PRPC,
|
|
1885
|
+
0,
|
|
1886
|
+
[_dVe, _cons],
|
|
1887
|
+
[() => ServiceNodePortRange$, () => PortRangeConstraints$]
|
|
1888
|
+
];
|
|
1725
1889
|
export var Provider$ = [3, n0, _P,
|
|
1726
1890
|
0,
|
|
1727
1891
|
[_kA],
|
|
@@ -1762,11 +1926,41 @@ export var RemotePodNetwork$ = [3, n0, _RPN,
|
|
|
1762
1926
|
[_ci],
|
|
1763
1927
|
[64 | 0]
|
|
1764
1928
|
];
|
|
1765
|
-
export var
|
|
1929
|
+
export var ResourceConstraints$ = [3, n0, _RC,
|
|
1930
|
+
0,
|
|
1931
|
+
[_n, _w],
|
|
1932
|
+
[() => AllowedValuesConstraint$, () => IntegerRangeConstraint$]
|
|
1933
|
+
];
|
|
1934
|
+
export var ResourceWeight$ = [3, n0, _RW,
|
|
1935
|
+
0,
|
|
1936
|
+
[_n, _w],
|
|
1937
|
+
[0, 1]
|
|
1938
|
+
];
|
|
1939
|
+
export var RollbackConfig$ = [3, n0, _RCo,
|
|
1766
1940
|
0,
|
|
1767
1941
|
[_tM],
|
|
1768
1942
|
[1]
|
|
1769
1943
|
];
|
|
1944
|
+
export var ScoringStrategy$ = [3, n0, _SS,
|
|
1945
|
+
0,
|
|
1946
|
+
[_ty, _res],
|
|
1947
|
+
[0, () => ResourceWeightList]
|
|
1948
|
+
];
|
|
1949
|
+
export var ScoringStrategyConfig$ = [3, n0, _SSC,
|
|
1950
|
+
0,
|
|
1951
|
+
[_dVe, _cons],
|
|
1952
|
+
[() => ScoringStrategy$, () => ScoringStrategyConstraints$]
|
|
1953
|
+
];
|
|
1954
|
+
export var ScoringStrategyConstraints$ = [3, n0, _SSCc,
|
|
1955
|
+
0,
|
|
1956
|
+
[_sS, _res],
|
|
1957
|
+
[() => AllowedValuesConstraint$, () => ResourceConstraints$]
|
|
1958
|
+
];
|
|
1959
|
+
export var ServiceNodePortRange$ = [3, n0, _SNPR,
|
|
1960
|
+
0,
|
|
1961
|
+
[_mP, _mPa],
|
|
1962
|
+
[1, 1]
|
|
1963
|
+
];
|
|
1770
1964
|
export var SsoIdentity$ = [3, n0, _SI,
|
|
1771
1965
|
0,
|
|
1772
1966
|
[_id_, _ty],
|
|
@@ -1869,8 +2063,8 @@ export var UpdateCapabilityResponse$ = [3, n0, _UCRp,
|
|
|
1869
2063
|
];
|
|
1870
2064
|
export var UpdateClusterConfigRequest$ = [3, n0, _UCCR,
|
|
1871
2065
|
0,
|
|
1872
|
-
[_n, _rVC, _l, _cRT, _aCc, _uP, _zSC, _cCo, _kNC, _sC, _rNC, _dP, _cPSC],
|
|
1873
|
-
[[0, 1], () => VpcConfigRequest$, () => Logging$, [0, 4], () => UpdateAccessConfigRequest$, () => UpgradePolicyRequest$, () => ZonalShiftConfigRequest$, () => ComputeConfigRequest$, () => KubernetesNetworkConfigRequest$, () => StorageConfigRequest$, () => RemoteNetworkConfigRequest$, 2, () => ControlPlaneScalingConfig$], 1
|
|
2066
|
+
[_n, _rVC, _l, _cRT, _aCc, _uP, _zSC, _cCo, _kNC, _sC, _rNC, _dP, _cPSC, _kASC, _kSC, _kCMC],
|
|
2067
|
+
[[0, 1], () => VpcConfigRequest$, () => Logging$, [0, 4], () => UpdateAccessConfigRequest$, () => UpgradePolicyRequest$, () => ZonalShiftConfigRequest$, () => ComputeConfigRequest$, () => KubernetesNetworkConfigRequest$, () => StorageConfigRequest$, () => RemoteNetworkConfigRequest$, 2, () => ControlPlaneScalingConfig$, () => KubeApiServerConfigRequest$, () => KubeSchedulerConfigRequest$, () => KubeControllerManagerConfigRequest$], 1
|
|
1874
2068
|
];
|
|
1875
2069
|
export var UpdateClusterConfigResponse$ = [3, n0, _UCCRp,
|
|
1876
2070
|
0,
|
|
@@ -2003,6 +2197,7 @@ var Addons = [1, n0, _Ad,
|
|
|
2003
2197
|
var AddonVersionInfoList = [1, n0, _AVIL,
|
|
2004
2198
|
0, () => AddonVersionInfo$
|
|
2005
2199
|
];
|
|
2200
|
+
var AllowedValuesList = 64 | 0;
|
|
2006
2201
|
var ArgoCdRoleMappingList = [1, n0, _ACRML,
|
|
2007
2202
|
0, () => ArgoCdRoleMapping$
|
|
2008
2203
|
];
|
|
@@ -2031,6 +2226,9 @@ var ClusterVersionList = [1, n0, _CVL,
|
|
|
2031
2226
|
var Compatibilities = [1, n0, _Com,
|
|
2032
2227
|
0, () => Compatibility$
|
|
2033
2228
|
];
|
|
2229
|
+
var ControlPlaneScalingTierList = [1, n0, _CPSTL,
|
|
2230
|
+
0, () => ControlPlaneScalingTierInfo$
|
|
2231
|
+
];
|
|
2034
2232
|
var DeprecationDetails = [1, n0, _DDe,
|
|
2035
2233
|
0, () => DeprecationDetail$
|
|
2036
2234
|
];
|
|
@@ -2084,6 +2282,9 @@ var RemoteNodeNetworkList = [1, n0, _RNNL,
|
|
|
2084
2282
|
var RemotePodNetworkList = [1, n0, _RPNL,
|
|
2085
2283
|
0, () => RemotePodNetwork$
|
|
2086
2284
|
];
|
|
2285
|
+
var ResourceWeightList = [1, n0, _RWL,
|
|
2286
|
+
0, () => ResourceWeight$
|
|
2287
|
+
];
|
|
2087
2288
|
var SsoIdentityList = [1, n0, _SIL,
|
|
2088
2289
|
0, () => SsoIdentity$
|
|
2089
2290
|
];
|
|
@@ -2142,10 +2343,10 @@ export var DeleteAccessEntry$ = [9, n0, _DAE,
|
|
|
2142
2343
|
export var DeleteAddon$ = [9, n0, _DA,
|
|
2143
2344
|
{ [_ht]: ["DELETE", "/clusters/{clusterName}/addons/{addonName}", 200] }, () => DeleteAddonRequest$, () => DeleteAddonResponse$
|
|
2144
2345
|
];
|
|
2145
|
-
export var DeleteCapability$ = [9, n0,
|
|
2346
|
+
export var DeleteCapability$ = [9, n0, _DCe,
|
|
2146
2347
|
{ [_ht]: ["DELETE", "/clusters/{clusterName}/capabilities/{capabilityName}", 200] }, () => DeleteCapabilityRequest$, () => DeleteCapabilityResponse$
|
|
2147
2348
|
];
|
|
2148
|
-
export var DeleteCluster$ = [9, n0,
|
|
2349
|
+
export var DeleteCluster$ = [9, n0, _DCel,
|
|
2149
2350
|
{ [_ht]: ["DELETE", "/clusters/{name}", 200] }, () => DeleteClusterRequest$, () => DeleteClusterResponse$
|
|
2150
2351
|
];
|
|
2151
2352
|
export var DeleteEksAnywhereSubscription$ = [9, n0, _DEAS,
|
|
@@ -56,10 +56,10 @@ declare const AssociateEncryptionConfigCommand_base: {
|
|
|
56
56
|
* // update: { // Update
|
|
57
57
|
* // id: "STRING_VALUE",
|
|
58
58
|
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
|
|
59
|
-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback",
|
|
59
|
+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
|
|
60
60
|
* // params: [ // UpdateParams
|
|
61
61
|
* // { // UpdateParam
|
|
62
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode",
|
|
62
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
|
|
63
63
|
* // value: "STRING_VALUE",
|
|
64
64
|
* // },
|
|
65
65
|
* // ],
|
|
@@ -65,10 +65,10 @@ declare const AssociateIdentityProviderConfigCommand_base: {
|
|
|
65
65
|
* // update: { // Update
|
|
66
66
|
* // id: "STRING_VALUE",
|
|
67
67
|
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
|
|
68
|
-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback",
|
|
68
|
+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
|
|
69
69
|
* // params: [ // UpdateParams
|
|
70
70
|
* // { // UpdateParam
|
|
71
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode",
|
|
71
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
|
|
72
72
|
* // value: "STRING_VALUE",
|
|
73
73
|
* // },
|
|
74
74
|
* // ],
|
|
@@ -50,10 +50,10 @@ declare const CancelUpdateCommand_base: {
|
|
|
50
50
|
* // update: { // Update
|
|
51
51
|
* // id: "STRING_VALUE",
|
|
52
52
|
* // status: "InProgress" || "Failed" || "Cancelled" || "Successful",
|
|
53
|
-
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback",
|
|
53
|
+
* // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "CapabilityUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate" || "ControlPlaneEgressUpdate" || "VersionRollback" || "ControlPlaneComponentConfigUpdate",
|
|
54
54
|
* // params: [ // UpdateParams
|
|
55
55
|
* // { // UpdateParam
|
|
56
|
-
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode",
|
|
56
|
+
* // type: "Version" || "PlatformVersion" || "EndpointPrivateAccess" || "EndpointPublicAccess" || "ClusterLogging" || "DesiredSize" || "LabelsToAdd" || "LabelsToRemove" || "TaintsToAdd" || "TaintsToRemove" || "MaxSize" || "MinSize" || "ReleaseVersion" || "PublicAccessCidrs" || "LaunchTemplateName" || "LaunchTemplateVersion" || "IdentityProviderConfig" || "EncryptionConfig" || "AddonVersion" || "ServiceAccountRoleArn" || "ResolveConflicts" || "MaxUnavailable" || "MaxUnavailablePercentage" || "NodeRepairEnabled" || "UpdateStrategy" || "ConfigurationValues" || "SecurityGroups" || "Subnets" || "AuthenticationMode" || "PodIdentityAssociations" || "UpgradePolicy" || "ZonalShiftConfig" || "ComputeConfig" || "StorageConfig" || "KubernetesNetworkConfig" || "RemoteNetworkConfig" || "DeletionProtection" || "NodeRepairConfig" || "RoleArn" || "RoleMappingsToAddOrUpdate" || "RoleMappingsToRemove" || "NetworkAccess" || "VendedLogs" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn" || "ControlPlaneEgressMode" || "KubeApiServerConfig" || "KubeSchedulerConfig" || "KubeControllerManagerConfig",
|
|
57
57
|
* // value: "STRING_VALUE",
|
|
58
58
|
* // },
|
|
59
59
|
* // ],
|