@aws-sdk/client-eks 3.299.0 → 3.300.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.
Files changed (36) hide show
  1. package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +14 -0
  2. package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +19 -0
  3. package/dist-types/commands/CreateAddonCommand.d.ts +12 -0
  4. package/dist-types/commands/CreateClusterCommand.d.ts +55 -0
  5. package/dist-types/commands/CreateFargateProfileCommand.d.ts +20 -0
  6. package/dist-types/commands/CreateNodegroupCommand.d.ts +50 -0
  7. package/dist-types/commands/DeleteAddonCommand.d.ts +5 -0
  8. package/dist-types/commands/DeleteClusterCommand.d.ts +3 -0
  9. package/dist-types/commands/DeleteFargateProfileCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteNodegroupCommand.d.ts +4 -0
  11. package/dist-types/commands/DeregisterClusterCommand.d.ts +3 -0
  12. package/dist-types/commands/DescribeAddonCommand.d.ts +4 -0
  13. package/dist-types/commands/DescribeAddonConfigurationCommand.d.ts +4 -0
  14. package/dist-types/commands/DescribeAddonVersionsCommand.d.ts +15 -0
  15. package/dist-types/commands/DescribeClusterCommand.d.ts +3 -0
  16. package/dist-types/commands/DescribeFargateProfileCommand.d.ts +4 -0
  17. package/dist-types/commands/DescribeIdentityProviderConfigCommand.d.ts +7 -0
  18. package/dist-types/commands/DescribeNodegroupCommand.d.ts +4 -0
  19. package/dist-types/commands/DescribeUpdateCommand.d.ts +6 -0
  20. package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +8 -0
  21. package/dist-types/commands/ListAddonsCommand.d.ts +5 -0
  22. package/dist-types/commands/ListClustersCommand.d.ts +7 -0
  23. package/dist-types/commands/ListFargateProfilesCommand.d.ts +5 -0
  24. package/dist-types/commands/ListIdentityProviderConfigsCommand.d.ts +5 -0
  25. package/dist-types/commands/ListNodegroupsCommand.d.ts +5 -0
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  27. package/dist-types/commands/ListUpdatesCommand.d.ts +7 -0
  28. package/dist-types/commands/RegisterClusterCommand.d.ts +11 -0
  29. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  30. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  31. package/dist-types/commands/UpdateAddonCommand.d.ts +9 -0
  32. package/dist-types/commands/UpdateClusterConfigCommand.d.ts +27 -0
  33. package/dist-types/commands/UpdateClusterVersionCommand.d.ts +5 -0
  34. package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +38 -0
  35. package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +13 -0
  36. package/package.json +8 -8
@@ -29,6 +29,20 @@ export interface AssociateEncryptionConfigCommandOutput extends AssociateEncrypt
29
29
  * import { EKSClient, AssociateEncryptionConfigCommand } from "@aws-sdk/client-eks"; // ES Modules import
30
30
  * // const { EKSClient, AssociateEncryptionConfigCommand } = require("@aws-sdk/client-eks"); // CommonJS import
31
31
  * const client = new EKSClient(config);
32
+ * const input = {
33
+ * clusterName: "STRING_VALUE", // required
34
+ * encryptionConfig: [ // required
35
+ * {
36
+ * resources: [
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * provider: {
40
+ * keyArn: "STRING_VALUE",
41
+ * },
42
+ * },
43
+ * ],
44
+ * clientRequestToken: "STRING_VALUE",
45
+ * };
32
46
  * const command = new AssociateEncryptionConfigCommand(input);
33
47
  * const response = await client.send(command);
34
48
  * ```
@@ -33,6 +33,25 @@ export interface AssociateIdentityProviderConfigCommandOutput extends AssociateI
33
33
  * import { EKSClient, AssociateIdentityProviderConfigCommand } from "@aws-sdk/client-eks"; // ES Modules import
34
34
  * // const { EKSClient, AssociateIdentityProviderConfigCommand } = require("@aws-sdk/client-eks"); // CommonJS import
35
35
  * const client = new EKSClient(config);
36
+ * const input = {
37
+ * clusterName: "STRING_VALUE", // required
38
+ * oidc: {
39
+ * identityProviderConfigName: "STRING_VALUE", // required
40
+ * issuerUrl: "STRING_VALUE", // required
41
+ * clientId: "STRING_VALUE", // required
42
+ * usernameClaim: "STRING_VALUE",
43
+ * usernamePrefix: "STRING_VALUE",
44
+ * groupsClaim: "STRING_VALUE",
45
+ * groupsPrefix: "STRING_VALUE",
46
+ * requiredClaims: {
47
+ * "<keys>": "STRING_VALUE",
48
+ * },
49
+ * },
50
+ * tags: {
51
+ * "<keys>": "STRING_VALUE",
52
+ * },
53
+ * clientRequestToken: "STRING_VALUE",
54
+ * };
36
55
  * const command = new AssociateIdentityProviderConfigCommand(input);
37
56
  * const response = await client.send(command);
38
57
  * ```
@@ -29,6 +29,18 @@ export interface CreateAddonCommandOutput extends CreateAddonResponse, __Metadat
29
29
  * import { EKSClient, CreateAddonCommand } from "@aws-sdk/client-eks"; // ES Modules import
30
30
  * // const { EKSClient, CreateAddonCommand } = require("@aws-sdk/client-eks"); // CommonJS import
31
31
  * const client = new EKSClient(config);
32
+ * const input = {
33
+ * clusterName: "STRING_VALUE", // required
34
+ * addonName: "STRING_VALUE", // required
35
+ * addonVersion: "STRING_VALUE",
36
+ * serviceAccountRoleArn: "STRING_VALUE",
37
+ * resolveConflicts: "OVERWRITE" || "NONE" || "PRESERVE",
38
+ * clientRequestToken: "STRING_VALUE",
39
+ * tags: {
40
+ * "<keys>": "STRING_VALUE",
41
+ * },
42
+ * configurationValues: "STRING_VALUE",
43
+ * };
32
44
  * const command = new CreateAddonCommand(input);
33
45
  * const response = await client.send(command);
34
46
  * ```
@@ -46,6 +46,61 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
46
46
  * import { EKSClient, CreateClusterCommand } from "@aws-sdk/client-eks"; // ES Modules import
47
47
  * // const { EKSClient, CreateClusterCommand } = require("@aws-sdk/client-eks"); // CommonJS import
48
48
  * const client = new EKSClient(config);
49
+ * const input = {
50
+ * name: "STRING_VALUE", // required
51
+ * version: "STRING_VALUE",
52
+ * roleArn: "STRING_VALUE", // required
53
+ * resourcesVpcConfig: {
54
+ * subnetIds: [
55
+ * "STRING_VALUE",
56
+ * ],
57
+ * securityGroupIds: [
58
+ * "STRING_VALUE",
59
+ * ],
60
+ * endpointPublicAccess: true || false,
61
+ * endpointPrivateAccess: true || false,
62
+ * publicAccessCidrs: [
63
+ * "STRING_VALUE",
64
+ * ],
65
+ * },
66
+ * kubernetesNetworkConfig: {
67
+ * serviceIpv4Cidr: "STRING_VALUE",
68
+ * ipFamily: "ipv4" || "ipv6",
69
+ * },
70
+ * logging: {
71
+ * clusterLogging: [
72
+ * {
73
+ * types: [
74
+ * "api" || "audit" || "authenticator" || "controllerManager" || "scheduler",
75
+ * ],
76
+ * enabled: true || false,
77
+ * },
78
+ * ],
79
+ * },
80
+ * clientRequestToken: "STRING_VALUE",
81
+ * tags: {
82
+ * "<keys>": "STRING_VALUE",
83
+ * },
84
+ * encryptionConfig: [
85
+ * {
86
+ * resources: [
87
+ * "STRING_VALUE",
88
+ * ],
89
+ * provider: {
90
+ * keyArn: "STRING_VALUE",
91
+ * },
92
+ * },
93
+ * ],
94
+ * outpostConfig: {
95
+ * outpostArns: [ // required
96
+ * "STRING_VALUE",
97
+ * ],
98
+ * controlPlaneInstanceType: "STRING_VALUE", // required
99
+ * controlPlanePlacement: {
100
+ * groupName: "STRING_VALUE",
101
+ * },
102
+ * },
103
+ * };
49
104
  * const command = new CreateClusterCommand(input);
50
105
  * const response = await client.send(command);
51
106
  * ```
@@ -53,6 +53,26 @@ export interface CreateFargateProfileCommandOutput extends CreateFargateProfileR
53
53
  * import { EKSClient, CreateFargateProfileCommand } from "@aws-sdk/client-eks"; // ES Modules import
54
54
  * // const { EKSClient, CreateFargateProfileCommand } = require("@aws-sdk/client-eks"); // CommonJS import
55
55
  * const client = new EKSClient(config);
56
+ * const input = {
57
+ * fargateProfileName: "STRING_VALUE", // required
58
+ * clusterName: "STRING_VALUE", // required
59
+ * podExecutionRoleArn: "STRING_VALUE", // required
60
+ * subnets: [
61
+ * "STRING_VALUE",
62
+ * ],
63
+ * selectors: [
64
+ * {
65
+ * namespace: "STRING_VALUE",
66
+ * labels: {
67
+ * "<keys>": "STRING_VALUE",
68
+ * },
69
+ * },
70
+ * ],
71
+ * clientRequestToken: "STRING_VALUE",
72
+ * tags: {
73
+ * "<keys>": "STRING_VALUE",
74
+ * },
75
+ * };
56
76
  * const command = new CreateFargateProfileCommand(input);
57
77
  * const response = await client.send(command);
58
78
  * ```
@@ -39,6 +39,56 @@ export interface CreateNodegroupCommandOutput extends CreateNodegroupResponse, _
39
39
  * import { EKSClient, CreateNodegroupCommand } from "@aws-sdk/client-eks"; // ES Modules import
40
40
  * // const { EKSClient, CreateNodegroupCommand } = require("@aws-sdk/client-eks"); // CommonJS import
41
41
  * const client = new EKSClient(config);
42
+ * const input = {
43
+ * clusterName: "STRING_VALUE", // required
44
+ * nodegroupName: "STRING_VALUE", // required
45
+ * scalingConfig: {
46
+ * minSize: Number("int"),
47
+ * maxSize: Number("int"),
48
+ * desiredSize: Number("int"),
49
+ * },
50
+ * diskSize: Number("int"),
51
+ * subnets: [ // required
52
+ * "STRING_VALUE",
53
+ * ],
54
+ * instanceTypes: [
55
+ * "STRING_VALUE",
56
+ * ],
57
+ * amiType: "AL2_x86_64" || "AL2_x86_64_GPU" || "AL2_ARM_64" || "CUSTOM" || "BOTTLEROCKET_ARM_64" || "BOTTLEROCKET_x86_64" || "BOTTLEROCKET_ARM_64_NVIDIA" || "BOTTLEROCKET_x86_64_NVIDIA" || "WINDOWS_CORE_2019_x86_64" || "WINDOWS_FULL_2019_x86_64" || "WINDOWS_CORE_2022_x86_64" || "WINDOWS_FULL_2022_x86_64",
58
+ * remoteAccess: {
59
+ * ec2SshKey: "STRING_VALUE",
60
+ * sourceSecurityGroups: [
61
+ * "STRING_VALUE",
62
+ * ],
63
+ * },
64
+ * nodeRole: "STRING_VALUE", // required
65
+ * labels: {
66
+ * "<keys>": "STRING_VALUE",
67
+ * },
68
+ * taints: [
69
+ * {
70
+ * key: "STRING_VALUE",
71
+ * value: "STRING_VALUE",
72
+ * effect: "NO_SCHEDULE" || "NO_EXECUTE" || "PREFER_NO_SCHEDULE",
73
+ * },
74
+ * ],
75
+ * tags: {
76
+ * "<keys>": "STRING_VALUE",
77
+ * },
78
+ * clientRequestToken: "STRING_VALUE",
79
+ * launchTemplate: {
80
+ * name: "STRING_VALUE",
81
+ * version: "STRING_VALUE",
82
+ * id: "STRING_VALUE",
83
+ * },
84
+ * updateConfig: {
85
+ * maxUnavailable: Number("int"),
86
+ * maxUnavailablePercentage: Number("int"),
87
+ * },
88
+ * capacityType: "ON_DEMAND" || "SPOT",
89
+ * version: "STRING_VALUE",
90
+ * releaseVersion: "STRING_VALUE",
91
+ * };
42
92
  * const command = new CreateNodegroupCommand(input);
43
93
  * const response = await client.send(command);
44
94
  * ```
@@ -28,6 +28,11 @@ export interface DeleteAddonCommandOutput extends DeleteAddonResponse, __Metadat
28
28
  * import { EKSClient, DeleteAddonCommand } from "@aws-sdk/client-eks"; // ES Modules import
29
29
  * // const { EKSClient, DeleteAddonCommand } = require("@aws-sdk/client-eks"); // CommonJS import
30
30
  * const client = new EKSClient(config);
31
+ * const input = {
32
+ * clusterName: "STRING_VALUE", // required
33
+ * addonName: "STRING_VALUE", // required
34
+ * preserve: true || false,
35
+ * };
31
36
  * const command = new DeleteAddonCommand(input);
32
37
  * const response = await client.send(command);
33
38
  * ```
@@ -33,6 +33,9 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
33
33
  * import { EKSClient, DeleteClusterCommand } from "@aws-sdk/client-eks"; // ES Modules import
34
34
  * // const { EKSClient, DeleteClusterCommand } = require("@aws-sdk/client-eks"); // CommonJS import
35
35
  * const client = new EKSClient(config);
36
+ * const input = {
37
+ * name: "STRING_VALUE", // required
38
+ * };
36
39
  * const command = new DeleteClusterCommand(input);
37
40
  * const response = await client.send(command);
38
41
  * ```
@@ -34,6 +34,10 @@ export interface DeleteFargateProfileCommandOutput extends DeleteFargateProfileR
34
34
  * import { EKSClient, DeleteFargateProfileCommand } from "@aws-sdk/client-eks"; // ES Modules import
35
35
  * // const { EKSClient, DeleteFargateProfileCommand } = require("@aws-sdk/client-eks"); // CommonJS import
36
36
  * const client = new EKSClient(config);
37
+ * const input = {
38
+ * clusterName: "STRING_VALUE", // required
39
+ * fargateProfileName: "STRING_VALUE", // required
40
+ * };
37
41
  * const command = new DeleteFargateProfileCommand(input);
38
42
  * const response = await client.send(command);
39
43
  * ```
@@ -26,6 +26,10 @@ export interface DeleteNodegroupCommandOutput extends DeleteNodegroupResponse, _
26
26
  * import { EKSClient, DeleteNodegroupCommand } from "@aws-sdk/client-eks"; // ES Modules import
27
27
  * // const { EKSClient, DeleteNodegroupCommand } = require("@aws-sdk/client-eks"); // CommonJS import
28
28
  * const client = new EKSClient(config);
29
+ * const input = {
30
+ * clusterName: "STRING_VALUE", // required
31
+ * nodegroupName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteNodegroupCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -27,6 +27,9 @@ export interface DeregisterClusterCommandOutput extends DeregisterClusterRespons
27
27
  * import { EKSClient, DeregisterClusterCommand } from "@aws-sdk/client-eks"; // ES Modules import
28
28
  * // const { EKSClient, DeregisterClusterCommand } = require("@aws-sdk/client-eks"); // CommonJS import
29
29
  * const client = new EKSClient(config);
30
+ * const input = {
31
+ * name: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeregisterClusterCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,10 @@ export interface DescribeAddonCommandOutput extends DescribeAddonResponse, __Met
26
26
  * import { EKSClient, DescribeAddonCommand } from "@aws-sdk/client-eks"; // ES Modules import
27
27
  * // const { EKSClient, DescribeAddonCommand } = require("@aws-sdk/client-eks"); // CommonJS import
28
28
  * const client = new EKSClient(config);
29
+ * const input = {
30
+ * clusterName: "STRING_VALUE", // required
31
+ * addonName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DescribeAddonCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,10 @@ export interface DescribeAddonConfigurationCommandOutput extends DescribeAddonCo
26
26
  * import { EKSClient, DescribeAddonConfigurationCommand } from "@aws-sdk/client-eks"; // ES Modules import
27
27
  * // const { EKSClient, DescribeAddonConfigurationCommand } = require("@aws-sdk/client-eks"); // CommonJS import
28
28
  * const client = new EKSClient(config);
29
+ * const input = {
30
+ * addonName: "STRING_VALUE", // required
31
+ * addonVersion: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DescribeAddonConfigurationCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -28,6 +28,21 @@ export interface DescribeAddonVersionsCommandOutput extends DescribeAddonVersion
28
28
  * import { EKSClient, DescribeAddonVersionsCommand } from "@aws-sdk/client-eks"; // ES Modules import
29
29
  * // const { EKSClient, DescribeAddonVersionsCommand } = require("@aws-sdk/client-eks"); // CommonJS import
30
30
  * const client = new EKSClient(config);
31
+ * const input = {
32
+ * kubernetesVersion: "STRING_VALUE",
33
+ * maxResults: Number("int"),
34
+ * nextToken: "STRING_VALUE",
35
+ * addonName: "STRING_VALUE",
36
+ * types: [
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * publishers: [
40
+ * "STRING_VALUE",
41
+ * ],
42
+ * owners: [
43
+ * "STRING_VALUE",
44
+ * ],
45
+ * };
31
46
  * const command = new DescribeAddonVersionsCommand(input);
32
47
  * const response = await client.send(command);
33
48
  * ```
@@ -34,6 +34,9 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _
34
34
  * import { EKSClient, DescribeClusterCommand } from "@aws-sdk/client-eks"; // ES Modules import
35
35
  * // const { EKSClient, DescribeClusterCommand } = require("@aws-sdk/client-eks"); // CommonJS import
36
36
  * const client = new EKSClient(config);
37
+ * const input = {
38
+ * name: "STRING_VALUE", // required
39
+ * };
37
40
  * const command = new DescribeClusterCommand(input);
38
41
  * const response = await client.send(command);
39
42
  * ```
@@ -26,6 +26,10 @@ export interface DescribeFargateProfileCommandOutput extends DescribeFargateProf
26
26
  * import { EKSClient, DescribeFargateProfileCommand } from "@aws-sdk/client-eks"; // ES Modules import
27
27
  * // const { EKSClient, DescribeFargateProfileCommand } = require("@aws-sdk/client-eks"); // CommonJS import
28
28
  * const client = new EKSClient(config);
29
+ * const input = {
30
+ * clusterName: "STRING_VALUE", // required
31
+ * fargateProfileName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DescribeFargateProfileCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,13 @@ export interface DescribeIdentityProviderConfigCommandOutput extends DescribeIde
26
26
  * import { EKSClient, DescribeIdentityProviderConfigCommand } from "@aws-sdk/client-eks"; // ES Modules import
27
27
  * // const { EKSClient, DescribeIdentityProviderConfigCommand } = require("@aws-sdk/client-eks"); // CommonJS import
28
28
  * const client = new EKSClient(config);
29
+ * const input = {
30
+ * clusterName: "STRING_VALUE", // required
31
+ * identityProviderConfig: {
32
+ * type: "STRING_VALUE", // required
33
+ * name: "STRING_VALUE", // required
34
+ * },
35
+ * };
29
36
  * const command = new DescribeIdentityProviderConfigCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,10 @@ export interface DescribeNodegroupCommandOutput extends DescribeNodegroupRespons
26
26
  * import { EKSClient, DescribeNodegroupCommand } from "@aws-sdk/client-eks"; // ES Modules import
27
27
  * // const { EKSClient, DescribeNodegroupCommand } = require("@aws-sdk/client-eks"); // CommonJS import
28
28
  * const client = new EKSClient(config);
29
+ * const input = {
30
+ * clusterName: "STRING_VALUE", // required
31
+ * nodegroupName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DescribeNodegroupCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -30,6 +30,12 @@ export interface DescribeUpdateCommandOutput extends DescribeUpdateResponse, __M
30
30
  * import { EKSClient, DescribeUpdateCommand } from "@aws-sdk/client-eks"; // ES Modules import
31
31
  * // const { EKSClient, DescribeUpdateCommand } = require("@aws-sdk/client-eks"); // CommonJS import
32
32
  * const client = new EKSClient(config);
33
+ * const input = {
34
+ * name: "STRING_VALUE", // required
35
+ * updateId: "STRING_VALUE", // required
36
+ * nodegroupName: "STRING_VALUE",
37
+ * addonName: "STRING_VALUE",
38
+ * };
33
39
  * const command = new DescribeUpdateCommand(input);
34
40
  * const response = await client.send(command);
35
41
  * ```
@@ -29,6 +29,14 @@ export interface DisassociateIdentityProviderConfigCommandOutput extends Disasso
29
29
  * import { EKSClient, DisassociateIdentityProviderConfigCommand } from "@aws-sdk/client-eks"; // ES Modules import
30
30
  * // const { EKSClient, DisassociateIdentityProviderConfigCommand } = require("@aws-sdk/client-eks"); // CommonJS import
31
31
  * const client = new EKSClient(config);
32
+ * const input = {
33
+ * clusterName: "STRING_VALUE", // required
34
+ * identityProviderConfig: {
35
+ * type: "STRING_VALUE", // required
36
+ * name: "STRING_VALUE", // required
37
+ * },
38
+ * clientRequestToken: "STRING_VALUE",
39
+ * };
32
40
  * const command = new DisassociateIdentityProviderConfigCommand(input);
33
41
  * const response = await client.send(command);
34
42
  * ```
@@ -26,6 +26,11 @@ export interface ListAddonsCommandOutput extends ListAddonsResponse, __MetadataB
26
26
  * import { EKSClient, ListAddonsCommand } from "@aws-sdk/client-eks"; // ES Modules import
27
27
  * // const { EKSClient, ListAddonsCommand } = require("@aws-sdk/client-eks"); // CommonJS import
28
28
  * const client = new EKSClient(config);
29
+ * const input = {
30
+ * clusterName: "STRING_VALUE", // required
31
+ * maxResults: Number("int"),
32
+ * nextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListAddonsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -27,6 +27,13 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
27
27
  * import { EKSClient, ListClustersCommand } from "@aws-sdk/client-eks"; // ES Modules import
28
28
  * // const { EKSClient, ListClustersCommand } = require("@aws-sdk/client-eks"); // CommonJS import
29
29
  * const client = new EKSClient(config);
30
+ * const input = {
31
+ * maxResults: Number("int"),
32
+ * nextToken: "STRING_VALUE",
33
+ * include: [
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * };
30
37
  * const command = new ListClustersCommand(input);
31
38
  * const response = await client.send(command);
32
39
  * ```
@@ -27,6 +27,11 @@ export interface ListFargateProfilesCommandOutput extends ListFargateProfilesRes
27
27
  * import { EKSClient, ListFargateProfilesCommand } from "@aws-sdk/client-eks"; // ES Modules import
28
28
  * // const { EKSClient, ListFargateProfilesCommand } = require("@aws-sdk/client-eks"); // CommonJS import
29
29
  * const client = new EKSClient(config);
30
+ * const input = {
31
+ * clusterName: "STRING_VALUE", // required
32
+ * maxResults: Number("int"),
33
+ * nextToken: "STRING_VALUE",
34
+ * };
30
35
  * const command = new ListFargateProfilesCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -26,6 +26,11 @@ export interface ListIdentityProviderConfigsCommandOutput extends ListIdentityPr
26
26
  * import { EKSClient, ListIdentityProviderConfigsCommand } from "@aws-sdk/client-eks"; // ES Modules import
27
27
  * // const { EKSClient, ListIdentityProviderConfigsCommand } = require("@aws-sdk/client-eks"); // CommonJS import
28
28
  * const client = new EKSClient(config);
29
+ * const input = {
30
+ * clusterName: "STRING_VALUE", // required
31
+ * maxResults: Number("int"),
32
+ * nextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListIdentityProviderConfigsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -28,6 +28,11 @@ export interface ListNodegroupsCommandOutput extends ListNodegroupsResponse, __M
28
28
  * import { EKSClient, ListNodegroupsCommand } from "@aws-sdk/client-eks"; // ES Modules import
29
29
  * // const { EKSClient, ListNodegroupsCommand } = require("@aws-sdk/client-eks"); // CommonJS import
30
30
  * const client = new EKSClient(config);
31
+ * const input = {
32
+ * clusterName: "STRING_VALUE", // required
33
+ * maxResults: Number("int"),
34
+ * nextToken: "STRING_VALUE",
35
+ * };
31
36
  * const command = new ListNodegroupsCommand(input);
32
37
  * const response = await client.send(command);
33
38
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { EKSClient, ListTagsForResourceCommand } from "@aws-sdk/client-eks"; // ES Modules import
27
27
  * // const { EKSClient, ListTagsForResourceCommand } = require("@aws-sdk/client-eks"); // CommonJS import
28
28
  * const client = new EKSClient(config);
29
+ * const input = {
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,13 @@ export interface ListUpdatesCommandOutput extends ListUpdatesResponse, __Metadat
27
27
  * import { EKSClient, ListUpdatesCommand } from "@aws-sdk/client-eks"; // ES Modules import
28
28
  * // const { EKSClient, ListUpdatesCommand } = require("@aws-sdk/client-eks"); // CommonJS import
29
29
  * const client = new EKSClient(config);
30
+ * const input = {
31
+ * name: "STRING_VALUE", // required
32
+ * nodegroupName: "STRING_VALUE",
33
+ * addonName: "STRING_VALUE",
34
+ * nextToken: "STRING_VALUE",
35
+ * maxResults: Number("int"),
36
+ * };
30
37
  * const command = new ListUpdatesCommand(input);
31
38
  * const response = await client.send(command);
32
39
  * ```
@@ -38,6 +38,17 @@ export interface RegisterClusterCommandOutput extends RegisterClusterResponse, _
38
38
  * import { EKSClient, RegisterClusterCommand } from "@aws-sdk/client-eks"; // ES Modules import
39
39
  * // const { EKSClient, RegisterClusterCommand } = require("@aws-sdk/client-eks"); // CommonJS import
40
40
  * const client = new EKSClient(config);
41
+ * const input = {
42
+ * name: "STRING_VALUE", // required
43
+ * connectorConfig: {
44
+ * roleArn: "STRING_VALUE", // required
45
+ * provider: "EKS_ANYWHERE" || "ANTHOS" || "GKE" || "AKS" || "OPENSHIFT" || "TANZU" || "RANCHER" || "EC2" || "OTHER", // required
46
+ * },
47
+ * clientRequestToken: "STRING_VALUE",
48
+ * tags: {
49
+ * "<keys>": "STRING_VALUE",
50
+ * },
51
+ * };
41
52
  * const command = new RegisterClusterCommand(input);
42
53
  * const response = await client.send(command);
43
54
  * ```
@@ -31,6 +31,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
31
31
  * import { EKSClient, TagResourceCommand } from "@aws-sdk/client-eks"; // ES Modules import
32
32
  * // const { EKSClient, TagResourceCommand } = require("@aws-sdk/client-eks"); // CommonJS import
33
33
  * const client = new EKSClient(config);
34
+ * const input = {
35
+ * resourceArn: "STRING_VALUE", // required
36
+ * tags: { // required
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
39
+ * };
34
40
  * const command = new TagResourceCommand(input);
35
41
  * const response = await client.send(command);
36
42
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { EKSClient, UntagResourceCommand } from "@aws-sdk/client-eks"; // ES Modules import
27
27
  * // const { EKSClient, UntagResourceCommand } = require("@aws-sdk/client-eks"); // CommonJS import
28
28
  * const client = new EKSClient(config);
29
+ * const input = {
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * tagKeys: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,15 @@ export interface UpdateAddonCommandOutput extends UpdateAddonResponse, __Metadat
26
26
  * import { EKSClient, UpdateAddonCommand } from "@aws-sdk/client-eks"; // ES Modules import
27
27
  * // const { EKSClient, UpdateAddonCommand } = require("@aws-sdk/client-eks"); // CommonJS import
28
28
  * const client = new EKSClient(config);
29
+ * const input = {
30
+ * clusterName: "STRING_VALUE", // required
31
+ * addonName: "STRING_VALUE", // required
32
+ * addonVersion: "STRING_VALUE",
33
+ * serviceAccountRoleArn: "STRING_VALUE",
34
+ * resolveConflicts: "OVERWRITE" || "NONE" || "PRESERVE",
35
+ * clientRequestToken: "STRING_VALUE",
36
+ * configurationValues: "STRING_VALUE",
37
+ * };
29
38
  * const command = new UpdateAddonCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -53,6 +53,33 @@ export interface UpdateClusterConfigCommandOutput extends UpdateClusterConfigRes
53
53
  * import { EKSClient, UpdateClusterConfigCommand } from "@aws-sdk/client-eks"; // ES Modules import
54
54
  * // const { EKSClient, UpdateClusterConfigCommand } = require("@aws-sdk/client-eks"); // CommonJS import
55
55
  * const client = new EKSClient(config);
56
+ * const input = {
57
+ * name: "STRING_VALUE", // required
58
+ * resourcesVpcConfig: {
59
+ * subnetIds: [
60
+ * "STRING_VALUE",
61
+ * ],
62
+ * securityGroupIds: [
63
+ * "STRING_VALUE",
64
+ * ],
65
+ * endpointPublicAccess: true || false,
66
+ * endpointPrivateAccess: true || false,
67
+ * publicAccessCidrs: [
68
+ * "STRING_VALUE",
69
+ * ],
70
+ * },
71
+ * logging: {
72
+ * clusterLogging: [
73
+ * {
74
+ * types: [
75
+ * "api" || "audit" || "authenticator" || "controllerManager" || "scheduler",
76
+ * ],
77
+ * enabled: true || false,
78
+ * },
79
+ * ],
80
+ * },
81
+ * clientRequestToken: "STRING_VALUE",
82
+ * };
56
83
  * const command = new UpdateClusterConfigCommand(input);
57
84
  * const response = await client.send(command);
58
85
  * ```
@@ -35,6 +35,11 @@ export interface UpdateClusterVersionCommandOutput extends UpdateClusterVersionR
35
35
  * import { EKSClient, UpdateClusterVersionCommand } from "@aws-sdk/client-eks"; // ES Modules import
36
36
  * // const { EKSClient, UpdateClusterVersionCommand } = require("@aws-sdk/client-eks"); // CommonJS import
37
37
  * const client = new EKSClient(config);
38
+ * const input = {
39
+ * name: "STRING_VALUE", // required
40
+ * version: "STRING_VALUE", // required
41
+ * clientRequestToken: "STRING_VALUE",
42
+ * };
38
43
  * const command = new UpdateClusterVersionCommand(input);
39
44
  * const response = await client.send(command);
40
45
  * ```
@@ -29,6 +29,44 @@ export interface UpdateNodegroupConfigCommandOutput extends UpdateNodegroupConfi
29
29
  * import { EKSClient, UpdateNodegroupConfigCommand } from "@aws-sdk/client-eks"; // ES Modules import
30
30
  * // const { EKSClient, UpdateNodegroupConfigCommand } = require("@aws-sdk/client-eks"); // CommonJS import
31
31
  * const client = new EKSClient(config);
32
+ * const input = {
33
+ * clusterName: "STRING_VALUE", // required
34
+ * nodegroupName: "STRING_VALUE", // required
35
+ * labels: {
36
+ * addOrUpdateLabels: {
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
39
+ * removeLabels: [
40
+ * "STRING_VALUE",
41
+ * ],
42
+ * },
43
+ * taints: {
44
+ * addOrUpdateTaints: [
45
+ * {
46
+ * key: "STRING_VALUE",
47
+ * value: "STRING_VALUE",
48
+ * effect: "NO_SCHEDULE" || "NO_EXECUTE" || "PREFER_NO_SCHEDULE",
49
+ * },
50
+ * ],
51
+ * removeTaints: [
52
+ * {
53
+ * key: "STRING_VALUE",
54
+ * value: "STRING_VALUE",
55
+ * effect: "NO_SCHEDULE" || "NO_EXECUTE" || "PREFER_NO_SCHEDULE",
56
+ * },
57
+ * ],
58
+ * },
59
+ * scalingConfig: {
60
+ * minSize: Number("int"),
61
+ * maxSize: Number("int"),
62
+ * desiredSize: Number("int"),
63
+ * },
64
+ * updateConfig: {
65
+ * maxUnavailable: Number("int"),
66
+ * maxUnavailablePercentage: Number("int"),
67
+ * },
68
+ * clientRequestToken: "STRING_VALUE",
69
+ * };
32
70
  * const command = new UpdateNodegroupConfigCommand(input);
33
71
  * const response = await client.send(command);
34
72
  * ```
@@ -46,6 +46,19 @@ export interface UpdateNodegroupVersionCommandOutput extends UpdateNodegroupVers
46
46
  * import { EKSClient, UpdateNodegroupVersionCommand } from "@aws-sdk/client-eks"; // ES Modules import
47
47
  * // const { EKSClient, UpdateNodegroupVersionCommand } = require("@aws-sdk/client-eks"); // CommonJS import
48
48
  * const client = new EKSClient(config);
49
+ * const input = {
50
+ * clusterName: "STRING_VALUE", // required
51
+ * nodegroupName: "STRING_VALUE", // required
52
+ * version: "STRING_VALUE",
53
+ * releaseVersion: "STRING_VALUE",
54
+ * launchTemplate: {
55
+ * name: "STRING_VALUE",
56
+ * version: "STRING_VALUE",
57
+ * id: "STRING_VALUE",
58
+ * },
59
+ * force: true || false,
60
+ * clientRequestToken: "STRING_VALUE",
61
+ * };
49
62
  * const command = new UpdateNodegroupVersionCommand(input);
50
63
  * const response = await client.send(command);
51
64
  * ```
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.299.0",
4
+ "version": "3.300.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.300.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.300.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "@aws-sdk/util-waiter": "3.296.0",
57
57
  "tslib": "^2.5.0",