aws-sdk-eks 1.78.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +52 -13
- data/lib/aws-sdk-eks/client_api.rb +25 -0
- data/lib/aws-sdk-eks/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-eks/endpoint_provider.rb +86 -86
- data/lib/aws-sdk-eks/types.rb +204 -65
- data/lib/aws-sdk-eks.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5fcf2c6884c4c65649dc665a0fdb940455d4a50675c12c0106f92ff3e5078b2
|
|
4
|
+
data.tar.gz: 071bbe7340c554116e9c7cf73308201c8b77b7b6d59f6a9ee505445927766188
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c776c14437d914ea284d2a18961b7e83051992494e73784c9f5f5ac47ce353254b2a2b201c0ff146007516b7a906715b790b3b52c7dbf09f477bce52eac4245
|
|
7
|
+
data.tar.gz: ebf7bb06a6901b2906cc78f013a848daad3889d8b7fe0cde6c75bad2e8855e24ce8ec2b852127290a779ea7320bd069c49ce4d5711ce4c09136b865e0caad04a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
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
|
+
|
|
9
|
+
1.79.0 (2022-11-16)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for customer-provided placement groups for Kubernetes control plane instances when creating local EKS clusters on Outposts
|
|
13
|
+
|
|
4
14
|
1.78.0 (2022-10-25)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.80.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
|
@@ -521,10 +521,7 @@ module Aws::EKS
|
|
|
521
521
|
# Creates an Amazon EKS add-on.
|
|
522
522
|
#
|
|
523
523
|
# Amazon EKS add-ons help to automate the provisioning and lifecycle
|
|
524
|
-
# management of common operational software for Amazon EKS clusters.
|
|
525
|
-
# Amazon EKS add-ons require clusters running version 1.18 or later
|
|
526
|
-
# because Amazon EKS add-ons rely on the Server-side Apply Kubernetes
|
|
527
|
-
# feature, which is only available in Kubernetes 1.18 and later. For
|
|
524
|
+
# management of common operational software for Amazon EKS clusters. For
|
|
528
525
|
# more information, see [Amazon EKS add-ons][1] in the *Amazon EKS User
|
|
529
526
|
# Guide*.
|
|
530
527
|
#
|
|
@@ -643,6 +640,10 @@ module Aws::EKS
|
|
|
643
640
|
# resp.addon.service_account_role_arn #=> String
|
|
644
641
|
# resp.addon.tags #=> Hash
|
|
645
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
|
|
646
647
|
#
|
|
647
648
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateAddon AWS API Documentation
|
|
648
649
|
#
|
|
@@ -760,14 +761,14 @@ module Aws::EKS
|
|
|
760
761
|
# @option params [Types::OutpostConfigRequest] :outpost_config
|
|
761
762
|
# An object representing the configuration of your local Amazon EKS
|
|
762
763
|
# cluster on an Amazon Web Services Outpost. Before creating a local
|
|
763
|
-
# cluster on an Outpost, review [
|
|
764
|
-
#
|
|
765
|
-
#
|
|
766
|
-
#
|
|
764
|
+
# cluster on an Outpost, review [Local clusters for Amazon EKS on Amazon
|
|
765
|
+
# Web Services Outposts][1] in the *Amazon EKS User Guide*. This object
|
|
766
|
+
# isn't available for creating Amazon EKS clusters on the Amazon Web
|
|
767
|
+
# Services cloud.
|
|
767
768
|
#
|
|
768
769
|
#
|
|
769
770
|
#
|
|
770
|
-
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/
|
|
771
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-local-cluster-overview.html
|
|
771
772
|
#
|
|
772
773
|
# @return [Types::CreateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
773
774
|
#
|
|
@@ -838,6 +839,9 @@ module Aws::EKS
|
|
|
838
839
|
# outpost_config: {
|
|
839
840
|
# outpost_arns: ["String"], # required
|
|
840
841
|
# control_plane_instance_type: "String", # required
|
|
842
|
+
# control_plane_placement: {
|
|
843
|
+
# group_name: "String",
|
|
844
|
+
# },
|
|
841
845
|
# },
|
|
842
846
|
# })
|
|
843
847
|
#
|
|
@@ -891,6 +895,7 @@ module Aws::EKS
|
|
|
891
895
|
# resp.cluster.outpost_config.outpost_arns #=> Array
|
|
892
896
|
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
|
893
897
|
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
|
898
|
+
# resp.cluster.outpost_config.control_plane_placement.group_name #=> String
|
|
894
899
|
#
|
|
895
900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateCluster AWS API Documentation
|
|
896
901
|
#
|
|
@@ -1348,7 +1353,7 @@ module Aws::EKS
|
|
|
1348
1353
|
# @option params [Boolean] :preserve
|
|
1349
1354
|
# Specifying this option preserves the add-on software on your cluster
|
|
1350
1355
|
# but Amazon EKS stops managing any settings for the add-on. If an IAM
|
|
1351
|
-
# account is associated with the add-on, it
|
|
1356
|
+
# account is associated with the add-on, it isn't removed.
|
|
1352
1357
|
#
|
|
1353
1358
|
# @return [Types::DeleteAddonResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1354
1359
|
#
|
|
@@ -1379,6 +1384,10 @@ module Aws::EKS
|
|
|
1379
1384
|
# resp.addon.service_account_role_arn #=> String
|
|
1380
1385
|
# resp.addon.tags #=> Hash
|
|
1381
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
|
|
1382
1391
|
#
|
|
1383
1392
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteAddon AWS API Documentation
|
|
1384
1393
|
#
|
|
@@ -1482,6 +1491,7 @@ module Aws::EKS
|
|
|
1482
1491
|
# resp.cluster.outpost_config.outpost_arns #=> Array
|
|
1483
1492
|
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
|
1484
1493
|
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
|
1494
|
+
# resp.cluster.outpost_config.control_plane_placement.group_name #=> String
|
|
1485
1495
|
#
|
|
1486
1496
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteCluster AWS API Documentation
|
|
1487
1497
|
#
|
|
@@ -1689,6 +1699,7 @@ module Aws::EKS
|
|
|
1689
1699
|
# resp.cluster.outpost_config.outpost_arns #=> Array
|
|
1690
1700
|
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
|
1691
1701
|
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
|
1702
|
+
# resp.cluster.outpost_config.control_plane_placement.group_name #=> String
|
|
1692
1703
|
#
|
|
1693
1704
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeregisterCluster AWS API Documentation
|
|
1694
1705
|
#
|
|
@@ -1740,6 +1751,10 @@ module Aws::EKS
|
|
|
1740
1751
|
# resp.addon.service_account_role_arn #=> String
|
|
1741
1752
|
# resp.addon.tags #=> Hash
|
|
1742
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
|
|
1743
1758
|
#
|
|
1744
1759
|
#
|
|
1745
1760
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -1756,10 +1771,12 @@ module Aws::EKS
|
|
|
1756
1771
|
req.send_request(options)
|
|
1757
1772
|
end
|
|
1758
1773
|
|
|
1759
|
-
# Describes the
|
|
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.
|
|
1760
1777
|
#
|
|
1761
1778
|
# @option params [String] :kubernetes_version
|
|
1762
|
-
# The Kubernetes versions that the add-on
|
|
1779
|
+
# The Kubernetes versions that you can use the add-on with.
|
|
1763
1780
|
#
|
|
1764
1781
|
# @option params [Integer] :max_results
|
|
1765
1782
|
# The maximum number of results to return.
|
|
@@ -1785,6 +1802,18 @@ module Aws::EKS
|
|
|
1785
1802
|
#
|
|
1786
1803
|
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html
|
|
1787
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
|
+
#
|
|
1788
1817
|
# @return [Types::DescribeAddonVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1789
1818
|
#
|
|
1790
1819
|
# * {Types::DescribeAddonVersionsResponse#addons #addons} => Array<Types::AddonInfo>
|
|
@@ -1799,6 +1828,9 @@ module Aws::EKS
|
|
|
1799
1828
|
# max_results: 1,
|
|
1800
1829
|
# next_token: "String",
|
|
1801
1830
|
# addon_name: "String",
|
|
1831
|
+
# types: ["String"],
|
|
1832
|
+
# publishers: ["String"],
|
|
1833
|
+
# owners: ["String"],
|
|
1802
1834
|
# })
|
|
1803
1835
|
#
|
|
1804
1836
|
# @example Response structure
|
|
@@ -1815,6 +1847,11 @@ module Aws::EKS
|
|
|
1815
1847
|
# resp.addons[0].addon_versions[0].compatibilities[0].platform_versions #=> Array
|
|
1816
1848
|
# resp.addons[0].addon_versions[0].compatibilities[0].platform_versions[0] #=> String
|
|
1817
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
|
|
1818
1855
|
# resp.next_token #=> String
|
|
1819
1856
|
#
|
|
1820
1857
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonVersions AWS API Documentation
|
|
@@ -1940,6 +1977,7 @@ module Aws::EKS
|
|
|
1940
1977
|
# resp.cluster.outpost_config.outpost_arns #=> Array
|
|
1941
1978
|
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
|
1942
1979
|
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
|
1980
|
+
# resp.cluster.outpost_config.control_plane_placement.group_name #=> String
|
|
1943
1981
|
#
|
|
1944
1982
|
#
|
|
1945
1983
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -2773,6 +2811,7 @@ module Aws::EKS
|
|
|
2773
2811
|
# resp.cluster.outpost_config.outpost_arns #=> Array
|
|
2774
2812
|
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
|
2775
2813
|
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
|
2814
|
+
# resp.cluster.outpost_config.control_plane_placement.group_name #=> String
|
|
2776
2815
|
#
|
|
2777
2816
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/RegisterCluster AWS API Documentation
|
|
2778
2817
|
#
|
|
@@ -3387,7 +3426,7 @@ module Aws::EKS
|
|
|
3387
3426
|
params: params,
|
|
3388
3427
|
config: config)
|
|
3389
3428
|
context[:gem_name] = 'aws-sdk-eks'
|
|
3390
|
-
context[:gem_version] = '1.
|
|
3429
|
+
context[:gem_version] = '1.80.0'
|
|
3391
3430
|
Seahorse::Client::Request.new(handlers, context)
|
|
3392
3431
|
end
|
|
3393
3432
|
|
|
@@ -51,6 +51,8 @@ module Aws::EKS
|
|
|
51
51
|
ConnectorConfigProvider = Shapes::StringShape.new(name: 'ConnectorConfigProvider')
|
|
52
52
|
ConnectorConfigRequest = Shapes::StructureShape.new(name: 'ConnectorConfigRequest')
|
|
53
53
|
ConnectorConfigResponse = Shapes::StructureShape.new(name: 'ConnectorConfigResponse')
|
|
54
|
+
ControlPlanePlacementRequest = Shapes::StructureShape.new(name: 'ControlPlanePlacementRequest')
|
|
55
|
+
ControlPlanePlacementResponse = Shapes::StructureShape.new(name: 'ControlPlanePlacementResponse')
|
|
54
56
|
CreateAddonRequest = Shapes::StructureShape.new(name: 'CreateAddonRequest')
|
|
55
57
|
CreateAddonResponse = Shapes::StructureShape.new(name: 'CreateAddonResponse')
|
|
56
58
|
CreateClusterRequest = Shapes::StructureShape.new(name: 'CreateClusterRequest')
|
|
@@ -134,6 +136,7 @@ module Aws::EKS
|
|
|
134
136
|
LogType = Shapes::StringShape.new(name: 'LogType')
|
|
135
137
|
LogTypes = Shapes::ListShape.new(name: 'LogTypes')
|
|
136
138
|
Logging = Shapes::StructureShape.new(name: 'Logging')
|
|
139
|
+
MarketplaceInformation = Shapes::StructureShape.new(name: 'MarketplaceInformation')
|
|
137
140
|
Nodegroup = Shapes::StructureShape.new(name: 'Nodegroup')
|
|
138
141
|
NodegroupHealth = Shapes::StructureShape.new(name: 'NodegroupHealth')
|
|
139
142
|
NodegroupIssueCode = Shapes::StringShape.new(name: 'NodegroupIssueCode')
|
|
@@ -221,6 +224,9 @@ module Aws::EKS
|
|
|
221
224
|
Addon.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "modifiedAt"))
|
|
222
225
|
Addon.add_member(:service_account_role_arn, Shapes::ShapeRef.new(shape: String, location_name: "serviceAccountRoleArn"))
|
|
223
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"))
|
|
224
230
|
Addon.struct_class = Types::Addon
|
|
225
231
|
|
|
226
232
|
AddonHealth.add_member(:issues, Shapes::ShapeRef.new(shape: AddonIssueList, location_name: "issues"))
|
|
@@ -229,6 +235,9 @@ module Aws::EKS
|
|
|
229
235
|
AddonInfo.add_member(:addon_name, Shapes::ShapeRef.new(shape: String, location_name: "addonName"))
|
|
230
236
|
AddonInfo.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "type"))
|
|
231
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"))
|
|
232
241
|
AddonInfo.struct_class = Types::AddonInfo
|
|
233
242
|
|
|
234
243
|
AddonIssue.add_member(:code, Shapes::ShapeRef.new(shape: AddonIssueCode, location_name: "code"))
|
|
@@ -241,6 +250,7 @@ module Aws::EKS
|
|
|
241
250
|
AddonVersionInfo.add_member(:addon_version, Shapes::ShapeRef.new(shape: String, location_name: "addonVersion"))
|
|
242
251
|
AddonVersionInfo.add_member(:architecture, Shapes::ShapeRef.new(shape: StringList, location_name: "architecture"))
|
|
243
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"))
|
|
244
254
|
AddonVersionInfo.struct_class = Types::AddonVersionInfo
|
|
245
255
|
|
|
246
256
|
AddonVersionInfoList.member = Shapes::ShapeRef.new(shape: AddonVersionInfo)
|
|
@@ -332,6 +342,12 @@ module Aws::EKS
|
|
|
332
342
|
ConnectorConfigResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, location_name: "roleArn"))
|
|
333
343
|
ConnectorConfigResponse.struct_class = Types::ConnectorConfigResponse
|
|
334
344
|
|
|
345
|
+
ControlPlanePlacementRequest.add_member(:group_name, Shapes::ShapeRef.new(shape: String, location_name: "groupName"))
|
|
346
|
+
ControlPlanePlacementRequest.struct_class = Types::ControlPlanePlacementRequest
|
|
347
|
+
|
|
348
|
+
ControlPlanePlacementResponse.add_member(:group_name, Shapes::ShapeRef.new(shape: String, location_name: "groupName"))
|
|
349
|
+
ControlPlanePlacementResponse.struct_class = Types::ControlPlanePlacementResponse
|
|
350
|
+
|
|
335
351
|
CreateAddonRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterName, required: true, location: "uri", location_name: "name"))
|
|
336
352
|
CreateAddonRequest.add_member(:addon_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "addonName"))
|
|
337
353
|
CreateAddonRequest.add_member(:addon_version, Shapes::ShapeRef.new(shape: String, location_name: "addonVersion"))
|
|
@@ -439,6 +455,9 @@ module Aws::EKS
|
|
|
439
455
|
DescribeAddonVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeAddonVersionsRequestMaxResults, location: "querystring", location_name: "maxResults"))
|
|
440
456
|
DescribeAddonVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
|
|
441
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"))
|
|
442
461
|
DescribeAddonVersionsRequest.struct_class = Types::DescribeAddonVersionsRequest
|
|
443
462
|
|
|
444
463
|
DescribeAddonVersionsResponse.add_member(:addons, Shapes::ShapeRef.new(shape: Addons, location_name: "addons"))
|
|
@@ -643,6 +662,10 @@ module Aws::EKS
|
|
|
643
662
|
Logging.add_member(:cluster_logging, Shapes::ShapeRef.new(shape: LogSetups, location_name: "clusterLogging"))
|
|
644
663
|
Logging.struct_class = Types::Logging
|
|
645
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
|
+
|
|
646
669
|
Nodegroup.add_member(:nodegroup_name, Shapes::ShapeRef.new(shape: String, location_name: "nodegroupName"))
|
|
647
670
|
Nodegroup.add_member(:nodegroup_arn, Shapes::ShapeRef.new(shape: String, location_name: "nodegroupArn"))
|
|
648
671
|
Nodegroup.add_member(:cluster_name, Shapes::ShapeRef.new(shape: String, location_name: "clusterName"))
|
|
@@ -716,10 +739,12 @@ module Aws::EKS
|
|
|
716
739
|
|
|
717
740
|
OutpostConfigRequest.add_member(:outpost_arns, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "outpostArns"))
|
|
718
741
|
OutpostConfigRequest.add_member(:control_plane_instance_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "controlPlaneInstanceType"))
|
|
742
|
+
OutpostConfigRequest.add_member(:control_plane_placement, Shapes::ShapeRef.new(shape: ControlPlanePlacementRequest, location_name: "controlPlanePlacement"))
|
|
719
743
|
OutpostConfigRequest.struct_class = Types::OutpostConfigRequest
|
|
720
744
|
|
|
721
745
|
OutpostConfigResponse.add_member(:outpost_arns, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "outpostArns"))
|
|
722
746
|
OutpostConfigResponse.add_member(:control_plane_instance_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "controlPlaneInstanceType"))
|
|
747
|
+
OutpostConfigResponse.add_member(:control_plane_placement, Shapes::ShapeRef.new(shape: ControlPlanePlacementResponse, location_name: "controlPlanePlacement"))
|
|
723
748
|
OutpostConfigResponse.struct_class = Types::OutpostConfigResponse
|
|
724
749
|
|
|
725
750
|
Provider.add_member(:key_arn, Shapes::ShapeRef.new(shape: String, location_name: "keyArn"))
|
|
@@ -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
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
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
|
data/lib/aws-sdk-eks/types.rb
CHANGED
|
@@ -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,6 +698,57 @@ module Aws::EKS
|
|
|
661
698
|
include Aws::Structure
|
|
662
699
|
end
|
|
663
700
|
|
|
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*
|
|
705
|
+
#
|
|
706
|
+
#
|
|
707
|
+
#
|
|
708
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html
|
|
709
|
+
#
|
|
710
|
+
# @note When making an API call, you may pass ControlPlanePlacementRequest
|
|
711
|
+
# data as a hash:
|
|
712
|
+
#
|
|
713
|
+
# {
|
|
714
|
+
# group_name: "String",
|
|
715
|
+
# }
|
|
716
|
+
#
|
|
717
|
+
# @!attribute [rw] group_name
|
|
718
|
+
# The name of the placement group for the Kubernetes control plane
|
|
719
|
+
# instances. This setting can't be changed after cluster creation.
|
|
720
|
+
# @return [String]
|
|
721
|
+
#
|
|
722
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ControlPlanePlacementRequest AWS API Documentation
|
|
723
|
+
#
|
|
724
|
+
class ControlPlanePlacementRequest < Struct.new(
|
|
725
|
+
:group_name)
|
|
726
|
+
SENSITIVE = []
|
|
727
|
+
include Aws::Structure
|
|
728
|
+
end
|
|
729
|
+
|
|
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*.
|
|
734
|
+
#
|
|
735
|
+
#
|
|
736
|
+
#
|
|
737
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html
|
|
738
|
+
#
|
|
739
|
+
# @!attribute [rw] group_name
|
|
740
|
+
# The name of the placement group for the Kubernetes control plane
|
|
741
|
+
# instances.
|
|
742
|
+
# @return [String]
|
|
743
|
+
#
|
|
744
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ControlPlanePlacementResponse AWS API Documentation
|
|
745
|
+
#
|
|
746
|
+
class ControlPlanePlacementResponse < Struct.new(
|
|
747
|
+
:group_name)
|
|
748
|
+
SENSITIVE = []
|
|
749
|
+
include Aws::Structure
|
|
750
|
+
end
|
|
751
|
+
|
|
664
752
|
# @note When making an API call, you may pass CreateAddonRequest
|
|
665
753
|
# data as a hash:
|
|
666
754
|
#
|
|
@@ -831,6 +919,9 @@ module Aws::EKS
|
|
|
831
919
|
# outpost_config: {
|
|
832
920
|
# outpost_arns: ["String"], # required
|
|
833
921
|
# control_plane_instance_type: "String", # required
|
|
922
|
+
# control_plane_placement: {
|
|
923
|
+
# group_name: "String",
|
|
924
|
+
# },
|
|
834
925
|
# },
|
|
835
926
|
# }
|
|
836
927
|
#
|
|
@@ -920,14 +1011,14 @@ module Aws::EKS
|
|
|
920
1011
|
# @!attribute [rw] outpost_config
|
|
921
1012
|
# An object representing the configuration of your local Amazon EKS
|
|
922
1013
|
# cluster on an Amazon Web Services Outpost. Before creating a local
|
|
923
|
-
# cluster on an Outpost, review [
|
|
924
|
-
# Amazon Web Services
|
|
925
|
-
# object isn't available for creating Amazon EKS clusters on the
|
|
1014
|
+
# cluster on an Outpost, review [Local clusters for Amazon EKS on
|
|
1015
|
+
# Amazon Web Services Outposts][1] in the *Amazon EKS User Guide*.
|
|
1016
|
+
# This object isn't available for creating Amazon EKS clusters on the
|
|
926
1017
|
# Amazon Web Services cloud.
|
|
927
1018
|
#
|
|
928
1019
|
#
|
|
929
1020
|
#
|
|
930
|
-
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/
|
|
1021
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-local-cluster-overview.html
|
|
931
1022
|
# @return [Types::OutpostConfigRequest]
|
|
932
1023
|
#
|
|
933
1024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateClusterRequest AWS API Documentation
|
|
@@ -1356,7 +1447,7 @@ module Aws::EKS
|
|
|
1356
1447
|
# @!attribute [rw] preserve
|
|
1357
1448
|
# Specifying this option preserves the add-on software on your cluster
|
|
1358
1449
|
# but Amazon EKS stops managing any settings for the add-on. If an IAM
|
|
1359
|
-
# account is associated with the add-on, it
|
|
1450
|
+
# account is associated with the add-on, it isn't removed.
|
|
1360
1451
|
# @return [Boolean]
|
|
1361
1452
|
#
|
|
1362
1453
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteAddonRequest AWS API Documentation
|
|
@@ -1579,10 +1670,13 @@ module Aws::EKS
|
|
|
1579
1670
|
# max_results: 1,
|
|
1580
1671
|
# next_token: "String",
|
|
1581
1672
|
# addon_name: "String",
|
|
1673
|
+
# types: ["String"],
|
|
1674
|
+
# publishers: ["String"],
|
|
1675
|
+
# owners: ["String"],
|
|
1582
1676
|
# }
|
|
1583
1677
|
#
|
|
1584
1678
|
# @!attribute [rw] kubernetes_version
|
|
1585
|
-
# The Kubernetes versions that the add-on
|
|
1679
|
+
# The Kubernetes versions that you can use the add-on with.
|
|
1586
1680
|
# @return [String]
|
|
1587
1681
|
#
|
|
1588
1682
|
# @!attribute [rw] max_results
|
|
@@ -1612,20 +1706,38 @@ module Aws::EKS
|
|
|
1612
1706
|
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html
|
|
1613
1707
|
# @return [String]
|
|
1614
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
|
+
#
|
|
1615
1724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonVersionsRequest AWS API Documentation
|
|
1616
1725
|
#
|
|
1617
1726
|
class DescribeAddonVersionsRequest < Struct.new(
|
|
1618
1727
|
:kubernetes_version,
|
|
1619
1728
|
:max_results,
|
|
1620
1729
|
:next_token,
|
|
1621
|
-
:addon_name
|
|
1730
|
+
:addon_name,
|
|
1731
|
+
:types,
|
|
1732
|
+
:publishers,
|
|
1733
|
+
:owners)
|
|
1622
1734
|
SENSITIVE = []
|
|
1623
1735
|
include Aws::Structure
|
|
1624
1736
|
end
|
|
1625
1737
|
|
|
1626
1738
|
# @!attribute [rw] addons
|
|
1627
|
-
# The list of available versions with Kubernetes version
|
|
1628
|
-
#
|
|
1739
|
+
# The list of available versions with Kubernetes version compatibility
|
|
1740
|
+
# and other properties.
|
|
1629
1741
|
# @return [Array<Types::AddonInfo>]
|
|
1630
1742
|
#
|
|
1631
1743
|
# @!attribute [rw] next_token
|
|
@@ -2312,13 +2424,13 @@ module Aws::EKS
|
|
|
2312
2424
|
# Don't specify a value if you select `ipv6` for **ipFamily**. The
|
|
2313
2425
|
# CIDR block to assign Kubernetes service IP addresses from. If you
|
|
2314
2426
|
# don't specify a block, Kubernetes assigns addresses from either the
|
|
2315
|
-
# 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. We recommend that
|
|
2316
|
-
# 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
|
|
2317
2429
|
# networks that are peered or connected to your VPC. The block must
|
|
2318
2430
|
# meet the following requirements:
|
|
2319
2431
|
#
|
|
2320
|
-
# * Within one of the following private IP address blocks:
|
|
2321
|
-
# 172.16.0.0/12
|
|
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`.
|
|
2322
2434
|
#
|
|
2323
2435
|
# * Doesn't overlap with any CIDR block assigned to the VPC that you
|
|
2324
2436
|
# selected for VPC.
|
|
@@ -2335,17 +2447,17 @@ module Aws::EKS
|
|
|
2335
2447
|
# default. You can only specify an IP family when you create a cluster
|
|
2336
2448
|
# and can't change this value once the cluster is created. If you
|
|
2337
2449
|
# specify `ipv6`, the VPC and subnets that you specify for cluster
|
|
2338
|
-
# creation must have both IPv4 and IPv6 CIDR blocks assigned to
|
|
2339
|
-
# 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.
|
|
2340
2452
|
#
|
|
2341
|
-
# You can only specify `ipv6` for 1.21 and later clusters that use
|
|
2342
|
-
# version 1.10.1 or later of the Amazon VPC CNI add-on. If you
|
|
2343
|
-
# `ipv6`, then ensure that your VPC meets the requirements
|
|
2344
|
-
# the considerations listed in [Assigning IPv6 addresses to
|
|
2345
|
-
# services][1] in the Amazon EKS User Guide. Kubernetes
|
|
2346
|
-
# services IPv6 addresses from the unique local address
|
|
2347
|
-
# (fc00::/7)
|
|
2348
|
-
# 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.
|
|
2349
2461
|
#
|
|
2350
2462
|
#
|
|
2351
2463
|
#
|
|
@@ -2442,15 +2554,8 @@ module Aws::EKS
|
|
|
2442
2554
|
# @return [String]
|
|
2443
2555
|
#
|
|
2444
2556
|
# @!attribute [rw] version
|
|
2445
|
-
# The launch template
|
|
2446
|
-
#
|
|
2447
|
-
# If the value is `$Latest`, Amazon EKS uses the latest version of the
|
|
2448
|
-
# launch template.
|
|
2449
|
-
#
|
|
2450
|
-
# If the value is `$Default`, Amazon EKS uses the default version of
|
|
2451
|
-
# the launch template.
|
|
2452
|
-
#
|
|
2453
|
-
# Default: The default version of the launch template.
|
|
2557
|
+
# The version number of the launch template to use. If no version is
|
|
2558
|
+
# specified, then the template's default version is used.
|
|
2454
2559
|
# @return [String]
|
|
2455
2560
|
#
|
|
2456
2561
|
# @!attribute [rw] id
|
|
@@ -2975,6 +3080,26 @@ module Aws::EKS
|
|
|
2975
3080
|
include Aws::Structure
|
|
2976
3081
|
end
|
|
2977
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
|
+
|
|
2978
3103
|
# An object representing an Amazon EKS managed node group.
|
|
2979
3104
|
#
|
|
2980
3105
|
# @!attribute [rw] nodegroup_name
|
|
@@ -3492,13 +3617,13 @@ module Aws::EKS
|
|
|
3492
3617
|
|
|
3493
3618
|
# The configuration of your local Amazon EKS cluster on an Amazon Web
|
|
3494
3619
|
# Services Outpost. Before creating a cluster on an Outpost, review
|
|
3495
|
-
# [Creating a local
|
|
3496
|
-
#
|
|
3497
|
-
#
|
|
3620
|
+
# [Creating a local cluster on an Outpost][1] in the *Amazon EKS User
|
|
3621
|
+
# Guide*. This API isn't available for Amazon EKS clusters on the
|
|
3622
|
+
# Amazon Web Services cloud.
|
|
3498
3623
|
#
|
|
3499
3624
|
#
|
|
3500
3625
|
#
|
|
3501
|
-
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/
|
|
3626
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-local-cluster-create.html
|
|
3502
3627
|
#
|
|
3503
3628
|
# @note When making an API call, you may pass OutpostConfigRequest
|
|
3504
3629
|
# data as a hash:
|
|
@@ -3506,6 +3631,9 @@ module Aws::EKS
|
|
|
3506
3631
|
# {
|
|
3507
3632
|
# outpost_arns: ["String"], # required
|
|
3508
3633
|
# control_plane_instance_type: "String", # required
|
|
3634
|
+
# control_plane_placement: {
|
|
3635
|
+
# group_name: "String",
|
|
3636
|
+
# },
|
|
3509
3637
|
# }
|
|
3510
3638
|
#
|
|
3511
3639
|
# @!attribute [rw] outpost_arns
|
|
@@ -3515,35 +3643,39 @@ module Aws::EKS
|
|
|
3515
3643
|
#
|
|
3516
3644
|
# @!attribute [rw] control_plane_instance_type
|
|
3517
3645
|
# The Amazon EC2 instance type that you want to use for your local
|
|
3518
|
-
# Amazon EKS cluster on Outposts.
|
|
3519
|
-
#
|
|
3520
|
-
#
|
|
3646
|
+
# Amazon EKS cluster on Outposts. Choose an instance type based on the
|
|
3647
|
+
# number of nodes that your cluster will have. For more information,
|
|
3648
|
+
# see [Capacity considerations][1] in the *Amazon EKS User Guide*.
|
|
3521
3649
|
#
|
|
3522
|
-
#
|
|
3523
|
-
#
|
|
3650
|
+
# The instance type that you specify is used for all Kubernetes
|
|
3651
|
+
# control plane instances. The instance type can't be changed after
|
|
3652
|
+
# cluster creation. The control plane is not automatically scaled by
|
|
3653
|
+
# Amazon EKS.
|
|
3524
3654
|
#
|
|
3525
|
-
# * 1–20 nodes, then we recommend specifying a `large` instance type.
|
|
3526
3655
|
#
|
|
3527
|
-
# * 21–100 nodes, then we recommend specifying an `xlarge` instance
|
|
3528
|
-
# type.
|
|
3529
3656
|
#
|
|
3530
|
-
# * 101–250 nodes, then we recommend specifying a `2xlarge` instance
|
|
3531
|
-
# type.
|
|
3532
3657
|
#
|
|
3533
|
-
# For a list of the available Amazon EC2 instance types, see Compute
|
|
3534
|
-
# and storage in [Outposts rack features][1]. The control plane is not
|
|
3535
|
-
# automatically scaled by Amazon EKS.
|
|
3536
3658
|
#
|
|
3659
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html
|
|
3660
|
+
# @return [String]
|
|
3537
3661
|
#
|
|
3662
|
+
# @!attribute [rw] control_plane_placement
|
|
3663
|
+
# An object representing the placement configuration for all the
|
|
3664
|
+
# control plane instances of your local Amazon EKS cluster on an
|
|
3665
|
+
# Amazon Web Services Outpost. For more information, see [Capacity
|
|
3666
|
+
# considerations][1] in the *Amazon EKS User Guide*.
|
|
3538
3667
|
#
|
|
3539
|
-
#
|
|
3540
|
-
#
|
|
3668
|
+
#
|
|
3669
|
+
#
|
|
3670
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html
|
|
3671
|
+
# @return [Types::ControlPlanePlacementRequest]
|
|
3541
3672
|
#
|
|
3542
3673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/OutpostConfigRequest AWS API Documentation
|
|
3543
3674
|
#
|
|
3544
3675
|
class OutpostConfigRequest < Struct.new(
|
|
3545
3676
|
:outpost_arns,
|
|
3546
|
-
:control_plane_instance_type
|
|
3677
|
+
:control_plane_instance_type,
|
|
3678
|
+
:control_plane_placement)
|
|
3547
3679
|
SENSITIVE = []
|
|
3548
3680
|
include Aws::Structure
|
|
3549
3681
|
end
|
|
@@ -3562,11 +3694,23 @@ module Aws::EKS
|
|
|
3562
3694
|
# instance type is the same for all control plane instances.
|
|
3563
3695
|
# @return [String]
|
|
3564
3696
|
#
|
|
3697
|
+
# @!attribute [rw] control_plane_placement
|
|
3698
|
+
# An object representing the placement configuration for all the
|
|
3699
|
+
# control plane instances of your local Amazon EKS cluster on an
|
|
3700
|
+
# Amazon Web Services Outpost. For more information, see [Capacity
|
|
3701
|
+
# considerations][1] in the *Amazon EKS User Guide*.
|
|
3702
|
+
#
|
|
3703
|
+
#
|
|
3704
|
+
#
|
|
3705
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html
|
|
3706
|
+
# @return [Types::ControlPlanePlacementResponse]
|
|
3707
|
+
#
|
|
3565
3708
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/OutpostConfigResponse AWS API Documentation
|
|
3566
3709
|
#
|
|
3567
3710
|
class OutpostConfigResponse < Struct.new(
|
|
3568
3711
|
:outpost_arns,
|
|
3569
|
-
:control_plane_instance_type
|
|
3712
|
+
:control_plane_instance_type,
|
|
3713
|
+
:control_plane_placement)
|
|
3570
3714
|
SENSITIVE = []
|
|
3571
3715
|
include Aws::Structure
|
|
3572
3716
|
end
|
|
@@ -4552,7 +4696,7 @@ module Aws::EKS
|
|
|
4552
4696
|
# @return [Array<Types::Taint>]
|
|
4553
4697
|
#
|
|
4554
4698
|
# @!attribute [rw] remove_taints
|
|
4555
|
-
# Kubernetes taints to
|
|
4699
|
+
# Kubernetes taints to remove.
|
|
4556
4700
|
# @return [Array<Types::Taint>]
|
|
4557
4701
|
#
|
|
4558
4702
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdateTaintsPayload AWS API Documentation
|
|
@@ -4590,14 +4734,9 @@ module Aws::EKS
|
|
|
4590
4734
|
# communication between your nodes and the Kubernetes control plane.
|
|
4591
4735
|
# If you don't specify any security groups, then familiarize yourself
|
|
4592
4736
|
# with the difference between Amazon EKS defaults for clusters
|
|
4593
|
-
# deployed with Kubernetes
|
|
4594
|
-
#
|
|
4595
|
-
#
|
|
4596
|
-
#
|
|
4597
|
-
# * 1\.14 Amazon EKS platform version `eks.3` and later
|
|
4598
|
-
#
|
|
4599
|
-
# For more information, see [Amazon EKS security group
|
|
4600
|
-
# considerations][1] in the <i> <i>Amazon EKS User Guide</i> </i>.
|
|
4737
|
+
# deployed with Kubernetes. For more information, see [Amazon EKS
|
|
4738
|
+
# security group considerations][1] in the <i> <i>Amazon EKS User
|
|
4739
|
+
# Guide</i> </i>.
|
|
4601
4740
|
#
|
|
4602
4741
|
#
|
|
4603
4742
|
#
|
data/lib/aws-sdk-eks.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-eks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.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
|
+
date: 2022-11-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|