aws-sdk-eks 1.74.0 → 1.75.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ada262f7be31e95f3ff55f7e2528ea82ea2135965e24b35fbf4c338e2f9f2437
4
- data.tar.gz: 861ac8ed35adf2db7fc4a539f1a87e7e2fd0b5a9bd4229946726af19328ceedc
3
+ metadata.gz: 4e07af64ee9bacf24bd55aa234cf4d6e232a920b4824b311cf1dd007de377656
4
+ data.tar.gz: a289cca70afc8cf68c02545c5c9853a851ec5294d9779a3955749676075e02da
5
5
  SHA512:
6
- metadata.gz: 715bfb8a6c1e147fe7b22644080bc1be4a8e224538d41c286505f6ad018d976f8311910db147aa8a355961b1d6be710612b83fb4d0d42aa97529359fe4285da6
7
- data.tar.gz: 49834729b21fccd3a9bfde8d9cc1e0aa0eac2dd576e200bd0c255340e9e5cb2dabc51cf3cb0dc7d36b5a7df0f7ad0feb66d2775321cdd26eb5d827b6ac423927
6
+ metadata.gz: 7baffd3e8e59a83d1079357375bdf712dccf078998c7c30be4289b2b8bcd7158dc45abb54a912754e3b26827d62c53f1c4a3be01eccd45eccfa13f692f08efdb
7
+ data.tar.gz: 310a5a81e646d9c5d980d47830afa902587543a286550c51fed67f2cd0660a068c98f68cc62437d9d94a8bab26b8b971ef8e834b23915588993c7abdbd0be986
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.75.0 (2022-05-10)
5
+ ------------------
6
+
7
+ * Feature - Adds BOTTLEROCKET_ARM_64_NVIDIA and BOTTLEROCKET_x86_64_NVIDIA AMI types to EKS managed nodegroups
8
+
4
9
  1.74.0 (2022-03-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.74.0
1
+ 1.75.0
@@ -1004,7 +1004,7 @@ module Aws::EKS
1004
1004
  # default disk size is 20 GiB. If you specify `launchTemplate`, then
1005
1005
  # don't specify `diskSize`, or the node group deployment will fail. For
1006
1006
  # more information about using launch templates with Amazon EKS, see
1007
- # [Launch template support][1] in the Amazon EKS User Guide.
1007
+ # [Launch template support][1] in the *Amazon EKS User Guide*.
1008
1008
  #
1009
1009
  #
1010
1010
  #
@@ -1015,8 +1015,8 @@ module Aws::EKS
1015
1015
  # node group. If you specify `launchTemplate`, then don't specify [
1016
1016
  # `SubnetId` ][1] in your launch template, or the node group deployment
1017
1017
  # will fail. For more information about using launch templates with
1018
- # Amazon EKS, see [Launch template support][2] in the Amazon EKS User
1019
- # Guide.
1018
+ # Amazon EKS, see [Launch template support][2] in the *Amazon EKS User
1019
+ # Guide*.
1020
1020
  #
1021
1021
  #
1022
1022
  #
@@ -1051,7 +1051,7 @@ module Aws::EKS
1051
1051
  # you specify `launchTemplate`, and your launch template uses a custom
1052
1052
  # AMI, then don't specify `amiType`, or the node group deployment will
1053
1053
  # fail. For more information about using launch templates with Amazon
1054
- # EKS, see [Launch template support][1] in the Amazon EKS User Guide.
1054
+ # EKS, see [Launch template support][1] in the *Amazon EKS User Guide*.
1055
1055
  #
1056
1056
  #
1057
1057
  #
@@ -1062,7 +1062,7 @@ module Aws::EKS
1062
1062
  # you specify `launchTemplate`, then don't specify `remoteAccess`, or
1063
1063
  # the node group deployment will fail. For more information about using
1064
1064
  # launch templates with Amazon EKS, see [Launch template support][1] in
1065
- # the Amazon EKS User Guide.
1065
+ # the *Amazon EKS User Guide*.
1066
1066
  #
1067
1067
  #
1068
1068
  #
@@ -1080,11 +1080,11 @@ module Aws::EKS
1080
1080
  # `launchTemplate`, then don't specify [ `IamInstanceProfile` ][2] in
1081
1081
  # your launch template, or the node group deployment will fail. For more
1082
1082
  # information about using launch templates with Amazon EKS, see [Launch
1083
- # template support][3] in the Amazon EKS User Guide.
1083
+ # template support][3] in the *Amazon EKS User Guide*.
1084
1084
  #
1085
1085
  #
1086
1086
  #
1087
- # [1]: https://docs.aws.amazon.com/eks/latest/userguide/worker_node_IAM_role.html
1087
+ # [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html
1088
1088
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html
1089
1089
  # [3]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
1090
1090
  #
@@ -1094,6 +1094,11 @@ module Aws::EKS
1094
1094
  #
1095
1095
  # @option params [Array<Types::Taint>] :taints
1096
1096
  # The Kubernetes taints to be applied to the nodes in the node group.
1097
+ # For more information, see [Node taints on managed node groups][1].
1098
+ #
1099
+ #
1100
+ #
1101
+ # [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
1097
1102
  #
1098
1103
  # @option params [Hash<String,String>] :tags
1099
1104
  # The metadata to apply to the node group to assist with categorization
@@ -1128,7 +1133,7 @@ module Aws::EKS
1128
1133
  # launch template uses a custom AMI, then don't specify `version`, or
1129
1134
  # the node group deployment will fail. For more information about using
1130
1135
  # launch templates with Amazon EKS, see [Launch template support][1] in
1131
- # the Amazon EKS User Guide.
1136
+ # the *Amazon EKS User Guide*.
1132
1137
  #
1133
1138
  #
1134
1139
  #
@@ -1143,7 +1148,7 @@ module Aws::EKS
1143
1148
  # template uses a custom AMI, then don't specify `releaseVersion`, or
1144
1149
  # the node group deployment will fail. For more information about using
1145
1150
  # launch templates with Amazon EKS, see [Launch template support][2] in
1146
- # the Amazon EKS User Guide.
1151
+ # the *Amazon EKS User Guide*.
1147
1152
  #
1148
1153
  #
1149
1154
  #
@@ -1167,7 +1172,7 @@ module Aws::EKS
1167
1172
  # disk_size: 1,
1168
1173
  # subnets: ["String"], # required
1169
1174
  # instance_types: ["String"],
1170
- # ami_type: "AL2_x86_64", # accepts AL2_x86_64, AL2_x86_64_GPU, AL2_ARM_64, CUSTOM, BOTTLEROCKET_ARM_64, BOTTLEROCKET_x86_64
1175
+ # 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
1171
1176
  # remote_access: {
1172
1177
  # ec2_ssh_key: "String",
1173
1178
  # source_security_groups: ["String"],
@@ -1222,7 +1227,7 @@ module Aws::EKS
1222
1227
  # resp.nodegroup.remote_access.ec2_ssh_key #=> String
1223
1228
  # resp.nodegroup.remote_access.source_security_groups #=> Array
1224
1229
  # resp.nodegroup.remote_access.source_security_groups[0] #=> String
1225
- # resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64"
1230
+ # 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"
1226
1231
  # resp.nodegroup.node_role #=> String
1227
1232
  # resp.nodegroup.labels #=> Hash
1228
1233
  # resp.nodegroup.labels["labelKey"] #=> String
@@ -1508,7 +1513,7 @@ module Aws::EKS
1508
1513
  # resp.nodegroup.remote_access.ec2_ssh_key #=> String
1509
1514
  # resp.nodegroup.remote_access.source_security_groups #=> Array
1510
1515
  # resp.nodegroup.remote_access.source_security_groups[0] #=> String
1511
- # resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64"
1516
+ # 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"
1512
1517
  # resp.nodegroup.node_role #=> String
1513
1518
  # resp.nodegroup.labels #=> Hash
1514
1519
  # resp.nodegroup.labels["labelKey"] #=> String
@@ -1999,7 +2004,7 @@ module Aws::EKS
1999
2004
  # resp.nodegroup.remote_access.ec2_ssh_key #=> String
2000
2005
  # resp.nodegroup.remote_access.source_security_groups #=> Array
2001
2006
  # resp.nodegroup.remote_access.source_security_groups[0] #=> String
2002
- # resp.nodegroup.ami_type #=> String, one of "AL2_x86_64", "AL2_x86_64_GPU", "AL2_ARM_64", "CUSTOM", "BOTTLEROCKET_ARM_64", "BOTTLEROCKET_x86_64"
2007
+ # 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"
2003
2008
  # resp.nodegroup.node_role #=> String
2004
2009
  # resp.nodegroup.labels #=> Hash
2005
2010
  # resp.nodegroup.labels["labelKey"] #=> String
@@ -2040,7 +2045,7 @@ module Aws::EKS
2040
2045
  end
2041
2046
 
2042
2047
  # Returns descriptive information about an update against your Amazon
2043
- # EKS cluster or associated managed node group.
2048
+ # EKS cluster or associated managed node group or Amazon EKS add-on.
2044
2049
  #
2045
2050
  # When the status of the update is `Succeeded`, the update is complete.
2046
2051
  # If an update fails, the status is `Failed`, and an error detail
@@ -2053,11 +2058,13 @@ module Aws::EKS
2053
2058
  # The ID of the update to describe.
2054
2059
  #
2055
2060
  # @option params [String] :nodegroup_name
2056
- # The name of the Amazon EKS node group associated with the update.
2061
+ # The name of the Amazon EKS node group associated with the update. This
2062
+ # parameter is required if the update is a node group update.
2057
2063
  #
2058
2064
  # @option params [String] :addon_name
2059
2065
  # The name of the add-on. The name must match one of the names returned
2060
- # by [ `ListAddons` ][1].
2066
+ # by [ `ListAddons` ][1]. This parameter is required if the update is an
2067
+ # add-on update.
2061
2068
  #
2062
2069
  #
2063
2070
  #
@@ -3033,7 +3040,12 @@ module Aws::EKS
3033
3040
  #
3034
3041
  # @option params [Types::UpdateTaintsPayload] :taints
3035
3042
  # The Kubernetes taints to be applied to the nodes in the node group
3036
- # after the update.
3043
+ # after the update. For more information, see [Node taints on managed
3044
+ # node groups][1].
3045
+ #
3046
+ #
3047
+ #
3048
+ # [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
3037
3049
  #
3038
3050
  # @option params [Types::NodegroupScalingConfig] :scaling_config
3039
3051
  # The scaling configuration details for the Auto Scaling group after the
@@ -3162,7 +3174,7 @@ module Aws::EKS
3162
3174
  # specify `launchTemplate`, and your launch template uses a custom AMI,
3163
3175
  # then don't specify `version`, or the node group update will fail. For
3164
3176
  # more information about using launch templates with Amazon EKS, see
3165
- # [Launch template support][1] in the Amazon EKS User Guide.
3177
+ # [Launch template support][1] in the *Amazon EKS User Guide*.
3166
3178
  #
3167
3179
  #
3168
3180
  #
@@ -3176,8 +3188,8 @@ module Aws::EKS
3176
3188
  # Guide*. If you specify `launchTemplate`, and your launch template uses
3177
3189
  # a custom AMI, then don't specify `releaseVersion`, or the node group
3178
3190
  # update will fail. For more information about using launch templates
3179
- # with Amazon EKS, see [Launch template support][2] in the Amazon EKS
3180
- # User Guide.
3191
+ # with Amazon EKS, see [Launch template support][2] in the *Amazon EKS
3192
+ # User Guide*.
3181
3193
  #
3182
3194
  #
3183
3195
  #
@@ -3260,7 +3272,7 @@ module Aws::EKS
3260
3272
  params: params,
3261
3273
  config: config)
3262
3274
  context[:gem_name] = 'aws-sdk-eks'
3263
- context[:gem_version] = '1.74.0'
3275
+ context[:gem_version] = '1.75.0'
3264
3276
  Seahorse::Client::Request.new(handlers, context)
3265
3277
  end
3266
3278
 
@@ -965,7 +965,7 @@ module Aws::EKS
965
965
  # disk_size: 1,
966
966
  # subnets: ["String"], # required
967
967
  # instance_types: ["String"],
968
- # ami_type: "AL2_x86_64", # accepts AL2_x86_64, AL2_x86_64_GPU, AL2_ARM_64, CUSTOM, BOTTLEROCKET_ARM_64, BOTTLEROCKET_x86_64
968
+ # 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
969
969
  # remote_access: {
970
970
  # ec2_ssh_key: "String",
971
971
  # source_security_groups: ["String"],
@@ -1017,7 +1017,8 @@ module Aws::EKS
1017
1017
  # The default disk size is 20 GiB. If you specify `launchTemplate`,
1018
1018
  # then don't specify `diskSize`, or the node group deployment will
1019
1019
  # fail. For more information about using launch templates with Amazon
1020
- # EKS, see [Launch template support][1] in the Amazon EKS User Guide.
1020
+ # EKS, see [Launch template support][1] in the *Amazon EKS User
1021
+ # Guide*.
1021
1022
  #
1022
1023
  #
1023
1024
  #
@@ -1030,7 +1031,7 @@ module Aws::EKS
1030
1031
  # specify [ `SubnetId` ][1] in your launch template, or the node group
1031
1032
  # deployment will fail. For more information about using launch
1032
1033
  # templates with Amazon EKS, see [Launch template support][2] in the
1033
- # Amazon EKS User Guide.
1034
+ # *Amazon EKS User Guide*.
1034
1035
  #
1035
1036
  #
1036
1037
  #
@@ -1067,8 +1068,8 @@ module Aws::EKS
1067
1068
  # you specify `launchTemplate`, and your launch template uses a custom
1068
1069
  # AMI, then don't specify `amiType`, or the node group deployment
1069
1070
  # will fail. For more information about using launch templates with
1070
- # Amazon EKS, see [Launch template support][1] in the Amazon EKS User
1071
- # Guide.
1071
+ # Amazon EKS, see [Launch template support][1] in the *Amazon EKS User
1072
+ # Guide*.
1072
1073
  #
1073
1074
  #
1074
1075
  #
@@ -1080,7 +1081,7 @@ module Aws::EKS
1080
1081
  # If you specify `launchTemplate`, then don't specify `remoteAccess`,
1081
1082
  # or the node group deployment will fail. For more information about
1082
1083
  # using launch templates with Amazon EKS, see [Launch template
1083
- # support][1] in the Amazon EKS User Guide.
1084
+ # support][1] in the *Amazon EKS User Guide*.
1084
1085
  #
1085
1086
  #
1086
1087
  #
@@ -1099,11 +1100,12 @@ module Aws::EKS
1099
1100
  # specify `launchTemplate`, then don't specify [ `IamInstanceProfile`
1100
1101
  # ][2] in your launch template, or the node group deployment will
1101
1102
  # fail. For more information about using launch templates with Amazon
1102
- # EKS, see [Launch template support][3] in the Amazon EKS User Guide.
1103
+ # EKS, see [Launch template support][3] in the *Amazon EKS User
1104
+ # Guide*.
1103
1105
  #
1104
1106
  #
1105
1107
  #
1106
- # [1]: https://docs.aws.amazon.com/eks/latest/userguide/worker_node_IAM_role.html
1108
+ # [1]: https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html
1107
1109
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html
1108
1110
  # [3]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
1109
1111
  # @return [String]
@@ -1115,6 +1117,11 @@ module Aws::EKS
1115
1117
  #
1116
1118
  # @!attribute [rw] taints
1117
1119
  # The Kubernetes taints to be applied to the nodes in the node group.
1120
+ # For more information, see [Node taints on managed node groups][1].
1121
+ #
1122
+ #
1123
+ #
1124
+ # [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
1118
1125
  # @return [Array<Types::Taint>]
1119
1126
  #
1120
1127
  # @!attribute [rw] tags
@@ -1155,7 +1162,7 @@ module Aws::EKS
1155
1162
  # launch template uses a custom AMI, then don't specify `version`, or
1156
1163
  # the node group deployment will fail. For more information about
1157
1164
  # using launch templates with Amazon EKS, see [Launch template
1158
- # support][1] in the Amazon EKS User Guide.
1165
+ # support][1] in the *Amazon EKS User Guide*.
1159
1166
  #
1160
1167
  #
1161
1168
  #
@@ -1171,7 +1178,8 @@ module Aws::EKS
1171
1178
  # `launchTemplate`, and your launch template uses a custom AMI, then
1172
1179
  # don't specify `releaseVersion`, or the node group deployment will
1173
1180
  # fail. For more information about using launch templates with Amazon
1174
- # EKS, see [Launch template support][2] in the Amazon EKS User Guide.
1181
+ # EKS, see [Launch template support][2] in the *Amazon EKS User
1182
+ # Guide*.
1175
1183
  #
1176
1184
  #
1177
1185
  #
@@ -1704,11 +1712,13 @@ module Aws::EKS
1704
1712
  #
1705
1713
  # @!attribute [rw] nodegroup_name
1706
1714
  # The name of the Amazon EKS node group associated with the update.
1715
+ # This parameter is required if the update is a node group update.
1707
1716
  # @return [String]
1708
1717
  #
1709
1718
  # @!attribute [rw] addon_name
1710
1719
  # The name of the add-on. The name must match one of the names
1711
- # returned by [ `ListAddons` ][1].
1720
+ # returned by [ `ListAddons` ][1]. This parameter is required if the
1721
+ # update is an add-on update.
1712
1722
  #
1713
1723
  #
1714
1724
  #
@@ -1994,7 +2004,8 @@ module Aws::EKS
1994
2004
  # }
1995
2005
  #
1996
2006
  # @!attribute [rw] type
1997
- # The type of the identity provider configuration.
2007
+ # The type of the identity provider configuration. The only type
2008
+ # available is `oidc`.
1998
2009
  # @return [String]
1999
2010
  #
2000
2011
  # @!attribute [rw] name
@@ -2129,7 +2140,7 @@ module Aws::EKS
2129
2140
  # instances to be assigned a public IP address, then you need to
2130
2141
  # enable the `auto-assign public IP address` setting for the subnet.
2131
2142
  # See [Modifying the public IPv4 addressing attribute for your
2132
- # subnet][1] in the Amazon VPC User Guide.
2143
+ # subnet][1] in the *Amazon VPC User Guide*.
2133
2144
  #
2134
2145
  # * **IamInstanceProfileNotFound**\: We couldn't find the IAM
2135
2146
  # instance profile for your managed node group. You may be able to
@@ -2212,21 +2223,22 @@ module Aws::EKS
2212
2223
  # @return [String]
2213
2224
  #
2214
2225
  # @!attribute [rw] ip_family
2215
- # Specify which IP version is used to assign Kubernetes Pod and
2216
- # Service IP addresses. If you don't specify a value, `ipv4` is used
2217
- # by default. You can only specify an IP family when you create a
2218
- # cluster and can't change this value once the cluster is created. If
2219
- # you specify `ipv6`, the VPC and subnets that you specify for cluster
2226
+ # Specify which IP family is used to assign Kubernetes pod and service
2227
+ # IP addresses. If you don't specify a value, `ipv4` is used by
2228
+ # default. You can only specify an IP family when you create a cluster
2229
+ # and can't change this value once the cluster is created. If you
2230
+ # specify `ipv6`, the VPC and subnets that you specify for cluster
2220
2231
  # creation must have both IPv4 and IPv6 CIDR blocks assigned to them.
2232
+ # You can't specify `ipv6` for clusters in China Regions.
2221
2233
  #
2222
2234
  # You can only specify `ipv6` for 1.21 and later clusters that use
2223
- # version 1.10.0 or later of the Amazon VPC CNI add-on. If you specify
2224
- # `ipv6`, then ensure that your VPC meets the requirements and that
2225
- # you're familiar with the considerations listed in [Assigning IPv6
2226
- # addresses to Pods and Services][1] in the Amazon EKS User Guide. If
2227
- # you specify `ipv6`, Kubernetes assigns Service and Pod addresses
2228
- # from the unique local address range (fc00::/7). You can't specify a
2229
- # custom IPv6 CIDR block.
2235
+ # version 1.10.1 or later of the Amazon VPC CNI add-on. If you specify
2236
+ # `ipv6`, then ensure that your VPC meets the requirements listed in
2237
+ # the considerations listed in [Assigning IPv6 addresses to pods and
2238
+ # services][1] in the Amazon EKS User Guide. Kubernetes assigns
2239
+ # services IPv6 addresses from the unique local address range
2240
+ # (fc00::/7). You can't specify a custom IPv6 CIDR block. Pod
2241
+ # addresses are assigned from the subnet's IPv6 CIDR.
2230
2242
  #
2231
2243
  #
2232
2244
  #
@@ -2247,7 +2259,7 @@ module Aws::EKS
2247
2259
  # not both.
2248
2260
  #
2249
2261
  # @!attribute [rw] service_ipv_4_cidr
2250
- # The CIDR block that Kubernetes Pod and Service IP addresses are
2262
+ # The CIDR block that Kubernetes pod and service IP addresses are
2251
2263
  # assigned from. Kubernetes assigns addresses from an IPv4 CIDR block
2252
2264
  # assigned to a subnet that the node is in. If you didn't specify a
2253
2265
  # CIDR block when you created the cluster, then Kubernetes assigns
@@ -2257,17 +2269,19 @@ module Aws::EKS
2257
2269
  # @return [String]
2258
2270
  #
2259
2271
  # @!attribute [rw] service_ipv_6_cidr
2260
- # The CIDR block that Kubernetes Pod and Service IP addresses are
2272
+ # The CIDR block that Kubernetes pod and service IP addresses are
2261
2273
  # assigned from if you created a 1.21 or later cluster with version
2262
- # 1.10.0 or later of the Amazon VPC CNI add-on and specified `ipv6`
2274
+ # 1.10.1 or later of the Amazon VPC CNI add-on and specified `ipv6`
2263
2275
  # for **ipFamily** when you created the cluster. Kubernetes assigns
2264
- # addresses from the unique local address range (fc00::/7).
2276
+ # service addresses from the unique local address range (`fc00::/7`)
2277
+ # because you can't specify a custom IPv6 CIDR block when you create
2278
+ # the cluster.
2265
2279
  # @return [String]
2266
2280
  #
2267
2281
  # @!attribute [rw] ip_family
2268
- # The IP family used to assign Kubernetes Pod and Service IP
2282
+ # The IP family used to assign Kubernetes pod and service IP
2269
2283
  # addresses. The IP family is always `ipv4`, unless you have a `1.21`
2270
- # or later cluster running version 1.10.0 or later of the Amazon VPC
2284
+ # or later cluster running version 1.10.1 or later of the Amazon VPC
2271
2285
  # CNI add-on and specified `ipv6` when you created the cluster.
2272
2286
  # @return [String]
2273
2287
  #
@@ -2288,8 +2302,8 @@ module Aws::EKS
2288
2302
  # group deployment or update will fail. For more information about
2289
2303
  # launch templates, see [ `CreateLaunchTemplate` ][6] in the Amazon EC2
2290
2304
  # API Reference. For more information about using launch templates with
2291
- # Amazon EKS, see [Launch template support][7] in the Amazon EKS User
2292
- # Guide.
2305
+ # Amazon EKS, see [Launch template support][7] in the *Amazon EKS User
2306
+ # Guide*.
2293
2307
  #
2294
2308
  # Specify either `name` or `id`, but not both.
2295
2309
  #
@@ -2937,7 +2951,12 @@ module Aws::EKS
2937
2951
  # when they are created. Effect is one of `No_Schedule`,
2938
2952
  # `Prefer_No_Schedule`, or `No_Execute`. Kubernetes taints can be used
2939
2953
  # together with tolerations to control how workloads are scheduled to
2940
- # your nodes.
2954
+ # your nodes. For more information, see [Node taints on managed node
2955
+ # groups][1].
2956
+ #
2957
+ #
2958
+ #
2959
+ # [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
2941
2960
  # @return [Array<Types::Taint>]
2942
2961
  #
2943
2962
  # @!attribute [rw] resources
@@ -3572,7 +3591,7 @@ module Aws::EKS
3572
3591
  include Aws::Structure
3573
3592
  end
3574
3593
 
3575
- # Required resources (such as Service Linked Roles) were created and are
3594
+ # Required resources (such as service-linked roles) were created and are
3576
3595
  # still propagating. Retry later.
3577
3596
  #
3578
3597
  # @!attribute [rw] message
@@ -3660,7 +3679,12 @@ module Aws::EKS
3660
3679
  #
3661
3680
  class TagResourceResponse < Aws::EmptyStructure; end
3662
3681
 
3663
- # A property that allows a node to repel a set of pods.
3682
+ # A property that allows a node to repel a set of pods. For more
3683
+ # information, see [Node taints on managed node groups][1].
3684
+ #
3685
+ #
3686
+ #
3687
+ # [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
3664
3688
  #
3665
3689
  # @note When making an API call, you may pass Taint
3666
3690
  # data as a hash:
@@ -4104,7 +4128,12 @@ module Aws::EKS
4104
4128
  #
4105
4129
  # @!attribute [rw] taints
4106
4130
  # The Kubernetes taints to be applied to the nodes in the node group
4107
- # after the update.
4131
+ # after the update. For more information, see [Node taints on managed
4132
+ # node groups][1].
4133
+ #
4134
+ #
4135
+ #
4136
+ # [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
4108
4137
  # @return [Types::UpdateTaintsPayload]
4109
4138
  #
4110
4139
  # @!attribute [rw] scaling_config
@@ -4184,8 +4213,8 @@ module Aws::EKS
4184
4213
  # version. If you specify `launchTemplate`, and your launch template
4185
4214
  # uses a custom AMI, then don't specify `version`, or the node group
4186
4215
  # update will fail. For more information about using launch templates
4187
- # with Amazon EKS, see [Launch template support][1] in the Amazon EKS
4188
- # User Guide.
4216
+ # with Amazon EKS, see [Launch template support][1] in the *Amazon EKS
4217
+ # User Guide*.
4189
4218
  #
4190
4219
  #
4191
4220
  #
@@ -4201,7 +4230,7 @@ module Aws::EKS
4201
4230
  # launch template uses a custom AMI, then don't specify
4202
4231
  # `releaseVersion`, or the node group update will fail. For more
4203
4232
  # information about using launch templates with Amazon EKS, see
4204
- # [Launch template support][2] in the Amazon EKS User Guide.
4233
+ # [Launch template support][2] in the *Amazon EKS User Guide*.
4205
4234
  #
4206
4235
  #
4207
4236
  #
@@ -4278,6 +4307,11 @@ module Aws::EKS
4278
4307
  end
4279
4308
 
4280
4309
  # An object representing the details of an update to a taints payload.
4310
+ # For more information, see [Node taints on managed node groups][1].
4311
+ #
4312
+ #
4313
+ #
4314
+ # [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
4281
4315
  #
4282
4316
  # @note When making an API call, you may pass UpdateTaintsPayload
4283
4317
  # data as a hash:
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.74.0'
52
+ GEM_VERSION = '1.75.0'
53
53
 
54
54
  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.74.0
4
+ version: 1.75.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: 2022-03-08 00:00:00.000000000 Z
11
+ date: 2022-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core