aws-sdk-eks 1.102.0 → 1.103.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eks/client.rb +101 -38
- data/lib/aws-sdk-eks/client_api.rb +24 -0
- data/lib/aws-sdk-eks/types.rb +159 -42
- data/lib/aws-sdk-eks.rb +1 -1
- data/sig/client.rbs +15 -2
- data/sig/types.rbs +21 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f99a65fe6185d8f0b891292be9a37b6d5db6affd0fe4265635d7fbec50bd0c80
|
4
|
+
data.tar.gz: 79a8c28195a121a64fa01ed867f87df37f10277971a326da1f4aab583e6617fe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5ca7b00fff445193ba80003dc87309590786e7c4efbdda024fd18e8d93dc75b5cc753eae6fd9e9086e6fa765c72870bc7c858d5a1978e77d1d3d82d3362ff2d
|
7
|
+
data.tar.gz: cf22789f4168d4963ae8bbcaab1562bb2badb8b0418b753adcd77da9e7079c719a4792c07157f08f9ffdfa4adc3ba96edc79c5a7216ede0c499a3ca16133d324
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.103.0
|
data/lib/aws-sdk-eks/client.rb
CHANGED
@@ -520,7 +520,7 @@ module Aws::EKS
|
|
520
520
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
521
521
|
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate"
|
522
522
|
# resp.update.params #=> Array
|
523
|
-
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode"
|
523
|
+
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode", "PodIdentityAssociations"
|
524
524
|
# resp.update.params[0].value #=> String
|
525
525
|
# resp.update.created_at #=> Time
|
526
526
|
# resp.update.errors #=> Array
|
@@ -604,7 +604,7 @@ module Aws::EKS
|
|
604
604
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
605
605
|
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate"
|
606
606
|
# resp.update.params #=> Array
|
607
|
-
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode"
|
607
|
+
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode", "PodIdentityAssociations"
|
608
608
|
# resp.update.params[0].value #=> String
|
609
609
|
# resp.update.created_at #=> Time
|
610
610
|
# resp.update.errors #=> Array
|
@@ -864,6 +864,17 @@ module Aws::EKS
|
|
864
864
|
# values that you provide are validated against the schema returned by
|
865
865
|
# `DescribeAddonConfiguration`.
|
866
866
|
#
|
867
|
+
# @option params [Array<Types::AddonPodIdentityAssociations>] :pod_identity_associations
|
868
|
+
# An array of Pod Identity Assocations to be created. Each EKS Pod
|
869
|
+
# Identity association maps a Kubernetes service account to an IAM Role.
|
870
|
+
#
|
871
|
+
# For more information, see [Attach an IAM Role to an Amazon EKS add-on
|
872
|
+
# using Pod Identity][1] in the EKS User Guide.
|
873
|
+
#
|
874
|
+
#
|
875
|
+
#
|
876
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html
|
877
|
+
#
|
867
878
|
# @return [Types::CreateAddonResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
868
879
|
#
|
869
880
|
# * {Types::CreateAddonResponse#addon #addon} => Types::Addon
|
@@ -881,6 +892,12 @@ module Aws::EKS
|
|
881
892
|
# "TagKey" => "TagValue",
|
882
893
|
# },
|
883
894
|
# configuration_values: "String",
|
895
|
+
# pod_identity_associations: [
|
896
|
+
# {
|
897
|
+
# service_account: "String", # required
|
898
|
+
# role_arn: "String", # required
|
899
|
+
# },
|
900
|
+
# ],
|
884
901
|
# })
|
885
902
|
#
|
886
903
|
# @example Response structure
|
@@ -890,7 +907,7 @@ module Aws::EKS
|
|
890
907
|
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED", "UPDATE_FAILED"
|
891
908
|
# resp.addon.addon_version #=> String
|
892
909
|
# resp.addon.health.issues #=> Array
|
893
|
-
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound"
|
910
|
+
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound", "AddonSubscriptionNeeded", "AddonPermissionFailure"
|
894
911
|
# resp.addon.health.issues[0].message #=> String
|
895
912
|
# resp.addon.health.issues[0].resource_ids #=> Array
|
896
913
|
# resp.addon.health.issues[0].resource_ids[0] #=> String
|
@@ -905,6 +922,8 @@ module Aws::EKS
|
|
905
922
|
# resp.addon.marketplace_information.product_id #=> String
|
906
923
|
# resp.addon.marketplace_information.product_url #=> String
|
907
924
|
# resp.addon.configuration_values #=> String
|
925
|
+
# resp.addon.pod_identity_associations #=> Array
|
926
|
+
# resp.addon.pod_identity_associations[0] #=> String
|
908
927
|
#
|
909
928
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateAddon AWS API Documentation
|
910
929
|
#
|
@@ -957,16 +976,16 @@ module Aws::EKS
|
|
957
976
|
# In most cases, it takes several minutes to create a cluster. After you
|
958
977
|
# create an Amazon EKS cluster, you must configure your Kubernetes
|
959
978
|
# tooling to communicate with the API server and launch nodes into your
|
960
|
-
# cluster. For more information, see [
|
961
|
-
#
|
962
|
-
#
|
979
|
+
# cluster. For more information, see [Allowing users to access your
|
980
|
+
# cluster][4] and [Launching Amazon EKS nodes][5] in the *Amazon EKS
|
981
|
+
# User Guide*.
|
963
982
|
#
|
964
983
|
#
|
965
984
|
#
|
966
985
|
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html
|
967
986
|
# [2]: https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html
|
968
987
|
# [3]: http://aws.amazon.com/cloudwatch/pricing/
|
969
|
-
# [4]: https://docs.aws.amazon.com/eks/latest/userguide/
|
988
|
+
# [4]: https://docs.aws.amazon.com/eks/latest/userguide/cluster-auth.html
|
970
989
|
# [5]: https://docs.aws.amazon.com/eks/latest/userguide/launch-workers.html
|
971
990
|
#
|
972
991
|
# @option params [required, String] :name
|
@@ -1433,7 +1452,7 @@ module Aws::EKS
|
|
1433
1452
|
# created with the latest AMI release version for the respective minor
|
1434
1453
|
# Kubernetes version of the cluster, unless you deploy a custom AMI
|
1435
1454
|
# using a launch template. For more information about using launch
|
1436
|
-
# templates, see [
|
1455
|
+
# templates, see [Customizing managed nodes with launch templates][1].
|
1437
1456
|
#
|
1438
1457
|
# An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group
|
1439
1458
|
# and associated Amazon EC2 instances that are managed by Amazon Web
|
@@ -1466,7 +1485,8 @@ module Aws::EKS
|
|
1466
1485
|
# disk size is 50 GiB for Windows. If you specify `launchTemplate`, then
|
1467
1486
|
# don't specify `diskSize`, or the node group deployment will fail. For
|
1468
1487
|
# more information about using launch templates with Amazon EKS, see
|
1469
|
-
# [
|
1488
|
+
# [Customizing managed nodes with launch templates][1] in the *Amazon
|
1489
|
+
# EKS User Guide*.
|
1470
1490
|
#
|
1471
1491
|
#
|
1472
1492
|
#
|
@@ -1477,7 +1497,8 @@ module Aws::EKS
|
|
1477
1497
|
# node group. If you specify `launchTemplate`, then don't specify `
|
1478
1498
|
# SubnetId ` in your launch template, or the node group deployment will
|
1479
1499
|
# fail. For more information about using launch templates with Amazon
|
1480
|
-
# EKS, see [
|
1500
|
+
# EKS, see [Customizing managed nodes with launch templates][1] in the
|
1501
|
+
# *Amazon EKS User Guide*.
|
1481
1502
|
#
|
1482
1503
|
#
|
1483
1504
|
#
|
@@ -1495,8 +1516,8 @@ module Aws::EKS
|
|
1495
1516
|
# then `t3.medium` is used, by default. If you specify `Spot` for
|
1496
1517
|
# `capacityType`, then we recommend specifying multiple values for
|
1497
1518
|
# `instanceTypes`. For more information, see [Managed node group
|
1498
|
-
# capacity types][1] and [
|
1499
|
-
# User Guide*.
|
1519
|
+
# capacity types][1] and [Customizing managed nodes with launch
|
1520
|
+
# templates][2] in the *Amazon EKS User Guide*.
|
1500
1521
|
#
|
1501
1522
|
#
|
1502
1523
|
#
|
@@ -1509,8 +1530,8 @@ module Aws::EKS
|
|
1509
1530
|
# or the node group deployment will fail. If your launch template uses a
|
1510
1531
|
# Windows custom AMI, then add `eks:kube-proxy-windows` to your Windows
|
1511
1532
|
# nodes `rolearn` in the `aws-auth` `ConfigMap`. For more information
|
1512
|
-
# about using launch templates with Amazon EKS, see [
|
1513
|
-
#
|
1533
|
+
# about using launch templates with Amazon EKS, see [Customizing managed
|
1534
|
+
# nodes with launch templates][1] in the *Amazon EKS User Guide*.
|
1514
1535
|
#
|
1515
1536
|
#
|
1516
1537
|
#
|
@@ -1521,8 +1542,8 @@ module Aws::EKS
|
|
1521
1542
|
# Linux, the protocol is SSH. For Windows, the protocol is RDP. If you
|
1522
1543
|
# specify `launchTemplate`, then don't specify `remoteAccess`, or the
|
1523
1544
|
# node group deployment will fail. For more information about using
|
1524
|
-
# launch templates with Amazon EKS, see [
|
1525
|
-
# the *Amazon EKS User Guide*.
|
1545
|
+
# launch templates with Amazon EKS, see [Customizing managed nodes with
|
1546
|
+
# launch templates][1] in the *Amazon EKS User Guide*.
|
1526
1547
|
#
|
1527
1548
|
#
|
1528
1549
|
#
|
@@ -1539,8 +1560,9 @@ module Aws::EKS
|
|
1539
1560
|
# in the <i> <i>Amazon EKS User Guide</i> </i>. If you specify
|
1540
1561
|
# `launchTemplate`, then don't specify ` IamInstanceProfile ` in your
|
1541
1562
|
# launch template, or the node group deployment will fail. For more
|
1542
|
-
# information about using launch templates with Amazon EKS, see
|
1543
|
-
#
|
1563
|
+
# information about using launch templates with Amazon EKS, see
|
1564
|
+
# [Customizing managed nodes with launch templates][2] in the *Amazon
|
1565
|
+
# EKS User Guide*.
|
1544
1566
|
#
|
1545
1567
|
#
|
1546
1568
|
#
|
@@ -1573,9 +1595,15 @@ module Aws::EKS
|
|
1573
1595
|
#
|
1574
1596
|
# @option params [Types::LaunchTemplateSpecification] :launch_template
|
1575
1597
|
# An object representing a node group's launch template specification.
|
1576
|
-
#
|
1577
|
-
# `remoteAccess
|
1578
|
-
# requirements in `launchTemplateSpecification`.
|
1598
|
+
# When using this object, don't directly specify `instanceTypes`,
|
1599
|
+
# `diskSize`, or `remoteAccess`. Make sure that the launch template
|
1600
|
+
# meets the requirements in `launchTemplateSpecification`. Also refer to
|
1601
|
+
# [Customizing managed nodes with launch templates][1] in the *Amazon
|
1602
|
+
# EKS User Guide*.
|
1603
|
+
#
|
1604
|
+
#
|
1605
|
+
#
|
1606
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
|
1579
1607
|
#
|
1580
1608
|
# @option params [Types::NodegroupUpdateConfig] :update_config
|
1581
1609
|
# The node group update configuration.
|
@@ -1589,8 +1617,8 @@ module Aws::EKS
|
|
1589
1617
|
# accepted specified value. If you specify `launchTemplate`, and your
|
1590
1618
|
# launch template uses a custom AMI, then don't specify `version`, or
|
1591
1619
|
# the node group deployment will fail. For more information about using
|
1592
|
-
# launch templates with Amazon EKS, see [
|
1593
|
-
# the *Amazon EKS User Guide*.
|
1620
|
+
# launch templates with Amazon EKS, see [Customizing managed nodes with
|
1621
|
+
# launch templates][1] in the *Amazon EKS User Guide*.
|
1594
1622
|
#
|
1595
1623
|
#
|
1596
1624
|
#
|
@@ -1609,8 +1637,8 @@ module Aws::EKS
|
|
1609
1637
|
# If you specify `launchTemplate`, and your launch template uses a
|
1610
1638
|
# custom AMI, then don't specify `releaseVersion`, or the node group
|
1611
1639
|
# deployment will fail. For more information about using launch
|
1612
|
-
# templates with Amazon EKS, see [
|
1613
|
-
# *Amazon EKS User Guide*.
|
1640
|
+
# templates with Amazon EKS, see [Customizing managed nodes with launch
|
1641
|
+
# templates][3] in the *Amazon EKS User Guide*.
|
1614
1642
|
#
|
1615
1643
|
#
|
1616
1644
|
#
|
@@ -1828,6 +1856,7 @@ module Aws::EKS
|
|
1828
1856
|
# resp.association.tags["TagKey"] #=> String
|
1829
1857
|
# resp.association.created_at #=> Time
|
1830
1858
|
# resp.association.modified_at #=> Time
|
1859
|
+
# resp.association.owner_arn #=> String
|
1831
1860
|
#
|
1832
1861
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreatePodIdentityAssociation AWS API Documentation
|
1833
1862
|
#
|
@@ -1909,7 +1938,7 @@ module Aws::EKS
|
|
1909
1938
|
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED", "UPDATE_FAILED"
|
1910
1939
|
# resp.addon.addon_version #=> String
|
1911
1940
|
# resp.addon.health.issues #=> Array
|
1912
|
-
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound"
|
1941
|
+
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound", "AddonSubscriptionNeeded", "AddonPermissionFailure"
|
1913
1942
|
# resp.addon.health.issues[0].message #=> String
|
1914
1943
|
# resp.addon.health.issues[0].resource_ids #=> Array
|
1915
1944
|
# resp.addon.health.issues[0].resource_ids[0] #=> String
|
@@ -1924,6 +1953,8 @@ module Aws::EKS
|
|
1924
1953
|
# resp.addon.marketplace_information.product_id #=> String
|
1925
1954
|
# resp.addon.marketplace_information.product_url #=> String
|
1926
1955
|
# resp.addon.configuration_values #=> String
|
1956
|
+
# resp.addon.pod_identity_associations #=> Array
|
1957
|
+
# resp.addon.pod_identity_associations[0] #=> String
|
1927
1958
|
#
|
1928
1959
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeleteAddon AWS API Documentation
|
1929
1960
|
#
|
@@ -2251,6 +2282,7 @@ module Aws::EKS
|
|
2251
2282
|
# resp.association.tags["TagKey"] #=> String
|
2252
2283
|
# resp.association.created_at #=> Time
|
2253
2284
|
# resp.association.modified_at #=> Time
|
2285
|
+
# resp.association.owner_arn #=> String
|
2254
2286
|
#
|
2255
2287
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DeletePodIdentityAssociation AWS API Documentation
|
2256
2288
|
#
|
@@ -2420,7 +2452,7 @@ module Aws::EKS
|
|
2420
2452
|
# resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED", "UPDATE_FAILED"
|
2421
2453
|
# resp.addon.addon_version #=> String
|
2422
2454
|
# resp.addon.health.issues #=> Array
|
2423
|
-
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound"
|
2455
|
+
# resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification", "K8sResourceNotFound", "AddonSubscriptionNeeded", "AddonPermissionFailure"
|
2424
2456
|
# resp.addon.health.issues[0].message #=> String
|
2425
2457
|
# resp.addon.health.issues[0].resource_ids #=> Array
|
2426
2458
|
# resp.addon.health.issues[0].resource_ids[0] #=> String
|
@@ -2435,6 +2467,8 @@ module Aws::EKS
|
|
2435
2467
|
# resp.addon.marketplace_information.product_id #=> String
|
2436
2468
|
# resp.addon.marketplace_information.product_url #=> String
|
2437
2469
|
# resp.addon.configuration_values #=> String
|
2470
|
+
# resp.addon.pod_identity_associations #=> Array
|
2471
|
+
# resp.addon.pod_identity_associations[0] #=> String
|
2438
2472
|
#
|
2439
2473
|
#
|
2440
2474
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -2470,6 +2504,7 @@ module Aws::EKS
|
|
2470
2504
|
# * {Types::DescribeAddonConfigurationResponse#addon_name #addon_name} => String
|
2471
2505
|
# * {Types::DescribeAddonConfigurationResponse#addon_version #addon_version} => String
|
2472
2506
|
# * {Types::DescribeAddonConfigurationResponse#configuration_schema #configuration_schema} => String
|
2507
|
+
# * {Types::DescribeAddonConfigurationResponse#pod_identity_configuration #pod_identity_configuration} => Array<Types::AddonPodIdentityConfiguration>
|
2473
2508
|
#
|
2474
2509
|
# @example Request syntax with placeholder values
|
2475
2510
|
#
|
@@ -2483,6 +2518,10 @@ module Aws::EKS
|
|
2483
2518
|
# resp.addon_name #=> String
|
2484
2519
|
# resp.addon_version #=> String
|
2485
2520
|
# resp.configuration_schema #=> String
|
2521
|
+
# resp.pod_identity_configuration #=> Array
|
2522
|
+
# resp.pod_identity_configuration[0].service_account #=> String
|
2523
|
+
# resp.pod_identity_configuration[0].recommended_managed_policies #=> Array
|
2524
|
+
# resp.pod_identity_configuration[0].recommended_managed_policies[0] #=> String
|
2486
2525
|
#
|
2487
2526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonConfiguration AWS API Documentation
|
2488
2527
|
#
|
@@ -2578,6 +2617,7 @@ module Aws::EKS
|
|
2578
2617
|
# resp.addons[0].addon_versions[0].compatibilities[0].platform_versions[0] #=> String
|
2579
2618
|
# resp.addons[0].addon_versions[0].compatibilities[0].default_version #=> Boolean
|
2580
2619
|
# resp.addons[0].addon_versions[0].requires_configuration #=> Boolean
|
2620
|
+
# resp.addons[0].addon_versions[0].requires_iam_permissions #=> Boolean
|
2581
2621
|
# resp.addons[0].publisher #=> String
|
2582
2622
|
# resp.addons[0].owner #=> String
|
2583
2623
|
# resp.addons[0].marketplace_information.product_id #=> String
|
@@ -3041,6 +3081,7 @@ module Aws::EKS
|
|
3041
3081
|
# resp.association.tags["TagKey"] #=> String
|
3042
3082
|
# resp.association.created_at #=> Time
|
3043
3083
|
# resp.association.modified_at #=> Time
|
3084
|
+
# resp.association.owner_arn #=> String
|
3044
3085
|
#
|
3045
3086
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribePodIdentityAssociation AWS API Documentation
|
3046
3087
|
#
|
@@ -3095,7 +3136,7 @@ module Aws::EKS
|
|
3095
3136
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
3096
3137
|
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate"
|
3097
3138
|
# resp.update.params #=> Array
|
3098
|
-
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode"
|
3139
|
+
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode", "PodIdentityAssociations"
|
3099
3140
|
# resp.update.params[0].value #=> String
|
3100
3141
|
# resp.update.created_at #=> Time
|
3101
3142
|
# resp.update.errors #=> Array
|
@@ -3184,7 +3225,7 @@ module Aws::EKS
|
|
3184
3225
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
3185
3226
|
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate"
|
3186
3227
|
# resp.update.params #=> Array
|
3187
|
-
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode"
|
3228
|
+
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode", "PodIdentityAssociations"
|
3188
3229
|
# resp.update.params[0].value #=> String
|
3189
3230
|
# resp.update.created_at #=> Time
|
3190
3231
|
# resp.update.errors #=> Array
|
@@ -3905,6 +3946,7 @@ module Aws::EKS
|
|
3905
3946
|
# resp.associations[0].service_account #=> String
|
3906
3947
|
# resp.associations[0].association_arn #=> String
|
3907
3948
|
# resp.associations[0].association_id #=> String
|
3949
|
+
# resp.associations[0].owner_arn #=> String
|
3908
3950
|
# resp.next_token #=> String
|
3909
3951
|
#
|
3910
3952
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ListPodIdentityAssociations AWS API Documentation
|
@@ -4371,6 +4413,19 @@ module Aws::EKS
|
|
4371
4413
|
# values that you provide are validated against the schema returned by
|
4372
4414
|
# `DescribeAddonConfiguration`.
|
4373
4415
|
#
|
4416
|
+
# @option params [Array<Types::AddonPodIdentityAssociations>] :pod_identity_associations
|
4417
|
+
# An array of Pod Identity Assocations to be updated. Each EKS Pod
|
4418
|
+
# Identity association maps a Kubernetes service account to an IAM Role.
|
4419
|
+
# If this value is left blank, no change. If an empty array is provided,
|
4420
|
+
# existing Pod Identity Assocations owned by the Addon are deleted.
|
4421
|
+
#
|
4422
|
+
# For more information, see [Attach an IAM Role to an Amazon EKS add-on
|
4423
|
+
# using Pod Identity][1] in the EKS User Guide.
|
4424
|
+
#
|
4425
|
+
#
|
4426
|
+
#
|
4427
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html
|
4428
|
+
#
|
4374
4429
|
# @return [Types::UpdateAddonResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4375
4430
|
#
|
4376
4431
|
# * {Types::UpdateAddonResponse#update #update} => Types::Update
|
@@ -4385,6 +4440,12 @@ module Aws::EKS
|
|
4385
4440
|
# resolve_conflicts: "OVERWRITE", # accepts OVERWRITE, NONE, PRESERVE
|
4386
4441
|
# client_request_token: "String",
|
4387
4442
|
# configuration_values: "String",
|
4443
|
+
# pod_identity_associations: [
|
4444
|
+
# {
|
4445
|
+
# service_account: "String", # required
|
4446
|
+
# role_arn: "String", # required
|
4447
|
+
# },
|
4448
|
+
# ],
|
4388
4449
|
# })
|
4389
4450
|
#
|
4390
4451
|
# @example Response structure
|
@@ -4393,7 +4454,7 @@ module Aws::EKS
|
|
4393
4454
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
4394
4455
|
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate"
|
4395
4456
|
# resp.update.params #=> Array
|
4396
|
-
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode"
|
4457
|
+
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode", "PodIdentityAssociations"
|
4397
4458
|
# resp.update.params[0].value #=> String
|
4398
4459
|
# resp.update.created_at #=> Time
|
4399
4460
|
# resp.update.errors #=> Array
|
@@ -4526,7 +4587,7 @@ module Aws::EKS
|
|
4526
4587
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
4527
4588
|
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate"
|
4528
4589
|
# resp.update.params #=> Array
|
4529
|
-
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode"
|
4590
|
+
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode", "PodIdentityAssociations"
|
4530
4591
|
# resp.update.params[0].value #=> String
|
4531
4592
|
# resp.update.created_at #=> Time
|
4532
4593
|
# resp.update.errors #=> Array
|
@@ -4590,7 +4651,7 @@ module Aws::EKS
|
|
4590
4651
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
4591
4652
|
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate"
|
4592
4653
|
# resp.update.params #=> Array
|
4593
|
-
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode"
|
4654
|
+
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode", "PodIdentityAssociations"
|
4594
4655
|
# resp.update.params[0].value #=> String
|
4595
4656
|
# resp.update.created_at #=> Time
|
4596
4657
|
# resp.update.errors #=> Array
|
@@ -4753,7 +4814,7 @@ module Aws::EKS
|
|
4753
4814
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
4754
4815
|
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate"
|
4755
4816
|
# resp.update.params #=> Array
|
4756
|
-
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode"
|
4817
|
+
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode", "PodIdentityAssociations"
|
4757
4818
|
# resp.update.params[0].value #=> String
|
4758
4819
|
# resp.update.created_at #=> Time
|
4759
4820
|
# resp.update.errors #=> Array
|
@@ -4819,7 +4880,8 @@ module Aws::EKS
|
|
4819
4880
|
# specify `launchTemplate`, and your launch template uses a custom AMI,
|
4820
4881
|
# then don't specify `version`, or the node group update will fail. For
|
4821
4882
|
# more information about using launch templates with Amazon EKS, see
|
4822
|
-
# [
|
4883
|
+
# [Customizing managed nodes with launch templates][1] in the *Amazon
|
4884
|
+
# EKS User Guide*.
|
4823
4885
|
#
|
4824
4886
|
#
|
4825
4887
|
#
|
@@ -4838,8 +4900,8 @@ module Aws::EKS
|
|
4838
4900
|
# If you specify `launchTemplate`, and your launch template uses a
|
4839
4901
|
# custom AMI, then don't specify `releaseVersion`, or the node group
|
4840
4902
|
# update will fail. For more information about using launch templates
|
4841
|
-
# with Amazon EKS, see [
|
4842
|
-
# User Guide*.
|
4903
|
+
# with Amazon EKS, see [Customizing managed nodes with launch
|
4904
|
+
# templates][3] in the *Amazon EKS User Guide*.
|
4843
4905
|
#
|
4844
4906
|
#
|
4845
4907
|
#
|
@@ -4892,7 +4954,7 @@ module Aws::EKS
|
|
4892
4954
|
# resp.update.status #=> String, one of "InProgress", "Failed", "Cancelled", "Successful"
|
4893
4955
|
# resp.update.type #=> String, one of "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", "ConfigUpdate", "AssociateIdentityProviderConfig", "DisassociateIdentityProviderConfig", "AssociateEncryptionConfig", "AddonUpdate", "VpcConfigUpdate", "AccessConfigUpdate"
|
4894
4956
|
# resp.update.params #=> Array
|
4895
|
-
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode"
|
4957
|
+
# resp.update.params[0].type #=> String, one of "Version", "PlatformVersion", "EndpointPrivateAccess", "EndpointPublicAccess", "ClusterLogging", "DesiredSize", "LabelsToAdd", "LabelsToRemove", "TaintsToAdd", "TaintsToRemove", "MaxSize", "MinSize", "ReleaseVersion", "PublicAccessCidrs", "LaunchTemplateName", "LaunchTemplateVersion", "IdentityProviderConfig", "EncryptionConfig", "AddonVersion", "ServiceAccountRoleArn", "ResolveConflicts", "MaxUnavailable", "MaxUnavailablePercentage", "ConfigurationValues", "SecurityGroups", "Subnets", "AuthenticationMode", "PodIdentityAssociations"
|
4896
4958
|
# resp.update.params[0].value #=> String
|
4897
4959
|
# resp.update.created_at #=> Time
|
4898
4960
|
# resp.update.errors #=> Array
|
@@ -4957,6 +5019,7 @@ module Aws::EKS
|
|
4957
5019
|
# resp.association.tags["TagKey"] #=> String
|
4958
5020
|
# resp.association.created_at #=> Time
|
4959
5021
|
# resp.association.modified_at #=> Time
|
5022
|
+
# resp.association.owner_arn #=> String
|
4960
5023
|
#
|
4961
5024
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdatePodIdentityAssociation AWS API Documentation
|
4962
5025
|
#
|
@@ -4980,7 +5043,7 @@ module Aws::EKS
|
|
4980
5043
|
params: params,
|
4981
5044
|
config: config)
|
4982
5045
|
context[:gem_name] = 'aws-sdk-eks'
|
4983
|
-
context[:gem_version] = '1.
|
5046
|
+
context[:gem_version] = '1.103.0'
|
4984
5047
|
Seahorse::Client::Request.new(handlers, context)
|
4985
5048
|
end
|
4986
5049
|
|
@@ -28,6 +28,10 @@ module Aws::EKS
|
|
28
28
|
AddonIssue = Shapes::StructureShape.new(name: 'AddonIssue')
|
29
29
|
AddonIssueCode = Shapes::StringShape.new(name: 'AddonIssueCode')
|
30
30
|
AddonIssueList = Shapes::ListShape.new(name: 'AddonIssueList')
|
31
|
+
AddonPodIdentityAssociations = Shapes::StructureShape.new(name: 'AddonPodIdentityAssociations')
|
32
|
+
AddonPodIdentityAssociationsList = Shapes::ListShape.new(name: 'AddonPodIdentityAssociationsList')
|
33
|
+
AddonPodIdentityConfiguration = Shapes::StructureShape.new(name: 'AddonPodIdentityConfiguration')
|
34
|
+
AddonPodIdentityConfigurationList = Shapes::ListShape.new(name: 'AddonPodIdentityConfigurationList')
|
31
35
|
AddonStatus = Shapes::StringShape.new(name: 'AddonStatus')
|
32
36
|
AddonVersionInfo = Shapes::StructureShape.new(name: 'AddonVersionInfo')
|
33
37
|
AddonVersionInfoList = Shapes::ListShape.new(name: 'AddonVersionInfoList')
|
@@ -346,6 +350,7 @@ module Aws::EKS
|
|
346
350
|
Addon.add_member(:owner, Shapes::ShapeRef.new(shape: String, location_name: "owner"))
|
347
351
|
Addon.add_member(:marketplace_information, Shapes::ShapeRef.new(shape: MarketplaceInformation, location_name: "marketplaceInformation"))
|
348
352
|
Addon.add_member(:configuration_values, Shapes::ShapeRef.new(shape: String, location_name: "configurationValues"))
|
353
|
+
Addon.add_member(:pod_identity_associations, Shapes::ShapeRef.new(shape: StringList, location_name: "podIdentityAssociations"))
|
349
354
|
Addon.struct_class = Types::Addon
|
350
355
|
|
351
356
|
AddonHealth.add_member(:issues, Shapes::ShapeRef.new(shape: AddonIssueList, location_name: "issues"))
|
@@ -366,10 +371,23 @@ module Aws::EKS
|
|
366
371
|
|
367
372
|
AddonIssueList.member = Shapes::ShapeRef.new(shape: AddonIssue)
|
368
373
|
|
374
|
+
AddonPodIdentityAssociations.add_member(:service_account, Shapes::ShapeRef.new(shape: String, required: true, location_name: "serviceAccount"))
|
375
|
+
AddonPodIdentityAssociations.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "roleArn"))
|
376
|
+
AddonPodIdentityAssociations.struct_class = Types::AddonPodIdentityAssociations
|
377
|
+
|
378
|
+
AddonPodIdentityAssociationsList.member = Shapes::ShapeRef.new(shape: AddonPodIdentityAssociations)
|
379
|
+
|
380
|
+
AddonPodIdentityConfiguration.add_member(:service_account, Shapes::ShapeRef.new(shape: String, location_name: "serviceAccount"))
|
381
|
+
AddonPodIdentityConfiguration.add_member(:recommended_managed_policies, Shapes::ShapeRef.new(shape: StringList, location_name: "recommendedManagedPolicies"))
|
382
|
+
AddonPodIdentityConfiguration.struct_class = Types::AddonPodIdentityConfiguration
|
383
|
+
|
384
|
+
AddonPodIdentityConfigurationList.member = Shapes::ShapeRef.new(shape: AddonPodIdentityConfiguration)
|
385
|
+
|
369
386
|
AddonVersionInfo.add_member(:addon_version, Shapes::ShapeRef.new(shape: String, location_name: "addonVersion"))
|
370
387
|
AddonVersionInfo.add_member(:architecture, Shapes::ShapeRef.new(shape: StringList, location_name: "architecture"))
|
371
388
|
AddonVersionInfo.add_member(:compatibilities, Shapes::ShapeRef.new(shape: Compatibilities, location_name: "compatibilities"))
|
372
389
|
AddonVersionInfo.add_member(:requires_configuration, Shapes::ShapeRef.new(shape: Boolean, location_name: "requiresConfiguration"))
|
390
|
+
AddonVersionInfo.add_member(:requires_iam_permissions, Shapes::ShapeRef.new(shape: Boolean, location_name: "requiresIamPermissions"))
|
373
391
|
AddonVersionInfo.struct_class = Types::AddonVersionInfo
|
374
392
|
|
375
393
|
AddonVersionInfoList.member = Shapes::ShapeRef.new(shape: AddonVersionInfo)
|
@@ -521,6 +539,7 @@ module Aws::EKS
|
|
521
539
|
CreateAddonRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: String, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
522
540
|
CreateAddonRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
523
541
|
CreateAddonRequest.add_member(:configuration_values, Shapes::ShapeRef.new(shape: String, location_name: "configurationValues"))
|
542
|
+
CreateAddonRequest.add_member(:pod_identity_associations, Shapes::ShapeRef.new(shape: AddonPodIdentityAssociationsList, location_name: "podIdentityAssociations"))
|
524
543
|
CreateAddonRequest.struct_class = Types::CreateAddonRequest
|
525
544
|
|
526
545
|
CreateAddonResponse.add_member(:addon, Shapes::ShapeRef.new(shape: Addon, location_name: "addon"))
|
@@ -676,6 +695,7 @@ module Aws::EKS
|
|
676
695
|
DescribeAddonConfigurationResponse.add_member(:addon_name, Shapes::ShapeRef.new(shape: String, location_name: "addonName"))
|
677
696
|
DescribeAddonConfigurationResponse.add_member(:addon_version, Shapes::ShapeRef.new(shape: String, location_name: "addonVersion"))
|
678
697
|
DescribeAddonConfigurationResponse.add_member(:configuration_schema, Shapes::ShapeRef.new(shape: String, location_name: "configurationSchema"))
|
698
|
+
DescribeAddonConfigurationResponse.add_member(:pod_identity_configuration, Shapes::ShapeRef.new(shape: AddonPodIdentityConfigurationList, location_name: "podIdentityConfiguration"))
|
679
699
|
DescribeAddonConfigurationResponse.struct_class = Types::DescribeAddonConfigurationResponse
|
680
700
|
|
681
701
|
DescribeAddonRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterName, required: true, location: "uri", location_name: "name"))
|
@@ -1148,6 +1168,7 @@ module Aws::EKS
|
|
1148
1168
|
PodIdentityAssociation.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
1149
1169
|
PodIdentityAssociation.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
1150
1170
|
PodIdentityAssociation.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "modifiedAt"))
|
1171
|
+
PodIdentityAssociation.add_member(:owner_arn, Shapes::ShapeRef.new(shape: String, location_name: "ownerArn"))
|
1151
1172
|
PodIdentityAssociation.struct_class = Types::PodIdentityAssociation
|
1152
1173
|
|
1153
1174
|
PodIdentityAssociationSummaries.member = Shapes::ShapeRef.new(shape: PodIdentityAssociationSummary)
|
@@ -1157,6 +1178,7 @@ module Aws::EKS
|
|
1157
1178
|
PodIdentityAssociationSummary.add_member(:service_account, Shapes::ShapeRef.new(shape: String, location_name: "serviceAccount"))
|
1158
1179
|
PodIdentityAssociationSummary.add_member(:association_arn, Shapes::ShapeRef.new(shape: String, location_name: "associationArn"))
|
1159
1180
|
PodIdentityAssociationSummary.add_member(:association_id, Shapes::ShapeRef.new(shape: String, location_name: "associationId"))
|
1181
|
+
PodIdentityAssociationSummary.add_member(:owner_arn, Shapes::ShapeRef.new(shape: String, location_name: "ownerArn"))
|
1160
1182
|
PodIdentityAssociationSummary.struct_class = Types::PodIdentityAssociationSummary
|
1161
1183
|
|
1162
1184
|
Provider.add_member(:key_arn, Shapes::ShapeRef.new(shape: String, location_name: "keyArn"))
|
@@ -1266,6 +1288,7 @@ module Aws::EKS
|
|
1266
1288
|
UpdateAddonRequest.add_member(:resolve_conflicts, Shapes::ShapeRef.new(shape: ResolveConflicts, location_name: "resolveConflicts"))
|
1267
1289
|
UpdateAddonRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: String, location_name: "clientRequestToken", metadata: {"idempotencyToken"=>true}))
|
1268
1290
|
UpdateAddonRequest.add_member(:configuration_values, Shapes::ShapeRef.new(shape: String, location_name: "configurationValues"))
|
1291
|
+
UpdateAddonRequest.add_member(:pod_identity_associations, Shapes::ShapeRef.new(shape: AddonPodIdentityAssociationsList, location_name: "podIdentityAssociations"))
|
1269
1292
|
UpdateAddonRequest.struct_class = Types::UpdateAddonRequest
|
1270
1293
|
|
1271
1294
|
UpdateAddonResponse.add_member(:update, Shapes::ShapeRef.new(shape: Update, location_name: "update"))
|
@@ -1381,6 +1404,7 @@ module Aws::EKS
|
|
1381
1404
|
"endpointPrefix" => "eks",
|
1382
1405
|
"jsonVersion" => "1.1",
|
1383
1406
|
"protocol" => "rest-json",
|
1407
|
+
"protocols" => ["rest-json"],
|
1384
1408
|
"serviceAbbreviation" => "Amazon EKS",
|
1385
1409
|
"serviceFullName" => "Amazon Elastic Kubernetes Service",
|
1386
1410
|
"serviceId" => "EKS",
|
data/lib/aws-sdk-eks/types.rb
CHANGED
@@ -251,6 +251,19 @@ module Aws::EKS
|
|
251
251
|
# The configuration values that you provided.
|
252
252
|
# @return [String]
|
253
253
|
#
|
254
|
+
# @!attribute [rw] pod_identity_associations
|
255
|
+
# An array of Pod Identity Assocations owned by the Addon. Each EKS
|
256
|
+
# Pod Identity association maps a role to a service account in a
|
257
|
+
# namespace in the cluster.
|
258
|
+
#
|
259
|
+
# For more information, see [Attach an IAM Role to an Amazon EKS
|
260
|
+
# add-on using Pod Identity][1] in the EKS User Guide.
|
261
|
+
#
|
262
|
+
#
|
263
|
+
#
|
264
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html
|
265
|
+
# @return [Array<String>]
|
266
|
+
#
|
254
267
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/Addon AWS API Documentation
|
255
268
|
#
|
256
269
|
class Addon < Struct.new(
|
@@ -267,7 +280,8 @@ module Aws::EKS
|
|
267
280
|
:publisher,
|
268
281
|
:owner,
|
269
282
|
:marketplace_information,
|
270
|
-
:configuration_values
|
283
|
+
:configuration_values,
|
284
|
+
:pod_identity_associations)
|
271
285
|
SENSITIVE = []
|
272
286
|
include Aws::Structure
|
273
287
|
end
|
@@ -352,6 +366,54 @@ module Aws::EKS
|
|
352
366
|
include Aws::Structure
|
353
367
|
end
|
354
368
|
|
369
|
+
# A type of Pod Identity Association owned by an Amazon EKS Add-on.
|
370
|
+
#
|
371
|
+
# Each EKS Pod Identity Association maps a role to a service account in
|
372
|
+
# a namespace in the cluster.
|
373
|
+
#
|
374
|
+
# For more information, see [Attach an IAM Role to an Amazon EKS add-on
|
375
|
+
# using Pod Identity][1] in the EKS User Guide.
|
376
|
+
#
|
377
|
+
#
|
378
|
+
#
|
379
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html
|
380
|
+
#
|
381
|
+
# @!attribute [rw] service_account
|
382
|
+
# The name of a Kubernetes Service Account.
|
383
|
+
# @return [String]
|
384
|
+
#
|
385
|
+
# @!attribute [rw] role_arn
|
386
|
+
# The ARN of an IAM Role.
|
387
|
+
# @return [String]
|
388
|
+
#
|
389
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonPodIdentityAssociations AWS API Documentation
|
390
|
+
#
|
391
|
+
class AddonPodIdentityAssociations < Struct.new(
|
392
|
+
:service_account,
|
393
|
+
:role_arn)
|
394
|
+
SENSITIVE = []
|
395
|
+
include Aws::Structure
|
396
|
+
end
|
397
|
+
|
398
|
+
# Information about how to configure IAM for an Addon.
|
399
|
+
#
|
400
|
+
# @!attribute [rw] service_account
|
401
|
+
# The Kubernetes Service Account name used by the addon.
|
402
|
+
# @return [String]
|
403
|
+
#
|
404
|
+
# @!attribute [rw] recommended_managed_policies
|
405
|
+
# A suggested IAM Policy for the addon.
|
406
|
+
# @return [Array<String>]
|
407
|
+
#
|
408
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonPodIdentityConfiguration AWS API Documentation
|
409
|
+
#
|
410
|
+
class AddonPodIdentityConfiguration < Struct.new(
|
411
|
+
:service_account,
|
412
|
+
:recommended_managed_policies)
|
413
|
+
SENSITIVE = []
|
414
|
+
include Aws::Structure
|
415
|
+
end
|
416
|
+
|
355
417
|
# Information about an add-on version.
|
356
418
|
#
|
357
419
|
# @!attribute [rw] addon_version
|
@@ -370,13 +432,19 @@ module Aws::EKS
|
|
370
432
|
# Whether the add-on requires configuration.
|
371
433
|
# @return [Boolean]
|
372
434
|
#
|
435
|
+
# @!attribute [rw] requires_iam_permissions
|
436
|
+
# Indicates if the Addon requires IAM Permissions to operate, such as
|
437
|
+
# networking permissions.
|
438
|
+
# @return [Boolean]
|
439
|
+
#
|
373
440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/AddonVersionInfo AWS API Documentation
|
374
441
|
#
|
375
442
|
class AddonVersionInfo < Struct.new(
|
376
443
|
:addon_version,
|
377
444
|
:architecture,
|
378
445
|
:compatibilities,
|
379
|
-
:requires_configuration
|
446
|
+
:requires_configuration,
|
447
|
+
:requires_iam_permissions)
|
380
448
|
SENSITIVE = []
|
381
449
|
include Aws::Structure
|
382
450
|
end
|
@@ -780,9 +848,7 @@ module Aws::EKS
|
|
780
848
|
# @return [String]
|
781
849
|
#
|
782
850
|
# @!attribute [rw] health
|
783
|
-
# An object representing the health of your
|
784
|
-
# on an Amazon Web Services Outpost. This object isn't available for
|
785
|
-
# clusters on the Amazon Web Services cloud.
|
851
|
+
# An object representing the health of your Amazon EKS cluster.
|
786
852
|
# @return [Types::ClusterHealth]
|
787
853
|
#
|
788
854
|
# @!attribute [rw] outpost_config
|
@@ -823,13 +889,10 @@ module Aws::EKS
|
|
823
889
|
include Aws::Structure
|
824
890
|
end
|
825
891
|
|
826
|
-
# An object representing the health of your
|
827
|
-
# an Amazon Web Services Outpost. You can't use this API with an Amazon
|
828
|
-
# EKS cluster on the Amazon Web Services cloud.
|
892
|
+
# An object representing the health of your Amazon EKS cluster.
|
829
893
|
#
|
830
894
|
# @!attribute [rw] issues
|
831
|
-
# An object representing the health issues of your
|
832
|
-
# cluster on an Amazon Web Services Outpost.
|
895
|
+
# An object representing the health issues of your Amazon EKS cluster.
|
833
896
|
# @return [Array<Types::ClusterIssue>]
|
834
897
|
#
|
835
898
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/ClusterHealth AWS API Documentation
|
@@ -840,9 +903,7 @@ module Aws::EKS
|
|
840
903
|
include Aws::Structure
|
841
904
|
end
|
842
905
|
|
843
|
-
# An issue with your
|
844
|
-
# Outpost. You can't use this API with an Amazon EKS cluster on the
|
845
|
-
# Amazon Web Services cloud.
|
906
|
+
# An issue with your Amazon EKS cluster.
|
846
907
|
#
|
847
908
|
# @!attribute [rw] code
|
848
909
|
# The error code of the issue.
|
@@ -1234,6 +1295,19 @@ module Aws::EKS
|
|
1234
1295
|
# `DescribeAddonConfiguration`.
|
1235
1296
|
# @return [String]
|
1236
1297
|
#
|
1298
|
+
# @!attribute [rw] pod_identity_associations
|
1299
|
+
# An array of Pod Identity Assocations to be created. Each EKS Pod
|
1300
|
+
# Identity association maps a Kubernetes service account to an IAM
|
1301
|
+
# Role.
|
1302
|
+
#
|
1303
|
+
# For more information, see [Attach an IAM Role to an Amazon EKS
|
1304
|
+
# add-on using Pod Identity][1] in the EKS User Guide.
|
1305
|
+
#
|
1306
|
+
#
|
1307
|
+
#
|
1308
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html
|
1309
|
+
# @return [Array<Types::AddonPodIdentityAssociations>]
|
1310
|
+
#
|
1237
1311
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/CreateAddonRequest AWS API Documentation
|
1238
1312
|
#
|
1239
1313
|
class CreateAddonRequest < Struct.new(
|
@@ -1244,7 +1318,8 @@ module Aws::EKS
|
|
1244
1318
|
:resolve_conflicts,
|
1245
1319
|
:client_request_token,
|
1246
1320
|
:tags,
|
1247
|
-
:configuration_values
|
1321
|
+
:configuration_values,
|
1322
|
+
:pod_identity_associations)
|
1248
1323
|
SENSITIVE = []
|
1249
1324
|
include Aws::Structure
|
1250
1325
|
end
|
@@ -1567,8 +1642,8 @@ module Aws::EKS
|
|
1567
1642
|
# default disk size is 50 GiB for Windows. If you specify
|
1568
1643
|
# `launchTemplate`, then don't specify `diskSize`, or the node group
|
1569
1644
|
# deployment will fail. For more information about using launch
|
1570
|
-
# templates with Amazon EKS, see [
|
1571
|
-
# *Amazon EKS User Guide*.
|
1645
|
+
# templates with Amazon EKS, see [Customizing managed nodes with
|
1646
|
+
# launch templates][1] in the *Amazon EKS User Guide*.
|
1572
1647
|
#
|
1573
1648
|
#
|
1574
1649
|
#
|
@@ -1580,8 +1655,8 @@ module Aws::EKS
|
|
1580
1655
|
# your node group. If you specify `launchTemplate`, then don't
|
1581
1656
|
# specify ` SubnetId ` in your launch template, or the node group
|
1582
1657
|
# deployment will fail. For more information about using launch
|
1583
|
-
# templates with Amazon EKS, see [
|
1584
|
-
# *Amazon EKS User Guide*.
|
1658
|
+
# templates with Amazon EKS, see [Customizing managed nodes with
|
1659
|
+
# launch templates][1] in the *Amazon EKS User Guide*.
|
1585
1660
|
#
|
1586
1661
|
#
|
1587
1662
|
#
|
@@ -1600,8 +1675,8 @@ module Aws::EKS
|
|
1600
1675
|
# `instanceTypes`, then `t3.medium` is used, by default. If you
|
1601
1676
|
# specify `Spot` for `capacityType`, then we recommend specifying
|
1602
1677
|
# multiple values for `instanceTypes`. For more information, see
|
1603
|
-
# [Managed node group capacity types][1] and [
|
1604
|
-
#
|
1678
|
+
# [Managed node group capacity types][1] and [Customizing managed
|
1679
|
+
# nodes with launch templates][2] in the *Amazon EKS User Guide*.
|
1605
1680
|
#
|
1606
1681
|
#
|
1607
1682
|
#
|
@@ -1616,8 +1691,8 @@ module Aws::EKS
|
|
1616
1691
|
# template uses a Windows custom AMI, then add
|
1617
1692
|
# `eks:kube-proxy-windows` to your Windows nodes `rolearn` in the
|
1618
1693
|
# `aws-auth` `ConfigMap`. For more information about using launch
|
1619
|
-
# templates with Amazon EKS, see [
|
1620
|
-
# *Amazon EKS User Guide*.
|
1694
|
+
# templates with Amazon EKS, see [Customizing managed nodes with
|
1695
|
+
# launch templates][1] in the *Amazon EKS User Guide*.
|
1621
1696
|
#
|
1622
1697
|
#
|
1623
1698
|
#
|
@@ -1629,8 +1704,8 @@ module Aws::EKS
|
|
1629
1704
|
# Linux, the protocol is SSH. For Windows, the protocol is RDP. If you
|
1630
1705
|
# specify `launchTemplate`, then don't specify `remoteAccess`, or the
|
1631
1706
|
# node group deployment will fail. For more information about using
|
1632
|
-
# launch templates with Amazon EKS, see [
|
1633
|
-
# in the *Amazon EKS User Guide*.
|
1707
|
+
# launch templates with Amazon EKS, see [Customizing managed nodes
|
1708
|
+
# with launch templates][1] in the *Amazon EKS User Guide*.
|
1634
1709
|
#
|
1635
1710
|
#
|
1636
1711
|
#
|
@@ -1649,7 +1724,8 @@ module Aws::EKS
|
|
1649
1724
|
# specify `launchTemplate`, then don't specify ` IamInstanceProfile `
|
1650
1725
|
# in your launch template, or the node group deployment will fail. For
|
1651
1726
|
# more information about using launch templates with Amazon EKS, see
|
1652
|
-
# [
|
1727
|
+
# [Customizing managed nodes with launch templates][2] in the *Amazon
|
1728
|
+
# EKS User Guide*.
|
1653
1729
|
#
|
1654
1730
|
#
|
1655
1731
|
#
|
@@ -1688,9 +1764,15 @@ module Aws::EKS
|
|
1688
1764
|
#
|
1689
1765
|
# @!attribute [rw] launch_template
|
1690
1766
|
# An object representing a node group's launch template
|
1691
|
-
# specification.
|
1692
|
-
# `diskSize`, or `remoteAccess
|
1693
|
-
# meets the requirements in
|
1767
|
+
# specification. When using this object, don't directly specify
|
1768
|
+
# `instanceTypes`, `diskSize`, or `remoteAccess`. Make sure that the
|
1769
|
+
# launch template meets the requirements in
|
1770
|
+
# `launchTemplateSpecification`. Also refer to [Customizing managed
|
1771
|
+
# nodes with launch templates][1] in the *Amazon EKS User Guide*.
|
1772
|
+
#
|
1773
|
+
#
|
1774
|
+
#
|
1775
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html
|
1694
1776
|
# @return [Types::LaunchTemplateSpecification]
|
1695
1777
|
#
|
1696
1778
|
# @!attribute [rw] update_config
|
@@ -1707,8 +1789,8 @@ module Aws::EKS
|
|
1707
1789
|
# accepted specified value. If you specify `launchTemplate`, and your
|
1708
1790
|
# launch template uses a custom AMI, then don't specify `version`, or
|
1709
1791
|
# the node group deployment will fail. For more information about
|
1710
|
-
# using launch templates with Amazon EKS, see [
|
1711
|
-
#
|
1792
|
+
# using launch templates with Amazon EKS, see [Customizing managed
|
1793
|
+
# nodes with launch templates][1] in the *Amazon EKS User Guide*.
|
1712
1794
|
#
|
1713
1795
|
#
|
1714
1796
|
#
|
@@ -1728,8 +1810,8 @@ module Aws::EKS
|
|
1728
1810
|
# If you specify `launchTemplate`, and your launch template uses a
|
1729
1811
|
# custom AMI, then don't specify `releaseVersion`, or the node group
|
1730
1812
|
# deployment will fail. For more information about using launch
|
1731
|
-
# templates with Amazon EKS, see [
|
1732
|
-
# *Amazon EKS User Guide*.
|
1813
|
+
# templates with Amazon EKS, see [Customizing managed nodes with
|
1814
|
+
# launch templates][3] in the *Amazon EKS User Guide*.
|
1733
1815
|
#
|
1734
1816
|
#
|
1735
1817
|
#
|
@@ -2199,12 +2281,19 @@ module Aws::EKS
|
|
2199
2281
|
# provide when an add-on is created or updated.
|
2200
2282
|
# @return [String]
|
2201
2283
|
#
|
2284
|
+
# @!attribute [rw] pod_identity_configuration
|
2285
|
+
# The Kubernetes service account name used by the addon, and any
|
2286
|
+
# suggested IAM policies. Use this information to create an IAM Role
|
2287
|
+
# for the Addon.
|
2288
|
+
# @return [Array<Types::AddonPodIdentityConfiguration>]
|
2289
|
+
#
|
2202
2290
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/DescribeAddonConfigurationResponse AWS API Documentation
|
2203
2291
|
#
|
2204
2292
|
class DescribeAddonConfigurationResponse < Struct.new(
|
2205
2293
|
:addon_name,
|
2206
2294
|
:addon_version,
|
2207
|
-
:configuration_schema
|
2295
|
+
:configuration_schema,
|
2296
|
+
:pod_identity_configuration)
|
2208
2297
|
SENSITIVE = []
|
2209
2298
|
include Aws::Structure
|
2210
2299
|
end
|
@@ -3453,8 +3542,8 @@ module Aws::EKS
|
|
3453
3542
|
# group deployment or update will fail. For more information about
|
3454
3543
|
# launch templates, see [ `CreateLaunchTemplate` ][6] in the Amazon EC2
|
3455
3544
|
# API Reference. For more information about using launch templates with
|
3456
|
-
# Amazon EKS, see [
|
3457
|
-
# Guide*.
|
3545
|
+
# Amazon EKS, see [Customizing managed nodes with launch templates][7]
|
3546
|
+
# in the *Amazon EKS User Guide*.
|
3458
3547
|
#
|
3459
3548
|
# You must specify either the launch template ID or the launch template
|
3460
3549
|
# name in the request, but not both.
|
@@ -5066,6 +5155,11 @@ module Aws::EKS
|
|
5066
5155
|
# The most recent timestamp that the association was modified at
|
5067
5156
|
# @return [Time]
|
5068
5157
|
#
|
5158
|
+
# @!attribute [rw] owner_arn
|
5159
|
+
# If defined, the Pod Identity Association is owned by an Amazon EKS
|
5160
|
+
# Addon.
|
5161
|
+
# @return [String]
|
5162
|
+
#
|
5069
5163
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/PodIdentityAssociation AWS API Documentation
|
5070
5164
|
#
|
5071
5165
|
class PodIdentityAssociation < Struct.new(
|
@@ -5077,7 +5171,8 @@ module Aws::EKS
|
|
5077
5171
|
:association_id,
|
5078
5172
|
:tags,
|
5079
5173
|
:created_at,
|
5080
|
-
:modified_at
|
5174
|
+
:modified_at,
|
5175
|
+
:owner_arn)
|
5081
5176
|
SENSITIVE = []
|
5082
5177
|
include Aws::Structure
|
5083
5178
|
end
|
@@ -5119,6 +5214,11 @@ module Aws::EKS
|
|
5119
5214
|
# The ID of the association.
|
5120
5215
|
# @return [String]
|
5121
5216
|
#
|
5217
|
+
# @!attribute [rw] owner_arn
|
5218
|
+
# If defined, the Pod Identity Association is owned by an Amazon EKS
|
5219
|
+
# Addon.
|
5220
|
+
# @return [String]
|
5221
|
+
#
|
5122
5222
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/PodIdentityAssociationSummary AWS API Documentation
|
5123
5223
|
#
|
5124
5224
|
class PodIdentityAssociationSummary < Struct.new(
|
@@ -5126,7 +5226,8 @@ module Aws::EKS
|
|
5126
5226
|
:namespace,
|
5127
5227
|
:service_account,
|
5128
5228
|
:association_arn,
|
5129
|
-
:association_id
|
5229
|
+
:association_id,
|
5230
|
+
:owner_arn)
|
5130
5231
|
SENSITIVE = []
|
5131
5232
|
include Aws::Structure
|
5132
5233
|
end
|
@@ -5726,6 +5827,21 @@ module Aws::EKS
|
|
5726
5827
|
# `DescribeAddonConfiguration`.
|
5727
5828
|
# @return [String]
|
5728
5829
|
#
|
5830
|
+
# @!attribute [rw] pod_identity_associations
|
5831
|
+
# An array of Pod Identity Assocations to be updated. Each EKS Pod
|
5832
|
+
# Identity association maps a Kubernetes service account to an IAM
|
5833
|
+
# Role. If this value is left blank, no change. If an empty array is
|
5834
|
+
# provided, existing Pod Identity Assocations owned by the Addon are
|
5835
|
+
# deleted.
|
5836
|
+
#
|
5837
|
+
# For more information, see [Attach an IAM Role to an Amazon EKS
|
5838
|
+
# add-on using Pod Identity][1] in the EKS User Guide.
|
5839
|
+
#
|
5840
|
+
#
|
5841
|
+
#
|
5842
|
+
# [1]: https://docs.aws.amazon.com/eks/latest/userguide/add-ons-iam.html
|
5843
|
+
# @return [Array<Types::AddonPodIdentityAssociations>]
|
5844
|
+
#
|
5729
5845
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eks-2017-11-01/UpdateAddonRequest AWS API Documentation
|
5730
5846
|
#
|
5731
5847
|
class UpdateAddonRequest < Struct.new(
|
@@ -5735,7 +5851,8 @@ module Aws::EKS
|
|
5735
5851
|
:service_account_role_arn,
|
5736
5852
|
:resolve_conflicts,
|
5737
5853
|
:client_request_token,
|
5738
|
-
:configuration_values
|
5854
|
+
:configuration_values,
|
5855
|
+
:pod_identity_associations)
|
5739
5856
|
SENSITIVE = []
|
5740
5857
|
include Aws::Structure
|
5741
5858
|
end
|
@@ -5995,8 +6112,8 @@ module Aws::EKS
|
|
5995
6112
|
# version. If you specify `launchTemplate`, and your launch template
|
5996
6113
|
# uses a custom AMI, then don't specify `version`, or the node group
|
5997
6114
|
# update will fail. For more information about using launch templates
|
5998
|
-
# with Amazon EKS, see [
|
5999
|
-
# User Guide*.
|
6115
|
+
# with Amazon EKS, see [Customizing managed nodes with launch
|
6116
|
+
# templates][1] in the *Amazon EKS User Guide*.
|
6000
6117
|
#
|
6001
6118
|
#
|
6002
6119
|
#
|
@@ -6016,8 +6133,8 @@ module Aws::EKS
|
|
6016
6133
|
# If you specify `launchTemplate`, and your launch template uses a
|
6017
6134
|
# custom AMI, then don't specify `releaseVersion`, or the node group
|
6018
6135
|
# update will fail. For more information about using launch templates
|
6019
|
-
# with Amazon EKS, see [
|
6020
|
-
# User Guide*.
|
6136
|
+
# with Amazon EKS, see [Customizing managed nodes with launch
|
6137
|
+
# templates][3] in the *Amazon EKS User Guide*.
|
6021
6138
|
#
|
6022
6139
|
#
|
6023
6140
|
#
|
data/lib/aws-sdk-eks.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -161,7 +161,13 @@ module Aws
|
|
161
161
|
?resolve_conflicts: ("OVERWRITE" | "NONE" | "PRESERVE"),
|
162
162
|
?client_request_token: ::String,
|
163
163
|
?tags: Hash[::String, ::String],
|
164
|
-
?configuration_values: ::String
|
164
|
+
?configuration_values: ::String,
|
165
|
+
?pod_identity_associations: Array[
|
166
|
+
{
|
167
|
+
service_account: ::String,
|
168
|
+
role_arn: ::String
|
169
|
+
},
|
170
|
+
]
|
165
171
|
) -> _CreateAddonResponseSuccess
|
166
172
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAddonResponseSuccess
|
167
173
|
|
@@ -431,6 +437,7 @@ module Aws
|
|
431
437
|
def addon_name: () -> ::String
|
432
438
|
def addon_version: () -> ::String
|
433
439
|
def configuration_schema: () -> ::String
|
440
|
+
def pod_identity_configuration: () -> ::Array[Types::AddonPodIdentityConfiguration]
|
434
441
|
end
|
435
442
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EKS/Client.html#describe_addon_configuration-instance_method
|
436
443
|
def describe_addon_configuration: (
|
@@ -813,7 +820,13 @@ module Aws
|
|
813
820
|
?service_account_role_arn: ::String,
|
814
821
|
?resolve_conflicts: ("OVERWRITE" | "NONE" | "PRESERVE"),
|
815
822
|
?client_request_token: ::String,
|
816
|
-
?configuration_values: ::String
|
823
|
+
?configuration_values: ::String,
|
824
|
+
?pod_identity_associations: Array[
|
825
|
+
{
|
826
|
+
service_account: ::String,
|
827
|
+
role_arn: ::String
|
828
|
+
},
|
829
|
+
]
|
817
830
|
) -> _UpdateAddonResponseSuccess
|
818
831
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAddonResponseSuccess
|
819
832
|
|
data/sig/types.rbs
CHANGED
@@ -59,6 +59,7 @@ module Aws::EKS
|
|
59
59
|
attr_accessor owner: ::String
|
60
60
|
attr_accessor marketplace_information: Types::MarketplaceInformation
|
61
61
|
attr_accessor configuration_values: ::String
|
62
|
+
attr_accessor pod_identity_associations: ::Array[::String]
|
62
63
|
SENSITIVE: []
|
63
64
|
end
|
64
65
|
|
@@ -78,17 +79,30 @@ module Aws::EKS
|
|
78
79
|
end
|
79
80
|
|
80
81
|
class AddonIssue
|
81
|
-
attr_accessor code: ("AccessDenied" | "InternalFailure" | "ClusterUnreachable" | "InsufficientNumberOfReplicas" | "ConfigurationConflict" | "AdmissionRequestDenied" | "UnsupportedAddonModification" | "K8sResourceNotFound")
|
82
|
+
attr_accessor code: ("AccessDenied" | "InternalFailure" | "ClusterUnreachable" | "InsufficientNumberOfReplicas" | "ConfigurationConflict" | "AdmissionRequestDenied" | "UnsupportedAddonModification" | "K8sResourceNotFound" | "AddonSubscriptionNeeded" | "AddonPermissionFailure")
|
82
83
|
attr_accessor message: ::String
|
83
84
|
attr_accessor resource_ids: ::Array[::String]
|
84
85
|
SENSITIVE: []
|
85
86
|
end
|
86
87
|
|
88
|
+
class AddonPodIdentityAssociations
|
89
|
+
attr_accessor service_account: ::String
|
90
|
+
attr_accessor role_arn: ::String
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class AddonPodIdentityConfiguration
|
95
|
+
attr_accessor service_account: ::String
|
96
|
+
attr_accessor recommended_managed_policies: ::Array[::String]
|
97
|
+
SENSITIVE: []
|
98
|
+
end
|
99
|
+
|
87
100
|
class AddonVersionInfo
|
88
101
|
attr_accessor addon_version: ::String
|
89
102
|
attr_accessor architecture: ::Array[::String]
|
90
103
|
attr_accessor compatibilities: ::Array[Types::Compatibility]
|
91
104
|
attr_accessor requires_configuration: bool
|
105
|
+
attr_accessor requires_iam_permissions: bool
|
92
106
|
SENSITIVE: []
|
93
107
|
end
|
94
108
|
|
@@ -272,6 +286,7 @@ module Aws::EKS
|
|
272
286
|
attr_accessor client_request_token: ::String
|
273
287
|
attr_accessor tags: ::Hash[::String, ::String]
|
274
288
|
attr_accessor configuration_values: ::String
|
289
|
+
attr_accessor pod_identity_associations: ::Array[Types::AddonPodIdentityAssociations]
|
275
290
|
SENSITIVE: []
|
276
291
|
end
|
277
292
|
|
@@ -488,6 +503,7 @@ module Aws::EKS
|
|
488
503
|
attr_accessor addon_name: ::String
|
489
504
|
attr_accessor addon_version: ::String
|
490
505
|
attr_accessor configuration_schema: ::String
|
506
|
+
attr_accessor pod_identity_configuration: ::Array[Types::AddonPodIdentityConfiguration]
|
491
507
|
SENSITIVE: []
|
492
508
|
end
|
493
509
|
|
@@ -1102,6 +1118,7 @@ module Aws::EKS
|
|
1102
1118
|
attr_accessor tags: ::Hash[::String, ::String]
|
1103
1119
|
attr_accessor created_at: ::Time
|
1104
1120
|
attr_accessor modified_at: ::Time
|
1121
|
+
attr_accessor owner_arn: ::String
|
1105
1122
|
SENSITIVE: []
|
1106
1123
|
end
|
1107
1124
|
|
@@ -1111,6 +1128,7 @@ module Aws::EKS
|
|
1111
1128
|
attr_accessor service_account: ::String
|
1112
1129
|
attr_accessor association_arn: ::String
|
1113
1130
|
attr_accessor association_id: ::String
|
1131
|
+
attr_accessor owner_arn: ::String
|
1114
1132
|
SENSITIVE: []
|
1115
1133
|
end
|
1116
1134
|
|
@@ -1253,6 +1271,7 @@ module Aws::EKS
|
|
1253
1271
|
attr_accessor resolve_conflicts: ("OVERWRITE" | "NONE" | "PRESERVE")
|
1254
1272
|
attr_accessor client_request_token: ::String
|
1255
1273
|
attr_accessor configuration_values: ::String
|
1274
|
+
attr_accessor pod_identity_associations: ::Array[Types::AddonPodIdentityAssociations]
|
1256
1275
|
SENSITIVE: []
|
1257
1276
|
end
|
1258
1277
|
|
@@ -1338,7 +1357,7 @@ module Aws::EKS
|
|
1338
1357
|
end
|
1339
1358
|
|
1340
1359
|
class UpdateParam
|
1341
|
-
attr_accessor type: ("Version" | "PlatformVersion" | "EndpointPrivateAccess" | "EndpointPublicAccess" | "ClusterLogging" | "DesiredSize" | "LabelsToAdd" | "LabelsToRemove" | "TaintsToAdd" | "TaintsToRemove" | "MaxSize" | "MinSize" | "ReleaseVersion" | "PublicAccessCidrs" | "LaunchTemplateName" | "LaunchTemplateVersion" | "IdentityProviderConfig" | "EncryptionConfig" | "AddonVersion" | "ServiceAccountRoleArn" | "ResolveConflicts" | "MaxUnavailable" | "MaxUnavailablePercentage" | "ConfigurationValues" | "SecurityGroups" | "Subnets" | "AuthenticationMode")
|
1360
|
+
attr_accessor type: ("Version" | "PlatformVersion" | "EndpointPrivateAccess" | "EndpointPublicAccess" | "ClusterLogging" | "DesiredSize" | "LabelsToAdd" | "LabelsToRemove" | "TaintsToAdd" | "TaintsToRemove" | "MaxSize" | "MinSize" | "ReleaseVersion" | "PublicAccessCidrs" | "LaunchTemplateName" | "LaunchTemplateVersion" | "IdentityProviderConfig" | "EncryptionConfig" | "AddonVersion" | "ServiceAccountRoleArn" | "ResolveConflicts" | "MaxUnavailable" | "MaxUnavailablePercentage" | "ConfigurationValues" | "SecurityGroups" | "Subnets" | "AuthenticationMode" | "PodIdentityAssociations")
|
1342
1361
|
attr_accessor value: ::String
|
1343
1362
|
SENSITIVE: []
|
1344
1363
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-eks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.103.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-06-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|