aws-sdk-eks 1.79.0 → 1.81.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 +107 -4
- data/lib/aws-sdk-eks/client_api.rb +40 -0
- data/lib/aws-sdk-eks/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-eks/endpoint_provider.rb +83 -84
- data/lib/aws-sdk-eks/endpoints.rb +14 -0
- data/lib/aws-sdk-eks/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-eks/types.rb +197 -710
- data/lib/aws-sdk-eks.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -81,6 +81,23 @@ 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
|
+
#
|
97
|
+
# @!attribute [rw] configuration_values
|
98
|
+
# The provided configuration values.
|
99
|
+
# @return [String]
|
100
|
+
#
|
84
101
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/Addon AWS API Documentation
|
85
102
|
#
|
86
103
|
class Addon < Struct.new(
|
@@ -93,7 +110,11 @@ module Aws::EKS
|
|
93
110
|
:created_at,
|
94
111
|
:modified_at,
|
95
112
|
:service_account_role_arn,
|
96
|
-
:tags
|
113
|
+
:tags,
|
114
|
+
:publisher,
|
115
|
+
:owner,
|
116
|
+
:marketplace_information,
|
117
|
+
:configuration_values)
|
97
118
|
SENSITIVE = []
|
98
119
|
include Aws::Structure
|
99
120
|
end
|
@@ -127,12 +148,28 @@ module Aws::EKS
|
|
127
148
|
# and compatible Kubernetes versions.
|
128
149
|
# @return [Array<Types::AddonVersionInfo>]
|
129
150
|
#
|
151
|
+
# @!attribute [rw] publisher
|
152
|
+
# The publisher of the add-on.
|
153
|
+
# @return [String]
|
154
|
+
#
|
155
|
+
# @!attribute [rw] owner
|
156
|
+
# The owner of the add-on.
|
157
|
+
# @return [String]
|
158
|
+
#
|
159
|
+
# @!attribute [rw] marketplace_information
|
160
|
+
# Information about the add-on from the Amazon Web Services
|
161
|
+
# Marketplace.
|
162
|
+
# @return [Types::MarketplaceInformation]
|
163
|
+
#
|
130
164
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonInfo AWS API Documentation
|
131
165
|
#
|
132
166
|
class AddonInfo < Struct.new(
|
133
167
|
:addon_name,
|
134
168
|
:type,
|
135
|
-
:addon_versions
|
169
|
+
:addon_versions,
|
170
|
+
:publisher,
|
171
|
+
:owner,
|
172
|
+
:marketplace_information)
|
136
173
|
SENSITIVE = []
|
137
174
|
include Aws::Structure
|
138
175
|
end
|
@@ -176,32 +213,21 @@ module Aws::EKS
|
|
176
213
|
# An object representing the compatibilities of a version.
|
177
214
|
# @return [Array<Types::Compatibility>]
|
178
215
|
#
|
216
|
+
# @!attribute [rw] requires_configuration
|
217
|
+
# Whether the add-on requires configuration.
|
218
|
+
# @return [Boolean]
|
219
|
+
#
|
179
220
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonVersionInfo AWS API Documentation
|
180
221
|
#
|
181
222
|
class AddonVersionInfo < Struct.new(
|
182
223
|
:addon_version,
|
183
224
|
:architecture,
|
184
|
-
:compatibilities
|
225
|
+
:compatibilities,
|
226
|
+
:requires_configuration)
|
185
227
|
SENSITIVE = []
|
186
228
|
include Aws::Structure
|
187
229
|
end
|
188
230
|
|
189
|
-
# @note When making an API call, you may pass AssociateEncryptionConfigRequest
|
190
|
-
# data as a hash:
|
191
|
-
#
|
192
|
-
# {
|
193
|
-
# cluster_name: "String", # required
|
194
|
-
# encryption_config: [ # required
|
195
|
-
# {
|
196
|
-
# resources: ["String"],
|
197
|
-
# provider: {
|
198
|
-
# key_arn: "String",
|
199
|
-
# },
|
200
|
-
# },
|
201
|
-
# ],
|
202
|
-
# client_request_token: "String",
|
203
|
-
# }
|
204
|
-
#
|
205
231
|
# @!attribute [rw] cluster_name
|
206
232
|
# The name of the cluster that you are associating with encryption
|
207
233
|
# configuration.
|
@@ -241,29 +267,6 @@ module Aws::EKS
|
|
241
267
|
include Aws::Structure
|
242
268
|
end
|
243
269
|
|
244
|
-
# @note When making an API call, you may pass AssociateIdentityProviderConfigRequest
|
245
|
-
# data as a hash:
|
246
|
-
#
|
247
|
-
# {
|
248
|
-
# cluster_name: "String", # required
|
249
|
-
# oidc: { # required
|
250
|
-
# identity_provider_config_name: "String", # required
|
251
|
-
# issuer_url: "String", # required
|
252
|
-
# client_id: "String", # required
|
253
|
-
# username_claim: "String",
|
254
|
-
# username_prefix: "String",
|
255
|
-
# groups_claim: "String",
|
256
|
-
# groups_prefix: "String",
|
257
|
-
# required_claims: {
|
258
|
-
# "requiredClaimsKey" => "requiredClaimsValue",
|
259
|
-
# },
|
260
|
-
# },
|
261
|
-
# tags: {
|
262
|
-
# "TagKey" => "TagValue",
|
263
|
-
# },
|
264
|
-
# client_request_token: "String",
|
265
|
-
# }
|
266
|
-
#
|
267
270
|
# @!attribute [rw] cluster_name
|
268
271
|
# The name of the cluster to associate the configuration to.
|
269
272
|
# @return [String]
|
@@ -599,14 +602,6 @@ module Aws::EKS
|
|
599
602
|
|
600
603
|
# The configuration sent to a cluster for configuration.
|
601
604
|
#
|
602
|
-
# @note When making an API call, you may pass ConnectorConfigRequest
|
603
|
-
# data as a hash:
|
604
|
-
#
|
605
|
-
# {
|
606
|
-
# role_arn: "String", # required
|
607
|
-
# provider: "EKS_ANYWHERE", # required, accepts EKS_ANYWHERE, ANTHOS, GKE, AKS, OPENSHIFT, TANZU, RANCHER, EC2, OTHER
|
608
|
-
# }
|
609
|
-
#
|
610
605
|
# @!attribute [rw] role_arn
|
611
606
|
# The Amazon Resource Name (ARN) of the role that is authorized to
|
612
607
|
# request the connector configuration.
|
@@ -661,22 +656,15 @@ module Aws::EKS
|
|
661
656
|
include Aws::Structure
|
662
657
|
end
|
663
658
|
|
664
|
-
# The placement configuration for all the control plane
|
665
|
-
# local Amazon EKS cluster on an Amazon Web Services Outpost. For
|
666
|
-
# information, see [Capacity considerations][1] in the *Amazon EKS
|
667
|
-
# Guide*
|
659
|
+
# The placement configuration for all the control plane instances of
|
660
|
+
# your local Amazon EKS cluster on an Amazon Web Services Outpost. For
|
661
|
+
# more information, see [Capacity considerations][1] in the *Amazon EKS
|
662
|
+
# User Guide*
|
668
663
|
#
|
669
664
|
#
|
670
665
|
#
|
671
666
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-capacity-considerations.html
|
672
667
|
#
|
673
|
-
# @note When making an API call, you may pass ControlPlanePlacementRequest
|
674
|
-
# data as a hash:
|
675
|
-
#
|
676
|
-
# {
|
677
|
-
# group_name: "String",
|
678
|
-
# }
|
679
|
-
#
|
680
668
|
# @!attribute [rw] group_name
|
681
669
|
# The name of the placement group for the Kubernetes control plane
|
682
670
|
# instances. This setting can't be changed after cluster creation.
|
@@ -690,10 +678,10 @@ module Aws::EKS
|
|
690
678
|
include Aws::Structure
|
691
679
|
end
|
692
680
|
|
693
|
-
# The placement configuration for all the control plane
|
694
|
-
# local Amazon EKS cluster on an Amazon Web Services Outpost. For
|
695
|
-
# information, see [Capacity considerations][1] in the *Amazon EKS
|
696
|
-
# Guide*.
|
681
|
+
# The placement configuration for all the control plane instances of
|
682
|
+
# your local Amazon EKS cluster on an Amazon Web Services Outpost. For
|
683
|
+
# more information, see [Capacity considerations][1] in the *Amazon EKS
|
684
|
+
# User Guide*.
|
697
685
|
#
|
698
686
|
#
|
699
687
|
#
|
@@ -712,21 +700,6 @@ module Aws::EKS
|
|
712
700
|
include Aws::Structure
|
713
701
|
end
|
714
702
|
|
715
|
-
# @note When making an API call, you may pass CreateAddonRequest
|
716
|
-
# data as a hash:
|
717
|
-
#
|
718
|
-
# {
|
719
|
-
# cluster_name: "ClusterName", # required
|
720
|
-
# addon_name: "String", # required
|
721
|
-
# addon_version: "String",
|
722
|
-
# service_account_role_arn: "RoleArn",
|
723
|
-
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
724
|
-
# client_request_token: "String",
|
725
|
-
# tags: {
|
726
|
-
# "TagKey" => "TagValue",
|
727
|
-
# },
|
728
|
-
# }
|
729
|
-
#
|
730
703
|
# @!attribute [rw] cluster_name
|
731
704
|
# The name of the cluster to create the add-on for.
|
732
705
|
# @return [String]
|
@@ -810,6 +783,16 @@ module Aws::EKS
|
|
810
783
|
# You define both.
|
811
784
|
# @return [Hash<String,String>]
|
812
785
|
#
|
786
|
+
# @!attribute [rw] configuration_values
|
787
|
+
# The set of configuration values for the add-on being created.
|
788
|
+
# Whatever values provided here are validated against the schema from
|
789
|
+
# [ `DescribeAddonConfiguration` ][1].
|
790
|
+
#
|
791
|
+
#
|
792
|
+
#
|
793
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonConfiguration.html
|
794
|
+
# @return [String]
|
795
|
+
#
|
813
796
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateAddonRequest AWS API Documentation
|
814
797
|
#
|
815
798
|
class CreateAddonRequest < Struct.new(
|
@@ -819,7 +802,8 @@ module Aws::EKS
|
|
819
802
|
:service_account_role_arn,
|
820
803
|
:resolve_conflicts,
|
821
804
|
:client_request_token,
|
822
|
-
:tags
|
805
|
+
:tags,
|
806
|
+
:configuration_values)
|
823
807
|
SENSITIVE = []
|
824
808
|
include Aws::Structure
|
825
809
|
end
|
@@ -841,53 +825,6 @@ module Aws::EKS
|
|
841
825
|
include Aws::Structure
|
842
826
|
end
|
843
827
|
|
844
|
-
# @note When making an API call, you may pass CreateClusterRequest
|
845
|
-
# data as a hash:
|
846
|
-
#
|
847
|
-
# {
|
848
|
-
# name: "ClusterName", # required
|
849
|
-
# version: "String",
|
850
|
-
# role_arn: "String", # required
|
851
|
-
# resources_vpc_config: { # required
|
852
|
-
# subnet_ids: ["String"],
|
853
|
-
# security_group_ids: ["String"],
|
854
|
-
# endpoint_public_access: false,
|
855
|
-
# endpoint_private_access: false,
|
856
|
-
# public_access_cidrs: ["String"],
|
857
|
-
# },
|
858
|
-
# kubernetes_network_config: {
|
859
|
-
# service_ipv_4_cidr: "String",
|
860
|
-
# ip_family: "ipv4", # accepts ipv4, ipv6
|
861
|
-
# },
|
862
|
-
# logging: {
|
863
|
-
# cluster_logging: [
|
864
|
-
# {
|
865
|
-
# types: ["api"], # accepts api, audit, authenticator, controllerManager, scheduler
|
866
|
-
# enabled: false,
|
867
|
-
# },
|
868
|
-
# ],
|
869
|
-
# },
|
870
|
-
# client_request_token: "String",
|
871
|
-
# tags: {
|
872
|
-
# "TagKey" => "TagValue",
|
873
|
-
# },
|
874
|
-
# encryption_config: [
|
875
|
-
# {
|
876
|
-
# resources: ["String"],
|
877
|
-
# provider: {
|
878
|
-
# key_arn: "String",
|
879
|
-
# },
|
880
|
-
# },
|
881
|
-
# ],
|
882
|
-
# outpost_config: {
|
883
|
-
# outpost_arns: ["String"], # required
|
884
|
-
# control_plane_instance_type: "String", # required
|
885
|
-
# control_plane_placement: {
|
886
|
-
# group_name: "String",
|
887
|
-
# },
|
888
|
-
# },
|
889
|
-
# }
|
890
|
-
#
|
891
828
|
# @!attribute [rw] name
|
892
829
|
# The unique name to give to your cluster.
|
893
830
|
# @return [String]
|
@@ -1013,28 +950,6 @@ module Aws::EKS
|
|
1013
950
|
include Aws::Structure
|
1014
951
|
end
|
1015
952
|
|
1016
|
-
# @note When making an API call, you may pass CreateFargateProfileRequest
|
1017
|
-
# data as a hash:
|
1018
|
-
#
|
1019
|
-
# {
|
1020
|
-
# fargate_profile_name: "String", # required
|
1021
|
-
# cluster_name: "String", # required
|
1022
|
-
# pod_execution_role_arn: "String", # required
|
1023
|
-
# subnets: ["String"],
|
1024
|
-
# selectors: [
|
1025
|
-
# {
|
1026
|
-
# namespace: "String",
|
1027
|
-
# labels: {
|
1028
|
-
# "String" => "String",
|
1029
|
-
# },
|
1030
|
-
# },
|
1031
|
-
# ],
|
1032
|
-
# client_request_token: "String",
|
1033
|
-
# tags: {
|
1034
|
-
# "TagKey" => "TagValue",
|
1035
|
-
# },
|
1036
|
-
# }
|
1037
|
-
#
|
1038
953
|
# @!attribute [rw] fargate_profile_name
|
1039
954
|
# The name of the Fargate profile.
|
1040
955
|
# @return [String]
|
@@ -1112,54 +1027,6 @@ module Aws::EKS
|
|
1112
1027
|
include Aws::Structure
|
1113
1028
|
end
|
1114
1029
|
|
1115
|
-
# @note When making an API call, you may pass CreateNodegroupRequest
|
1116
|
-
# data as a hash:
|
1117
|
-
#
|
1118
|
-
# {
|
1119
|
-
# cluster_name: "String", # required
|
1120
|
-
# nodegroup_name: "String", # required
|
1121
|
-
# scaling_config: {
|
1122
|
-
# min_size: 1,
|
1123
|
-
# max_size: 1,
|
1124
|
-
# desired_size: 1,
|
1125
|
-
# },
|
1126
|
-
# disk_size: 1,
|
1127
|
-
# subnets: ["String"], # required
|
1128
|
-
# instance_types: ["String"],
|
1129
|
-
# ami_type: "AL2_x86_64", # accepts AL2_x86_64, AL2_x86_64_GPU, AL2_ARM_64, CUSTOM, BOTTLEROCKET_ARM_64, BOTTLEROCKET_x86_64, BOTTLEROCKET_ARM_64_NVIDIA, BOTTLEROCKET_x86_64_NVIDIA
|
1130
|
-
# remote_access: {
|
1131
|
-
# ec2_ssh_key: "String",
|
1132
|
-
# source_security_groups: ["String"],
|
1133
|
-
# },
|
1134
|
-
# node_role: "String", # required
|
1135
|
-
# labels: {
|
1136
|
-
# "labelKey" => "labelValue",
|
1137
|
-
# },
|
1138
|
-
# taints: [
|
1139
|
-
# {
|
1140
|
-
# key: "taintKey",
|
1141
|
-
# value: "taintValue",
|
1142
|
-
# effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
|
1143
|
-
# },
|
1144
|
-
# ],
|
1145
|
-
# tags: {
|
1146
|
-
# "TagKey" => "TagValue",
|
1147
|
-
# },
|
1148
|
-
# client_request_token: "String",
|
1149
|
-
# launch_template: {
|
1150
|
-
# name: "String",
|
1151
|
-
# version: "String",
|
1152
|
-
# id: "String",
|
1153
|
-
# },
|
1154
|
-
# update_config: {
|
1155
|
-
# max_unavailable: 1,
|
1156
|
-
# max_unavailable_percentage: 1,
|
1157
|
-
# },
|
1158
|
-
# capacity_type: "ON_DEMAND", # accepts ON_DEMAND, SPOT
|
1159
|
-
# version: "String",
|
1160
|
-
# release_version: "String",
|
1161
|
-
# }
|
1162
|
-
#
|
1163
1030
|
# @!attribute [rw] cluster_name
|
1164
1031
|
# The name of the cluster to create the node group in.
|
1165
1032
|
# @return [String]
|
@@ -1385,15 +1252,6 @@ module Aws::EKS
|
|
1385
1252
|
include Aws::Structure
|
1386
1253
|
end
|
1387
1254
|
|
1388
|
-
# @note When making an API call, you may pass DeleteAddonRequest
|
1389
|
-
# data as a hash:
|
1390
|
-
#
|
1391
|
-
# {
|
1392
|
-
# cluster_name: "ClusterName", # required
|
1393
|
-
# addon_name: "String", # required
|
1394
|
-
# preserve: false,
|
1395
|
-
# }
|
1396
|
-
#
|
1397
1255
|
# @!attribute [rw] cluster_name
|
1398
1256
|
# The name of the cluster to delete the add-on from.
|
1399
1257
|
# @return [String]
|
@@ -1410,7 +1268,7 @@ module Aws::EKS
|
|
1410
1268
|
# @!attribute [rw] preserve
|
1411
1269
|
# Specifying this option preserves the add-on software on your cluster
|
1412
1270
|
# but Amazon EKS stops managing any settings for the add-on. If an IAM
|
1413
|
-
# account is associated with the add-on, it
|
1271
|
+
# account is associated with the add-on, it isn't removed.
|
1414
1272
|
# @return [Boolean]
|
1415
1273
|
#
|
1416
1274
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteAddonRequest AWS API Documentation
|
@@ -1440,13 +1298,6 @@ module Aws::EKS
|
|
1440
1298
|
include Aws::Structure
|
1441
1299
|
end
|
1442
1300
|
|
1443
|
-
# @note When making an API call, you may pass DeleteClusterRequest
|
1444
|
-
# data as a hash:
|
1445
|
-
#
|
1446
|
-
# {
|
1447
|
-
# name: "String", # required
|
1448
|
-
# }
|
1449
|
-
#
|
1450
1301
|
# @!attribute [rw] name
|
1451
1302
|
# The name of the cluster to delete.
|
1452
1303
|
# @return [String]
|
@@ -1471,14 +1322,6 @@ module Aws::EKS
|
|
1471
1322
|
include Aws::Structure
|
1472
1323
|
end
|
1473
1324
|
|
1474
|
-
# @note When making an API call, you may pass DeleteFargateProfileRequest
|
1475
|
-
# data as a hash:
|
1476
|
-
#
|
1477
|
-
# {
|
1478
|
-
# cluster_name: "String", # required
|
1479
|
-
# fargate_profile_name: "String", # required
|
1480
|
-
# }
|
1481
|
-
#
|
1482
1325
|
# @!attribute [rw] cluster_name
|
1483
1326
|
# The name of the Amazon EKS cluster associated with the Fargate
|
1484
1327
|
# profile to delete.
|
@@ -1509,14 +1352,6 @@ module Aws::EKS
|
|
1509
1352
|
include Aws::Structure
|
1510
1353
|
end
|
1511
1354
|
|
1512
|
-
# @note When making an API call, you may pass DeleteNodegroupRequest
|
1513
|
-
# data as a hash:
|
1514
|
-
#
|
1515
|
-
# {
|
1516
|
-
# cluster_name: "String", # required
|
1517
|
-
# nodegroup_name: "String", # required
|
1518
|
-
# }
|
1519
|
-
#
|
1520
1355
|
# @!attribute [rw] cluster_name
|
1521
1356
|
# The name of the Amazon EKS cluster that is associated with your node
|
1522
1357
|
# group.
|
@@ -1547,13 +1382,6 @@ module Aws::EKS
|
|
1547
1382
|
include Aws::Structure
|
1548
1383
|
end
|
1549
1384
|
|
1550
|
-
# @note When making an API call, you may pass DeregisterClusterRequest
|
1551
|
-
# data as a hash:
|
1552
|
-
#
|
1553
|
-
# {
|
1554
|
-
# name: "String", # required
|
1555
|
-
# }
|
1556
|
-
#
|
1557
1385
|
# @!attribute [rw] name
|
1558
1386
|
# The name of the connected cluster to deregister.
|
1559
1387
|
# @return [String]
|
@@ -1578,14 +1406,61 @@ module Aws::EKS
|
|
1578
1406
|
include Aws::Structure
|
1579
1407
|
end
|
1580
1408
|
|
1581
|
-
#
|
1582
|
-
#
|
1409
|
+
# @!attribute [rw] addon_name
|
1410
|
+
# The name of the add-on. The name must match one of the names
|
1411
|
+
# returned by [ `DescribeAddonVersions` ][1].
|
1412
|
+
#
|
1413
|
+
#
|
1414
|
+
#
|
1415
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html
|
1416
|
+
# @return [String]
|
1417
|
+
#
|
1418
|
+
# @!attribute [rw] addon_version
|
1419
|
+
# The version of the add-on. The version must match one of the
|
1420
|
+
# versions returned by [ `DescribeAddonVersions` ][1].
|
1421
|
+
#
|
1422
|
+
#
|
1423
|
+
#
|
1424
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html
|
1425
|
+
# @return [String]
|
1426
|
+
#
|
1427
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonConfigurationRequest AWS API Documentation
|
1428
|
+
#
|
1429
|
+
class DescribeAddonConfigurationRequest < Struct.new(
|
1430
|
+
:addon_name,
|
1431
|
+
:addon_version)
|
1432
|
+
SENSITIVE = []
|
1433
|
+
include Aws::Structure
|
1434
|
+
end
|
1435
|
+
|
1436
|
+
# @!attribute [rw] addon_name
|
1437
|
+
# The name of the add-on.
|
1438
|
+
# @return [String]
|
1439
|
+
#
|
1440
|
+
# @!attribute [rw] addon_version
|
1441
|
+
# The version of the add-on. The version must match one of the
|
1442
|
+
# versions returned by [ `DescribeAddonVersions` ][1].
|
1443
|
+
#
|
1444
|
+
#
|
1445
|
+
#
|
1446
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonVersions.html
|
1447
|
+
# @return [String]
|
1448
|
+
#
|
1449
|
+
# @!attribute [rw] configuration_schema
|
1450
|
+
# A JSON schema used to validate provided configuration values when
|
1451
|
+
# creating or updating an addon.
|
1452
|
+
# @return [String]
|
1583
1453
|
#
|
1584
|
-
#
|
1585
|
-
# cluster_name: "ClusterName", # required
|
1586
|
-
# addon_name: "String", # required
|
1587
|
-
# }
|
1454
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonConfigurationResponse AWS API Documentation
|
1588
1455
|
#
|
1456
|
+
class DescribeAddonConfigurationResponse < Struct.new(
|
1457
|
+
:addon_name,
|
1458
|
+
:addon_version,
|
1459
|
+
:configuration_schema)
|
1460
|
+
SENSITIVE = []
|
1461
|
+
include Aws::Structure
|
1462
|
+
end
|
1463
|
+
|
1589
1464
|
# @!attribute [rw] cluster_name
|
1590
1465
|
# The name of the cluster.
|
1591
1466
|
# @return [String]
|
@@ -1625,18 +1500,8 @@ module Aws::EKS
|
|
1625
1500
|
include Aws::Structure
|
1626
1501
|
end
|
1627
1502
|
|
1628
|
-
# @note When making an API call, you may pass DescribeAddonVersionsRequest
|
1629
|
-
# data as a hash:
|
1630
|
-
#
|
1631
|
-
# {
|
1632
|
-
# kubernetes_version: "String",
|
1633
|
-
# max_results: 1,
|
1634
|
-
# next_token: "String",
|
1635
|
-
# addon_name: "String",
|
1636
|
-
# }
|
1637
|
-
#
|
1638
1503
|
# @!attribute [rw] kubernetes_version
|
1639
|
-
# The Kubernetes versions that the add-on
|
1504
|
+
# The Kubernetes versions that you can use the add-on with.
|
1640
1505
|
# @return [String]
|
1641
1506
|
#
|
1642
1507
|
# @!attribute [rw] max_results
|
@@ -1666,20 +1531,38 @@ module Aws::EKS
|
|
1666
1531
|
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html
|
1667
1532
|
# @return [String]
|
1668
1533
|
#
|
1534
|
+
# @!attribute [rw] types
|
1535
|
+
# The type of the add-on. For valid `types`, don't specify a value
|
1536
|
+
# for this property.
|
1537
|
+
# @return [Array<String>]
|
1538
|
+
#
|
1539
|
+
# @!attribute [rw] publishers
|
1540
|
+
# The publisher of the add-on. For valid `publishers`, don't specify
|
1541
|
+
# a value for this property.
|
1542
|
+
# @return [Array<String>]
|
1543
|
+
#
|
1544
|
+
# @!attribute [rw] owners
|
1545
|
+
# The owner of the add-on. For valid `owners`, don't specify a value
|
1546
|
+
# for this property.
|
1547
|
+
# @return [Array<String>]
|
1548
|
+
#
|
1669
1549
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonVersionsRequest AWS API Documentation
|
1670
1550
|
#
|
1671
1551
|
class DescribeAddonVersionsRequest < Struct.new(
|
1672
1552
|
:kubernetes_version,
|
1673
1553
|
:max_results,
|
1674
1554
|
:next_token,
|
1675
|
-
:addon_name
|
1555
|
+
:addon_name,
|
1556
|
+
:types,
|
1557
|
+
:publishers,
|
1558
|
+
:owners)
|
1676
1559
|
SENSITIVE = []
|
1677
1560
|
include Aws::Structure
|
1678
1561
|
end
|
1679
1562
|
|
1680
1563
|
# @!attribute [rw] addons
|
1681
|
-
# The list of available versions with Kubernetes version
|
1682
|
-
#
|
1564
|
+
# The list of available versions with Kubernetes version compatibility
|
1565
|
+
# and other properties.
|
1683
1566
|
# @return [Array<Types::AddonInfo>]
|
1684
1567
|
#
|
1685
1568
|
# @!attribute [rw] next_token
|
@@ -1705,13 +1588,6 @@ module Aws::EKS
|
|
1705
1588
|
include Aws::Structure
|
1706
1589
|
end
|
1707
1590
|
|
1708
|
-
# @note When making an API call, you may pass DescribeClusterRequest
|
1709
|
-
# data as a hash:
|
1710
|
-
#
|
1711
|
-
# {
|
1712
|
-
# name: "String", # required
|
1713
|
-
# }
|
1714
|
-
#
|
1715
1591
|
# @!attribute [rw] name
|
1716
1592
|
# The name of the cluster to describe.
|
1717
1593
|
# @return [String]
|
@@ -1736,14 +1612,6 @@ module Aws::EKS
|
|
1736
1612
|
include Aws::Structure
|
1737
1613
|
end
|
1738
1614
|
|
1739
|
-
# @note When making an API call, you may pass DescribeFargateProfileRequest
|
1740
|
-
# data as a hash:
|
1741
|
-
#
|
1742
|
-
# {
|
1743
|
-
# cluster_name: "String", # required
|
1744
|
-
# fargate_profile_name: "String", # required
|
1745
|
-
# }
|
1746
|
-
#
|
1747
1615
|
# @!attribute [rw] cluster_name
|
1748
1616
|
# The name of the Amazon EKS cluster associated with the Fargate
|
1749
1617
|
# profile.
|
@@ -1774,17 +1642,6 @@ module Aws::EKS
|
|
1774
1642
|
include Aws::Structure
|
1775
1643
|
end
|
1776
1644
|
|
1777
|
-
# @note When making an API call, you may pass DescribeIdentityProviderConfigRequest
|
1778
|
-
# data as a hash:
|
1779
|
-
#
|
1780
|
-
# {
|
1781
|
-
# cluster_name: "String", # required
|
1782
|
-
# identity_provider_config: { # required
|
1783
|
-
# type: "String", # required
|
1784
|
-
# name: "String", # required
|
1785
|
-
# },
|
1786
|
-
# }
|
1787
|
-
#
|
1788
1645
|
# @!attribute [rw] cluster_name
|
1789
1646
|
# The cluster name that the identity provider configuration is
|
1790
1647
|
# associated to.
|
@@ -1816,14 +1673,6 @@ module Aws::EKS
|
|
1816
1673
|
include Aws::Structure
|
1817
1674
|
end
|
1818
1675
|
|
1819
|
-
# @note When making an API call, you may pass DescribeNodegroupRequest
|
1820
|
-
# data as a hash:
|
1821
|
-
#
|
1822
|
-
# {
|
1823
|
-
# cluster_name: "String", # required
|
1824
|
-
# nodegroup_name: "String", # required
|
1825
|
-
# }
|
1826
|
-
#
|
1827
1676
|
# @!attribute [rw] cluster_name
|
1828
1677
|
# The name of the Amazon EKS cluster associated with the node group.
|
1829
1678
|
# @return [String]
|
@@ -1853,16 +1702,6 @@ module Aws::EKS
|
|
1853
1702
|
include Aws::Structure
|
1854
1703
|
end
|
1855
1704
|
|
1856
|
-
# @note When making an API call, you may pass DescribeUpdateRequest
|
1857
|
-
# data as a hash:
|
1858
|
-
#
|
1859
|
-
# {
|
1860
|
-
# name: "String", # required
|
1861
|
-
# update_id: "String", # required
|
1862
|
-
# nodegroup_name: "String",
|
1863
|
-
# addon_name: "String",
|
1864
|
-
# }
|
1865
|
-
#
|
1866
1705
|
# @!attribute [rw] name
|
1867
1706
|
# The name of the Amazon EKS cluster associated with the update.
|
1868
1707
|
# @return [String]
|
@@ -1909,18 +1748,6 @@ module Aws::EKS
|
|
1909
1748
|
include Aws::Structure
|
1910
1749
|
end
|
1911
1750
|
|
1912
|
-
# @note When making an API call, you may pass DisassociateIdentityProviderConfigRequest
|
1913
|
-
# data as a hash:
|
1914
|
-
#
|
1915
|
-
# {
|
1916
|
-
# cluster_name: "String", # required
|
1917
|
-
# identity_provider_config: { # required
|
1918
|
-
# type: "String", # required
|
1919
|
-
# name: "String", # required
|
1920
|
-
# },
|
1921
|
-
# client_request_token: "String",
|
1922
|
-
# }
|
1923
|
-
#
|
1924
1751
|
# @!attribute [rw] cluster_name
|
1925
1752
|
# The name of the cluster to disassociate an identity provider from.
|
1926
1753
|
# @return [String]
|
@@ -1961,16 +1788,6 @@ module Aws::EKS
|
|
1961
1788
|
|
1962
1789
|
# The encryption configuration for the cluster.
|
1963
1790
|
#
|
1964
|
-
# @note When making an API call, you may pass EncryptionConfig
|
1965
|
-
# data as a hash:
|
1966
|
-
#
|
1967
|
-
# {
|
1968
|
-
# resources: ["String"],
|
1969
|
-
# provider: {
|
1970
|
-
# key_arn: "String",
|
1971
|
-
# },
|
1972
|
-
# }
|
1973
|
-
#
|
1974
1791
|
# @!attribute [rw] resources
|
1975
1792
|
# Specifies the resources to be encrypted. The only supported value is
|
1976
1793
|
# "secrets".
|
@@ -2106,16 +1923,6 @@ module Aws::EKS
|
|
2106
1923
|
|
2107
1924
|
# An object representing an Fargate profile selector.
|
2108
1925
|
#
|
2109
|
-
# @note When making an API call, you may pass FargateProfileSelector
|
2110
|
-
# data as a hash:
|
2111
|
-
#
|
2112
|
-
# {
|
2113
|
-
# namespace: "String",
|
2114
|
-
# labels: {
|
2115
|
-
# "String" => "String",
|
2116
|
-
# },
|
2117
|
-
# }
|
2118
|
-
#
|
2119
1926
|
# @!attribute [rw] namespace
|
2120
1927
|
# The Kubernetes namespace that the selector should match.
|
2121
1928
|
# @return [String]
|
@@ -2156,14 +1963,6 @@ module Aws::EKS
|
|
2156
1963
|
|
2157
1964
|
# An object representing an identity provider configuration.
|
2158
1965
|
#
|
2159
|
-
# @note When making an API call, you may pass IdentityProviderConfig
|
2160
|
-
# data as a hash:
|
2161
|
-
#
|
2162
|
-
# {
|
2163
|
-
# type: "String", # required
|
2164
|
-
# name: "String", # required
|
2165
|
-
# }
|
2166
|
-
#
|
2167
1966
|
# @!attribute [rw] type
|
2168
1967
|
# The type of the identity provider configuration. The only type
|
2169
1968
|
# available is `oidc`.
|
@@ -2354,25 +2153,17 @@ module Aws::EKS
|
|
2354
2153
|
|
2355
2154
|
# The Kubernetes network configuration for the cluster.
|
2356
2155
|
#
|
2357
|
-
# @note When making an API call, you may pass KubernetesNetworkConfigRequest
|
2358
|
-
# data as a hash:
|
2359
|
-
#
|
2360
|
-
# {
|
2361
|
-
# service_ipv_4_cidr: "String",
|
2362
|
-
# ip_family: "ipv4", # accepts ipv4, ipv6
|
2363
|
-
# }
|
2364
|
-
#
|
2365
2156
|
# @!attribute [rw] service_ipv_4_cidr
|
2366
2157
|
# Don't specify a value if you select `ipv6` for **ipFamily**. The
|
2367
2158
|
# CIDR block to assign Kubernetes service IP addresses from. If you
|
2368
2159
|
# 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
|
2370
|
-
# specify a block that does not overlap with resources in other
|
2160
|
+
# `10.100.0.0/16` or `172.20.0.0/16` CIDR blocks. We recommend that
|
2161
|
+
# you specify a block that does not overlap with resources in other
|
2371
2162
|
# networks that are peered or connected to your VPC. The block must
|
2372
2163
|
# meet the following requirements:
|
2373
2164
|
#
|
2374
|
-
# * Within one of the following private IP address blocks:
|
2375
|
-
# 172.16.0.0/12
|
2165
|
+
# * Within one of the following private IP address blocks:
|
2166
|
+
# `10.0.0.0/8`, `172.16.0.0/12`, or `192.168.0.0/16`.
|
2376
2167
|
#
|
2377
2168
|
# * Doesn't overlap with any CIDR block assigned to the VPC that you
|
2378
2169
|
# selected for VPC.
|
@@ -2389,17 +2180,17 @@ module Aws::EKS
|
|
2389
2180
|
# default. You can only specify an IP family when you create a cluster
|
2390
2181
|
# and can't change this value once the cluster is created. If you
|
2391
2182
|
# specify `ipv6`, the VPC and subnets that you specify for cluster
|
2392
|
-
# creation must have both IPv4 and IPv6 CIDR blocks assigned to
|
2393
|
-
# You can't specify `ipv6` for clusters in China Regions.
|
2183
|
+
# creation must have both `IPv4` and `IPv6` CIDR blocks assigned to
|
2184
|
+
# them. You can't specify `ipv6` for clusters in China Regions.
|
2394
2185
|
#
|
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
|
2397
|
-
# `ipv6`, then ensure that your VPC meets the requirements
|
2398
|
-
# the considerations listed in [Assigning IPv6 addresses to
|
2399
|
-
# services][1] in the Amazon EKS User Guide. Kubernetes
|
2400
|
-
# services IPv6 addresses from the unique local address
|
2401
|
-
# (fc00::/7)
|
2402
|
-
# addresses are assigned from the subnet's IPv6 CIDR.
|
2186
|
+
# You can only specify `ipv6` for `1.21` and later clusters that use
|
2187
|
+
# version `1.10.1` or later of the Amazon VPC CNI add-on. If you
|
2188
|
+
# specify `ipv6`, then ensure that your VPC meets the requirements
|
2189
|
+
# listed in the considerations listed in [Assigning IPv6 addresses to
|
2190
|
+
# pods and services][1] in the Amazon EKS User Guide. Kubernetes
|
2191
|
+
# assigns services `IPv6` addresses from the unique local address
|
2192
|
+
# range `(fc00::/7)`. You can't specify a custom `IPv6` CIDR block.
|
2193
|
+
# Pod addresses are assigned from the subnet's `IPv6` CIDR.
|
2403
2194
|
#
|
2404
2195
|
#
|
2405
2196
|
#
|
@@ -2479,15 +2270,6 @@ module Aws::EKS
|
|
2479
2270
|
# [6]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html
|
2480
2271
|
# [7]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
|
2481
2272
|
#
|
2482
|
-
# @note When making an API call, you may pass LaunchTemplateSpecification
|
2483
|
-
# data as a hash:
|
2484
|
-
#
|
2485
|
-
# {
|
2486
|
-
# name: "String",
|
2487
|
-
# version: "String",
|
2488
|
-
# id: "String",
|
2489
|
-
# }
|
2490
|
-
#
|
2491
2273
|
# @!attribute [rw] name
|
2492
2274
|
# The name of the launch template.
|
2493
2275
|
#
|
@@ -2517,15 +2299,6 @@ module Aws::EKS
|
|
2517
2299
|
include Aws::Structure
|
2518
2300
|
end
|
2519
2301
|
|
2520
|
-
# @note When making an API call, you may pass ListAddonsRequest
|
2521
|
-
# data as a hash:
|
2522
|
-
#
|
2523
|
-
# {
|
2524
|
-
# cluster_name: "ClusterName", # required
|
2525
|
-
# max_results: 1,
|
2526
|
-
# next_token: "String",
|
2527
|
-
# }
|
2528
|
-
#
|
2529
2302
|
# @!attribute [rw] cluster_name
|
2530
2303
|
# The name of the cluster.
|
2531
2304
|
# @return [String]
|
@@ -2591,15 +2364,6 @@ module Aws::EKS
|
|
2591
2364
|
include Aws::Structure
|
2592
2365
|
end
|
2593
2366
|
|
2594
|
-
# @note When making an API call, you may pass ListClustersRequest
|
2595
|
-
# data as a hash:
|
2596
|
-
#
|
2597
|
-
# {
|
2598
|
-
# max_results: 1,
|
2599
|
-
# next_token: "String",
|
2600
|
-
# include: ["String"],
|
2601
|
-
# }
|
2602
|
-
#
|
2603
2367
|
# @!attribute [rw] max_results
|
2604
2368
|
# The maximum number of cluster results returned by `ListClusters` in
|
2605
2369
|
# paginated output. When you use this parameter, `ListClusters`
|
@@ -2662,15 +2426,6 @@ module Aws::EKS
|
|
2662
2426
|
include Aws::Structure
|
2663
2427
|
end
|
2664
2428
|
|
2665
|
-
# @note When making an API call, you may pass ListFargateProfilesRequest
|
2666
|
-
# data as a hash:
|
2667
|
-
#
|
2668
|
-
# {
|
2669
|
-
# cluster_name: "String", # required
|
2670
|
-
# max_results: 1,
|
2671
|
-
# next_token: "String",
|
2672
|
-
# }
|
2673
|
-
#
|
2674
2429
|
# @!attribute [rw] cluster_name
|
2675
2430
|
# The name of the Amazon EKS cluster that you would like to list
|
2676
2431
|
# Fargate profiles in.
|
@@ -2728,15 +2483,6 @@ module Aws::EKS
|
|
2728
2483
|
include Aws::Structure
|
2729
2484
|
end
|
2730
2485
|
|
2731
|
-
# @note When making an API call, you may pass ListIdentityProviderConfigsRequest
|
2732
|
-
# data as a hash:
|
2733
|
-
#
|
2734
|
-
# {
|
2735
|
-
# cluster_name: "String", # required
|
2736
|
-
# max_results: 1,
|
2737
|
-
# next_token: "String",
|
2738
|
-
# }
|
2739
|
-
#
|
2740
2486
|
# @!attribute [rw] cluster_name
|
2741
2487
|
# The cluster name that you want to list identity provider
|
2742
2488
|
# configurations for.
|
@@ -2793,15 +2539,6 @@ module Aws::EKS
|
|
2793
2539
|
include Aws::Structure
|
2794
2540
|
end
|
2795
2541
|
|
2796
|
-
# @note When making an API call, you may pass ListNodegroupsRequest
|
2797
|
-
# data as a hash:
|
2798
|
-
#
|
2799
|
-
# {
|
2800
|
-
# cluster_name: "String", # required
|
2801
|
-
# max_results: 1,
|
2802
|
-
# next_token: "String",
|
2803
|
-
# }
|
2804
|
-
#
|
2805
2542
|
# @!attribute [rw] cluster_name
|
2806
2543
|
# The name of the Amazon EKS cluster that you would like to list node
|
2807
2544
|
# groups in.
|
@@ -2858,13 +2595,6 @@ module Aws::EKS
|
|
2858
2595
|
include Aws::Structure
|
2859
2596
|
end
|
2860
2597
|
|
2861
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2862
|
-
# data as a hash:
|
2863
|
-
#
|
2864
|
-
# {
|
2865
|
-
# resource_arn: "String", # required
|
2866
|
-
# }
|
2867
|
-
#
|
2868
2598
|
# @!attribute [rw] resource_arn
|
2869
2599
|
# The Amazon Resource Name (ARN) that identifies the resource for
|
2870
2600
|
# which to list the tags. Currently, the supported resources are
|
@@ -2891,17 +2621,6 @@ module Aws::EKS
|
|
2891
2621
|
include Aws::Structure
|
2892
2622
|
end
|
2893
2623
|
|
2894
|
-
# @note When making an API call, you may pass ListUpdatesRequest
|
2895
|
-
# data as a hash:
|
2896
|
-
#
|
2897
|
-
# {
|
2898
|
-
# name: "String", # required
|
2899
|
-
# nodegroup_name: "String",
|
2900
|
-
# addon_name: "String",
|
2901
|
-
# next_token: "String",
|
2902
|
-
# max_results: 1,
|
2903
|
-
# }
|
2904
|
-
#
|
2905
2624
|
# @!attribute [rw] name
|
2906
2625
|
# The name of the Amazon EKS cluster to list updates for.
|
2907
2626
|
# @return [String]
|
@@ -2967,14 +2686,6 @@ module Aws::EKS
|
|
2967
2686
|
# An object representing the enabled or disabled Kubernetes control
|
2968
2687
|
# plane logs for your cluster.
|
2969
2688
|
#
|
2970
|
-
# @note When making an API call, you may pass LogSetup
|
2971
|
-
# data as a hash:
|
2972
|
-
#
|
2973
|
-
# {
|
2974
|
-
# types: ["api"], # accepts api, audit, authenticator, controllerManager, scheduler
|
2975
|
-
# enabled: false,
|
2976
|
-
# }
|
2977
|
-
#
|
2978
2689
|
# @!attribute [rw] types
|
2979
2690
|
# The available cluster control plane log types.
|
2980
2691
|
# @return [Array<String>]
|
@@ -2998,18 +2709,6 @@ module Aws::EKS
|
|
2998
2709
|
# An object representing the logging configuration for resources in your
|
2999
2710
|
# cluster.
|
3000
2711
|
#
|
3001
|
-
# @note When making an API call, you may pass Logging
|
3002
|
-
# data as a hash:
|
3003
|
-
#
|
3004
|
-
# {
|
3005
|
-
# cluster_logging: [
|
3006
|
-
# {
|
3007
|
-
# types: ["api"], # accepts api, audit, authenticator, controllerManager, scheduler
|
3008
|
-
# enabled: false,
|
3009
|
-
# },
|
3010
|
-
# ],
|
3011
|
-
# }
|
3012
|
-
#
|
3013
2712
|
# @!attribute [rw] cluster_logging
|
3014
2713
|
# The cluster control plane logging configuration for your cluster.
|
3015
2714
|
# @return [Array<Types::LogSetup>]
|
@@ -3022,6 +2721,26 @@ module Aws::EKS
|
|
3022
2721
|
include Aws::Structure
|
3023
2722
|
end
|
3024
2723
|
|
2724
|
+
# Information about an Amazon EKS add-on from the Amazon Web Services
|
2725
|
+
# Marketplace.
|
2726
|
+
#
|
2727
|
+
# @!attribute [rw] product_id
|
2728
|
+
# The product ID from the Amazon Web Services Marketplace.
|
2729
|
+
# @return [String]
|
2730
|
+
#
|
2731
|
+
# @!attribute [rw] product_url
|
2732
|
+
# The product URL from the Amazon Web Services Marketplace.
|
2733
|
+
# @return [String]
|
2734
|
+
#
|
2735
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/MarketplaceInformation AWS API Documentation
|
2736
|
+
#
|
2737
|
+
class MarketplaceInformation < Struct.new(
|
2738
|
+
:product_id,
|
2739
|
+
:product_url)
|
2740
|
+
SENSITIVE = []
|
2741
|
+
include Aws::Structure
|
2742
|
+
end
|
2743
|
+
|
3025
2744
|
# An object representing an Amazon EKS managed node group.
|
3026
2745
|
#
|
3027
2746
|
# @!attribute [rw] nodegroup_name
|
@@ -3230,15 +2949,6 @@ module Aws::EKS
|
|
3230
2949
|
# node group, you must specify all or none of the properties. When
|
3231
2950
|
# updating a node group, you can specify any or none of the properties.
|
3232
2951
|
#
|
3233
|
-
# @note When making an API call, you may pass NodegroupScalingConfig
|
3234
|
-
# data as a hash:
|
3235
|
-
#
|
3236
|
-
# {
|
3237
|
-
# min_size: 1,
|
3238
|
-
# max_size: 1,
|
3239
|
-
# desired_size: 1,
|
3240
|
-
# }
|
3241
|
-
#
|
3242
2952
|
# @!attribute [rw] min_size
|
3243
2953
|
# The minimum number of nodes that the managed node group can scale in
|
3244
2954
|
# to.
|
@@ -3292,14 +3002,6 @@ module Aws::EKS
|
|
3292
3002
|
|
3293
3003
|
# The node group update configuration.
|
3294
3004
|
#
|
3295
|
-
# @note When making an API call, you may pass NodegroupUpdateConfig
|
3296
|
-
# data as a hash:
|
3297
|
-
#
|
3298
|
-
# {
|
3299
|
-
# max_unavailable: 1,
|
3300
|
-
# max_unavailable_percentage: 1,
|
3301
|
-
# }
|
3302
|
-
#
|
3303
3005
|
# @!attribute [rw] max_unavailable
|
3304
3006
|
# The maximum number of nodes unavailable at once during a version
|
3305
3007
|
# update. Nodes will be updated in parallel. This value or
|
@@ -3446,22 +3148,6 @@ module Aws::EKS
|
|
3446
3148
|
#
|
3447
3149
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/authenticate-oidc-identity-provider.html
|
3448
3150
|
#
|
3449
|
-
# @note When making an API call, you may pass OidcIdentityProviderConfigRequest
|
3450
|
-
# data as a hash:
|
3451
|
-
#
|
3452
|
-
# {
|
3453
|
-
# identity_provider_config_name: "String", # required
|
3454
|
-
# issuer_url: "String", # required
|
3455
|
-
# client_id: "String", # required
|
3456
|
-
# username_claim: "String",
|
3457
|
-
# username_prefix: "String",
|
3458
|
-
# groups_claim: "String",
|
3459
|
-
# groups_prefix: "String",
|
3460
|
-
# required_claims: {
|
3461
|
-
# "requiredClaimsKey" => "requiredClaimsValue",
|
3462
|
-
# },
|
3463
|
-
# }
|
3464
|
-
#
|
3465
3151
|
# @!attribute [rw] identity_provider_config_name
|
3466
3152
|
# The name of the OIDC provider configuration.
|
3467
3153
|
# @return [String]
|
@@ -3547,17 +3233,6 @@ module Aws::EKS
|
|
3547
3233
|
#
|
3548
3234
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/eks-outposts-local-cluster-create.html
|
3549
3235
|
#
|
3550
|
-
# @note When making an API call, you may pass OutpostConfigRequest
|
3551
|
-
# data as a hash:
|
3552
|
-
#
|
3553
|
-
# {
|
3554
|
-
# outpost_arns: ["String"], # required
|
3555
|
-
# control_plane_instance_type: "String", # required
|
3556
|
-
# control_plane_placement: {
|
3557
|
-
# group_name: "String",
|
3558
|
-
# },
|
3559
|
-
# }
|
3560
|
-
#
|
3561
3236
|
# @!attribute [rw] outpost_arns
|
3562
3237
|
# The ARN of the Outpost that you want to use for your local Amazon
|
3563
3238
|
# EKS cluster on Outposts. Only a single Outpost ARN is supported.
|
@@ -3583,8 +3258,8 @@ module Aws::EKS
|
|
3583
3258
|
#
|
3584
3259
|
# @!attribute [rw] control_plane_placement
|
3585
3260
|
# An object representing the placement configuration for all the
|
3586
|
-
# control plane
|
3587
|
-
# Web Services Outpost. For more information, see [Capacity
|
3261
|
+
# control plane instances of your local Amazon EKS cluster on an
|
3262
|
+
# Amazon Web Services Outpost. For more information, see [Capacity
|
3588
3263
|
# considerations][1] in the *Amazon EKS User Guide*.
|
3589
3264
|
#
|
3590
3265
|
#
|
@@ -3618,8 +3293,8 @@ module Aws::EKS
|
|
3618
3293
|
#
|
3619
3294
|
# @!attribute [rw] control_plane_placement
|
3620
3295
|
# An object representing the placement configuration for all the
|
3621
|
-
# control plane
|
3622
|
-
# Web Services Outpost. For more information, see [Capacity
|
3296
|
+
# control plane instances of your local Amazon EKS cluster on an
|
3297
|
+
# Amazon Web Services Outpost. For more information, see [Capacity
|
3623
3298
|
# considerations][1] in the *Amazon EKS User Guide*.
|
3624
3299
|
#
|
3625
3300
|
#
|
@@ -3640,13 +3315,6 @@ module Aws::EKS
|
|
3640
3315
|
# Identifies the Key Management Service (KMS) key used to encrypt the
|
3641
3316
|
# secrets.
|
3642
3317
|
#
|
3643
|
-
# @note When making an API call, you may pass Provider
|
3644
|
-
# data as a hash:
|
3645
|
-
#
|
3646
|
-
# {
|
3647
|
-
# key_arn: "String",
|
3648
|
-
# }
|
3649
|
-
#
|
3650
3318
|
# @!attribute [rw] key_arn
|
3651
3319
|
# Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must
|
3652
3320
|
# be symmetric, created in the same region as the cluster, and if the
|
@@ -3668,21 +3336,6 @@ module Aws::EKS
|
|
3668
3336
|
include Aws::Structure
|
3669
3337
|
end
|
3670
3338
|
|
3671
|
-
# @note When making an API call, you may pass RegisterClusterRequest
|
3672
|
-
# data as a hash:
|
3673
|
-
#
|
3674
|
-
# {
|
3675
|
-
# name: "ClusterName", # required
|
3676
|
-
# connector_config: { # required
|
3677
|
-
# role_arn: "String", # required
|
3678
|
-
# provider: "EKS_ANYWHERE", # required, accepts EKS_ANYWHERE, ANTHOS, GKE, AKS, OPENSHIFT, TANZU, RANCHER, EC2, OTHER
|
3679
|
-
# },
|
3680
|
-
# client_request_token: "String",
|
3681
|
-
# tags: {
|
3682
|
-
# "TagKey" => "TagValue",
|
3683
|
-
# },
|
3684
|
-
# }
|
3685
|
-
#
|
3686
3339
|
# @!attribute [rw] name
|
3687
3340
|
# Define a unique name for this cluster for your Region.
|
3688
3341
|
# @return [String]
|
@@ -3733,19 +3386,11 @@ module Aws::EKS
|
|
3733
3386
|
# An object representing the remote access configuration for the managed
|
3734
3387
|
# node group.
|
3735
3388
|
#
|
3736
|
-
# @note When making an API call, you may pass RemoteAccessConfig
|
3737
|
-
# data as a hash:
|
3738
|
-
#
|
3739
|
-
# {
|
3740
|
-
# ec2_ssh_key: "String",
|
3741
|
-
# source_security_groups: ["String"],
|
3742
|
-
# }
|
3743
|
-
#
|
3744
3389
|
# @!attribute [rw] ec2_ssh_key
|
3745
|
-
# The Amazon EC2 SSH key that provides access for SSH
|
3746
|
-
# with the nodes in the managed node group. For more
|
3747
|
-
# [Amazon EC2 key pairs and Linux instances][1] in
|
3748
|
-
# Compute Cloud User Guide for Linux Instances*.
|
3390
|
+
# The Amazon EC2 SSH key name that provides access for SSH
|
3391
|
+
# communication with the nodes in the managed node group. For more
|
3392
|
+
# information, see [Amazon EC2 key pairs and Linux instances][1] in
|
3393
|
+
# the *Amazon Elastic Compute Cloud User Guide for Linux Instances*.
|
3749
3394
|
#
|
3750
3395
|
#
|
3751
3396
|
#
|
@@ -3753,7 +3398,7 @@ module Aws::EKS
|
|
3753
3398
|
# @return [String]
|
3754
3399
|
#
|
3755
3400
|
# @!attribute [rw] source_security_groups
|
3756
|
-
# The security
|
3401
|
+
# The security group ids that are allowed SSH access (port 22) to the
|
3757
3402
|
# nodes. If you specify an Amazon EC2 SSH key but do not specify a
|
3758
3403
|
# source security group when you create a managed node group, then
|
3759
3404
|
# port 22 on the nodes is opened to the internet (0.0.0.0/0). For more
|
@@ -3913,16 +3558,6 @@ module Aws::EKS
|
|
3913
3558
|
include Aws::Structure
|
3914
3559
|
end
|
3915
3560
|
|
3916
|
-
# @note When making an API call, you may pass TagResourceRequest
|
3917
|
-
# data as a hash:
|
3918
|
-
#
|
3919
|
-
# {
|
3920
|
-
# resource_arn: "String", # required
|
3921
|
-
# tags: { # required
|
3922
|
-
# "TagKey" => "TagValue",
|
3923
|
-
# },
|
3924
|
-
# }
|
3925
|
-
#
|
3926
3561
|
# @!attribute [rw] resource_arn
|
3927
3562
|
# The Amazon Resource Name (ARN) of the resource to which to add tags.
|
3928
3563
|
# Currently, the supported resources are Amazon EKS clusters and
|
@@ -3954,15 +3589,6 @@ module Aws::EKS
|
|
3954
3589
|
#
|
3955
3590
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
3956
3591
|
#
|
3957
|
-
# @note When making an API call, you may pass Taint
|
3958
|
-
# data as a hash:
|
3959
|
-
#
|
3960
|
-
# {
|
3961
|
-
# key: "taintKey",
|
3962
|
-
# value: "taintValue",
|
3963
|
-
# effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
|
3964
|
-
# }
|
3965
|
-
#
|
3966
3592
|
# @!attribute [rw] key
|
3967
3593
|
# The key of the taint.
|
3968
3594
|
# @return [String]
|
@@ -4017,14 +3643,6 @@ module Aws::EKS
|
|
4017
3643
|
include Aws::Structure
|
4018
3644
|
end
|
4019
3645
|
|
4020
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
4021
|
-
# data as a hash:
|
4022
|
-
#
|
4023
|
-
# {
|
4024
|
-
# resource_arn: "String", # required
|
4025
|
-
# tag_keys: ["TagKey"], # required
|
4026
|
-
# }
|
4027
|
-
#
|
4028
3646
|
# @!attribute [rw] resource_arn
|
4029
3647
|
# The Amazon Resource Name (ARN) of the resource from which to delete
|
4030
3648
|
# tags. Currently, the supported resources are Amazon EKS clusters and
|
@@ -4088,18 +3706,6 @@ module Aws::EKS
|
|
4088
3706
|
include Aws::Structure
|
4089
3707
|
end
|
4090
3708
|
|
4091
|
-
# @note When making an API call, you may pass UpdateAddonRequest
|
4092
|
-
# data as a hash:
|
4093
|
-
#
|
4094
|
-
# {
|
4095
|
-
# cluster_name: "ClusterName", # required
|
4096
|
-
# addon_name: "String", # required
|
4097
|
-
# addon_version: "String",
|
4098
|
-
# service_account_role_arn: "RoleArn",
|
4099
|
-
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
4100
|
-
# client_request_token: "String",
|
4101
|
-
# }
|
4102
|
-
#
|
4103
3709
|
# @!attribute [rw] cluster_name
|
4104
3710
|
# The name of the cluster.
|
4105
3711
|
# @return [String]
|
@@ -4168,6 +3774,16 @@ module Aws::EKS
|
|
4168
3774
|
# not need to pass this option.
|
4169
3775
|
# @return [String]
|
4170
3776
|
#
|
3777
|
+
# @!attribute [rw] configuration_values
|
3778
|
+
# The set of configuration values for the add-on being created.
|
3779
|
+
# Whatever values provided here are validated against the schema from
|
3780
|
+
# [DescribeAddonConfiguration][1]
|
3781
|
+
#
|
3782
|
+
#
|
3783
|
+
#
|
3784
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_DescribeAddonConfiguration.html
|
3785
|
+
# @return [String]
|
3786
|
+
#
|
4171
3787
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdateAddonRequest AWS API Documentation
|
4172
3788
|
#
|
4173
3789
|
class UpdateAddonRequest < Struct.new(
|
@@ -4176,7 +3792,8 @@ module Aws::EKS
|
|
4176
3792
|
:addon_version,
|
4177
3793
|
:service_account_role_arn,
|
4178
3794
|
:resolve_conflicts,
|
4179
|
-
:client_request_token
|
3795
|
+
:client_request_token,
|
3796
|
+
:configuration_values)
|
4180
3797
|
SENSITIVE = []
|
4181
3798
|
include Aws::Structure
|
4182
3799
|
end
|
@@ -4193,29 +3810,6 @@ module Aws::EKS
|
|
4193
3810
|
include Aws::Structure
|
4194
3811
|
end
|
4195
3812
|
|
4196
|
-
# @note When making an API call, you may pass UpdateClusterConfigRequest
|
4197
|
-
# data as a hash:
|
4198
|
-
#
|
4199
|
-
# {
|
4200
|
-
# name: "String", # required
|
4201
|
-
# resources_vpc_config: {
|
4202
|
-
# subnet_ids: ["String"],
|
4203
|
-
# security_group_ids: ["String"],
|
4204
|
-
# endpoint_public_access: false,
|
4205
|
-
# endpoint_private_access: false,
|
4206
|
-
# public_access_cidrs: ["String"],
|
4207
|
-
# },
|
4208
|
-
# logging: {
|
4209
|
-
# cluster_logging: [
|
4210
|
-
# {
|
4211
|
-
# types: ["api"], # accepts api, audit, authenticator, controllerManager, scheduler
|
4212
|
-
# enabled: false,
|
4213
|
-
# },
|
4214
|
-
# ],
|
4215
|
-
# },
|
4216
|
-
# client_request_token: "String",
|
4217
|
-
# }
|
4218
|
-
#
|
4219
3813
|
# @!attribute [rw] name
|
4220
3814
|
# The name of the Amazon EKS cluster to update.
|
4221
3815
|
# @return [String]
|
@@ -4275,15 +3869,6 @@ module Aws::EKS
|
|
4275
3869
|
include Aws::Structure
|
4276
3870
|
end
|
4277
3871
|
|
4278
|
-
# @note When making an API call, you may pass UpdateClusterVersionRequest
|
4279
|
-
# data as a hash:
|
4280
|
-
#
|
4281
|
-
# {
|
4282
|
-
# name: "String", # required
|
4283
|
-
# version: "String", # required
|
4284
|
-
# client_request_token: "String",
|
4285
|
-
# }
|
4286
|
-
#
|
4287
3872
|
# @!attribute [rw] name
|
4288
3873
|
# The name of the Amazon EKS cluster to update.
|
4289
3874
|
# @return [String]
|
@@ -4325,16 +3910,6 @@ module Aws::EKS
|
|
4325
3910
|
# An object representing a Kubernetes label change for a managed node
|
4326
3911
|
# group.
|
4327
3912
|
#
|
4328
|
-
# @note When making an API call, you may pass UpdateLabelsPayload
|
4329
|
-
# data as a hash:
|
4330
|
-
#
|
4331
|
-
# {
|
4332
|
-
# add_or_update_labels: {
|
4333
|
-
# "labelKey" => "labelValue",
|
4334
|
-
# },
|
4335
|
-
# remove_labels: ["String"],
|
4336
|
-
# }
|
4337
|
-
#
|
4338
3913
|
# @!attribute [rw] add_or_update_labels
|
4339
3914
|
# Kubernetes labels to be added or updated.
|
4340
3915
|
# @return [Hash<String,String>]
|
@@ -4352,46 +3927,6 @@ module Aws::EKS
|
|
4352
3927
|
include Aws::Structure
|
4353
3928
|
end
|
4354
3929
|
|
4355
|
-
# @note When making an API call, you may pass UpdateNodegroupConfigRequest
|
4356
|
-
# data as a hash:
|
4357
|
-
#
|
4358
|
-
# {
|
4359
|
-
# cluster_name: "String", # required
|
4360
|
-
# nodegroup_name: "String", # required
|
4361
|
-
# labels: {
|
4362
|
-
# add_or_update_labels: {
|
4363
|
-
# "labelKey" => "labelValue",
|
4364
|
-
# },
|
4365
|
-
# remove_labels: ["String"],
|
4366
|
-
# },
|
4367
|
-
# taints: {
|
4368
|
-
# add_or_update_taints: [
|
4369
|
-
# {
|
4370
|
-
# key: "taintKey",
|
4371
|
-
# value: "taintValue",
|
4372
|
-
# effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
|
4373
|
-
# },
|
4374
|
-
# ],
|
4375
|
-
# remove_taints: [
|
4376
|
-
# {
|
4377
|
-
# key: "taintKey",
|
4378
|
-
# value: "taintValue",
|
4379
|
-
# effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
|
4380
|
-
# },
|
4381
|
-
# ],
|
4382
|
-
# },
|
4383
|
-
# scaling_config: {
|
4384
|
-
# min_size: 1,
|
4385
|
-
# max_size: 1,
|
4386
|
-
# desired_size: 1,
|
4387
|
-
# },
|
4388
|
-
# update_config: {
|
4389
|
-
# max_unavailable: 1,
|
4390
|
-
# max_unavailable_percentage: 1,
|
4391
|
-
# },
|
4392
|
-
# client_request_token: "String",
|
4393
|
-
# }
|
4394
|
-
#
|
4395
3930
|
# @!attribute [rw] cluster_name
|
4396
3931
|
# The name of the Amazon EKS cluster that the managed node group
|
4397
3932
|
# resides in.
|
@@ -4459,23 +3994,6 @@ module Aws::EKS
|
|
4459
3994
|
include Aws::Structure
|
4460
3995
|
end
|
4461
3996
|
|
4462
|
-
# @note When making an API call, you may pass UpdateNodegroupVersionRequest
|
4463
|
-
# data as a hash:
|
4464
|
-
#
|
4465
|
-
# {
|
4466
|
-
# cluster_name: "String", # required
|
4467
|
-
# nodegroup_name: "String", # required
|
4468
|
-
# version: "String",
|
4469
|
-
# release_version: "String",
|
4470
|
-
# launch_template: {
|
4471
|
-
# name: "String",
|
4472
|
-
# version: "String",
|
4473
|
-
# id: "String",
|
4474
|
-
# },
|
4475
|
-
# force: false,
|
4476
|
-
# client_request_token: "String",
|
4477
|
-
# }
|
4478
|
-
#
|
4479
3997
|
# @!attribute [rw] cluster_name
|
4480
3998
|
# The name of the Amazon EKS cluster that is associated with the
|
4481
3999
|
# managed node group to update.
|
@@ -4593,32 +4111,12 @@ module Aws::EKS
|
|
4593
4111
|
#
|
4594
4112
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html
|
4595
4113
|
#
|
4596
|
-
# @note When making an API call, you may pass UpdateTaintsPayload
|
4597
|
-
# data as a hash:
|
4598
|
-
#
|
4599
|
-
# {
|
4600
|
-
# add_or_update_taints: [
|
4601
|
-
# {
|
4602
|
-
# key: "taintKey",
|
4603
|
-
# value: "taintValue",
|
4604
|
-
# effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
|
4605
|
-
# },
|
4606
|
-
# ],
|
4607
|
-
# remove_taints: [
|
4608
|
-
# {
|
4609
|
-
# key: "taintKey",
|
4610
|
-
# value: "taintValue",
|
4611
|
-
# effect: "NO_SCHEDULE", # accepts NO_SCHEDULE, NO_EXECUTE, PREFER_NO_SCHEDULE
|
4612
|
-
# },
|
4613
|
-
# ],
|
4614
|
-
# }
|
4615
|
-
#
|
4616
4114
|
# @!attribute [rw] add_or_update_taints
|
4617
4115
|
# Kubernetes taints to be added or updated.
|
4618
4116
|
# @return [Array<Types::Taint>]
|
4619
4117
|
#
|
4620
4118
|
# @!attribute [rw] remove_taints
|
4621
|
-
# Kubernetes taints to
|
4119
|
+
# Kubernetes taints to remove.
|
4622
4120
|
# @return [Array<Types::Taint>]
|
4623
4121
|
#
|
4624
4122
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdateTaintsPayload AWS API Documentation
|
@@ -4633,17 +4131,6 @@ module Aws::EKS
|
|
4633
4131
|
# An object representing the VPC configuration to use for an Amazon EKS
|
4634
4132
|
# cluster.
|
4635
4133
|
#
|
4636
|
-
# @note When making an API call, you may pass VpcConfigRequest
|
4637
|
-
# data as a hash:
|
4638
|
-
#
|
4639
|
-
# {
|
4640
|
-
# subnet_ids: ["String"],
|
4641
|
-
# security_group_ids: ["String"],
|
4642
|
-
# endpoint_public_access: false,
|
4643
|
-
# endpoint_private_access: false,
|
4644
|
-
# public_access_cidrs: ["String"],
|
4645
|
-
# }
|
4646
|
-
#
|
4647
4134
|
# @!attribute [rw] subnet_ids
|
4648
4135
|
# Specify subnets for your Amazon EKS nodes. Amazon EKS creates
|
4649
4136
|
# cross-account elastic network interfaces in these subnets to allow
|