@aws-sdk/client-eks 3.296.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 +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { DeleteAddonRequest, DeleteAddonResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteAddonCommand}.
8
10
  */
9
11
  export interface DeleteAddonCommandInput extends DeleteAddonRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteAddonCommand}.
13
17
  */
14
18
  export interface DeleteAddonCommandOutput extends DeleteAddonResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Delete an Amazon EKS add-on.</p>
18
23
  * <p>When you remove the add-on, it will also be deleted from the cluster. You can always
19
24
  * manually start an add-on on the cluster using the Kubernetes API.</p>
@@ -27,6 +32,8 @@ export interface DeleteAddonCommandOutput extends DeleteAddonResponse, __Metadat
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DeleteAddonCommandInput - {@link DeleteAddonCommandInput}
36
+ * @returns {@link DeleteAddonCommandOutput}
30
37
  * @see {@link DeleteAddonCommandInput} for command's `input` shape.
31
38
  * @see {@link DeleteAddonCommandOutput} for command's `response` shape.
32
39
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -58,11 +65,20 @@ export interface DeleteAddonCommandOutput extends DeleteAddonResponse, __Metadat
58
65
  export declare class DeleteAddonCommand extends $Command<DeleteAddonCommandInput, DeleteAddonCommandOutput, EKSClientResolvedConfig> {
59
66
  readonly input: DeleteAddonCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: DeleteAddonCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAddonCommandInput, DeleteAddonCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
66
79
  private serialize;
80
+ /**
81
+ * @internal
82
+ */
67
83
  private deserialize;
68
84
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteClusterCommand}.
8
10
  */
9
11
  export interface DeleteClusterCommandInput extends DeleteClusterRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteClusterCommand}.
13
17
  */
14
18
  export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes the Amazon EKS cluster control plane.</p>
18
23
  * <p>If you have active services in your cluster that are associated with a load balancer,
19
24
  * you must delete those services before deleting the cluster so that the load balancers
@@ -32,6 +37,8 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
32
37
  * const response = await client.send(command);
33
38
  * ```
34
39
  *
40
+ * @param DeleteClusterCommandInput - {@link DeleteClusterCommandInput}
41
+ * @returns {@link DeleteClusterCommandOutput}
35
42
  * @see {@link DeleteClusterCommandInput} for command's `input` shape.
36
43
  * @see {@link DeleteClusterCommandOutput} for command's `response` shape.
37
44
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -72,11 +79,20 @@ export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __Met
72
79
  export declare class DeleteClusterCommand extends $Command<DeleteClusterCommandInput, DeleteClusterCommandOutput, EKSClientResolvedConfig> {
73
80
  readonly input: DeleteClusterCommandInput;
74
81
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
82
+ /**
83
+ * @public
84
+ */
75
85
  constructor(input: DeleteClusterCommandInput);
76
86
  /**
77
87
  * @internal
78
88
  */
79
89
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteClusterCommandInput, DeleteClusterCommandOutput>;
90
+ /**
91
+ * @internal
92
+ */
80
93
  private serialize;
94
+ /**
95
+ * @internal
96
+ */
81
97
  private deserialize;
82
98
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { DeleteFargateProfileRequest, DeleteFargateProfileResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteFargateProfileCommand}.
8
10
  */
9
11
  export interface DeleteFargateProfileCommandInput extends DeleteFargateProfileRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteFargateProfileCommand}.
13
17
  */
14
18
  export interface DeleteFargateProfileCommandOutput extends DeleteFargateProfileResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes an Fargate profile.</p>
18
23
  * <p>When you delete a Fargate profile, any pods running on Fargate that were created with the profile are deleted. If those pods match
19
24
  * another Fargate profile, then they are scheduled on Fargate with that profile. If they no longer match any Fargate profiles, then
@@ -33,6 +38,8 @@ export interface DeleteFargateProfileCommandOutput extends DeleteFargateProfileR
33
38
  * const response = await client.send(command);
34
39
  * ```
35
40
  *
41
+ * @param DeleteFargateProfileCommandInput - {@link DeleteFargateProfileCommandInput}
42
+ * @returns {@link DeleteFargateProfileCommandOutput}
36
43
  * @see {@link DeleteFargateProfileCommandInput} for command's `input` shape.
37
44
  * @see {@link DeleteFargateProfileCommandOutput} for command's `response` shape.
38
45
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -60,11 +67,20 @@ export interface DeleteFargateProfileCommandOutput extends DeleteFargateProfileR
60
67
  export declare class DeleteFargateProfileCommand extends $Command<DeleteFargateProfileCommandInput, DeleteFargateProfileCommandOutput, EKSClientResolvedConfig> {
61
68
  readonly input: DeleteFargateProfileCommandInput;
62
69
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
70
+ /**
71
+ * @public
72
+ */
63
73
  constructor(input: DeleteFargateProfileCommandInput);
64
74
  /**
65
75
  * @internal
66
76
  */
67
77
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFargateProfileCommandInput, DeleteFargateProfileCommandOutput>;
78
+ /**
79
+ * @internal
80
+ */
68
81
  private serialize;
82
+ /**
83
+ * @internal
84
+ */
69
85
  private deserialize;
70
86
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { DeleteNodegroupRequest, DeleteNodegroupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteNodegroupCommand}.
8
10
  */
9
11
  export interface DeleteNodegroupCommandInput extends DeleteNodegroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteNodegroupCommand}.
13
17
  */
14
18
  export interface DeleteNodegroupCommandOutput extends DeleteNodegroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes an Amazon EKS node group for a cluster.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteNodegroupCommandOutput extends DeleteNodegroupResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteNodegroupCommandInput - {@link DeleteNodegroupCommandInput}
34
+ * @returns {@link DeleteNodegroupCommandOutput}
28
35
  * @see {@link DeleteNodegroupCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteNodegroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -58,11 +65,20 @@ export interface DeleteNodegroupCommandOutput extends DeleteNodegroupResponse, _
58
65
  export declare class DeleteNodegroupCommand extends $Command<DeleteNodegroupCommandInput, DeleteNodegroupCommandOutput, EKSClientResolvedConfig> {
59
66
  readonly input: DeleteNodegroupCommandInput;
60
67
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
61
71
  constructor(input: DeleteNodegroupCommandInput);
62
72
  /**
63
73
  * @internal
64
74
  */
65
75
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteNodegroupCommandInput, DeleteNodegroupCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
66
79
  private serialize;
80
+ /**
81
+ * @internal
82
+ */
67
83
  private deserialize;
68
84
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { DeregisterClusterRequest, DeregisterClusterResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeregisterClusterCommand}.
8
10
  */
9
11
  export interface DeregisterClusterCommandInput extends DeregisterClusterRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeregisterClusterCommand}.
13
17
  */
14
18
  export interface DeregisterClusterCommandOutput extends DeregisterClusterResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deregisters a connected cluster to remove it from the Amazon EKS control
18
23
  * plane.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface DeregisterClusterCommandOutput extends DeregisterClusterRespons
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param DeregisterClusterCommandInput - {@link DeregisterClusterCommandInput}
35
+ * @returns {@link DeregisterClusterCommandOutput}
29
36
  * @see {@link DeregisterClusterCommandInput} for command's `input` shape.
30
37
  * @see {@link DeregisterClusterCommandOutput} for command's `response` shape.
31
38
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -61,11 +68,20 @@ export interface DeregisterClusterCommandOutput extends DeregisterClusterRespons
61
68
  export declare class DeregisterClusterCommand extends $Command<DeregisterClusterCommandInput, DeregisterClusterCommandOutput, EKSClientResolvedConfig> {
62
69
  readonly input: DeregisterClusterCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: DeregisterClusterCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterClusterCommandInput, DeregisterClusterCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { DescribeAddonRequest, DescribeAddonResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeAddonCommand}.
8
10
  */
9
11
  export interface DescribeAddonCommandInput extends DescribeAddonRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeAddonCommand}.
13
17
  */
14
18
  export interface DescribeAddonCommandOutput extends DescribeAddonResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes an Amazon EKS add-on.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DescribeAddonCommandOutput extends DescribeAddonResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeAddonCommandInput - {@link DescribeAddonCommandInput}
34
+ * @returns {@link DescribeAddonCommandOutput}
28
35
  * @see {@link DescribeAddonCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeAddonCommandOutput} for command's `response` shape.
30
37
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -56,11 +63,20 @@ export interface DescribeAddonCommandOutput extends DescribeAddonResponse, __Met
56
63
  export declare class DescribeAddonCommand extends $Command<DescribeAddonCommandInput, DescribeAddonCommandOutput, EKSClientResolvedConfig> {
57
64
  readonly input: DescribeAddonCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: DescribeAddonCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAddonCommandInput, DescribeAddonCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { DescribeAddonConfigurationRequest, DescribeAddonConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeAddonConfigurationCommand}.
8
10
  */
9
11
  export interface DescribeAddonConfigurationCommandInput extends DescribeAddonConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeAddonConfigurationCommand}.
13
17
  */
14
18
  export interface DescribeAddonConfigurationCommandOutput extends DescribeAddonConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns configuration options.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DescribeAddonConfigurationCommandOutput extends DescribeAddonCo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeAddonConfigurationCommandInput - {@link DescribeAddonConfigurationCommandInput}
34
+ * @returns {@link DescribeAddonConfigurationCommandOutput}
28
35
  * @see {@link DescribeAddonConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeAddonConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -47,11 +54,20 @@ export interface DescribeAddonConfigurationCommandOutput extends DescribeAddonCo
47
54
  export declare class DescribeAddonConfigurationCommand extends $Command<DescribeAddonConfigurationCommandInput, DescribeAddonConfigurationCommandOutput, EKSClientResolvedConfig> {
48
55
  readonly input: DescribeAddonConfigurationCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: DescribeAddonConfigurationCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAddonConfigurationCommandInput, DescribeAddonConfigurationCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { DescribeAddonVersionsRequest, DescribeAddonVersionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeAddonVersionsCommand}.
8
10
  */
9
11
  export interface DescribeAddonVersionsCommandInput extends DescribeAddonVersionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeAddonVersionsCommand}.
13
17
  */
14
18
  export interface DescribeAddonVersionsCommandOutput extends DescribeAddonVersionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes the versions for an add-on. Information such as the Kubernetes versions that you
18
23
  * can use the add-on with, the <code>owner</code>, <code>publisher</code>, and the
19
24
  * <code>type</code> of the add-on are returned. </p>
@@ -27,6 +32,8 @@ export interface DescribeAddonVersionsCommandOutput extends DescribeAddonVersion
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DescribeAddonVersionsCommandInput - {@link DescribeAddonVersionsCommandInput}
36
+ * @returns {@link DescribeAddonVersionsCommandOutput}
30
37
  * @see {@link DescribeAddonVersionsCommandInput} for command's `input` shape.
31
38
  * @see {@link DescribeAddonVersionsCommandOutput} for command's `response` shape.
32
39
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DescribeAddonVersionsCommandOutput extends DescribeAddonVersion
49
56
  export declare class DescribeAddonVersionsCommand extends $Command<DescribeAddonVersionsCommandInput, DescribeAddonVersionsCommandOutput, EKSClientResolvedConfig> {
50
57
  readonly input: DescribeAddonVersionsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DescribeAddonVersionsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAddonVersionsCommandInput, DescribeAddonVersionsCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { DescribeClusterRequest, DescribeClusterResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeClusterCommand}.
8
10
  */
9
11
  export interface DescribeClusterCommandInput extends DescribeClusterRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeClusterCommand}.
13
17
  */
14
18
  export interface DescribeClusterCommandOutput extends DescribeClusterResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns descriptive information about an Amazon EKS cluster.</p>
18
23
  * <p>The API server endpoint and certificate authority data returned by this operation are
19
24
  * required for <code>kubelet</code> and <code>kubectl</code> to communicate with your
@@ -33,6 +38,8 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _
33
38
  * const response = await client.send(command);
34
39
  * ```
35
40
  *
41
+ * @param DescribeClusterCommandInput - {@link DescribeClusterCommandInput}
42
+ * @returns {@link DescribeClusterCommandOutput}
36
43
  * @see {@link DescribeClusterCommandInput} for command's `input` shape.
37
44
  * @see {@link DescribeClusterCommandOutput} for command's `response` shape.
38
45
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -96,11 +103,20 @@ export interface DescribeClusterCommandOutput extends DescribeClusterResponse, _
96
103
  export declare class DescribeClusterCommand extends $Command<DescribeClusterCommandInput, DescribeClusterCommandOutput, EKSClientResolvedConfig> {
97
104
  readonly input: DescribeClusterCommandInput;
98
105
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
106
+ /**
107
+ * @public
108
+ */
99
109
  constructor(input: DescribeClusterCommandInput);
100
110
  /**
101
111
  * @internal
102
112
  */
103
113
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeClusterCommandInput, DescribeClusterCommandOutput>;
114
+ /**
115
+ * @internal
116
+ */
104
117
  private serialize;
118
+ /**
119
+ * @internal
120
+ */
105
121
  private deserialize;
106
122
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { DescribeFargateProfileRequest, DescribeFargateProfileResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeFargateProfileCommand}.
8
10
  */
9
11
  export interface DescribeFargateProfileCommandInput extends DescribeFargateProfileRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeFargateProfileCommand}.
13
17
  */
14
18
  export interface DescribeFargateProfileCommandOutput extends DescribeFargateProfileResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns descriptive information about an Fargate profile.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DescribeFargateProfileCommandOutput extends DescribeFargateProf
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeFargateProfileCommandInput - {@link DescribeFargateProfileCommandInput}
34
+ * @returns {@link DescribeFargateProfileCommandOutput}
28
35
  * @see {@link DescribeFargateProfileCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeFargateProfileCommandOutput} for command's `response` shape.
30
37
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DescribeFargateProfileCommandOutput extends DescribeFargateProf
52
59
  export declare class DescribeFargateProfileCommand extends $Command<DescribeFargateProfileCommandInput, DescribeFargateProfileCommandOutput, EKSClientResolvedConfig> {
53
60
  readonly input: DescribeFargateProfileCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DescribeFargateProfileCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFargateProfileCommandInput, DescribeFargateProfileCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { DescribeIdentityProviderConfigRequest, DescribeIdentityProviderConfigResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeIdentityProviderConfigCommand}.
8
10
  */
9
11
  export interface DescribeIdentityProviderConfigCommandInput extends DescribeIdentityProviderConfigRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeIdentityProviderConfigCommand}.
13
17
  */
14
18
  export interface DescribeIdentityProviderConfigCommandOutput extends DescribeIdentityProviderConfigResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns descriptive information about an identity provider configuration.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DescribeIdentityProviderConfigCommandOutput extends DescribeIde
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeIdentityProviderConfigCommandInput - {@link DescribeIdentityProviderConfigCommandInput}
34
+ * @returns {@link DescribeIdentityProviderConfigCommandOutput}
28
35
  * @see {@link DescribeIdentityProviderConfigCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeIdentityProviderConfigCommandOutput} for command's `response` shape.
30
37
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -55,11 +62,20 @@ export interface DescribeIdentityProviderConfigCommandOutput extends DescribeIde
55
62
  export declare class DescribeIdentityProviderConfigCommand extends $Command<DescribeIdentityProviderConfigCommandInput, DescribeIdentityProviderConfigCommandOutput, EKSClientResolvedConfig> {
56
63
  readonly input: DescribeIdentityProviderConfigCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: DescribeIdentityProviderConfigCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeIdentityProviderConfigCommandInput, DescribeIdentityProviderConfigCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { DescribeNodegroupRequest, DescribeNodegroupResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeNodegroupCommand}.
8
10
  */
9
11
  export interface DescribeNodegroupCommandInput extends DescribeNodegroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeNodegroupCommand}.
13
17
  */
14
18
  export interface DescribeNodegroupCommandOutput extends DescribeNodegroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns descriptive information about an Amazon EKS node group.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DescribeNodegroupCommandOutput extends DescribeNodegroupRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeNodegroupCommandInput - {@link DescribeNodegroupCommandInput}
34
+ * @returns {@link DescribeNodegroupCommandOutput}
28
35
  * @see {@link DescribeNodegroupCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeNodegroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -55,11 +62,20 @@ export interface DescribeNodegroupCommandOutput extends DescribeNodegroupRespons
55
62
  export declare class DescribeNodegroupCommand extends $Command<DescribeNodegroupCommandInput, DescribeNodegroupCommandOutput, EKSClientResolvedConfig> {
56
63
  readonly input: DescribeNodegroupCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: DescribeNodegroupCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeNodegroupCommandInput, DescribeNodegroupCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { DescribeUpdateRequest, DescribeUpdateResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeUpdateCommand}.
8
10
  */
9
11
  export interface DescribeUpdateCommandInput extends DescribeUpdateRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeUpdateCommand}.
13
17
  */
14
18
  export interface DescribeUpdateCommandOutput extends DescribeUpdateResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns descriptive information about an update against your Amazon EKS
18
23
  * cluster or associated managed node group or Amazon EKS add-on.</p>
19
24
  * <p>When the status of the update is <code>Succeeded</code>, the update is complete. If an
@@ -29,6 +34,8 @@ export interface DescribeUpdateCommandOutput extends DescribeUpdateResponse, __M
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param DescribeUpdateCommandInput - {@link DescribeUpdateCommandInput}
38
+ * @returns {@link DescribeUpdateCommandOutput}
32
39
  * @see {@link DescribeUpdateCommandInput} for command's `input` shape.
33
40
  * @see {@link DescribeUpdateCommandOutput} for command's `response` shape.
34
41
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -56,11 +63,20 @@ export interface DescribeUpdateCommandOutput extends DescribeUpdateResponse, __M
56
63
  export declare class DescribeUpdateCommand extends $Command<DescribeUpdateCommandInput, DescribeUpdateCommandOutput, EKSClientResolvedConfig> {
57
64
  readonly input: DescribeUpdateCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: DescribeUpdateCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeUpdateCommandInput, DescribeUpdateCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }