@aws-sdk/client-eks 3.295.0 → 3.297.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 (48) hide show
  1. package/dist-types/EKS.d.ts +36 -0
  2. package/dist-types/EKSClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +16 -0
  4. package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateAddonCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateFargateProfileCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateNodegroupCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteAddonCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteClusterCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteFargateProfileCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteNodegroupCommand.d.ts +16 -0
  13. package/dist-types/commands/DeregisterClusterCommand.d.ts +16 -0
  14. package/dist-types/commands/DescribeAddonCommand.d.ts +16 -0
  15. package/dist-types/commands/DescribeAddonConfigurationCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeAddonVersionsCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeClusterCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeFargateProfileCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeIdentityProviderConfigCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeNodegroupCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeUpdateCommand.d.ts +16 -0
  22. package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +16 -0
  23. package/dist-types/commands/ListAddonsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListClustersCommand.d.ts +16 -0
  25. package/dist-types/commands/ListFargateProfilesCommand.d.ts +16 -0
  26. package/dist-types/commands/ListIdentityProviderConfigsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListNodegroupsCommand.d.ts +16 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  29. package/dist-types/commands/ListUpdatesCommand.d.ts +16 -0
  30. package/dist-types/commands/RegisterClusterCommand.d.ts +16 -0
  31. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  32. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  33. package/dist-types/commands/UpdateAddonCommand.d.ts +16 -0
  34. package/dist-types/commands/UpdateClusterConfigCommand.d.ts +16 -0
  35. package/dist-types/commands/UpdateClusterVersionCommand.d.ts +16 -0
  36. package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +16 -0
  37. package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +16 -0
  38. package/dist-types/models/EKSServiceException.d.ts +2 -0
  39. package/dist-types/models/models_0.d.ts +328 -0
  40. package/dist-types/pagination/DescribeAddonVersionsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/Interfaces.d.ts +3 -0
  42. package/dist-types/pagination/ListAddonsPaginator.d.ts +3 -0
  43. package/dist-types/pagination/ListClustersPaginator.d.ts +3 -0
  44. package/dist-types/pagination/ListFargateProfilesPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListIdentityProviderConfigsPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListNodegroupsPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListUpdatesPaginator.d.ts +3 -0
  48. package/package.json +30 -30
@@ -36,6 +36,7 @@ import { UpdateNodegroupConfigCommandInput, UpdateNodegroupConfigCommandOutput }
36
36
  import { UpdateNodegroupVersionCommandInput, UpdateNodegroupVersionCommandOutput } from "./commands/UpdateNodegroupVersionCommand";
37
37
  import { EKSClient } from "./EKSClient";
38
38
  /**
39
+ * @public
39
40
  * <p>Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy
40
41
  * for you to run Kubernetes on Amazon Web Services without needing to stand up or maintain
41
42
  * your own Kubernetes control plane. Kubernetes is an open-source system for automating
@@ -49,6 +50,7 @@ import { EKSClient } from "./EKSClient";
49
50
  */
50
51
  export declare class EKS extends EKSClient {
51
52
  /**
53
+ * @public
52
54
  * <p>Associate encryption configuration to an existing cluster.</p>
53
55
  * <p>You can use this API to enable encryption on existing clusters which do not have
54
56
  * encryption already enabled. This allows you to implement a defense-in-depth security
@@ -58,6 +60,7 @@ export declare class EKS extends EKSClient {
58
60
  associateEncryptionConfig(args: AssociateEncryptionConfigCommandInput, cb: (err: any, data?: AssociateEncryptionConfigCommandOutput) => void): void;
59
61
  associateEncryptionConfig(args: AssociateEncryptionConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateEncryptionConfigCommandOutput) => void): void;
60
62
  /**
63
+ * @public
61
64
  * <p>Associate an identity provider configuration to a cluster.</p>
62
65
  * <p>If you want to authenticate identities using an identity provider, you can create an
63
66
  * identity provider configuration and associate it to your cluster. After configuring
@@ -71,6 +74,7 @@ export declare class EKS extends EKSClient {
71
74
  associateIdentityProviderConfig(args: AssociateIdentityProviderConfigCommandInput, cb: (err: any, data?: AssociateIdentityProviderConfigCommandOutput) => void): void;
72
75
  associateIdentityProviderConfig(args: AssociateIdentityProviderConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateIdentityProviderConfigCommandOutput) => void): void;
73
76
  /**
77
+ * @public
74
78
  * <p>Creates an Amazon EKS add-on.</p>
75
79
  * <p>Amazon EKS add-ons help to automate the provisioning and lifecycle management
76
80
  * of common operational software for Amazon EKS clusters. For more information,
@@ -80,6 +84,7 @@ export declare class EKS extends EKSClient {
80
84
  createAddon(args: CreateAddonCommandInput, cb: (err: any, data?: CreateAddonCommandOutput) => void): void;
81
85
  createAddon(args: CreateAddonCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAddonCommandOutput) => void): void;
82
86
  /**
87
+ * @public
83
88
  * <p>Creates an Amazon EKS control plane. </p>
84
89
  * <p>The Amazon EKS control plane consists of control plane instances that run the
85
90
  * Kubernetes software, such as <code>etcd</code> and the API server. The control plane
@@ -106,6 +111,7 @@ export declare class EKS extends EKSClient {
106
111
  createCluster(args: CreateClusterCommandInput, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
107
112
  createCluster(args: CreateClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
108
113
  /**
114
+ * @public
109
115
  * <p>Creates an Fargate profile for your Amazon EKS cluster. You
110
116
  * must have at least one Fargate profile in a cluster to be able to run
111
117
  * pods on Fargate.</p>
@@ -139,6 +145,7 @@ export declare class EKS extends EKSClient {
139
145
  createFargateProfile(args: CreateFargateProfileCommandInput, cb: (err: any, data?: CreateFargateProfileCommandOutput) => void): void;
140
146
  createFargateProfile(args: CreateFargateProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFargateProfileCommandOutput) => void): void;
141
147
  /**
148
+ * @public
142
149
  * <p>Creates a managed node group for an Amazon EKS cluster. You can only create a
143
150
  * node group for your cluster that is equal to the current Kubernetes version for the
144
151
  * cluster. All node groups are created with the latest AMI release version for the
@@ -158,6 +165,7 @@ export declare class EKS extends EKSClient {
158
165
  createNodegroup(args: CreateNodegroupCommandInput, cb: (err: any, data?: CreateNodegroupCommandOutput) => void): void;
159
166
  createNodegroup(args: CreateNodegroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNodegroupCommandOutput) => void): void;
160
167
  /**
168
+ * @public
161
169
  * <p>Delete an Amazon EKS add-on.</p>
162
170
  * <p>When you remove the add-on, it will also be deleted from the cluster. You can always
163
171
  * manually start an add-on on the cluster using the Kubernetes API.</p>
@@ -166,6 +174,7 @@ export declare class EKS extends EKSClient {
166
174
  deleteAddon(args: DeleteAddonCommandInput, cb: (err: any, data?: DeleteAddonCommandOutput) => void): void;
167
175
  deleteAddon(args: DeleteAddonCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAddonCommandOutput) => void): void;
168
176
  /**
177
+ * @public
169
178
  * <p>Deletes the Amazon EKS cluster control plane.</p>
170
179
  * <p>If you have active services in your cluster that are associated with a load balancer,
171
180
  * you must delete those services before deleting the cluster so that the load balancers
@@ -179,6 +188,7 @@ export declare class EKS extends EKSClient {
179
188
  deleteCluster(args: DeleteClusterCommandInput, cb: (err: any, data?: DeleteClusterCommandOutput) => void): void;
180
189
  deleteCluster(args: DeleteClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClusterCommandOutput) => void): void;
181
190
  /**
191
+ * @public
182
192
  * <p>Deletes an Fargate profile.</p>
183
193
  * <p>When you delete a Fargate profile, any pods running on Fargate that were created with the profile are deleted. If those pods match
184
194
  * another Fargate profile, then they are scheduled on Fargate with that profile. If they no longer match any Fargate profiles, then
@@ -193,12 +203,14 @@ export declare class EKS extends EKSClient {
193
203
  deleteFargateProfile(args: DeleteFargateProfileCommandInput, cb: (err: any, data?: DeleteFargateProfileCommandOutput) => void): void;
194
204
  deleteFargateProfile(args: DeleteFargateProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFargateProfileCommandOutput) => void): void;
195
205
  /**
206
+ * @public
196
207
  * <p>Deletes an Amazon EKS node group for a cluster.</p>
197
208
  */
198
209
  deleteNodegroup(args: DeleteNodegroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNodegroupCommandOutput>;
199
210
  deleteNodegroup(args: DeleteNodegroupCommandInput, cb: (err: any, data?: DeleteNodegroupCommandOutput) => void): void;
200
211
  deleteNodegroup(args: DeleteNodegroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNodegroupCommandOutput) => void): void;
201
212
  /**
213
+ * @public
202
214
  * <p>Deregisters a connected cluster to remove it from the Amazon EKS control
203
215
  * plane.</p>
204
216
  */
@@ -206,18 +218,21 @@ export declare class EKS extends EKSClient {
206
218
  deregisterCluster(args: DeregisterClusterCommandInput, cb: (err: any, data?: DeregisterClusterCommandOutput) => void): void;
207
219
  deregisterCluster(args: DeregisterClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterClusterCommandOutput) => void): void;
208
220
  /**
221
+ * @public
209
222
  * <p>Describes an Amazon EKS add-on.</p>
210
223
  */
211
224
  describeAddon(args: DescribeAddonCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAddonCommandOutput>;
212
225
  describeAddon(args: DescribeAddonCommandInput, cb: (err: any, data?: DescribeAddonCommandOutput) => void): void;
213
226
  describeAddon(args: DescribeAddonCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAddonCommandOutput) => void): void;
214
227
  /**
228
+ * @public
215
229
  * <p>Returns configuration options.</p>
216
230
  */
217
231
  describeAddonConfiguration(args: DescribeAddonConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAddonConfigurationCommandOutput>;
218
232
  describeAddonConfiguration(args: DescribeAddonConfigurationCommandInput, cb: (err: any, data?: DescribeAddonConfigurationCommandOutput) => void): void;
219
233
  describeAddonConfiguration(args: DescribeAddonConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAddonConfigurationCommandOutput) => void): void;
220
234
  /**
235
+ * @public
221
236
  * <p>Describes the versions for an add-on. Information such as the Kubernetes versions that you
222
237
  * can use the add-on with, the <code>owner</code>, <code>publisher</code>, and the
223
238
  * <code>type</code> of the add-on are returned. </p>
@@ -226,6 +241,7 @@ export declare class EKS extends EKSClient {
226
241
  describeAddonVersions(args: DescribeAddonVersionsCommandInput, cb: (err: any, data?: DescribeAddonVersionsCommandOutput) => void): void;
227
242
  describeAddonVersions(args: DescribeAddonVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAddonVersionsCommandOutput) => void): void;
228
243
  /**
244
+ * @public
229
245
  * <p>Returns descriptive information about an Amazon EKS cluster.</p>
230
246
  * <p>The API server endpoint and certificate authority data returned by this operation are
231
247
  * required for <code>kubelet</code> and <code>kubectl</code> to communicate with your
@@ -240,24 +256,28 @@ export declare class EKS extends EKSClient {
240
256
  describeCluster(args: DescribeClusterCommandInput, cb: (err: any, data?: DescribeClusterCommandOutput) => void): void;
241
257
  describeCluster(args: DescribeClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClusterCommandOutput) => void): void;
242
258
  /**
259
+ * @public
243
260
  * <p>Returns descriptive information about an Fargate profile.</p>
244
261
  */
245
262
  describeFargateProfile(args: DescribeFargateProfileCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFargateProfileCommandOutput>;
246
263
  describeFargateProfile(args: DescribeFargateProfileCommandInput, cb: (err: any, data?: DescribeFargateProfileCommandOutput) => void): void;
247
264
  describeFargateProfile(args: DescribeFargateProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFargateProfileCommandOutput) => void): void;
248
265
  /**
266
+ * @public
249
267
  * <p>Returns descriptive information about an identity provider configuration.</p>
250
268
  */
251
269
  describeIdentityProviderConfig(args: DescribeIdentityProviderConfigCommandInput, options?: __HttpHandlerOptions): Promise<DescribeIdentityProviderConfigCommandOutput>;
252
270
  describeIdentityProviderConfig(args: DescribeIdentityProviderConfigCommandInput, cb: (err: any, data?: DescribeIdentityProviderConfigCommandOutput) => void): void;
253
271
  describeIdentityProviderConfig(args: DescribeIdentityProviderConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeIdentityProviderConfigCommandOutput) => void): void;
254
272
  /**
273
+ * @public
255
274
  * <p>Returns descriptive information about an Amazon EKS node group.</p>
256
275
  */
257
276
  describeNodegroup(args: DescribeNodegroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNodegroupCommandOutput>;
258
277
  describeNodegroup(args: DescribeNodegroupCommandInput, cb: (err: any, data?: DescribeNodegroupCommandOutput) => void): void;
259
278
  describeNodegroup(args: DescribeNodegroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNodegroupCommandOutput) => void): void;
260
279
  /**
280
+ * @public
261
281
  * <p>Returns descriptive information about an update against your Amazon EKS
262
282
  * cluster or associated managed node group or Amazon EKS add-on.</p>
263
283
  * <p>When the status of the update is <code>Succeeded</code>, the update is complete. If an
@@ -268,6 +288,7 @@ export declare class EKS extends EKSClient {
268
288
  describeUpdate(args: DescribeUpdateCommandInput, cb: (err: any, data?: DescribeUpdateCommandOutput) => void): void;
269
289
  describeUpdate(args: DescribeUpdateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUpdateCommandOutput) => void): void;
270
290
  /**
291
+ * @public
271
292
  * <p>Disassociates an identity provider configuration from a cluster. If you disassociate
272
293
  * an identity provider from your cluster, users included in the provider can no longer
273
294
  * access the cluster. However, you can still access the cluster with Amazon Web Services
@@ -277,12 +298,14 @@ export declare class EKS extends EKSClient {
277
298
  disassociateIdentityProviderConfig(args: DisassociateIdentityProviderConfigCommandInput, cb: (err: any, data?: DisassociateIdentityProviderConfigCommandOutput) => void): void;
278
299
  disassociateIdentityProviderConfig(args: DisassociateIdentityProviderConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateIdentityProviderConfigCommandOutput) => void): void;
279
300
  /**
301
+ * @public
280
302
  * <p>Lists the available add-ons.</p>
281
303
  */
282
304
  listAddons(args: ListAddonsCommandInput, options?: __HttpHandlerOptions): Promise<ListAddonsCommandOutput>;
283
305
  listAddons(args: ListAddonsCommandInput, cb: (err: any, data?: ListAddonsCommandOutput) => void): void;
284
306
  listAddons(args: ListAddonsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAddonsCommandOutput) => void): void;
285
307
  /**
308
+ * @public
286
309
  * <p>Lists the Amazon EKS clusters in your Amazon Web Services account in the
287
310
  * specified Region.</p>
288
311
  */
@@ -290,6 +313,7 @@ export declare class EKS extends EKSClient {
290
313
  listClusters(args: ListClustersCommandInput, cb: (err: any, data?: ListClustersCommandOutput) => void): void;
291
314
  listClusters(args: ListClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClustersCommandOutput) => void): void;
292
315
  /**
316
+ * @public
293
317
  * <p>Lists the Fargate profiles associated with the specified cluster in
294
318
  * your Amazon Web Services account in the specified Region.</p>
295
319
  */
@@ -297,12 +321,14 @@ export declare class EKS extends EKSClient {
297
321
  listFargateProfiles(args: ListFargateProfilesCommandInput, cb: (err: any, data?: ListFargateProfilesCommandOutput) => void): void;
298
322
  listFargateProfiles(args: ListFargateProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFargateProfilesCommandOutput) => void): void;
299
323
  /**
324
+ * @public
300
325
  * <p>A list of identity provider configurations.</p>
301
326
  */
302
327
  listIdentityProviderConfigs(args: ListIdentityProviderConfigsCommandInput, options?: __HttpHandlerOptions): Promise<ListIdentityProviderConfigsCommandOutput>;
303
328
  listIdentityProviderConfigs(args: ListIdentityProviderConfigsCommandInput, cb: (err: any, data?: ListIdentityProviderConfigsCommandOutput) => void): void;
304
329
  listIdentityProviderConfigs(args: ListIdentityProviderConfigsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdentityProviderConfigsCommandOutput) => void): void;
305
330
  /**
331
+ * @public
306
332
  * <p>Lists the Amazon EKS managed node groups associated with the specified cluster
307
333
  * in your Amazon Web Services account in the specified Region. Self-managed node groups are
308
334
  * not listed.</p>
@@ -311,12 +337,14 @@ export declare class EKS extends EKSClient {
311
337
  listNodegroups(args: ListNodegroupsCommandInput, cb: (err: any, data?: ListNodegroupsCommandOutput) => void): void;
312
338
  listNodegroups(args: ListNodegroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNodegroupsCommandOutput) => void): void;
313
339
  /**
340
+ * @public
314
341
  * <p>List the tags for an Amazon EKS resource.</p>
315
342
  */
316
343
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
317
344
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
318
345
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
319
346
  /**
347
+ * @public
320
348
  * <p>Lists the updates associated with an Amazon EKS cluster or managed node group
321
349
  * in your Amazon Web Services account, in the specified Region.</p>
322
350
  */
@@ -324,6 +352,7 @@ export declare class EKS extends EKSClient {
324
352
  listUpdates(args: ListUpdatesCommandInput, cb: (err: any, data?: ListUpdatesCommandOutput) => void): void;
325
353
  listUpdates(args: ListUpdatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUpdatesCommandOutput) => void): void;
326
354
  /**
355
+ * @public
327
356
  * <p>Connects a Kubernetes cluster to the Amazon EKS control plane. </p>
328
357
  * <p>Any Kubernetes cluster can be connected to the Amazon EKS control plane to
329
358
  * view current information about the cluster and its nodes. </p>
@@ -342,6 +371,7 @@ export declare class EKS extends EKSClient {
342
371
  registerCluster(args: RegisterClusterCommandInput, cb: (err: any, data?: RegisterClusterCommandOutput) => void): void;
343
372
  registerCluster(args: RegisterClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterClusterCommandOutput) => void): void;
344
373
  /**
374
+ * @public
345
375
  * <p>Associates the specified tags to a resource with the specified
346
376
  * <code>resourceArn</code>. If existing tags on a resource are not specified in the
347
377
  * request parameters, they are not changed. When a resource is deleted, the tags
@@ -353,18 +383,21 @@ export declare class EKS extends EKSClient {
353
383
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
354
384
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
355
385
  /**
386
+ * @public
356
387
  * <p>Deletes specified tags from a resource.</p>
357
388
  */
358
389
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
359
390
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
360
391
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
361
392
  /**
393
+ * @public
362
394
  * <p>Updates an Amazon EKS add-on.</p>
363
395
  */
364
396
  updateAddon(args: UpdateAddonCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAddonCommandOutput>;
365
397
  updateAddon(args: UpdateAddonCommandInput, cb: (err: any, data?: UpdateAddonCommandOutput) => void): void;
366
398
  updateAddon(args: UpdateAddonCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAddonCommandOutput) => void): void;
367
399
  /**
400
+ * @public
368
401
  * <p>Updates an Amazon EKS cluster configuration. Your cluster continues to
369
402
  * function during the update. The response output includes an update ID that you can use
370
403
  * to track the status of your cluster update with the <a>DescribeUpdate</a> API
@@ -398,6 +431,7 @@ export declare class EKS extends EKSClient {
398
431
  updateClusterConfig(args: UpdateClusterConfigCommandInput, cb: (err: any, data?: UpdateClusterConfigCommandOutput) => void): void;
399
432
  updateClusterConfig(args: UpdateClusterConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateClusterConfigCommandOutput) => void): void;
400
433
  /**
434
+ * @public
401
435
  * <p>Updates an Amazon EKS cluster to the specified Kubernetes version. Your
402
436
  * cluster continues to function during the update. The response output includes an update
403
437
  * ID that you can use to track the status of your cluster update with the <a>DescribeUpdate</a> API operation.</p>
@@ -413,6 +447,7 @@ export declare class EKS extends EKSClient {
413
447
  updateClusterVersion(args: UpdateClusterVersionCommandInput, cb: (err: any, data?: UpdateClusterVersionCommandOutput) => void): void;
414
448
  updateClusterVersion(args: UpdateClusterVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateClusterVersionCommandOutput) => void): void;
415
449
  /**
450
+ * @public
416
451
  * <p>Updates an Amazon EKS managed node group configuration. Your node group
417
452
  * continues to function during the update. The response output includes an update ID that
418
453
  * you can use to track the status of your node group update with the <a>DescribeUpdate</a> API operation. Currently you can update the Kubernetes
@@ -422,6 +457,7 @@ export declare class EKS extends EKSClient {
422
457
  updateNodegroupConfig(args: UpdateNodegroupConfigCommandInput, cb: (err: any, data?: UpdateNodegroupConfigCommandOutput) => void): void;
423
458
  updateNodegroupConfig(args: UpdateNodegroupConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNodegroupConfigCommandOutput) => void): void;
424
459
  /**
460
+ * @public
425
461
  * <p>Updates the Kubernetes version or AMI version of an Amazon EKS managed node
426
462
  * group.</p>
427
463
  * <p>You can update a node group using a launch template only if the node group was
@@ -43,15 +43,24 @@ import { UpdateClusterVersionCommandInput, UpdateClusterVersionCommandOutput } f
43
43
  import { UpdateNodegroupConfigCommandInput, UpdateNodegroupConfigCommandOutput } from "./commands/UpdateNodegroupConfigCommand";
44
44
  import { UpdateNodegroupVersionCommandInput, UpdateNodegroupVersionCommandOutput } from "./commands/UpdateNodegroupVersionCommand";
45
45
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
46
+ /**
47
+ * @public
48
+ */
46
49
  export type ServiceInputTypes = AssociateEncryptionConfigCommandInput | AssociateIdentityProviderConfigCommandInput | CreateAddonCommandInput | CreateClusterCommandInput | CreateFargateProfileCommandInput | CreateNodegroupCommandInput | DeleteAddonCommandInput | DeleteClusterCommandInput | DeleteFargateProfileCommandInput | DeleteNodegroupCommandInput | DeregisterClusterCommandInput | DescribeAddonCommandInput | DescribeAddonConfigurationCommandInput | DescribeAddonVersionsCommandInput | DescribeClusterCommandInput | DescribeFargateProfileCommandInput | DescribeIdentityProviderConfigCommandInput | DescribeNodegroupCommandInput | DescribeUpdateCommandInput | DisassociateIdentityProviderConfigCommandInput | ListAddonsCommandInput | ListClustersCommandInput | ListFargateProfilesCommandInput | ListIdentityProviderConfigsCommandInput | ListNodegroupsCommandInput | ListTagsForResourceCommandInput | ListUpdatesCommandInput | RegisterClusterCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAddonCommandInput | UpdateClusterConfigCommandInput | UpdateClusterVersionCommandInput | UpdateNodegroupConfigCommandInput | UpdateNodegroupVersionCommandInput;
50
+ /**
51
+ * @public
52
+ */
47
53
  export type ServiceOutputTypes = AssociateEncryptionConfigCommandOutput | AssociateIdentityProviderConfigCommandOutput | CreateAddonCommandOutput | CreateClusterCommandOutput | CreateFargateProfileCommandOutput | CreateNodegroupCommandOutput | DeleteAddonCommandOutput | DeleteClusterCommandOutput | DeleteFargateProfileCommandOutput | DeleteNodegroupCommandOutput | DeregisterClusterCommandOutput | DescribeAddonCommandOutput | DescribeAddonConfigurationCommandOutput | DescribeAddonVersionsCommandOutput | DescribeClusterCommandOutput | DescribeFargateProfileCommandOutput | DescribeIdentityProviderConfigCommandOutput | DescribeNodegroupCommandOutput | DescribeUpdateCommandOutput | DisassociateIdentityProviderConfigCommandOutput | ListAddonsCommandOutput | ListClustersCommandOutput | ListFargateProfilesCommandOutput | ListIdentityProviderConfigsCommandOutput | ListNodegroupsCommandOutput | ListTagsForResourceCommandOutput | ListUpdatesCommandOutput | RegisterClusterCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAddonCommandOutput | UpdateClusterConfigCommandOutput | UpdateClusterVersionCommandOutput | UpdateNodegroupConfigCommandOutput | UpdateNodegroupVersionCommandOutput;
54
+ /**
55
+ * @public
56
+ */
48
57
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
49
58
  /**
50
59
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
51
60
  */
52
61
  requestHandler?: __HttpHandler;
53
62
  /**
54
- * A constructor for a class implementing the {@link __Checksum} interface
63
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
55
64
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
56
65
  * @internal
57
66
  */
@@ -141,23 +150,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
141
150
  */
142
151
  logger?: __Logger;
143
152
  /**
144
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
153
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
145
154
  */
146
155
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
147
156
  }
157
+ /**
158
+ * @public
159
+ */
148
160
  type EKSClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
149
161
  /**
150
- * The configuration interface of EKSClient class constructor that set the region, credentials and other options.
162
+ * @public
163
+ *
164
+ * The configuration interface of EKSClient class constructor that set the region, credentials and other options.
151
165
  */
152
166
  export interface EKSClientConfig extends EKSClientConfigType {
153
167
  }
168
+ /**
169
+ * @public
170
+ */
154
171
  type EKSClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
155
172
  /**
156
- * The resolved configuration interface of EKSClient class. This is resolved and normalized from the {@link EKSClientConfig | constructor configuration interface}.
173
+ * @public
174
+ *
175
+ * The resolved configuration interface of EKSClient class. This is resolved and normalized from the {@link EKSClientConfig | constructor configuration interface}.
157
176
  */
158
177
  export interface EKSClientResolvedConfig extends EKSClientResolvedConfigType {
159
178
  }
160
179
  /**
180
+ * @public
161
181
  * <p>Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy
162
182
  * for you to run Kubernetes on Amazon Web Services without needing to stand up or maintain
163
183
  * your own Kubernetes control plane. Kubernetes is an open-source system for automating
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { AssociateEncryptionConfigRequest, AssociateEncryptionConfigResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AssociateEncryptionConfigCommand}.
8
10
  */
9
11
  export interface AssociateEncryptionConfigCommandInput extends AssociateEncryptionConfigRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AssociateEncryptionConfigCommand}.
13
17
  */
14
18
  export interface AssociateEncryptionConfigCommandOutput extends AssociateEncryptionConfigResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Associate encryption configuration to an existing cluster.</p>
18
23
  * <p>You can use this API to enable encryption on existing clusters which do not have
19
24
  * encryption already enabled. This allows you to implement a defense-in-depth security
@@ -28,6 +33,8 @@ export interface AssociateEncryptionConfigCommandOutput extends AssociateEncrypt
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param AssociateEncryptionConfigCommandInput - {@link AssociateEncryptionConfigCommandInput}
37
+ * @returns {@link AssociateEncryptionConfigCommandOutput}
31
38
  * @see {@link AssociateEncryptionConfigCommandInput} for command's `input` shape.
32
39
  * @see {@link AssociateEncryptionConfigCommandOutput} for command's `response` shape.
33
40
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -62,11 +69,20 @@ export interface AssociateEncryptionConfigCommandOutput extends AssociateEncrypt
62
69
  export declare class AssociateEncryptionConfigCommand extends $Command<AssociateEncryptionConfigCommandInput, AssociateEncryptionConfigCommandOutput, EKSClientResolvedConfig> {
63
70
  readonly input: AssociateEncryptionConfigCommandInput;
64
71
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
72
+ /**
73
+ * @public
74
+ */
65
75
  constructor(input: AssociateEncryptionConfigCommandInput);
66
76
  /**
67
77
  * @internal
68
78
  */
69
79
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateEncryptionConfigCommandInput, AssociateEncryptionConfigCommandOutput>;
80
+ /**
81
+ * @internal
82
+ */
70
83
  private serialize;
84
+ /**
85
+ * @internal
86
+ */
71
87
  private deserialize;
72
88
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { AssociateIdentityProviderConfigRequest, AssociateIdentityProviderConfigResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AssociateIdentityProviderConfigCommand}.
8
10
  */
9
11
  export interface AssociateIdentityProviderConfigCommandInput extends AssociateIdentityProviderConfigRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AssociateIdentityProviderConfigCommand}.
13
17
  */
14
18
  export interface AssociateIdentityProviderConfigCommandOutput extends AssociateIdentityProviderConfigResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Associate an identity provider configuration to a cluster.</p>
18
23
  * <p>If you want to authenticate identities using an identity provider, you can create an
19
24
  * identity provider configuration and associate it to your cluster. After configuring
@@ -32,6 +37,8 @@ export interface AssociateIdentityProviderConfigCommandOutput extends AssociateI
32
37
  * const response = await client.send(command);
33
38
  * ```
34
39
  *
40
+ * @param AssociateIdentityProviderConfigCommandInput - {@link AssociateIdentityProviderConfigCommandInput}
41
+ * @returns {@link AssociateIdentityProviderConfigCommandOutput}
35
42
  * @see {@link AssociateIdentityProviderConfigCommandInput} for command's `input` shape.
36
43
  * @see {@link AssociateIdentityProviderConfigCommandOutput} for command's `response` shape.
37
44
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -66,11 +73,20 @@ export interface AssociateIdentityProviderConfigCommandOutput extends AssociateI
66
73
  export declare class AssociateIdentityProviderConfigCommand extends $Command<AssociateIdentityProviderConfigCommandInput, AssociateIdentityProviderConfigCommandOutput, EKSClientResolvedConfig> {
67
74
  readonly input: AssociateIdentityProviderConfigCommandInput;
68
75
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
76
+ /**
77
+ * @public
78
+ */
69
79
  constructor(input: AssociateIdentityProviderConfigCommandInput);
70
80
  /**
71
81
  * @internal
72
82
  */
73
83
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateIdentityProviderConfigCommandInput, AssociateIdentityProviderConfigCommandOutput>;
84
+ /**
85
+ * @internal
86
+ */
74
87
  private serialize;
88
+ /**
89
+ * @internal
90
+ */
75
91
  private deserialize;
76
92
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { CreateAddonRequest, CreateAddonResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateAddonCommand}.
8
10
  */
9
11
  export interface CreateAddonCommandInput extends CreateAddonRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateAddonCommand}.
13
17
  */
14
18
  export interface CreateAddonCommandOutput extends CreateAddonResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates an Amazon EKS add-on.</p>
18
23
  * <p>Amazon EKS add-ons help to automate the provisioning and lifecycle management
19
24
  * of common operational software for Amazon EKS clusters. For more information,
@@ -28,6 +33,8 @@ export interface CreateAddonCommandOutput extends CreateAddonResponse, __Metadat
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param CreateAddonCommandInput - {@link CreateAddonCommandInput}
37
+ * @returns {@link CreateAddonCommandOutput}
31
38
  * @see {@link CreateAddonCommandInput} for command's `input` shape.
32
39
  * @see {@link CreateAddonCommandOutput} for command's `response` shape.
33
40
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -62,11 +69,20 @@ export interface CreateAddonCommandOutput extends CreateAddonResponse, __Metadat
62
69
  export declare class CreateAddonCommand extends $Command<CreateAddonCommandInput, CreateAddonCommandOutput, EKSClientResolvedConfig> {
63
70
  readonly input: CreateAddonCommandInput;
64
71
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
72
+ /**
73
+ * @public
74
+ */
65
75
  constructor(input: CreateAddonCommandInput);
66
76
  /**
67
77
  * @internal
68
78
  */
69
79
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAddonCommandInput, CreateAddonCommandOutput>;
80
+ /**
81
+ * @internal
82
+ */
70
83
  private serialize;
84
+ /**
85
+ * @internal
86
+ */
71
87
  private deserialize;
72
88
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateClusterCommand}.
8
10
  */
9
11
  export interface CreateClusterCommandInput extends CreateClusterRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateClusterCommand}.
13
17
  */
14
18
  export interface CreateClusterCommandOutput extends CreateClusterResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates an Amazon EKS control plane. </p>
18
23
  * <p>The Amazon EKS control plane consists of control plane instances that run the
19
24
  * Kubernetes software, such as <code>etcd</code> and the API server. The control plane
@@ -45,6 +50,8 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
45
50
  * const response = await client.send(command);
46
51
  * ```
47
52
  *
53
+ * @param CreateClusterCommandInput - {@link CreateClusterCommandInput}
54
+ * @returns {@link CreateClusterCommandOutput}
48
55
  * @see {@link CreateClusterCommandInput} for command's `input` shape.
49
56
  * @see {@link CreateClusterCommandOutput} for command's `response` shape.
50
57
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -104,11 +111,20 @@ export interface CreateClusterCommandOutput extends CreateClusterResponse, __Met
104
111
  export declare class CreateClusterCommand extends $Command<CreateClusterCommandInput, CreateClusterCommandOutput, EKSClientResolvedConfig> {
105
112
  readonly input: CreateClusterCommandInput;
106
113
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
114
+ /**
115
+ * @public
116
+ */
107
117
  constructor(input: CreateClusterCommandInput);
108
118
  /**
109
119
  * @internal
110
120
  */
111
121
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateClusterCommandInput, CreateClusterCommandOutput>;
122
+ /**
123
+ * @internal
124
+ */
112
125
  private serialize;
126
+ /**
127
+ * @internal
128
+ */
113
129
  private deserialize;
114
130
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { CreateFargateProfileRequest, CreateFargateProfileResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateFargateProfileCommand}.
8
10
  */
9
11
  export interface CreateFargateProfileCommandInput extends CreateFargateProfileRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateFargateProfileCommand}.
13
17
  */
14
18
  export interface CreateFargateProfileCommandOutput extends CreateFargateProfileResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates an Fargate profile for your Amazon EKS cluster. You
18
23
  * must have at least one Fargate profile in a cluster to be able to run
19
24
  * pods on Fargate.</p>
@@ -52,6 +57,8 @@ export interface CreateFargateProfileCommandOutput extends CreateFargateProfileR
52
57
  * const response = await client.send(command);
53
58
  * ```
54
59
  *
60
+ * @param CreateFargateProfileCommandInput - {@link CreateFargateProfileCommandInput}
61
+ * @returns {@link CreateFargateProfileCommandOutput}
55
62
  * @see {@link CreateFargateProfileCommandInput} for command's `input` shape.
56
63
  * @see {@link CreateFargateProfileCommandOutput} for command's `response` shape.
57
64
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -86,11 +93,20 @@ export interface CreateFargateProfileCommandOutput extends CreateFargateProfileR
86
93
  export declare class CreateFargateProfileCommand extends $Command<CreateFargateProfileCommandInput, CreateFargateProfileCommandOutput, EKSClientResolvedConfig> {
87
94
  readonly input: CreateFargateProfileCommandInput;
88
95
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
96
+ /**
97
+ * @public
98
+ */
89
99
  constructor(input: CreateFargateProfileCommandInput);
90
100
  /**
91
101
  * @internal
92
102
  */
93
103
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFargateProfileCommandInput, CreateFargateProfileCommandOutput>;
104
+ /**
105
+ * @internal
106
+ */
94
107
  private serialize;
108
+ /**
109
+ * @internal
110
+ */
95
111
  private deserialize;
96
112
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { CreateNodegroupRequest, CreateNodegroupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateNodegroupCommand}.
8
10
  */
9
11
  export interface CreateNodegroupCommandInput extends CreateNodegroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateNodegroupCommand}.
13
17
  */
14
18
  export interface CreateNodegroupCommandOutput extends CreateNodegroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a managed node group for an Amazon EKS cluster. You can only create a
18
23
  * node group for your cluster that is equal to the current Kubernetes version for the
19
24
  * cluster. All node groups are created with the latest AMI release version for the
@@ -38,6 +43,8 @@ export interface CreateNodegroupCommandOutput extends CreateNodegroupResponse, _
38
43
  * const response = await client.send(command);
39
44
  * ```
40
45
  *
46
+ * @param CreateNodegroupCommandInput - {@link CreateNodegroupCommandInput}
47
+ * @returns {@link CreateNodegroupCommandOutput}
41
48
  * @see {@link CreateNodegroupCommandInput} for command's `input` shape.
42
49
  * @see {@link CreateNodegroupCommandOutput} for command's `response` shape.
43
50
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -72,11 +79,20 @@ export interface CreateNodegroupCommandOutput extends CreateNodegroupResponse, _
72
79
  export declare class CreateNodegroupCommand extends $Command<CreateNodegroupCommandInput, CreateNodegroupCommandOutput, EKSClientResolvedConfig> {
73
80
  readonly input: CreateNodegroupCommandInput;
74
81
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
82
+ /**
83
+ * @public
84
+ */
75
85
  constructor(input: CreateNodegroupCommandInput);
76
86
  /**
77
87
  * @internal
78
88
  */
79
89
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateNodegroupCommandInput, CreateNodegroupCommandOutput>;
90
+ /**
91
+ * @internal
92
+ */
80
93
  private serialize;
94
+ /**
95
+ * @internal
96
+ */
81
97
  private deserialize;
82
98
  }