import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient"; import type { UpdateClusterConfigRequest, UpdateClusterConfigResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateClusterConfigCommand}. */ export interface UpdateClusterConfigCommandInput extends UpdateClusterConfigRequest { } /** * @public * * The output of {@link UpdateClusterConfigCommand}. */ export interface UpdateClusterConfigCommandOutput extends UpdateClusterConfigResponse, __MetadataBearer { } declare const UpdateClusterConfigCommand_base: { new (input: UpdateClusterConfigCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: UpdateClusterConfigCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Updates an Amazon EKS cluster configuration. Your cluster continues to function during the * update. The response output includes an update ID that you can use to track the status * of your cluster update with DescribeUpdate.

*

You can use this operation to do the following actions:

* *

Cluster updates are asynchronous, and they should finish within a few minutes. During * an update, the cluster status moves to UPDATING (this status transition is * eventually consistent). When the update is complete (either Failed or * Successful), the cluster status moves to Active.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EKSClient, UpdateClusterConfigCommand } from "@aws-sdk/client-eks"; // ES Modules import * // const { EKSClient, UpdateClusterConfigCommand } = require("@aws-sdk/client-eks"); // CommonJS import * // import type { EKSClientConfig } from "@aws-sdk/client-eks"; * const config = {}; // type is EKSClientConfig * const client = new EKSClient(config); * const input = { // UpdateClusterConfigRequest * name: "STRING_VALUE", // required * resourcesVpcConfig: { // VpcConfigRequest * subnetIds: [ // StringList * "STRING_VALUE", * ], * securityGroupIds: [ * "STRING_VALUE", * ], * endpointPublicAccess: true || false, * endpointPrivateAccess: true || false, * publicAccessCidrs: [ * "STRING_VALUE", * ], * }, * logging: { // Logging * clusterLogging: [ // LogSetups * { // LogSetup * types: [ // LogTypes * "api" || "audit" || "authenticator" || "controllerManager" || "scheduler", * ], * enabled: true || false, * }, * ], * }, * clientRequestToken: "STRING_VALUE", * accessConfig: { // UpdateAccessConfigRequest * authenticationMode: "API" || "API_AND_CONFIG_MAP" || "CONFIG_MAP", * }, * upgradePolicy: { // UpgradePolicyRequest * supportType: "STANDARD" || "EXTENDED", * }, * zonalShiftConfig: { // ZonalShiftConfigRequest * enabled: true || false, * }, * computeConfig: { // ComputeConfigRequest * enabled: true || false, * nodePools: [ * "STRING_VALUE", * ], * nodeRoleArn: "STRING_VALUE", * }, * kubernetesNetworkConfig: { // KubernetesNetworkConfigRequest * serviceIpv4Cidr: "STRING_VALUE", * ipFamily: "ipv4" || "ipv6", * elasticLoadBalancing: { // ElasticLoadBalancing * enabled: true || false, * }, * }, * storageConfig: { // StorageConfigRequest * blockStorage: { // BlockStorage * enabled: true || false, * }, * }, * remoteNetworkConfig: { // RemoteNetworkConfigRequest * remoteNodeNetworks: [ // RemoteNodeNetworkList * { // RemoteNodeNetwork * cidrs: [ * "STRING_VALUE", * ], * }, * ], * remotePodNetworks: [ // RemotePodNetworkList * { // RemotePodNetwork * cidrs: "", * }, * ], * }, * deletionProtection: true || false, * controlPlaneScalingConfig: { // ControlPlaneScalingConfig * tier: "standard" || "tier-xl" || "tier-2xl" || "tier-4xl" || "tier-8xl", * }, * }; * const command = new UpdateClusterConfigCommand(input); * const response = await client.send(command); * // { // UpdateClusterConfigResponse * // update: { // Update * // id: "STRING_VALUE", * // status: "InProgress" || "Failed" || "Cancelled" || "Successful", * // type: "VersionUpdate" || "EndpointAccessUpdate" || "LoggingUpdate" || "ConfigUpdate" || "AssociateIdentityProviderConfig" || "DisassociateIdentityProviderConfig" || "AssociateEncryptionConfig" || "AddonUpdate" || "VpcConfigUpdate" || "AccessConfigUpdate" || "UpgradePolicyUpdate" || "ZonalShiftConfigUpdate" || "AutoModeUpdate" || "RemoteNetworkConfigUpdate" || "DeletionProtectionUpdate" || "ControlPlaneScalingConfigUpdate" || "VendedLogsUpdate", * // params: [ // UpdateParams * // { // UpdateParam * // 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" || "UpdatedTier" || "PreviousTier" || "WarmPoolEnabled" || "WarmPoolMaxGroupPreparedCapacity" || "WarmPoolMinSize" || "WarmPoolState" || "WarmPoolReuseOnScaleIn", * // value: "STRING_VALUE", * // }, * // ], * // createdAt: new Date("TIMESTAMP"), * // errors: [ // ErrorDetails * // { // ErrorDetail * // errorCode: "SubnetNotFound" || "SecurityGroupNotFound" || "EniLimitReached" || "IpNotAvailable" || "AccessDenied" || "OperationNotPermitted" || "VpcIdNotFound" || "Unknown" || "NodeCreationFailure" || "PodEvictionFailure" || "InsufficientFreeAddresses" || "ClusterUnreachable" || "InsufficientNumberOfReplicas" || "ConfigurationConflict" || "AdmissionRequestDenied" || "UnsupportedAddonModification" || "K8sResourceNotFound", * // errorMessage: "STRING_VALUE", * // resourceIds: [ // StringList * // "STRING_VALUE", * // ], * // }, * // ], * // }, * // }; * * ``` * * @param UpdateClusterConfigCommandInput - {@link UpdateClusterConfigCommandInput} * @returns {@link UpdateClusterConfigCommandOutput} * @see {@link UpdateClusterConfigCommandInput} for command's `input` shape. * @see {@link UpdateClusterConfigCommandOutput} for command's `response` shape. * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape. * * @throws {@link ClientException} (client fault) *

These errors are usually caused by a client action. Actions can include using an * action or resource on behalf of an IAM principal that doesn't have permissions to use * the action or resource or specifying an identifier that is not valid.

* * @throws {@link InvalidParameterException} (client fault) *

The specified parameter is invalid. Review the available parameters for the API * request.

* * @throws {@link InvalidRequestException} (client fault) *

The request is invalid given the state of the cluster. Check the state of the cluster * and the associated operations.

* * @throws {@link ResourceInUseException} (client fault) *

The specified resource is in use.

* * @throws {@link ResourceNotFoundException} (client fault) *

The specified resource could not be found. You can view your available clusters with * ListClusters. You can view your available managed node groups with * ListNodegroups. Amazon EKS clusters and node groups are Amazon Web Services Region * specific.

* * @throws {@link ServerException} (server fault) *

These errors are usually caused by a server-side issue.

* * @throws {@link ThrottlingException} (client fault) *

The request or operation couldn't be performed because a service is throttling * requests.

* * @throws {@link EKSServiceException} *

Base exception class for all service exceptions from EKS service.

* * * @public */ export declare class UpdateClusterConfigCommand extends UpdateClusterConfigCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateClusterConfigRequest; output: UpdateClusterConfigResponse; }; sdk: { input: UpdateClusterConfigCommandInput; output: UpdateClusterConfigCommandOutput; }; }; }