aws-sdk-eks 1.172.0 → 1.174.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 +569 -33
- data/lib/aws-sdk-eks/client_api.rb +323 -0
- data/lib/aws-sdk-eks/types.rb +1028 -4
- data/lib/aws-sdk-eks/waiters.rb +61 -10
- data/lib/aws-sdk-eks.rb +2 -2
- data/sig/client.rbs +96 -0
- data/sig/params.rbs +16 -0
- data/sig/types.rbs +280 -2
- data/sig/waiters.rbs +14 -0
- metadata +1 -1
data/lib/aws-sdk-eks/types.rb
CHANGED
|
@@ -183,6 +183,76 @@ module Aws::EKS
|
|
|
183
183
|
include Aws::Structure
|
|
184
184
|
end
|
|
185
185
|
|
|
186
|
+
# @!attribute [rw] cluster_name
|
|
187
|
+
# The name of your cluster.
|
|
188
|
+
# @return [String]
|
|
189
|
+
#
|
|
190
|
+
# @!attribute [rw] certificate_authority_id
|
|
191
|
+
# The ID of the certificate authority to activate as the cluster's
|
|
192
|
+
# signing certificate authority. This certificate authority must
|
|
193
|
+
# already exist on the cluster and have a `distributionStatus` of
|
|
194
|
+
# `COMPLETE`.
|
|
195
|
+
# @return [String]
|
|
196
|
+
#
|
|
197
|
+
# @!attribute [rw] client_request_token
|
|
198
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
199
|
+
# idempotency of the request.
|
|
200
|
+
#
|
|
201
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
202
|
+
# not need to pass this option.
|
|
203
|
+
# @return [String]
|
|
204
|
+
#
|
|
205
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ActivateCertificateAuthorityRequest AWS API Documentation
|
|
206
|
+
#
|
|
207
|
+
class ActivateCertificateAuthorityRequest < Struct.new(
|
|
208
|
+
:cluster_name,
|
|
209
|
+
:certificate_authority_id,
|
|
210
|
+
:client_request_token)
|
|
211
|
+
SENSITIVE = []
|
|
212
|
+
include Aws::Structure
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
# @!attribute [rw] update
|
|
216
|
+
# An object representing the asynchronous update that promotes the
|
|
217
|
+
# certificate authority to be the cluster's signer.
|
|
218
|
+
# @return [Types::Update]
|
|
219
|
+
#
|
|
220
|
+
# @!attribute [rw] certificate_authority
|
|
221
|
+
# Summary information about the certificate authority that is being
|
|
222
|
+
# activated.
|
|
223
|
+
# @return [Types::CertificateAuthoritySummary]
|
|
224
|
+
#
|
|
225
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ActivateCertificateAuthorityResponse AWS API Documentation
|
|
226
|
+
#
|
|
227
|
+
class ActivateCertificateAuthorityResponse < Struct.new(
|
|
228
|
+
:update,
|
|
229
|
+
:certificate_authority)
|
|
230
|
+
SENSITIVE = []
|
|
231
|
+
include Aws::Structure
|
|
232
|
+
end
|
|
233
|
+
|
|
234
|
+
# Identifies the certificate authority that is currently signing
|
|
235
|
+
# certificates for the cluster.
|
|
236
|
+
#
|
|
237
|
+
# @!attribute [rw] id
|
|
238
|
+
# The unique identifier of the certificate authority that is currently
|
|
239
|
+
# signing certificates for the cluster.
|
|
240
|
+
# @return [String]
|
|
241
|
+
#
|
|
242
|
+
# @!attribute [rw] activated_by
|
|
243
|
+
# The entity that activated the current signing certificate authority,
|
|
244
|
+
# either `CUSTOMER` or `EKS`.
|
|
245
|
+
# @return [String]
|
|
246
|
+
#
|
|
247
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ActiveCertificateAuthority AWS API Documentation
|
|
248
|
+
#
|
|
249
|
+
class ActiveCertificateAuthority < Struct.new(
|
|
250
|
+
:id,
|
|
251
|
+
:activated_by)
|
|
252
|
+
SENSITIVE = []
|
|
253
|
+
include Aws::Structure
|
|
254
|
+
end
|
|
255
|
+
|
|
186
256
|
# An Amazon EKS add-on. For more information, see [Amazon EKS
|
|
187
257
|
# add-ons][1] in the *Amazon EKS User Guide*.
|
|
188
258
|
#
|
|
@@ -519,6 +589,20 @@ module Aws::EKS
|
|
|
519
589
|
include Aws::Structure
|
|
520
590
|
end
|
|
521
591
|
|
|
592
|
+
# A constraint specifying the allowed values for a parameter.
|
|
593
|
+
#
|
|
594
|
+
# @!attribute [rw] allowed_values
|
|
595
|
+
# The list of allowed values.
|
|
596
|
+
# @return [Array<String>]
|
|
597
|
+
#
|
|
598
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AllowedValuesConstraint AWS API Documentation
|
|
599
|
+
#
|
|
600
|
+
class AllowedValuesConstraint < Struct.new(
|
|
601
|
+
:allowed_values)
|
|
602
|
+
SENSITIVE = []
|
|
603
|
+
include Aws::Structure
|
|
604
|
+
end
|
|
605
|
+
|
|
522
606
|
# Configuration for integrating Argo CD with IAM Identity CenterIAM;
|
|
523
607
|
# Identity Center. This allows you to use your organization's identity
|
|
524
608
|
# provider for authentication to Argo CD.
|
|
@@ -1261,14 +1345,211 @@ module Aws::EKS
|
|
|
1261
1345
|
# of the `kubeconfig` file for your cluster.
|
|
1262
1346
|
# @return [String]
|
|
1263
1347
|
#
|
|
1348
|
+
# @!attribute [rw] active
|
|
1349
|
+
# An object identifying the certificate authority that is currently
|
|
1350
|
+
# signing certificates for the cluster.
|
|
1351
|
+
# @return [Types::ActiveCertificateAuthority]
|
|
1352
|
+
#
|
|
1264
1353
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/Certificate AWS API Documentation
|
|
1265
1354
|
#
|
|
1266
1355
|
class Certificate < Struct.new(
|
|
1356
|
+
:data,
|
|
1357
|
+
:active)
|
|
1358
|
+
SENSITIVE = []
|
|
1359
|
+
include Aws::Structure
|
|
1360
|
+
end
|
|
1361
|
+
|
|
1362
|
+
# An object representing a certificate authority (CA) for an Amazon EKS
|
|
1363
|
+
# cluster.
|
|
1364
|
+
#
|
|
1365
|
+
# @!attribute [rw] id
|
|
1366
|
+
# The unique identifier of the certificate authority.
|
|
1367
|
+
# @return [String]
|
|
1368
|
+
#
|
|
1369
|
+
# @!attribute [rw] created_at
|
|
1370
|
+
# The Unix epoch timestamp in seconds for when the certificate
|
|
1371
|
+
# authority was created.
|
|
1372
|
+
# @return [Time]
|
|
1373
|
+
#
|
|
1374
|
+
# @!attribute [rw] created_by
|
|
1375
|
+
# The entity that created the certificate authority. Certificate
|
|
1376
|
+
# authorities that you create are `CUSTOMER`; those that Amazon EKS
|
|
1377
|
+
# provisions on your behalf, such as a cluster's initial certificate
|
|
1378
|
+
# authority, are `EKS`.
|
|
1379
|
+
# @return [String]
|
|
1380
|
+
#
|
|
1381
|
+
# @!attribute [rw] activated_at
|
|
1382
|
+
# The Unix epoch timestamp in seconds for when the certificate
|
|
1383
|
+
# authority was last activated as the cluster's signer. This value is
|
|
1384
|
+
# absent if the certificate authority has never been activated.
|
|
1385
|
+
# @return [Time]
|
|
1386
|
+
#
|
|
1387
|
+
# @!attribute [rw] activated_by
|
|
1388
|
+
# The entity that most recently activated the certificate authority. A
|
|
1389
|
+
# value of `EKS` indicates that Amazon EKS activated it automatically;
|
|
1390
|
+
# `CUSTOMER` indicates that you activated it.
|
|
1391
|
+
# @return [String]
|
|
1392
|
+
#
|
|
1393
|
+
# @!attribute [rw] signing_status
|
|
1394
|
+
# The signing status of the certificate authority. `IN_USE` means the
|
|
1395
|
+
# certificate authority is currently signing certificates for the
|
|
1396
|
+
# cluster, `ACTIVATING` means it's being promoted to the signer, and
|
|
1397
|
+
# `NOT_USED` means it's trusted by the cluster (for example, a
|
|
1398
|
+
# successor CA during a rotation, or a retired outgoing CA) but isn't
|
|
1399
|
+
# the signer.
|
|
1400
|
+
# @return [String]
|
|
1401
|
+
#
|
|
1402
|
+
# @!attribute [rw] distribution_status
|
|
1403
|
+
# The distribution status of the certificate authority, which tracks
|
|
1404
|
+
# whether Amazon EKS has distributed its trust to the Amazon Web
|
|
1405
|
+
# Services managed components in your cluster (the control plane,
|
|
1406
|
+
# Amazon EKS Auto Mode instances, and Amazon Web Services Fargate
|
|
1407
|
+
# nodes). Valid values are `IN_PROGRESS`, `COMPLETE`, `FAILED`, and
|
|
1408
|
+
# `DELETING`. A successor CA can only be activated after its
|
|
1409
|
+
# distribution status is `COMPLETE`.
|
|
1410
|
+
# @return [String]
|
|
1411
|
+
#
|
|
1412
|
+
# @!attribute [rw] validity
|
|
1413
|
+
# The validity period of the certificate authority's certificate.
|
|
1414
|
+
# @return [Types::CertificateAuthorityValidity]
|
|
1415
|
+
#
|
|
1416
|
+
# @!attribute [rw] scheduled_events
|
|
1417
|
+
# The scheduled auto-activation events for the certificate authority,
|
|
1418
|
+
# computed from its validity period.
|
|
1419
|
+
# @return [Types::CertificateAuthorityScheduledEvents]
|
|
1420
|
+
#
|
|
1421
|
+
# @!attribute [rw] rollback_available
|
|
1422
|
+
# Indicates whether CA rollback is still available for this
|
|
1423
|
+
# certificate authority. After you activate a successor CA, rollback
|
|
1424
|
+
# lets you revert to the outgoing CA for a limited period while you
|
|
1425
|
+
# finish updating any worker nodes or clients that were missed.
|
|
1426
|
+
# @return [Boolean]
|
|
1427
|
+
#
|
|
1428
|
+
# @!attribute [rw] data
|
|
1429
|
+
# The Base64-encoded public certificate of the certificate authority.
|
|
1430
|
+
# @return [String]
|
|
1431
|
+
#
|
|
1432
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CertificateAuthority AWS API Documentation
|
|
1433
|
+
#
|
|
1434
|
+
class CertificateAuthority < Struct.new(
|
|
1435
|
+
:id,
|
|
1436
|
+
:created_at,
|
|
1437
|
+
:created_by,
|
|
1438
|
+
:activated_at,
|
|
1439
|
+
:activated_by,
|
|
1440
|
+
:signing_status,
|
|
1441
|
+
:distribution_status,
|
|
1442
|
+
:validity,
|
|
1443
|
+
:scheduled_events,
|
|
1444
|
+
:rollback_available,
|
|
1267
1445
|
:data)
|
|
1268
1446
|
SENSITIVE = []
|
|
1269
1447
|
include Aws::Structure
|
|
1270
1448
|
end
|
|
1271
1449
|
|
|
1450
|
+
# The scheduled events during which Amazon EKS may automatically
|
|
1451
|
+
# activate a certificate authority, computed from its validity period.
|
|
1452
|
+
# These events help ensure that a cluster's signing certificate
|
|
1453
|
+
# authority is rotated before its certificate expires.
|
|
1454
|
+
#
|
|
1455
|
+
# @!attribute [rw] first_auto_activation
|
|
1456
|
+
# The earliest Unix epoch timestamp in seconds at which Amazon EKS may
|
|
1457
|
+
# automatically activate this certificate authority.
|
|
1458
|
+
# @return [Time]
|
|
1459
|
+
#
|
|
1460
|
+
# @!attribute [rw] final_auto_activation
|
|
1461
|
+
# The Unix epoch timestamp in seconds by which Amazon EKS will
|
|
1462
|
+
# automatically activate this certificate authority if you haven't
|
|
1463
|
+
# already activated it.
|
|
1464
|
+
# @return [Time]
|
|
1465
|
+
#
|
|
1466
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CertificateAuthorityScheduledEvents AWS API Documentation
|
|
1467
|
+
#
|
|
1468
|
+
class CertificateAuthorityScheduledEvents < Struct.new(
|
|
1469
|
+
:first_auto_activation,
|
|
1470
|
+
:final_auto_activation)
|
|
1471
|
+
SENSITIVE = []
|
|
1472
|
+
include Aws::Structure
|
|
1473
|
+
end
|
|
1474
|
+
|
|
1475
|
+
# Summary information about a certificate authority (CA) for an Amazon
|
|
1476
|
+
# EKS cluster, returned by [ `ListCertificateAuthorities` ][1] and the
|
|
1477
|
+
# certificate-authority write operations.
|
|
1478
|
+
#
|
|
1479
|
+
#
|
|
1480
|
+
#
|
|
1481
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/APIReference/API_ListCertificateAuthorities.html
|
|
1482
|
+
#
|
|
1483
|
+
# @!attribute [rw] id
|
|
1484
|
+
# The unique identifier of the certificate authority.
|
|
1485
|
+
# @return [String]
|
|
1486
|
+
#
|
|
1487
|
+
# @!attribute [rw] created_at
|
|
1488
|
+
# The Unix epoch timestamp in seconds for when the certificate
|
|
1489
|
+
# authority was created.
|
|
1490
|
+
# @return [Time]
|
|
1491
|
+
#
|
|
1492
|
+
# @!attribute [rw] created_by
|
|
1493
|
+
# The entity that created the certificate authority, either `CUSTOMER`
|
|
1494
|
+
# or `EKS`.
|
|
1495
|
+
# @return [String]
|
|
1496
|
+
#
|
|
1497
|
+
# @!attribute [rw] activated_at
|
|
1498
|
+
# The Unix epoch timestamp in seconds for when the certificate
|
|
1499
|
+
# authority was last activated. This value is absent if the
|
|
1500
|
+
# certificate authority has never been activated.
|
|
1501
|
+
# @return [Time]
|
|
1502
|
+
#
|
|
1503
|
+
# @!attribute [rw] activated_by
|
|
1504
|
+
# The entity that most recently activated the certificate authority,
|
|
1505
|
+
# either `CUSTOMER` or `EKS`.
|
|
1506
|
+
# @return [String]
|
|
1507
|
+
#
|
|
1508
|
+
# @!attribute [rw] signing_status
|
|
1509
|
+
# The signing status of the certificate authority: `IN_USE`,
|
|
1510
|
+
# `ACTIVATING`, or `NOT_USED`.
|
|
1511
|
+
# @return [String]
|
|
1512
|
+
#
|
|
1513
|
+
# @!attribute [rw] distribution_status
|
|
1514
|
+
# The distribution status of the certificate authority: `IN_PROGRESS`,
|
|
1515
|
+
# `COMPLETE`, `FAILED`, or `DELETING`.
|
|
1516
|
+
# @return [String]
|
|
1517
|
+
#
|
|
1518
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CertificateAuthoritySummary AWS API Documentation
|
|
1519
|
+
#
|
|
1520
|
+
class CertificateAuthoritySummary < Struct.new(
|
|
1521
|
+
:id,
|
|
1522
|
+
:created_at,
|
|
1523
|
+
:created_by,
|
|
1524
|
+
:activated_at,
|
|
1525
|
+
:activated_by,
|
|
1526
|
+
:signing_status,
|
|
1527
|
+
:distribution_status)
|
|
1528
|
+
SENSITIVE = []
|
|
1529
|
+
include Aws::Structure
|
|
1530
|
+
end
|
|
1531
|
+
|
|
1532
|
+
# The validity period of a certificate authority's certificate.
|
|
1533
|
+
#
|
|
1534
|
+
# @!attribute [rw] not_before
|
|
1535
|
+
# The Unix epoch timestamp in seconds for the start of the certificate
|
|
1536
|
+
# authority's validity period.
|
|
1537
|
+
# @return [Time]
|
|
1538
|
+
#
|
|
1539
|
+
# @!attribute [rw] not_after
|
|
1540
|
+
# The Unix epoch timestamp in seconds for the end of the certificate
|
|
1541
|
+
# authority's validity period.
|
|
1542
|
+
# @return [Time]
|
|
1543
|
+
#
|
|
1544
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CertificateAuthorityValidity AWS API Documentation
|
|
1545
|
+
#
|
|
1546
|
+
class CertificateAuthorityValidity < Struct.new(
|
|
1547
|
+
:not_before,
|
|
1548
|
+
:not_after)
|
|
1549
|
+
SENSITIVE = []
|
|
1550
|
+
include Aws::Structure
|
|
1551
|
+
end
|
|
1552
|
+
|
|
1272
1553
|
# These errors are usually caused by a client action. Actions can
|
|
1273
1554
|
# include using an action or resource on behalf of an [IAM principal][1]
|
|
1274
1555
|
# that doesn't have permissions to use the action or resource or
|
|
@@ -1510,6 +1791,18 @@ module Aws::EKS
|
|
|
1510
1791
|
# see EKS Provisioned Control Plane in the Amazon EKS User Guide.
|
|
1511
1792
|
# @return [Types::ControlPlaneScalingConfig]
|
|
1512
1793
|
#
|
|
1794
|
+
# @!attribute [rw] kube_api_server_config
|
|
1795
|
+
# The Kubernetes API server configuration for the cluster.
|
|
1796
|
+
# @return [Types::KubeApiServerConfigResponse]
|
|
1797
|
+
#
|
|
1798
|
+
# @!attribute [rw] kube_scheduler_config
|
|
1799
|
+
# The Kubernetes scheduler configuration for the cluster.
|
|
1800
|
+
# @return [Types::KubeSchedulerConfigResponse]
|
|
1801
|
+
#
|
|
1802
|
+
# @!attribute [rw] kube_controller_manager_config
|
|
1803
|
+
# The Kubernetes controller manager configuration for the cluster.
|
|
1804
|
+
# @return [Types::KubeControllerManagerConfigResponse]
|
|
1805
|
+
#
|
|
1513
1806
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/Cluster AWS API Documentation
|
|
1514
1807
|
#
|
|
1515
1808
|
class Cluster < Struct.new(
|
|
@@ -1540,7 +1833,10 @@ module Aws::EKS
|
|
|
1540
1833
|
:compute_config,
|
|
1541
1834
|
:storage_config,
|
|
1542
1835
|
:deletion_protection,
|
|
1543
|
-
:control_plane_scaling_config
|
|
1836
|
+
:control_plane_scaling_config,
|
|
1837
|
+
:kube_api_server_config,
|
|
1838
|
+
:kube_scheduler_config,
|
|
1839
|
+
:kube_controller_manager_config)
|
|
1544
1840
|
SENSITIVE = []
|
|
1545
1841
|
include Aws::Structure
|
|
1546
1842
|
end
|
|
@@ -1628,6 +1924,16 @@ module Aws::EKS
|
|
|
1628
1924
|
# The patch version of Kubernetes for this cluster version.
|
|
1629
1925
|
# @return [String]
|
|
1630
1926
|
#
|
|
1927
|
+
# @!attribute [rw] control_plane_scaling_tiers
|
|
1928
|
+
# The available provisioned control plane scaling tiers and their
|
|
1929
|
+
# capabilities for this Kubernetes version.
|
|
1930
|
+
# @return [Array<Types::ControlPlaneScalingTierInfo>]
|
|
1931
|
+
#
|
|
1932
|
+
# @!attribute [rw] control_plane_component_config
|
|
1933
|
+
# The default control plane component configuration and constraints
|
|
1934
|
+
# for this Kubernetes version.
|
|
1935
|
+
# @return [Types::ControlPlaneConfigInfo]
|
|
1936
|
+
#
|
|
1631
1937
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ClusterVersionInformation AWS API Documentation
|
|
1632
1938
|
#
|
|
1633
1939
|
class ClusterVersionInformation < Struct.new(
|
|
@@ -1640,7 +1946,9 @@ module Aws::EKS
|
|
|
1640
1946
|
:end_of_extended_support_date,
|
|
1641
1947
|
:status,
|
|
1642
1948
|
:version_status,
|
|
1643
|
-
:kubernetes_patch_version
|
|
1949
|
+
:kubernetes_patch_version,
|
|
1950
|
+
:control_plane_scaling_tiers,
|
|
1951
|
+
:control_plane_component_config)
|
|
1644
1952
|
SENSITIVE = []
|
|
1645
1953
|
include Aws::Structure
|
|
1646
1954
|
end
|
|
@@ -1791,6 +2099,31 @@ module Aws::EKS
|
|
|
1791
2099
|
include Aws::Structure
|
|
1792
2100
|
end
|
|
1793
2101
|
|
|
2102
|
+
# The control plane component configuration defaults and constraints.
|
|
2103
|
+
#
|
|
2104
|
+
# @!attribute [rw] kube_api_server_config
|
|
2105
|
+
# The Kubernetes API server configuration defaults and constraints.
|
|
2106
|
+
# @return [Types::KubeApiServerVersionConfig]
|
|
2107
|
+
#
|
|
2108
|
+
# @!attribute [rw] kube_scheduler_config
|
|
2109
|
+
# The Kubernetes scheduler configuration defaults and constraints.
|
|
2110
|
+
# @return [Types::KubeSchedulerVersionConfig]
|
|
2111
|
+
#
|
|
2112
|
+
# @!attribute [rw] kube_controller_manager_config
|
|
2113
|
+
# The Kubernetes controller manager configuration defaults and
|
|
2114
|
+
# constraints.
|
|
2115
|
+
# @return [Types::KubeControllerManagerVersionConfig]
|
|
2116
|
+
#
|
|
2117
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ControlPlaneConfigInfo AWS API Documentation
|
|
2118
|
+
#
|
|
2119
|
+
class ControlPlaneConfigInfo < Struct.new(
|
|
2120
|
+
:kube_api_server_config,
|
|
2121
|
+
:kube_scheduler_config,
|
|
2122
|
+
:kube_controller_manager_config)
|
|
2123
|
+
SENSITIVE = []
|
|
2124
|
+
include Aws::Structure
|
|
2125
|
+
end
|
|
2126
|
+
|
|
1794
2127
|
# The placement configuration for all the control plane instances of
|
|
1795
2128
|
# your local Amazon EKS cluster on an Amazon Web Services Outpost. For
|
|
1796
2129
|
# more information, see [Capacity considerations][1] in the *Amazon EKS
|
|
@@ -1867,6 +2200,41 @@ module Aws::EKS
|
|
|
1867
2200
|
include Aws::Structure
|
|
1868
2201
|
end
|
|
1869
2202
|
|
|
2203
|
+
# Information about a provisioned control plane scaling tier.
|
|
2204
|
+
#
|
|
2205
|
+
# @!attribute [rw] tier_name
|
|
2206
|
+
# The name of the scaling tier.
|
|
2207
|
+
# @return [String]
|
|
2208
|
+
#
|
|
2209
|
+
# @!attribute [rw] api_request_concurrency
|
|
2210
|
+
# The maximum API request concurrency supported by this tier.
|
|
2211
|
+
# @return [Integer]
|
|
2212
|
+
#
|
|
2213
|
+
# @!attribute [rw] pod_scheduling_rate_per_second
|
|
2214
|
+
# The maximum pod scheduling rate per second supported by this tier.
|
|
2215
|
+
# @return [Integer]
|
|
2216
|
+
#
|
|
2217
|
+
# @!attribute [rw] cluster_database_size_gb
|
|
2218
|
+
# The maximum cluster database size in GB supported by this tier.
|
|
2219
|
+
# @return [Integer]
|
|
2220
|
+
#
|
|
2221
|
+
# @!attribute [rw] control_plane_component_config_overrides
|
|
2222
|
+
# The control plane component configuration overrides specific to this
|
|
2223
|
+
# scaling tier.
|
|
2224
|
+
# @return [Types::ControlPlaneConfigInfo]
|
|
2225
|
+
#
|
|
2226
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ControlPlaneScalingTierInfo AWS API Documentation
|
|
2227
|
+
#
|
|
2228
|
+
class ControlPlaneScalingTierInfo < Struct.new(
|
|
2229
|
+
:tier_name,
|
|
2230
|
+
:api_request_concurrency,
|
|
2231
|
+
:pod_scheduling_rate_per_second,
|
|
2232
|
+
:cluster_database_size_gb,
|
|
2233
|
+
:control_plane_component_config_overrides)
|
|
2234
|
+
SENSITIVE = []
|
|
2235
|
+
include Aws::Structure
|
|
2236
|
+
end
|
|
2237
|
+
|
|
1870
2238
|
# The access configuration information for the cluster.
|
|
1871
2239
|
#
|
|
1872
2240
|
# @!attribute [rw] bootstrap_cluster_creator_admin_permissions
|
|
@@ -2297,6 +2665,47 @@ module Aws::EKS
|
|
|
2297
2665
|
include Aws::Structure
|
|
2298
2666
|
end
|
|
2299
2667
|
|
|
2668
|
+
# @!attribute [rw] cluster_name
|
|
2669
|
+
# The name of your cluster.
|
|
2670
|
+
# @return [String]
|
|
2671
|
+
#
|
|
2672
|
+
# @!attribute [rw] client_request_token
|
|
2673
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
2674
|
+
# idempotency of the request.
|
|
2675
|
+
#
|
|
2676
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2677
|
+
# not need to pass this option.
|
|
2678
|
+
# @return [String]
|
|
2679
|
+
#
|
|
2680
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateCertificateAuthorityRequest AWS API Documentation
|
|
2681
|
+
#
|
|
2682
|
+
class CreateCertificateAuthorityRequest < Struct.new(
|
|
2683
|
+
:cluster_name,
|
|
2684
|
+
:client_request_token)
|
|
2685
|
+
SENSITIVE = []
|
|
2686
|
+
include Aws::Structure
|
|
2687
|
+
end
|
|
2688
|
+
|
|
2689
|
+
# @!attribute [rw] update
|
|
2690
|
+
# An object representing the asynchronous update that adds the
|
|
2691
|
+
# certificate authority to the cluster's trust bundle.
|
|
2692
|
+
# @return [Types::Update]
|
|
2693
|
+
#
|
|
2694
|
+
# @!attribute [rw] certificate_authority
|
|
2695
|
+
# Summary information about the certificate authority that was
|
|
2696
|
+
# created, including its ID and initial signing and distribution
|
|
2697
|
+
# status.
|
|
2698
|
+
# @return [Types::CertificateAuthoritySummary]
|
|
2699
|
+
#
|
|
2700
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateCertificateAuthorityResponse AWS API Documentation
|
|
2701
|
+
#
|
|
2702
|
+
class CreateCertificateAuthorityResponse < Struct.new(
|
|
2703
|
+
:update,
|
|
2704
|
+
:certificate_authority)
|
|
2705
|
+
SENSITIVE = []
|
|
2706
|
+
include Aws::Structure
|
|
2707
|
+
end
|
|
2708
|
+
|
|
2300
2709
|
# @!attribute [rw] name
|
|
2301
2710
|
# The unique name to give to your cluster. The name can contain only
|
|
2302
2711
|
# alphanumeric characters (case-sensitive), hyphens, and underscores.
|
|
@@ -2478,6 +2887,18 @@ module Aws::EKS
|
|
|
2478
2887
|
# see EKS Provisioned Control Plane in the Amazon EKS User Guide.
|
|
2479
2888
|
# @return [Types::ControlPlaneScalingConfig]
|
|
2480
2889
|
#
|
|
2890
|
+
# @!attribute [rw] kube_api_server_config
|
|
2891
|
+
# The Kubernetes API server configuration for the new cluster.
|
|
2892
|
+
# @return [Types::KubeApiServerConfigRequest]
|
|
2893
|
+
#
|
|
2894
|
+
# @!attribute [rw] kube_scheduler_config
|
|
2895
|
+
# The Kubernetes scheduler configuration for the new cluster.
|
|
2896
|
+
# @return [Types::KubeSchedulerConfigRequest]
|
|
2897
|
+
#
|
|
2898
|
+
# @!attribute [rw] kube_controller_manager_config
|
|
2899
|
+
# The Kubernetes controller manager configuration for the new cluster.
|
|
2900
|
+
# @return [Types::KubeControllerManagerConfigRequest]
|
|
2901
|
+
#
|
|
2481
2902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateClusterRequest AWS API Documentation
|
|
2482
2903
|
#
|
|
2483
2904
|
class CreateClusterRequest < Struct.new(
|
|
@@ -2499,7 +2920,10 @@ module Aws::EKS
|
|
|
2499
2920
|
:compute_config,
|
|
2500
2921
|
:storage_config,
|
|
2501
2922
|
:deletion_protection,
|
|
2502
|
-
:control_plane_scaling_config
|
|
2923
|
+
:control_plane_scaling_config,
|
|
2924
|
+
:kube_api_server_config,
|
|
2925
|
+
:kube_scheduler_config,
|
|
2926
|
+
:kube_controller_manager_config)
|
|
2503
2927
|
SENSITIVE = []
|
|
2504
2928
|
include Aws::Structure
|
|
2505
2929
|
end
|
|
@@ -3176,6 +3600,53 @@ module Aws::EKS
|
|
|
3176
3600
|
include Aws::Structure
|
|
3177
3601
|
end
|
|
3178
3602
|
|
|
3603
|
+
# @!attribute [rw] cluster_name
|
|
3604
|
+
# The name of your cluster.
|
|
3605
|
+
# @return [String]
|
|
3606
|
+
#
|
|
3607
|
+
# @!attribute [rw] certificate_authority_id
|
|
3608
|
+
# The ID of the certificate authority to delete. You can't delete the
|
|
3609
|
+
# certificate authority that's currently signing certificates for the
|
|
3610
|
+
# cluster.
|
|
3611
|
+
# @return [String]
|
|
3612
|
+
#
|
|
3613
|
+
# @!attribute [rw] client_request_token
|
|
3614
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
3615
|
+
# idempotency of the request.
|
|
3616
|
+
#
|
|
3617
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
3618
|
+
# not need to pass this option.
|
|
3619
|
+
# @return [String]
|
|
3620
|
+
#
|
|
3621
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteCertificateAuthorityRequest AWS API Documentation
|
|
3622
|
+
#
|
|
3623
|
+
class DeleteCertificateAuthorityRequest < Struct.new(
|
|
3624
|
+
:cluster_name,
|
|
3625
|
+
:certificate_authority_id,
|
|
3626
|
+
:client_request_token)
|
|
3627
|
+
SENSITIVE = []
|
|
3628
|
+
include Aws::Structure
|
|
3629
|
+
end
|
|
3630
|
+
|
|
3631
|
+
# @!attribute [rw] update
|
|
3632
|
+
# An object representing the asynchronous update that removes the
|
|
3633
|
+
# certificate authority from the cluster's trust bundle.
|
|
3634
|
+
# @return [Types::Update]
|
|
3635
|
+
#
|
|
3636
|
+
# @!attribute [rw] certificate_authority
|
|
3637
|
+
# Summary information about the certificate authority that is being
|
|
3638
|
+
# deleted.
|
|
3639
|
+
# @return [Types::CertificateAuthoritySummary]
|
|
3640
|
+
#
|
|
3641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteCertificateAuthorityResponse AWS API Documentation
|
|
3642
|
+
#
|
|
3643
|
+
class DeleteCertificateAuthorityResponse < Struct.new(
|
|
3644
|
+
:update,
|
|
3645
|
+
:certificate_authority)
|
|
3646
|
+
SENSITIVE = []
|
|
3647
|
+
include Aws::Structure
|
|
3648
|
+
end
|
|
3649
|
+
|
|
3179
3650
|
# @!attribute [rw] name
|
|
3180
3651
|
# The name of the cluster to delete.
|
|
3181
3652
|
# @return [String]
|
|
@@ -3626,6 +4097,36 @@ module Aws::EKS
|
|
|
3626
4097
|
include Aws::Structure
|
|
3627
4098
|
end
|
|
3628
4099
|
|
|
4100
|
+
# @!attribute [rw] cluster_name
|
|
4101
|
+
# The name of your cluster.
|
|
4102
|
+
# @return [String]
|
|
4103
|
+
#
|
|
4104
|
+
# @!attribute [rw] certificate_authority_id
|
|
4105
|
+
# The ID of the certificate authority to describe.
|
|
4106
|
+
# @return [String]
|
|
4107
|
+
#
|
|
4108
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeCertificateAuthorityRequest AWS API Documentation
|
|
4109
|
+
#
|
|
4110
|
+
class DescribeCertificateAuthorityRequest < Struct.new(
|
|
4111
|
+
:cluster_name,
|
|
4112
|
+
:certificate_authority_id)
|
|
4113
|
+
SENSITIVE = []
|
|
4114
|
+
include Aws::Structure
|
|
4115
|
+
end
|
|
4116
|
+
|
|
4117
|
+
# @!attribute [rw] certificate_authority
|
|
4118
|
+
# An object containing detailed information about the certificate
|
|
4119
|
+
# authority.
|
|
4120
|
+
# @return [Types::CertificateAuthority]
|
|
4121
|
+
#
|
|
4122
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeCertificateAuthorityResponse AWS API Documentation
|
|
4123
|
+
#
|
|
4124
|
+
class DescribeCertificateAuthorityResponse < Struct.new(
|
|
4125
|
+
:certificate_authority)
|
|
4126
|
+
SENSITIVE = []
|
|
4127
|
+
include Aws::Structure
|
|
4128
|
+
end
|
|
4129
|
+
|
|
3629
4130
|
# @!attribute [rw] name
|
|
3630
4131
|
# The name of your cluster.
|
|
3631
4132
|
# @return [String]
|
|
@@ -4046,6 +4547,44 @@ module Aws::EKS
|
|
|
4046
4547
|
include Aws::Structure
|
|
4047
4548
|
end
|
|
4048
4549
|
|
|
4550
|
+
# Constraints for a duration parameter.
|
|
4551
|
+
#
|
|
4552
|
+
# @!attribute [rw] min
|
|
4553
|
+
# The minimum allowed duration value.
|
|
4554
|
+
# @return [String]
|
|
4555
|
+
#
|
|
4556
|
+
# @!attribute [rw] max
|
|
4557
|
+
# The maximum allowed duration value.
|
|
4558
|
+
# @return [String]
|
|
4559
|
+
#
|
|
4560
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DurationConstraints AWS API Documentation
|
|
4561
|
+
#
|
|
4562
|
+
class DurationConstraints < Struct.new(
|
|
4563
|
+
:min,
|
|
4564
|
+
:max)
|
|
4565
|
+
SENSITIVE = []
|
|
4566
|
+
include Aws::Structure
|
|
4567
|
+
end
|
|
4568
|
+
|
|
4569
|
+
# A duration parameter configuration with default value and constraints.
|
|
4570
|
+
#
|
|
4571
|
+
# @!attribute [rw] default_value
|
|
4572
|
+
# The default value for the duration parameter.
|
|
4573
|
+
# @return [String]
|
|
4574
|
+
#
|
|
4575
|
+
# @!attribute [rw] constraints
|
|
4576
|
+
# The constraints for the duration parameter.
|
|
4577
|
+
# @return [Types::DurationConstraints]
|
|
4578
|
+
#
|
|
4579
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DurationParameterConfig AWS API Documentation
|
|
4580
|
+
#
|
|
4581
|
+
class DurationParameterConfig < Struct.new(
|
|
4582
|
+
:default_value,
|
|
4583
|
+
:constraints)
|
|
4584
|
+
SENSITIVE = []
|
|
4585
|
+
include Aws::Structure
|
|
4586
|
+
end
|
|
4587
|
+
|
|
4049
4588
|
# An EKS Anywhere subscription authorizing the customer to support for
|
|
4050
4589
|
# licensed clusters and access to EKS Anywhere Curated Packages.
|
|
4051
4590
|
#
|
|
@@ -4419,6 +4958,52 @@ module Aws::EKS
|
|
|
4419
4958
|
include Aws::Structure
|
|
4420
4959
|
end
|
|
4421
4960
|
|
|
4961
|
+
# The horizontal pod autoscaler controller configuration for the
|
|
4962
|
+
# Kubernetes controller manager.
|
|
4963
|
+
#
|
|
4964
|
+
# @!attribute [rw] horizontal_pod_autoscaler_sync_period
|
|
4965
|
+
# The interval between each sync of the horizontal pod autoscaler.
|
|
4966
|
+
# Valid values are single-unit durations such as `15s` or `1m`.
|
|
4967
|
+
# @return [String]
|
|
4968
|
+
#
|
|
4969
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/HorizontalPodAutoscalerControllerConfigRequest AWS API Documentation
|
|
4970
|
+
#
|
|
4971
|
+
class HorizontalPodAutoscalerControllerConfigRequest < Struct.new(
|
|
4972
|
+
:horizontal_pod_autoscaler_sync_period)
|
|
4973
|
+
SENSITIVE = []
|
|
4974
|
+
include Aws::Structure
|
|
4975
|
+
end
|
|
4976
|
+
|
|
4977
|
+
# The horizontal pod autoscaler controller configuration for the
|
|
4978
|
+
# Kubernetes controller manager.
|
|
4979
|
+
#
|
|
4980
|
+
# @!attribute [rw] horizontal_pod_autoscaler_sync_period
|
|
4981
|
+
# The interval between each sync of the horizontal pod autoscaler.
|
|
4982
|
+
# @return [String]
|
|
4983
|
+
#
|
|
4984
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/HorizontalPodAutoscalerControllerConfigResponse AWS API Documentation
|
|
4985
|
+
#
|
|
4986
|
+
class HorizontalPodAutoscalerControllerConfigResponse < Struct.new(
|
|
4987
|
+
:horizontal_pod_autoscaler_sync_period)
|
|
4988
|
+
SENSITIVE = []
|
|
4989
|
+
include Aws::Structure
|
|
4990
|
+
end
|
|
4991
|
+
|
|
4992
|
+
# The horizontal pod autoscaler controller version configuration.
|
|
4993
|
+
#
|
|
4994
|
+
# @!attribute [rw] horizontal_pod_autoscaler_sync_period
|
|
4995
|
+
# The HPA sync period configuration with default value and
|
|
4996
|
+
# constraints.
|
|
4997
|
+
# @return [Types::DurationParameterConfig]
|
|
4998
|
+
#
|
|
4999
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/HorizontalPodAutoscalerControllerVersionConfig AWS API Documentation
|
|
5000
|
+
#
|
|
5001
|
+
class HorizontalPodAutoscalerControllerVersionConfig < Struct.new(
|
|
5002
|
+
:horizontal_pod_autoscaler_sync_period)
|
|
5003
|
+
SENSITIVE = []
|
|
5004
|
+
include Aws::Structure
|
|
5005
|
+
end
|
|
5006
|
+
|
|
4422
5007
|
# An object representing an identity provider.
|
|
4423
5008
|
#
|
|
4424
5009
|
# @!attribute [rw] oidc
|
|
@@ -4703,6 +5288,26 @@ module Aws::EKS
|
|
|
4703
5288
|
include Aws::Structure
|
|
4704
5289
|
end
|
|
4705
5290
|
|
|
5291
|
+
# An integer range constraint specifying minimum and maximum allowed
|
|
5292
|
+
# values.
|
|
5293
|
+
#
|
|
5294
|
+
# @!attribute [rw] min
|
|
5295
|
+
# The minimum allowed value.
|
|
5296
|
+
# @return [Integer]
|
|
5297
|
+
#
|
|
5298
|
+
# @!attribute [rw] max
|
|
5299
|
+
# The maximum allowed value.
|
|
5300
|
+
# @return [Integer]
|
|
5301
|
+
#
|
|
5302
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/IntegerRangeConstraint AWS API Documentation
|
|
5303
|
+
#
|
|
5304
|
+
class IntegerRangeConstraint < Struct.new(
|
|
5305
|
+
:min,
|
|
5306
|
+
:max)
|
|
5307
|
+
SENSITIVE = []
|
|
5308
|
+
include Aws::Structure
|
|
5309
|
+
end
|
|
5310
|
+
|
|
4706
5311
|
# The specified parameter is invalid. Review the available parameters
|
|
4707
5312
|
# for the API request.
|
|
4708
5313
|
#
|
|
@@ -4906,6 +5511,158 @@ module Aws::EKS
|
|
|
4906
5511
|
include Aws::Structure
|
|
4907
5512
|
end
|
|
4908
5513
|
|
|
5514
|
+
# The configuration for the Kubernetes API server on an Amazon EKS
|
|
5515
|
+
# cluster.
|
|
5516
|
+
#
|
|
5517
|
+
# @!attribute [rw] event_ttl
|
|
5518
|
+
# The duration that Kubernetes events are retained. Valid values are
|
|
5519
|
+
# single-unit durations such as `30m` or `1h`.
|
|
5520
|
+
# @return [String]
|
|
5521
|
+
#
|
|
5522
|
+
# @!attribute [rw] service_node_port_range
|
|
5523
|
+
# The port range for NodePort services.
|
|
5524
|
+
# @return [Types::ServiceNodePortRange]
|
|
5525
|
+
#
|
|
5526
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubeApiServerConfigRequest AWS API Documentation
|
|
5527
|
+
#
|
|
5528
|
+
class KubeApiServerConfigRequest < Struct.new(
|
|
5529
|
+
:event_ttl,
|
|
5530
|
+
:service_node_port_range)
|
|
5531
|
+
SENSITIVE = []
|
|
5532
|
+
include Aws::Structure
|
|
5533
|
+
end
|
|
5534
|
+
|
|
5535
|
+
# The Kubernetes API server configuration for an Amazon EKS cluster.
|
|
5536
|
+
#
|
|
5537
|
+
# @!attribute [rw] event_ttl
|
|
5538
|
+
# The duration that Kubernetes events are retained.
|
|
5539
|
+
# @return [String]
|
|
5540
|
+
#
|
|
5541
|
+
# @!attribute [rw] service_node_port_range
|
|
5542
|
+
# The port range for NodePort services.
|
|
5543
|
+
# @return [Types::ServiceNodePortRange]
|
|
5544
|
+
#
|
|
5545
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubeApiServerConfigResponse AWS API Documentation
|
|
5546
|
+
#
|
|
5547
|
+
class KubeApiServerConfigResponse < Struct.new(
|
|
5548
|
+
:event_ttl,
|
|
5549
|
+
:service_node_port_range)
|
|
5550
|
+
SENSITIVE = []
|
|
5551
|
+
include Aws::Structure
|
|
5552
|
+
end
|
|
5553
|
+
|
|
5554
|
+
# The Kubernetes API server version-specific configuration defaults and
|
|
5555
|
+
# constraints.
|
|
5556
|
+
#
|
|
5557
|
+
# @!attribute [rw] event_ttl
|
|
5558
|
+
# The event TTL configuration with default value and constraints.
|
|
5559
|
+
# @return [Types::DurationParameterConfig]
|
|
5560
|
+
#
|
|
5561
|
+
# @!attribute [rw] service_node_port_range
|
|
5562
|
+
# The service node port range configuration with default value and
|
|
5563
|
+
# constraints.
|
|
5564
|
+
# @return [Types::PortRangeParameterConfig]
|
|
5565
|
+
#
|
|
5566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubeApiServerVersionConfig AWS API Documentation
|
|
5567
|
+
#
|
|
5568
|
+
class KubeApiServerVersionConfig < Struct.new(
|
|
5569
|
+
:event_ttl,
|
|
5570
|
+
:service_node_port_range)
|
|
5571
|
+
SENSITIVE = []
|
|
5572
|
+
include Aws::Structure
|
|
5573
|
+
end
|
|
5574
|
+
|
|
5575
|
+
# The configuration for the Kubernetes controller manager on an Amazon
|
|
5576
|
+
# EKS cluster.
|
|
5577
|
+
#
|
|
5578
|
+
# @!attribute [rw] horizontal_pod_autoscaler_controller_config
|
|
5579
|
+
# The horizontal pod autoscaler controller configuration.
|
|
5580
|
+
# @return [Types::HorizontalPodAutoscalerControllerConfigRequest]
|
|
5581
|
+
#
|
|
5582
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubeControllerManagerConfigRequest AWS API Documentation
|
|
5583
|
+
#
|
|
5584
|
+
class KubeControllerManagerConfigRequest < Struct.new(
|
|
5585
|
+
:horizontal_pod_autoscaler_controller_config)
|
|
5586
|
+
SENSITIVE = []
|
|
5587
|
+
include Aws::Structure
|
|
5588
|
+
end
|
|
5589
|
+
|
|
5590
|
+
# The Kubernetes controller manager configuration for an Amazon EKS
|
|
5591
|
+
# cluster.
|
|
5592
|
+
#
|
|
5593
|
+
# @!attribute [rw] horizontal_pod_autoscaler_controller_config
|
|
5594
|
+
# The horizontal pod autoscaler controller configuration.
|
|
5595
|
+
# @return [Types::HorizontalPodAutoscalerControllerConfigResponse]
|
|
5596
|
+
#
|
|
5597
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubeControllerManagerConfigResponse AWS API Documentation
|
|
5598
|
+
#
|
|
5599
|
+
class KubeControllerManagerConfigResponse < Struct.new(
|
|
5600
|
+
:horizontal_pod_autoscaler_controller_config)
|
|
5601
|
+
SENSITIVE = []
|
|
5602
|
+
include Aws::Structure
|
|
5603
|
+
end
|
|
5604
|
+
|
|
5605
|
+
# The Kubernetes controller manager version-specific configuration
|
|
5606
|
+
# defaults and constraints.
|
|
5607
|
+
#
|
|
5608
|
+
# @!attribute [rw] horizontal_pod_autoscaler_controller_config
|
|
5609
|
+
# The horizontal pod autoscaler controller configuration with default
|
|
5610
|
+
# value and constraints.
|
|
5611
|
+
# @return [Types::HorizontalPodAutoscalerControllerVersionConfig]
|
|
5612
|
+
#
|
|
5613
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubeControllerManagerVersionConfig AWS API Documentation
|
|
5614
|
+
#
|
|
5615
|
+
class KubeControllerManagerVersionConfig < Struct.new(
|
|
5616
|
+
:horizontal_pod_autoscaler_controller_config)
|
|
5617
|
+
SENSITIVE = []
|
|
5618
|
+
include Aws::Structure
|
|
5619
|
+
end
|
|
5620
|
+
|
|
5621
|
+
# The configuration for the Kubernetes scheduler on an Amazon EKS
|
|
5622
|
+
# cluster.
|
|
5623
|
+
#
|
|
5624
|
+
# @!attribute [rw] node_resources_fit
|
|
5625
|
+
# The node resource fit scoring configuration for the scheduler.
|
|
5626
|
+
# @return [Types::NodeResourcesFitConfig]
|
|
5627
|
+
#
|
|
5628
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubeSchedulerConfigRequest AWS API Documentation
|
|
5629
|
+
#
|
|
5630
|
+
class KubeSchedulerConfigRequest < Struct.new(
|
|
5631
|
+
:node_resources_fit)
|
|
5632
|
+
SENSITIVE = []
|
|
5633
|
+
include Aws::Structure
|
|
5634
|
+
end
|
|
5635
|
+
|
|
5636
|
+
# The Kubernetes scheduler configuration for an Amazon EKS cluster.
|
|
5637
|
+
#
|
|
5638
|
+
# @!attribute [rw] node_resources_fit
|
|
5639
|
+
# The node resource fit scoring configuration for the scheduler.
|
|
5640
|
+
# @return [Types::NodeResourcesFitConfig]
|
|
5641
|
+
#
|
|
5642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubeSchedulerConfigResponse AWS API Documentation
|
|
5643
|
+
#
|
|
5644
|
+
class KubeSchedulerConfigResponse < Struct.new(
|
|
5645
|
+
:node_resources_fit)
|
|
5646
|
+
SENSITIVE = []
|
|
5647
|
+
include Aws::Structure
|
|
5648
|
+
end
|
|
5649
|
+
|
|
5650
|
+
# The Kubernetes scheduler version-specific configuration defaults and
|
|
5651
|
+
# constraints.
|
|
5652
|
+
#
|
|
5653
|
+
# @!attribute [rw] node_resources_fit
|
|
5654
|
+
# The NodeResourcesFit configuration with default value and
|
|
5655
|
+
# constraints.
|
|
5656
|
+
# @return [Types::NodeResourcesFitVersionConfig]
|
|
5657
|
+
#
|
|
5658
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/KubeSchedulerVersionConfig AWS API Documentation
|
|
5659
|
+
#
|
|
5660
|
+
class KubeSchedulerVersionConfig < Struct.new(
|
|
5661
|
+
:node_resources_fit)
|
|
5662
|
+
SENSITIVE = []
|
|
5663
|
+
include Aws::Structure
|
|
5664
|
+
end
|
|
5665
|
+
|
|
4909
5666
|
# The Kubernetes network configuration for the cluster.
|
|
4910
5667
|
#
|
|
4911
5668
|
# @!attribute [rw] service_ipv_4_cidr
|
|
@@ -5428,6 +6185,70 @@ module Aws::EKS
|
|
|
5428
6185
|
include Aws::Structure
|
|
5429
6186
|
end
|
|
5430
6187
|
|
|
6188
|
+
# @!attribute [rw] cluster_name
|
|
6189
|
+
# The name of your cluster.
|
|
6190
|
+
# @return [String]
|
|
6191
|
+
#
|
|
6192
|
+
# @!attribute [rw] max_results
|
|
6193
|
+
# The maximum number of results to return in a single call. To
|
|
6194
|
+
# retrieve the remaining results, make another call with the returned
|
|
6195
|
+
# `nextToken` value. If you don't specify a value, the default is 100
|
|
6196
|
+
# results.
|
|
6197
|
+
# @return [Integer]
|
|
6198
|
+
#
|
|
6199
|
+
# @!attribute [rw] next_token
|
|
6200
|
+
# The `nextToken` value returned from a previous paginated request,
|
|
6201
|
+
# where `maxResults` was used and the results exceeded the value of
|
|
6202
|
+
# that parameter. Pagination continues from the end of the previous
|
|
6203
|
+
# results that returned the `nextToken` value. This value is null when
|
|
6204
|
+
# there are no more results to return.
|
|
6205
|
+
#
|
|
6206
|
+
# <note markdown="1"> This token should be treated as an opaque identifier that is used
|
|
6207
|
+
# only to retrieve the next items in a list and not for other
|
|
6208
|
+
# programmatic purposes.
|
|
6209
|
+
#
|
|
6210
|
+
# </note>
|
|
6211
|
+
# @return [String]
|
|
6212
|
+
#
|
|
6213
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ListCertificateAuthoritiesRequest AWS API Documentation
|
|
6214
|
+
#
|
|
6215
|
+
class ListCertificateAuthoritiesRequest < Struct.new(
|
|
6216
|
+
:cluster_name,
|
|
6217
|
+
:max_results,
|
|
6218
|
+
:next_token)
|
|
6219
|
+
SENSITIVE = []
|
|
6220
|
+
include Aws::Structure
|
|
6221
|
+
end
|
|
6222
|
+
|
|
6223
|
+
# @!attribute [rw] certificate_authorities
|
|
6224
|
+
# A list of certificate authority summary objects, each containing
|
|
6225
|
+
# basic information about a certificate authority, including its ID,
|
|
6226
|
+
# signing status, and distribution status.
|
|
6227
|
+
# @return [Array<Types::CertificateAuthoritySummary>]
|
|
6228
|
+
#
|
|
6229
|
+
# @!attribute [rw] next_token
|
|
6230
|
+
# The `nextToken` value to include in a future
|
|
6231
|
+
# `ListCertificateAuthorities` request. When the results of a
|
|
6232
|
+
# `ListCertificateAuthorities` request exceed `maxResults`, you can
|
|
6233
|
+
# use this value to retrieve the next page of results. This value is
|
|
6234
|
+
# null when there are no more results to return.
|
|
6235
|
+
#
|
|
6236
|
+
# <note markdown="1"> This token should be treated as an opaque identifier that is used
|
|
6237
|
+
# only to retrieve the next items in a list and not for other
|
|
6238
|
+
# programmatic purposes.
|
|
6239
|
+
#
|
|
6240
|
+
# </note>
|
|
6241
|
+
# @return [String]
|
|
6242
|
+
#
|
|
6243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ListCertificateAuthoritiesResponse AWS API Documentation
|
|
6244
|
+
#
|
|
6245
|
+
class ListCertificateAuthoritiesResponse < Struct.new(
|
|
6246
|
+
:certificate_authorities,
|
|
6247
|
+
:next_token)
|
|
6248
|
+
SENSITIVE = []
|
|
6249
|
+
include Aws::Structure
|
|
6250
|
+
end
|
|
6251
|
+
|
|
5431
6252
|
# @!attribute [rw] max_results
|
|
5432
6253
|
# The maximum number of results, returned in paginated output. You
|
|
5433
6254
|
# receive `maxResults` in a single page, along with a `nextToken`
|
|
@@ -6165,6 +6986,37 @@ module Aws::EKS
|
|
|
6165
6986
|
include Aws::Structure
|
|
6166
6987
|
end
|
|
6167
6988
|
|
|
6989
|
+
# The NodeResourcesFit plugin configuration for the Kubernetes
|
|
6990
|
+
# scheduler.
|
|
6991
|
+
#
|
|
6992
|
+
# @!attribute [rw] scoring_strategy
|
|
6993
|
+
# The scoring strategy used to rank nodes during scheduling.
|
|
6994
|
+
# @return [Types::ScoringStrategy]
|
|
6995
|
+
#
|
|
6996
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/NodeResourcesFitConfig AWS API Documentation
|
|
6997
|
+
#
|
|
6998
|
+
class NodeResourcesFitConfig < Struct.new(
|
|
6999
|
+
:scoring_strategy)
|
|
7000
|
+
SENSITIVE = []
|
|
7001
|
+
include Aws::Structure
|
|
7002
|
+
end
|
|
7003
|
+
|
|
7004
|
+
# The NodeResourcesFit version configuration with default value and
|
|
7005
|
+
# constraints.
|
|
7006
|
+
#
|
|
7007
|
+
# @!attribute [rw] scoring_strategy
|
|
7008
|
+
# The scoring strategy configuration with default value and
|
|
7009
|
+
# constraints.
|
|
7010
|
+
# @return [Types::ScoringStrategyConfig]
|
|
7011
|
+
#
|
|
7012
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/NodeResourcesFitVersionConfig AWS API Documentation
|
|
7013
|
+
#
|
|
7014
|
+
class NodeResourcesFitVersionConfig < Struct.new(
|
|
7015
|
+
:scoring_strategy)
|
|
7016
|
+
SENSITIVE = []
|
|
7017
|
+
include Aws::Structure
|
|
7018
|
+
end
|
|
7019
|
+
|
|
6168
7020
|
# An object representing an Amazon EKS managed node group.
|
|
6169
7021
|
#
|
|
6170
7022
|
# @!attribute [rw] nodegroup_name
|
|
@@ -7029,6 +7881,45 @@ module Aws::EKS
|
|
|
7029
7881
|
include Aws::Structure
|
|
7030
7882
|
end
|
|
7031
7883
|
|
|
7884
|
+
# Constraints for a port range parameter.
|
|
7885
|
+
#
|
|
7886
|
+
# @!attribute [rw] min_port
|
|
7887
|
+
# The constraints for the minimum port value.
|
|
7888
|
+
# @return [Types::IntegerRangeConstraint]
|
|
7889
|
+
#
|
|
7890
|
+
# @!attribute [rw] max_port
|
|
7891
|
+
# The constraints for the maximum port value.
|
|
7892
|
+
# @return [Types::IntegerRangeConstraint]
|
|
7893
|
+
#
|
|
7894
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/PortRangeConstraints AWS API Documentation
|
|
7895
|
+
#
|
|
7896
|
+
class PortRangeConstraints < Struct.new(
|
|
7897
|
+
:min_port,
|
|
7898
|
+
:max_port)
|
|
7899
|
+
SENSITIVE = []
|
|
7900
|
+
include Aws::Structure
|
|
7901
|
+
end
|
|
7902
|
+
|
|
7903
|
+
# A port range parameter configuration with default value and
|
|
7904
|
+
# constraints.
|
|
7905
|
+
#
|
|
7906
|
+
# @!attribute [rw] default_value
|
|
7907
|
+
# The default port range value.
|
|
7908
|
+
# @return [Types::ServiceNodePortRange]
|
|
7909
|
+
#
|
|
7910
|
+
# @!attribute [rw] constraints
|
|
7911
|
+
# The constraints for the port range parameter.
|
|
7912
|
+
# @return [Types::PortRangeConstraints]
|
|
7913
|
+
#
|
|
7914
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/PortRangeParameterConfig AWS API Documentation
|
|
7915
|
+
#
|
|
7916
|
+
class PortRangeParameterConfig < Struct.new(
|
|
7917
|
+
:default_value,
|
|
7918
|
+
:constraints)
|
|
7919
|
+
SENSITIVE = []
|
|
7920
|
+
include Aws::Structure
|
|
7921
|
+
end
|
|
7922
|
+
|
|
7032
7923
|
# Identifies the Key Management Service (KMS) key used to encrypt the
|
|
7033
7924
|
# secrets.
|
|
7034
7925
|
#
|
|
@@ -7361,6 +8252,25 @@ module Aws::EKS
|
|
|
7361
8252
|
include Aws::Structure
|
|
7362
8253
|
end
|
|
7363
8254
|
|
|
8255
|
+
# Constraints for resource weight entries.
|
|
8256
|
+
#
|
|
8257
|
+
# @!attribute [rw] name
|
|
8258
|
+
# The allowed values for resource names.
|
|
8259
|
+
# @return [Types::AllowedValuesConstraint]
|
|
8260
|
+
#
|
|
8261
|
+
# @!attribute [rw] weight
|
|
8262
|
+
# The allowed range for resource weight values.
|
|
8263
|
+
# @return [Types::IntegerRangeConstraint]
|
|
8264
|
+
#
|
|
8265
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ResourceConstraints AWS API Documentation
|
|
8266
|
+
#
|
|
8267
|
+
class ResourceConstraints < Struct.new(
|
|
8268
|
+
:name,
|
|
8269
|
+
:weight)
|
|
8270
|
+
SENSITIVE = []
|
|
8271
|
+
include Aws::Structure
|
|
8272
|
+
end
|
|
8273
|
+
|
|
7364
8274
|
# The specified resource is in use.
|
|
7365
8275
|
#
|
|
7366
8276
|
# @!attribute [rw] cluster_name
|
|
@@ -7477,6 +8387,26 @@ module Aws::EKS
|
|
|
7477
8387
|
include Aws::Structure
|
|
7478
8388
|
end
|
|
7479
8389
|
|
|
8390
|
+
# A resource weight entry for the scheduler scoring strategy.
|
|
8391
|
+
#
|
|
8392
|
+
# @!attribute [rw] name
|
|
8393
|
+
# The name of the resource (for example, `cpu` or `memory`).
|
|
8394
|
+
# @return [String]
|
|
8395
|
+
#
|
|
8396
|
+
# @!attribute [rw] weight
|
|
8397
|
+
# The weight assigned to the resource for scoring. Must be between 1
|
|
8398
|
+
# and 100.
|
|
8399
|
+
# @return [Integer]
|
|
8400
|
+
#
|
|
8401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ResourceWeight AWS API Documentation
|
|
8402
|
+
#
|
|
8403
|
+
class ResourceWeight < Struct.new(
|
|
8404
|
+
:name,
|
|
8405
|
+
:weight)
|
|
8406
|
+
SENSITIVE = []
|
|
8407
|
+
include Aws::Structure
|
|
8408
|
+
end
|
|
8409
|
+
|
|
7480
8410
|
# The rollback configuration for the cluster version rollback.
|
|
7481
8411
|
#
|
|
7482
8412
|
# @!attribute [rw] timeout_minutes
|
|
@@ -7495,6 +8425,65 @@ module Aws::EKS
|
|
|
7495
8425
|
include Aws::Structure
|
|
7496
8426
|
end
|
|
7497
8427
|
|
|
8428
|
+
# The scoring strategy configuration for the NodeResourcesFit scheduler
|
|
8429
|
+
# plugin.
|
|
8430
|
+
#
|
|
8431
|
+
# @!attribute [rw] type
|
|
8432
|
+
# The scoring strategy type. Valid values are `LeastAllocated` or
|
|
8433
|
+
# `MostAllocated`.
|
|
8434
|
+
# @return [String]
|
|
8435
|
+
#
|
|
8436
|
+
# @!attribute [rw] resources
|
|
8437
|
+
# The resource weights used for scoring nodes.
|
|
8438
|
+
# @return [Array<Types::ResourceWeight>]
|
|
8439
|
+
#
|
|
8440
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ScoringStrategy AWS API Documentation
|
|
8441
|
+
#
|
|
8442
|
+
class ScoringStrategy < Struct.new(
|
|
8443
|
+
:type,
|
|
8444
|
+
:resources)
|
|
8445
|
+
SENSITIVE = []
|
|
8446
|
+
include Aws::Structure
|
|
8447
|
+
end
|
|
8448
|
+
|
|
8449
|
+
# The scoring strategy configuration with default value and constraints.
|
|
8450
|
+
#
|
|
8451
|
+
# @!attribute [rw] default_value
|
|
8452
|
+
# The default scoring strategy.
|
|
8453
|
+
# @return [Types::ScoringStrategy]
|
|
8454
|
+
#
|
|
8455
|
+
# @!attribute [rw] constraints
|
|
8456
|
+
# The constraints for the scoring strategy.
|
|
8457
|
+
# @return [Types::ScoringStrategyConstraints]
|
|
8458
|
+
#
|
|
8459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ScoringStrategyConfig AWS API Documentation
|
|
8460
|
+
#
|
|
8461
|
+
class ScoringStrategyConfig < Struct.new(
|
|
8462
|
+
:default_value,
|
|
8463
|
+
:constraints)
|
|
8464
|
+
SENSITIVE = []
|
|
8465
|
+
include Aws::Structure
|
|
8466
|
+
end
|
|
8467
|
+
|
|
8468
|
+
# Constraints for the scoring strategy configuration.
|
|
8469
|
+
#
|
|
8470
|
+
# @!attribute [rw] scoring_strategy
|
|
8471
|
+
# The allowed values for the scoring strategy type.
|
|
8472
|
+
# @return [Types::AllowedValuesConstraint]
|
|
8473
|
+
#
|
|
8474
|
+
# @!attribute [rw] resources
|
|
8475
|
+
# The constraints for resource weights.
|
|
8476
|
+
# @return [Types::ResourceConstraints]
|
|
8477
|
+
#
|
|
8478
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ScoringStrategyConstraints AWS API Documentation
|
|
8479
|
+
#
|
|
8480
|
+
class ScoringStrategyConstraints < Struct.new(
|
|
8481
|
+
:scoring_strategy,
|
|
8482
|
+
:resources)
|
|
8483
|
+
SENSITIVE = []
|
|
8484
|
+
include Aws::Structure
|
|
8485
|
+
end
|
|
8486
|
+
|
|
7498
8487
|
# These errors are usually caused by a server-side issue.
|
|
7499
8488
|
#
|
|
7500
8489
|
# @!attribute [rw] cluster_name
|
|
@@ -7529,6 +8518,25 @@ module Aws::EKS
|
|
|
7529
8518
|
include Aws::Structure
|
|
7530
8519
|
end
|
|
7531
8520
|
|
|
8521
|
+
# The port range for Kubernetes NodePort services.
|
|
8522
|
+
#
|
|
8523
|
+
# @!attribute [rw] min_port
|
|
8524
|
+
# The minimum port number in the range.
|
|
8525
|
+
# @return [Integer]
|
|
8526
|
+
#
|
|
8527
|
+
# @!attribute [rw] max_port
|
|
8528
|
+
# The maximum port number in the range.
|
|
8529
|
+
# @return [Integer]
|
|
8530
|
+
#
|
|
8531
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ServiceNodePortRange AWS API Documentation
|
|
8532
|
+
#
|
|
8533
|
+
class ServiceNodePortRange < Struct.new(
|
|
8534
|
+
:min_port,
|
|
8535
|
+
:max_port)
|
|
8536
|
+
SENSITIVE = []
|
|
8537
|
+
include Aws::Structure
|
|
8538
|
+
end
|
|
8539
|
+
|
|
7532
8540
|
# The service is unavailable. Back off and retry the operation.
|
|
7533
8541
|
#
|
|
7534
8542
|
# @!attribute [rw] message
|
|
@@ -8220,6 +9228,19 @@ module Aws::EKS
|
|
|
8220
9228
|
# see EKS Provisioned Control Plane in the Amazon EKS User Guide.
|
|
8221
9229
|
# @return [Types::ControlPlaneScalingConfig]
|
|
8222
9230
|
#
|
|
9231
|
+
# @!attribute [rw] kube_api_server_config
|
|
9232
|
+
# The Kubernetes API server configuration for the updated cluster.
|
|
9233
|
+
# @return [Types::KubeApiServerConfigRequest]
|
|
9234
|
+
#
|
|
9235
|
+
# @!attribute [rw] kube_scheduler_config
|
|
9236
|
+
# The Kubernetes scheduler configuration for the updated cluster.
|
|
9237
|
+
# @return [Types::KubeSchedulerConfigRequest]
|
|
9238
|
+
#
|
|
9239
|
+
# @!attribute [rw] kube_controller_manager_config
|
|
9240
|
+
# The Kubernetes controller manager configuration for the updated
|
|
9241
|
+
# cluster.
|
|
9242
|
+
# @return [Types::KubeControllerManagerConfigRequest]
|
|
9243
|
+
#
|
|
8223
9244
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdateClusterConfigRequest AWS API Documentation
|
|
8224
9245
|
#
|
|
8225
9246
|
class UpdateClusterConfigRequest < Struct.new(
|
|
@@ -8235,7 +9256,10 @@ module Aws::EKS
|
|
|
8235
9256
|
:storage_config,
|
|
8236
9257
|
:remote_network_config,
|
|
8237
9258
|
:deletion_protection,
|
|
8238
|
-
:control_plane_scaling_config
|
|
9259
|
+
:control_plane_scaling_config,
|
|
9260
|
+
:kube_api_server_config,
|
|
9261
|
+
:kube_scheduler_config,
|
|
9262
|
+
:kube_controller_manager_config)
|
|
8239
9263
|
SENSITIVE = []
|
|
8240
9264
|
include Aws::Structure
|
|
8241
9265
|
end
|