@aws-sdk/client-eks 3.87.0 → 3.94.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.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.94.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.93.0...v3.94.0) (2022-05-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-eks
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.92.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.91.0...v3.92.0) (2022-05-16)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-eks
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.88.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.87.0...v3.88.0) (2022-05-10)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **client-eks:** Adds BOTTLEROCKET_ARM_64_NVIDIA and BOTTLEROCKET_x86_64_NVIDIA AMI types to EKS managed nodegroups ([e914c59](https://github.com/aws/aws-sdk-js-v3/commit/e914c59c3638c4b05868e1f74ba4fa634a727f5c))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [3.87.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.86.0...v3.87.0) (2022-05-09)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-eks
|
package/dist-types/EKS.d.ts
CHANGED
|
@@ -249,7 +249,7 @@ export declare class EKS extends EKSClient {
|
|
|
249
249
|
describeNodegroup(args: DescribeNodegroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNodegroupCommandOutput) => void): void;
|
|
250
250
|
/**
|
|
251
251
|
* <p>Returns descriptive information about an update against your Amazon EKS
|
|
252
|
-
* cluster or associated managed node group.</p>
|
|
252
|
+
* cluster or associated managed node group or Amazon EKS add-on.</p>
|
|
253
253
|
* <p>When the status of the update is <code>Succeeded</code>, the update is complete. If an
|
|
254
254
|
* update fails, the status is <code>Failed</code>, and an error detail explains the reason
|
|
255
255
|
* for the failure.</p>
|
|
@@ -8,7 +8,7 @@ export interface DescribeUpdateCommandOutput extends DescribeUpdateResponse, __M
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Returns descriptive information about an update against your Amazon EKS
|
|
11
|
-
* cluster or associated managed node group.</p>
|
|
11
|
+
* cluster or associated managed node group or Amazon EKS add-on.</p>
|
|
12
12
|
* <p>When the status of the update is <code>Succeeded</code>, the update is complete. If an
|
|
13
13
|
* update fails, the status is <code>Failed</code>, and an error detail explains the reason
|
|
14
14
|
* for the failure.</p>
|
|
@@ -191,7 +191,7 @@ export declare namespace AddonInfo {
|
|
|
191
191
|
*/
|
|
192
192
|
const filterSensitiveLog: (obj: AddonInfo) => any;
|
|
193
193
|
}
|
|
194
|
-
export declare type AMITypes = "AL2_ARM_64" | "AL2_x86_64" | "AL2_x86_64_GPU" | "BOTTLEROCKET_ARM_64" | "BOTTLEROCKET_x86_64" | "CUSTOM";
|
|
194
|
+
export declare type AMITypes = "AL2_ARM_64" | "AL2_x86_64" | "AL2_x86_64_GPU" | "BOTTLEROCKET_ARM_64" | "BOTTLEROCKET_ARM_64_NVIDIA" | "BOTTLEROCKET_x86_64" | "BOTTLEROCKET_x86_64_NVIDIA" | "CUSTOM";
|
|
195
195
|
/**
|
|
196
196
|
* <p>Identifies the Key Management Service (KMS) key used to encrypt the
|
|
197
197
|
* secrets.</p>
|
|
@@ -806,19 +806,19 @@ export interface KubernetesNetworkConfigRequest {
|
|
|
806
806
|
*/
|
|
807
807
|
serviceIpv4Cidr?: string;
|
|
808
808
|
/**
|
|
809
|
-
* <p>Specify which IP
|
|
809
|
+
* <p>Specify which IP family is used to assign Kubernetes pod and service IP addresses. If
|
|
810
810
|
* you don't specify a value, <code>ipv4</code> is used by default. You can only specify an
|
|
811
811
|
* IP family when you create a cluster and can't change this value once the cluster is
|
|
812
812
|
* created. If you specify <code>ipv6</code>, the VPC and subnets that you specify for
|
|
813
|
-
* cluster creation must have both IPv4 and IPv6 CIDR blocks assigned to them.
|
|
813
|
+
* cluster creation must have both IPv4 and IPv6 CIDR blocks assigned to them. You can't
|
|
814
|
+
* specify <code>ipv6</code> for clusters in China Regions.</p>
|
|
814
815
|
* <p>You can only specify <code>ipv6</code> for 1.21 and later clusters that use version
|
|
815
|
-
* 1.10.
|
|
816
|
-
* that your VPC meets the requirements
|
|
817
|
-
*
|
|
818
|
-
*
|
|
819
|
-
*
|
|
820
|
-
*
|
|
821
|
-
* block.</p>
|
|
816
|
+
* 1.10.1 or later of the Amazon VPC CNI add-on. If you specify <code>ipv6</code>, then ensure
|
|
817
|
+
* that your VPC meets the requirements listed in the considerations listed in <a href="https://docs.aws.amazon.com/eks/latest/userguide/cni-ipv6.html">Assigning IPv6
|
|
818
|
+
* addresses to pods and services</a> in the Amazon EKS User Guide.
|
|
819
|
+
* Kubernetes assigns services IPv6 addresses from the unique local address range
|
|
820
|
+
* (fc00::/7). You can't specify a custom IPv6 CIDR block. Pod addresses are assigned from
|
|
821
|
+
* the subnet's IPv6 CIDR.</p>
|
|
822
822
|
*/
|
|
823
823
|
ipFamily?: IpFamily | string;
|
|
824
824
|
}
|
|
@@ -1103,7 +1103,7 @@ export declare namespace Identity {
|
|
|
1103
1103
|
*/
|
|
1104
1104
|
export interface KubernetesNetworkConfigResponse {
|
|
1105
1105
|
/**
|
|
1106
|
-
* <p>The CIDR block that Kubernetes
|
|
1106
|
+
* <p>The CIDR block that Kubernetes pod and service IP addresses are assigned from.
|
|
1107
1107
|
* Kubernetes assigns addresses from an IPv4 CIDR block assigned to a subnet that the node
|
|
1108
1108
|
* is in. If you didn't specify a CIDR block when you created the cluster, then Kubernetes
|
|
1109
1109
|
* assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. If this
|
|
@@ -1112,17 +1112,18 @@ export interface KubernetesNetworkConfigResponse {
|
|
|
1112
1112
|
*/
|
|
1113
1113
|
serviceIpv4Cidr?: string;
|
|
1114
1114
|
/**
|
|
1115
|
-
* <p>The CIDR block that Kubernetes
|
|
1116
|
-
* created a 1.21 or later cluster with version 1.10.
|
|
1115
|
+
* <p>The CIDR block that Kubernetes pod and service IP addresses are assigned from if you
|
|
1116
|
+
* created a 1.21 or later cluster with version 1.10.1 or later of the Amazon VPC CNI add-on and
|
|
1117
1117
|
* specified <code>ipv6</code> for <b>ipFamily</b> when you
|
|
1118
|
-
* created the cluster. Kubernetes assigns addresses from the unique local address
|
|
1119
|
-
* (fc00::/7)
|
|
1118
|
+
* created the cluster. Kubernetes assigns service addresses from the unique local address
|
|
1119
|
+
* range (<code>fc00::/7</code>) because you can't specify a custom IPv6 CIDR block when
|
|
1120
|
+
* you create the cluster.</p>
|
|
1120
1121
|
*/
|
|
1121
1122
|
serviceIpv6Cidr?: string;
|
|
1122
1123
|
/**
|
|
1123
|
-
* <p>The IP family used to assign Kubernetes
|
|
1124
|
+
* <p>The IP family used to assign Kubernetes pod and service IP addresses. The IP family is
|
|
1124
1125
|
* always <code>ipv4</code>, unless you have a <code>1.21</code> or later cluster running
|
|
1125
|
-
* version 1.10.
|
|
1126
|
+
* version 1.10.1 or later of the Amazon VPC CNI add-on and specified <code>ipv6</code> when you
|
|
1126
1127
|
* created the cluster. </p>
|
|
1127
1128
|
*/
|
|
1128
1129
|
ipFamily?: IpFamily | string;
|
|
@@ -1518,7 +1519,7 @@ export declare type CapacityTypes = "ON_DEMAND" | "SPOT";
|
|
|
1518
1519
|
* update will fail. For more information about launch templates, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateLaunchTemplate.html">
|
|
1519
1520
|
* <code>CreateLaunchTemplate</code>
|
|
1520
1521
|
* </a> in the Amazon EC2 API
|
|
1521
|
-
* Reference. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide
|
|
1522
|
+
* Reference. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1522
1523
|
* <p>Specify either <code>name</code> or <code>id</code>, but not both.</p>
|
|
1523
1524
|
*/
|
|
1524
1525
|
export interface LaunchTemplateSpecification {
|
|
@@ -1619,7 +1620,7 @@ export declare enum TaintEffect {
|
|
|
1619
1620
|
PREFER_NO_SCHEDULE = "PREFER_NO_SCHEDULE"
|
|
1620
1621
|
}
|
|
1621
1622
|
/**
|
|
1622
|
-
* <p>A property that allows a node to repel a set of pods
|
|
1623
|
+
* <p>A property that allows a node to repel a set of pods. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on managed node groups</a>.</p>
|
|
1623
1624
|
*/
|
|
1624
1625
|
export interface Taint {
|
|
1625
1626
|
/**
|
|
@@ -1681,7 +1682,7 @@ export interface CreateNodegroupRequest {
|
|
|
1681
1682
|
/**
|
|
1682
1683
|
* <p>The root device disk size (in GiB) for your node group instances. The default disk
|
|
1683
1684
|
* size is 20 GiB. If you specify <code>launchTemplate</code>, then don't specify <code>diskSize</code>,
|
|
1684
|
-
* or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide
|
|
1685
|
+
* or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1685
1686
|
*/
|
|
1686
1687
|
diskSize?: number;
|
|
1687
1688
|
/**
|
|
@@ -1689,7 +1690,7 @@ export interface CreateNodegroupRequest {
|
|
|
1689
1690
|
* If you specify <code>launchTemplate</code>, then don't specify <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateNetworkInterface.html">
|
|
1690
1691
|
* <code>SubnetId</code>
|
|
1691
1692
|
* </a> in your launch template, or the node group
|
|
1692
|
-
* deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide
|
|
1693
|
+
* deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1693
1694
|
*/
|
|
1694
1695
|
subnets: string[] | undefined;
|
|
1695
1696
|
/**
|
|
@@ -1713,13 +1714,13 @@ export interface CreateNodegroupRequest {
|
|
|
1713
1714
|
* <code>AL2_ARM_64</code> AMI type. All types use the Amazon EKS optimized
|
|
1714
1715
|
* Amazon Linux 2 AMI. If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI,
|
|
1715
1716
|
* then don't specify <code>amiType</code>, or the node group deployment
|
|
1716
|
-
* will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide
|
|
1717
|
+
* will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1717
1718
|
*/
|
|
1718
1719
|
amiType?: AMITypes | string;
|
|
1719
1720
|
/**
|
|
1720
1721
|
* <p>The remote access (SSH) configuration to use with your node group. If you specify <code>launchTemplate</code>,
|
|
1721
1722
|
* then don't specify <code>remoteAccess</code>, or the node group deployment
|
|
1722
|
-
* will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide
|
|
1723
|
+
* will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1723
1724
|
*/
|
|
1724
1725
|
remoteAccess?: RemoteAccessConfig;
|
|
1725
1726
|
/**
|
|
@@ -1727,14 +1728,14 @@ export interface CreateNodegroupRequest {
|
|
|
1727
1728
|
* Amazon EKS worker node <code>kubelet</code> daemon makes calls to Amazon Web Services APIs on your behalf. Nodes receive permissions for these API calls
|
|
1728
1729
|
* through an IAM instance profile and associated policies. Before you can
|
|
1729
1730
|
* launch nodes and register them into a cluster, you must create an IAM
|
|
1730
|
-
* role for those nodes to use when they are launched. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/
|
|
1731
|
+
* role for those nodes to use when they are launched. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/create-node-role.html">Amazon EKS node IAM role</a> in the
|
|
1731
1732
|
* <i>
|
|
1732
1733
|
* <i>Amazon EKS User Guide</i>
|
|
1733
1734
|
* </i>. If you specify <code>launchTemplate</code>, then don't specify
|
|
1734
1735
|
* <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_IamInstanceProfile.html">
|
|
1735
1736
|
* <code>IamInstanceProfile</code>
|
|
1736
1737
|
* </a> in your launch template,
|
|
1737
|
-
* or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide
|
|
1738
|
+
* or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1738
1739
|
*/
|
|
1739
1740
|
nodeRole: string | undefined;
|
|
1740
1741
|
/**
|
|
@@ -1745,7 +1746,7 @@ export interface CreateNodegroupRequest {
|
|
|
1745
1746
|
[key: string]: string;
|
|
1746
1747
|
};
|
|
1747
1748
|
/**
|
|
1748
|
-
* <p>The Kubernetes taints to be applied to the nodes in the node group
|
|
1749
|
+
* <p>The Kubernetes taints to be applied to the nodes in the node group. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on managed node groups</a>.</p>
|
|
1749
1750
|
*/
|
|
1750
1751
|
taints?: Taint[];
|
|
1751
1752
|
/**
|
|
@@ -1781,7 +1782,7 @@ export interface CreateNodegroupRequest {
|
|
|
1781
1782
|
* <p>The Kubernetes version to use for your managed nodes. By default, the Kubernetes
|
|
1782
1783
|
* version of the cluster is used, and this is the only accepted specified value.
|
|
1783
1784
|
* If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>version</code>,
|
|
1784
|
-
* or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide
|
|
1785
|
+
* or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1785
1786
|
*/
|
|
1786
1787
|
version?: string;
|
|
1787
1788
|
/**
|
|
@@ -1789,7 +1790,7 @@ export interface CreateNodegroupRequest {
|
|
|
1789
1790
|
* By default, the latest available AMI version for the node group's current Kubernetes
|
|
1790
1791
|
* version is used. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html">Amazon EKS optimized Amazon Linux 2 AMI versions</a> in the <i>Amazon EKS User Guide</i>.
|
|
1791
1792
|
* If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>releaseVersion</code>,
|
|
1792
|
-
* or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide
|
|
1793
|
+
* or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
1793
1794
|
*/
|
|
1794
1795
|
releaseVersion?: string;
|
|
1795
1796
|
}
|
|
@@ -1884,8 +1885,8 @@ export interface Issue {
|
|
|
1884
1885
|
* instances to be assigned a public IP address, then you need to enable the
|
|
1885
1886
|
* <code>auto-assign public IP address</code> setting for the subnet. See
|
|
1886
1887
|
* <a href="https://docs.aws.amazon.com/vpc/latest/userguide/vpc-ip-addressing.html#subnet-public-ip">Modifying
|
|
1887
|
-
* the public IPv4 addressing attribute for your subnet</a> in the
|
|
1888
|
-
*
|
|
1888
|
+
* the public IPv4 addressing attribute for your subnet</a> in the
|
|
1889
|
+
* <i>Amazon VPC User Guide</i>.</p>
|
|
1889
1890
|
* </li>
|
|
1890
1891
|
* <li>
|
|
1891
1892
|
* <p>
|
|
@@ -2072,7 +2073,7 @@ export interface Nodegroup {
|
|
|
2072
2073
|
* <p>The Kubernetes taints to be applied to the nodes in the node group when they are
|
|
2073
2074
|
* created. Effect is one of <code>No_Schedule</code>, <code>Prefer_No_Schedule</code>, or
|
|
2074
2075
|
* <code>No_Execute</code>. Kubernetes taints can be used together with tolerations to
|
|
2075
|
-
* control how workloads are scheduled to your nodes
|
|
2076
|
+
* control how workloads are scheduled to your nodes. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on managed node groups</a>.</p>
|
|
2076
2077
|
*/
|
|
2077
2078
|
taints?: Taint[];
|
|
2078
2079
|
/**
|
|
@@ -2415,7 +2416,8 @@ export declare namespace DescribeFargateProfileResponse {
|
|
|
2415
2416
|
*/
|
|
2416
2417
|
export interface IdentityProviderConfig {
|
|
2417
2418
|
/**
|
|
2418
|
-
* <p>The type of the identity provider configuration
|
|
2419
|
+
* <p>The type of the identity provider configuration. The only type available is
|
|
2420
|
+
* <code>oidc</code>.</p>
|
|
2419
2421
|
*/
|
|
2420
2422
|
type: string | undefined;
|
|
2421
2423
|
/**
|
|
@@ -2591,13 +2593,14 @@ export interface DescribeUpdateRequest {
|
|
|
2591
2593
|
*/
|
|
2592
2594
|
updateId: string | undefined;
|
|
2593
2595
|
/**
|
|
2594
|
-
* <p>The name of the Amazon EKS node group associated with the update
|
|
2596
|
+
* <p>The name of the Amazon EKS node group associated with the update. This
|
|
2597
|
+
* parameter is required if the update is a node group update.</p>
|
|
2595
2598
|
*/
|
|
2596
2599
|
nodegroupName?: string;
|
|
2597
2600
|
/**
|
|
2598
2601
|
* <p>The name of the add-on. The name must match one of the names returned by <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_ListAddons.html">
|
|
2599
2602
|
* <code>ListAddons</code>
|
|
2600
|
-
* </a
|
|
2603
|
+
* </a>. This parameter is required if the update is an add-on update.</p>
|
|
2601
2604
|
*/
|
|
2602
2605
|
addonName?: string;
|
|
2603
2606
|
}
|
|
@@ -3101,7 +3104,7 @@ export declare namespace RegisterClusterResponse {
|
|
|
3101
3104
|
const filterSensitiveLog: (obj: RegisterClusterResponse) => any;
|
|
3102
3105
|
}
|
|
3103
3106
|
/**
|
|
3104
|
-
* <p>Required resources (such as
|
|
3107
|
+
* <p>Required resources (such as service-linked roles) were created and are still propagating. Retry later.</p>
|
|
3105
3108
|
*/
|
|
3106
3109
|
export declare class ResourcePropagationDelayException extends __BaseException {
|
|
3107
3110
|
readonly name: "ResourcePropagationDelayException";
|
|
@@ -3323,7 +3326,7 @@ export declare namespace UpdateLabelsPayload {
|
|
|
3323
3326
|
const filterSensitiveLog: (obj: UpdateLabelsPayload) => any;
|
|
3324
3327
|
}
|
|
3325
3328
|
/**
|
|
3326
|
-
* <p>An object representing the details of an update to a taints payload
|
|
3329
|
+
* <p>An object representing the details of an update to a taints payload. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on managed node groups</a>.</p>
|
|
3327
3330
|
*/
|
|
3328
3331
|
export interface UpdateTaintsPayload {
|
|
3329
3332
|
/**
|
|
@@ -3358,7 +3361,7 @@ export interface UpdateNodegroupConfigRequest {
|
|
|
3358
3361
|
labels?: UpdateLabelsPayload;
|
|
3359
3362
|
/**
|
|
3360
3363
|
* <p>The Kubernetes taints to be applied to the nodes in the node group after the
|
|
3361
|
-
* update
|
|
3364
|
+
* update. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on managed node groups</a>.</p>
|
|
3362
3365
|
*/
|
|
3363
3366
|
taints?: UpdateTaintsPayload;
|
|
3364
3367
|
/**
|
|
@@ -3409,7 +3412,7 @@ export interface UpdateNodegroupVersionRequest {
|
|
|
3409
3412
|
* cluster to update the node group to the latest AMI version of the cluster's Kubernetes
|
|
3410
3413
|
* version. If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify
|
|
3411
3414
|
* <code>version</code>, or the node group update will fail.
|
|
3412
|
-
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide
|
|
3415
|
+
* For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
3413
3416
|
*/
|
|
3414
3417
|
version?: string;
|
|
3415
3418
|
/**
|
|
@@ -3417,7 +3420,7 @@ export interface UpdateNodegroupVersionRequest {
|
|
|
3417
3420
|
* default, the latest available AMI version for the node group's Kubernetes version is
|
|
3418
3421
|
* used. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-linux-ami-versions.html">Amazon EKS optimized Amazon Linux 2 AMI versions </a> in the <i>Amazon EKS User Guide</i>.
|
|
3419
3422
|
* If you specify <code>launchTemplate</code>, and your launch template uses a custom AMI, then don't specify <code>releaseVersion</code>,
|
|
3420
|
-
* or the node group update will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the Amazon EKS User Guide
|
|
3423
|
+
* or the node group update will fail. For more information about using launch templates with Amazon EKS, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/launch-templates.html">Launch template support</a> in the <i>Amazon EKS User Guide</i>.</p>
|
|
3421
3424
|
*/
|
|
3422
3425
|
releaseVersion?: string;
|
|
3423
3426
|
/**
|
|
@@ -108,7 +108,7 @@ export declare namespace AddonInfo {
|
|
|
108
108
|
|
|
109
109
|
const filterSensitiveLog: (obj: AddonInfo) => any;
|
|
110
110
|
}
|
|
111
|
-
export declare type AMITypes = "AL2_ARM_64" | "AL2_x86_64" | "AL2_x86_64_GPU" | "BOTTLEROCKET_ARM_64" | "BOTTLEROCKET_x86_64" | "CUSTOM";
|
|
111
|
+
export declare type AMITypes = "AL2_ARM_64" | "AL2_x86_64" | "AL2_x86_64_GPU" | "BOTTLEROCKET_ARM_64" | "BOTTLEROCKET_ARM_64_NVIDIA" | "BOTTLEROCKET_x86_64" | "BOTTLEROCKET_x86_64_NVIDIA" | "CUSTOM";
|
|
112
112
|
|
|
113
113
|
export interface Provider {
|
|
114
114
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-eks",
|
|
3
3
|
"description": "AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.94.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.94.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.94.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.78.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.78.0",
|
|
35
35
|
"@aws-sdk/node-config-provider": "3.80.0",
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.94.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.78.0",
|
|
38
38
|
"@aws-sdk/smithy-client": "3.85.0",
|
|
39
39
|
"@aws-sdk/types": "3.78.0",
|