@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 { DisassociateIdentityProviderConfigRequest, DisassociateIdentityProviderConfigResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DisassociateIdentityProviderConfigCommand}.
8
10
  */
9
11
  export interface DisassociateIdentityProviderConfigCommandInput extends DisassociateIdentityProviderConfigRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DisassociateIdentityProviderConfigCommand}.
13
17
  */
14
18
  export interface DisassociateIdentityProviderConfigCommandOutput extends DisassociateIdentityProviderConfigResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Disassociates an identity provider configuration from a cluster. If you disassociate
18
23
  * an identity provider from your cluster, users included in the provider can no longer
19
24
  * access the cluster. However, you can still access the cluster with Amazon Web Services
@@ -28,6 +33,8 @@ export interface DisassociateIdentityProviderConfigCommandOutput extends Disasso
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param DisassociateIdentityProviderConfigCommandInput - {@link DisassociateIdentityProviderConfigCommandInput}
37
+ * @returns {@link DisassociateIdentityProviderConfigCommandOutput}
31
38
  * @see {@link DisassociateIdentityProviderConfigCommandInput} for command's `input` shape.
32
39
  * @see {@link DisassociateIdentityProviderConfigCommandOutput} for command's `response` shape.
33
40
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -62,11 +69,20 @@ export interface DisassociateIdentityProviderConfigCommandOutput extends Disasso
62
69
  export declare class DisassociateIdentityProviderConfigCommand extends $Command<DisassociateIdentityProviderConfigCommandInput, DisassociateIdentityProviderConfigCommandOutput, EKSClientResolvedConfig> {
63
70
  readonly input: DisassociateIdentityProviderConfigCommandInput;
64
71
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
72
+ /**
73
+ * @public
74
+ */
65
75
  constructor(input: DisassociateIdentityProviderConfigCommandInput);
66
76
  /**
67
77
  * @internal
68
78
  */
69
79
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateIdentityProviderConfigCommandInput, DisassociateIdentityProviderConfigCommandOutput>;
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 { ListAddonsRequest, ListAddonsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListAddonsCommand}.
8
10
  */
9
11
  export interface ListAddonsCommandInput extends ListAddonsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListAddonsCommand}.
13
17
  */
14
18
  export interface ListAddonsCommandOutput extends ListAddonsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the available add-ons.</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 ListAddonsCommandOutput extends ListAddonsResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListAddonsCommandInput - {@link ListAddonsCommandInput}
34
+ * @returns {@link ListAddonsCommandOutput}
28
35
  * @see {@link ListAddonsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListAddonsCommandOutput} for command's `response` shape.
30
37
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -56,11 +63,20 @@ export interface ListAddonsCommandOutput extends ListAddonsResponse, __MetadataB
56
63
  export declare class ListAddonsCommand extends $Command<ListAddonsCommandInput, ListAddonsCommandOutput, EKSClientResolvedConfig> {
57
64
  readonly input: ListAddonsCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: ListAddonsCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAddonsCommandInput, ListAddonsCommandOutput>;
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 { ListClustersRequest, ListClustersResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListClustersCommand}.
8
10
  */
9
11
  export interface ListClustersCommandInput extends ListClustersRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListClustersCommand}.
13
17
  */
14
18
  export interface ListClustersCommandOutput extends ListClustersResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the Amazon EKS clusters in your Amazon Web Services account in the
18
23
  * specified Region.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListClustersCommandInput - {@link ListClustersCommandInput}
35
+ * @returns {@link ListClustersCommandOutput}
29
36
  * @see {@link ListClustersCommandInput} for command's `input` shape.
30
37
  * @see {@link ListClustersCommandOutput} for command's `response` shape.
31
38
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -67,11 +74,20 @@ export interface ListClustersCommandOutput extends ListClustersResponse, __Metad
67
74
  export declare class ListClustersCommand extends $Command<ListClustersCommandInput, ListClustersCommandOutput, EKSClientResolvedConfig> {
68
75
  readonly input: ListClustersCommandInput;
69
76
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
+ /**
78
+ * @public
79
+ */
70
80
  constructor(input: ListClustersCommandInput);
71
81
  /**
72
82
  * @internal
73
83
  */
74
84
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListClustersCommandInput, ListClustersCommandOutput>;
85
+ /**
86
+ * @internal
87
+ */
75
88
  private serialize;
89
+ /**
90
+ * @internal
91
+ */
76
92
  private deserialize;
77
93
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { ListFargateProfilesRequest, ListFargateProfilesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListFargateProfilesCommand}.
8
10
  */
9
11
  export interface ListFargateProfilesCommandInput extends ListFargateProfilesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListFargateProfilesCommand}.
13
17
  */
14
18
  export interface ListFargateProfilesCommandOutput extends ListFargateProfilesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the Fargate profiles associated with the specified cluster in
18
23
  * your Amazon Web Services account in the specified Region.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListFargateProfilesCommandOutput extends ListFargateProfilesRes
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListFargateProfilesCommandInput - {@link ListFargateProfilesCommandInput}
35
+ * @returns {@link ListFargateProfilesCommandOutput}
29
36
  * @see {@link ListFargateProfilesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListFargateProfilesCommandOutput} for command's `response` shape.
31
38
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -53,11 +60,20 @@ export interface ListFargateProfilesCommandOutput extends ListFargateProfilesRes
53
60
  export declare class ListFargateProfilesCommand extends $Command<ListFargateProfilesCommandInput, ListFargateProfilesCommandOutput, EKSClientResolvedConfig> {
54
61
  readonly input: ListFargateProfilesCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: ListFargateProfilesCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFargateProfilesCommandInput, ListFargateProfilesCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { ListIdentityProviderConfigsRequest, ListIdentityProviderConfigsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListIdentityProviderConfigsCommand}.
8
10
  */
9
11
  export interface ListIdentityProviderConfigsCommandInput extends ListIdentityProviderConfigsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListIdentityProviderConfigsCommand}.
13
17
  */
14
18
  export interface ListIdentityProviderConfigsCommandOutput extends ListIdentityProviderConfigsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>A list of identity provider configurations.</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 ListIdentityProviderConfigsCommandOutput extends ListIdentityPr
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListIdentityProviderConfigsCommandInput - {@link ListIdentityProviderConfigsCommandInput}
34
+ * @returns {@link ListIdentityProviderConfigsCommandOutput}
28
35
  * @see {@link ListIdentityProviderConfigsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListIdentityProviderConfigsCommandOutput} for command's `response` shape.
30
37
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -55,11 +62,20 @@ export interface ListIdentityProviderConfigsCommandOutput extends ListIdentityPr
55
62
  export declare class ListIdentityProviderConfigsCommand extends $Command<ListIdentityProviderConfigsCommandInput, ListIdentityProviderConfigsCommandOutput, EKSClientResolvedConfig> {
56
63
  readonly input: ListIdentityProviderConfigsCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: ListIdentityProviderConfigsCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListIdentityProviderConfigsCommandInput, ListIdentityProviderConfigsCommandOutput>;
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 { ListNodegroupsRequest, ListNodegroupsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListNodegroupsCommand}.
8
10
  */
9
11
  export interface ListNodegroupsCommandInput extends ListNodegroupsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListNodegroupsCommand}.
13
17
  */
14
18
  export interface ListNodegroupsCommandOutput extends ListNodegroupsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the Amazon EKS managed node groups associated with the specified cluster
18
23
  * in your Amazon Web Services account in the specified Region. Self-managed node groups are
19
24
  * not listed.</p>
@@ -27,6 +32,8 @@ export interface ListNodegroupsCommandOutput extends ListNodegroupsResponse, __M
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListNodegroupsCommandInput - {@link ListNodegroupsCommandInput}
36
+ * @returns {@link ListNodegroupsCommandOutput}
30
37
  * @see {@link ListNodegroupsCommandInput} for command's `input` shape.
31
38
  * @see {@link ListNodegroupsCommandOutput} for command's `response` shape.
32
39
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -57,11 +64,20 @@ export interface ListNodegroupsCommandOutput extends ListNodegroupsResponse, __M
57
64
  export declare class ListNodegroupsCommand extends $Command<ListNodegroupsCommandInput, ListNodegroupsCommandOutput, EKSClientResolvedConfig> {
58
65
  readonly input: ListNodegroupsCommandInput;
59
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
60
70
  constructor(input: ListNodegroupsCommandInput);
61
71
  /**
62
72
  * @internal
63
73
  */
64
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListNodegroupsCommandInput, ListNodegroupsCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
65
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
66
82
  private deserialize;
67
83
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List the tags for an Amazon EKS resource.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -60,11 +67,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
60
67
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, EKSClientResolvedConfig> {
61
68
  readonly input: ListTagsForResourceCommandInput;
62
69
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
70
+ /**
71
+ * @public
72
+ */
63
73
  constructor(input: ListTagsForResourceCommandInput);
64
74
  /**
65
75
  * @internal
66
76
  */
67
77
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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 { ListUpdatesRequest, ListUpdatesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListUpdatesCommand}.
8
10
  */
9
11
  export interface ListUpdatesCommandInput extends ListUpdatesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListUpdatesCommand}.
13
17
  */
14
18
  export interface ListUpdatesCommandOutput extends ListUpdatesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the updates associated with an Amazon EKS cluster or managed node group
18
23
  * in your Amazon Web Services account, in the specified Region.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListUpdatesCommandOutput extends ListUpdatesResponse, __Metadat
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListUpdatesCommandInput - {@link ListUpdatesCommandInput}
35
+ * @returns {@link ListUpdatesCommandOutput}
29
36
  * @see {@link ListUpdatesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListUpdatesCommandOutput} for command's `response` shape.
31
38
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -53,11 +60,20 @@ export interface ListUpdatesCommandOutput extends ListUpdatesResponse, __Metadat
53
60
  export declare class ListUpdatesCommand extends $Command<ListUpdatesCommandInput, ListUpdatesCommandOutput, EKSClientResolvedConfig> {
54
61
  readonly input: ListUpdatesCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: ListUpdatesCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListUpdatesCommandInput, ListUpdatesCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { RegisterClusterRequest, RegisterClusterResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RegisterClusterCommand}.
8
10
  */
9
11
  export interface RegisterClusterCommandInput extends RegisterClusterRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RegisterClusterCommand}.
13
17
  */
14
18
  export interface RegisterClusterCommandOutput extends RegisterClusterResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Connects a Kubernetes cluster to the Amazon EKS control plane. </p>
18
23
  * <p>Any Kubernetes cluster can be connected to the Amazon EKS control plane to
19
24
  * view current information about the cluster and its nodes. </p>
@@ -37,6 +42,8 @@ export interface RegisterClusterCommandOutput extends RegisterClusterResponse, _
37
42
  * const response = await client.send(command);
38
43
  * ```
39
44
  *
45
+ * @param RegisterClusterCommandInput - {@link RegisterClusterCommandInput}
46
+ * @returns {@link RegisterClusterCommandOutput}
40
47
  * @see {@link RegisterClusterCommandInput} for command's `input` shape.
41
48
  * @see {@link RegisterClusterCommandOutput} for command's `response` shape.
42
49
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -77,11 +84,20 @@ export interface RegisterClusterCommandOutput extends RegisterClusterResponse, _
77
84
  export declare class RegisterClusterCommand extends $Command<RegisterClusterCommandInput, RegisterClusterCommandOutput, EKSClientResolvedConfig> {
78
85
  readonly input: RegisterClusterCommandInput;
79
86
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
87
+ /**
88
+ * @public
89
+ */
80
90
  constructor(input: RegisterClusterCommandInput);
81
91
  /**
82
92
  * @internal
83
93
  */
84
94
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterClusterCommandInput, RegisterClusterCommandOutput>;
95
+ /**
96
+ * @internal
97
+ */
85
98
  private serialize;
99
+ /**
100
+ * @internal
101
+ */
86
102
  private deserialize;
87
103
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Associates the specified tags to a resource with the specified
18
23
  * <code>resourceArn</code>. If existing tags on a resource are not specified in the
19
24
  * request parameters, they are not changed. When a resource is deleted, the tags
@@ -30,6 +35,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
39
+ * @returns {@link TagResourceCommandOutput}
33
40
  * @see {@link TagResourceCommandInput} for command's `input` shape.
34
41
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
35
42
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -47,11 +54,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
47
54
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, EKSClientResolvedConfig> {
48
55
  readonly input: TagResourceCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: TagResourceCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes specified tags from a resource.</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 UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -42,11 +49,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
42
49
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, EKSClientResolvedConfig> {
43
50
  readonly input: UntagResourceCommandInput;
44
51
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
52
+ /**
53
+ * @public
54
+ */
45
55
  constructor(input: UntagResourceCommandInput);
46
56
  /**
47
57
  * @internal
48
58
  */
49
59
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
60
+ /**
61
+ * @internal
62
+ */
50
63
  private serialize;
64
+ /**
65
+ * @internal
66
+ */
51
67
  private deserialize;
52
68
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { UpdateAddonRequest, UpdateAddonResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateAddonCommand}.
8
10
  */
9
11
  export interface UpdateAddonCommandInput extends UpdateAddonRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateAddonCommand}.
13
17
  */
14
18
  export interface UpdateAddonCommandOutput extends UpdateAddonResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates 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 UpdateAddonCommandOutput extends UpdateAddonResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateAddonCommandInput - {@link UpdateAddonCommandInput}
34
+ * @returns {@link UpdateAddonCommandOutput}
28
35
  * @see {@link UpdateAddonCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateAddonCommandOutput} for command's `response` shape.
30
37
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -59,11 +66,20 @@ export interface UpdateAddonCommandOutput extends UpdateAddonResponse, __Metadat
59
66
  export declare class UpdateAddonCommand extends $Command<UpdateAddonCommandInput, UpdateAddonCommandOutput, EKSClientResolvedConfig> {
60
67
  readonly input: UpdateAddonCommandInput;
61
68
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
62
72
  constructor(input: UpdateAddonCommandInput);
63
73
  /**
64
74
  * @internal
65
75
  */
66
76
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAddonCommandInput, UpdateAddonCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
67
80
  private serialize;
81
+ /**
82
+ * @internal
83
+ */
68
84
  private deserialize;
69
85
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
5
5
  import { UpdateClusterConfigRequest, UpdateClusterConfigResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateClusterConfigCommand}.
8
10
  */
9
11
  export interface UpdateClusterConfigCommandInput extends UpdateClusterConfigRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateClusterConfigCommand}.
13
17
  */
14
18
  export interface UpdateClusterConfigCommandOutput extends UpdateClusterConfigResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an Amazon EKS cluster configuration. Your cluster continues to
18
23
  * function during the update. The response output includes an update ID that you can use
19
24
  * to track the status of your cluster update with the <a>DescribeUpdate</a> API
@@ -52,6 +57,8 @@ export interface UpdateClusterConfigCommandOutput extends UpdateClusterConfigRes
52
57
  * const response = await client.send(command);
53
58
  * ```
54
59
  *
60
+ * @param UpdateClusterConfigCommandInput - {@link UpdateClusterConfigCommandInput}
61
+ * @returns {@link UpdateClusterConfigCommandOutput}
55
62
  * @see {@link UpdateClusterConfigCommandInput} for command's `input` shape.
56
63
  * @see {@link UpdateClusterConfigCommandOutput} for command's `response` shape.
57
64
  * @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
@@ -86,11 +93,20 @@ export interface UpdateClusterConfigCommandOutput extends UpdateClusterConfigRes
86
93
  export declare class UpdateClusterConfigCommand extends $Command<UpdateClusterConfigCommandInput, UpdateClusterConfigCommandOutput, EKSClientResolvedConfig> {
87
94
  readonly input: UpdateClusterConfigCommandInput;
88
95
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
96
+ /**
97
+ * @public
98
+ */
89
99
  constructor(input: UpdateClusterConfigCommandInput);
90
100
  /**
91
101
  * @internal
92
102
  */
93
103
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateClusterConfigCommandInput, UpdateClusterConfigCommandOutput>;
104
+ /**
105
+ * @internal
106
+ */
94
107
  private serialize;
108
+ /**
109
+ * @internal
110
+ */
95
111
  private deserialize;
96
112
  }