@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.
- package/dist-types/EKS.d.ts +36 -0
- package/dist-types/EKSClient.d.ts +24 -4
- package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +16 -0
- package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +16 -0
- package/dist-types/commands/CreateAddonCommand.d.ts +16 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
- package/dist-types/commands/CreateFargateProfileCommand.d.ts +16 -0
- package/dist-types/commands/CreateNodegroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAddonCommand.d.ts +16 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFargateProfileCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNodegroupCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterClusterCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAddonCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAddonConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAddonVersionsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFargateProfileCommand.d.ts +16 -0
- package/dist-types/commands/DescribeIdentityProviderConfigCommand.d.ts +16 -0
- package/dist-types/commands/DescribeNodegroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeUpdateCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +16 -0
- package/dist-types/commands/ListAddonsCommand.d.ts +16 -0
- package/dist-types/commands/ListClustersCommand.d.ts +16 -0
- package/dist-types/commands/ListFargateProfilesCommand.d.ts +16 -0
- package/dist-types/commands/ListIdentityProviderConfigsCommand.d.ts +16 -0
- package/dist-types/commands/ListNodegroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListUpdatesCommand.d.ts +16 -0
- package/dist-types/commands/RegisterClusterCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAddonCommand.d.ts +16 -0
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +16 -0
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +16 -0
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +16 -0
- package/dist-types/models/EKSServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +328 -0
- package/dist-types/pagination/DescribeAddonVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAddonsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListClustersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListFargateProfilesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListIdentityProviderConfigsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListNodegroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListUpdatesPaginator.d.ts +3 -0
- 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 { UpdateClusterVersionRequest, UpdateClusterVersionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateClusterVersionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateClusterVersionCommandInput extends UpdateClusterVersionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateClusterVersionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateClusterVersionCommandOutput extends UpdateClusterVersionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an Amazon EKS cluster to the specified Kubernetes version. Your
|
|
18
23
|
* cluster continues to function during the update. The response output includes an update
|
|
19
24
|
* ID that you can use to track the status of your cluster update with the <a>DescribeUpdate</a> API operation.</p>
|
|
@@ -34,6 +39,8 @@ export interface UpdateClusterVersionCommandOutput extends UpdateClusterVersionR
|
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
42
|
+
* @param UpdateClusterVersionCommandInput - {@link UpdateClusterVersionCommandInput}
|
|
43
|
+
* @returns {@link UpdateClusterVersionCommandOutput}
|
|
37
44
|
* @see {@link UpdateClusterVersionCommandInput} for command's `input` shape.
|
|
38
45
|
* @see {@link UpdateClusterVersionCommandOutput} for command's `response` shape.
|
|
39
46
|
* @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface UpdateClusterVersionCommandOutput extends UpdateClusterVersionR
|
|
|
68
75
|
export declare class UpdateClusterVersionCommand extends $Command<UpdateClusterVersionCommandInput, UpdateClusterVersionCommandOutput, EKSClientResolvedConfig> {
|
|
69
76
|
readonly input: UpdateClusterVersionCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: UpdateClusterVersionCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateClusterVersionCommandInput, UpdateClusterVersionCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { EKSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EKSClient";
|
|
5
5
|
import { UpdateNodegroupConfigRequest, UpdateNodegroupConfigResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateNodegroupConfigCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateNodegroupConfigCommandInput extends UpdateNodegroupConfigRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateNodegroupConfigCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateNodegroupConfigCommandOutput extends UpdateNodegroupConfigResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an Amazon EKS managed node group configuration. Your node group
|
|
18
23
|
* continues to function during the update. The response output includes an update ID that
|
|
19
24
|
* 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
|
|
@@ -28,6 +33,8 @@ export interface UpdateNodegroupConfigCommandOutput extends UpdateNodegroupConfi
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param UpdateNodegroupConfigCommandInput - {@link UpdateNodegroupConfigCommandInput}
|
|
37
|
+
* @returns {@link UpdateNodegroupConfigCommandOutput}
|
|
31
38
|
* @see {@link UpdateNodegroupConfigCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link UpdateNodegroupConfigCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface UpdateNodegroupConfigCommandOutput extends UpdateNodegroupConfi
|
|
|
62
69
|
export declare class UpdateNodegroupConfigCommand extends $Command<UpdateNodegroupConfigCommandInput, UpdateNodegroupConfigCommandOutput, EKSClientResolvedConfig> {
|
|
63
70
|
readonly input: UpdateNodegroupConfigCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: UpdateNodegroupConfigCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateNodegroupConfigCommandInput, UpdateNodegroupConfigCommandOutput>;
|
|
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 { UpdateNodegroupVersionRequest, UpdateNodegroupVersionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateNodegroupVersionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateNodegroupVersionCommandInput extends UpdateNodegroupVersionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateNodegroupVersionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateNodegroupVersionCommandOutput extends UpdateNodegroupVersionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the Kubernetes version or AMI version of an Amazon EKS managed node
|
|
18
23
|
* group.</p>
|
|
19
24
|
* <p>You can update a node group using a launch template only if the node group was
|
|
@@ -45,6 +50,8 @@ export interface UpdateNodegroupVersionCommandOutput extends UpdateNodegroupVers
|
|
|
45
50
|
* const response = await client.send(command);
|
|
46
51
|
* ```
|
|
47
52
|
*
|
|
53
|
+
* @param UpdateNodegroupVersionCommandInput - {@link UpdateNodegroupVersionCommandInput}
|
|
54
|
+
* @returns {@link UpdateNodegroupVersionCommandOutput}
|
|
48
55
|
* @see {@link UpdateNodegroupVersionCommandInput} for command's `input` shape.
|
|
49
56
|
* @see {@link UpdateNodegroupVersionCommandOutput} for command's `response` shape.
|
|
50
57
|
* @see {@link EKSClientResolvedConfig | config} for EKSClient's `config` shape.
|
|
@@ -79,11 +86,20 @@ export interface UpdateNodegroupVersionCommandOutput extends UpdateNodegroupVers
|
|
|
79
86
|
export declare class UpdateNodegroupVersionCommand extends $Command<UpdateNodegroupVersionCommandInput, UpdateNodegroupVersionCommandOutput, EKSClientResolvedConfig> {
|
|
80
87
|
readonly input: UpdateNodegroupVersionCommandInput;
|
|
81
88
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
82
92
|
constructor(input: UpdateNodegroupVersionCommandInput);
|
|
83
93
|
/**
|
|
84
94
|
* @internal
|
|
85
95
|
*/
|
|
86
96
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EKSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateNodegroupVersionCommandInput, UpdateNodegroupVersionCommandOutput>;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
87
100
|
private serialize;
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
88
104
|
private deserialize;
|
|
89
105
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from EKS service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class EKSServiceException extends __ServiceException {
|