@@ -23,6 +23,11 @@ import {
2323 CreateAccessEntryCommandOutput ,
2424} from "./commands/CreateAccessEntryCommand" ;
2525import { CreateAddonCommand , CreateAddonCommandInput , CreateAddonCommandOutput } from "./commands/CreateAddonCommand" ;
26+ import {
27+ CreateCapabilityCommand ,
28+ CreateCapabilityCommandInput ,
29+ CreateCapabilityCommandOutput ,
30+ } from "./commands/CreateCapabilityCommand" ;
2631import {
2732 CreateClusterCommand ,
2833 CreateClusterCommandInput ,
@@ -54,6 +59,11 @@ import {
5459 DeleteAccessEntryCommandOutput ,
5560} from "./commands/DeleteAccessEntryCommand" ;
5661import { DeleteAddonCommand , DeleteAddonCommandInput , DeleteAddonCommandOutput } from "./commands/DeleteAddonCommand" ;
62+ import {
63+ DeleteCapabilityCommand ,
64+ DeleteCapabilityCommandInput ,
65+ DeleteCapabilityCommandOutput ,
66+ } from "./commands/DeleteCapabilityCommand" ;
5767import {
5868 DeleteClusterCommand ,
5969 DeleteClusterCommandInput ,
@@ -104,6 +114,11 @@ import {
104114 DescribeAddonVersionsCommandInput ,
105115 DescribeAddonVersionsCommandOutput ,
106116} from "./commands/DescribeAddonVersionsCommand" ;
117+ import {
118+ DescribeCapabilityCommand ,
119+ DescribeCapabilityCommandInput ,
120+ DescribeCapabilityCommandOutput ,
121+ } from "./commands/DescribeCapabilityCommand" ;
107122import {
108123 DescribeClusterCommand ,
109124 DescribeClusterCommandInput ,
@@ -180,6 +195,11 @@ import {
180195 ListAssociatedAccessPoliciesCommandInput ,
181196 ListAssociatedAccessPoliciesCommandOutput ,
182197} from "./commands/ListAssociatedAccessPoliciesCommand" ;
198+ import {
199+ ListCapabilitiesCommand ,
200+ ListCapabilitiesCommandInput ,
201+ ListCapabilitiesCommandOutput ,
202+ } from "./commands/ListCapabilitiesCommand" ;
183203import {
184204 ListClustersCommand ,
185205 ListClustersCommandInput ,
@@ -243,6 +263,11 @@ import {
243263 UpdateAccessEntryCommandOutput ,
244264} from "./commands/UpdateAccessEntryCommand" ;
245265import { UpdateAddonCommand , UpdateAddonCommandInput , UpdateAddonCommandOutput } from "./commands/UpdateAddonCommand" ;
266+ import {
267+ UpdateCapabilityCommand ,
268+ UpdateCapabilityCommandInput ,
269+ UpdateCapabilityCommandOutput ,
270+ } from "./commands/UpdateCapabilityCommand" ;
246271import {
247272 UpdateClusterConfigCommand ,
248273 UpdateClusterConfigCommandInput ,
@@ -281,13 +306,15 @@ const commands = {
281306 AssociateIdentityProviderConfigCommand,
282307 CreateAccessEntryCommand,
283308 CreateAddonCommand,
309+ CreateCapabilityCommand,
284310 CreateClusterCommand,
285311 CreateEksAnywhereSubscriptionCommand,
286312 CreateFargateProfileCommand,
287313 CreateNodegroupCommand,
288314 CreatePodIdentityAssociationCommand,
289315 DeleteAccessEntryCommand,
290316 DeleteAddonCommand,
317+ DeleteCapabilityCommand,
291318 DeleteClusterCommand,
292319 DeleteEksAnywhereSubscriptionCommand,
293320 DeleteFargateProfileCommand,
@@ -298,6 +325,7 @@ const commands = {
298325 DescribeAddonCommand,
299326 DescribeAddonConfigurationCommand,
300327 DescribeAddonVersionsCommand,
328+ DescribeCapabilityCommand,
301329 DescribeClusterCommand,
302330 DescribeClusterVersionsCommand,
303331 DescribeEksAnywhereSubscriptionCommand,
@@ -314,6 +342,7 @@ const commands = {
314342 ListAccessPoliciesCommand,
315343 ListAddonsCommand,
316344 ListAssociatedAccessPoliciesCommand,
345+ ListCapabilitiesCommand,
317346 ListClustersCommand,
318347 ListEksAnywhereSubscriptionsCommand,
319348 ListFargateProfilesCommand,
@@ -329,6 +358,7 @@ const commands = {
329358 UntagResourceCommand,
330359 UpdateAccessEntryCommand,
331360 UpdateAddonCommand,
361+ UpdateCapabilityCommand,
332362 UpdateClusterConfigCommand,
333363 UpdateClusterVersionCommand,
334364 UpdateEksAnywhereSubscriptionCommand,
@@ -417,6 +447,23 @@ export interface EKS {
417447 cb : ( err : any , data ?: CreateAddonCommandOutput ) => void
418448 ) : void ;
419449
450+ /**
451+ * @see {@link CreateCapabilityCommand }
452+ */
453+ createCapability (
454+ args : CreateCapabilityCommandInput ,
455+ options ?: __HttpHandlerOptions
456+ ) : Promise < CreateCapabilityCommandOutput > ;
457+ createCapability (
458+ args : CreateCapabilityCommandInput ,
459+ cb : ( err : any , data ?: CreateCapabilityCommandOutput ) => void
460+ ) : void ;
461+ createCapability (
462+ args : CreateCapabilityCommandInput ,
463+ options : __HttpHandlerOptions ,
464+ cb : ( err : any , data ?: CreateCapabilityCommandOutput ) => void
465+ ) : void ;
466+
420467 /**
421468 * @see {@link CreateClusterCommand }
422469 */
@@ -521,6 +568,23 @@ export interface EKS {
521568 cb : ( err : any , data ?: DeleteAddonCommandOutput ) => void
522569 ) : void ;
523570
571+ /**
572+ * @see {@link DeleteCapabilityCommand }
573+ */
574+ deleteCapability (
575+ args : DeleteCapabilityCommandInput ,
576+ options ?: __HttpHandlerOptions
577+ ) : Promise < DeleteCapabilityCommandOutput > ;
578+ deleteCapability (
579+ args : DeleteCapabilityCommandInput ,
580+ cb : ( err : any , data ?: DeleteCapabilityCommandOutput ) => void
581+ ) : void ;
582+ deleteCapability (
583+ args : DeleteCapabilityCommandInput ,
584+ options : __HttpHandlerOptions ,
585+ cb : ( err : any , data ?: DeleteCapabilityCommandOutput ) => void
586+ ) : void ;
587+
524588 /**
525589 * @see {@link DeleteClusterCommand }
526590 */
@@ -677,6 +741,23 @@ export interface EKS {
677741 cb : ( err : any , data ?: DescribeAddonVersionsCommandOutput ) => void
678742 ) : void ;
679743
744+ /**
745+ * @see {@link DescribeCapabilityCommand }
746+ */
747+ describeCapability (
748+ args : DescribeCapabilityCommandInput ,
749+ options ?: __HttpHandlerOptions
750+ ) : Promise < DescribeCapabilityCommandOutput > ;
751+ describeCapability (
752+ args : DescribeCapabilityCommandInput ,
753+ cb : ( err : any , data ?: DescribeCapabilityCommandOutput ) => void
754+ ) : void ;
755+ describeCapability (
756+ args : DescribeCapabilityCommandInput ,
757+ options : __HttpHandlerOptions ,
758+ cb : ( err : any , data ?: DescribeCapabilityCommandOutput ) => void
759+ ) : void ;
760+
680761 /**
681762 * @see {@link DescribeClusterCommand }
682763 */
@@ -936,6 +1017,23 @@ export interface EKS {
9361017 cb : ( err : any , data ?: ListAssociatedAccessPoliciesCommandOutput ) => void
9371018 ) : void ;
9381019
1020+ /**
1021+ * @see {@link ListCapabilitiesCommand }
1022+ */
1023+ listCapabilities (
1024+ args : ListCapabilitiesCommandInput ,
1025+ options ?: __HttpHandlerOptions
1026+ ) : Promise < ListCapabilitiesCommandOutput > ;
1027+ listCapabilities (
1028+ args : ListCapabilitiesCommandInput ,
1029+ cb : ( err : any , data ?: ListCapabilitiesCommandOutput ) => void
1030+ ) : void ;
1031+ listCapabilities (
1032+ args : ListCapabilitiesCommandInput ,
1033+ options : __HttpHandlerOptions ,
1034+ cb : ( err : any , data ?: ListCapabilitiesCommandOutput ) => void
1035+ ) : void ;
1036+
9391037 /**
9401038 * @see {@link ListClustersCommand }
9411039 */
@@ -1151,6 +1249,23 @@ export interface EKS {
11511249 cb : ( err : any , data ?: UpdateAddonCommandOutput ) => void
11521250 ) : void ;
11531251
1252+ /**
1253+ * @see {@link UpdateCapabilityCommand }
1254+ */
1255+ updateCapability (
1256+ args : UpdateCapabilityCommandInput ,
1257+ options ?: __HttpHandlerOptions
1258+ ) : Promise < UpdateCapabilityCommandOutput > ;
1259+ updateCapability (
1260+ args : UpdateCapabilityCommandInput ,
1261+ cb : ( err : any , data ?: UpdateCapabilityCommandOutput ) => void
1262+ ) : void ;
1263+ updateCapability (
1264+ args : UpdateCapabilityCommandInput ,
1265+ options : __HttpHandlerOptions ,
1266+ cb : ( err : any , data ?: UpdateCapabilityCommandOutput ) => void
1267+ ) : void ;
1268+
11541269 /**
11551270 * @see {@link UpdateClusterConfigCommand }
11561271 */
0 commit comments