@aws-sdk/client-eks 3.451.0 → 3.458.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 (53) hide show
  1. package/README.md +80 -40
  2. package/dist-cjs/EKS.js +10 -0
  3. package/dist-cjs/commands/CreatePodIdentityAssociationCommand.js +51 -0
  4. package/dist-cjs/commands/DeletePodIdentityAssociationCommand.js +51 -0
  5. package/dist-cjs/commands/DescribePodIdentityAssociationCommand.js +51 -0
  6. package/dist-cjs/commands/ListPodIdentityAssociationsCommand.js +51 -0
  7. package/dist-cjs/commands/UpdatePodIdentityAssociationCommand.js +51 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/pagination/ListEksAnywhereSubscriptionsPaginator.js +29 -0
  10. package/dist-cjs/pagination/ListPodIdentityAssociationsPaginator.js +29 -0
  11. package/dist-cjs/pagination/index.js +2 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +352 -2
  13. package/dist-es/EKS.js +10 -0
  14. package/dist-es/commands/CreatePodIdentityAssociationCommand.js +47 -0
  15. package/dist-es/commands/DeletePodIdentityAssociationCommand.js +47 -0
  16. package/dist-es/commands/DescribePodIdentityAssociationCommand.js +47 -0
  17. package/dist-es/commands/ListPodIdentityAssociationsCommand.js +47 -0
  18. package/dist-es/commands/UpdatePodIdentityAssociationCommand.js +47 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/pagination/ListEksAnywhereSubscriptionsPaginator.js +25 -0
  21. package/dist-es/pagination/ListPodIdentityAssociationsPaginator.js +25 -0
  22. package/dist-es/pagination/index.js +2 -0
  23. package/dist-es/protocols/Aws_restJson1.js +340 -0
  24. package/dist-types/EKS.d.ts +35 -0
  25. package/dist-types/EKSClient.d.ts +7 -2
  26. package/dist-types/commands/CreateClusterCommand.d.ts +19 -0
  27. package/dist-types/commands/CreatePodIdentityAssociationCommand.d.ts +125 -0
  28. package/dist-types/commands/DeleteEksAnywhereSubscriptionCommand.d.ts +2 -2
  29. package/dist-types/commands/DeletePodIdentityAssociationCommand.d.ts +104 -0
  30. package/dist-types/commands/DescribePodIdentityAssociationCommand.d.ts +107 -0
  31. package/dist-types/commands/ListPodIdentityAssociationsCommand.d.ts +104 -0
  32. package/dist-types/commands/UpdateClusterConfigCommand.d.ts +8 -4
  33. package/dist-types/commands/UpdatePodIdentityAssociationCommand.d.ts +108 -0
  34. package/dist-types/commands/index.d.ts +5 -0
  35. package/dist-types/models/models_0.d.ts +450 -22
  36. package/dist-types/pagination/ListEksAnywhereSubscriptionsPaginator.d.ts +7 -0
  37. package/dist-types/pagination/ListPodIdentityAssociationsPaginator.d.ts +7 -0
  38. package/dist-types/pagination/index.d.ts +2 -0
  39. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  40. package/dist-types/ts3.4/EKS.d.ts +85 -0
  41. package/dist-types/ts3.4/EKSClient.d.ts +32 -2
  42. package/dist-types/ts3.4/commands/CreatePodIdentityAssociationCommand.d.ts +42 -0
  43. package/dist-types/ts3.4/commands/DeletePodIdentityAssociationCommand.d.ts +42 -0
  44. package/dist-types/ts3.4/commands/DescribePodIdentityAssociationCommand.d.ts +42 -0
  45. package/dist-types/ts3.4/commands/ListPodIdentityAssociationsCommand.d.ts +42 -0
  46. package/dist-types/ts3.4/commands/UpdatePodIdentityAssociationCommand.d.ts +42 -0
  47. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  48. package/dist-types/ts3.4/models/models_0.d.ts +63 -0
  49. package/dist-types/ts3.4/pagination/ListEksAnywhereSubscriptionsPaginator.d.ts +11 -0
  50. package/dist-types/ts3.4/pagination/ListPodIdentityAssociationsPaginator.d.ts +11 -0
  51. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  52. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  53. package/package.json +3 -3
@@ -6,11 +6,13 @@ import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./command
6
6
  import { CreateEksAnywhereSubscriptionCommandInput, CreateEksAnywhereSubscriptionCommandOutput } from "./commands/CreateEksAnywhereSubscriptionCommand";
7
7
  import { CreateFargateProfileCommandInput, CreateFargateProfileCommandOutput } from "./commands/CreateFargateProfileCommand";
8
8
  import { CreateNodegroupCommandInput, CreateNodegroupCommandOutput } from "./commands/CreateNodegroupCommand";
9
+ import { CreatePodIdentityAssociationCommandInput, CreatePodIdentityAssociationCommandOutput } from "./commands/CreatePodIdentityAssociationCommand";
9
10
  import { DeleteAddonCommandInput, DeleteAddonCommandOutput } from "./commands/DeleteAddonCommand";
10
11
  import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "./commands/DeleteClusterCommand";
11
12
  import { DeleteEksAnywhereSubscriptionCommandInput, DeleteEksAnywhereSubscriptionCommandOutput } from "./commands/DeleteEksAnywhereSubscriptionCommand";
12
13
  import { DeleteFargateProfileCommandInput, DeleteFargateProfileCommandOutput } from "./commands/DeleteFargateProfileCommand";
13
14
  import { DeleteNodegroupCommandInput, DeleteNodegroupCommandOutput } from "./commands/DeleteNodegroupCommand";
15
+ import { DeletePodIdentityAssociationCommandInput, DeletePodIdentityAssociationCommandOutput } from "./commands/DeletePodIdentityAssociationCommand";
14
16
  import { DeregisterClusterCommandInput, DeregisterClusterCommandOutput } from "./commands/DeregisterClusterCommand";
15
17
  import { DescribeAddonCommandInput, DescribeAddonCommandOutput } from "./commands/DescribeAddonCommand";
16
18
  import { DescribeAddonConfigurationCommandInput, DescribeAddonConfigurationCommandOutput } from "./commands/DescribeAddonConfigurationCommand";
@@ -20,6 +22,7 @@ import { DescribeEksAnywhereSubscriptionCommandInput, DescribeEksAnywhereSubscri
20
22
  import { DescribeFargateProfileCommandInput, DescribeFargateProfileCommandOutput } from "./commands/DescribeFargateProfileCommand";
21
23
  import { DescribeIdentityProviderConfigCommandInput, DescribeIdentityProviderConfigCommandOutput } from "./commands/DescribeIdentityProviderConfigCommand";
22
24
  import { DescribeNodegroupCommandInput, DescribeNodegroupCommandOutput } from "./commands/DescribeNodegroupCommand";
25
+ import { DescribePodIdentityAssociationCommandInput, DescribePodIdentityAssociationCommandOutput } from "./commands/DescribePodIdentityAssociationCommand";
23
26
  import { DescribeUpdateCommandInput, DescribeUpdateCommandOutput } from "./commands/DescribeUpdateCommand";
24
27
  import { DisassociateIdentityProviderConfigCommandInput, DisassociateIdentityProviderConfigCommandOutput } from "./commands/DisassociateIdentityProviderConfigCommand";
25
28
  import { ListAddonsCommandInput, ListAddonsCommandOutput } from "./commands/ListAddonsCommand";
@@ -28,6 +31,7 @@ import { ListEksAnywhereSubscriptionsCommandInput, ListEksAnywhereSubscriptionsC
28
31
  import { ListFargateProfilesCommandInput, ListFargateProfilesCommandOutput } from "./commands/ListFargateProfilesCommand";
29
32
  import { ListIdentityProviderConfigsCommandInput, ListIdentityProviderConfigsCommandOutput } from "./commands/ListIdentityProviderConfigsCommand";
30
33
  import { ListNodegroupsCommandInput, ListNodegroupsCommandOutput } from "./commands/ListNodegroupsCommand";
34
+ import { ListPodIdentityAssociationsCommandInput, ListPodIdentityAssociationsCommandOutput } from "./commands/ListPodIdentityAssociationsCommand";
31
35
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
32
36
  import { ListUpdatesCommandInput, ListUpdatesCommandOutput } from "./commands/ListUpdatesCommand";
33
37
  import { RegisterClusterCommandInput, RegisterClusterCommandOutput } from "./commands/RegisterClusterCommand";
@@ -39,6 +43,7 @@ import { UpdateClusterVersionCommandInput, UpdateClusterVersionCommandOutput } f
39
43
  import { UpdateEksAnywhereSubscriptionCommandInput, UpdateEksAnywhereSubscriptionCommandOutput } from "./commands/UpdateEksAnywhereSubscriptionCommand";
40
44
  import { UpdateNodegroupConfigCommandInput, UpdateNodegroupConfigCommandOutput } from "./commands/UpdateNodegroupConfigCommand";
41
45
  import { UpdateNodegroupVersionCommandInput, UpdateNodegroupVersionCommandOutput } from "./commands/UpdateNodegroupVersionCommand";
46
+ import { UpdatePodIdentityAssociationCommandInput, UpdatePodIdentityAssociationCommandOutput } from "./commands/UpdatePodIdentityAssociationCommand";
42
47
  import { EKSClient } from "./EKSClient";
43
48
  export interface EKS {
44
49
  /**
@@ -83,6 +88,12 @@ export interface EKS {
83
88
  createNodegroup(args: CreateNodegroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateNodegroupCommandOutput>;
84
89
  createNodegroup(args: CreateNodegroupCommandInput, cb: (err: any, data?: CreateNodegroupCommandOutput) => void): void;
85
90
  createNodegroup(args: CreateNodegroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNodegroupCommandOutput) => void): void;
91
+ /**
92
+ * @see {@link CreatePodIdentityAssociationCommand}
93
+ */
94
+ createPodIdentityAssociation(args: CreatePodIdentityAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreatePodIdentityAssociationCommandOutput>;
95
+ createPodIdentityAssociation(args: CreatePodIdentityAssociationCommandInput, cb: (err: any, data?: CreatePodIdentityAssociationCommandOutput) => void): void;
96
+ createPodIdentityAssociation(args: CreatePodIdentityAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePodIdentityAssociationCommandOutput) => void): void;
86
97
  /**
87
98
  * @see {@link DeleteAddonCommand}
88
99
  */
@@ -113,6 +124,12 @@ export interface EKS {
113
124
  deleteNodegroup(args: DeleteNodegroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNodegroupCommandOutput>;
114
125
  deleteNodegroup(args: DeleteNodegroupCommandInput, cb: (err: any, data?: DeleteNodegroupCommandOutput) => void): void;
115
126
  deleteNodegroup(args: DeleteNodegroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNodegroupCommandOutput) => void): void;
127
+ /**
128
+ * @see {@link DeletePodIdentityAssociationCommand}
129
+ */
130
+ deletePodIdentityAssociation(args: DeletePodIdentityAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeletePodIdentityAssociationCommandOutput>;
131
+ deletePodIdentityAssociation(args: DeletePodIdentityAssociationCommandInput, cb: (err: any, data?: DeletePodIdentityAssociationCommandOutput) => void): void;
132
+ deletePodIdentityAssociation(args: DeletePodIdentityAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePodIdentityAssociationCommandOutput) => void): void;
116
133
  /**
117
134
  * @see {@link DeregisterClusterCommand}
118
135
  */
@@ -167,6 +184,12 @@ export interface EKS {
167
184
  describeNodegroup(args: DescribeNodegroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNodegroupCommandOutput>;
168
185
  describeNodegroup(args: DescribeNodegroupCommandInput, cb: (err: any, data?: DescribeNodegroupCommandOutput) => void): void;
169
186
  describeNodegroup(args: DescribeNodegroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNodegroupCommandOutput) => void): void;
187
+ /**
188
+ * @see {@link DescribePodIdentityAssociationCommand}
189
+ */
190
+ describePodIdentityAssociation(args: DescribePodIdentityAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DescribePodIdentityAssociationCommandOutput>;
191
+ describePodIdentityAssociation(args: DescribePodIdentityAssociationCommandInput, cb: (err: any, data?: DescribePodIdentityAssociationCommandOutput) => void): void;
192
+ describePodIdentityAssociation(args: DescribePodIdentityAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePodIdentityAssociationCommandOutput) => void): void;
170
193
  /**
171
194
  * @see {@link DescribeUpdateCommand}
172
195
  */
@@ -215,6 +238,12 @@ export interface EKS {
215
238
  listNodegroups(args: ListNodegroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListNodegroupsCommandOutput>;
216
239
  listNodegroups(args: ListNodegroupsCommandInput, cb: (err: any, data?: ListNodegroupsCommandOutput) => void): void;
217
240
  listNodegroups(args: ListNodegroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNodegroupsCommandOutput) => void): void;
241
+ /**
242
+ * @see {@link ListPodIdentityAssociationsCommand}
243
+ */
244
+ listPodIdentityAssociations(args: ListPodIdentityAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListPodIdentityAssociationsCommandOutput>;
245
+ listPodIdentityAssociations(args: ListPodIdentityAssociationsCommandInput, cb: (err: any, data?: ListPodIdentityAssociationsCommandOutput) => void): void;
246
+ listPodIdentityAssociations(args: ListPodIdentityAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPodIdentityAssociationsCommandOutput) => void): void;
218
247
  /**
219
248
  * @see {@link ListTagsForResourceCommand}
220
249
  */
@@ -281,6 +310,12 @@ export interface EKS {
281
310
  updateNodegroupVersion(args: UpdateNodegroupVersionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNodegroupVersionCommandOutput>;
282
311
  updateNodegroupVersion(args: UpdateNodegroupVersionCommandInput, cb: (err: any, data?: UpdateNodegroupVersionCommandOutput) => void): void;
283
312
  updateNodegroupVersion(args: UpdateNodegroupVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNodegroupVersionCommandOutput) => void): void;
313
+ /**
314
+ * @see {@link UpdatePodIdentityAssociationCommand}
315
+ */
316
+ updatePodIdentityAssociation(args: UpdatePodIdentityAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePodIdentityAssociationCommandOutput>;
317
+ updatePodIdentityAssociation(args: UpdatePodIdentityAssociationCommandInput, cb: (err: any, data?: UpdatePodIdentityAssociationCommandOutput) => void): void;
318
+ updatePodIdentityAssociation(args: UpdatePodIdentityAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePodIdentityAssociationCommandOutput) => void): void;
284
319
  }
285
320
  /**
286
321
  * @public
@@ -15,11 +15,13 @@ import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./command
15
15
  import { CreateEksAnywhereSubscriptionCommandInput, CreateEksAnywhereSubscriptionCommandOutput } from "./commands/CreateEksAnywhereSubscriptionCommand";
16
16
  import { CreateFargateProfileCommandInput, CreateFargateProfileCommandOutput } from "./commands/CreateFargateProfileCommand";
17
17
  import { CreateNodegroupCommandInput, CreateNodegroupCommandOutput } from "./commands/CreateNodegroupCommand";
18
+ import { CreatePodIdentityAssociationCommandInput, CreatePodIdentityAssociationCommandOutput } from "./commands/CreatePodIdentityAssociationCommand";
18
19
  import { DeleteAddonCommandInput, DeleteAddonCommandOutput } from "./commands/DeleteAddonCommand";
19
20
  import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "./commands/DeleteClusterCommand";
20
21
  import { DeleteEksAnywhereSubscriptionCommandInput, DeleteEksAnywhereSubscriptionCommandOutput } from "./commands/DeleteEksAnywhereSubscriptionCommand";
21
22
  import { DeleteFargateProfileCommandInput, DeleteFargateProfileCommandOutput } from "./commands/DeleteFargateProfileCommand";
22
23
  import { DeleteNodegroupCommandInput, DeleteNodegroupCommandOutput } from "./commands/DeleteNodegroupCommand";
24
+ import { DeletePodIdentityAssociationCommandInput, DeletePodIdentityAssociationCommandOutput } from "./commands/DeletePodIdentityAssociationCommand";
23
25
  import { DeregisterClusterCommandInput, DeregisterClusterCommandOutput } from "./commands/DeregisterClusterCommand";
24
26
  import { DescribeAddonCommandInput, DescribeAddonCommandOutput } from "./commands/DescribeAddonCommand";
25
27
  import { DescribeAddonConfigurationCommandInput, DescribeAddonConfigurationCommandOutput } from "./commands/DescribeAddonConfigurationCommand";
@@ -29,6 +31,7 @@ import { DescribeEksAnywhereSubscriptionCommandInput, DescribeEksAnywhereSubscri
29
31
  import { DescribeFargateProfileCommandInput, DescribeFargateProfileCommandOutput } from "./commands/DescribeFargateProfileCommand";
30
32
  import { DescribeIdentityProviderConfigCommandInput, DescribeIdentityProviderConfigCommandOutput } from "./commands/DescribeIdentityProviderConfigCommand";
31
33
  import { DescribeNodegroupCommandInput, DescribeNodegroupCommandOutput } from "./commands/DescribeNodegroupCommand";
34
+ import { DescribePodIdentityAssociationCommandInput, DescribePodIdentityAssociationCommandOutput } from "./commands/DescribePodIdentityAssociationCommand";
32
35
  import { DescribeUpdateCommandInput, DescribeUpdateCommandOutput } from "./commands/DescribeUpdateCommand";
33
36
  import { DisassociateIdentityProviderConfigCommandInput, DisassociateIdentityProviderConfigCommandOutput } from "./commands/DisassociateIdentityProviderConfigCommand";
34
37
  import { ListAddonsCommandInput, ListAddonsCommandOutput } from "./commands/ListAddonsCommand";
@@ -37,6 +40,7 @@ import { ListEksAnywhereSubscriptionsCommandInput, ListEksAnywhereSubscriptionsC
37
40
  import { ListFargateProfilesCommandInput, ListFargateProfilesCommandOutput } from "./commands/ListFargateProfilesCommand";
38
41
  import { ListIdentityProviderConfigsCommandInput, ListIdentityProviderConfigsCommandOutput } from "./commands/ListIdentityProviderConfigsCommand";
39
42
  import { ListNodegroupsCommandInput, ListNodegroupsCommandOutput } from "./commands/ListNodegroupsCommand";
43
+ import { ListPodIdentityAssociationsCommandInput, ListPodIdentityAssociationsCommandOutput } from "./commands/ListPodIdentityAssociationsCommand";
40
44
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
41
45
  import { ListUpdatesCommandInput, ListUpdatesCommandOutput } from "./commands/ListUpdatesCommand";
42
46
  import { RegisterClusterCommandInput, RegisterClusterCommandOutput } from "./commands/RegisterClusterCommand";
@@ -48,17 +52,18 @@ import { UpdateClusterVersionCommandInput, UpdateClusterVersionCommandOutput } f
48
52
  import { UpdateEksAnywhereSubscriptionCommandInput, UpdateEksAnywhereSubscriptionCommandOutput } from "./commands/UpdateEksAnywhereSubscriptionCommand";
49
53
  import { UpdateNodegroupConfigCommandInput, UpdateNodegroupConfigCommandOutput } from "./commands/UpdateNodegroupConfigCommand";
50
54
  import { UpdateNodegroupVersionCommandInput, UpdateNodegroupVersionCommandOutput } from "./commands/UpdateNodegroupVersionCommand";
55
+ import { UpdatePodIdentityAssociationCommandInput, UpdatePodIdentityAssociationCommandOutput } from "./commands/UpdatePodIdentityAssociationCommand";
51
56
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
52
57
  import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
53
58
  export { __Client };
54
59
  /**
55
60
  * @public
56
61
  */
57
- export type ServiceInputTypes = AssociateEncryptionConfigCommandInput | AssociateIdentityProviderConfigCommandInput | CreateAddonCommandInput | CreateClusterCommandInput | CreateEksAnywhereSubscriptionCommandInput | CreateFargateProfileCommandInput | CreateNodegroupCommandInput | DeleteAddonCommandInput | DeleteClusterCommandInput | DeleteEksAnywhereSubscriptionCommandInput | DeleteFargateProfileCommandInput | DeleteNodegroupCommandInput | DeregisterClusterCommandInput | DescribeAddonCommandInput | DescribeAddonConfigurationCommandInput | DescribeAddonVersionsCommandInput | DescribeClusterCommandInput | DescribeEksAnywhereSubscriptionCommandInput | DescribeFargateProfileCommandInput | DescribeIdentityProviderConfigCommandInput | DescribeNodegroupCommandInput | DescribeUpdateCommandInput | DisassociateIdentityProviderConfigCommandInput | ListAddonsCommandInput | ListClustersCommandInput | ListEksAnywhereSubscriptionsCommandInput | ListFargateProfilesCommandInput | ListIdentityProviderConfigsCommandInput | ListNodegroupsCommandInput | ListTagsForResourceCommandInput | ListUpdatesCommandInput | RegisterClusterCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAddonCommandInput | UpdateClusterConfigCommandInput | UpdateClusterVersionCommandInput | UpdateEksAnywhereSubscriptionCommandInput | UpdateNodegroupConfigCommandInput | UpdateNodegroupVersionCommandInput;
62
+ export type ServiceInputTypes = AssociateEncryptionConfigCommandInput | AssociateIdentityProviderConfigCommandInput | CreateAddonCommandInput | CreateClusterCommandInput | CreateEksAnywhereSubscriptionCommandInput | CreateFargateProfileCommandInput | CreateNodegroupCommandInput | CreatePodIdentityAssociationCommandInput | DeleteAddonCommandInput | DeleteClusterCommandInput | DeleteEksAnywhereSubscriptionCommandInput | DeleteFargateProfileCommandInput | DeleteNodegroupCommandInput | DeletePodIdentityAssociationCommandInput | DeregisterClusterCommandInput | DescribeAddonCommandInput | DescribeAddonConfigurationCommandInput | DescribeAddonVersionsCommandInput | DescribeClusterCommandInput | DescribeEksAnywhereSubscriptionCommandInput | DescribeFargateProfileCommandInput | DescribeIdentityProviderConfigCommandInput | DescribeNodegroupCommandInput | DescribePodIdentityAssociationCommandInput | DescribeUpdateCommandInput | DisassociateIdentityProviderConfigCommandInput | ListAddonsCommandInput | ListClustersCommandInput | ListEksAnywhereSubscriptionsCommandInput | ListFargateProfilesCommandInput | ListIdentityProviderConfigsCommandInput | ListNodegroupsCommandInput | ListPodIdentityAssociationsCommandInput | ListTagsForResourceCommandInput | ListUpdatesCommandInput | RegisterClusterCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAddonCommandInput | UpdateClusterConfigCommandInput | UpdateClusterVersionCommandInput | UpdateEksAnywhereSubscriptionCommandInput | UpdateNodegroupConfigCommandInput | UpdateNodegroupVersionCommandInput | UpdatePodIdentityAssociationCommandInput;
58
63
  /**
59
64
  * @public
60
65
  */
61
- export type ServiceOutputTypes = AssociateEncryptionConfigCommandOutput | AssociateIdentityProviderConfigCommandOutput | CreateAddonCommandOutput | CreateClusterCommandOutput | CreateEksAnywhereSubscriptionCommandOutput | CreateFargateProfileCommandOutput | CreateNodegroupCommandOutput | DeleteAddonCommandOutput | DeleteClusterCommandOutput | DeleteEksAnywhereSubscriptionCommandOutput | DeleteFargateProfileCommandOutput | DeleteNodegroupCommandOutput | DeregisterClusterCommandOutput | DescribeAddonCommandOutput | DescribeAddonConfigurationCommandOutput | DescribeAddonVersionsCommandOutput | DescribeClusterCommandOutput | DescribeEksAnywhereSubscriptionCommandOutput | DescribeFargateProfileCommandOutput | DescribeIdentityProviderConfigCommandOutput | DescribeNodegroupCommandOutput | DescribeUpdateCommandOutput | DisassociateIdentityProviderConfigCommandOutput | ListAddonsCommandOutput | ListClustersCommandOutput | ListEksAnywhereSubscriptionsCommandOutput | ListFargateProfilesCommandOutput | ListIdentityProviderConfigsCommandOutput | ListNodegroupsCommandOutput | ListTagsForResourceCommandOutput | ListUpdatesCommandOutput | RegisterClusterCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAddonCommandOutput | UpdateClusterConfigCommandOutput | UpdateClusterVersionCommandOutput | UpdateEksAnywhereSubscriptionCommandOutput | UpdateNodegroupConfigCommandOutput | UpdateNodegroupVersionCommandOutput;
66
+ export type ServiceOutputTypes = AssociateEncryptionConfigCommandOutput | AssociateIdentityProviderConfigCommandOutput | CreateAddonCommandOutput | CreateClusterCommandOutput | CreateEksAnywhereSubscriptionCommandOutput | CreateFargateProfileCommandOutput | CreateNodegroupCommandOutput | CreatePodIdentityAssociationCommandOutput | DeleteAddonCommandOutput | DeleteClusterCommandOutput | DeleteEksAnywhereSubscriptionCommandOutput | DeleteFargateProfileCommandOutput | DeleteNodegroupCommandOutput | DeletePodIdentityAssociationCommandOutput | DeregisterClusterCommandOutput | DescribeAddonCommandOutput | DescribeAddonConfigurationCommandOutput | DescribeAddonVersionsCommandOutput | DescribeClusterCommandOutput | DescribeEksAnywhereSubscriptionCommandOutput | DescribeFargateProfileCommandOutput | DescribeIdentityProviderConfigCommandOutput | DescribeNodegroupCommandOutput | DescribePodIdentityAssociationCommandOutput | DescribeUpdateCommandOutput | DisassociateIdentityProviderConfigCommandOutput | ListAddonsCommandOutput | ListClustersCommandOutput | ListEksAnywhereSubscriptionsCommandOutput | ListFargateProfilesCommandOutput | ListIdentityProviderConfigsCommandOutput | ListNodegroupsCommandOutput | ListPodIdentityAssociationsCommandOutput | ListTagsForResourceCommandOutput | ListUpdatesCommandOutput | RegisterClusterCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAddonCommandOutput | UpdateClusterConfigCommandOutput | UpdateClusterVersionCommandOutput | UpdateEksAnywhereSubscriptionCommandOutput | UpdateNodegroupConfigCommandOutput | UpdateNodegroupVersionCommandOutput | UpdatePodIdentityAssociationCommandOutput;
62
67
  /**
63
68
  * @public
64
69
  */
@@ -37,6 +37,25 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
37
37
  * <p>Amazon EKS nodes run in your Amazon Web Services account and connect to your
38
38
  * cluster's control plane over the Kubernetes API server endpoint and a certificate file that
39
39
  * is created for your cluster.</p>
40
+ * <p>You can use the <code>endpointPublicAccess</code> and
41
+ * <code>endpointPrivateAccess</code> parameters to enable or disable public and
42
+ * private access to your cluster's Kubernetes API server endpoint. By default, public access is
43
+ * enabled, and private access is disabled. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html">Amazon EKS Cluster Endpoint Access Control</a> in the
44
+ * <i>
45
+ * <i>Amazon EKS User Guide</i>
46
+ * </i>. </p>
47
+ * <p>You can use the <code>logging</code> parameter to enable or disable exporting the
48
+ * Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster
49
+ * control plane logs aren't exported to CloudWatch Logs. For more information, see
50
+ * <a href="https://docs.aws.amazon.com/eks/latest/userguide/control-plane-logs.html">Amazon EKS Cluster Control Plane Logs</a> in the
51
+ * <i>
52
+ * <i>Amazon EKS User Guide</i>
53
+ * </i>.</p>
54
+ * <note>
55
+ * <p>CloudWatch Logs ingestion, archive storage, and data scanning rates apply to
56
+ * exported control plane logs. For more information, see <a href="http://aws.amazon.com/cloudwatch/pricing/">CloudWatch
57
+ * Pricing</a>.</p>
58
+ * </note>
40
59
  * <p>In most cases, it takes several minutes to create a cluster. After you create an
41
60
  * Amazon EKS cluster, you must configure your Kubernetes tooling to communicate
42
61
  * with the API server and launch nodes into your cluster. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/managing-auth.html">Managing Cluster
@@ -0,0 +1,125 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
+ import { CreatePodIdentityAssociationRequest, CreatePodIdentityAssociationResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link CreatePodIdentityAssociationCommand}.
14
+ */
15
+ export interface CreatePodIdentityAssociationCommandInput extends CreatePodIdentityAssociationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link CreatePodIdentityAssociationCommand}.
21
+ */
22
+ export interface CreatePodIdentityAssociationCommandOutput extends CreatePodIdentityAssociationResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Creates an EKS Pod Identity association between a service account in an Amazon EKS cluster and an IAM role
27
+ * with <i>EKS Pod Identity</i>. Use EKS Pod Identity to give temporary IAM credentials to
28
+ * pods and the credentials are rotated automatically.</p>
29
+ * <p>Amazon EKS Pod Identity associations provide the ability to manage credentials for your applications, similar to the way that 7EC2l instance profiles provide credentials to Amazon EC2 instances.</p>
30
+ * <p>If a pod uses a service account that has an association, Amazon EKS sets environment variables
31
+ * in the containers of the pod. The environment variables configure the Amazon Web Services SDKs,
32
+ * including the Command Line Interface, to use the EKS Pod Identity credentials.</p>
33
+ * <p>Pod Identity is a simpler method than <i>IAM roles for service
34
+ * accounts</i>, as this method doesn't use OIDC identity providers.
35
+ * Additionally, you can configure a role for Pod Identity once, and reuse it across
36
+ * clusters.</p>
37
+ * @example
38
+ * Use a bare-bones client and the command you need to make an API call.
39
+ * ```javascript
40
+ * import { EKSClient, CreatePodIdentityAssociationCommand } from "@aws-sdk/client-eks"; // ES Modules import
41
+ * // const { EKSClient, CreatePodIdentityAssociationCommand } = require("@aws-sdk/client-eks"); // CommonJS import
42
+ * const client = new EKSClient(config);
43
+ * const input = { // CreatePodIdentityAssociationRequest
44
+ * clusterName: "STRING_VALUE", // required
45
+ * namespace: "STRING_VALUE", // required
46
+ * serviceAccount: "STRING_VALUE", // required
47
+ * roleArn: "STRING_VALUE", // required
48
+ * clientRequestToken: "STRING_VALUE",
49
+ * tags: { // TagMap
50
+ * "<keys>": "STRING_VALUE",
51
+ * },
52
+ * };
53
+ * const command = new CreatePodIdentityAssociationCommand(input);
54
+ * const response = await client.send(command);
55
+ * // { // CreatePodIdentityAssociationResponse
56
+ * // association: { // PodIdentityAssociation
57
+ * // clusterName: "STRING_VALUE",
58
+ * // namespace: "STRING_VALUE",
59
+ * // serviceAccount: "STRING_VALUE",
60
+ * // roleArn: "STRING_VALUE",
61
+ * // associationArn: "STRING_VALUE",
62
+ * // associationId: "STRING_VALUE",
63
+ * // tags: { // TagMap
64
+ * // "<keys>": "STRING_VALUE",
65
+ * // },
66
+ * // createdAt: new Date("TIMESTAMP"),
67
+ * // modifiedAt: new Date("TIMESTAMP"),
68
+ * // },
69
+ * // };
70
+ *
71
+ * ```
72
+ *
73
+ * @param CreatePodIdentityAssociationCommandInput - {@link CreatePodIdentityAssociationCommandInput}
74
+ * @returns {@link CreatePodIdentityAssociationCommandOutput}
75
+ * @see {@link CreatePodIdentityAssociationCommandInput} for command's `input` shape.
76
+ * @see {@link CreatePodIdentityAssociationCommandOutput} for command's `response` shape.
77
+ * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
78
+ *
79
+ * @throws {@link InvalidParameterException} (client fault)
80
+ * <p>The specified parameter is invalid. Review the available parameters for the API
81
+ * request.</p>
82
+ *
83
+ * @throws {@link InvalidRequestException} (client fault)
84
+ * <p>The request is invalid given the state of the cluster. Check the state of the cluster
85
+ * and the associated operations.</p>
86
+ *
87
+ * @throws {@link ResourceInUseException} (client fault)
88
+ * <p>The specified resource is in use.</p>
89
+ *
90
+ * @throws {@link ResourceLimitExceededException} (client fault)
91
+ * <p>You have encountered a service limit on the specified resource.</p>
92
+ *
93
+ * @throws {@link ResourceNotFoundException} (client fault)
94
+ * <p>The specified resource could not be found. You can view your available clusters with
95
+ * <a>ListClusters</a>. You can view your available managed node groups with
96
+ * <a>ListNodegroups</a>. Amazon EKS clusters and node groups are
97
+ * Region-specific.</p>
98
+ *
99
+ * @throws {@link ServerException} (server fault)
100
+ * <p>These errors are usually caused by a server-side issue.</p>
101
+ *
102
+ * @throws {@link EKSServiceException}
103
+ * <p>Base exception class for all service exceptions from EKS service.</p>
104
+ *
105
+ */
106
+ export declare class CreatePodIdentityAssociationCommand extends $Command<CreatePodIdentityAssociationCommandInput, CreatePodIdentityAssociationCommandOutput, EKSClientResolvedConfig> {
107
+ readonly input: CreatePodIdentityAssociationCommandInput;
108
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
109
+ /**
110
+ * @public
111
+ */
112
+ constructor(input: CreatePodIdentityAssociationCommandInput);
113
+ /**
114
+ * @internal
115
+ */
116
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePodIdentityAssociationCommandInput, CreatePodIdentityAssociationCommandOutput>;
117
+ /**
118
+ * @internal
119
+ */
120
+ private serialize;
121
+ /**
122
+ * @internal
123
+ */
124
+ private deserialize;
125
+ }
@@ -23,9 +23,9 @@ export interface DeleteEksAnywhereSubscriptionCommandOutput extends DeleteEksAny
23
23
  }
24
24
  /**
25
25
  * @public
26
- * <p>Deletes an expired / inactive subscription. Deleting inactive subscriptions removes
26
+ * <p>Deletes an expired or inactive subscription. Deleting inactive subscriptions removes
27
27
  * them from the Amazon Web Services Management Console view and from list/describe API responses.
28
- * Subscriptions can only be cancelled within 7 days of creation, and are cancelled by
28
+ * Subscriptions can only be cancelled within 7 days of creation and are cancelled by
29
29
  * creating a ticket in the Amazon Web Services Support Center. </p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -0,0 +1,104 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
+ import { DeletePodIdentityAssociationRequest, DeletePodIdentityAssociationResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DeletePodIdentityAssociationCommand}.
14
+ */
15
+ export interface DeletePodIdentityAssociationCommandInput extends DeletePodIdentityAssociationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DeletePodIdentityAssociationCommand}.
21
+ */
22
+ export interface DeletePodIdentityAssociationCommandOutput extends DeletePodIdentityAssociationResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Deletes a EKS Pod Identity association.</p>
27
+ * <p>The temporary Amazon Web Services credentials from the previous IAM role session might still be valid until the session expiry. If you need to immediately revoke the temporary session credentials, then go to the role in the IAM console.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { EKSClient, DeletePodIdentityAssociationCommand } from "@aws-sdk/client-eks"; // ES Modules import
32
+ * // const { EKSClient, DeletePodIdentityAssociationCommand } = require("@aws-sdk/client-eks"); // CommonJS import
33
+ * const client = new EKSClient(config);
34
+ * const input = { // DeletePodIdentityAssociationRequest
35
+ * clusterName: "STRING_VALUE", // required
36
+ * associationId: "STRING_VALUE", // required
37
+ * };
38
+ * const command = new DeletePodIdentityAssociationCommand(input);
39
+ * const response = await client.send(command);
40
+ * // { // DeletePodIdentityAssociationResponse
41
+ * // association: { // PodIdentityAssociation
42
+ * // clusterName: "STRING_VALUE",
43
+ * // namespace: "STRING_VALUE",
44
+ * // serviceAccount: "STRING_VALUE",
45
+ * // roleArn: "STRING_VALUE",
46
+ * // associationArn: "STRING_VALUE",
47
+ * // associationId: "STRING_VALUE",
48
+ * // tags: { // TagMap
49
+ * // "<keys>": "STRING_VALUE",
50
+ * // },
51
+ * // createdAt: new Date("TIMESTAMP"),
52
+ * // modifiedAt: new Date("TIMESTAMP"),
53
+ * // },
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param DeletePodIdentityAssociationCommandInput - {@link DeletePodIdentityAssociationCommandInput}
59
+ * @returns {@link DeletePodIdentityAssociationCommandOutput}
60
+ * @see {@link DeletePodIdentityAssociationCommandInput} for command's `input` shape.
61
+ * @see {@link DeletePodIdentityAssociationCommandOutput} for command's `response` shape.
62
+ * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
63
+ *
64
+ * @throws {@link InvalidParameterException} (client fault)
65
+ * <p>The specified parameter is invalid. Review the available parameters for the API
66
+ * request.</p>
67
+ *
68
+ * @throws {@link InvalidRequestException} (client fault)
69
+ * <p>The request is invalid given the state of the cluster. Check the state of the cluster
70
+ * and the associated operations.</p>
71
+ *
72
+ * @throws {@link ResourceNotFoundException} (client fault)
73
+ * <p>The specified resource could not be found. You can view your available clusters with
74
+ * <a>ListClusters</a>. You can view your available managed node groups with
75
+ * <a>ListNodegroups</a>. Amazon EKS clusters and node groups are
76
+ * Region-specific.</p>
77
+ *
78
+ * @throws {@link ServerException} (server fault)
79
+ * <p>These errors are usually caused by a server-side issue.</p>
80
+ *
81
+ * @throws {@link EKSServiceException}
82
+ * <p>Base exception class for all service exceptions from EKS service.</p>
83
+ *
84
+ */
85
+ export declare class DeletePodIdentityAssociationCommand extends $Command<DeletePodIdentityAssociationCommandInput, DeletePodIdentityAssociationCommandOutput, EKSClientResolvedConfig> {
86
+ readonly input: DeletePodIdentityAssociationCommandInput;
87
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
88
+ /**
89
+ * @public
90
+ */
91
+ constructor(input: DeletePodIdentityAssociationCommandInput);
92
+ /**
93
+ * @internal
94
+ */
95
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePodIdentityAssociationCommandInput, DeletePodIdentityAssociationCommandOutput>;
96
+ /**
97
+ * @internal
98
+ */
99
+ private serialize;
100
+ /**
101
+ * @internal
102
+ */
103
+ private deserialize;
104
+ }
@@ -0,0 +1,107 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
+ import { DescribePodIdentityAssociationRequest, DescribePodIdentityAssociationResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DescribePodIdentityAssociationCommand}.
14
+ */
15
+ export interface DescribePodIdentityAssociationCommandInput extends DescribePodIdentityAssociationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DescribePodIdentityAssociationCommand}.
21
+ */
22
+ export interface DescribePodIdentityAssociationCommandOutput extends DescribePodIdentityAssociationResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Returns descriptive information about an EKS Pod Identity association.</p>
27
+ * <p>This action requires the ID of the association. You can get the ID from the response to
28
+ * the <code>CreatePodIdentityAssocation</code> for newly created associations. Or, you can
29
+ * list the IDs for associations with <code>ListPodIdentityAssociations</code> and filter the
30
+ * list by namespace or service account.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { EKSClient, DescribePodIdentityAssociationCommand } from "@aws-sdk/client-eks"; // ES Modules import
35
+ * // const { EKSClient, DescribePodIdentityAssociationCommand } = require("@aws-sdk/client-eks"); // CommonJS import
36
+ * const client = new EKSClient(config);
37
+ * const input = { // DescribePodIdentityAssociationRequest
38
+ * clusterName: "STRING_VALUE", // required
39
+ * associationId: "STRING_VALUE", // required
40
+ * };
41
+ * const command = new DescribePodIdentityAssociationCommand(input);
42
+ * const response = await client.send(command);
43
+ * // { // DescribePodIdentityAssociationResponse
44
+ * // association: { // PodIdentityAssociation
45
+ * // clusterName: "STRING_VALUE",
46
+ * // namespace: "STRING_VALUE",
47
+ * // serviceAccount: "STRING_VALUE",
48
+ * // roleArn: "STRING_VALUE",
49
+ * // associationArn: "STRING_VALUE",
50
+ * // associationId: "STRING_VALUE",
51
+ * // tags: { // TagMap
52
+ * // "<keys>": "STRING_VALUE",
53
+ * // },
54
+ * // createdAt: new Date("TIMESTAMP"),
55
+ * // modifiedAt: new Date("TIMESTAMP"),
56
+ * // },
57
+ * // };
58
+ *
59
+ * ```
60
+ *
61
+ * @param DescribePodIdentityAssociationCommandInput - {@link DescribePodIdentityAssociationCommandInput}
62
+ * @returns {@link DescribePodIdentityAssociationCommandOutput}
63
+ * @see {@link DescribePodIdentityAssociationCommandInput} for command's `input` shape.
64
+ * @see {@link DescribePodIdentityAssociationCommandOutput} for command's `response` shape.
65
+ * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
66
+ *
67
+ * @throws {@link InvalidParameterException} (client fault)
68
+ * <p>The specified parameter is invalid. Review the available parameters for the API
69
+ * request.</p>
70
+ *
71
+ * @throws {@link InvalidRequestException} (client fault)
72
+ * <p>The request is invalid given the state of the cluster. Check the state of the cluster
73
+ * and the associated operations.</p>
74
+ *
75
+ * @throws {@link ResourceNotFoundException} (client fault)
76
+ * <p>The specified resource could not be found. You can view your available clusters with
77
+ * <a>ListClusters</a>. You can view your available managed node groups with
78
+ * <a>ListNodegroups</a>. Amazon EKS clusters and node groups are
79
+ * Region-specific.</p>
80
+ *
81
+ * @throws {@link ServerException} (server fault)
82
+ * <p>These errors are usually caused by a server-side issue.</p>
83
+ *
84
+ * @throws {@link EKSServiceException}
85
+ * <p>Base exception class for all service exceptions from EKS service.</p>
86
+ *
87
+ */
88
+ export declare class DescribePodIdentityAssociationCommand extends $Command<DescribePodIdentityAssociationCommandInput, DescribePodIdentityAssociationCommandOutput, EKSClientResolvedConfig> {
89
+ readonly input: DescribePodIdentityAssociationCommandInput;
90
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
91
+ /**
92
+ * @public
93
+ */
94
+ constructor(input: DescribePodIdentityAssociationCommandInput);
95
+ /**
96
+ * @internal
97
+ */
98
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribePodIdentityAssociationCommandInput, DescribePodIdentityAssociationCommandOutput>;
99
+ /**
100
+ * @internal
101
+ */
102
+ private serialize;
103
+ /**
104
+ * @internal
105
+ */
106
+ private deserialize;
107
+ }