aws-sdk-eks 1.131.0 → 1.134.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +83 -53
- data/lib/aws-sdk-eks/client_api.rb +18 -0
- data/lib/aws-sdk-eks/errors.rb +42 -0
- data/lib/aws-sdk-eks/types.rb +67 -10
- data/lib/aws-sdk-eks.rb +1 -1
- data/sig/client.rbs +15 -2
- data/sig/errors.rbs +8 -0
- data/sig/types.rbs +18 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b16600c8d9db27006dd5fcd3f12527c4a5a288df9cecf10df1e93edf82c183be
|
4
|
+
data.tar.gz: ea10f36699544075485592e7d5294f8ea4d9af4f3232bf064d373763181a14c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d751f9077a61e3af9daa5884deaa1a93a630a19ac5d99c336e56311f2ed6622da1986b9192932c356c8e1c1b43c92a62e744cb7a967f5897e4c74f8fae5522e4
|
7
|
+
data.tar.gz: 1115754f59d53a99c34231d3a3fef0918755ab4133df6fc6bc4d2a4748cdce1d31bb7c9af3d6d8481ef16cd99e8d2340dda6a9beed5aeb56e42f57d7687d5fdf
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.134.0 (2025-03-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add support for updating RemoteNetworkConfig for hybrid nodes on EKS UpdateClusterConfig API
|
8
|
+
|
9
|
+
1.133.0 (2025-03-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added support for BOTTLEROCKET FIPS AMIs to AMI types in US regions.
|
13
|
+
|
14
|
+
1.132.0 (2025-03-25)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Added support to override upgrade-blocking readiness checks via force flag when updating a cluster.
|
18
|
+
|
4
19
|
1.131.0 (2025-02-28)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.134.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -575,9 +575,9 @@ module Aws::EKS
|
|
575
575
|
#
|
576
576
|
# resp.update.id #=> String
|
577
577
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
578
|
-
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate"
|
578
|
+
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate", "RemoteNetworkConfigUpdate"
|
579
579
|
# resp.update.params #=> Array
|
580
|
-
# resp.update.params[0].type #=> String, one of "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"
|
580
|
+
# resp.update.params[0].type #=> String, one of "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"
|
581
581
|
# resp.update.params[0].value #=> String
|
582
582
|
# resp.update.created_at #=> Time
|
583
583
|
# resp.update.errors #=> Array
|
@@ -659,9 +659,9 @@ module Aws::EKS
|
|
659
659
|
#
|
660
660
|
# resp.update.id #=> String
|
661
661
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
662
|
-
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate"
|
662
|
+
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate", "RemoteNetworkConfigUpdate"
|
663
663
|
# resp.update.params #=> Array
|
664
|
-
# resp.update.params[0].type #=> String, one of "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"
|
664
|
+
# resp.update.params[0].type #=> String, one of "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"
|
665
665
|
# resp.update.params[0].value #=> String
|
666
666
|
# resp.update.created_at #=> Time
|
667
667
|
# resp.update.errors #=> Array
|
@@ -1185,8 +1185,8 @@ module Aws::EKS
|
|
1185
1185
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/zone-shift.html
|
1186
1186
|
#
|
1187
1187
|
# @option params [Types::RemoteNetworkConfigRequest] :remote_network_config
|
1188
|
-
# The configuration in the cluster for EKS Hybrid Nodes. You can
|
1189
|
-
# change or
|
1188
|
+
# The configuration in the cluster for EKS Hybrid Nodes. You can add,
|
1189
|
+
# change, or remove this configuration after the cluster is created.
|
1190
1190
|
#
|
1191
1191
|
# @option params [Types::ComputeConfigRequest] :compute_config
|
1192
1192
|
# Enable or disable the compute capability of EKS Auto Mode when
|
@@ -1855,7 +1855,7 @@ module Aws::EKS
|
|
1855
1855
|
# disk_size: 1,
|
1856
1856
|
# subnets: ["String"], # required
|
1857
1857
|
# instance_types: ["String"],
|
1858
|
-
# ami_type: "AL2_x86_64", # accepts AL2_x86_64, AL2_x86_64_GPU, AL2_ARM_64, CUSTOM, BOTTLEROCKET_ARM_64, BOTTLEROCKET_x86_64, BOTTLEROCKET_ARM_64_NVIDIA, BOTTLEROCKET_x86_64_NVIDIA, WINDOWS_CORE_2019_x86_64, WINDOWS_FULL_2019_x86_64, WINDOWS_CORE_2022_x86_64, WINDOWS_FULL_2022_x86_64, AL2023_x86_64_STANDARD, AL2023_ARM_64_STANDARD, AL2023_x86_64_NEURON, AL2023_x86_64_NVIDIA
|
1858
|
+
# ami_type: "AL2_x86_64", # accepts AL2_x86_64, AL2_x86_64_GPU, AL2_ARM_64, CUSTOM, BOTTLEROCKET_ARM_64, BOTTLEROCKET_x86_64, BOTTLEROCKET_ARM_64_FIPS, BOTTLEROCKET_x86_64_FIPS, BOTTLEROCKET_ARM_64_NVIDIA, BOTTLEROCKET_x86_64_NVIDIA, WINDOWS_CORE_2019_x86_64, WINDOWS_FULL_2019_x86_64, WINDOWS_CORE_2022_x86_64, WINDOWS_FULL_2022_x86_64, AL2023_x86_64_STANDARD, AL2023_ARM_64_STANDARD, AL2023_x86_64_NEURON, AL2023_x86_64_NVIDIA
|
1859
1859
|
# remote_access: {
|
1860
1860
|
# ec2_ssh_key: "String",
|
1861
1861
|
# source_security_groups: ["String"],
|
@@ -1914,7 +1914,7 @@ module Aws::EKS
|
|
1914
1914
|
# resp.nodegroup.remote_access.ec2_ssh_key #=> String
|
1915
1915
|
# resp.nodegroup.remote_access.source_security_groups #=> Array
|
1916
1916
|
# resp.nodegroup.remote_access.source_security_groups[0] #=> String
|
1917
|
-
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64", "BOTTLEROCKET_ARM_64_NVIDIA", "BOTTLEROCKET_x86_64_NVIDIA", "WINDOWS_CORE_2019_x86_64", "WINDOWS_FULL_2019_x86_64", "WINDOWS_CORE_2022_x86_64", "WINDOWS_FULL_2022_x86_64", "AL2023_x86_64_STANDARD", "AL2023_ARM_64_STANDARD", "AL2023_x86_64_NEURON", "AL2023_x86_64_NVIDIA"
|
1917
|
+
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64", "BOTTLEROCKET_ARM_64_FIPS", "BOTTLEROCKET_x86_64_FIPS", "BOTTLEROCKET_ARM_64_NVIDIA", "BOTTLEROCKET_x86_64_NVIDIA", "WINDOWS_CORE_2019_x86_64", "WINDOWS_FULL_2019_x86_64", "WINDOWS_CORE_2022_x86_64", "WINDOWS_FULL_2022_x86_64", "AL2023_x86_64_STANDARD", "AL2023_ARM_64_STANDARD", "AL2023_x86_64_NEURON", "AL2023_x86_64_NVIDIA"
|
1918
1918
|
# resp.nodegroup.node_role #=> String
|
1919
1919
|
# resp.nodegroup.labels #=> Hash
|
1920
1920
|
# resp.nodegroup.labels["labelKey"] #=> String
|
@@ -2432,7 +2432,7 @@ module Aws::EKS
|
|
2432
2432
|
# resp.nodegroup.remote_access.ec2_ssh_key #=> String
|
2433
2433
|
# resp.nodegroup.remote_access.source_security_groups #=> Array
|
2434
2434
|
# resp.nodegroup.remote_access.source_security_groups[0] #=> String
|
2435
|
-
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64", "BOTTLEROCKET_ARM_64_NVIDIA", "BOTTLEROCKET_x86_64_NVIDIA", "WINDOWS_CORE_2019_x86_64", "WINDOWS_FULL_2019_x86_64", "WINDOWS_CORE_2022_x86_64", "WINDOWS_FULL_2022_x86_64", "AL2023_x86_64_STANDARD", "AL2023_ARM_64_STANDARD", "AL2023_x86_64_NEURON", "AL2023_x86_64_NVIDIA"
|
2435
|
+
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64", "BOTTLEROCKET_ARM_64_FIPS", "BOTTLEROCKET_x86_64_FIPS", "BOTTLEROCKET_ARM_64_NVIDIA", "BOTTLEROCKET_x86_64_NVIDIA", "WINDOWS_CORE_2019_x86_64", "WINDOWS_FULL_2019_x86_64", "WINDOWS_CORE_2022_x86_64", "WINDOWS_FULL_2022_x86_64", "AL2023_x86_64_STANDARD", "AL2023_ARM_64_STANDARD", "AL2023_x86_64_NEURON", "AL2023_x86_64_NVIDIA"
|
2436
2436
|
# resp.nodegroup.node_role #=> String
|
2437
2437
|
# resp.nodegroup.labels #=> Hash
|
2438
2438
|
# resp.nodegroup.labels["labelKey"] #=> String
|
@@ -3341,7 +3341,7 @@ module Aws::EKS
|
|
3341
3341
|
# resp.nodegroup.remote_access.ec2_ssh_key #=> String
|
3342
3342
|
# resp.nodegroup.remote_access.source_security_groups #=> Array
|
3343
3343
|
# resp.nodegroup.remote_access.source_security_groups[0] #=> String
|
3344
|
-
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64", "BOTTLEROCKET_ARM_64_NVIDIA", "BOTTLEROCKET_x86_64_NVIDIA", "WINDOWS_CORE_2019_x86_64", "WINDOWS_FULL_2019_x86_64", "WINDOWS_CORE_2022_x86_64", "WINDOWS_FULL_2022_x86_64", "AL2023_x86_64_STANDARD", "AL2023_ARM_64_STANDARD", "AL2023_x86_64_NEURON", "AL2023_x86_64_NVIDIA"
|
3344
|
+
# resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64", "BOTTLEROCKET_ARM_64_FIPS", "BOTTLEROCKET_x86_64_FIPS", "BOTTLEROCKET_ARM_64_NVIDIA", "BOTTLEROCKET_x86_64_NVIDIA", "WINDOWS_CORE_2019_x86_64", "WINDOWS_FULL_2019_x86_64", "WINDOWS_CORE_2022_x86_64", "WINDOWS_FULL_2022_x86_64", "AL2023_x86_64_STANDARD", "AL2023_ARM_64_STANDARD", "AL2023_x86_64_NEURON", "AL2023_x86_64_NVIDIA"
|
3345
3345
|
# resp.nodegroup.node_role #=> String
|
3346
3346
|
# resp.nodegroup.labels #=> Hash
|
3347
3347
|
# resp.nodegroup.labels["labelKey"] #=> String
|
@@ -3473,9 +3473,9 @@ module Aws::EKS
|
|
3473
3473
|
#
|
3474
3474
|
# resp.update.id #=> String
|
3475
3475
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
3476
|
-
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate"
|
3476
|
+
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate", "RemoteNetworkConfigUpdate"
|
3477
3477
|
# resp.update.params #=> Array
|
3478
|
-
# resp.update.params[0].type #=> String, one of "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"
|
3478
|
+
# resp.update.params[0].type #=> String, one of "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"
|
3479
3479
|
# resp.update.params[0].value #=> String
|
3480
3480
|
# resp.update.created_at #=> Time
|
3481
3481
|
# resp.update.errors #=> Array
|
@@ -3562,9 +3562,9 @@ module Aws::EKS
|
|
3562
3562
|
#
|
3563
3563
|
# resp.update.id #=> String
|
3564
3564
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
3565
|
-
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate"
|
3565
|
+
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate", "RemoteNetworkConfigUpdate"
|
3566
3566
|
# resp.update.params #=> Array
|
3567
|
-
# resp.update.params[0].type #=> String, one of "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"
|
3567
|
+
# resp.update.params[0].type #=> String, one of "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"
|
3568
3568
|
# resp.update.params[0].value #=> String
|
3569
3569
|
# resp.update.created_at #=> Time
|
3570
3570
|
# resp.update.errors #=> Array
|
@@ -4810,9 +4810,9 @@ module Aws::EKS
|
|
4810
4810
|
#
|
4811
4811
|
# resp.update.id #=> String
|
4812
4812
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
4813
|
-
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate"
|
4813
|
+
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate", "RemoteNetworkConfigUpdate"
|
4814
4814
|
# resp.update.params #=> Array
|
4815
|
-
# resp.update.params[0].type #=> String, one of "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"
|
4815
|
+
# resp.update.params[0].type #=> String, one of "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"
|
4816
4816
|
# resp.update.params[0].value #=> String
|
4817
4817
|
# resp.update.created_at #=> Time
|
4818
4818
|
# resp.update.errors #=> Array
|
@@ -4833,38 +4833,47 @@ module Aws::EKS
|
|
4833
4833
|
# Updates an Amazon EKS cluster configuration. Your cluster continues to
|
4834
4834
|
# function during the update. The response output includes an update ID
|
4835
4835
|
# that you can use to track the status of your cluster update with
|
4836
|
-
# `DescribeUpdate
|
4836
|
+
# `DescribeUpdate`.
|
4837
4837
|
#
|
4838
|
-
# You can use this
|
4839
|
-
# Kubernetes control plane logs for your cluster to CloudWatch Logs. By
|
4840
|
-
# default, cluster control plane logs aren't exported to CloudWatch
|
4841
|
-
# Logs. For more information, see [Amazon EKS Cluster control plane
|
4842
|
-
# logs][1] in the <i> <i>Amazon EKS User Guide</i> </i>.
|
4838
|
+
# You can use this operation to do the following actions:
|
4843
4839
|
#
|
4844
|
-
#
|
4845
|
-
#
|
4846
|
-
#
|
4840
|
+
# * You can use this API operation to enable or disable exporting the
|
4841
|
+
# Kubernetes control plane logs for your cluster to CloudWatch Logs.
|
4842
|
+
# By default, cluster control plane logs aren't exported to
|
4843
|
+
# CloudWatch Logs. For more information, see [Amazon EKS Cluster
|
4844
|
+
# control plane logs][1] in the <i> <i>Amazon EKS User Guide</i> </i>.
|
4847
4845
|
#
|
4848
|
-
#
|
4846
|
+
# <note markdown="1"> CloudWatch Logs ingestion, archive storage, and data scanning rates
|
4847
|
+
# apply to exported control plane logs. For more information, see
|
4848
|
+
# [CloudWatch Pricing][2].
|
4849
|
+
#
|
4850
|
+
# </note>
|
4849
4851
|
#
|
4850
|
-
# You can also use this API operation to enable or disable public and
|
4851
|
-
#
|
4852
|
-
#
|
4853
|
-
# more information, see [Amazon EKS cluster endpoint access
|
4854
|
-
# in the <i> <i>Amazon EKS User Guide</i> </i>.
|
4855
|
-
#
|
4856
|
-
# You can also use this API operation to choose different subnets and
|
4857
|
-
#
|
4858
|
-
# that are in different Availability Zones. You can't change
|
4859
|
-
# the subnets are from, the subnets must be in the same VPC
|
4860
|
-
# subnets that the cluster was created with. For more
|
4861
|
-
# the VPC requirements, see
|
4862
|
-
#
|
4863
|
-
#
|
4864
|
-
#
|
4865
|
-
# You can also use this API operation to enable or disable ARC zonal
|
4866
|
-
#
|
4867
|
-
# autoshift for the cluster.
|
4852
|
+
# * You can also use this API operation to enable or disable public and
|
4853
|
+
# private access to your cluster's Kubernetes API server endpoint. By
|
4854
|
+
# default, public access is enabled, and private access is disabled.
|
4855
|
+
# For more information, see [Amazon EKS cluster endpoint access
|
4856
|
+
# control][3] in the <i> <i>Amazon EKS User Guide</i> </i>.
|
4857
|
+
#
|
4858
|
+
# * You can also use this API operation to choose different subnets and
|
4859
|
+
# security groups for the cluster. You must specify at least two
|
4860
|
+
# subnets that are in different Availability Zones. You can't change
|
4861
|
+
# which VPC the subnets are from, the subnets must be in the same VPC
|
4862
|
+
# as the subnets that the cluster was created with. For more
|
4863
|
+
# information about the VPC requirements, see
|
4864
|
+
# [https://docs.aws.amazon.com/eks/latest/userguide/network\_reqs.html][4]
|
4865
|
+
# in the <i> <i>Amazon EKS User Guide</i> </i>.
|
4866
|
+
#
|
4867
|
+
# * You can also use this API operation to enable or disable ARC zonal
|
4868
|
+
# shift. If zonal shift is enabled, Amazon Web Services configures
|
4869
|
+
# zonal autoshift for the cluster.
|
4870
|
+
#
|
4871
|
+
# * You can also use this API operation to add, change, or remove the
|
4872
|
+
# configuration in the cluster for EKS Hybrid Nodes. To remove the
|
4873
|
+
# configuration, use the `remoteNetworkConfig` key with an object
|
4874
|
+
# containing both subkeys with empty arrays for each. Here is an
|
4875
|
+
# inline example: `"remoteNetworkConfig": { "remoteNodeNetworks": [],
|
4876
|
+
# "remotePodNetworks": [] }`.
|
4868
4877
|
#
|
4869
4878
|
# Cluster updates are asynchronous, and they should finish within a few
|
4870
4879
|
# minutes. During an update, the cluster status moves to `UPDATING`
|
@@ -4957,6 +4966,10 @@ module Aws::EKS
|
|
4957
4966
|
# Update the configuration of the block storage capability of your EKS
|
4958
4967
|
# Auto Mode cluster. For example, enable the capability.
|
4959
4968
|
#
|
4969
|
+
# @option params [Types::RemoteNetworkConfigRequest] :remote_network_config
|
4970
|
+
# The configuration in the cluster for EKS Hybrid Nodes. You can add,
|
4971
|
+
# change, or remove this configuration after the cluster is created.
|
4972
|
+
#
|
4960
4973
|
# @return [Types::UpdateClusterConfigResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4961
4974
|
#
|
4962
4975
|
# * {Types::UpdateClusterConfigResponse#update #update} => Types::Update
|
@@ -5007,15 +5020,27 @@ module Aws::EKS
|
|
5007
5020
|
# enabled: false,
|
5008
5021
|
# },
|
5009
5022
|
# },
|
5023
|
+
# remote_network_config: {
|
5024
|
+
# remote_node_networks: [
|
5025
|
+
# {
|
5026
|
+
# cidrs: ["String"],
|
5027
|
+
# },
|
5028
|
+
# ],
|
5029
|
+
# remote_pod_networks: [
|
5030
|
+
# {
|
5031
|
+
# cidrs: ["String"],
|
5032
|
+
# },
|
5033
|
+
# ],
|
5034
|
+
# },
|
5010
5035
|
# })
|
5011
5036
|
#
|
5012
5037
|
# @example Response structure
|
5013
5038
|
#
|
5014
5039
|
# resp.update.id #=> String
|
5015
5040
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
5016
|
-
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate"
|
5041
|
+
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate", "RemoteNetworkConfigUpdate"
|
5017
5042
|
# resp.update.params #=> Array
|
5018
|
-
# resp.update.params[0].type #=> String, one of "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"
|
5043
|
+
# resp.update.params[0].type #=> String, one of "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"
|
5019
5044
|
# resp.update.params[0].value #=> String
|
5020
5045
|
# resp.update.created_at #=> Time
|
5021
5046
|
# resp.update.errors #=> Array
|
@@ -5065,6 +5090,10 @@ module Aws::EKS
|
|
5065
5090
|
# **A suitable default value is auto-generated.** You should normally
|
5066
5091
|
# not need to pass this option.**
|
5067
5092
|
#
|
5093
|
+
# @option params [Boolean] :force
|
5094
|
+
# Set this value to `true` to override upgrade-blocking readiness checks
|
5095
|
+
# when updating a cluster.
|
5096
|
+
#
|
5068
5097
|
# @return [Types::UpdateClusterVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5069
5098
|
#
|
5070
5099
|
# * {Types::UpdateClusterVersionResponse#update #update} => Types::Update
|
@@ -5075,15 +5104,16 @@ module Aws::EKS
|
|
5075
5104
|
# name: "String", # required
|
5076
5105
|
# version: "String", # required
|
5077
5106
|
# client_request_token: "String",
|
5107
|
+
# force: false,
|
5078
5108
|
# })
|
5079
5109
|
#
|
5080
5110
|
# @example Response structure
|
5081
5111
|
#
|
5082
5112
|
# resp.update.id #=> String
|
5083
5113
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
5084
|
-
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate"
|
5114
|
+
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate", "RemoteNetworkConfigUpdate"
|
5085
5115
|
# resp.update.params #=> Array
|
5086
|
-
# resp.update.params[0].type #=> String, one of "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"
|
5116
|
+
# resp.update.params[0].type #=> String, one of "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"
|
5087
5117
|
# resp.update.params[0].value #=> String
|
5088
5118
|
# resp.update.created_at #=> Time
|
5089
5119
|
# resp.update.errors #=> Array
|
@@ -5258,9 +5288,9 @@ module Aws::EKS
|
|
5258
5288
|
#
|
5259
5289
|
# resp.update.id #=> String
|
5260
5290
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
5261
|
-
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate"
|
5291
|
+
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate", "RemoteNetworkConfigUpdate"
|
5262
5292
|
# resp.update.params #=> Array
|
5263
|
-
# resp.update.params[0].type #=> String, one of "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"
|
5293
|
+
# resp.update.params[0].type #=> String, one of "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"
|
5264
5294
|
# resp.update.params[0].value #=> String
|
5265
5295
|
# resp.update.created_at #=> Time
|
5266
5296
|
# resp.update.errors #=> Array
|
@@ -5404,9 +5434,9 @@ module Aws::EKS
|
|
5404
5434
|
#
|
5405
5435
|
# resp.update.id #=> String
|
5406
5436
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
5407
|
-
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate"
|
5437
|
+
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate", "UpgradePolicyUpdate", "ZonalShiftConfigUpdate", "AutoModeUpdate", "RemoteNetworkConfigUpdate"
|
5408
5438
|
# resp.update.params #=> Array
|
5409
|
-
# resp.update.params[0].type #=> String, one of "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"
|
5439
|
+
# resp.update.params[0].type #=> String, one of "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"
|
5410
5440
|
# resp.update.params[0].value #=> String
|
5411
5441
|
# resp.update.created_at #=> Time
|
5412
5442
|
# resp.update.errors #=> Array
|
@@ -5500,7 +5530,7 @@ module Aws::EKS
|
|
5500
5530
|
tracer: tracer
|
5501
5531
|
)
|
5502
5532
|
context[:gem_name] = 'aws-sdk-eks'
|
5503
|
-
context[:gem_version] = '1.
|
5533
|
+
context[:gem_version] = '1.134.0'
|
5504
5534
|
Seahorse::Client::Request.new(handlers, context)
|
5505
5535
|
end
|
5506
5536
|
|
@@ -189,6 +189,7 @@ module Aws::EKS
|
|
189
189
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
190
190
|
InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
|
191
191
|
InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
|
192
|
+
InvalidStateException = Shapes::StructureShape.new(name: 'InvalidStateException')
|
192
193
|
IpFamily = Shapes::StringShape.new(name: 'IpFamily')
|
193
194
|
Issue = Shapes::StructureShape.new(name: 'Issue')
|
194
195
|
IssueList = Shapes::ListShape.new(name: 'IssueList')
|
@@ -291,6 +292,7 @@ module Aws::EKS
|
|
291
292
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
292
293
|
Taint = Shapes::StructureShape.new(name: 'Taint')
|
293
294
|
TaintEffect = Shapes::StringShape.new(name: 'TaintEffect')
|
295
|
+
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
294
296
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
295
297
|
UnsupportedAvailabilityZoneException = Shapes::StructureShape.new(name: 'UnsupportedAvailabilityZoneException')
|
296
298
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
@@ -1031,6 +1033,10 @@ module Aws::EKS
|
|
1031
1033
|
InvalidRequestException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
1032
1034
|
InvalidRequestException.struct_class = Types::InvalidRequestException
|
1033
1035
|
|
1036
|
+
InvalidStateException.add_member(:cluster_name, Shapes::ShapeRef.new(shape: String, location_name: "clusterName"))
|
1037
|
+
InvalidStateException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
1038
|
+
InvalidStateException.struct_class = Types::InvalidStateException
|
1039
|
+
|
1034
1040
|
Issue.add_member(:code, Shapes::ShapeRef.new(shape: NodegroupIssueCode, location_name: "code"))
|
1035
1041
|
Issue.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
1036
1042
|
Issue.add_member(:resource_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "resourceIds"))
|
@@ -1396,6 +1402,10 @@ module Aws::EKS
|
|
1396
1402
|
Taint.add_member(:effect, Shapes::ShapeRef.new(shape: TaintEffect, location_name: "effect"))
|
1397
1403
|
Taint.struct_class = Types::Taint
|
1398
1404
|
|
1405
|
+
ThrottlingException.add_member(:cluster_name, Shapes::ShapeRef.new(shape: String, location_name: "clusterName"))
|
1406
|
+
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
1407
|
+
ThrottlingException.struct_class = Types::ThrottlingException
|
1408
|
+
|
1399
1409
|
UnsupportedAvailabilityZoneException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
1400
1410
|
UnsupportedAvailabilityZoneException.add_member(:cluster_name, Shapes::ShapeRef.new(shape: String, location_name: "clusterName"))
|
1401
1411
|
UnsupportedAvailabilityZoneException.add_member(:nodegroup_name, Shapes::ShapeRef.new(shape: String, location_name: "nodegroupName"))
|
@@ -1452,6 +1462,7 @@ module Aws::EKS
|
|
1452
1462
|
UpdateClusterConfigRequest.add_member(:compute_config, Shapes::ShapeRef.new(shape: ComputeConfigRequest, location_name: "computeConfig"))
|
1453
1463
|
UpdateClusterConfigRequest.add_member(:kubernetes_network_config, Shapes::ShapeRef.new(shape: KubernetesNetworkConfigRequest, location_name: "kubernetesNetworkConfig"))
|
1454
1464
|
UpdateClusterConfigRequest.add_member(:storage_config, Shapes::ShapeRef.new(shape: StorageConfigRequest, location_name: "storageConfig"))
|
1465
|
+
UpdateClusterConfigRequest.add_member(:remote_network_config, Shapes::ShapeRef.new(shape: RemoteNetworkConfigRequest, location_name: "remoteNetworkConfig"))
|
1455
1466
|
UpdateClusterConfigRequest.struct_class = Types::UpdateClusterConfigRequest
|
1456
1467
|
|
1457
1468
|
UpdateClusterConfigResponse.add_member(:update, Shapes::ShapeRef.new(shape: Update, location_name: "update"))
|
@@ -1460,6 +1471,7 @@ module Aws::EKS
|
|
1460
1471
|
UpdateClusterVersionRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location: "uri", location_name: "name"))
|
1461
1472
|
UpdateClusterVersionRequest.add_member(:version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "version"))
|
1462
1473
|
UpdateClusterVersionRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: String, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
1474
|
+
UpdateClusterVersionRequest.add_member(:force, Shapes::ShapeRef.new(shape: Boolean, location_name: "force"))
|
1463
1475
|
UpdateClusterVersionRequest.struct_class = Types::UpdateClusterVersionRequest
|
1464
1476
|
|
1465
1477
|
UpdateClusterVersionResponse.add_member(:update, Shapes::ShapeRef.new(shape: Update, location_name: "update"))
|
@@ -1604,6 +1616,7 @@ module Aws::EKS
|
|
1604
1616
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1605
1617
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1606
1618
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1619
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1607
1620
|
end)
|
1608
1621
|
|
1609
1622
|
api.add_operation(:associate_identity_provider_config, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1618,6 +1631,7 @@ module Aws::EKS
|
|
1618
1631
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1619
1632
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1620
1633
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1634
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1621
1635
|
end)
|
1622
1636
|
|
1623
1637
|
api.add_operation(:create_access_entry, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2010,6 +2024,7 @@ module Aws::EKS
|
|
2010
2024
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
2011
2025
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2012
2026
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2027
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2013
2028
|
end)
|
2014
2029
|
|
2015
2030
|
api.add_operation(:list_access_entries, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2311,6 +2326,7 @@ module Aws::EKS
|
|
2311
2326
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
2312
2327
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2313
2328
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2329
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2314
2330
|
end)
|
2315
2331
|
|
2316
2332
|
api.add_operation(:update_cluster_version, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2325,6 +2341,8 @@ module Aws::EKS
|
|
2325
2341
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
2326
2342
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2327
2343
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2344
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2345
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidStateException)
|
2328
2346
|
end)
|
2329
2347
|
|
2330
2348
|
api.add_operation(:update_eks_anywhere_subscription, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-eks/errors.rb
CHANGED
@@ -32,6 +32,7 @@ module Aws::EKS
|
|
32
32
|
# * {ClientException}
|
33
33
|
# * {InvalidParameterException}
|
34
34
|
# * {InvalidRequestException}
|
35
|
+
# * {InvalidStateException}
|
35
36
|
# * {NotFoundException}
|
36
37
|
# * {ResourceInUseException}
|
37
38
|
# * {ResourceLimitExceededException}
|
@@ -39,6 +40,7 @@ module Aws::EKS
|
|
39
40
|
# * {ResourcePropagationDelayException}
|
40
41
|
# * {ServerException}
|
41
42
|
# * {ServiceUnavailableException}
|
43
|
+
# * {ThrottlingException}
|
42
44
|
# * {UnsupportedAvailabilityZoneException}
|
43
45
|
#
|
44
46
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
@@ -187,6 +189,26 @@ module Aws::EKS
|
|
187
189
|
end
|
188
190
|
end
|
189
191
|
|
192
|
+
class InvalidStateException < ServiceError
|
193
|
+
|
194
|
+
# @param [Seahorse::Client::RequestContext] context
|
195
|
+
# @param [String] message
|
196
|
+
# @param [Aws::EKS::Types::InvalidStateException] data
|
197
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
198
|
+
super(context, message, data)
|
199
|
+
end
|
200
|
+
|
201
|
+
# @return [String]
|
202
|
+
def cluster_name
|
203
|
+
@data[:cluster_name]
|
204
|
+
end
|
205
|
+
|
206
|
+
# @return [String]
|
207
|
+
def message
|
208
|
+
@message || @data[:message]
|
209
|
+
end
|
210
|
+
end
|
211
|
+
|
190
212
|
class NotFoundException < ServiceError
|
191
213
|
|
192
214
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -367,6 +389,26 @@ module Aws::EKS
|
|
367
389
|
end
|
368
390
|
end
|
369
391
|
|
392
|
+
class ThrottlingException < ServiceError
|
393
|
+
|
394
|
+
# @param [Seahorse::Client::RequestContext] context
|
395
|
+
# @param [String] message
|
396
|
+
# @param [Aws::EKS::Types::ThrottlingException] data
|
397
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
398
|
+
super(context, message, data)
|
399
|
+
end
|
400
|
+
|
401
|
+
# @return [String]
|
402
|
+
def cluster_name
|
403
|
+
@data[:cluster_name]
|
404
|
+
end
|
405
|
+
|
406
|
+
# @return [String]
|
407
|
+
def message
|
408
|
+
@message || @data[:message]
|
409
|
+
end
|
410
|
+
end
|
411
|
+
|
370
412
|
class UnsupportedAvailabilityZoneException < ServiceError
|
371
413
|
|
372
414
|
# @param [Seahorse::Client::RequestContext] context
|
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -927,8 +927,8 @@ module Aws::EKS
|
|
927
927
|
# @return [Types::ZonalShiftConfigResponse]
|
928
928
|
#
|
929
929
|
# @!attribute [rw] remote_network_config
|
930
|
-
# The configuration in the cluster for EKS Hybrid Nodes. You can
|
931
|
-
# change or
|
930
|
+
# The configuration in the cluster for EKS Hybrid Nodes. You can add,
|
931
|
+
# change, or remove this configuration after the cluster is created.
|
932
932
|
# @return [Types::RemoteNetworkConfigResponse]
|
933
933
|
#
|
934
934
|
# @!attribute [rw] compute_config
|
@@ -1721,8 +1721,8 @@ module Aws::EKS
|
|
1721
1721
|
# @return [Types::ZonalShiftConfigRequest]
|
1722
1722
|
#
|
1723
1723
|
# @!attribute [rw] remote_network_config
|
1724
|
-
# The configuration in the cluster for EKS Hybrid Nodes. You can
|
1725
|
-
# change or
|
1724
|
+
# The configuration in the cluster for EKS Hybrid Nodes. You can add,
|
1725
|
+
# change, or remove this configuration after the cluster is created.
|
1726
1726
|
# @return [Types::RemoteNetworkConfigRequest]
|
1727
1727
|
#
|
1728
1728
|
# @!attribute [rw] compute_config
|
@@ -3798,6 +3798,32 @@ module Aws::EKS
|
|
3798
3798
|
include Aws::Structure
|
3799
3799
|
end
|
3800
3800
|
|
3801
|
+
# Amazon EKS detected upgrade readiness issues. Call the [
|
3802
|
+
# `ListInsights` ][1] API to view detected upgrade blocking issues. Pass
|
3803
|
+
# the [ `force` ][2] flag when updating to override upgrade readiness
|
3804
|
+
# errors.
|
3805
|
+
#
|
3806
|
+
#
|
3807
|
+
#
|
3808
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_ListInsights.html
|
3809
|
+
# [2]: https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateClusterVersion.html#API_UpdateClusterVersion_RequestBody
|
3810
|
+
#
|
3811
|
+
# @!attribute [rw] cluster_name
|
3812
|
+
# The Amazon EKS cluster associated with the exception.
|
3813
|
+
# @return [String]
|
3814
|
+
#
|
3815
|
+
# @!attribute [rw] message
|
3816
|
+
# @return [String]
|
3817
|
+
#
|
3818
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/InvalidStateException AWS API Documentation
|
3819
|
+
#
|
3820
|
+
class InvalidStateException < Struct.new(
|
3821
|
+
:cluster_name,
|
3822
|
+
:message)
|
3823
|
+
SENSITIVE = []
|
3824
|
+
include Aws::Structure
|
3825
|
+
end
|
3826
|
+
|
3801
3827
|
# An object representing an issue with an Amazon EKS resource.
|
3802
3828
|
#
|
3803
3829
|
# @!attribute [rw] code
|
@@ -5895,8 +5921,8 @@ module Aws::EKS
|
|
5895
5921
|
include Aws::Structure
|
5896
5922
|
end
|
5897
5923
|
|
5898
|
-
# The configuration in the cluster for EKS Hybrid Nodes. You can
|
5899
|
-
# change or
|
5924
|
+
# The configuration in the cluster for EKS Hybrid Nodes. You can add,
|
5925
|
+
# change, or remove this configuration after the cluster is created.
|
5900
5926
|
#
|
5901
5927
|
# @!attribute [rw] remote_node_networks
|
5902
5928
|
# The list of network CIDRs that can contain hybrid nodes.
|
@@ -5966,8 +5992,8 @@ module Aws::EKS
|
|
5966
5992
|
include Aws::Structure
|
5967
5993
|
end
|
5968
5994
|
|
5969
|
-
# The configuration in the cluster for EKS Hybrid Nodes. You can
|
5970
|
-
# change or
|
5995
|
+
# The configuration in the cluster for EKS Hybrid Nodes. You can add,
|
5996
|
+
# change, or remove this configuration after the cluster is created.
|
5971
5997
|
#
|
5972
5998
|
# @!attribute [rw] remote_node_networks
|
5973
5999
|
# The list of network CIDRs that can contain hybrid nodes.
|
@@ -6367,6 +6393,25 @@ module Aws::EKS
|
|
6367
6393
|
include Aws::Structure
|
6368
6394
|
end
|
6369
6395
|
|
6396
|
+
# The request or operation couldn't be performed because a service is
|
6397
|
+
# throttling requests.
|
6398
|
+
#
|
6399
|
+
# @!attribute [rw] cluster_name
|
6400
|
+
# The Amazon EKS cluster associated with the exception.
|
6401
|
+
# @return [String]
|
6402
|
+
#
|
6403
|
+
# @!attribute [rw] message
|
6404
|
+
# @return [String]
|
6405
|
+
#
|
6406
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ThrottlingException AWS API Documentation
|
6407
|
+
#
|
6408
|
+
class ThrottlingException < Struct.new(
|
6409
|
+
:cluster_name,
|
6410
|
+
:message)
|
6411
|
+
SENSITIVE = []
|
6412
|
+
include Aws::Structure
|
6413
|
+
end
|
6414
|
+
|
6370
6415
|
# At least one of your specified cluster subnets is in an Availability
|
6371
6416
|
# Zone that does not support Amazon EKS. The exception output specifies
|
6372
6417
|
# the supported Availability Zones for your account, from which you can
|
@@ -6761,6 +6806,11 @@ module Aws::EKS
|
|
6761
6806
|
# Auto Mode cluster. For example, enable the capability.
|
6762
6807
|
# @return [Types::StorageConfigRequest]
|
6763
6808
|
#
|
6809
|
+
# @!attribute [rw] remote_network_config
|
6810
|
+
# The configuration in the cluster for EKS Hybrid Nodes. You can add,
|
6811
|
+
# change, or remove this configuration after the cluster is created.
|
6812
|
+
# @return [Types::RemoteNetworkConfigRequest]
|
6813
|
+
#
|
6764
6814
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdateClusterConfigRequest AWS API Documentation
|
6765
6815
|
#
|
6766
6816
|
class UpdateClusterConfigRequest < Struct.new(
|
@@ -6773,7 +6823,8 @@ module Aws::EKS
|
|
6773
6823
|
:zonal_shift_config,
|
6774
6824
|
:compute_config,
|
6775
6825
|
:kubernetes_network_config,
|
6776
|
-
:storage_config
|
6826
|
+
:storage_config,
|
6827
|
+
:remote_network_config)
|
6777
6828
|
SENSITIVE = []
|
6778
6829
|
include Aws::Structure
|
6779
6830
|
end
|
@@ -6806,12 +6857,18 @@ module Aws::EKS
|
|
6806
6857
|
# not need to pass this option.
|
6807
6858
|
# @return [String]
|
6808
6859
|
#
|
6860
|
+
# @!attribute [rw] force
|
6861
|
+
# Set this value to `true` to override upgrade-blocking readiness
|
6862
|
+
# checks when updating a cluster.
|
6863
|
+
# @return [Boolean]
|
6864
|
+
#
|
6809
6865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdateClusterVersionRequest AWS API Documentation
|
6810
6866
|
#
|
6811
6867
|
class UpdateClusterVersionRequest < Struct.new(
|
6812
6868
|
:name,
|
6813
6869
|
:version,
|
6814
|
-
:client_request_token
|
6870
|
+
:client_request_token,
|
6871
|
+
:force)
|
6815
6872
|
SENSITIVE = []
|
6816
6873
|
include Aws::Structure
|
6817
6874
|
end
|
data/lib/aws-sdk-eks.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -316,7 +316,7 @@ module Aws
|
|
316
316
|
?disk_size: ::Integer,
|
317
317
|
subnets: Array[::String],
|
318
318
|
?instance_types: Array[::String],
|
319
|
-
?ami_type: ("AL2_x86_64" | "AL2_x86_64_GPU" | "AL2_ARM_64" | "CUSTOM" | "BOTTLEROCKET_ARM_64" | "BOTTLEROCKET_x86_64" | "BOTTLEROCKET_ARM_64_NVIDIA" | "BOTTLEROCKET_x86_64_NVIDIA" | "WINDOWS_CORE_2019_x86_64" | "WINDOWS_FULL_2019_x86_64" | "WINDOWS_CORE_2022_x86_64" | "WINDOWS_FULL_2022_x86_64" | "AL2023_x86_64_STANDARD" | "AL2023_ARM_64_STANDARD" | "AL2023_x86_64_NEURON" | "AL2023_x86_64_NVIDIA"),
|
319
|
+
?ami_type: ("AL2_x86_64" | "AL2_x86_64_GPU" | "AL2_ARM_64" | "CUSTOM" | "BOTTLEROCKET_ARM_64" | "BOTTLEROCKET_x86_64" | "BOTTLEROCKET_ARM_64_FIPS" | "BOTTLEROCKET_x86_64_FIPS" | "BOTTLEROCKET_ARM_64_NVIDIA" | "BOTTLEROCKET_x86_64_NVIDIA" | "WINDOWS_CORE_2019_x86_64" | "WINDOWS_FULL_2019_x86_64" | "WINDOWS_CORE_2022_x86_64" | "WINDOWS_FULL_2022_x86_64" | "AL2023_x86_64_STANDARD" | "AL2023_ARM_64_STANDARD" | "AL2023_x86_64_NEURON" | "AL2023_x86_64_NVIDIA"),
|
320
320
|
?remote_access: {
|
321
321
|
ec2_ssh_key: ::String?,
|
322
322
|
source_security_groups: Array[::String]?
|
@@ -937,6 +937,18 @@ module Aws
|
|
937
937
|
block_storage: {
|
938
938
|
enabled: bool?
|
939
939
|
}?
|
940
|
+
},
|
941
|
+
?remote_network_config: {
|
942
|
+
remote_node_networks: Array[
|
943
|
+
{
|
944
|
+
cidrs: Array[::String]?
|
945
|
+
},
|
946
|
+
]?,
|
947
|
+
remote_pod_networks: Array[
|
948
|
+
{
|
949
|
+
cidrs: Array[::String]?
|
950
|
+
},
|
951
|
+
]?
|
940
952
|
}
|
941
953
|
) -> _UpdateClusterConfigResponseSuccess
|
942
954
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterConfigResponseSuccess
|
@@ -949,7 +961,8 @@ module Aws
|
|
949
961
|
def update_cluster_version: (
|
950
962
|
name: ::String,
|
951
963
|
version: ::String,
|
952
|
-
?client_request_token: ::String
|
964
|
+
?client_request_token: ::String,
|
965
|
+
?force: bool
|
953
966
|
) -> _UpdateClusterVersionResponseSuccess
|
954
967
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterVersionResponseSuccess
|
955
968
|
|
data/sig/errors.rbs
CHANGED
@@ -39,6 +39,10 @@ module Aws
|
|
39
39
|
def subscription_id: () -> ::String
|
40
40
|
def message: () -> ::String
|
41
41
|
end
|
42
|
+
class InvalidStateException < ::Aws::Errors::ServiceError
|
43
|
+
def cluster_name: () -> ::String
|
44
|
+
def message: () -> ::String
|
45
|
+
end
|
42
46
|
class NotFoundException < ::Aws::Errors::ServiceError
|
43
47
|
def message: () -> ::String
|
44
48
|
end
|
@@ -75,6 +79,10 @@ module Aws
|
|
75
79
|
class ServiceUnavailableException < ::Aws::Errors::ServiceError
|
76
80
|
def message: () -> ::String
|
77
81
|
end
|
82
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
83
|
+
def cluster_name: () -> ::String
|
84
|
+
def message: () -> ::String
|
85
|
+
end
|
78
86
|
class UnsupportedAvailabilityZoneException < ::Aws::Errors::ServiceError
|
79
87
|
def message: () -> ::String
|
80
88
|
def cluster_name: () -> ::String
|
data/sig/types.rbs
CHANGED
@@ -405,7 +405,7 @@ module Aws::EKS
|
|
405
405
|
attr_accessor disk_size: ::Integer
|
406
406
|
attr_accessor subnets: ::Array[::String]
|
407
407
|
attr_accessor instance_types: ::Array[::String]
|
408
|
-
attr_accessor ami_type: ("AL2_x86_64" | "AL2_x86_64_GPU" | "AL2_ARM_64" | "CUSTOM" | "BOTTLEROCKET_ARM_64" | "BOTTLEROCKET_x86_64" | "BOTTLEROCKET_ARM_64_NVIDIA" | "BOTTLEROCKET_x86_64_NVIDIA" | "WINDOWS_CORE_2019_x86_64" | "WINDOWS_FULL_2019_x86_64" | "WINDOWS_CORE_2022_x86_64" | "WINDOWS_FULL_2022_x86_64" | "AL2023_x86_64_STANDARD" | "AL2023_ARM_64_STANDARD" | "AL2023_x86_64_NEURON" | "AL2023_x86_64_NVIDIA")
|
408
|
+
attr_accessor ami_type: ("AL2_x86_64" | "AL2_x86_64_GPU" | "AL2_ARM_64" | "CUSTOM" | "BOTTLEROCKET_ARM_64" | "BOTTLEROCKET_x86_64" | "BOTTLEROCKET_ARM_64_FIPS" | "BOTTLEROCKET_x86_64_FIPS" | "BOTTLEROCKET_ARM_64_NVIDIA" | "BOTTLEROCKET_x86_64_NVIDIA" | "WINDOWS_CORE_2019_x86_64" | "WINDOWS_FULL_2019_x86_64" | "WINDOWS_CORE_2022_x86_64" | "WINDOWS_FULL_2022_x86_64" | "AL2023_x86_64_STANDARD" | "AL2023_ARM_64_STANDARD" | "AL2023_x86_64_NEURON" | "AL2023_x86_64_NVIDIA")
|
409
409
|
attr_accessor remote_access: Types::RemoteAccessConfig
|
410
410
|
attr_accessor node_role: ::String
|
411
411
|
attr_accessor labels: ::Hash[::String, ::String]
|
@@ -877,6 +877,12 @@ module Aws::EKS
|
|
877
877
|
SENSITIVE: []
|
878
878
|
end
|
879
879
|
|
880
|
+
class InvalidStateException
|
881
|
+
attr_accessor cluster_name: ::String
|
882
|
+
attr_accessor message: ::String
|
883
|
+
SENSITIVE: []
|
884
|
+
end
|
885
|
+
|
880
886
|
class Issue
|
881
887
|
attr_accessor code: ("AutoScalingGroupNotFound" | "AutoScalingGroupInvalidConfiguration" | "Ec2SecurityGroupNotFound" | "Ec2SecurityGroupDeletionFailure" | "Ec2LaunchTemplateNotFound" | "Ec2LaunchTemplateVersionMismatch" | "Ec2SubnetNotFound" | "Ec2SubnetInvalidConfiguration" | "IamInstanceProfileNotFound" | "Ec2SubnetMissingIpv6Assignment" | "IamLimitExceeded" | "IamNodeRoleNotFound" | "NodeCreationFailure" | "AsgInstanceLaunchFailures" | "InstanceLimitExceeded" | "InsufficientFreeAddresses" | "AccessDenied" | "InternalFailure" | "ClusterUnreachable" | "AmiIdNotFound" | "AutoScalingGroupOptInRequired" | "AutoScalingGroupRateLimitExceeded" | "Ec2LaunchTemplateDeletionFailure" | "Ec2LaunchTemplateInvalidConfiguration" | "Ec2LaunchTemplateMaxLimitExceeded" | "Ec2SubnetListTooLong" | "IamThrottling" | "NodeTerminationFailure" | "PodEvictionFailure" | "SourceEc2LaunchTemplateNotFound" | "LimitExceeded" | "Unknown" | "AutoScalingGroupInstanceRefreshActive" | "KubernetesLabelInvalid" | "Ec2LaunchTemplateVersionMaxLimitExceeded" | "Ec2InstanceTypeDoesNotExist")
|
882
888
|
attr_accessor message: ::String
|
@@ -1122,7 +1128,7 @@ module Aws::EKS
|
|
1122
1128
|
attr_accessor instance_types: ::Array[::String]
|
1123
1129
|
attr_accessor subnets: ::Array[::String]
|
1124
1130
|
attr_accessor remote_access: Types::RemoteAccessConfig
|
1125
|
-
attr_accessor ami_type: ("AL2_x86_64" | "AL2_x86_64_GPU" | "AL2_ARM_64" | "CUSTOM" | "BOTTLEROCKET_ARM_64" | "BOTTLEROCKET_x86_64" | "BOTTLEROCKET_ARM_64_NVIDIA" | "BOTTLEROCKET_x86_64_NVIDIA" | "WINDOWS_CORE_2019_x86_64" | "WINDOWS_FULL_2019_x86_64" | "WINDOWS_CORE_2022_x86_64" | "WINDOWS_FULL_2022_x86_64" | "AL2023_x86_64_STANDARD" | "AL2023_ARM_64_STANDARD" | "AL2023_x86_64_NEURON" | "AL2023_x86_64_NVIDIA")
|
1131
|
+
attr_accessor ami_type: ("AL2_x86_64" | "AL2_x86_64_GPU" | "AL2_ARM_64" | "CUSTOM" | "BOTTLEROCKET_ARM_64" | "BOTTLEROCKET_x86_64" | "BOTTLEROCKET_ARM_64_FIPS" | "BOTTLEROCKET_x86_64_FIPS" | "BOTTLEROCKET_ARM_64_NVIDIA" | "BOTTLEROCKET_x86_64_NVIDIA" | "WINDOWS_CORE_2019_x86_64" | "WINDOWS_FULL_2019_x86_64" | "WINDOWS_CORE_2022_x86_64" | "WINDOWS_FULL_2022_x86_64" | "AL2023_x86_64_STANDARD" | "AL2023_ARM_64_STANDARD" | "AL2023_x86_64_NEURON" | "AL2023_x86_64_NVIDIA")
|
1126
1132
|
attr_accessor node_role: ::String
|
1127
1133
|
attr_accessor labels: ::Hash[::String, ::String]
|
1128
1134
|
attr_accessor taints: ::Array[Types::Taint]
|
@@ -1354,6 +1360,12 @@ module Aws::EKS
|
|
1354
1360
|
SENSITIVE: []
|
1355
1361
|
end
|
1356
1362
|
|
1363
|
+
class ThrottlingException
|
1364
|
+
attr_accessor cluster_name: ::String
|
1365
|
+
attr_accessor message: ::String
|
1366
|
+
SENSITIVE: []
|
1367
|
+
end
|
1368
|
+
|
1357
1369
|
class UnsupportedAvailabilityZoneException
|
1358
1370
|
attr_accessor message: ::String
|
1359
1371
|
attr_accessor cluster_name: ::String
|
@@ -1374,7 +1386,7 @@ module Aws::EKS
|
|
1374
1386
|
class Update
|
1375
1387
|
attr_accessor id: ::String
|
1376
1388
|
attr_accessor status: ("InProgress" | "Failed" | "Cancelled" | "Successful")
|
1377
|
-
attr_accessor type: ("VersionUpdate" | "EndpointAccessUpdate" | "LoggingUpdate" | "ConfigUpdate" | "AssociateIdentityProviderConfig" | "DisassociateIdentityProviderConfig" | "AssociateEncryptionConfig" | "AddonUpdate" | "VpcConfigUpdate" | "AccessConfigUpdate" | "UpgradePolicyUpdate" | "ZonalShiftConfigUpdate" | "AutoModeUpdate")
|
1389
|
+
attr_accessor type: ("VersionUpdate" | "EndpointAccessUpdate" | "LoggingUpdate" | "ConfigUpdate" | "AssociateIdentityProviderConfig" | "DisassociateIdentityProviderConfig" | "AssociateEncryptionConfig" | "AddonUpdate" | "VpcConfigUpdate" | "AccessConfigUpdate" | "UpgradePolicyUpdate" | "ZonalShiftConfigUpdate" | "AutoModeUpdate" | "RemoteNetworkConfigUpdate")
|
1378
1390
|
attr_accessor params: ::Array[Types::UpdateParam]
|
1379
1391
|
attr_accessor created_at: ::Time
|
1380
1392
|
attr_accessor errors: ::Array[Types::ErrorDetail]
|
@@ -1428,6 +1440,7 @@ module Aws::EKS
|
|
1428
1440
|
attr_accessor compute_config: Types::ComputeConfigRequest
|
1429
1441
|
attr_accessor kubernetes_network_config: Types::KubernetesNetworkConfigRequest
|
1430
1442
|
attr_accessor storage_config: Types::StorageConfigRequest
|
1443
|
+
attr_accessor remote_network_config: Types::RemoteNetworkConfigRequest
|
1431
1444
|
SENSITIVE: []
|
1432
1445
|
end
|
1433
1446
|
|
@@ -1440,6 +1453,7 @@ module Aws::EKS
|
|
1440
1453
|
attr_accessor name: ::String
|
1441
1454
|
attr_accessor version: ::String
|
1442
1455
|
attr_accessor client_request_token: ::String
|
1456
|
+
attr_accessor force: bool
|
1443
1457
|
SENSITIVE: []
|
1444
1458
|
end
|
1445
1459
|
|
@@ -1500,7 +1514,7 @@ module Aws::EKS
|
|
1500
1514
|
end
|
1501
1515
|
|
1502
1516
|
class UpdateParam
|
1503
|
-
attr_accessor 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")
|
1517
|
+
attr_accessor 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")
|
1504
1518
|
attr_accessor value: ::String
|
1505
1519
|
SENSITIVE: []
|
1506
1520
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-eks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.134.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|