@@ -33,6 +33,11 @@ import {
33
33
CreateNodegroupCommandInput ,
34
34
CreateNodegroupCommandOutput ,
35
35
} from "./commands/CreateNodegroupCommand" ;
36
+ import {
37
+ CreatePodIdentityAssociationCommand ,
38
+ CreatePodIdentityAssociationCommandInput ,
39
+ CreatePodIdentityAssociationCommandOutput ,
40
+ } from "./commands/CreatePodIdentityAssociationCommand" ;
36
41
import { DeleteAddonCommand , DeleteAddonCommandInput , DeleteAddonCommandOutput } from "./commands/DeleteAddonCommand" ;
37
42
import {
38
43
DeleteClusterCommand ,
@@ -54,6 +59,11 @@ import {
54
59
DeleteNodegroupCommandInput ,
55
60
DeleteNodegroupCommandOutput ,
56
61
} from "./commands/DeleteNodegroupCommand" ;
62
+ import {
63
+ DeletePodIdentityAssociationCommand ,
64
+ DeletePodIdentityAssociationCommandInput ,
65
+ DeletePodIdentityAssociationCommandOutput ,
66
+ } from "./commands/DeletePodIdentityAssociationCommand" ;
57
67
import {
58
68
DeregisterClusterCommand ,
59
69
DeregisterClusterCommandInput ,
@@ -99,6 +109,11 @@ import {
99
109
DescribeNodegroupCommandInput ,
100
110
DescribeNodegroupCommandOutput ,
101
111
} from "./commands/DescribeNodegroupCommand" ;
112
+ import {
113
+ DescribePodIdentityAssociationCommand ,
114
+ DescribePodIdentityAssociationCommandInput ,
115
+ DescribePodIdentityAssociationCommandOutput ,
116
+ } from "./commands/DescribePodIdentityAssociationCommand" ;
102
117
import {
103
118
DescribeUpdateCommand ,
104
119
DescribeUpdateCommandInput ,
@@ -135,6 +150,11 @@ import {
135
150
ListNodegroupsCommandInput ,
136
151
ListNodegroupsCommandOutput ,
137
152
} from "./commands/ListNodegroupsCommand" ;
153
+ import {
154
+ ListPodIdentityAssociationsCommand ,
155
+ ListPodIdentityAssociationsCommandInput ,
156
+ ListPodIdentityAssociationsCommandOutput ,
157
+ } from "./commands/ListPodIdentityAssociationsCommand" ;
138
158
import {
139
159
ListTagsForResourceCommand ,
140
160
ListTagsForResourceCommandInput ,
@@ -178,6 +198,11 @@ import {
178
198
UpdateNodegroupVersionCommandInput ,
179
199
UpdateNodegroupVersionCommandOutput ,
180
200
} from "./commands/UpdateNodegroupVersionCommand" ;
201
+ import {
202
+ UpdatePodIdentityAssociationCommand ,
203
+ UpdatePodIdentityAssociationCommandInput ,
204
+ UpdatePodIdentityAssociationCommandOutput ,
205
+ } from "./commands/UpdatePodIdentityAssociationCommand" ;
181
206
import { EKSClient , EKSClientConfig } from "./EKSClient" ;
182
207
183
208
const commands = {
@@ -188,11 +213,13 @@ const commands = {
188
213
CreateEksAnywhereSubscriptionCommand,
189
214
CreateFargateProfileCommand,
190
215
CreateNodegroupCommand,
216
+ CreatePodIdentityAssociationCommand,
191
217
DeleteAddonCommand,
192
218
DeleteClusterCommand,
193
219
DeleteEksAnywhereSubscriptionCommand,
194
220
DeleteFargateProfileCommand,
195
221
DeleteNodegroupCommand,
222
+ DeletePodIdentityAssociationCommand,
196
223
DeregisterClusterCommand,
197
224
DescribeAddonCommand,
198
225
DescribeAddonConfigurationCommand,
@@ -202,6 +229,7 @@ const commands = {
202
229
DescribeFargateProfileCommand,
203
230
DescribeIdentityProviderConfigCommand,
204
231
DescribeNodegroupCommand,
232
+ DescribePodIdentityAssociationCommand,
205
233
DescribeUpdateCommand,
206
234
DisassociateIdentityProviderConfigCommand,
207
235
ListAddonsCommand,
@@ -210,6 +238,7 @@ const commands = {
210
238
ListFargateProfilesCommand,
211
239
ListIdentityProviderConfigsCommand,
212
240
ListNodegroupsCommand,
241
+ ListPodIdentityAssociationsCommand,
213
242
ListTagsForResourceCommand,
214
243
ListUpdatesCommand,
215
244
RegisterClusterCommand,
@@ -221,6 +250,7 @@ const commands = {
221
250
UpdateEksAnywhereSubscriptionCommand,
222
251
UpdateNodegroupConfigCommand,
223
252
UpdateNodegroupVersionCommand,
253
+ UpdatePodIdentityAssociationCommand,
224
254
} ;
225
255
226
256
export interface EKS {
@@ -328,6 +358,23 @@ export interface EKS {
328
358
cb : ( err : any , data ?: CreateNodegroupCommandOutput ) => void
329
359
) : void ;
330
360
361
+ /**
362
+ * @see {@link CreatePodIdentityAssociationCommand }
363
+ */
364
+ createPodIdentityAssociation (
365
+ args : CreatePodIdentityAssociationCommandInput ,
366
+ options ?: __HttpHandlerOptions
367
+ ) : Promise < CreatePodIdentityAssociationCommandOutput > ;
368
+ createPodIdentityAssociation (
369
+ args : CreatePodIdentityAssociationCommandInput ,
370
+ cb : ( err : any , data ?: CreatePodIdentityAssociationCommandOutput ) => void
371
+ ) : void ;
372
+ createPodIdentityAssociation (
373
+ args : CreatePodIdentityAssociationCommandInput ,
374
+ options : __HttpHandlerOptions ,
375
+ cb : ( err : any , data ?: CreatePodIdentityAssociationCommandOutput ) => void
376
+ ) : void ;
377
+
331
378
/**
332
379
* @see {@link DeleteAddonCommand }
333
380
*/
@@ -398,6 +445,23 @@ export interface EKS {
398
445
cb : ( err : any , data ?: DeleteNodegroupCommandOutput ) => void
399
446
) : void ;
400
447
448
+ /**
449
+ * @see {@link DeletePodIdentityAssociationCommand }
450
+ */
451
+ deletePodIdentityAssociation (
452
+ args : DeletePodIdentityAssociationCommandInput ,
453
+ options ?: __HttpHandlerOptions
454
+ ) : Promise < DeletePodIdentityAssociationCommandOutput > ;
455
+ deletePodIdentityAssociation (
456
+ args : DeletePodIdentityAssociationCommandInput ,
457
+ cb : ( err : any , data ?: DeletePodIdentityAssociationCommandOutput ) => void
458
+ ) : void ;
459
+ deletePodIdentityAssociation (
460
+ args : DeletePodIdentityAssociationCommandInput ,
461
+ options : __HttpHandlerOptions ,
462
+ cb : ( err : any , data ?: DeletePodIdentityAssociationCommandOutput ) => void
463
+ ) : void ;
464
+
401
465
/**
402
466
* @see {@link DeregisterClusterCommand }
403
467
*/
@@ -542,6 +606,23 @@ export interface EKS {
542
606
cb : ( err : any , data ?: DescribeNodegroupCommandOutput ) => void
543
607
) : void ;
544
608
609
+ /**
610
+ * @see {@link DescribePodIdentityAssociationCommand }
611
+ */
612
+ describePodIdentityAssociation (
613
+ args : DescribePodIdentityAssociationCommandInput ,
614
+ options ?: __HttpHandlerOptions
615
+ ) : Promise < DescribePodIdentityAssociationCommandOutput > ;
616
+ describePodIdentityAssociation (
617
+ args : DescribePodIdentityAssociationCommandInput ,
618
+ cb : ( err : any , data ?: DescribePodIdentityAssociationCommandOutput ) => void
619
+ ) : void ;
620
+ describePodIdentityAssociation (
621
+ args : DescribePodIdentityAssociationCommandInput ,
622
+ options : __HttpHandlerOptions ,
623
+ cb : ( err : any , data ?: DescribePodIdentityAssociationCommandOutput ) => void
624
+ ) : void ;
625
+
545
626
/**
546
627
* @see {@link DescribeUpdateCommand }
547
628
*/
@@ -660,6 +741,23 @@ export interface EKS {
660
741
cb : ( err : any , data ?: ListNodegroupsCommandOutput ) => void
661
742
) : void ;
662
743
744
+ /**
745
+ * @see {@link ListPodIdentityAssociationsCommand }
746
+ */
747
+ listPodIdentityAssociations (
748
+ args : ListPodIdentityAssociationsCommandInput ,
749
+ options ?: __HttpHandlerOptions
750
+ ) : Promise < ListPodIdentityAssociationsCommandOutput > ;
751
+ listPodIdentityAssociations (
752
+ args : ListPodIdentityAssociationsCommandInput ,
753
+ cb : ( err : any , data ?: ListPodIdentityAssociationsCommandOutput ) => void
754
+ ) : void ;
755
+ listPodIdentityAssociations (
756
+ args : ListPodIdentityAssociationsCommandInput ,
757
+ options : __HttpHandlerOptions ,
758
+ cb : ( err : any , data ?: ListPodIdentityAssociationsCommandOutput ) => void
759
+ ) : void ;
760
+
663
761
/**
664
762
* @see {@link ListTagsForResourceCommand }
665
763
*/
@@ -819,6 +917,23 @@ export interface EKS {
819
917
options : __HttpHandlerOptions ,
820
918
cb : ( err : any , data ?: UpdateNodegroupVersionCommandOutput ) => void
821
919
) : void ;
920
+
921
+ /**
922
+ * @see {@link UpdatePodIdentityAssociationCommand }
923
+ */
924
+ updatePodIdentityAssociation (
925
+ args : UpdatePodIdentityAssociationCommandInput ,
926
+ options ?: __HttpHandlerOptions
927
+ ) : Promise < UpdatePodIdentityAssociationCommandOutput > ;
928
+ updatePodIdentityAssociation (
929
+ args : UpdatePodIdentityAssociationCommandInput ,
930
+ cb : ( err : any , data ?: UpdatePodIdentityAssociationCommandOutput ) => void
931
+ ) : void ;
932
+ updatePodIdentityAssociation (
933
+ args : UpdatePodIdentityAssociationCommandInput ,
934
+ options : __HttpHandlerOptions ,
935
+ cb : ( err : any , data ?: UpdatePodIdentityAssociationCommandOutput ) => void
936
+ ) : void ;
822
937
}
823
938
824
939
/**
0 commit comments