aws-sdk-eks 1.57.0 → 1.58.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 590cf65e20d33db477757288a8928515504f74cdbd666b84f5dad98b5ada517b
4
- data.tar.gz: 6c4ea0d5b3046153ef411aee141deed4e04193b226db18bb3a538febfb3e0b12
3
+ metadata.gz: 504c392eb711be133f1ee159b923875b37cb5a40ec84b4b3200d0d5f2b7851bb
4
+ data.tar.gz: 817f0de9c1969bfec50966a73e23e4d101c2b0840e24d5026257aa15e7689b77
5
5
  SHA512:
6
- metadata.gz: b365ee51db8be82f207a9beab298c151fdf1ff99145fd39b564cca68eb02de53d0da60a057edbe4f8052d177ad40c4c9df37dee9138c50c786a4ebf3a91b9c17
7
- data.tar.gz: 0f9aacbdb0cf72bd3c183e9924f1b83bc9920a486acbb39ec4b7b751d5df337bb02d6ef1f02597dd3e37c4dc4a6a9760529bd86483de44d67ed3efb17357f2e5
6
+ metadata.gz: f6785dddde0f39e3b9bc335e1c9d72d75d145daffa50deb15acdaf0694695bd1241f86c802e2a3524175c1e866f1a6b0d3c830e0a22dba15991e598cf72d9dc8
7
+ data.tar.gz: 56e33dec786b2d756b60bfeb9c75229ccae4d0eea152afc6965d58649c3327431a4c81fb4ab046e8860596f2258f4d2ce6ab2a850bc84803d427795f9bad158b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.58.0 (2021-07-12)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Wesley to support the parallel node upgrade feature.
8
+
4
9
  1.57.0 (2021-07-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.57.0
1
+ 1.58.0
data/lib/aws-sdk-eks.rb CHANGED
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-eks/customizations'
49
49
  # @!group service
50
50
  module Aws::EKS
51
51
 
52
- GEM_VERSION = '1.57.0'
52
+ GEM_VERSION = '1.58.0'
53
53
 
54
54
  end
@@ -332,7 +332,7 @@ module Aws::EKS
332
332
  # You can use this API to enable encryption on existing clusters which
333
333
  # do not have encryption already enabled. This allows you to implement a
334
334
  # defense-in-depth security strategy without migrating applications to
335
- # new EKS clusters.
335
+ # new Amazon EKS clusters.
336
336
  #
337
337
  # @option params [required, String] :cluster_name
338
338
  # The name of the cluster that you are associating with encryption
@@ -491,11 +491,11 @@ module Aws::EKS
491
491
  #
492
492
  # @option params [required, String] :addon_name
493
493
  # The name of the add-on. The name must match one of the names returned
494
- # by [ `ListAddons` ][1].
494
+ # by [ `DescribeAddonVersions` ][1].
495
495
  #
496
496
  #
497
497
  #
498
- # [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html
498
+ # [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html
499
499
  #
500
500
  # @option params [String] :addon_version
501
501
  # The version of the add-on. The version must match one of the versions
@@ -590,10 +590,10 @@ module Aws::EKS
590
590
  #
591
591
  # The Amazon EKS control plane consists of control plane instances that
592
592
  # run the Kubernetes software, such as `etcd` and the API server. The
593
- # control plane runs in an account managed by AWS, and the Kubernetes
594
- # API is exposed via the Amazon EKS API server endpoint. Each Amazon EKS
595
- # cluster control plane is single-tenant and unique and runs on its own
596
- # set of Amazon EC2 instances.
593
+ # control plane runs in an account managed by Amazon Web Services, and
594
+ # the Kubernetes API is exposed via the Amazon EKS API server endpoint.
595
+ # Each Amazon EKS cluster control plane is single-tenant and unique and
596
+ # runs on its own set of Amazon EC2 instances.
597
597
  #
598
598
  # The cluster control plane is provisioned across multiple Availability
599
599
  # Zones and fronted by an Elastic Load Balancing Network Load Balancer.
@@ -602,9 +602,9 @@ module Aws::EKS
602
602
  # the nodes (for example, to support `kubectl exec`, `logs`, and `proxy`
603
603
  # data flows).
604
604
  #
605
- # Amazon EKS nodes run in your AWS account and connect to your
606
- # cluster's control plane via the Kubernetes API server endpoint and a
607
- # certificate file that is created for your cluster.
605
+ # Amazon EKS nodes run in your Amazon Web Services account and connect
606
+ # to your cluster's control plane via the Kubernetes API server
607
+ # endpoint and a certificate file that is created for your cluster.
608
608
  #
609
609
  # Cluster creation typically takes several minutes. After you create an
610
610
  # Amazon EKS cluster, you must configure your Kubernetes tooling to
@@ -626,9 +626,10 @@ module Aws::EKS
626
626
  #
627
627
  # @option params [required, String] :role_arn
628
628
  # The Amazon Resource Name (ARN) of the IAM role that provides
629
- # permissions for the Kubernetes control plane to make calls to AWS API
630
- # operations on your behalf. For more information, see [Amazon EKS
631
- # Service IAM Role][1] in the <i> <i>Amazon EKS User Guide</i> </i>.
629
+ # permissions for the Kubernetes control plane to make calls to Amazon
630
+ # Web Services API operations on your behalf. For more information, see
631
+ # [Amazon EKS Service IAM Role][1] in the <i> <i>Amazon EKS User
632
+ # Guide</i> </i>.
632
633
  #
633
634
  #
634
635
  #
@@ -655,12 +656,12 @@ module Aws::EKS
655
656
  # Enable or disable exporting the Kubernetes control plane logs for your
656
657
  # cluster to CloudWatch Logs. By default, cluster control plane logs
657
658
  # aren't exported to CloudWatch Logs. For more information, see [Amazon
658
- # EKS Cluster Control Plane Logs][1] in the <i> <i>Amazon EKS User
659
+ # EKS Cluster control plane logs][1] in the <i> <i>Amazon EKS User
659
660
  # Guide</i> </i>.
660
661
  #
661
662
  # <note markdown="1"> CloudWatch Logs ingestion, archive storage, and data scanning rates
662
663
  # apply to exported control plane logs. For more information, see
663
- # [Amazon CloudWatch Pricing][2].
664
+ # [CloudWatch Pricing][2].
664
665
  #
665
666
  # </note>
666
667
  #
@@ -795,9 +796,9 @@ module Aws::EKS
795
796
  req.send_request(options)
796
797
  end
797
798
 
798
- # Creates an AWS Fargate profile for your Amazon EKS cluster. You must
799
- # have at least one Fargate profile in a cluster to be able to run pods
800
- # on Fargate.
799
+ # Creates an Fargate profile for your Amazon EKS cluster. You must have
800
+ # at least one Fargate profile in a cluster to be able to run pods on
801
+ # Fargate.
801
802
  #
802
803
  # The Fargate profile allows an administrator to declare which pods run
803
804
  # on Fargate and specify which pods run on which Fargate profile. This
@@ -827,8 +828,8 @@ module Aws::EKS
827
828
  # must wait for that Fargate profile to finish deleting before you can
828
829
  # create any other profiles in that cluster.
829
830
  #
830
- # For more information, see [AWS Fargate Profile][3] in the *Amazon EKS
831
- # User Guide*.
831
+ # For more information, see [Fargate Profile][3] in the *Amazon EKS User
832
+ # Guide*.
832
833
  #
833
834
  #
834
835
  #
@@ -940,10 +941,10 @@ module Aws::EKS
940
941
  # [Launch template support][1].
941
942
  #
942
943
  # An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group
943
- # and associated Amazon EC2 instances that are managed by AWS for an
944
- # Amazon EKS cluster. Each node group uses a version of the Amazon EKS
945
- # optimized Amazon Linux 2 AMI. For more information, see [Managed Node
946
- # Groups][2] in the *Amazon EKS User Guide*.
944
+ # and associated Amazon EC2 instances that are managed by Amazon Web
945
+ # Services for an Amazon EKS cluster. Each node group uses a version of
946
+ # the Amazon EKS optimized Amazon Linux 2 AMI. For more information, see
947
+ # [Managed Node Groups][2] in the *Amazon EKS User Guide*.
947
948
  #
948
949
  #
949
950
  #
@@ -1032,16 +1033,16 @@ module Aws::EKS
1032
1033
  # @option params [required, String] :node_role
1033
1034
  # The Amazon Resource Name (ARN) of the IAM role to associate with your
1034
1035
  # node group. The Amazon EKS worker node `kubelet` daemon makes calls to
1035
- # AWS APIs on your behalf. Nodes receive permissions for these API calls
1036
- # through an IAM instance profile and associated policies. Before you
1037
- # can launch nodes and register them into a cluster, you must create an
1038
- # IAM role for those nodes to use when they are launched. For more
1039
- # information, see [Amazon EKS node IAM role][1] in the <i> <i>Amazon
1040
- # EKS User Guide</i> </i>. If you specify `launchTemplate`, then don't
1041
- # specify [ `IamInstanceProfile` ][2] in your launch template, or the
1042
- # node group deployment will fail. For more information about using
1043
- # launch templates with Amazon EKS, see [Launch template support][3] in
1044
- # the Amazon EKS User Guide.
1036
+ # Amazon Web Services APIs on your behalf. Nodes receive permissions for
1037
+ # these API calls through an IAM instance profile and associated
1038
+ # policies. Before you can launch nodes and register them into a
1039
+ # cluster, you must create an IAM role for those nodes to use when they
1040
+ # are launched. For more information, see [Amazon EKS node IAM role][1]
1041
+ # in the <i> <i>Amazon EKS User Guide</i> </i>. If you specify
1042
+ # `launchTemplate`, then don't specify [ `IamInstanceProfile` ][2] in
1043
+ # your launch template, or the node group deployment will fail. For more
1044
+ # information about using launch templates with Amazon EKS, see [Launch
1045
+ # template support][3] in the Amazon EKS User Guide.
1045
1046
  #
1046
1047
  #
1047
1048
  #
@@ -1077,6 +1078,7 @@ module Aws::EKS
1077
1078
  # requirements in `launchTemplateSpecification`.
1078
1079
  #
1079
1080
  # @option params [Types::NodegroupUpdateConfig] :update_config
1081
+ # The node group update configuration.
1080
1082
  #
1081
1083
  # @option params [String] :capacity_type
1082
1084
  # The capacity type for your node group.
@@ -1358,7 +1360,7 @@ module Aws::EKS
1358
1360
  req.send_request(options)
1359
1361
  end
1360
1362
 
1361
- # Deletes an AWS Fargate profile.
1363
+ # Deletes an Fargate profile.
1362
1364
  #
1363
1365
  # When you delete a Fargate profile, any pods running on Fargate that
1364
1366
  # were created with the profile are deleted. If those pods match another
@@ -1730,7 +1732,7 @@ module Aws::EKS
1730
1732
  req.send_request(options)
1731
1733
  end
1732
1734
 
1733
- # Returns descriptive information about an AWS Fargate profile.
1735
+ # Returns descriptive information about an Fargate profile.
1734
1736
  #
1735
1737
  # @option params [required, String] :cluster_name
1736
1738
  # The name of the Amazon EKS cluster associated with the Fargate
@@ -1976,7 +1978,7 @@ module Aws::EKS
1976
1978
  # Disassociates an identity provider configuration from a cluster. If
1977
1979
  # you disassociate an identity provider from your cluster, users
1978
1980
  # included in the provider can no longer access the cluster. However,
1979
- # you can still access the cluster with AWS IAM users.
1981
+ # you can still access the cluster with Amazon Web Services IAM users.
1980
1982
  #
1981
1983
  # @option params [required, String] :cluster_name
1982
1984
  # The name of the cluster to disassociate an identity provider from.
@@ -2087,8 +2089,8 @@ module Aws::EKS
2087
2089
  req.send_request(options)
2088
2090
  end
2089
2091
 
2090
- # Lists the Amazon EKS clusters in your AWS account in the specified
2091
- # Region.
2092
+ # Lists the Amazon EKS clusters in your Amazon Web Services account in
2093
+ # the specified Region.
2092
2094
  #
2093
2095
  # @option params [Integer] :max_results
2094
2096
  # The maximum number of cluster results returned by `ListClusters` in
@@ -2157,11 +2159,11 @@ module Aws::EKS
2157
2159
  req.send_request(options)
2158
2160
  end
2159
2161
 
2160
- # Lists the AWS Fargate profiles associated with the specified cluster
2161
- # in your AWS account in the specified Region.
2162
+ # Lists the Fargate profiles associated with the specified cluster in
2163
+ # your Amazon Web Services account in the specified Region.
2162
2164
  #
2163
2165
  # @option params [required, String] :cluster_name
2164
- # The name of the Amazon EKS cluster that you would like to listFargate
2166
+ # The name of the Amazon EKS cluster that you would like to list Fargate
2165
2167
  # profiles in.
2166
2168
  #
2167
2169
  # @option params [Integer] :max_results
@@ -2268,8 +2270,8 @@ module Aws::EKS
2268
2270
  end
2269
2271
 
2270
2272
  # Lists the Amazon EKS managed node groups associated with the specified
2271
- # cluster in your AWS account in the specified Region. Self-managed node
2272
- # groups are not listed.
2273
+ # cluster in your Amazon Web Services account in the specified Region.
2274
+ # Self-managed node groups are not listed.
2273
2275
  #
2274
2276
  # @option params [required, String] :cluster_name
2275
2277
  # The name of the Amazon EKS cluster that you would like to list node
@@ -2369,7 +2371,8 @@ module Aws::EKS
2369
2371
  end
2370
2372
 
2371
2373
  # Lists the updates associated with an Amazon EKS cluster or managed
2372
- # node group in your AWS account, in the specified Region.
2374
+ # node group in your Amazon Web Services account, in the specified
2375
+ # Region.
2373
2376
  #
2374
2377
  # @option params [required, String] :name
2375
2378
  # The name of the Amazon EKS cluster to list updates for.
@@ -2597,14 +2600,14 @@ module Aws::EKS
2597
2600
  #
2598
2601
  # <note markdown="1"> CloudWatch Logs ingestion, archive storage, and data scanning rates
2599
2602
  # apply to exported control plane logs. For more information, see
2600
- # [Amazon CloudWatch Pricing][2].
2603
+ # [CloudWatch Pricing][2].
2601
2604
  #
2602
2605
  # </note>
2603
2606
  #
2604
2607
  # You can also use this API operation to enable or disable public and
2605
2608
  # private access to your cluster's Kubernetes API server endpoint. By
2606
2609
  # default, public access is enabled, and private access is disabled. For
2607
- # more information, see [Amazon EKS Cluster Endpoint Access Control][3]
2610
+ # more information, see [Amazon EKS cluster endpoint access control][3]
2608
2611
  # in the <i> <i>Amazon EKS User Guide</i> </i>.
2609
2612
  #
2610
2613
  # You can't update the subnets or security group IDs for an existing
@@ -2633,12 +2636,12 @@ module Aws::EKS
2633
2636
  # Enable or disable exporting the Kubernetes control plane logs for your
2634
2637
  # cluster to CloudWatch Logs. By default, cluster control plane logs
2635
2638
  # aren't exported to CloudWatch Logs. For more information, see [Amazon
2636
- # EKS Cluster Control Plane Logs][1] in the <i> <i>Amazon EKS User
2639
+ # EKS cluster control plane logs][1] in the <i> <i>Amazon EKS User
2637
2640
  # Guide</i> </i>.
2638
2641
  #
2639
2642
  # <note markdown="1"> CloudWatch Logs ingestion, archive storage, and data scanning rates
2640
2643
  # apply to exported control plane logs. For more information, see
2641
- # [Amazon CloudWatch Pricing][2].
2644
+ # [CloudWatch Pricing][2].
2642
2645
  #
2643
2646
  # </note>
2644
2647
  #
@@ -2795,6 +2798,7 @@ module Aws::EKS
2795
2798
  # update.
2796
2799
  #
2797
2800
  # @option params [Types::NodegroupUpdateConfig] :update_config
2801
+ # The node group update configuration.
2798
2802
  #
2799
2803
  # @option params [String] :client_request_token
2800
2804
  # Unique, case-sensitive identifier that you provide to ensure the
@@ -3014,7 +3018,7 @@ module Aws::EKS
3014
3018
  params: params,
3015
3019
  config: config)
3016
3020
  context[:gem_name] = 'aws-sdk-eks'
3017
- context[:gem_version] = '1.57.0'
3021
+ context[:gem_version] = '1.58.0'
3018
3022
  Seahorse::Client::Request.new(handlers, context)
3019
3023
  end
3020
3024
 
@@ -393,8 +393,8 @@ module Aws::EKS
393
393
  #
394
394
  # @!attribute [rw] role_arn
395
395
  # The Amazon Resource Name (ARN) of the IAM role that provides
396
- # permissions for the Kubernetes control plane to make calls to AWS
397
- # API operations on your behalf.
396
+ # permissions for the Kubernetes control plane to make calls to Amazon
397
+ # Web Services API operations on your behalf.
398
398
  # @return [String]
399
399
  #
400
400
  # @!attribute [rw] resources_vpc_config
@@ -524,11 +524,11 @@ module Aws::EKS
524
524
  #
525
525
  # @!attribute [rw] addon_name
526
526
  # The name of the add-on. The name must match one of the names
527
- # returned by [ `ListAddons` ][1].
527
+ # returned by [ `DescribeAddonVersions` ][1].
528
528
  #
529
529
  #
530
530
  #
531
- # [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html
531
+ # [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html
532
532
  # @return [String]
533
533
  #
534
534
  # @!attribute [rw] addon_version
@@ -657,9 +657,10 @@ module Aws::EKS
657
657
  #
658
658
  # @!attribute [rw] role_arn
659
659
  # The Amazon Resource Name (ARN) of the IAM role that provides
660
- # permissions for the Kubernetes control plane to make calls to AWS
661
- # API operations on your behalf. For more information, see [Amazon EKS
662
- # Service IAM Role][1] in the <i> <i>Amazon EKS User Guide</i> </i>.
660
+ # permissions for the Kubernetes control plane to make calls to Amazon
661
+ # Web Services API operations on your behalf. For more information,
662
+ # see [Amazon EKS Service IAM Role][1] in the <i> <i>Amazon EKS User
663
+ # Guide</i> </i>.
663
664
  #
664
665
  #
665
666
  #
@@ -689,12 +690,12 @@ module Aws::EKS
689
690
  # Enable or disable exporting the Kubernetes control plane logs for
690
691
  # your cluster to CloudWatch Logs. By default, cluster control plane
691
692
  # logs aren't exported to CloudWatch Logs. For more information, see
692
- # [Amazon EKS Cluster Control Plane Logs][1] in the <i> <i>Amazon EKS
693
+ # [Amazon EKS Cluster control plane logs][1] in the <i> <i>Amazon EKS
693
694
  # User Guide</i> </i>.
694
695
  #
695
696
  # <note markdown="1"> CloudWatch Logs ingestion, archive storage, and data scanning rates
696
697
  # apply to exported control plane logs. For more information, see
697
- # [Amazon CloudWatch Pricing][2].
698
+ # [CloudWatch Pricing][2].
698
699
  #
699
700
  # </note>
700
701
  #
@@ -988,12 +989,12 @@ module Aws::EKS
988
989
  # @!attribute [rw] node_role
989
990
  # The Amazon Resource Name (ARN) of the IAM role to associate with
990
991
  # your node group. The Amazon EKS worker node `kubelet` daemon makes
991
- # calls to AWS APIs on your behalf. Nodes receive permissions for
992
- # these API calls through an IAM instance profile and associated
993
- # policies. Before you can launch nodes and register them into a
994
- # cluster, you must create an IAM role for those nodes to use when
995
- # they are launched. For more information, see [Amazon EKS node IAM
996
- # role][1] in the <i> <i>Amazon EKS User Guide</i> </i>. If you
992
+ # calls to Amazon Web Services APIs on your behalf. Nodes receive
993
+ # permissions for these API calls through an IAM instance profile and
994
+ # associated policies. Before you can launch nodes and register them
995
+ # into a cluster, you must create an IAM role for those nodes to use
996
+ # when they are launched. For more information, see [Amazon EKS node
997
+ # IAM role][1] in the <i> <i>Amazon EKS User Guide</i> </i>. If you
997
998
  # specify `launchTemplate`, then don't specify [ `IamInstanceProfile`
998
999
  # ][2] in your launch template, or the node group deployment will
999
1000
  # fail. For more information about using launch templates with Amazon
@@ -1039,6 +1040,7 @@ module Aws::EKS
1039
1040
  # @return [Types::LaunchTemplateSpecification]
1040
1041
  #
1041
1042
  # @!attribute [rw] update_config
1043
+ # The node group update configuration.
1042
1044
  # @return [Types::NodegroupUpdateConfig]
1043
1045
  #
1044
1046
  # @!attribute [rw] capacity_type
@@ -1654,8 +1656,8 @@ module Aws::EKS
1654
1656
  # @return [Array<String>]
1655
1657
  #
1656
1658
  # @!attribute [rw] provider
1657
- # AWS Key Management Service (AWS KMS) key. Either the ARN or the
1658
- # alias can be used.
1659
+ # Key Management Service (KMS) key. Either the ARN or the alias can be
1660
+ # used.
1659
1661
  # @return [Types::Provider]
1660
1662
  #
1661
1663
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/EncryptionConfig AWS API Documentation
@@ -1714,7 +1716,7 @@ module Aws::EKS
1714
1716
  include Aws::Structure
1715
1717
  end
1716
1718
 
1717
- # An object representing an AWS Fargate profile.
1719
+ # An object representing an Fargate profile.
1718
1720
  #
1719
1721
  # @!attribute [rw] fargate_profile_name
1720
1722
  # The name of the Fargate profile.
@@ -1781,7 +1783,7 @@ module Aws::EKS
1781
1783
  include Aws::Structure
1782
1784
  end
1783
1785
 
1784
- # An object representing an AWS Fargate profile selector.
1786
+ # An object representing an Fargate profile selector.
1785
1787
  #
1786
1788
  # @note When making an API call, you may pass FargateProfileSelector
1787
1789
  # data as a hash:
@@ -1987,9 +1989,10 @@ module Aws::EKS
1987
1989
  # managed node group. You may be able to recreate an IAM role with
1988
1990
  # the same settings to recover.
1989
1991
  #
1990
- # * **InstanceLimitExceeded**\: Your AWS account is unable to launch
1991
- # any more instances of the specified instance type. You may be able
1992
- # to request an Amazon EC2 instance limit increase to recover.
1992
+ # * **InstanceLimitExceeded**\: Your Amazon Web Services account is
1993
+ # unable to launch any more instances of the specified instance
1994
+ # type. You may be able to request an Amazon EC2 instance limit
1995
+ # increase to recover.
1993
1996
  #
1994
1997
  # * **InsufficientFreeAddresses**\: One or more of the subnets
1995
1998
  # associated with your managed node group does not have enough
@@ -2014,7 +2017,7 @@ module Aws::EKS
2014
2017
  # @return [String]
2015
2018
  #
2016
2019
  # @!attribute [rw] resource_ids
2017
- # The AWS resources that are afflicted by this issue.
2020
+ # The Amazon Web Services resources that are afflicted by this issue.
2018
2021
  # @return [Array<String>]
2019
2022
  #
2020
2023
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/Issue AWS API Documentation
@@ -2283,8 +2286,8 @@ module Aws::EKS
2283
2286
  # }
2284
2287
  #
2285
2288
  # @!attribute [rw] cluster_name
2286
- # The name of the Amazon EKS cluster that you would like to
2287
- # listFargate profiles in.
2289
+ # The name of the Amazon EKS cluster that you would like to list
2290
+ # Fargate profiles in.
2288
2291
  # @return [String]
2289
2292
  #
2290
2293
  # @!attribute [rw] max_results
@@ -2710,9 +2713,9 @@ module Aws::EKS
2710
2713
  #
2711
2714
  # @!attribute [rw] node_role
2712
2715
  # The IAM role associated with your node group. The Amazon EKS node
2713
- # `kubelet` daemon makes calls to AWS APIs on your behalf. Nodes
2714
- # receive permissions for these API calls through an IAM instance
2715
- # profile and associated policies.
2716
+ # `kubelet` daemon makes calls to Amazon Web Services APIs on your
2717
+ # behalf. Nodes receive permissions for these API calls through an IAM
2718
+ # instance profile and associated policies.
2716
2719
  # @return [String]
2717
2720
  #
2718
2721
  # @!attribute [rw] labels
@@ -2727,8 +2730,8 @@ module Aws::EKS
2727
2730
  #
2728
2731
  # @!attribute [rw] taints
2729
2732
  # The Kubernetes taints to be applied to the nodes in the node group
2730
- # when they are created. Effect is one of `NoSchedule`,
2731
- # `PreferNoSchedule`, or `NoExecute`. Kubernetes taints can be used
2733
+ # when they are created. Effect is one of `No_Schedule`,
2734
+ # `Prefer_No_Schedule`, or `No_Execute`. Kubernetes taints can be used
2732
2735
  # together with tolerations to control how workloads are scheduled to
2733
2736
  # your nodes.
2734
2737
  # @return [Array<Types::Taint>]
@@ -2750,6 +2753,7 @@ module Aws::EKS
2750
2753
  # @return [Types::NodegroupHealth]
2751
2754
  #
2752
2755
  # @!attribute [rw] update_config
2756
+ # The node group update configuration.
2753
2757
  # @return [Types::NodegroupUpdateConfig]
2754
2758
  #
2755
2759
  # @!attribute [rw] launch_template
@@ -2846,7 +2850,7 @@ module Aws::EKS
2846
2850
  #
2847
2851
  # @!attribute [rw] min_size
2848
2852
  # The minimum number of nodes that the managed node group can scale in
2849
- # to. This number must be greater than zero.
2853
+ # to.
2850
2854
  # @return [Integer]
2851
2855
  #
2852
2856
  # @!attribute [rw] max_size
@@ -2875,6 +2879,8 @@ module Aws::EKS
2875
2879
  include Aws::Structure
2876
2880
  end
2877
2881
 
2882
+ # The node group update configuration.
2883
+ #
2878
2884
  # @note When making an API call, you may pass NodegroupUpdateConfig
2879
2885
  # data as a hash:
2880
2886
  #
@@ -2884,9 +2890,17 @@ module Aws::EKS
2884
2890
  # }
2885
2891
  #
2886
2892
  # @!attribute [rw] max_unavailable
2893
+ # The maximum number of nodes unavailable at once during a version
2894
+ # update. Nodes will be updated in parallel. This value or
2895
+ # `maxUnavailablePercentage` is required to have a value.The maximum
2896
+ # number is 100.
2887
2897
  # @return [Integer]
2888
2898
  #
2889
2899
  # @!attribute [rw] max_unavailable_percentage
2900
+ # The maximum percentage of nodes unavailable during a version update.
2901
+ # This percentage of nodes will be updated in parallel, up to 100
2902
+ # nodes at once. This value or `maxUnavailable` is required to have a
2903
+ # value.
2890
2904
  # @return [Integer]
2891
2905
  #
2892
2906
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/NodegroupUpdateConfig AWS API Documentation
@@ -3112,8 +3126,8 @@ module Aws::EKS
3112
3126
  include Aws::Structure
3113
3127
  end
3114
3128
 
3115
- # Identifies the AWS Key Management Service (AWS KMS) key used to
3116
- # encrypt the secrets.
3129
+ # Identifies the Key Management Service (KMS) key used to encrypt the
3130
+ # secrets.
3117
3131
  #
3118
3132
  # @note When making an API call, you may pass Provider
3119
3133
  # data as a hash:
@@ -3127,8 +3141,8 @@ module Aws::EKS
3127
3141
  # be symmetric, created in the same region as the cluster, and if the
3128
3142
  # KMS key was created in a different account, the user must have
3129
3143
  # access to the KMS key. For more information, see [Allowing Users in
3130
- # Other Accounts to Use a KMS key][1] in the *AWS Key Management
3131
- # Service Developer Guide*.
3144
+ # Other Accounts to Use a KMS key][1] in the *Key Management Service
3145
+ # Developer Guide*.
3132
3146
  #
3133
3147
  #
3134
3148
  #
@@ -3157,8 +3171,8 @@ module Aws::EKS
3157
3171
  # @!attribute [rw] ec2_ssh_key
3158
3172
  # The Amazon EC2 SSH key that provides access for SSH communication
3159
3173
  # with the nodes in the managed node group. For more information, see
3160
- # [Amazon EC2 Key Pairs][1] in the *Amazon Elastic Compute Cloud User
3161
- # Guide for Linux Instances*.
3174
+ # [Amazon EC2 key pairs and Linux instances][1] in the *Amazon Elastic
3175
+ # Compute Cloud User Guide for Linux Instances*.
3162
3176
  #
3163
3177
  #
3164
3178
  #
@@ -3611,12 +3625,12 @@ module Aws::EKS
3611
3625
  # Enable or disable exporting the Kubernetes control plane logs for
3612
3626
  # your cluster to CloudWatch Logs. By default, cluster control plane
3613
3627
  # logs aren't exported to CloudWatch Logs. For more information, see
3614
- # [Amazon EKS Cluster Control Plane Logs][1] in the <i> <i>Amazon EKS
3628
+ # [Amazon EKS cluster control plane logs][1] in the <i> <i>Amazon EKS
3615
3629
  # User Guide</i> </i>.
3616
3630
  #
3617
3631
  # <note markdown="1"> CloudWatch Logs ingestion, archive storage, and data scanning rates
3618
3632
  # apply to exported control plane logs. For more information, see
3619
- # [Amazon CloudWatch Pricing][2].
3633
+ # [CloudWatch Pricing][2].
3620
3634
  #
3621
3635
  # </note>
3622
3636
  #
@@ -3799,6 +3813,7 @@ module Aws::EKS
3799
3813
  # @return [Types::NodegroupScalingConfig]
3800
3814
  #
3801
3815
  # @!attribute [rw] update_config
3816
+ # The node group update configuration.
3802
3817
  # @return [Types::NodegroupUpdateConfig]
3803
3818
  #
3804
3819
  # @!attribute [rw] client_request_token
@@ -4023,7 +4038,7 @@ module Aws::EKS
4023
4038
  #
4024
4039
  # @!attribute [rw] security_group_ids
4025
4040
  # Specify one or more security groups for the cross-account elastic
4026
- # network interfaces that Amazon EKS creates to use to allow
4041
+ # network interfaces that Amazon EKS creates to use that allow
4027
4042
  # communication between your nodes and the Kubernetes control plane.
4028
4043
  # If you don't specify any security groups, then familiarize yourself
4029
4044
  # with the difference between Amazon EKS defaults for clusters
@@ -4047,8 +4062,8 @@ module Aws::EKS
4047
4062
  # access, your cluster's Kubernetes API server can only receive
4048
4063
  # requests from within the cluster VPC. The default value for this
4049
4064
  # parameter is `true`, which enables public access for your Kubernetes
4050
- # API server. For more information, see [Amazon EKS Cluster Endpoint
4051
- # Access Control][1] in the <i> <i>Amazon EKS User Guide</i> </i>.
4065
+ # API server. For more information, see [Amazon EKS cluster endpoint
4066
+ # access control][1] in the <i> <i>Amazon EKS User Guide</i> </i>.
4052
4067
  #
4053
4068
  #
4054
4069
  #
@@ -4061,12 +4076,11 @@ module Aws::EKS
4061
4076
  # access, Kubernetes API requests from within your cluster's VPC use
4062
4077
  # the private VPC endpoint. The default value for this parameter is
4063
4078
  # `false`, which disables private access for your Kubernetes API
4064
- # server. If you disable private access and you have nodes or AWS
4065
- # Fargate pods in the cluster, then ensure that `publicAccessCidrs`
4066
- # includes the necessary CIDR blocks for communication with the nodes
4067
- # or Fargate pods. For more information, see [Amazon EKS Cluster
4068
- # Endpoint Access Control][1] in the <i> <i>Amazon EKS User Guide</i>
4069
- # </i>.
4079
+ # server. If you disable private access and you have nodes or Fargate
4080
+ # pods in the cluster, then ensure that `publicAccessCidrs` includes
4081
+ # the necessary CIDR blocks for communication with the nodes or
4082
+ # Fargate pods. For more information, see [Amazon EKS cluster endpoint
4083
+ # access control][1] in the <i> <i>Amazon EKS User Guide</i> </i>.
4070
4084
  #
4071
4085
  #
4072
4086
  #
@@ -4078,9 +4092,9 @@ module Aws::EKS
4078
4092
  # Kubernetes API server endpoint. Communication to the endpoint from
4079
4093
  # addresses outside of the CIDR blocks that you specify is denied. The
4080
4094
  # default value is `0.0.0.0/0`. If you've disabled private endpoint
4081
- # access and you have nodes or AWS Fargate pods in the cluster, then
4095
+ # access and you have nodes or Fargate pods in the cluster, then
4082
4096
  # ensure that you specify the necessary CIDR blocks. For more
4083
- # information, see [Amazon EKS Cluster Endpoint Access Control][1] in
4097
+ # information, see [Amazon EKS cluster endpoint access control][1] in
4084
4098
  # the <i> <i>Amazon EKS User Guide</i> </i>.
4085
4099
  #
4086
4100
  #
@@ -4135,11 +4149,11 @@ module Aws::EKS
4135
4149
  # endpoint is enabled. If the Amazon EKS private API server endpoint
4136
4150
  # is enabled, Kubernetes API requests that originate from within your
4137
4151
  # cluster's VPC use the private VPC endpoint instead of traversing
4138
- # the internet. If this value is disabled and you have nodes or AWS
4152
+ # the internet. If this value is disabled and you have nodes or
4139
4153
  # Fargate pods in the cluster, then ensure that `publicAccessCidrs`
4140
4154
  # includes the necessary CIDR blocks for communication with the nodes
4141
- # or Fargate pods. For more information, see [Amazon EKS Cluster
4142
- # Endpoint Access Control][1] in the <i> <i>Amazon EKS User Guide</i>
4155
+ # or Fargate pods. For more information, see [Amazon EKS cluster
4156
+ # endpoint access control][1] in the <i> <i>Amazon EKS User Guide</i>
4143
4157
  # </i>.
4144
4158
  #
4145
4159
  #
@@ -4152,9 +4166,9 @@ module Aws::EKS
4152
4166
  # Kubernetes API server endpoint. Communication to the endpoint from
4153
4167
  # addresses outside of the listed CIDR blocks is denied. The default
4154
4168
  # value is `0.0.0.0/0`. If you've disabled private endpoint access
4155
- # and you have nodes or AWS Fargate pods in the cluster, then ensure
4156
- # that the necessary CIDR blocks are listed. For more information, see
4157
- # [Amazon EKS Cluster Endpoint Access Control][1] in the <i> <i>Amazon
4169
+ # and you have nodes or Fargate pods in the cluster, then ensure that
4170
+ # the necessary CIDR blocks are listed. For more information, see
4171
+ # [Amazon EKS cluster endpoint access control][1] in the <i> <i>Amazon
4158
4172
  # EKS User Guide</i> </i>.
4159
4173
  #
4160
4174
  #
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.57.0
4
+ version: 1.58.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: 2021-07-08 00:00:00.000000000 Z
11
+ date: 2021-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core