aws-sdk-eks 1.167.0 → 1.168.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +21 -1
- data/lib/aws-sdk-eks/client_api.rb +15 -0
- data/lib/aws-sdk-eks/types.rb +112 -14
- data/lib/aws-sdk-eks.rb +1 -1
- data/sig/client.rbs +6 -1
- data/sig/types.rbs +16 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 02e079a42862e25b99ca690a0af82ff80e611e8f50ff185e66c2f25b9ed859e5
|
|
4
|
+
data.tar.gz: d630175c19640a7096bd052d49c17a5df9928706db6576d3c9992f083ece7382
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4411f79012d078edac0cbef2cfe98209800c73d6bca9f6b7ba0a3971d5a55c1c6aac88ab6e353ae0f2329b7d5e7249be9207c05fe68cef36e65f77f8d12d98fa
|
|
7
|
+
data.tar.gz: 464e2748021ecbc3fc3f604dd87d1e0f0a4c52b10f3cd4303704eb15783374952a188dee397f6519f1aa899671194bb6514bee93516b021286c25f7cd7134f9a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.168.0 (2026-06-11)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Introduce new CreateCluster parameters for Amazon EKS local clusters on AWS Outposts. Added etcdInstanceType for configuring the EC2 instance type for dedicated etcd instances, and spreadLevel for configuring the placement group spread level for Kubernetes control plane and etcd instances.
|
|
8
|
+
|
|
4
9
|
1.167.0 (2026-05-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.168.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
|
@@ -1489,6 +1489,11 @@ module Aws::EKS
|
|
|
1489
1489
|
# control_plane_instance_type: "String", # required
|
|
1490
1490
|
# control_plane_placement: {
|
|
1491
1491
|
# group_name: "String",
|
|
1492
|
+
# spread_level: "host", # accepts host, rack
|
|
1493
|
+
# },
|
|
1494
|
+
# etcd_instance_type: "String",
|
|
1495
|
+
# etcd_placement: {
|
|
1496
|
+
# spread_level: "host", # accepts host, rack
|
|
1492
1497
|
# },
|
|
1493
1498
|
# },
|
|
1494
1499
|
# access_config: {
|
|
@@ -1582,6 +1587,9 @@ module Aws::EKS
|
|
|
1582
1587
|
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
|
1583
1588
|
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
|
1584
1589
|
# resp.cluster.outpost_config.control_plane_placement.group_name #=> String
|
|
1590
|
+
# resp.cluster.outpost_config.control_plane_placement.spread_level #=> String, one of "host", "rack"
|
|
1591
|
+
# resp.cluster.outpost_config.etcd_instance_type #=> String
|
|
1592
|
+
# resp.cluster.outpost_config.etcd_placement.spread_level #=> String, one of "host", "rack"
|
|
1585
1593
|
# resp.cluster.access_config.bootstrap_cluster_creator_admin_permissions #=> Boolean
|
|
1586
1594
|
# resp.cluster.access_config.authentication_mode #=> String, one of "API", "API_AND_CONFIG_MAP", "CONFIG_MAP"
|
|
1587
1595
|
# resp.cluster.upgrade_policy.support_type #=> String, one of "STANDARD", "EXTENDED"
|
|
@@ -2676,6 +2684,9 @@ module Aws::EKS
|
|
|
2676
2684
|
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
|
2677
2685
|
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
|
2678
2686
|
# resp.cluster.outpost_config.control_plane_placement.group_name #=> String
|
|
2687
|
+
# resp.cluster.outpost_config.control_plane_placement.spread_level #=> String, one of "host", "rack"
|
|
2688
|
+
# resp.cluster.outpost_config.etcd_instance_type #=> String
|
|
2689
|
+
# resp.cluster.outpost_config.etcd_placement.spread_level #=> String, one of "host", "rack"
|
|
2679
2690
|
# resp.cluster.access_config.bootstrap_cluster_creator_admin_permissions #=> Boolean
|
|
2680
2691
|
# resp.cluster.access_config.authentication_mode #=> String, one of "API", "API_AND_CONFIG_MAP", "CONFIG_MAP"
|
|
2681
2692
|
# resp.cluster.upgrade_policy.support_type #=> String, one of "STANDARD", "EXTENDED"
|
|
@@ -3028,6 +3039,9 @@ module Aws::EKS
|
|
|
3028
3039
|
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
|
3029
3040
|
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
|
3030
3041
|
# resp.cluster.outpost_config.control_plane_placement.group_name #=> String
|
|
3042
|
+
# resp.cluster.outpost_config.control_plane_placement.spread_level #=> String, one of "host", "rack"
|
|
3043
|
+
# resp.cluster.outpost_config.etcd_instance_type #=> String
|
|
3044
|
+
# resp.cluster.outpost_config.etcd_placement.spread_level #=> String, one of "host", "rack"
|
|
3031
3045
|
# resp.cluster.access_config.bootstrap_cluster_creator_admin_permissions #=> Boolean
|
|
3032
3046
|
# resp.cluster.access_config.authentication_mode #=> String, one of "API", "API_AND_CONFIG_MAP", "CONFIG_MAP"
|
|
3033
3047
|
# resp.cluster.upgrade_policy.support_type #=> String, one of "STANDARD", "EXTENDED"
|
|
@@ -3491,6 +3505,9 @@ module Aws::EKS
|
|
|
3491
3505
|
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
|
3492
3506
|
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
|
3493
3507
|
# resp.cluster.outpost_config.control_plane_placement.group_name #=> String
|
|
3508
|
+
# resp.cluster.outpost_config.control_plane_placement.spread_level #=> String, one of "host", "rack"
|
|
3509
|
+
# resp.cluster.outpost_config.etcd_instance_type #=> String
|
|
3510
|
+
# resp.cluster.outpost_config.etcd_placement.spread_level #=> String, one of "host", "rack"
|
|
3494
3511
|
# resp.cluster.access_config.bootstrap_cluster_creator_admin_permissions #=> Boolean
|
|
3495
3512
|
# resp.cluster.access_config.authentication_mode #=> String, one of "API", "API_AND_CONFIG_MAP", "CONFIG_MAP"
|
|
3496
3513
|
# resp.cluster.upgrade_policy.support_type #=> String, one of "STANDARD", "EXTENDED"
|
|
@@ -5160,6 +5177,9 @@ module Aws::EKS
|
|
|
5160
5177
|
# resp.cluster.outpost_config.outpost_arns[0] #=> String
|
|
5161
5178
|
# resp.cluster.outpost_config.control_plane_instance_type #=> String
|
|
5162
5179
|
# resp.cluster.outpost_config.control_plane_placement.group_name #=> String
|
|
5180
|
+
# resp.cluster.outpost_config.control_plane_placement.spread_level #=> String, one of "host", "rack"
|
|
5181
|
+
# resp.cluster.outpost_config.etcd_instance_type #=> String
|
|
5182
|
+
# resp.cluster.outpost_config.etcd_placement.spread_level #=> String, one of "host", "rack"
|
|
5163
5183
|
# resp.cluster.access_config.bootstrap_cluster_creator_admin_permissions #=> Boolean
|
|
5164
5184
|
# resp.cluster.access_config.authentication_mode #=> String, one of "API", "API_AND_CONFIG_MAP", "CONFIG_MAP"
|
|
5165
5185
|
# resp.cluster.upgrade_policy.support_type #=> String, one of "STANDARD", "EXTENDED"
|
|
@@ -6437,7 +6457,7 @@ module Aws::EKS
|
|
|
6437
6457
|
tracer: tracer
|
|
6438
6458
|
)
|
|
6439
6459
|
context[:gem_name] = 'aws-sdk-eks'
|
|
6440
|
-
context[:gem_version] = '1.
|
|
6460
|
+
context[:gem_version] = '1.168.0'
|
|
6441
6461
|
Seahorse::Client::Request.new(handlers, context)
|
|
6442
6462
|
end
|
|
6443
6463
|
|
|
@@ -193,6 +193,8 @@ module Aws::EKS
|
|
|
193
193
|
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
|
194
194
|
ErrorDetail = Shapes::StructureShape.new(name: 'ErrorDetail')
|
|
195
195
|
ErrorDetails = Shapes::ListShape.new(name: 'ErrorDetails')
|
|
196
|
+
EtcdPlacementRequest = Shapes::StructureShape.new(name: 'EtcdPlacementRequest')
|
|
197
|
+
EtcdPlacementResponse = Shapes::StructureShape.new(name: 'EtcdPlacementResponse')
|
|
196
198
|
FargateProfile = Shapes::StructureShape.new(name: 'FargateProfile')
|
|
197
199
|
FargateProfileHealth = Shapes::StructureShape.new(name: 'FargateProfileHealth')
|
|
198
200
|
FargateProfileIssue = Shapes::StructureShape.new(name: 'FargateProfileIssue')
|
|
@@ -319,6 +321,7 @@ module Aws::EKS
|
|
|
319
321
|
RoleArn = Shapes::StringShape.new(name: 'RoleArn')
|
|
320
322
|
ServerException = Shapes::StructureShape.new(name: 'ServerException')
|
|
321
323
|
ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
|
|
324
|
+
SpreadLevel = Shapes::StringShape.new(name: 'SpreadLevel')
|
|
322
325
|
SsoIdentity = Shapes::StructureShape.new(name: 'SsoIdentity')
|
|
323
326
|
SsoIdentityList = Shapes::ListShape.new(name: 'SsoIdentityList')
|
|
324
327
|
SsoIdentityType = Shapes::StringShape.new(name: 'SsoIdentityType')
|
|
@@ -724,9 +727,11 @@ module Aws::EKS
|
|
|
724
727
|
ConnectorConfigResponse.struct_class = Types::ConnectorConfigResponse
|
|
725
728
|
|
|
726
729
|
ControlPlanePlacementRequest.add_member(:group_name, Shapes::ShapeRef.new(shape: String, location_name: "groupName"))
|
|
730
|
+
ControlPlanePlacementRequest.add_member(:spread_level, Shapes::ShapeRef.new(shape: SpreadLevel, location_name: "spreadLevel"))
|
|
727
731
|
ControlPlanePlacementRequest.struct_class = Types::ControlPlanePlacementRequest
|
|
728
732
|
|
|
729
733
|
ControlPlanePlacementResponse.add_member(:group_name, Shapes::ShapeRef.new(shape: String, location_name: "groupName"))
|
|
734
|
+
ControlPlanePlacementResponse.add_member(:spread_level, Shapes::ShapeRef.new(shape: SpreadLevel, location_name: "spreadLevel"))
|
|
730
735
|
ControlPlanePlacementResponse.struct_class = Types::ControlPlanePlacementResponse
|
|
731
736
|
|
|
732
737
|
ControlPlaneScalingConfig.add_member(:tier, Shapes::ShapeRef.new(shape: ProvisionedControlPlaneTier, location_name: "tier"))
|
|
@@ -1110,6 +1115,12 @@ module Aws::EKS
|
|
|
1110
1115
|
|
|
1111
1116
|
ErrorDetails.member = Shapes::ShapeRef.new(shape: ErrorDetail)
|
|
1112
1117
|
|
|
1118
|
+
EtcdPlacementRequest.add_member(:spread_level, Shapes::ShapeRef.new(shape: SpreadLevel, location_name: "spreadLevel"))
|
|
1119
|
+
EtcdPlacementRequest.struct_class = Types::EtcdPlacementRequest
|
|
1120
|
+
|
|
1121
|
+
EtcdPlacementResponse.add_member(:spread_level, Shapes::ShapeRef.new(shape: SpreadLevel, location_name: "spreadLevel"))
|
|
1122
|
+
EtcdPlacementResponse.struct_class = Types::EtcdPlacementResponse
|
|
1123
|
+
|
|
1113
1124
|
FargateProfile.add_member(:fargate_profile_name, Shapes::ShapeRef.new(shape: String, location_name: "fargateProfileName"))
|
|
1114
1125
|
FargateProfile.add_member(:fargate_profile_arn, Shapes::ShapeRef.new(shape: String, location_name: "fargateProfileArn"))
|
|
1115
1126
|
FargateProfile.add_member(:cluster_name, Shapes::ShapeRef.new(shape: String, location_name: "clusterName"))
|
|
@@ -1491,11 +1502,15 @@ module Aws::EKS
|
|
|
1491
1502
|
OutpostConfigRequest.add_member(:outpost_arns, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "outpostArns"))
|
|
1492
1503
|
OutpostConfigRequest.add_member(:control_plane_instance_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "controlPlaneInstanceType"))
|
|
1493
1504
|
OutpostConfigRequest.add_member(:control_plane_placement, Shapes::ShapeRef.new(shape: ControlPlanePlacementRequest, location_name: "controlPlanePlacement"))
|
|
1505
|
+
OutpostConfigRequest.add_member(:etcd_instance_type, Shapes::ShapeRef.new(shape: String, location_name: "etcdInstanceType"))
|
|
1506
|
+
OutpostConfigRequest.add_member(:etcd_placement, Shapes::ShapeRef.new(shape: EtcdPlacementRequest, location_name: "etcdPlacement"))
|
|
1494
1507
|
OutpostConfigRequest.struct_class = Types::OutpostConfigRequest
|
|
1495
1508
|
|
|
1496
1509
|
OutpostConfigResponse.add_member(:outpost_arns, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "outpostArns"))
|
|
1497
1510
|
OutpostConfigResponse.add_member(:control_plane_instance_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "controlPlaneInstanceType"))
|
|
1498
1511
|
OutpostConfigResponse.add_member(:control_plane_placement, Shapes::ShapeRef.new(shape: ControlPlanePlacementResponse, location_name: "controlPlanePlacement"))
|
|
1512
|
+
OutpostConfigResponse.add_member(:etcd_instance_type, Shapes::ShapeRef.new(shape: String, location_name: "etcdInstanceType"))
|
|
1513
|
+
OutpostConfigResponse.add_member(:etcd_placement, Shapes::ShapeRef.new(shape: EtcdPlacementResponse, location_name: "etcdPlacement"))
|
|
1499
1514
|
OutpostConfigResponse.struct_class = Types::OutpostConfigResponse
|
|
1500
1515
|
|
|
1501
1516
|
PodIdentityAssociation.add_member(:cluster_name, Shapes::ShapeRef.new(shape: String, location_name: "clusterName"))
|
data/lib/aws-sdk-eks/types.rb
CHANGED
|
@@ -1745,10 +1745,17 @@ module Aws::EKS
|
|
|
1745
1745
|
# instances. This setting can't be changed after cluster creation.
|
|
1746
1746
|
# @return [String]
|
|
1747
1747
|
#
|
|
1748
|
+
# @!attribute [rw] spread_level
|
|
1749
|
+
# Optional parameter to specify the placement group spread level for
|
|
1750
|
+
# control plane instances. If not provided, Amazon EKS will deploy
|
|
1751
|
+
# control plane instances without a placement group.
|
|
1752
|
+
# @return [String]
|
|
1753
|
+
#
|
|
1748
1754
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ControlPlanePlacementRequest AWS API Documentation
|
|
1749
1755
|
#
|
|
1750
1756
|
class ControlPlanePlacementRequest < Struct.new(
|
|
1751
|
-
:group_name
|
|
1757
|
+
:group_name,
|
|
1758
|
+
:spread_level)
|
|
1752
1759
|
SENSITIVE = []
|
|
1753
1760
|
include Aws::Structure
|
|
1754
1761
|
end
|
|
@@ -1767,10 +1774,17 @@ module Aws::EKS
|
|
|
1767
1774
|
# instances.
|
|
1768
1775
|
# @return [String]
|
|
1769
1776
|
#
|
|
1777
|
+
# @!attribute [rw] spread_level
|
|
1778
|
+
# The spread level used with the placement group for control plane
|
|
1779
|
+
# instances on your local Amazon EKS cluster on Amazon Web Services
|
|
1780
|
+
# Outposts.
|
|
1781
|
+
# @return [String]
|
|
1782
|
+
#
|
|
1770
1783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ControlPlanePlacementResponse AWS API Documentation
|
|
1771
1784
|
#
|
|
1772
1785
|
class ControlPlanePlacementResponse < Struct.new(
|
|
1773
|
-
:group_name
|
|
1786
|
+
:group_name,
|
|
1787
|
+
:spread_level)
|
|
1774
1788
|
SENSITIVE = []
|
|
1775
1789
|
include Aws::Structure
|
|
1776
1790
|
end
|
|
@@ -4170,6 +4184,51 @@ module Aws::EKS
|
|
|
4170
4184
|
include Aws::Structure
|
|
4171
4185
|
end
|
|
4172
4186
|
|
|
4187
|
+
# The placement configuration for the etcd instances of your local
|
|
4188
|
+
# Amazon EKS cluster on an Amazon Web Services Outpost. For more
|
|
4189
|
+
# information, see [Capacity considerations][1] in the *Amazon EKS User
|
|
4190
|
+
# Guide*.
|
|
4191
|
+
#
|
|
4192
|
+
#
|
|
4193
|
+
#
|
|
4194
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html
|
|
4195
|
+
#
|
|
4196
|
+
# @!attribute [rw] spread_level
|
|
4197
|
+
# Optional parameter to specify the placement group spread level for
|
|
4198
|
+
# etcd instances. If not provided, Amazon EKS will deploy etcd
|
|
4199
|
+
# instances without a placement group.
|
|
4200
|
+
# @return [String]
|
|
4201
|
+
#
|
|
4202
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/EtcdPlacementRequest AWS API Documentation
|
|
4203
|
+
#
|
|
4204
|
+
class EtcdPlacementRequest < Struct.new(
|
|
4205
|
+
:spread_level)
|
|
4206
|
+
SENSITIVE = []
|
|
4207
|
+
include Aws::Structure
|
|
4208
|
+
end
|
|
4209
|
+
|
|
4210
|
+
# The placement configuration for the etcd instances of your local
|
|
4211
|
+
# Amazon EKS cluster on an Amazon Web Services Outpost. For more
|
|
4212
|
+
# information, see [Capacity considerations][1] in the *Amazon EKS User
|
|
4213
|
+
# Guide*.
|
|
4214
|
+
#
|
|
4215
|
+
#
|
|
4216
|
+
#
|
|
4217
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html
|
|
4218
|
+
#
|
|
4219
|
+
# @!attribute [rw] spread_level
|
|
4220
|
+
# The spread level used with the placement group for etcd instances on
|
|
4221
|
+
# your local Amazon EKS cluster on Amazon Web Services Outposts.
|
|
4222
|
+
# @return [String]
|
|
4223
|
+
#
|
|
4224
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/EtcdPlacementResponse AWS API Documentation
|
|
4225
|
+
#
|
|
4226
|
+
class EtcdPlacementResponse < Struct.new(
|
|
4227
|
+
:spread_level)
|
|
4228
|
+
SENSITIVE = []
|
|
4229
|
+
include Aws::Structure
|
|
4230
|
+
end
|
|
4231
|
+
|
|
4173
4232
|
# An object representing an Fargate profile.
|
|
4174
4233
|
#
|
|
4175
4234
|
# @!attribute [rw] fargate_profile_name
|
|
@@ -6587,15 +6646,13 @@ module Aws::EKS
|
|
|
6587
6646
|
# @return [Array<String>]
|
|
6588
6647
|
#
|
|
6589
6648
|
# @!attribute [rw] control_plane_instance_type
|
|
6590
|
-
# The Amazon EC2 instance type
|
|
6591
|
-
# Amazon EKS cluster on
|
|
6592
|
-
#
|
|
6593
|
-
#
|
|
6649
|
+
# The Amazon EC2 instance type for the Kubernetes control plane
|
|
6650
|
+
# instances of your local Amazon EKS cluster on Amazon Web Services
|
|
6651
|
+
# Outposts. This instance type applies to all control plane instances
|
|
6652
|
+
# and cannot be changed after cluster creation.
|
|
6594
6653
|
#
|
|
6595
|
-
#
|
|
6596
|
-
#
|
|
6597
|
-
# cluster creation. The control plane is not automatically scaled by
|
|
6598
|
-
# Amazon EKS.
|
|
6654
|
+
# For more information, see [Capacity considerations][1] in the
|
|
6655
|
+
# *Amazon EKS User Guide*.
|
|
6599
6656
|
#
|
|
6600
6657
|
#
|
|
6601
6658
|
#
|
|
@@ -6615,12 +6672,32 @@ module Aws::EKS
|
|
|
6615
6672
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html
|
|
6616
6673
|
# @return [Types::ControlPlanePlacementRequest]
|
|
6617
6674
|
#
|
|
6675
|
+
# @!attribute [rw] etcd_instance_type
|
|
6676
|
+
# The Amazon EC2 instance type for etcd instances of your local Amazon
|
|
6677
|
+
# EKS cluster on Amazon Web Services Outposts. This instance type
|
|
6678
|
+
# applies to all etcd instances and cannot be changed after cluster
|
|
6679
|
+
# creation.
|
|
6680
|
+
# @return [String]
|
|
6681
|
+
#
|
|
6682
|
+
# @!attribute [rw] etcd_placement
|
|
6683
|
+
# An object representing the placement configuration for the etcd
|
|
6684
|
+
# instances of your local Amazon EKS cluster on an Amazon Web Services
|
|
6685
|
+
# Outpost. For more information, see [Capacity considerations][1] in
|
|
6686
|
+
# the *Amazon EKS User Guide*.
|
|
6687
|
+
#
|
|
6688
|
+
#
|
|
6689
|
+
#
|
|
6690
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html
|
|
6691
|
+
# @return [Types::EtcdPlacementRequest]
|
|
6692
|
+
#
|
|
6618
6693
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/OutpostConfigRequest AWS API Documentation
|
|
6619
6694
|
#
|
|
6620
6695
|
class OutpostConfigRequest < Struct.new(
|
|
6621
6696
|
:outpost_arns,
|
|
6622
6697
|
:control_plane_instance_type,
|
|
6623
|
-
:control_plane_placement
|
|
6698
|
+
:control_plane_placement,
|
|
6699
|
+
:etcd_instance_type,
|
|
6700
|
+
:etcd_placement)
|
|
6624
6701
|
SENSITIVE = []
|
|
6625
6702
|
include Aws::Structure
|
|
6626
6703
|
end
|
|
@@ -6635,8 +6712,10 @@ module Aws::EKS
|
|
|
6635
6712
|
# @return [Array<String>]
|
|
6636
6713
|
#
|
|
6637
6714
|
# @!attribute [rw] control_plane_instance_type
|
|
6638
|
-
# The Amazon EC2 instance type
|
|
6639
|
-
#
|
|
6715
|
+
# The Amazon EC2 instance type for the Kubernetes control plane
|
|
6716
|
+
# instances of your local Amazon EKS cluster on Amazon Web Services
|
|
6717
|
+
# Outposts. The instance type is the same for all control plane
|
|
6718
|
+
# instances.
|
|
6640
6719
|
# @return [String]
|
|
6641
6720
|
#
|
|
6642
6721
|
# @!attribute [rw] control_plane_placement
|
|
@@ -6650,12 +6729,31 @@ module Aws::EKS
|
|
|
6650
6729
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html
|
|
6651
6730
|
# @return [Types::ControlPlanePlacementResponse]
|
|
6652
6731
|
#
|
|
6732
|
+
# @!attribute [rw] etcd_instance_type
|
|
6733
|
+
# The Amazon EC2 instance type for etcd instances of your local Amazon
|
|
6734
|
+
# EKS cluster on Amazon Web Services Outposts. The instance type is
|
|
6735
|
+
# the same for all etcd instances.
|
|
6736
|
+
# @return [String]
|
|
6737
|
+
#
|
|
6738
|
+
# @!attribute [rw] etcd_placement
|
|
6739
|
+
# An object representing the placement configuration for the etcd
|
|
6740
|
+
# instances of your local Amazon EKS cluster on an Amazon Web Services
|
|
6741
|
+
# Outpost. For more information, see [Capacity considerations][1] in
|
|
6742
|
+
# the *Amazon EKS User Guide*.
|
|
6743
|
+
#
|
|
6744
|
+
#
|
|
6745
|
+
#
|
|
6746
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html
|
|
6747
|
+
# @return [Types::EtcdPlacementResponse]
|
|
6748
|
+
#
|
|
6653
6749
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/OutpostConfigResponse AWS API Documentation
|
|
6654
6750
|
#
|
|
6655
6751
|
class OutpostConfigResponse < Struct.new(
|
|
6656
6752
|
:outpost_arns,
|
|
6657
6753
|
:control_plane_instance_type,
|
|
6658
|
-
:control_plane_placement
|
|
6754
|
+
:control_plane_placement,
|
|
6755
|
+
:etcd_instance_type,
|
|
6756
|
+
:etcd_placement)
|
|
6659
6757
|
SENSITIVE = []
|
|
6660
6758
|
include Aws::Structure
|
|
6661
6759
|
end
|
data/lib/aws-sdk-eks.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -264,7 +264,12 @@ module Aws
|
|
|
264
264
|
outpost_arns: Array[::String],
|
|
265
265
|
control_plane_instance_type: ::String,
|
|
266
266
|
control_plane_placement: {
|
|
267
|
-
group_name: ::String
|
|
267
|
+
group_name: ::String?,
|
|
268
|
+
spread_level: ("host" | "rack")?
|
|
269
|
+
}?,
|
|
270
|
+
etcd_instance_type: ::String?,
|
|
271
|
+
etcd_placement: {
|
|
272
|
+
spread_level: ("host" | "rack")?
|
|
268
273
|
}?
|
|
269
274
|
},
|
|
270
275
|
?access_config: {
|
data/sig/types.rbs
CHANGED
|
@@ -401,11 +401,13 @@ module Aws::EKS
|
|
|
401
401
|
|
|
402
402
|
class ControlPlanePlacementRequest
|
|
403
403
|
attr_accessor group_name: ::String
|
|
404
|
+
attr_accessor spread_level: ("host" | "rack")
|
|
404
405
|
SENSITIVE: []
|
|
405
406
|
end
|
|
406
407
|
|
|
407
408
|
class ControlPlanePlacementResponse
|
|
408
409
|
attr_accessor group_name: ::String
|
|
410
|
+
attr_accessor spread_level: ("host" | "rack")
|
|
409
411
|
SENSITIVE: []
|
|
410
412
|
end
|
|
411
413
|
|
|
@@ -930,6 +932,16 @@ module Aws::EKS
|
|
|
930
932
|
SENSITIVE: []
|
|
931
933
|
end
|
|
932
934
|
|
|
935
|
+
class EtcdPlacementRequest
|
|
936
|
+
attr_accessor spread_level: ("host" | "rack")
|
|
937
|
+
SENSITIVE: []
|
|
938
|
+
end
|
|
939
|
+
|
|
940
|
+
class EtcdPlacementResponse
|
|
941
|
+
attr_accessor spread_level: ("host" | "rack")
|
|
942
|
+
SENSITIVE: []
|
|
943
|
+
end
|
|
944
|
+
|
|
933
945
|
class FargateProfile
|
|
934
946
|
attr_accessor fargate_profile_name: ::String
|
|
935
947
|
attr_accessor fargate_profile_arn: ::String
|
|
@@ -1411,6 +1423,8 @@ module Aws::EKS
|
|
|
1411
1423
|
attr_accessor outpost_arns: ::Array[::String]
|
|
1412
1424
|
attr_accessor control_plane_instance_type: ::String
|
|
1413
1425
|
attr_accessor control_plane_placement: Types::ControlPlanePlacementRequest
|
|
1426
|
+
attr_accessor etcd_instance_type: ::String
|
|
1427
|
+
attr_accessor etcd_placement: Types::EtcdPlacementRequest
|
|
1414
1428
|
SENSITIVE: []
|
|
1415
1429
|
end
|
|
1416
1430
|
|
|
@@ -1418,6 +1432,8 @@ module Aws::EKS
|
|
|
1418
1432
|
attr_accessor outpost_arns: ::Array[::String]
|
|
1419
1433
|
attr_accessor control_plane_instance_type: ::String
|
|
1420
1434
|
attr_accessor control_plane_placement: Types::ControlPlanePlacementResponse
|
|
1435
|
+
attr_accessor etcd_instance_type: ::String
|
|
1436
|
+
attr_accessor etcd_placement: Types::EtcdPlacementResponse
|
|
1421
1437
|
SENSITIVE: []
|
|
1422
1438
|
end
|
|
1423
1439
|
|