@aws-sdk/client-eks 3.1107.0 → 3.1109.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 (27) hide show
  1. package/dist-cjs/index.js +252 -15
  2. package/dist-es/models/enums.js +8 -0
  3. package/dist-es/schemas/schemas_0.js +215 -14
  4. package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +2 -2
  5. package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +2 -2
  6. package/dist-types/commands/CancelUpdateCommand.d.ts +2 -2
  7. package/dist-types/commands/CreateClusterCommand.d.ts +50 -0
  8. package/dist-types/commands/DeleteClusterCommand.d.ts +25 -0
  9. package/dist-types/commands/DeregisterClusterCommand.d.ts +25 -0
  10. package/dist-types/commands/DescribeClusterCommand.d.ts +25 -0
  11. package/dist-types/commands/DescribeClusterVersionsCommand.d.ts +121 -0
  12. package/dist-types/commands/DescribeUpdateCommand.d.ts +2 -2
  13. package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +2 -2
  14. package/dist-types/commands/RegisterClusterCommand.d.ts +25 -0
  15. package/dist-types/commands/UpdateAddonCommand.d.ts +2 -2
  16. package/dist-types/commands/UpdateCapabilityCommand.d.ts +2 -2
  17. package/dist-types/commands/UpdateClusterConfigCommand.d.ts +27 -2
  18. package/dist-types/commands/UpdateClusterVersionCommand.d.ts +2 -2
  19. package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +2 -2
  20. package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +2 -2
  21. package/dist-types/models/enums.d.ts +16 -0
  22. package/dist-types/models/models_0.d.ts +464 -1
  23. package/dist-types/schemas/schemas_0.d.ts +28 -0
  24. package/dist-types/ts3.4/models/enums.d.ts +9 -0
  25. package/dist-types/ts3.4/models/models_0.d.ts +122 -0
  26. package/dist-types/ts3.4/schemas/schemas_0.d.ts +28 -0
  27. package/package.json +6 -6
@@ -1,4 +1,4 @@
1
- import type { AccessScopeType, AddonIssueCode, AddonStatus, AMITypes, ArgoCdRole, AuthenticationMode, CancellationStatus, CapabilityDeletePropagationPolicy, CapabilityIssueCode, CapabilityStatus, CapabilityType, CapacityTypes, Category, ClusterIssueCode, ClusterStatus, ClusterVersionStatus, ConfigStatus, ConnectorConfigProvider, ControlPlaneEgressModeType, EksAnywhereSubscriptionLicenseType, EksAnywhereSubscriptionStatus, EksAnywhereSubscriptionTermUnit, ErrorCode, FargateProfileIssueCode, FargateProfileStatus, InsightsRefreshStatus, InsightStatusValue, IpFamily, LogType, NodegroupIssueCode, NodegroupStatus, NodegroupUpdateStrategies, ProvisionedControlPlaneTier, RepairAction, ResolveConflicts, SpreadLevel, SsoIdentityType, SupportType, TaintEffect, UpdateParamType, UpdateStatus, UpdateType, VersionStatus, WarmPoolState } from "./enums";
1
+ import type { AccessScopeType, AddonIssueCode, AddonStatus, AMITypes, ArgoCdRole, AuthenticationMode, CancellationStatus, CapabilityDeletePropagationPolicy, CapabilityIssueCode, CapabilityStatus, CapabilityType, CapacityTypes, Category, ClusterIssueCode, ClusterStatus, ClusterVersionStatus, ConfigStatus, ConnectorConfigProvider, ControlPlaneEgressModeType, EksAnywhereSubscriptionLicenseType, EksAnywhereSubscriptionStatus, EksAnywhereSubscriptionTermUnit, ErrorCode, FargateProfileIssueCode, FargateProfileStatus, InsightsRefreshStatus, InsightStatusValue, IpFamily, LogType, NodegroupIssueCode, NodegroupStatus, NodegroupUpdateStrategies, ProvisionedControlPlaneTier, RepairAction, ResolveConflicts, ScoringStrategyType, SpreadLevel, SsoIdentityType, SupportType, TaintEffect, UpdateParamType, UpdateStatus, UpdateType, VersionStatus, WarmPoolState } from "./enums";
2
2
  /**
3
3
  * <p>The access configuration for the cluster.</p>
4
4
  * @public
@@ -443,6 +443,17 @@ export interface AddonPodIdentityConfiguration {
443
443
  */
444
444
  recommendedManagedPolicies?: string[] | undefined;
445
445
  }
446
+ /**
447
+ * <p>A constraint specifying the allowed values for a parameter.</p>
448
+ * @public
449
+ */
450
+ export interface AllowedValuesConstraint {
451
+ /**
452
+ * <p>The list of allowed values.</p>
453
+ * @public
454
+ */
455
+ allowedValues?: string[] | undefined;
456
+ }
446
457
  /**
447
458
  * <p>Configuration for integrating Argo CD with IAM Identity CenterIAM; Identity Center. This allows you to use your organization's identity provider for authentication to Argo CD.</p>
448
459
  * @public
@@ -1604,6 +1615,60 @@ export interface ControlPlaneScalingConfig {
1604
1615
  */
1605
1616
  tier?: ProvisionedControlPlaneTier | undefined;
1606
1617
  }
1618
+ /**
1619
+ * <p>The port range for Kubernetes NodePort services.</p>
1620
+ * @public
1621
+ */
1622
+ export interface ServiceNodePortRange {
1623
+ /**
1624
+ * <p>The minimum port number in the range.</p>
1625
+ * @public
1626
+ */
1627
+ minPort?: number | undefined;
1628
+ /**
1629
+ * <p>The maximum port number in the range.</p>
1630
+ * @public
1631
+ */
1632
+ maxPort?: number | undefined;
1633
+ }
1634
+ /**
1635
+ * <p>The configuration for the Kubernetes API server on an Amazon EKS cluster.</p>
1636
+ * @public
1637
+ */
1638
+ export interface KubeApiServerConfigRequest {
1639
+ /**
1640
+ * <p>The duration that Kubernetes events are retained. Valid values are single-unit durations such as <code>30m</code> or <code>1h</code>.</p>
1641
+ * @public
1642
+ */
1643
+ eventTtl?: string | undefined;
1644
+ /**
1645
+ * <p>The port range for NodePort services.</p>
1646
+ * @public
1647
+ */
1648
+ serviceNodePortRange?: ServiceNodePortRange | undefined;
1649
+ }
1650
+ /**
1651
+ * <p>The horizontal pod autoscaler controller configuration for the Kubernetes controller manager.</p>
1652
+ * @public
1653
+ */
1654
+ export interface HorizontalPodAutoscalerControllerConfigRequest {
1655
+ /**
1656
+ * <p>The interval between each sync of the horizontal pod autoscaler. Valid values are single-unit durations such as <code>15s</code> or <code>1m</code>.</p>
1657
+ * @public
1658
+ */
1659
+ horizontalPodAutoscalerSyncPeriod?: string | undefined;
1660
+ }
1661
+ /**
1662
+ * <p>The configuration for the Kubernetes controller manager on an Amazon EKS cluster.</p>
1663
+ * @public
1664
+ */
1665
+ export interface KubeControllerManagerConfigRequest {
1666
+ /**
1667
+ * <p>The horizontal pod autoscaler controller configuration.</p>
1668
+ * @public
1669
+ */
1670
+ horizontalPodAutoscalerControllerConfig?: HorizontalPodAutoscalerControllerConfigRequest | undefined;
1671
+ }
1607
1672
  /**
1608
1673
  * <p>Indicates the current configuration of the load balancing capability on your EKS Auto
1609
1674
  * Mode cluster. For example, if the capability is enabled or disabled. For more
@@ -1678,6 +1743,60 @@ export interface KubernetesNetworkConfigRequest {
1678
1743
  */
1679
1744
  elasticLoadBalancing?: ElasticLoadBalancing | undefined;
1680
1745
  }
1746
+ /**
1747
+ * <p>A resource weight entry for the scheduler scoring strategy.</p>
1748
+ * @public
1749
+ */
1750
+ export interface ResourceWeight {
1751
+ /**
1752
+ * <p>The name of the resource (for example, <code>cpu</code> or <code>memory</code>).</p>
1753
+ * @public
1754
+ */
1755
+ name?: string | undefined;
1756
+ /**
1757
+ * <p>The weight assigned to the resource for scoring. Must be between 1 and 100.</p>
1758
+ * @public
1759
+ */
1760
+ weight?: number | undefined;
1761
+ }
1762
+ /**
1763
+ * <p>The scoring strategy configuration for the NodeResourcesFit scheduler plugin.</p>
1764
+ * @public
1765
+ */
1766
+ export interface ScoringStrategy {
1767
+ /**
1768
+ * <p>The scoring strategy type. Valid values are <code>LeastAllocated</code> or <code>MostAllocated</code>.</p>
1769
+ * @public
1770
+ */
1771
+ type?: ScoringStrategyType | undefined;
1772
+ /**
1773
+ * <p>The resource weights used for scoring nodes.</p>
1774
+ * @public
1775
+ */
1776
+ resources?: ResourceWeight[] | undefined;
1777
+ }
1778
+ /**
1779
+ * <p>The NodeResourcesFit plugin configuration for the Kubernetes scheduler.</p>
1780
+ * @public
1781
+ */
1782
+ export interface NodeResourcesFitConfig {
1783
+ /**
1784
+ * <p>The scoring strategy used to rank nodes during scheduling.</p>
1785
+ * @public
1786
+ */
1787
+ scoringStrategy?: ScoringStrategy | undefined;
1788
+ }
1789
+ /**
1790
+ * <p>The configuration for the Kubernetes scheduler on an Amazon EKS cluster.</p>
1791
+ * @public
1792
+ */
1793
+ export interface KubeSchedulerConfigRequest {
1794
+ /**
1795
+ * <p>The node resource fit scoring configuration for the scheduler.</p>
1796
+ * @public
1797
+ */
1798
+ nodeResourcesFit?: NodeResourcesFitConfig | undefined;
1799
+ }
1681
1800
  /**
1682
1801
  * <p>An object representing the enabled or disabled Kubernetes control plane logs for your
1683
1802
  * cluster.</p>
@@ -2281,6 +2400,21 @@ export interface CreateClusterRequest {
2281
2400
  * @public
2282
2401
  */
2283
2402
  controlPlaneScalingConfig?: ControlPlaneScalingConfig | undefined;
2403
+ /**
2404
+ * <p>The Kubernetes API server configuration for the new cluster.</p>
2405
+ * @public
2406
+ */
2407
+ kubeApiServerConfig?: KubeApiServerConfigRequest | undefined;
2408
+ /**
2409
+ * <p>The Kubernetes scheduler configuration for the new cluster.</p>
2410
+ * @public
2411
+ */
2412
+ kubeSchedulerConfig?: KubeSchedulerConfigRequest | undefined;
2413
+ /**
2414
+ * <p>The Kubernetes controller manager configuration for the new cluster.</p>
2415
+ * @public
2416
+ */
2417
+ kubeControllerManagerConfig?: KubeControllerManagerConfigRequest | undefined;
2284
2418
  }
2285
2419
  /**
2286
2420
  * <p>An object representing the <code>certificate-authority-data</code> for your
@@ -2411,6 +2545,44 @@ export interface Identity {
2411
2545
  */
2412
2546
  oidc?: OIDC | undefined;
2413
2547
  }
2548
+ /**
2549
+ * <p>The Kubernetes API server configuration for an Amazon EKS cluster.</p>
2550
+ * @public
2551
+ */
2552
+ export interface KubeApiServerConfigResponse {
2553
+ /**
2554
+ * <p>The duration that Kubernetes events are retained.</p>
2555
+ * @public
2556
+ */
2557
+ eventTtl?: string | undefined;
2558
+ /**
2559
+ * <p>The port range for NodePort services.</p>
2560
+ * @public
2561
+ */
2562
+ serviceNodePortRange?: ServiceNodePortRange | undefined;
2563
+ }
2564
+ /**
2565
+ * <p>The horizontal pod autoscaler controller configuration for the Kubernetes controller manager.</p>
2566
+ * @public
2567
+ */
2568
+ export interface HorizontalPodAutoscalerControllerConfigResponse {
2569
+ /**
2570
+ * <p>The interval between each sync of the horizontal pod autoscaler.</p>
2571
+ * @public
2572
+ */
2573
+ horizontalPodAutoscalerSyncPeriod?: string | undefined;
2574
+ }
2575
+ /**
2576
+ * <p>The Kubernetes controller manager configuration for an Amazon EKS cluster.</p>
2577
+ * @public
2578
+ */
2579
+ export interface KubeControllerManagerConfigResponse {
2580
+ /**
2581
+ * <p>The horizontal pod autoscaler controller configuration.</p>
2582
+ * @public
2583
+ */
2584
+ horizontalPodAutoscalerControllerConfig?: HorizontalPodAutoscalerControllerConfigResponse | undefined;
2585
+ }
2414
2586
  /**
2415
2587
  * <p>The Kubernetes network configuration for the cluster. The response contains a value for
2416
2588
  * <b>serviceIpv6Cidr</b> or <b>serviceIpv4Cidr</b>, but not both. </p>
@@ -2454,6 +2626,17 @@ export interface KubernetesNetworkConfigResponse {
2454
2626
  */
2455
2627
  elasticLoadBalancing?: ElasticLoadBalancing | undefined;
2456
2628
  }
2629
+ /**
2630
+ * <p>The Kubernetes scheduler configuration for an Amazon EKS cluster.</p>
2631
+ * @public
2632
+ */
2633
+ export interface KubeSchedulerConfigResponse {
2634
+ /**
2635
+ * <p>The node resource fit scoring configuration for the scheduler.</p>
2636
+ * @public
2637
+ */
2638
+ nodeResourcesFit?: NodeResourcesFitConfig | undefined;
2639
+ }
2457
2640
  /**
2458
2641
  * <p>The placement configuration for all the control plane instances of your local Amazon EKS
2459
2642
  * cluster on an Amazon Web Services Outpost. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html">Capacity considerations</a> in the <i>Amazon EKS User Guide</i>.</p>
@@ -2839,6 +3022,21 @@ export interface Cluster {
2839
3022
  * @public
2840
3023
  */
2841
3024
  controlPlaneScalingConfig?: ControlPlaneScalingConfig | undefined;
3025
+ /**
3026
+ * <p>The Kubernetes API server configuration for the cluster.</p>
3027
+ * @public
3028
+ */
3029
+ kubeApiServerConfig?: KubeApiServerConfigResponse | undefined;
3030
+ /**
3031
+ * <p>The Kubernetes scheduler configuration for the cluster.</p>
3032
+ * @public
3033
+ */
3034
+ kubeSchedulerConfig?: KubeSchedulerConfigResponse | undefined;
3035
+ /**
3036
+ * <p>The Kubernetes controller manager configuration for the cluster.</p>
3037
+ * @public
3038
+ */
3039
+ kubeControllerManagerConfig?: KubeControllerManagerConfigResponse | undefined;
2842
3040
  }
2843
3041
  /**
2844
3042
  * @public
@@ -4757,6 +4955,246 @@ export interface DescribeClusterVersionsRequest {
4757
4955
  */
4758
4956
  versionStatus?: VersionStatus | undefined;
4759
4957
  }
4958
+ /**
4959
+ * <p>Constraints for a duration parameter.</p>
4960
+ * @public
4961
+ */
4962
+ export interface DurationConstraints {
4963
+ /**
4964
+ * <p>The minimum allowed duration value.</p>
4965
+ * @public
4966
+ */
4967
+ min?: string | undefined;
4968
+ /**
4969
+ * <p>The maximum allowed duration value.</p>
4970
+ * @public
4971
+ */
4972
+ max?: string | undefined;
4973
+ }
4974
+ /**
4975
+ * <p>A duration parameter configuration with default value and constraints.</p>
4976
+ * @public
4977
+ */
4978
+ export interface DurationParameterConfig {
4979
+ /**
4980
+ * <p>The default value for the duration parameter.</p>
4981
+ * @public
4982
+ */
4983
+ defaultValue?: string | undefined;
4984
+ /**
4985
+ * <p>The constraints for the duration parameter.</p>
4986
+ * @public
4987
+ */
4988
+ constraints?: DurationConstraints | undefined;
4989
+ }
4990
+ /**
4991
+ * <p>An integer range constraint specifying minimum and maximum allowed values.</p>
4992
+ * @public
4993
+ */
4994
+ export interface IntegerRangeConstraint {
4995
+ /**
4996
+ * <p>The minimum allowed value.</p>
4997
+ * @public
4998
+ */
4999
+ min?: number | undefined;
5000
+ /**
5001
+ * <p>The maximum allowed value.</p>
5002
+ * @public
5003
+ */
5004
+ max?: number | undefined;
5005
+ }
5006
+ /**
5007
+ * <p>Constraints for a port range parameter.</p>
5008
+ * @public
5009
+ */
5010
+ export interface PortRangeConstraints {
5011
+ /**
5012
+ * <p>The constraints for the minimum port value.</p>
5013
+ * @public
5014
+ */
5015
+ minPort?: IntegerRangeConstraint | undefined;
5016
+ /**
5017
+ * <p>The constraints for the maximum port value.</p>
5018
+ * @public
5019
+ */
5020
+ maxPort?: IntegerRangeConstraint | undefined;
5021
+ }
5022
+ /**
5023
+ * <p>A port range parameter configuration with default value and constraints.</p>
5024
+ * @public
5025
+ */
5026
+ export interface PortRangeParameterConfig {
5027
+ /**
5028
+ * <p>The default port range value.</p>
5029
+ * @public
5030
+ */
5031
+ defaultValue?: ServiceNodePortRange | undefined;
5032
+ /**
5033
+ * <p>The constraints for the port range parameter.</p>
5034
+ * @public
5035
+ */
5036
+ constraints?: PortRangeConstraints | undefined;
5037
+ }
5038
+ /**
5039
+ * <p>The Kubernetes API server version-specific configuration defaults and constraints.</p>
5040
+ * @public
5041
+ */
5042
+ export interface KubeApiServerVersionConfig {
5043
+ /**
5044
+ * <p>The event TTL configuration with default value and constraints.</p>
5045
+ * @public
5046
+ */
5047
+ eventTtl?: DurationParameterConfig | undefined;
5048
+ /**
5049
+ * <p>The service node port range configuration with default value and constraints.</p>
5050
+ * @public
5051
+ */
5052
+ serviceNodePortRange?: PortRangeParameterConfig | undefined;
5053
+ }
5054
+ /**
5055
+ * <p>The horizontal pod autoscaler controller version configuration.</p>
5056
+ * @public
5057
+ */
5058
+ export interface HorizontalPodAutoscalerControllerVersionConfig {
5059
+ /**
5060
+ * <p>The HPA sync period configuration with default value and constraints.</p>
5061
+ * @public
5062
+ */
5063
+ horizontalPodAutoscalerSyncPeriod?: DurationParameterConfig | undefined;
5064
+ }
5065
+ /**
5066
+ * <p>The Kubernetes controller manager version-specific configuration defaults and constraints.</p>
5067
+ * @public
5068
+ */
5069
+ export interface KubeControllerManagerVersionConfig {
5070
+ /**
5071
+ * <p>The horizontal pod autoscaler controller configuration with default value and constraints.</p>
5072
+ * @public
5073
+ */
5074
+ horizontalPodAutoscalerControllerConfig?: HorizontalPodAutoscalerControllerVersionConfig | undefined;
5075
+ }
5076
+ /**
5077
+ * <p>Constraints for resource weight entries.</p>
5078
+ * @public
5079
+ */
5080
+ export interface ResourceConstraints {
5081
+ /**
5082
+ * <p>The allowed values for resource names.</p>
5083
+ * @public
5084
+ */
5085
+ name?: AllowedValuesConstraint | undefined;
5086
+ /**
5087
+ * <p>The allowed range for resource weight values.</p>
5088
+ * @public
5089
+ */
5090
+ weight?: IntegerRangeConstraint | undefined;
5091
+ }
5092
+ /**
5093
+ * <p>Constraints for the scoring strategy configuration.</p>
5094
+ * @public
5095
+ */
5096
+ export interface ScoringStrategyConstraints {
5097
+ /**
5098
+ * <p>The allowed values for the scoring strategy type.</p>
5099
+ * @public
5100
+ */
5101
+ scoringStrategy?: AllowedValuesConstraint | undefined;
5102
+ /**
5103
+ * <p>The constraints for resource weights.</p>
5104
+ * @public
5105
+ */
5106
+ resources?: ResourceConstraints | undefined;
5107
+ }
5108
+ /**
5109
+ * <p>The scoring strategy configuration with default value and constraints.</p>
5110
+ * @public
5111
+ */
5112
+ export interface ScoringStrategyConfig {
5113
+ /**
5114
+ * <p>The default scoring strategy.</p>
5115
+ * @public
5116
+ */
5117
+ defaultValue?: ScoringStrategy | undefined;
5118
+ /**
5119
+ * <p>The constraints for the scoring strategy.</p>
5120
+ * @public
5121
+ */
5122
+ constraints?: ScoringStrategyConstraints | undefined;
5123
+ }
5124
+ /**
5125
+ * <p>The NodeResourcesFit version configuration with default value and constraints.</p>
5126
+ * @public
5127
+ */
5128
+ export interface NodeResourcesFitVersionConfig {
5129
+ /**
5130
+ * <p>The scoring strategy configuration with default value and constraints.</p>
5131
+ * @public
5132
+ */
5133
+ scoringStrategy?: ScoringStrategyConfig | undefined;
5134
+ }
5135
+ /**
5136
+ * <p>The Kubernetes scheduler version-specific configuration defaults and constraints.</p>
5137
+ * @public
5138
+ */
5139
+ export interface KubeSchedulerVersionConfig {
5140
+ /**
5141
+ * <p>The NodeResourcesFit configuration with default value and constraints.</p>
5142
+ * @public
5143
+ */
5144
+ nodeResourcesFit?: NodeResourcesFitVersionConfig | undefined;
5145
+ }
5146
+ /**
5147
+ * <p>The control plane component configuration defaults and constraints.</p>
5148
+ * @public
5149
+ */
5150
+ export interface ControlPlaneConfigInfo {
5151
+ /**
5152
+ * <p>The Kubernetes API server configuration defaults and constraints.</p>
5153
+ * @public
5154
+ */
5155
+ kubeApiServerConfig?: KubeApiServerVersionConfig | undefined;
5156
+ /**
5157
+ * <p>The Kubernetes scheduler configuration defaults and constraints.</p>
5158
+ * @public
5159
+ */
5160
+ kubeSchedulerConfig?: KubeSchedulerVersionConfig | undefined;
5161
+ /**
5162
+ * <p>The Kubernetes controller manager configuration defaults and constraints.</p>
5163
+ * @public
5164
+ */
5165
+ kubeControllerManagerConfig?: KubeControllerManagerVersionConfig | undefined;
5166
+ }
5167
+ /**
5168
+ * <p>Information about a provisioned control plane scaling tier.</p>
5169
+ * @public
5170
+ */
5171
+ export interface ControlPlaneScalingTierInfo {
5172
+ /**
5173
+ * <p>The name of the scaling tier.</p>
5174
+ * @public
5175
+ */
5176
+ tierName?: string | undefined;
5177
+ /**
5178
+ * <p>The maximum API request concurrency supported by this tier.</p>
5179
+ * @public
5180
+ */
5181
+ apiRequestConcurrency?: number | undefined;
5182
+ /**
5183
+ * <p>The maximum pod scheduling rate per second supported by this tier.</p>
5184
+ * @public
5185
+ */
5186
+ podSchedulingRatePerSecond?: number | undefined;
5187
+ /**
5188
+ * <p>The maximum cluster database size in GB supported by this tier.</p>
5189
+ * @public
5190
+ */
5191
+ clusterDatabaseSizeGb?: number | undefined;
5192
+ /**
5193
+ * <p>The control plane component configuration overrides specific to this scaling tier.</p>
5194
+ * @public
5195
+ */
5196
+ controlPlaneComponentConfigOverrides?: ControlPlaneConfigInfo | undefined;
5197
+ }
4760
5198
  /**
4761
5199
  * <p>Contains details about a specific EKS cluster version.</p>
4762
5200
  * @public
@@ -4816,6 +5254,16 @@ export interface ClusterVersionInformation {
4816
5254
  * @public
4817
5255
  */
4818
5256
  kubernetesPatchVersion?: string | undefined;
5257
+ /**
5258
+ * <p>The available provisioned control plane scaling tiers and their capabilities for this Kubernetes version.</p>
5259
+ * @public
5260
+ */
5261
+ controlPlaneScalingTiers?: ControlPlaneScalingTierInfo[] | undefined;
5262
+ /**
5263
+ * <p>The default control plane component configuration and constraints for this Kubernetes version.</p>
5264
+ * @public
5265
+ */
5266
+ controlPlaneComponentConfig?: ControlPlaneConfigInfo | undefined;
4819
5267
  }
4820
5268
  /**
4821
5269
  * @public
@@ -6837,6 +7285,21 @@ export interface UpdateClusterConfigRequest {
6837
7285
  * @public
6838
7286
  */
6839
7287
  controlPlaneScalingConfig?: ControlPlaneScalingConfig | undefined;
7288
+ /**
7289
+ * <p>The Kubernetes API server configuration for the updated cluster.</p>
7290
+ * @public
7291
+ */
7292
+ kubeApiServerConfig?: KubeApiServerConfigRequest | undefined;
7293
+ /**
7294
+ * <p>The Kubernetes scheduler configuration for the updated cluster.</p>
7295
+ * @public
7296
+ */
7297
+ kubeSchedulerConfig?: KubeSchedulerConfigRequest | undefined;
7298
+ /**
7299
+ * <p>The Kubernetes controller manager configuration for the updated cluster.</p>
7300
+ * @public
7301
+ */
7302
+ kubeControllerManagerConfig?: KubeControllerManagerConfigRequest | undefined;
6840
7303
  }
6841
7304
  /**
6842
7305
  * @public
@@ -36,6 +36,7 @@ export declare var AddonNamespaceConfigResponse$: StaticStructureSchema;
36
36
  export declare var AddonPodIdentityAssociations$: StaticStructureSchema;
37
37
  export declare var AddonPodIdentityConfiguration$: StaticStructureSchema;
38
38
  export declare var AddonVersionInfo$: StaticStructureSchema;
39
+ export declare var AllowedValuesConstraint$: StaticStructureSchema;
39
40
  export declare var ArgoCdAwsIdcConfigRequest$: StaticStructureSchema;
40
41
  export declare var ArgoCdAwsIdcConfigResponse$: StaticStructureSchema;
41
42
  export declare var ArgoCdConfigRequest$: StaticStructureSchema;
@@ -72,9 +73,11 @@ export declare var ComputeConfigRequest$: StaticStructureSchema;
72
73
  export declare var ComputeConfigResponse$: StaticStructureSchema;
73
74
  export declare var ConnectorConfigRequest$: StaticStructureSchema;
74
75
  export declare var ConnectorConfigResponse$: StaticStructureSchema;
76
+ export declare var ControlPlaneConfigInfo$: StaticStructureSchema;
75
77
  export declare var ControlPlanePlacementRequest$: StaticStructureSchema;
76
78
  export declare var ControlPlanePlacementResponse$: StaticStructureSchema;
77
79
  export declare var ControlPlaneScalingConfig$: StaticStructureSchema;
80
+ export declare var ControlPlaneScalingTierInfo$: StaticStructureSchema;
78
81
  export declare var CreateAccessConfigRequest$: StaticStructureSchema;
79
82
  export declare var CreateAccessEntryRequest$: StaticStructureSchema;
80
83
  export declare var CreateAccessEntryResponse$: StaticStructureSchema;
@@ -145,6 +148,8 @@ export declare var DisassociateAccessPolicyRequest$: StaticStructureSchema;
145
148
  export declare var DisassociateAccessPolicyResponse$: StaticStructureSchema;
146
149
  export declare var DisassociateIdentityProviderConfigRequest$: StaticStructureSchema;
147
150
  export declare var DisassociateIdentityProviderConfigResponse$: StaticStructureSchema;
151
+ export declare var DurationConstraints$: StaticStructureSchema;
152
+ export declare var DurationParameterConfig$: StaticStructureSchema;
148
153
  export declare var EksAnywhereSubscription$: StaticStructureSchema;
149
154
  export declare var EksAnywhereSubscriptionTerm$: StaticStructureSchema;
150
155
  export declare var ElasticLoadBalancing$: StaticStructureSchema;
@@ -156,6 +161,9 @@ export declare var FargateProfile$: StaticStructureSchema;
156
161
  export declare var FargateProfileHealth$: StaticStructureSchema;
157
162
  export declare var FargateProfileIssue$: StaticStructureSchema;
158
163
  export declare var FargateProfileSelector$: StaticStructureSchema;
164
+ export declare var HorizontalPodAutoscalerControllerConfigRequest$: StaticStructureSchema;
165
+ export declare var HorizontalPodAutoscalerControllerConfigResponse$: StaticStructureSchema;
166
+ export declare var HorizontalPodAutoscalerControllerVersionConfig$: StaticStructureSchema;
159
167
  export declare var Identity$: StaticStructureSchema;
160
168
  export declare var IdentityProviderConfig$: StaticStructureSchema;
161
169
  export declare var IdentityProviderConfigResponse$: StaticStructureSchema;
@@ -165,9 +173,19 @@ export declare var InsightResourceDetail$: StaticStructureSchema;
165
173
  export declare var InsightsFilter$: StaticStructureSchema;
166
174
  export declare var InsightStatus$: StaticStructureSchema;
167
175
  export declare var InsightSummary$: StaticStructureSchema;
176
+ export declare var IntegerRangeConstraint$: StaticStructureSchema;
168
177
  export declare var Issue$: StaticStructureSchema;
178
+ export declare var KubeApiServerConfigRequest$: StaticStructureSchema;
179
+ export declare var KubeApiServerConfigResponse$: StaticStructureSchema;
180
+ export declare var KubeApiServerVersionConfig$: StaticStructureSchema;
181
+ export declare var KubeControllerManagerConfigRequest$: StaticStructureSchema;
182
+ export declare var KubeControllerManagerConfigResponse$: StaticStructureSchema;
183
+ export declare var KubeControllerManagerVersionConfig$: StaticStructureSchema;
169
184
  export declare var KubernetesNetworkConfigRequest$: StaticStructureSchema;
170
185
  export declare var KubernetesNetworkConfigResponse$: StaticStructureSchema;
186
+ export declare var KubeSchedulerConfigRequest$: StaticStructureSchema;
187
+ export declare var KubeSchedulerConfigResponse$: StaticStructureSchema;
188
+ export declare var KubeSchedulerVersionConfig$: StaticStructureSchema;
171
189
  export declare var LaunchTemplateSpecification$: StaticStructureSchema;
172
190
  export declare var License$: StaticStructureSchema;
173
191
  export declare var ListAccessEntriesRequest$: StaticStructureSchema;
@@ -208,6 +226,8 @@ export declare var NodegroupScalingConfig$: StaticStructureSchema;
208
226
  export declare var NodegroupUpdateConfig$: StaticStructureSchema;
209
227
  export declare var NodeRepairConfig$: StaticStructureSchema;
210
228
  export declare var NodeRepairConfigOverrides$: StaticStructureSchema;
229
+ export declare var NodeResourcesFitConfig$: StaticStructureSchema;
230
+ export declare var NodeResourcesFitVersionConfig$: StaticStructureSchema;
211
231
  export declare var OIDC$: StaticStructureSchema;
212
232
  export declare var OidcIdentityProviderConfig$: StaticStructureSchema;
213
233
  export declare var OidcIdentityProviderConfigRequest$: StaticStructureSchema;
@@ -215,6 +235,8 @@ export declare var OutpostConfigRequest$: StaticStructureSchema;
215
235
  export declare var OutpostConfigResponse$: StaticStructureSchema;
216
236
  export declare var PodIdentityAssociation$: StaticStructureSchema;
217
237
  export declare var PodIdentityAssociationSummary$: StaticStructureSchema;
238
+ export declare var PortRangeConstraints$: StaticStructureSchema;
239
+ export declare var PortRangeParameterConfig$: StaticStructureSchema;
218
240
  export declare var Provider$: StaticStructureSchema;
219
241
  export declare var RegisterClusterRequest$: StaticStructureSchema;
220
242
  export declare var RegisterClusterResponse$: StaticStructureSchema;
@@ -223,7 +245,13 @@ export declare var RemoteNetworkConfigRequest$: StaticStructureSchema;
223
245
  export declare var RemoteNetworkConfigResponse$: StaticStructureSchema;
224
246
  export declare var RemoteNodeNetwork$: StaticStructureSchema;
225
247
  export declare var RemotePodNetwork$: StaticStructureSchema;
248
+ export declare var ResourceConstraints$: StaticStructureSchema;
249
+ export declare var ResourceWeight$: StaticStructureSchema;
226
250
  export declare var RollbackConfig$: StaticStructureSchema;
251
+ export declare var ScoringStrategy$: StaticStructureSchema;
252
+ export declare var ScoringStrategyConfig$: StaticStructureSchema;
253
+ export declare var ScoringStrategyConstraints$: StaticStructureSchema;
254
+ export declare var ServiceNodePortRange$: StaticStructureSchema;
227
255
  export declare var SsoIdentity$: StaticStructureSchema;
228
256
  export declare var StartInsightsRefreshRequest$: StaticStructureSchema;
229
257
  export declare var StartInsightsRefreshResponse$: StaticStructureSchema;
@@ -110,6 +110,9 @@ export declare const UpdateParamType: {
110
110
  readonly ENDPOINT_PUBLIC_ACCESS: "EndpointPublicAccess";
111
111
  readonly IDENTITY_PROVIDER_CONFIG: "IdentityProviderConfig";
112
112
  readonly KUBERNETES_NETWORK_CONFIG: "KubernetesNetworkConfig";
113
+ readonly KUBE_API_SERVER_CONFIG: "KubeApiServerConfig";
114
+ readonly KUBE_CONTROLLER_MANAGER_CONFIG: "KubeControllerManagerConfig";
115
+ readonly KUBE_SCHEDULER_CONFIG: "KubeSchedulerConfig";
113
116
  readonly LABELS_TO_ADD: "LabelsToAdd";
114
117
  readonly LABELS_TO_REMOVE: "LabelsToRemove";
115
118
  readonly LAUNCH_TEMPLATE_NAME: "LaunchTemplateName";
@@ -165,6 +168,7 @@ export declare const UpdateType: {
165
168
  readonly AUTO_MODE_UPDATE: "AutoModeUpdate";
166
169
  readonly CAPABILITY_UPDATE: "CapabilityUpdate";
167
170
  readonly CONFIG_UPDATE: "ConfigUpdate";
171
+ readonly CONTROL_PLANE_COMPONENT_CONFIG_UPDATE: "ControlPlaneComponentConfigUpdate";
168
172
  readonly CONTROL_PLANE_EGRESS_UPDATE: "ControlPlaneEgressUpdate";
169
173
  readonly CONTROL_PLANE_SCALING_CONFIG_UPDATE: "ControlPlaneScalingConfigUpdate";
170
174
  readonly DELETION_PROTECTION_UPDATE: "DeletionProtectionUpdate";
@@ -226,6 +230,11 @@ export declare const IpFamily: {
226
230
  readonly IPV6: "ipv6";
227
231
  };
228
232
  export type IpFamily = (typeof IpFamily)[keyof typeof IpFamily];
233
+ export declare const ScoringStrategyType: {
234
+ readonly LEAST_ALLOCATED: "LeastAllocated";
235
+ readonly MOST_ALLOCATED: "MostAllocated";
236
+ };
237
+ export type ScoringStrategyType = (typeof ScoringStrategyType)[keyof typeof ScoringStrategyType];
229
238
  export declare const LogType: {
230
239
  readonly API: "api";
231
240
  readonly AUDIT: "audit";