aws-sdk-eks 1.79.0 → 1.80.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: bd3389b0a615d86254edfc5cca24f0921daa62172b0cbe37a2f76b070f8d0fe5
4
- data.tar.gz: b9f6e967cf6b99879a611ce4298e25d61803c0e4080f407249522dc6b4e0d55d
3
+ metadata.gz: f5fcf2c6884c4c65649dc665a0fdb940455d4a50675c12c0106f92ff3e5078b2
4
+ data.tar.gz: 071bbe7340c554116e9c7cf73308201c8b77b7b6d59f6a9ee505445927766188
5
5
  SHA512:
6
- metadata.gz: 59337ae397589783062fdf243b43806a4333a2a62fd7c1446e1dd2f3c9c04e6577b41e93de0e03413ecc552aa68f5a3d809ec4cea0bb094e7a95cf0cbf00dc64
7
- data.tar.gz: 959985b9564737d28c4674fd8b2a9235aa9e1bf554d7315e933c6888be5f49c1e1694bf2e62c2e90b3ac7fdbd9f4c2a580a99d4be75a2a74f6ff3df5027fb549
6
+ metadata.gz: 6c776c14437d914ea284d2a18961b7e83051992494e73784c9f5f5ac47ce353254b2a2b201c0ff146007516b7a906715b790b3b52c7dbf09f477bce52eac4245
7
+ data.tar.gz: ebf7bb06a6901b2906cc78f013a848daad3889d8b7fe0cde6c75bad2e8855e24ce8ec2b852127290a779ea7320bd069c49ce4d5711ce4c09136b865e0caad04a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.80.0 (2022-11-29)
5
+ ------------------
6
+
7
+ * Feature - Adds support for additional EKS add-ons metadata and filtering fields
8
+
4
9
  1.79.0 (2022-11-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.79.0
1
+ 1.80.0
@@ -640,6 +640,10 @@ module Aws::EKS
640
640
  # resp.addon.service_account_role_arn #=> String
641
641
  # resp.addon.tags #=> Hash
642
642
  # resp.addon.tags["TagKey"] #=> String
643
+ # resp.addon.publisher #=> String
644
+ # resp.addon.owner #=> String
645
+ # resp.addon.marketplace_information.product_id #=> String
646
+ # resp.addon.marketplace_information.product_url #=> String
643
647
  #
644
648
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateAddon AWS API Documentation
645
649
  #
@@ -1349,7 +1353,7 @@ module Aws::EKS
1349
1353
  # @option params [Boolean] :preserve
1350
1354
  # Specifying this option preserves the add-on software on your cluster
1351
1355
  # but Amazon EKS stops managing any settings for the add-on. If an IAM
1352
- # account is associated with the add-on, it is not removed.
1356
+ # account is associated with the add-on, it isn't removed.
1353
1357
  #
1354
1358
  # @return [Types::DeleteAddonResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1355
1359
  #
@@ -1380,6 +1384,10 @@ module Aws::EKS
1380
1384
  # resp.addon.service_account_role_arn #=> String
1381
1385
  # resp.addon.tags #=> Hash
1382
1386
  # resp.addon.tags["TagKey"] #=> String
1387
+ # resp.addon.publisher #=> String
1388
+ # resp.addon.owner #=> String
1389
+ # resp.addon.marketplace_information.product_id #=> String
1390
+ # resp.addon.marketplace_information.product_url #=> String
1383
1391
  #
1384
1392
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteAddon AWS API Documentation
1385
1393
  #
@@ -1743,6 +1751,10 @@ module Aws::EKS
1743
1751
  # resp.addon.service_account_role_arn #=> String
1744
1752
  # resp.addon.tags #=> Hash
1745
1753
  # resp.addon.tags["TagKey"] #=> String
1754
+ # resp.addon.publisher #=> String
1755
+ # resp.addon.owner #=> String
1756
+ # resp.addon.marketplace_information.product_id #=> String
1757
+ # resp.addon.marketplace_information.product_url #=> String
1746
1758
  #
1747
1759
  #
1748
1760
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -1759,10 +1771,12 @@ module Aws::EKS
1759
1771
  req.send_request(options)
1760
1772
  end
1761
1773
 
1762
- # Describes the Kubernetes versions that the add-on can be used with.
1774
+ # Describes the versions for an add-on. Information such as the
1775
+ # Kubernetes versions that you can use the add-on with, the `owner`,
1776
+ # `publisher`, and the `type` of the add-on are returned.
1763
1777
  #
1764
1778
  # @option params [String] :kubernetes_version
1765
- # The Kubernetes versions that the add-on can be used with.
1779
+ # The Kubernetes versions that you can use the add-on with.
1766
1780
  #
1767
1781
  # @option params [Integer] :max_results
1768
1782
  # The maximum number of results to return.
@@ -1788,6 +1802,18 @@ module Aws::EKS
1788
1802
  #
1789
1803
  # [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html
1790
1804
  #
1805
+ # @option params [Array<String>] :types
1806
+ # The type of the add-on. For valid `types`, don't specify a value for
1807
+ # this property.
1808
+ #
1809
+ # @option params [Array<String>] :publishers
1810
+ # The publisher of the add-on. For valid `publishers`, don't specify a
1811
+ # value for this property.
1812
+ #
1813
+ # @option params [Array<String>] :owners
1814
+ # The owner of the add-on. For valid `owners`, don't specify a value
1815
+ # for this property.
1816
+ #
1791
1817
  # @return [Types::DescribeAddonVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1792
1818
  #
1793
1819
  # * {Types::DescribeAddonVersionsResponse#addons #addons} => Array&lt;Types::AddonInfo&gt;
@@ -1802,6 +1828,9 @@ module Aws::EKS
1802
1828
  # max_results: 1,
1803
1829
  # next_token: "String",
1804
1830
  # addon_name: "String",
1831
+ # types: ["String"],
1832
+ # publishers: ["String"],
1833
+ # owners: ["String"],
1805
1834
  # })
1806
1835
  #
1807
1836
  # @example Response structure
@@ -1818,6 +1847,11 @@ module Aws::EKS
1818
1847
  # resp.addons[0].addon_versions[0].compatibilities[0].platform_versions #=> Array
1819
1848
  # resp.addons[0].addon_versions[0].compatibilities[0].platform_versions[0] #=> String
1820
1849
  # resp.addons[0].addon_versions[0].compatibilities[0].default_version #=> Boolean
1850
+ # resp.addons[0].addon_versions[0].requires_configuration #=> Boolean
1851
+ # resp.addons[0].publisher #=> String
1852
+ # resp.addons[0].owner #=> String
1853
+ # resp.addons[0].marketplace_information.product_id #=> String
1854
+ # resp.addons[0].marketplace_information.product_url #=> String
1821
1855
  # resp.next_token #=> String
1822
1856
  #
1823
1857
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonVersions AWS API Documentation
@@ -3392,7 +3426,7 @@ module Aws::EKS
3392
3426
  params: params,
3393
3427
  config: config)
3394
3428
  context[:gem_name] = 'aws-sdk-eks'
3395
- context[:gem_version] = '1.79.0'
3429
+ context[:gem_version] = '1.80.0'
3396
3430
  Seahorse::Client::Request.new(handlers, context)
3397
3431
  end
3398
3432
 
@@ -136,6 +136,7 @@ module Aws::EKS
136
136
  LogType = Shapes::StringShape.new(name: 'LogType')
137
137
  LogTypes = Shapes::ListShape.new(name: 'LogTypes')
138
138
  Logging = Shapes::StructureShape.new(name: 'Logging')
139
+ MarketplaceInformation = Shapes::StructureShape.new(name: 'MarketplaceInformation')
139
140
  Nodegroup = Shapes::StructureShape.new(name: 'Nodegroup')
140
141
  NodegroupHealth = Shapes::StructureShape.new(name: 'NodegroupHealth')
141
142
  NodegroupIssueCode = Shapes::StringShape.new(name: 'NodegroupIssueCode')
@@ -223,6 +224,9 @@ module Aws::EKS
223
224
  Addon.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "modifiedAt"))
224
225
  Addon.add_member(:service_account_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "serviceAccountRoleArn"))
225
226
  Addon.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
227
+ Addon.add_member(:publisher, Shapes::ShapeRef.new(shape: String, location_name: "publisher"))
228
+ Addon.add_member(:owner, Shapes::ShapeRef.new(shape: String, location_name: "owner"))
229
+ Addon.add_member(:marketplace_information, Shapes::ShapeRef.new(shape: MarketplaceInformation, location_name: "marketplaceInformation"))
226
230
  Addon.struct_class = Types::Addon
227
231
 
228
232
  AddonHealth.add_member(:issues, Shapes::ShapeRef.new(shape: AddonIssueList, location_name: "issues"))
@@ -231,6 +235,9 @@ module Aws::EKS
231
235
  AddonInfo.add_member(:addon_name, Shapes::ShapeRef.new(shape: String, location_name: "addonName"))
232
236
  AddonInfo.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "type"))
233
237
  AddonInfo.add_member(:addon_versions, Shapes::ShapeRef.new(shape: AddonVersionInfoList, location_name: "addonVersions"))
238
+ AddonInfo.add_member(:publisher, Shapes::ShapeRef.new(shape: String, location_name: "publisher"))
239
+ AddonInfo.add_member(:owner, Shapes::ShapeRef.new(shape: String, location_name: "owner"))
240
+ AddonInfo.add_member(:marketplace_information, Shapes::ShapeRef.new(shape: MarketplaceInformation, location_name: "marketplaceInformation"))
234
241
  AddonInfo.struct_class = Types::AddonInfo
235
242
 
236
243
  AddonIssue.add_member(:code, Shapes::ShapeRef.new(shape: AddonIssueCode, location_name: "code"))
@@ -243,6 +250,7 @@ module Aws::EKS
243
250
  AddonVersionInfo.add_member(:addon_version, Shapes::ShapeRef.new(shape: String, location_name: "addonVersion"))
244
251
  AddonVersionInfo.add_member(:architecture, Shapes::ShapeRef.new(shape: StringList, location_name: "architecture"))
245
252
  AddonVersionInfo.add_member(:compatibilities, Shapes::ShapeRef.new(shape: Compatibilities, location_name: "compatibilities"))
253
+ AddonVersionInfo.add_member(:requires_configuration, Shapes::ShapeRef.new(shape: Boolean, location_name: "requiresConfiguration"))
246
254
  AddonVersionInfo.struct_class = Types::AddonVersionInfo
247
255
 
248
256
  AddonVersionInfoList.member = Shapes::ShapeRef.new(shape: AddonVersionInfo)
@@ -447,6 +455,9 @@ module Aws::EKS
447
455
  DescribeAddonVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeAddonVersionsRequestMaxResults, location: "querystring", location_name: "maxResults"))
448
456
  DescribeAddonVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
449
457
  DescribeAddonVersionsRequest.add_member(:addon_name, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "addonName"))
458
+ DescribeAddonVersionsRequest.add_member(:types, Shapes::ShapeRef.new(shape: StringList, location: "querystring", location_name: "types"))
459
+ DescribeAddonVersionsRequest.add_member(:publishers, Shapes::ShapeRef.new(shape: StringList, location: "querystring", location_name: "publishers"))
460
+ DescribeAddonVersionsRequest.add_member(:owners, Shapes::ShapeRef.new(shape: StringList, location: "querystring", location_name: "owners"))
450
461
  DescribeAddonVersionsRequest.struct_class = Types::DescribeAddonVersionsRequest
451
462
 
452
463
  DescribeAddonVersionsResponse.add_member(:addons, Shapes::ShapeRef.new(shape: Addons, location_name: "addons"))
@@ -651,6 +662,10 @@ module Aws::EKS
651
662
  Logging.add_member(:cluster_logging, Shapes::ShapeRef.new(shape: LogSetups, location_name: "clusterLogging"))
652
663
  Logging.struct_class = Types::Logging
653
664
 
665
+ MarketplaceInformation.add_member(:product_id, Shapes::ShapeRef.new(shape: String, location_name: "productId"))
666
+ MarketplaceInformation.add_member(:product_url, Shapes::ShapeRef.new(shape: String, location_name: "productUrl"))
667
+ MarketplaceInformation.struct_class = Types::MarketplaceInformation
668
+
654
669
  Nodegroup.add_member(:nodegroup_name, Shapes::ShapeRef.new(shape: String, location_name: "nodegroupName"))
655
670
  Nodegroup.add_member(:nodegroup_arn, Shapes::ShapeRef.new(shape: String, location_name: "nodegroupArn"))
656
671
  Nodegroup.add_member(:cluster_name, Shapes::ShapeRef.new(shape: String, location_name: "clusterName"))
@@ -50,6 +50,9 @@ module Aws::EKS
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
+ if self[:region].nil?
54
+ raise ArgumentError, "Missing required EndpointParameter: :region"
55
+ end
53
56
  self[:use_dual_stack] = options[:use_dual_stack]
54
57
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
58
  if self[:use_dual_stack].nil?
@@ -29,92 +29,92 @@ module Aws::EKS
29
29
  # @api private
30
30
  RULES = <<-JSON
31
31
  eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2Vrcy1maXBzLntSZWdpb259LntQYXJ0aXRp
77
- b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
78
- LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
79
- b25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJs
80
- ZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBv
81
- ciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
82
- IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0
83
- cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
84
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
85
- QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
86
- b3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
87
- dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
88
- IjpbeyJmbiI6InN0cmluZ0VxdWFscyIsImFyZ3YiOlsiYXdzIix7ImZuIjoi
89
- Z2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJu
90
- YW1lIl19XX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2ZpcHMuZWtz
91
- LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
92
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9LHsi
93
- Y29uZGl0aW9ucyI6W3siZm4iOiJzdHJpbmdFcXVhbHMiLCJhcmd2IjpbImF3
94
- cy11cy1nb3YiLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFy
95
- dGl0aW9uUmVzdWx0In0sIm5hbWUiXX1dfV0sImVuZHBvaW50Ijp7InVybCI6
96
- Imh0dHBzOi8vZWtzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3Vm
97
- Zml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
98
- bmRwb2ludCJ9LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6
99
- Imh0dHBzOi8vZWtzLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNk
100
- bnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
101
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
102
- RklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBz
103
- dXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
104
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVh
105
- bFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
106
- ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUs
107
- eyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1
108
- bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwi
109
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJo
110
- dHRwczovL2Vrcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFj
111
- a0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
112
- eXBlIjoiZW5kcG9pbnQifV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoi
113
- RHVhbFN0YWNrIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMg
114
- bm90IHN1cHBvcnQgRHVhbFN0YWNrIiwidHlwZSI6ImVycm9yIn1dfSx7ImNv
115
- bmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Vrcy57
116
- UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0
117
- aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
32
+ bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
33
+ YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
34
+ ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
35
+ aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
36
+ ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
37
+ IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
38
+ bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
39
+ aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
40
+ IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
41
+ IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
42
+ aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
43
+ Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
44
+ cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
45
+ bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
46
+ YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
47
+ bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
48
+ ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
49
+ IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
+ b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
+ ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
+ dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
+ c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
54
+ c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
55
+ dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
56
+ eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
57
+ In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
58
+ UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
59
+ cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
60
+ cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
61
+ ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
62
+ IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
63
+ bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
64
+ LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
65
+ bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
66
+ IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
67
+ YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
68
+ Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
69
+ YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
70
+ aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
71
+ biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
72
+ fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
73
+ cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
74
+ cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
75
+ ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
76
+ Ijp7InVybCI6Imh0dHBzOi8vZWtzLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlv
77
+ blJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30s
78
+ ImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlv
79
+ bnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5hYmxl
80
+ ZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25lIG9y
81
+ IGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4i
82
+ OiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRy
83
+ dWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7
84
+ ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRB
85
+ dHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBv
86
+ cnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
87
+ aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
88
+ Olt7ImZuIjoic3RyaW5nRXF1YWxzIiwiYXJndiI6WyJhd3MiLHsiZm4iOiJn
89
+ ZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sIm5h
90
+ bWUiXX1dfV0sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZmlwcy5la3Mu
91
+ e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVy
92
+ dGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In0seyJj
93
+ b25kaXRpb25zIjpbeyJmbiI6InN0cmluZ0VxdWFscyIsImFyZ3YiOlsiYXdz
94
+ LXVzLWdvdiIseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0
95
+ aXRpb25SZXN1bHQifSwibmFtZSJdfV19XSwiZW5kcG9pbnQiOnsidXJsIjoi
96
+ aHR0cHM6Ly9la3Mue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZm
97
+ aXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVu
98
+ ZHBvaW50In0seyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoi
99
+ aHR0cHM6Ly9la3MtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ru
100
+ c1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
101
+ IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJG
102
+ SVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1
103
+ cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpb
104
+ eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFs
105
+ U3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
106
+ aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7
107
+ ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
108
+ dCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJy
109
+ dWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0
110
+ dHBzOi8vZWtzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNr
111
+ RG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5
112
+ cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJE
113
+ dWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBu
114
+ b3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29u
115
+ ZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vZWtzLntS
116
+ ZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRp
117
+ ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
118
118
 
119
119
  JSON
120
120
  end
@@ -81,6 +81,19 @@ module Aws::EKS
81
81
  # other resources associated with the cluster.
82
82
  # @return [Hash<String,String>]
83
83
  #
84
+ # @!attribute [rw] publisher
85
+ # The publisher of the add-on.
86
+ # @return [String]
87
+ #
88
+ # @!attribute [rw] owner
89
+ # The owner of the add-on.
90
+ # @return [String]
91
+ #
92
+ # @!attribute [rw] marketplace_information
93
+ # Information about an Amazon EKS add-on from the Amazon Web Services
94
+ # Marketplace.
95
+ # @return [Types::MarketplaceInformation]
96
+ #
84
97
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/Addon AWS API Documentation
85
98
  #
86
99
  class Addon < Struct.new(
@@ -93,7 +106,10 @@ module Aws::EKS
93
106
  :created_at,
94
107
  :modified_at,
95
108
  :service_account_role_arn,
96
- :tags)
109
+ :tags,
110
+ :publisher,
111
+ :owner,
112
+ :marketplace_information)
97
113
  SENSITIVE = []
98
114
  include Aws::Structure
99
115
  end
@@ -127,12 +143,28 @@ module Aws::EKS
127
143
  # and compatible Kubernetes versions.
128
144
  # @return [Array<Types::AddonVersionInfo>]
129
145
  #
146
+ # @!attribute [rw] publisher
147
+ # The publisher of the add-on.
148
+ # @return [String]
149
+ #
150
+ # @!attribute [rw] owner
151
+ # The owner of the add-on.
152
+ # @return [String]
153
+ #
154
+ # @!attribute [rw] marketplace_information
155
+ # Information about the add-on from the Amazon Web Services
156
+ # Marketplace.
157
+ # @return [Types::MarketplaceInformation]
158
+ #
130
159
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonInfo AWS API Documentation
131
160
  #
132
161
  class AddonInfo < Struct.new(
133
162
  :addon_name,
134
163
  :type,
135
- :addon_versions)
164
+ :addon_versions,
165
+ :publisher,
166
+ :owner,
167
+ :marketplace_information)
136
168
  SENSITIVE = []
137
169
  include Aws::Structure
138
170
  end
@@ -176,12 +208,17 @@ module Aws::EKS
176
208
  # An object representing the compatibilities of a version.
177
209
  # @return [Array<Types::Compatibility>]
178
210
  #
211
+ # @!attribute [rw] requires_configuration
212
+ # Whether the add-on requires configuration.
213
+ # @return [Boolean]
214
+ #
179
215
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonVersionInfo AWS API Documentation
180
216
  #
181
217
  class AddonVersionInfo < Struct.new(
182
218
  :addon_version,
183
219
  :architecture,
184
- :compatibilities)
220
+ :compatibilities,
221
+ :requires_configuration)
185
222
  SENSITIVE = []
186
223
  include Aws::Structure
187
224
  end
@@ -661,10 +698,10 @@ module Aws::EKS
661
698
  include Aws::Structure
662
699
  end
663
700
 
664
- # The placement configuration for all the control plane instance of your
665
- # local Amazon EKS cluster on an Amazon Web Services Outpost. For more
666
- # information, see [Capacity considerations][1] in the *Amazon EKS User
667
- # Guide*
701
+ # The placement configuration for all the control plane instances of
702
+ # your local Amazon EKS cluster on an Amazon Web Services Outpost. For
703
+ # more information, see [Capacity considerations][1] in the *Amazon EKS
704
+ # User Guide*
668
705
  #
669
706
  #
670
707
  #
@@ -690,10 +727,10 @@ module Aws::EKS
690
727
  include Aws::Structure
691
728
  end
692
729
 
693
- # The placement configuration for all the control plane instance of your
694
- # local Amazon EKS cluster on an Amazon Web Services Outpost. For more
695
- # information, see [Capacity considerations][1] in the *Amazon EKS User
696
- # Guide*.
730
+ # The placement configuration for all the control plane instances of
731
+ # your local Amazon EKS cluster on an Amazon Web Services Outpost. For
732
+ # more information, see [Capacity considerations][1] in the *Amazon EKS
733
+ # User Guide*.
697
734
  #
698
735
  #
699
736
  #
@@ -1410,7 +1447,7 @@ module Aws::EKS
1410
1447
  # @!attribute [rw] preserve
1411
1448
  # Specifying this option preserves the add-on software on your cluster
1412
1449
  # but Amazon EKS stops managing any settings for the add-on. If an IAM
1413
- # account is associated with the add-on, it is not removed.
1450
+ # account is associated with the add-on, it isn't removed.
1414
1451
  # @return [Boolean]
1415
1452
  #
1416
1453
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteAddonRequest AWS API Documentation
@@ -1633,10 +1670,13 @@ module Aws::EKS
1633
1670
  # max_results: 1,
1634
1671
  # next_token: "String",
1635
1672
  # addon_name: "String",
1673
+ # types: ["String"],
1674
+ # publishers: ["String"],
1675
+ # owners: ["String"],
1636
1676
  # }
1637
1677
  #
1638
1678
  # @!attribute [rw] kubernetes_version
1639
- # The Kubernetes versions that the add-on can be used with.
1679
+ # The Kubernetes versions that you can use the add-on with.
1640
1680
  # @return [String]
1641
1681
  #
1642
1682
  # @!attribute [rw] max_results
@@ -1666,20 +1706,38 @@ module Aws::EKS
1666
1706
  # [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html
1667
1707
  # @return [String]
1668
1708
  #
1709
+ # @!attribute [rw] types
1710
+ # The type of the add-on. For valid `types`, don't specify a value
1711
+ # for this property.
1712
+ # @return [Array<String>]
1713
+ #
1714
+ # @!attribute [rw] publishers
1715
+ # The publisher of the add-on. For valid `publishers`, don't specify
1716
+ # a value for this property.
1717
+ # @return [Array<String>]
1718
+ #
1719
+ # @!attribute [rw] owners
1720
+ # The owner of the add-on. For valid `owners`, don't specify a value
1721
+ # for this property.
1722
+ # @return [Array<String>]
1723
+ #
1669
1724
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonVersionsRequest AWS API Documentation
1670
1725
  #
1671
1726
  class DescribeAddonVersionsRequest < Struct.new(
1672
1727
  :kubernetes_version,
1673
1728
  :max_results,
1674
1729
  :next_token,
1675
- :addon_name)
1730
+ :addon_name,
1731
+ :types,
1732
+ :publishers,
1733
+ :owners)
1676
1734
  SENSITIVE = []
1677
1735
  include Aws::Structure
1678
1736
  end
1679
1737
 
1680
1738
  # @!attribute [rw] addons
1681
- # The list of available versions with Kubernetes version
1682
- # compatibility.
1739
+ # The list of available versions with Kubernetes version compatibility
1740
+ # and other properties.
1683
1741
  # @return [Array<Types::AddonInfo>]
1684
1742
  #
1685
1743
  # @!attribute [rw] next_token
@@ -2366,13 +2424,13 @@ module Aws::EKS
2366
2424
  # Don't specify a value if you select `ipv6` for **ipFamily**. The
2367
2425
  # CIDR block to assign Kubernetes service IP addresses from. If you
2368
2426
  # don't specify a block, Kubernetes assigns addresses from either the
2369
- # 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. We recommend that you
2370
- # specify a block that does not overlap with resources in other
2427
+ # `10.100.0.0/16` or `172.20.0.0/16` CIDR blocks. We recommend that
2428
+ # you specify a block that does not overlap with resources in other
2371
2429
  # networks that are peered or connected to your VPC. The block must
2372
2430
  # meet the following requirements:
2373
2431
  #
2374
- # * Within one of the following private IP address blocks: 10.0.0.0/8,
2375
- # 172.16.0.0/12, or 192.168.0.0/16.
2432
+ # * Within one of the following private IP address blocks:
2433
+ # `10.0.0.0/8`, `172.16.0.0/12`, or `192.168.0.0/16`.
2376
2434
  #
2377
2435
  # * Doesn't overlap with any CIDR block assigned to the VPC that you
2378
2436
  # selected for VPC.
@@ -2389,17 +2447,17 @@ module Aws::EKS
2389
2447
  # default. You can only specify an IP family when you create a cluster
2390
2448
  # and can't change this value once the cluster is created. If you
2391
2449
  # specify `ipv6`, the VPC and subnets that you specify for cluster
2392
- # creation must have both IPv4 and IPv6 CIDR blocks assigned to them.
2393
- # You can't specify `ipv6` for clusters in China Regions.
2450
+ # creation must have both `IPv4` and `IPv6` CIDR blocks assigned to
2451
+ # them. You can't specify `ipv6` for clusters in China Regions.
2394
2452
  #
2395
- # You can only specify `ipv6` for 1.21 and later clusters that use
2396
- # version 1.10.1 or later of the Amazon VPC CNI add-on. If you specify
2397
- # `ipv6`, then ensure that your VPC meets the requirements listed in
2398
- # the considerations listed in [Assigning IPv6 addresses to pods and
2399
- # services][1] in the Amazon EKS User Guide. Kubernetes assigns
2400
- # services IPv6 addresses from the unique local address range
2401
- # (fc00::/7). You can't specify a custom IPv6 CIDR block. Pod
2402
- # addresses are assigned from the subnet's IPv6 CIDR.
2453
+ # You can only specify `ipv6` for `1.21` and later clusters that use
2454
+ # version `1.10.1` or later of the Amazon VPC CNI add-on. If you
2455
+ # specify `ipv6`, then ensure that your VPC meets the requirements
2456
+ # listed in the considerations listed in [Assigning IPv6 addresses to
2457
+ # pods and services][1] in the Amazon EKS User Guide. Kubernetes
2458
+ # assigns services `IPv6` addresses from the unique local address
2459
+ # range `(fc00::/7)`. You can't specify a custom `IPv6` CIDR block.
2460
+ # Pod addresses are assigned from the subnet's `IPv6` CIDR.
2403
2461
  #
2404
2462
  #
2405
2463
  #
@@ -3022,6 +3080,26 @@ module Aws::EKS
3022
3080
  include Aws::Structure
3023
3081
  end
3024
3082
 
3083
+ # Information about an Amazon EKS add-on from the Amazon Web Services
3084
+ # Marketplace.
3085
+ #
3086
+ # @!attribute [rw] product_id
3087
+ # The product ID from the Amazon Web Services Marketplace.
3088
+ # @return [String]
3089
+ #
3090
+ # @!attribute [rw] product_url
3091
+ # The product URL from the Amazon Web Services Marketplace.
3092
+ # @return [String]
3093
+ #
3094
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/MarketplaceInformation AWS API Documentation
3095
+ #
3096
+ class MarketplaceInformation < Struct.new(
3097
+ :product_id,
3098
+ :product_url)
3099
+ SENSITIVE = []
3100
+ include Aws::Structure
3101
+ end
3102
+
3025
3103
  # An object representing an Amazon EKS managed node group.
3026
3104
  #
3027
3105
  # @!attribute [rw] nodegroup_name
@@ -3583,8 +3661,8 @@ module Aws::EKS
3583
3661
  #
3584
3662
  # @!attribute [rw] control_plane_placement
3585
3663
  # An object representing the placement configuration for all the
3586
- # control plane instance of your local Amazon EKS cluster on an Amazon
3587
- # Web Services Outpost. For more information, see [Capacity
3664
+ # control plane instances of your local Amazon EKS cluster on an
3665
+ # Amazon Web Services Outpost. For more information, see [Capacity
3588
3666
  # considerations][1] in the *Amazon EKS User Guide*.
3589
3667
  #
3590
3668
  #
@@ -3618,8 +3696,8 @@ module Aws::EKS
3618
3696
  #
3619
3697
  # @!attribute [rw] control_plane_placement
3620
3698
  # An object representing the placement configuration for all the
3621
- # control plane instance of your local Amazon EKS cluster on an Amazon
3622
- # Web Services Outpost. For more information, see [Capacity
3699
+ # control plane instances of your local Amazon EKS cluster on an
3700
+ # Amazon Web Services Outpost. For more information, see [Capacity
3623
3701
  # considerations][1] in the *Amazon EKS User Guide*.
3624
3702
  #
3625
3703
  #
@@ -4618,7 +4696,7 @@ module Aws::EKS
4618
4696
  # @return [Array<Types::Taint>]
4619
4697
  #
4620
4698
  # @!attribute [rw] remove_taints
4621
- # Kubernetes taints to be removed.
4699
+ # Kubernetes taints to remove.
4622
4700
  # @return [Array<Types::Taint>]
4623
4701
  #
4624
4702
  # @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdateTaintsPayload AWS API Documentation
data/lib/aws-sdk-eks.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-eks/customizations'
53
53
  # @!group service
54
54
  module Aws::EKS
55
55
 
56
- GEM_VERSION = '1.79.0'
56
+ GEM_VERSION = '1.80.0'
57
57
 
58
58
  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.79.0
4
+ version: 1.80.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-11-16 00:00:00.000000000 Z
11
+ date: 2022-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core