@aws-sdk/client-eks 3.940.0 → 3.943.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 (42) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +435 -68
  3. package/dist-es/EKS.js +10 -0
  4. package/dist-es/commands/CreateCapabilityCommand.js +16 -0
  5. package/dist-es/commands/DeleteCapabilityCommand.js +16 -0
  6. package/dist-es/commands/DescribeCapabilityCommand.js +16 -0
  7. package/dist-es/commands/ListCapabilitiesCommand.js +16 -0
  8. package/dist-es/commands/UpdateCapabilityCommand.js +16 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/enums.js +30 -0
  11. package/dist-es/pagination/ListCapabilitiesPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +326 -68
  14. package/dist-types/EKS.d.ts +35 -0
  15. package/dist-types/EKSClient.d.ts +7 -2
  16. package/dist-types/commands/CreateCapabilityCommand.d.ts +186 -0
  17. package/dist-types/commands/DeleteCapabilityCommand.d.ts +147 -0
  18. package/dist-types/commands/DescribeCapabilityCommand.d.ts +143 -0
  19. package/dist-types/commands/DescribeUpdateCommand.d.ts +1 -0
  20. package/dist-types/commands/ListCapabilitiesCommand.d.ts +94 -0
  21. package/dist-types/commands/ListUpdatesCommand.d.ts +1 -0
  22. package/dist-types/commands/UpdateCapabilityCommand.d.ts +154 -0
  23. package/dist-types/commands/index.d.ts +5 -0
  24. package/dist-types/models/enums.d.ts +78 -0
  25. package/dist-types/models/models_0.d.ts +672 -1
  26. package/dist-types/pagination/ListCapabilitiesPaginator.d.ts +7 -0
  27. package/dist-types/pagination/index.d.ts +1 -0
  28. package/dist-types/schemas/schemas_0.d.ts +36 -0
  29. package/dist-types/ts3.4/EKS.d.ts +85 -0
  30. package/dist-types/ts3.4/EKSClient.d.ts +30 -0
  31. package/dist-types/ts3.4/commands/CreateCapabilityCommand.d.ts +50 -0
  32. package/dist-types/ts3.4/commands/DeleteCapabilityCommand.d.ts +50 -0
  33. package/dist-types/ts3.4/commands/DescribeCapabilityCommand.d.ts +51 -0
  34. package/dist-types/ts3.4/commands/ListCapabilitiesCommand.d.ts +50 -0
  35. package/dist-types/ts3.4/commands/UpdateCapabilityCommand.d.ts +50 -0
  36. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  37. package/dist-types/ts3.4/models/enums.d.ts +41 -0
  38. package/dist-types/ts3.4/models/models_0.d.ts +139 -0
  39. package/dist-types/ts3.4/pagination/ListCapabilitiesPaginator.d.ts +11 -0
  40. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  41. package/dist-types/ts3.4/schemas/schemas_0.d.ts +36 -0
  42. package/package.json +5 -5
@@ -4,6 +4,7 @@ import { AssociateEncryptionConfigCommandInput, AssociateEncryptionConfigCommand
4
4
  import { AssociateIdentityProviderConfigCommandInput, AssociateIdentityProviderConfigCommandOutput } from "./commands/AssociateIdentityProviderConfigCommand";
5
5
  import { CreateAccessEntryCommandInput, CreateAccessEntryCommandOutput } from "./commands/CreateAccessEntryCommand";
6
6
  import { CreateAddonCommandInput, CreateAddonCommandOutput } from "./commands/CreateAddonCommand";
7
+ import { CreateCapabilityCommandInput, CreateCapabilityCommandOutput } from "./commands/CreateCapabilityCommand";
7
8
  import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
8
9
  import { CreateEksAnywhereSubscriptionCommandInput, CreateEksAnywhereSubscriptionCommandOutput } from "./commands/CreateEksAnywhereSubscriptionCommand";
9
10
  import { CreateFargateProfileCommandInput, CreateFargateProfileCommandOutput } from "./commands/CreateFargateProfileCommand";
@@ -11,6 +12,7 @@ import { CreateNodegroupCommandInput, CreateNodegroupCommandOutput } from "./com
11
12
  import { CreatePodIdentityAssociationCommandInput, CreatePodIdentityAssociationCommandOutput } from "./commands/CreatePodIdentityAssociationCommand";
12
13
  import { DeleteAccessEntryCommandInput, DeleteAccessEntryCommandOutput } from "./commands/DeleteAccessEntryCommand";
13
14
  import { DeleteAddonCommandInput, DeleteAddonCommandOutput } from "./commands/DeleteAddonCommand";
15
+ import { DeleteCapabilityCommandInput, DeleteCapabilityCommandOutput } from "./commands/DeleteCapabilityCommand";
14
16
  import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "./commands/DeleteClusterCommand";
15
17
  import { DeleteEksAnywhereSubscriptionCommandInput, DeleteEksAnywhereSubscriptionCommandOutput } from "./commands/DeleteEksAnywhereSubscriptionCommand";
16
18
  import { DeleteFargateProfileCommandInput, DeleteFargateProfileCommandOutput } from "./commands/DeleteFargateProfileCommand";
@@ -21,6 +23,7 @@ import { DescribeAccessEntryCommandInput, DescribeAccessEntryCommandOutput } fro
21
23
  import { DescribeAddonCommandInput, DescribeAddonCommandOutput } from "./commands/DescribeAddonCommand";
22
24
  import { DescribeAddonConfigurationCommandInput, DescribeAddonConfigurationCommandOutput } from "./commands/DescribeAddonConfigurationCommand";
23
25
  import { DescribeAddonVersionsCommandInput, DescribeAddonVersionsCommandOutput } from "./commands/DescribeAddonVersionsCommand";
26
+ import { DescribeCapabilityCommandInput, DescribeCapabilityCommandOutput } from "./commands/DescribeCapabilityCommand";
24
27
  import { DescribeClusterCommandInput, DescribeClusterCommandOutput } from "./commands/DescribeClusterCommand";
25
28
  import { DescribeClusterVersionsCommandInput, DescribeClusterVersionsCommandOutput } from "./commands/DescribeClusterVersionsCommand";
26
29
  import { DescribeEksAnywhereSubscriptionCommandInput, DescribeEksAnywhereSubscriptionCommandOutput } from "./commands/DescribeEksAnywhereSubscriptionCommand";
@@ -37,6 +40,7 @@ import { ListAccessEntriesCommandInput, ListAccessEntriesCommandOutput } from ".
37
40
  import { ListAccessPoliciesCommandInput, ListAccessPoliciesCommandOutput } from "./commands/ListAccessPoliciesCommand";
38
41
  import { ListAddonsCommandInput, ListAddonsCommandOutput } from "./commands/ListAddonsCommand";
39
42
  import { ListAssociatedAccessPoliciesCommandInput, ListAssociatedAccessPoliciesCommandOutput } from "./commands/ListAssociatedAccessPoliciesCommand";
43
+ import { ListCapabilitiesCommandInput, ListCapabilitiesCommandOutput } from "./commands/ListCapabilitiesCommand";
40
44
  import { ListClustersCommandInput, ListClustersCommandOutput } from "./commands/ListClustersCommand";
41
45
  import { ListEksAnywhereSubscriptionsCommandInput, ListEksAnywhereSubscriptionsCommandOutput } from "./commands/ListEksAnywhereSubscriptionsCommand";
42
46
  import { ListFargateProfilesCommandInput, ListFargateProfilesCommandOutput } from "./commands/ListFargateProfilesCommand";
@@ -52,6 +56,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
52
56
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
53
57
  import { UpdateAccessEntryCommandInput, UpdateAccessEntryCommandOutput } from "./commands/UpdateAccessEntryCommand";
54
58
  import { UpdateAddonCommandInput, UpdateAddonCommandOutput } from "./commands/UpdateAddonCommand";
59
+ import { UpdateCapabilityCommandInput, UpdateCapabilityCommandOutput } from "./commands/UpdateCapabilityCommand";
55
60
  import { UpdateClusterConfigCommandInput, UpdateClusterConfigCommandOutput } from "./commands/UpdateClusterConfigCommand";
56
61
  import { UpdateClusterVersionCommandInput, UpdateClusterVersionCommandOutput } from "./commands/UpdateClusterVersionCommand";
57
62
  import { UpdateEksAnywhereSubscriptionCommandInput, UpdateEksAnywhereSubscriptionCommandOutput } from "./commands/UpdateEksAnywhereSubscriptionCommand";
@@ -90,6 +95,12 @@ export interface EKS {
90
95
  createAddon(args: CreateAddonCommandInput, options?: __HttpHandlerOptions): Promise<CreateAddonCommandOutput>;
91
96
  createAddon(args: CreateAddonCommandInput, cb: (err: any, data?: CreateAddonCommandOutput) => void): void;
92
97
  createAddon(args: CreateAddonCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAddonCommandOutput) => void): void;
98
+ /**
99
+ * @see {@link CreateCapabilityCommand}
100
+ */
101
+ createCapability(args: CreateCapabilityCommandInput, options?: __HttpHandlerOptions): Promise<CreateCapabilityCommandOutput>;
102
+ createCapability(args: CreateCapabilityCommandInput, cb: (err: any, data?: CreateCapabilityCommandOutput) => void): void;
103
+ createCapability(args: CreateCapabilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCapabilityCommandOutput) => void): void;
93
104
  /**
94
105
  * @see {@link CreateClusterCommand}
95
106
  */
@@ -132,6 +143,12 @@ export interface EKS {
132
143
  deleteAddon(args: DeleteAddonCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAddonCommandOutput>;
133
144
  deleteAddon(args: DeleteAddonCommandInput, cb: (err: any, data?: DeleteAddonCommandOutput) => void): void;
134
145
  deleteAddon(args: DeleteAddonCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAddonCommandOutput) => void): void;
146
+ /**
147
+ * @see {@link DeleteCapabilityCommand}
148
+ */
149
+ deleteCapability(args: DeleteCapabilityCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCapabilityCommandOutput>;
150
+ deleteCapability(args: DeleteCapabilityCommandInput, cb: (err: any, data?: DeleteCapabilityCommandOutput) => void): void;
151
+ deleteCapability(args: DeleteCapabilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCapabilityCommandOutput) => void): void;
135
152
  /**
136
153
  * @see {@link DeleteClusterCommand}
137
154
  */
@@ -193,6 +210,12 @@ export interface EKS {
193
210
  describeAddonVersions(args: DescribeAddonVersionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAddonVersionsCommandOutput>;
194
211
  describeAddonVersions(args: DescribeAddonVersionsCommandInput, cb: (err: any, data?: DescribeAddonVersionsCommandOutput) => void): void;
195
212
  describeAddonVersions(args: DescribeAddonVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAddonVersionsCommandOutput) => void): void;
213
+ /**
214
+ * @see {@link DescribeCapabilityCommand}
215
+ */
216
+ describeCapability(args: DescribeCapabilityCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCapabilityCommandOutput>;
217
+ describeCapability(args: DescribeCapabilityCommandInput, cb: (err: any, data?: DescribeCapabilityCommandOutput) => void): void;
218
+ describeCapability(args: DescribeCapabilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCapabilityCommandOutput) => void): void;
196
219
  /**
197
220
  * @see {@link DescribeClusterCommand}
198
221
  */
@@ -291,6 +314,12 @@ export interface EKS {
291
314
  listAssociatedAccessPolicies(args: ListAssociatedAccessPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListAssociatedAccessPoliciesCommandOutput>;
292
315
  listAssociatedAccessPolicies(args: ListAssociatedAccessPoliciesCommandInput, cb: (err: any, data?: ListAssociatedAccessPoliciesCommandOutput) => void): void;
293
316
  listAssociatedAccessPolicies(args: ListAssociatedAccessPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAssociatedAccessPoliciesCommandOutput) => void): void;
317
+ /**
318
+ * @see {@link ListCapabilitiesCommand}
319
+ */
320
+ listCapabilities(args: ListCapabilitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListCapabilitiesCommandOutput>;
321
+ listCapabilities(args: ListCapabilitiesCommandInput, cb: (err: any, data?: ListCapabilitiesCommandOutput) => void): void;
322
+ listCapabilities(args: ListCapabilitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCapabilitiesCommandOutput) => void): void;
294
323
  /**
295
324
  * @see {@link ListClustersCommand}
296
325
  */
@@ -383,6 +412,12 @@ export interface EKS {
383
412
  updateAddon(args: UpdateAddonCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAddonCommandOutput>;
384
413
  updateAddon(args: UpdateAddonCommandInput, cb: (err: any, data?: UpdateAddonCommandOutput) => void): void;
385
414
  updateAddon(args: UpdateAddonCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAddonCommandOutput) => void): void;
415
+ /**
416
+ * @see {@link UpdateCapabilityCommand}
417
+ */
418
+ updateCapability(args: UpdateCapabilityCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCapabilityCommandOutput>;
419
+ updateCapability(args: UpdateCapabilityCommandInput, cb: (err: any, data?: UpdateCapabilityCommandOutput) => void): void;
420
+ updateCapability(args: UpdateCapabilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCapabilityCommandOutput) => void): void;
386
421
  /**
387
422
  * @see {@link UpdateClusterConfigCommand}
388
423
  */
@@ -12,6 +12,7 @@ import { AssociateEncryptionConfigCommandInput, AssociateEncryptionConfigCommand
12
12
  import { AssociateIdentityProviderConfigCommandInput, AssociateIdentityProviderConfigCommandOutput } from "./commands/AssociateIdentityProviderConfigCommand";
13
13
  import { CreateAccessEntryCommandInput, CreateAccessEntryCommandOutput } from "./commands/CreateAccessEntryCommand";
14
14
  import { CreateAddonCommandInput, CreateAddonCommandOutput } from "./commands/CreateAddonCommand";
15
+ import { CreateCapabilityCommandInput, CreateCapabilityCommandOutput } from "./commands/CreateCapabilityCommand";
15
16
  import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
16
17
  import { CreateEksAnywhereSubscriptionCommandInput, CreateEksAnywhereSubscriptionCommandOutput } from "./commands/CreateEksAnywhereSubscriptionCommand";
17
18
  import { CreateFargateProfileCommandInput, CreateFargateProfileCommandOutput } from "./commands/CreateFargateProfileCommand";
@@ -19,6 +20,7 @@ import { CreateNodegroupCommandInput, CreateNodegroupCommandOutput } from "./com
19
20
  import { CreatePodIdentityAssociationCommandInput, CreatePodIdentityAssociationCommandOutput } from "./commands/CreatePodIdentityAssociationCommand";
20
21
  import { DeleteAccessEntryCommandInput, DeleteAccessEntryCommandOutput } from "./commands/DeleteAccessEntryCommand";
21
22
  import { DeleteAddonCommandInput, DeleteAddonCommandOutput } from "./commands/DeleteAddonCommand";
23
+ import { DeleteCapabilityCommandInput, DeleteCapabilityCommandOutput } from "./commands/DeleteCapabilityCommand";
22
24
  import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "./commands/DeleteClusterCommand";
23
25
  import { DeleteEksAnywhereSubscriptionCommandInput, DeleteEksAnywhereSubscriptionCommandOutput } from "./commands/DeleteEksAnywhereSubscriptionCommand";
24
26
  import { DeleteFargateProfileCommandInput, DeleteFargateProfileCommandOutput } from "./commands/DeleteFargateProfileCommand";
@@ -29,6 +31,7 @@ import { DescribeAccessEntryCommandInput, DescribeAccessEntryCommandOutput } fro
29
31
  import { DescribeAddonCommandInput, DescribeAddonCommandOutput } from "./commands/DescribeAddonCommand";
30
32
  import { DescribeAddonConfigurationCommandInput, DescribeAddonConfigurationCommandOutput } from "./commands/DescribeAddonConfigurationCommand";
31
33
  import { DescribeAddonVersionsCommandInput, DescribeAddonVersionsCommandOutput } from "./commands/DescribeAddonVersionsCommand";
34
+ import { DescribeCapabilityCommandInput, DescribeCapabilityCommandOutput } from "./commands/DescribeCapabilityCommand";
32
35
  import { DescribeClusterCommandInput, DescribeClusterCommandOutput } from "./commands/DescribeClusterCommand";
33
36
  import { DescribeClusterVersionsCommandInput, DescribeClusterVersionsCommandOutput } from "./commands/DescribeClusterVersionsCommand";
34
37
  import { DescribeEksAnywhereSubscriptionCommandInput, DescribeEksAnywhereSubscriptionCommandOutput } from "./commands/DescribeEksAnywhereSubscriptionCommand";
@@ -45,6 +48,7 @@ import { ListAccessEntriesCommandInput, ListAccessEntriesCommandOutput } from ".
45
48
  import { ListAccessPoliciesCommandInput, ListAccessPoliciesCommandOutput } from "./commands/ListAccessPoliciesCommand";
46
49
  import { ListAddonsCommandInput, ListAddonsCommandOutput } from "./commands/ListAddonsCommand";
47
50
  import { ListAssociatedAccessPoliciesCommandInput, ListAssociatedAccessPoliciesCommandOutput } from "./commands/ListAssociatedAccessPoliciesCommand";
51
+ import { ListCapabilitiesCommandInput, ListCapabilitiesCommandOutput } from "./commands/ListCapabilitiesCommand";
48
52
  import { ListClustersCommandInput, ListClustersCommandOutput } from "./commands/ListClustersCommand";
49
53
  import { ListEksAnywhereSubscriptionsCommandInput, ListEksAnywhereSubscriptionsCommandOutput } from "./commands/ListEksAnywhereSubscriptionsCommand";
50
54
  import { ListFargateProfilesCommandInput, ListFargateProfilesCommandOutput } from "./commands/ListFargateProfilesCommand";
@@ -60,6 +64,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
60
64
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
61
65
  import { UpdateAccessEntryCommandInput, UpdateAccessEntryCommandOutput } from "./commands/UpdateAccessEntryCommand";
62
66
  import { UpdateAddonCommandInput, UpdateAddonCommandOutput } from "./commands/UpdateAddonCommand";
67
+ import { UpdateCapabilityCommandInput, UpdateCapabilityCommandOutput } from "./commands/UpdateCapabilityCommand";
63
68
  import { UpdateClusterConfigCommandInput, UpdateClusterConfigCommandOutput } from "./commands/UpdateClusterConfigCommand";
64
69
  import { UpdateClusterVersionCommandInput, UpdateClusterVersionCommandOutput } from "./commands/UpdateClusterVersionCommand";
65
70
  import { UpdateEksAnywhereSubscriptionCommandInput, UpdateEksAnywhereSubscriptionCommandOutput } from "./commands/UpdateEksAnywhereSubscriptionCommand";
@@ -72,11 +77,11 @@ export { __Client };
72
77
  /**
73
78
  * @public
74
79
  */
75
- export type ServiceInputTypes = AssociateAccessPolicyCommandInput | AssociateEncryptionConfigCommandInput | AssociateIdentityProviderConfigCommandInput | CreateAccessEntryCommandInput | CreateAddonCommandInput | CreateClusterCommandInput | CreateEksAnywhereSubscriptionCommandInput | CreateFargateProfileCommandInput | CreateNodegroupCommandInput | CreatePodIdentityAssociationCommandInput | DeleteAccessEntryCommandInput | DeleteAddonCommandInput | DeleteClusterCommandInput | DeleteEksAnywhereSubscriptionCommandInput | DeleteFargateProfileCommandInput | DeleteNodegroupCommandInput | DeletePodIdentityAssociationCommandInput | DeregisterClusterCommandInput | DescribeAccessEntryCommandInput | DescribeAddonCommandInput | DescribeAddonConfigurationCommandInput | DescribeAddonVersionsCommandInput | DescribeClusterCommandInput | DescribeClusterVersionsCommandInput | DescribeEksAnywhereSubscriptionCommandInput | DescribeFargateProfileCommandInput | DescribeIdentityProviderConfigCommandInput | DescribeInsightCommandInput | DescribeInsightsRefreshCommandInput | DescribeNodegroupCommandInput | DescribePodIdentityAssociationCommandInput | DescribeUpdateCommandInput | DisassociateAccessPolicyCommandInput | DisassociateIdentityProviderConfigCommandInput | ListAccessEntriesCommandInput | ListAccessPoliciesCommandInput | ListAddonsCommandInput | ListAssociatedAccessPoliciesCommandInput | ListClustersCommandInput | ListEksAnywhereSubscriptionsCommandInput | ListFargateProfilesCommandInput | ListIdentityProviderConfigsCommandInput | ListInsightsCommandInput | ListNodegroupsCommandInput | ListPodIdentityAssociationsCommandInput | ListTagsForResourceCommandInput | ListUpdatesCommandInput | RegisterClusterCommandInput | StartInsightsRefreshCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccessEntryCommandInput | UpdateAddonCommandInput | UpdateClusterConfigCommandInput | UpdateClusterVersionCommandInput | UpdateEksAnywhereSubscriptionCommandInput | UpdateNodegroupConfigCommandInput | UpdateNodegroupVersionCommandInput | UpdatePodIdentityAssociationCommandInput;
80
+ export type ServiceInputTypes = AssociateAccessPolicyCommandInput | AssociateEncryptionConfigCommandInput | AssociateIdentityProviderConfigCommandInput | CreateAccessEntryCommandInput | CreateAddonCommandInput | CreateCapabilityCommandInput | CreateClusterCommandInput | CreateEksAnywhereSubscriptionCommandInput | CreateFargateProfileCommandInput | CreateNodegroupCommandInput | CreatePodIdentityAssociationCommandInput | DeleteAccessEntryCommandInput | DeleteAddonCommandInput | DeleteCapabilityCommandInput | DeleteClusterCommandInput | DeleteEksAnywhereSubscriptionCommandInput | DeleteFargateProfileCommandInput | DeleteNodegroupCommandInput | DeletePodIdentityAssociationCommandInput | DeregisterClusterCommandInput | DescribeAccessEntryCommandInput | DescribeAddonCommandInput | DescribeAddonConfigurationCommandInput | DescribeAddonVersionsCommandInput | DescribeCapabilityCommandInput | DescribeClusterCommandInput | DescribeClusterVersionsCommandInput | DescribeEksAnywhereSubscriptionCommandInput | DescribeFargateProfileCommandInput | DescribeIdentityProviderConfigCommandInput | DescribeInsightCommandInput | DescribeInsightsRefreshCommandInput | DescribeNodegroupCommandInput | DescribePodIdentityAssociationCommandInput | DescribeUpdateCommandInput | DisassociateAccessPolicyCommandInput | DisassociateIdentityProviderConfigCommandInput | ListAccessEntriesCommandInput | ListAccessPoliciesCommandInput | ListAddonsCommandInput | ListAssociatedAccessPoliciesCommandInput | ListCapabilitiesCommandInput | ListClustersCommandInput | ListEksAnywhereSubscriptionsCommandInput | ListFargateProfilesCommandInput | ListIdentityProviderConfigsCommandInput | ListInsightsCommandInput | ListNodegroupsCommandInput | ListPodIdentityAssociationsCommandInput | ListTagsForResourceCommandInput | ListUpdatesCommandInput | RegisterClusterCommandInput | StartInsightsRefreshCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccessEntryCommandInput | UpdateAddonCommandInput | UpdateCapabilityCommandInput | UpdateClusterConfigCommandInput | UpdateClusterVersionCommandInput | UpdateEksAnywhereSubscriptionCommandInput | UpdateNodegroupConfigCommandInput | UpdateNodegroupVersionCommandInput | UpdatePodIdentityAssociationCommandInput;
76
81
  /**
77
82
  * @public
78
83
  */
79
- export type ServiceOutputTypes = AssociateAccessPolicyCommandOutput | AssociateEncryptionConfigCommandOutput | AssociateIdentityProviderConfigCommandOutput | CreateAccessEntryCommandOutput | CreateAddonCommandOutput | CreateClusterCommandOutput | CreateEksAnywhereSubscriptionCommandOutput | CreateFargateProfileCommandOutput | CreateNodegroupCommandOutput | CreatePodIdentityAssociationCommandOutput | DeleteAccessEntryCommandOutput | DeleteAddonCommandOutput | DeleteClusterCommandOutput | DeleteEksAnywhereSubscriptionCommandOutput | DeleteFargateProfileCommandOutput | DeleteNodegroupCommandOutput | DeletePodIdentityAssociationCommandOutput | DeregisterClusterCommandOutput | DescribeAccessEntryCommandOutput | DescribeAddonCommandOutput | DescribeAddonConfigurationCommandOutput | DescribeAddonVersionsCommandOutput | DescribeClusterCommandOutput | DescribeClusterVersionsCommandOutput | DescribeEksAnywhereSubscriptionCommandOutput | DescribeFargateProfileCommandOutput | DescribeIdentityProviderConfigCommandOutput | DescribeInsightCommandOutput | DescribeInsightsRefreshCommandOutput | DescribeNodegroupCommandOutput | DescribePodIdentityAssociationCommandOutput | DescribeUpdateCommandOutput | DisassociateAccessPolicyCommandOutput | DisassociateIdentityProviderConfigCommandOutput | ListAccessEntriesCommandOutput | ListAccessPoliciesCommandOutput | ListAddonsCommandOutput | ListAssociatedAccessPoliciesCommandOutput | ListClustersCommandOutput | ListEksAnywhereSubscriptionsCommandOutput | ListFargateProfilesCommandOutput | ListIdentityProviderConfigsCommandOutput | ListInsightsCommandOutput | ListNodegroupsCommandOutput | ListPodIdentityAssociationsCommandOutput | ListTagsForResourceCommandOutput | ListUpdatesCommandOutput | RegisterClusterCommandOutput | StartInsightsRefreshCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccessEntryCommandOutput | UpdateAddonCommandOutput | UpdateClusterConfigCommandOutput | UpdateClusterVersionCommandOutput | UpdateEksAnywhereSubscriptionCommandOutput | UpdateNodegroupConfigCommandOutput | UpdateNodegroupVersionCommandOutput | UpdatePodIdentityAssociationCommandOutput;
84
+ export type ServiceOutputTypes = AssociateAccessPolicyCommandOutput | AssociateEncryptionConfigCommandOutput | AssociateIdentityProviderConfigCommandOutput | CreateAccessEntryCommandOutput | CreateAddonCommandOutput | CreateCapabilityCommandOutput | CreateClusterCommandOutput | CreateEksAnywhereSubscriptionCommandOutput | CreateFargateProfileCommandOutput | CreateNodegroupCommandOutput | CreatePodIdentityAssociationCommandOutput | DeleteAccessEntryCommandOutput | DeleteAddonCommandOutput | DeleteCapabilityCommandOutput | DeleteClusterCommandOutput | DeleteEksAnywhereSubscriptionCommandOutput | DeleteFargateProfileCommandOutput | DeleteNodegroupCommandOutput | DeletePodIdentityAssociationCommandOutput | DeregisterClusterCommandOutput | DescribeAccessEntryCommandOutput | DescribeAddonCommandOutput | DescribeAddonConfigurationCommandOutput | DescribeAddonVersionsCommandOutput | DescribeCapabilityCommandOutput | DescribeClusterCommandOutput | DescribeClusterVersionsCommandOutput | DescribeEksAnywhereSubscriptionCommandOutput | DescribeFargateProfileCommandOutput | DescribeIdentityProviderConfigCommandOutput | DescribeInsightCommandOutput | DescribeInsightsRefreshCommandOutput | DescribeNodegroupCommandOutput | DescribePodIdentityAssociationCommandOutput | DescribeUpdateCommandOutput | DisassociateAccessPolicyCommandOutput | DisassociateIdentityProviderConfigCommandOutput | ListAccessEntriesCommandOutput | ListAccessPoliciesCommandOutput | ListAddonsCommandOutput | ListAssociatedAccessPoliciesCommandOutput | ListCapabilitiesCommandOutput | ListClustersCommandOutput | ListEksAnywhereSubscriptionsCommandOutput | ListFargateProfilesCommandOutput | ListIdentityProviderConfigsCommandOutput | ListInsightsCommandOutput | ListNodegroupsCommandOutput | ListPodIdentityAssociationsCommandOutput | ListTagsForResourceCommandOutput | ListUpdatesCommandOutput | RegisterClusterCommandOutput | StartInsightsRefreshCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccessEntryCommandOutput | UpdateAddonCommandOutput | UpdateCapabilityCommandOutput | UpdateClusterConfigCommandOutput | UpdateClusterVersionCommandOutput | UpdateEksAnywhereSubscriptionCommandOutput | UpdateNodegroupConfigCommandOutput | UpdateNodegroupVersionCommandOutput | UpdatePodIdentityAssociationCommandOutput;
80
85
  /**
81
86
  * @public
82
87
  */
@@ -0,0 +1,186 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
4
+ import { CreateCapabilityRequest, CreateCapabilityResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreateCapabilityCommand}.
14
+ */
15
+ export interface CreateCapabilityCommandInput extends CreateCapabilityRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreateCapabilityCommand}.
21
+ */
22
+ export interface CreateCapabilityCommandOutput extends CreateCapabilityResponse, __MetadataBearer {
23
+ }
24
+ declare const CreateCapabilityCommand_base: {
25
+ new (input: CreateCapabilityCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCapabilityCommandInput, CreateCapabilityCommandOutput, EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: CreateCapabilityCommandInput): import("@smithy/smithy-client").CommandImpl<CreateCapabilityCommandInput, CreateCapabilityCommandOutput, EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Creates a managed capability resource for an Amazon EKS cluster.</p>
31
+ * <p>Capabilities provide fully managed capabilities to build and scale with Kubernetes. When you create a capability, Amazon EKSprovisions and manages the infrastructure required to run the capability outside of your cluster. This approach reduces operational overhead and preserves cluster resources.</p>
32
+ * <p>You can only create one Capability of each type on a given Amazon EKS cluster. Valid types are Argo CD for declarative GitOps deployment, Amazon Web Services Controllers for Kubernetes (ACK) for resource management, and Kube Resource Orchestrator (KRO) for Kubernetes custom resource orchestration.</p>
33
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/capabilities.html">EKS Capabilities</a> in the <i>Amazon EKS User Guide</i>.</p>
34
+ * @example
35
+ * Use a bare-bones client and the command you need to make an API call.
36
+ * ```javascript
37
+ * import { EKSClient, CreateCapabilityCommand } from "@aws-sdk/client-eks"; // ES Modules import
38
+ * // const { EKSClient, CreateCapabilityCommand } = require("@aws-sdk/client-eks"); // CommonJS import
39
+ * // import type { EKSClientConfig } from "@aws-sdk/client-eks";
40
+ * const config = {}; // type is EKSClientConfig
41
+ * const client = new EKSClient(config);
42
+ * const input = { // CreateCapabilityRequest
43
+ * capabilityName: "STRING_VALUE", // required
44
+ * clusterName: "STRING_VALUE", // required
45
+ * clientRequestToken: "STRING_VALUE",
46
+ * type: "ACK" || "KRO" || "ARGOCD", // required
47
+ * roleArn: "STRING_VALUE", // required
48
+ * configuration: { // CapabilityConfigurationRequest
49
+ * argoCd: { // ArgoCdConfigRequest
50
+ * namespace: "STRING_VALUE",
51
+ * awsIdc: { // ArgoCdAwsIdcConfigRequest
52
+ * idcInstanceArn: "STRING_VALUE", // required
53
+ * idcRegion: "STRING_VALUE",
54
+ * },
55
+ * rbacRoleMappings: [ // ArgoCdRoleMappingList
56
+ * { // ArgoCdRoleMapping
57
+ * role: "ADMIN" || "EDITOR" || "VIEWER", // required
58
+ * identities: [ // SsoIdentityList // required
59
+ * { // SsoIdentity
60
+ * id: "STRING_VALUE", // required
61
+ * type: "SSO_USER" || "SSO_GROUP", // required
62
+ * },
63
+ * ],
64
+ * },
65
+ * ],
66
+ * networkAccess: { // ArgoCdNetworkAccessConfigRequest
67
+ * vpceIds: [ // StringList
68
+ * "STRING_VALUE",
69
+ * ],
70
+ * },
71
+ * },
72
+ * },
73
+ * tags: { // TagMap
74
+ * "<keys>": "STRING_VALUE",
75
+ * },
76
+ * deletePropagationPolicy: "RETAIN", // required
77
+ * };
78
+ * const command = new CreateCapabilityCommand(input);
79
+ * const response = await client.send(command);
80
+ * // { // CreateCapabilityResponse
81
+ * // capability: { // Capability
82
+ * // capabilityName: "STRING_VALUE",
83
+ * // arn: "STRING_VALUE",
84
+ * // clusterName: "STRING_VALUE",
85
+ * // type: "ACK" || "KRO" || "ARGOCD",
86
+ * // roleArn: "STRING_VALUE",
87
+ * // status: "CREATING" || "CREATE_FAILED" || "UPDATING" || "DELETING" || "DELETE_FAILED" || "ACTIVE" || "DEGRADED",
88
+ * // version: "STRING_VALUE",
89
+ * // configuration: { // CapabilityConfigurationResponse
90
+ * // argoCd: { // ArgoCdConfigResponse
91
+ * // namespace: "STRING_VALUE",
92
+ * // awsIdc: { // ArgoCdAwsIdcConfigResponse
93
+ * // idcInstanceArn: "STRING_VALUE",
94
+ * // idcRegion: "STRING_VALUE",
95
+ * // idcManagedApplicationArn: "STRING_VALUE",
96
+ * // },
97
+ * // rbacRoleMappings: [ // ArgoCdRoleMappingList
98
+ * // { // ArgoCdRoleMapping
99
+ * // role: "ADMIN" || "EDITOR" || "VIEWER", // required
100
+ * // identities: [ // SsoIdentityList // required
101
+ * // { // SsoIdentity
102
+ * // id: "STRING_VALUE", // required
103
+ * // type: "SSO_USER" || "SSO_GROUP", // required
104
+ * // },
105
+ * // ],
106
+ * // },
107
+ * // ],
108
+ * // networkAccess: { // ArgoCdNetworkAccessConfigResponse
109
+ * // vpceIds: [ // StringList
110
+ * // "STRING_VALUE",
111
+ * // ],
112
+ * // },
113
+ * // serverUrl: "STRING_VALUE",
114
+ * // },
115
+ * // },
116
+ * // tags: { // TagMap
117
+ * // "<keys>": "STRING_VALUE",
118
+ * // },
119
+ * // health: { // CapabilityHealth
120
+ * // issues: [ // CapabilityIssueList
121
+ * // { // CapabilityIssue
122
+ * // code: "AccessDenied" || "ClusterUnreachable",
123
+ * // message: "STRING_VALUE",
124
+ * // },
125
+ * // ],
126
+ * // },
127
+ * // createdAt: new Date("TIMESTAMP"),
128
+ * // modifiedAt: new Date("TIMESTAMP"),
129
+ * // deletePropagationPolicy: "RETAIN",
130
+ * // },
131
+ * // };
132
+ *
133
+ * ```
134
+ *
135
+ * @param CreateCapabilityCommandInput - {@link CreateCapabilityCommandInput}
136
+ * @returns {@link CreateCapabilityCommandOutput}
137
+ * @see {@link CreateCapabilityCommandInput} for command's `input` shape.
138
+ * @see {@link CreateCapabilityCommandOutput} for command's `response` shape.
139
+ * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
140
+ *
141
+ * @throws {@link AccessDeniedException} (client fault)
142
+ * <p>You don't have permissions to perform the requested operation. The <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html">IAM principal</a>
143
+ * making the request must have at least one IAM permissions policy attached that grants
144
+ * the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access
145
+ * management</a> in the <i>IAM User Guide</i>. </p>
146
+ *
147
+ * @throws {@link InvalidParameterException} (client fault)
148
+ * <p>The specified parameter is invalid. Review the available parameters for the API
149
+ * request.</p>
150
+ *
151
+ * @throws {@link InvalidRequestException} (client fault)
152
+ * <p>The request is invalid given the state of the cluster. Check the state of the cluster
153
+ * and the associated operations.</p>
154
+ *
155
+ * @throws {@link ResourceInUseException} (client fault)
156
+ * <p>The specified resource is in use.</p>
157
+ *
158
+ * @throws {@link ResourceLimitExceededException} (client fault)
159
+ * <p>You have encountered a service limit on the specified resource.</p>
160
+ *
161
+ * @throws {@link ServerException} (server fault)
162
+ * <p>These errors are usually caused by a server-side issue.</p>
163
+ *
164
+ * @throws {@link ThrottlingException} (client fault)
165
+ * <p>The request or operation couldn't be performed because a service is throttling
166
+ * requests.</p>
167
+ *
168
+ * @throws {@link EKSServiceException}
169
+ * <p>Base exception class for all service exceptions from EKS service.</p>
170
+ *
171
+ *
172
+ * @public
173
+ */
174
+ export declare class CreateCapabilityCommand extends CreateCapabilityCommand_base {
175
+ /** @internal type navigation helper, not in runtime. */
176
+ protected static __types: {
177
+ api: {
178
+ input: CreateCapabilityRequest;
179
+ output: CreateCapabilityResponse;
180
+ };
181
+ sdk: {
182
+ input: CreateCapabilityCommandInput;
183
+ output: CreateCapabilityCommandOutput;
184
+ };
185
+ };
186
+ }
@@ -0,0 +1,147 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
4
+ import { DeleteCapabilityRequest, DeleteCapabilityResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeleteCapabilityCommand}.
14
+ */
15
+ export interface DeleteCapabilityCommandInput extends DeleteCapabilityRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeleteCapabilityCommand}.
21
+ */
22
+ export interface DeleteCapabilityCommandOutput extends DeleteCapabilityResponse, __MetadataBearer {
23
+ }
24
+ declare const DeleteCapabilityCommand_base: {
25
+ new (input: DeleteCapabilityCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCapabilityCommandInput, DeleteCapabilityCommandOutput, EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DeleteCapabilityCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteCapabilityCommandInput, DeleteCapabilityCommandOutput, EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Deletes a managed capability from your Amazon EKS cluster. When you delete a capability, Amazon EKS removes the capability infrastructure but retains all resources that were managed by the capability.</p>
31
+ * <p>Before deleting a capability, you should delete all Kubernetes resources that were created by the capability. After the capability is deleted, these resources become difficult to manage because the controller that managed them is no longer available. To delete resources before removing the capability, use <code>kubectl delete</code> or remove them through your GitOps workflow.</p>
32
+ * @example
33
+ * Use a bare-bones client and the command you need to make an API call.
34
+ * ```javascript
35
+ * import { EKSClient, DeleteCapabilityCommand } from "@aws-sdk/client-eks"; // ES Modules import
36
+ * // const { EKSClient, DeleteCapabilityCommand } = require("@aws-sdk/client-eks"); // CommonJS import
37
+ * // import type { EKSClientConfig } from "@aws-sdk/client-eks";
38
+ * const config = {}; // type is EKSClientConfig
39
+ * const client = new EKSClient(config);
40
+ * const input = { // DeleteCapabilityRequest
41
+ * clusterName: "STRING_VALUE", // required
42
+ * capabilityName: "STRING_VALUE", // required
43
+ * };
44
+ * const command = new DeleteCapabilityCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // DeleteCapabilityResponse
47
+ * // capability: { // Capability
48
+ * // capabilityName: "STRING_VALUE",
49
+ * // arn: "STRING_VALUE",
50
+ * // clusterName: "STRING_VALUE",
51
+ * // type: "ACK" || "KRO" || "ARGOCD",
52
+ * // roleArn: "STRING_VALUE",
53
+ * // status: "CREATING" || "CREATE_FAILED" || "UPDATING" || "DELETING" || "DELETE_FAILED" || "ACTIVE" || "DEGRADED",
54
+ * // version: "STRING_VALUE",
55
+ * // configuration: { // CapabilityConfigurationResponse
56
+ * // argoCd: { // ArgoCdConfigResponse
57
+ * // namespace: "STRING_VALUE",
58
+ * // awsIdc: { // ArgoCdAwsIdcConfigResponse
59
+ * // idcInstanceArn: "STRING_VALUE",
60
+ * // idcRegion: "STRING_VALUE",
61
+ * // idcManagedApplicationArn: "STRING_VALUE",
62
+ * // },
63
+ * // rbacRoleMappings: [ // ArgoCdRoleMappingList
64
+ * // { // ArgoCdRoleMapping
65
+ * // role: "ADMIN" || "EDITOR" || "VIEWER", // required
66
+ * // identities: [ // SsoIdentityList // required
67
+ * // { // SsoIdentity
68
+ * // id: "STRING_VALUE", // required
69
+ * // type: "SSO_USER" || "SSO_GROUP", // required
70
+ * // },
71
+ * // ],
72
+ * // },
73
+ * // ],
74
+ * // networkAccess: { // ArgoCdNetworkAccessConfigResponse
75
+ * // vpceIds: [ // StringList
76
+ * // "STRING_VALUE",
77
+ * // ],
78
+ * // },
79
+ * // serverUrl: "STRING_VALUE",
80
+ * // },
81
+ * // },
82
+ * // tags: { // TagMap
83
+ * // "<keys>": "STRING_VALUE",
84
+ * // },
85
+ * // health: { // CapabilityHealth
86
+ * // issues: [ // CapabilityIssueList
87
+ * // { // CapabilityIssue
88
+ * // code: "AccessDenied" || "ClusterUnreachable",
89
+ * // message: "STRING_VALUE",
90
+ * // },
91
+ * // ],
92
+ * // },
93
+ * // createdAt: new Date("TIMESTAMP"),
94
+ * // modifiedAt: new Date("TIMESTAMP"),
95
+ * // deletePropagationPolicy: "RETAIN",
96
+ * // },
97
+ * // };
98
+ *
99
+ * ```
100
+ *
101
+ * @param DeleteCapabilityCommandInput - {@link DeleteCapabilityCommandInput}
102
+ * @returns {@link DeleteCapabilityCommandOutput}
103
+ * @see {@link DeleteCapabilityCommandInput} for command's `input` shape.
104
+ * @see {@link DeleteCapabilityCommandOutput} for command's `response` shape.
105
+ * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
106
+ *
107
+ * @throws {@link AccessDeniedException} (client fault)
108
+ * <p>You don't have permissions to perform the requested operation. The <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html">IAM principal</a>
109
+ * making the request must have at least one IAM permissions policy attached that grants
110
+ * the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access
111
+ * management</a> in the <i>IAM User Guide</i>. </p>
112
+ *
113
+ * @throws {@link InvalidParameterException} (client fault)
114
+ * <p>The specified parameter is invalid. Review the available parameters for the API
115
+ * request.</p>
116
+ *
117
+ * @throws {@link ResourceInUseException} (client fault)
118
+ * <p>The specified resource is in use.</p>
119
+ *
120
+ * @throws {@link ResourceNotFoundException} (client fault)
121
+ * <p>The specified resource could not be found. You can view your available clusters with
122
+ * <code>ListClusters</code>. You can view your available managed node groups with
123
+ * <code>ListNodegroups</code>. Amazon EKS clusters and node groups are Amazon Web Services Region
124
+ * specific.</p>
125
+ *
126
+ * @throws {@link ServerException} (server fault)
127
+ * <p>These errors are usually caused by a server-side issue.</p>
128
+ *
129
+ * @throws {@link EKSServiceException}
130
+ * <p>Base exception class for all service exceptions from EKS service.</p>
131
+ *
132
+ *
133
+ * @public
134
+ */
135
+ export declare class DeleteCapabilityCommand extends DeleteCapabilityCommand_base {
136
+ /** @internal type navigation helper, not in runtime. */
137
+ protected static __types: {
138
+ api: {
139
+ input: DeleteCapabilityRequest;
140
+ output: DeleteCapabilityResponse;
141
+ };
142
+ sdk: {
143
+ input: DeleteCapabilityCommandInput;
144
+ output: DeleteCapabilityCommandOutput;
145
+ };
146
+ };
147
+ }