@aws-sdk/client-eks 3.758.0 → 3.759.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/README.md +10 -10
- package/dist-cjs/index.js +3 -2
- package/dist-es/protocols/Aws_restJson1.js +1 -0
- package/dist-types/EKS.d.ts +10 -10
- package/dist-types/EKSClient.d.ts +10 -10
- package/dist-types/commands/AssociateAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +1 -1
- package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +1 -1
- package/dist-types/commands/CreateAccessEntryCommand.d.ts +5 -5
- package/dist-types/commands/CreateAddonCommand.d.ts +4 -5
- package/dist-types/commands/CreateClusterCommand.d.ts +29 -33
- package/dist-types/commands/CreateEksAnywhereSubscriptionCommand.d.ts +6 -0
- package/dist-types/commands/CreateFargateProfileCommand.d.ts +28 -32
- package/dist-types/commands/CreateNodegroupCommand.d.ts +12 -7
- package/dist-types/commands/CreatePodIdentityAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAccessEntryCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAddonCommand.d.ts +1 -1
- package/dist-types/commands/DeleteClusterCommand.d.ts +4 -4
- package/dist-types/commands/DeleteEksAnywhereSubscriptionCommand.d.ts +10 -4
- package/dist-types/commands/DeleteFargateProfileCommand.d.ts +9 -11
- package/dist-types/commands/DeleteNodegroupCommand.d.ts +1 -1
- package/dist-types/commands/DeletePodIdentityAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterClusterCommand.d.ts +5 -7
- package/dist-types/commands/DescribeAccessEntryCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAddonCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAddonConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAddonVersionsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterCommand.d.ts +2 -3
- package/dist-types/commands/DescribeEksAnywhereSubscriptionCommand.d.ts +7 -1
- package/dist-types/commands/DescribeFargateProfileCommand.d.ts +1 -1
- package/dist-types/commands/DescribeIdentityProviderConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInsightCommand.d.ts +1 -1
- package/dist-types/commands/DescribeNodegroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribePodIdentityAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUpdateCommand.d.ts +4 -4
- package/dist-types/commands/DisassociateAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +1 -1
- package/dist-types/commands/ListAccessEntriesCommand.d.ts +1 -1
- package/dist-types/commands/ListAddonsCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedAccessPoliciesCommand.d.ts +1 -1
- package/dist-types/commands/ListClustersCommand.d.ts +1 -2
- package/dist-types/commands/ListEksAnywhereSubscriptionsCommand.d.ts +6 -0
- package/dist-types/commands/ListFargateProfilesCommand.d.ts +3 -3
- package/dist-types/commands/ListIdentityProviderConfigsCommand.d.ts +1 -1
- package/dist-types/commands/ListInsightsCommand.d.ts +1 -1
- package/dist-types/commands/ListNodegroupsCommand.d.ts +2 -3
- package/dist-types/commands/ListPodIdentityAssociationsCommand.d.ts +1 -1
- package/dist-types/commands/ListUpdatesCommand.d.ts +3 -3
- package/dist-types/commands/RegisterClusterCommand.d.ts +9 -10
- package/dist-types/commands/TagResourceCommand.d.ts +4 -4
- package/dist-types/commands/UpdateAccessEntryCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAddonCommand.d.ts +1 -1
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +18 -20
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +4 -5
- package/dist-types/commands/UpdateEksAnywhereSubscriptionCommand.d.ts +7 -1
- package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +6 -7
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +15 -13
- package/dist-types/commands/UpdatePodIdentityAssociationCommand.d.ts +1 -1
- package/dist-types/index.d.ts +10 -10
- package/dist-types/models/models_0.d.ts +497 -445
- package/dist-types/ts3.4/models/models_0.d.ts +5 -0
- package/package.json +1 -1
|
@@ -678,6 +678,10 @@ export interface CreateEksAnywhereSubscriptionRequest {
|
|
|
678
678
|
clientRequestToken?: string | undefined;
|
|
679
679
|
tags?: Record<string, string> | undefined;
|
|
680
680
|
}
|
|
681
|
+
export interface License {
|
|
682
|
+
id?: string | undefined;
|
|
683
|
+
token?: string | undefined;
|
|
684
|
+
}
|
|
681
685
|
export interface EksAnywhereSubscription {
|
|
682
686
|
id?: string | undefined;
|
|
683
687
|
arn?: string | undefined;
|
|
@@ -690,6 +694,7 @@ export interface EksAnywhereSubscription {
|
|
|
690
694
|
status?: string | undefined;
|
|
691
695
|
autoRenew?: boolean | undefined;
|
|
692
696
|
licenseArns?: string[] | undefined;
|
|
697
|
+
licenses?: License[] | undefined;
|
|
693
698
|
tags?: Record<string, string> | undefined;
|
|
694
699
|
}
|
|
695
700
|
export interface CreateEksAnywhereSubscriptionResponse {
|
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.759.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-eks",
|