@aws-sdk/client-eks 3.445.0 → 3.449.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/README.md +48 -9
- package/dist-cjs/EKS.js +10 -0
- package/dist-cjs/commands/CreateEksAnywhereSubscriptionCommand.js +51 -0
- package/dist-cjs/commands/DeleteEksAnywhereSubscriptionCommand.js +51 -0
- package/dist-cjs/commands/DescribeEksAnywhereSubscriptionCommand.js +51 -0
- package/dist-cjs/commands/ListEksAnywhereSubscriptionsCommand.js +51 -0
- package/dist-cjs/commands/UpdateEksAnywhereSubscriptionCommand.js +51 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/models/models_0.js +21 -1
- package/dist-cjs/protocols/Aws_restJson1.js +363 -2
- package/dist-es/EKS.js +10 -0
- package/dist-es/commands/CreateEksAnywhereSubscriptionCommand.js +47 -0
- package/dist-es/commands/DeleteEksAnywhereSubscriptionCommand.js +47 -0
- package/dist-es/commands/DescribeEksAnywhereSubscriptionCommand.js +47 -0
- package/dist-es/commands/ListEksAnywhereSubscriptionsCommand.js +47 -0
- package/dist-es/commands/UpdateEksAnywhereSubscriptionCommand.js +47 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +20 -0
- package/dist-es/protocols/Aws_restJson1.js +352 -1
- package/dist-types/EKS.d.ts +43 -9
- package/dist-types/EKSClient.d.ts +15 -11
- package/dist-types/commands/AssociateEncryptionConfigCommand.d.ts +2 -2
- package/dist-types/commands/AssociateIdentityProviderConfigCommand.d.ts +2 -2
- package/dist-types/commands/CreateAddonCommand.d.ts +2 -2
- package/dist-types/commands/CreateClusterCommand.d.ts +11 -13
- package/dist-types/commands/CreateEksAnywhereSubscriptionCommand.d.ts +125 -0
- package/dist-types/commands/CreateFargateProfileCommand.d.ts +8 -9
- package/dist-types/commands/CreateNodegroupCommand.d.ts +3 -6
- package/dist-types/commands/DeleteAddonCommand.d.ts +2 -2
- package/dist-types/commands/DeleteClusterCommand.d.ts +2 -2
- package/dist-types/commands/DeleteEksAnywhereSubscriptionCommand.d.ts +114 -0
- package/dist-types/commands/DeleteFargateProfileCommand.d.ts +2 -2
- package/dist-types/commands/DeleteNodegroupCommand.d.ts +2 -2
- package/dist-types/commands/DeregisterClusterCommand.d.ts +7 -6
- package/dist-types/commands/DescribeAddonCommand.d.ts +2 -2
- package/dist-types/commands/DescribeClusterCommand.d.ts +2 -2
- package/dist-types/commands/DescribeEksAnywhereSubscriptionCommand.d.ts +110 -0
- package/dist-types/commands/DescribeFargateProfileCommand.d.ts +2 -2
- package/dist-types/commands/DescribeIdentityProviderConfigCommand.d.ts +2 -2
- package/dist-types/commands/DescribeNodegroupCommand.d.ts +2 -2
- package/dist-types/commands/DescribeUpdateCommand.d.ts +2 -2
- package/dist-types/commands/DisassociateIdentityProviderConfigCommand.d.ts +4 -4
- package/dist-types/commands/ListAddonsCommand.d.ts +3 -3
- package/dist-types/commands/ListClustersCommand.d.ts +2 -2
- package/dist-types/commands/ListEksAnywhereSubscriptionsCommand.d.ts +115 -0
- package/dist-types/commands/ListFargateProfilesCommand.d.ts +2 -2
- package/dist-types/commands/ListIdentityProviderConfigsCommand.d.ts +2 -2
- package/dist-types/commands/ListNodegroupsCommand.d.ts +2 -2
- package/dist-types/commands/ListUpdatesCommand.d.ts +2 -2
- package/dist-types/commands/RegisterClusterCommand.d.ts +11 -10
- package/dist-types/commands/UpdateAddonCommand.d.ts +2 -2
- package/dist-types/commands/UpdateClusterConfigCommand.d.ts +5 -5
- package/dist-types/commands/UpdateClusterVersionCommand.d.ts +8 -8
- package/dist-types/commands/UpdateEksAnywhereSubscriptionCommand.d.ts +118 -0
- package/dist-types/commands/UpdateNodegroupConfigCommand.d.ts +4 -4
- package/dist-types/commands/UpdateNodegroupVersionCommand.d.ts +3 -4
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/index.d.ts +8 -9
- package/dist-types/models/models_0.d.ts +443 -102
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/EKS.d.ts +85 -0
- package/dist-types/ts3.4/EKSClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateEksAnywhereSubscriptionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteEksAnywhereSubscriptionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeEksAnywhereSubscriptionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListEksAnywhereSubscriptionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateEksAnywhereSubscriptionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +85 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +12 -12
|
@@ -4,10 +4,12 @@ import { AssociateEncryptionConfigCommandInput, AssociateEncryptionConfigCommand
|
|
|
4
4
|
import { AssociateIdentityProviderConfigCommandInput, AssociateIdentityProviderConfigCommandOutput } from "../commands/AssociateIdentityProviderConfigCommand";
|
|
5
5
|
import { CreateAddonCommandInput, CreateAddonCommandOutput } from "../commands/CreateAddonCommand";
|
|
6
6
|
import { CreateClusterCommandInput, CreateClusterCommandOutput } from "../commands/CreateClusterCommand";
|
|
7
|
+
import { CreateEksAnywhereSubscriptionCommandInput, CreateEksAnywhereSubscriptionCommandOutput } from "../commands/CreateEksAnywhereSubscriptionCommand";
|
|
7
8
|
import { CreateFargateProfileCommandInput, CreateFargateProfileCommandOutput } from "../commands/CreateFargateProfileCommand";
|
|
8
9
|
import { CreateNodegroupCommandInput, CreateNodegroupCommandOutput } from "../commands/CreateNodegroupCommand";
|
|
9
10
|
import { DeleteAddonCommandInput, DeleteAddonCommandOutput } from "../commands/DeleteAddonCommand";
|
|
10
11
|
import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "../commands/DeleteClusterCommand";
|
|
12
|
+
import { DeleteEksAnywhereSubscriptionCommandInput, DeleteEksAnywhereSubscriptionCommandOutput } from "../commands/DeleteEksAnywhereSubscriptionCommand";
|
|
11
13
|
import { DeleteFargateProfileCommandInput, DeleteFargateProfileCommandOutput } from "../commands/DeleteFargateProfileCommand";
|
|
12
14
|
import { DeleteNodegroupCommandInput, DeleteNodegroupCommandOutput } from "../commands/DeleteNodegroupCommand";
|
|
13
15
|
import { DeregisterClusterCommandInput, DeregisterClusterCommandOutput } from "../commands/DeregisterClusterCommand";
|
|
@@ -15,6 +17,7 @@ import { DescribeAddonCommandInput, DescribeAddonCommandOutput } from "../comman
|
|
|
15
17
|
import { DescribeAddonConfigurationCommandInput, DescribeAddonConfigurationCommandOutput } from "../commands/DescribeAddonConfigurationCommand";
|
|
16
18
|
import { DescribeAddonVersionsCommandInput, DescribeAddonVersionsCommandOutput } from "../commands/DescribeAddonVersionsCommand";
|
|
17
19
|
import { DescribeClusterCommandInput, DescribeClusterCommandOutput } from "../commands/DescribeClusterCommand";
|
|
20
|
+
import { DescribeEksAnywhereSubscriptionCommandInput, DescribeEksAnywhereSubscriptionCommandOutput } from "../commands/DescribeEksAnywhereSubscriptionCommand";
|
|
18
21
|
import { DescribeFargateProfileCommandInput, DescribeFargateProfileCommandOutput } from "../commands/DescribeFargateProfileCommand";
|
|
19
22
|
import { DescribeIdentityProviderConfigCommandInput, DescribeIdentityProviderConfigCommandOutput } from "../commands/DescribeIdentityProviderConfigCommand";
|
|
20
23
|
import { DescribeNodegroupCommandInput, DescribeNodegroupCommandOutput } from "../commands/DescribeNodegroupCommand";
|
|
@@ -22,6 +25,7 @@ import { DescribeUpdateCommandInput, DescribeUpdateCommandOutput } from "../comm
|
|
|
22
25
|
import { DisassociateIdentityProviderConfigCommandInput, DisassociateIdentityProviderConfigCommandOutput } from "../commands/DisassociateIdentityProviderConfigCommand";
|
|
23
26
|
import { ListAddonsCommandInput, ListAddonsCommandOutput } from "../commands/ListAddonsCommand";
|
|
24
27
|
import { ListClustersCommandInput, ListClustersCommandOutput } from "../commands/ListClustersCommand";
|
|
28
|
+
import { ListEksAnywhereSubscriptionsCommandInput, ListEksAnywhereSubscriptionsCommandOutput } from "../commands/ListEksAnywhereSubscriptionsCommand";
|
|
25
29
|
import { ListFargateProfilesCommandInput, ListFargateProfilesCommandOutput } from "../commands/ListFargateProfilesCommand";
|
|
26
30
|
import { ListIdentityProviderConfigsCommandInput, ListIdentityProviderConfigsCommandOutput } from "../commands/ListIdentityProviderConfigsCommand";
|
|
27
31
|
import { ListNodegroupsCommandInput, ListNodegroupsCommandOutput } from "../commands/ListNodegroupsCommand";
|
|
@@ -33,6 +37,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../comman
|
|
|
33
37
|
import { UpdateAddonCommandInput, UpdateAddonCommandOutput } from "../commands/UpdateAddonCommand";
|
|
34
38
|
import { UpdateClusterConfigCommandInput, UpdateClusterConfigCommandOutput } from "../commands/UpdateClusterConfigCommand";
|
|
35
39
|
import { UpdateClusterVersionCommandInput, UpdateClusterVersionCommandOutput } from "../commands/UpdateClusterVersionCommand";
|
|
40
|
+
import { UpdateEksAnywhereSubscriptionCommandInput, UpdateEksAnywhereSubscriptionCommandOutput } from "../commands/UpdateEksAnywhereSubscriptionCommand";
|
|
36
41
|
import { UpdateNodegroupConfigCommandInput, UpdateNodegroupConfigCommandOutput } from "../commands/UpdateNodegroupConfigCommand";
|
|
37
42
|
import { UpdateNodegroupVersionCommandInput, UpdateNodegroupVersionCommandOutput } from "../commands/UpdateNodegroupVersionCommand";
|
|
38
43
|
/**
|
|
@@ -51,6 +56,10 @@ export declare const se_CreateAddonCommand: (input: CreateAddonCommandInput, con
|
|
|
51
56
|
* serializeAws_restJson1CreateClusterCommand
|
|
52
57
|
*/
|
|
53
58
|
export declare const se_CreateClusterCommand: (input: CreateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
+
/**
|
|
60
|
+
* serializeAws_restJson1CreateEksAnywhereSubscriptionCommand
|
|
61
|
+
*/
|
|
62
|
+
export declare const se_CreateEksAnywhereSubscriptionCommand: (input: CreateEksAnywhereSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
63
|
/**
|
|
55
64
|
* serializeAws_restJson1CreateFargateProfileCommand
|
|
56
65
|
*/
|
|
@@ -67,6 +76,10 @@ export declare const se_DeleteAddonCommand: (input: DeleteAddonCommandInput, con
|
|
|
67
76
|
* serializeAws_restJson1DeleteClusterCommand
|
|
68
77
|
*/
|
|
69
78
|
export declare const se_DeleteClusterCommand: (input: DeleteClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
+
/**
|
|
80
|
+
* serializeAws_restJson1DeleteEksAnywhereSubscriptionCommand
|
|
81
|
+
*/
|
|
82
|
+
export declare const se_DeleteEksAnywhereSubscriptionCommand: (input: DeleteEksAnywhereSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
83
|
/**
|
|
71
84
|
* serializeAws_restJson1DeleteFargateProfileCommand
|
|
72
85
|
*/
|
|
@@ -95,6 +108,10 @@ export declare const se_DescribeAddonVersionsCommand: (input: DescribeAddonVersi
|
|
|
95
108
|
* serializeAws_restJson1DescribeClusterCommand
|
|
96
109
|
*/
|
|
97
110
|
export declare const se_DescribeClusterCommand: (input: DescribeClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
111
|
+
/**
|
|
112
|
+
* serializeAws_restJson1DescribeEksAnywhereSubscriptionCommand
|
|
113
|
+
*/
|
|
114
|
+
export declare const se_DescribeEksAnywhereSubscriptionCommand: (input: DescribeEksAnywhereSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
115
|
/**
|
|
99
116
|
* serializeAws_restJson1DescribeFargateProfileCommand
|
|
100
117
|
*/
|
|
@@ -123,6 +140,10 @@ export declare const se_ListAddonsCommand: (input: ListAddonsCommandInput, conte
|
|
|
123
140
|
* serializeAws_restJson1ListClustersCommand
|
|
124
141
|
*/
|
|
125
142
|
export declare const se_ListClustersCommand: (input: ListClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
143
|
+
/**
|
|
144
|
+
* serializeAws_restJson1ListEksAnywhereSubscriptionsCommand
|
|
145
|
+
*/
|
|
146
|
+
export declare const se_ListEksAnywhereSubscriptionsCommand: (input: ListEksAnywhereSubscriptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
147
|
/**
|
|
127
148
|
* serializeAws_restJson1ListFargateProfilesCommand
|
|
128
149
|
*/
|
|
@@ -167,6 +188,10 @@ export declare const se_UpdateClusterConfigCommand: (input: UpdateClusterConfigC
|
|
|
167
188
|
* serializeAws_restJson1UpdateClusterVersionCommand
|
|
168
189
|
*/
|
|
169
190
|
export declare const se_UpdateClusterVersionCommand: (input: UpdateClusterVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
191
|
+
/**
|
|
192
|
+
* serializeAws_restJson1UpdateEksAnywhereSubscriptionCommand
|
|
193
|
+
*/
|
|
194
|
+
export declare const se_UpdateEksAnywhereSubscriptionCommand: (input: UpdateEksAnywhereSubscriptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
170
195
|
/**
|
|
171
196
|
* serializeAws_restJson1UpdateNodegroupConfigCommand
|
|
172
197
|
*/
|
|
@@ -191,6 +216,10 @@ export declare const de_CreateAddonCommand: (output: __HttpResponse, context: __
|
|
|
191
216
|
* deserializeAws_restJson1CreateClusterCommand
|
|
192
217
|
*/
|
|
193
218
|
export declare const de_CreateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateClusterCommandOutput>;
|
|
219
|
+
/**
|
|
220
|
+
* deserializeAws_restJson1CreateEksAnywhereSubscriptionCommand
|
|
221
|
+
*/
|
|
222
|
+
export declare const de_CreateEksAnywhereSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEksAnywhereSubscriptionCommandOutput>;
|
|
194
223
|
/**
|
|
195
224
|
* deserializeAws_restJson1CreateFargateProfileCommand
|
|
196
225
|
*/
|
|
@@ -207,6 +236,10 @@ export declare const de_DeleteAddonCommand: (output: __HttpResponse, context: __
|
|
|
207
236
|
* deserializeAws_restJson1DeleteClusterCommand
|
|
208
237
|
*/
|
|
209
238
|
export declare const de_DeleteClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClusterCommandOutput>;
|
|
239
|
+
/**
|
|
240
|
+
* deserializeAws_restJson1DeleteEksAnywhereSubscriptionCommand
|
|
241
|
+
*/
|
|
242
|
+
export declare const de_DeleteEksAnywhereSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEksAnywhereSubscriptionCommandOutput>;
|
|
210
243
|
/**
|
|
211
244
|
* deserializeAws_restJson1DeleteFargateProfileCommand
|
|
212
245
|
*/
|
|
@@ -235,6 +268,10 @@ export declare const de_DescribeAddonVersionsCommand: (output: __HttpResponse, c
|
|
|
235
268
|
* deserializeAws_restJson1DescribeClusterCommand
|
|
236
269
|
*/
|
|
237
270
|
export declare const de_DescribeClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClusterCommandOutput>;
|
|
271
|
+
/**
|
|
272
|
+
* deserializeAws_restJson1DescribeEksAnywhereSubscriptionCommand
|
|
273
|
+
*/
|
|
274
|
+
export declare const de_DescribeEksAnywhereSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEksAnywhereSubscriptionCommandOutput>;
|
|
238
275
|
/**
|
|
239
276
|
* deserializeAws_restJson1DescribeFargateProfileCommand
|
|
240
277
|
*/
|
|
@@ -263,6 +300,10 @@ export declare const de_ListAddonsCommand: (output: __HttpResponse, context: __S
|
|
|
263
300
|
* deserializeAws_restJson1ListClustersCommand
|
|
264
301
|
*/
|
|
265
302
|
export declare const de_ListClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListClustersCommandOutput>;
|
|
303
|
+
/**
|
|
304
|
+
* deserializeAws_restJson1ListEksAnywhereSubscriptionsCommand
|
|
305
|
+
*/
|
|
306
|
+
export declare const de_ListEksAnywhereSubscriptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEksAnywhereSubscriptionsCommandOutput>;
|
|
266
307
|
/**
|
|
267
308
|
* deserializeAws_restJson1ListFargateProfilesCommand
|
|
268
309
|
*/
|
|
@@ -307,6 +348,10 @@ export declare const de_UpdateClusterConfigCommand: (output: __HttpResponse, con
|
|
|
307
348
|
* deserializeAws_restJson1UpdateClusterVersionCommand
|
|
308
349
|
*/
|
|
309
350
|
export declare const de_UpdateClusterVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateClusterVersionCommandOutput>;
|
|
351
|
+
/**
|
|
352
|
+
* deserializeAws_restJson1UpdateEksAnywhereSubscriptionCommand
|
|
353
|
+
*/
|
|
354
|
+
export declare const de_UpdateEksAnywhereSubscriptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEksAnywhereSubscriptionCommandOutput>;
|
|
310
355
|
/**
|
|
311
356
|
* deserializeAws_restJson1UpdateNodegroupConfigCommand
|
|
312
357
|
*/
|
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
CreateClusterCommandInput,
|
|
16
16
|
CreateClusterCommandOutput,
|
|
17
17
|
} from "./commands/CreateClusterCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateEksAnywhereSubscriptionCommandInput,
|
|
20
|
+
CreateEksAnywhereSubscriptionCommandOutput,
|
|
21
|
+
} from "./commands/CreateEksAnywhereSubscriptionCommand";
|
|
18
22
|
import {
|
|
19
23
|
CreateFargateProfileCommandInput,
|
|
20
24
|
CreateFargateProfileCommandOutput,
|
|
@@ -31,6 +35,10 @@ import {
|
|
|
31
35
|
DeleteClusterCommandInput,
|
|
32
36
|
DeleteClusterCommandOutput,
|
|
33
37
|
} from "./commands/DeleteClusterCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteEksAnywhereSubscriptionCommandInput,
|
|
40
|
+
DeleteEksAnywhereSubscriptionCommandOutput,
|
|
41
|
+
} from "./commands/DeleteEksAnywhereSubscriptionCommand";
|
|
34
42
|
import {
|
|
35
43
|
DeleteFargateProfileCommandInput,
|
|
36
44
|
DeleteFargateProfileCommandOutput,
|
|
@@ -59,6 +67,10 @@ import {
|
|
|
59
67
|
DescribeClusterCommandInput,
|
|
60
68
|
DescribeClusterCommandOutput,
|
|
61
69
|
} from "./commands/DescribeClusterCommand";
|
|
70
|
+
import {
|
|
71
|
+
DescribeEksAnywhereSubscriptionCommandInput,
|
|
72
|
+
DescribeEksAnywhereSubscriptionCommandOutput,
|
|
73
|
+
} from "./commands/DescribeEksAnywhereSubscriptionCommand";
|
|
62
74
|
import {
|
|
63
75
|
DescribeFargateProfileCommandInput,
|
|
64
76
|
DescribeFargateProfileCommandOutput,
|
|
@@ -87,6 +99,10 @@ import {
|
|
|
87
99
|
ListClustersCommandInput,
|
|
88
100
|
ListClustersCommandOutput,
|
|
89
101
|
} from "./commands/ListClustersCommand";
|
|
102
|
+
import {
|
|
103
|
+
ListEksAnywhereSubscriptionsCommandInput,
|
|
104
|
+
ListEksAnywhereSubscriptionsCommandOutput,
|
|
105
|
+
} from "./commands/ListEksAnywhereSubscriptionsCommand";
|
|
90
106
|
import {
|
|
91
107
|
ListFargateProfilesCommandInput,
|
|
92
108
|
ListFargateProfilesCommandOutput,
|
|
@@ -131,6 +147,10 @@ import {
|
|
|
131
147
|
UpdateClusterVersionCommandInput,
|
|
132
148
|
UpdateClusterVersionCommandOutput,
|
|
133
149
|
} from "./commands/UpdateClusterVersionCommand";
|
|
150
|
+
import {
|
|
151
|
+
UpdateEksAnywhereSubscriptionCommandInput,
|
|
152
|
+
UpdateEksAnywhereSubscriptionCommandOutput,
|
|
153
|
+
} from "./commands/UpdateEksAnywhereSubscriptionCommand";
|
|
134
154
|
import {
|
|
135
155
|
UpdateNodegroupConfigCommandInput,
|
|
136
156
|
UpdateNodegroupConfigCommandOutput,
|
|
@@ -193,6 +213,19 @@ export interface EKS {
|
|
|
193
213
|
options: __HttpHandlerOptions,
|
|
194
214
|
cb: (err: any, data?: CreateClusterCommandOutput) => void
|
|
195
215
|
): void;
|
|
216
|
+
createEksAnywhereSubscription(
|
|
217
|
+
args: CreateEksAnywhereSubscriptionCommandInput,
|
|
218
|
+
options?: __HttpHandlerOptions
|
|
219
|
+
): Promise<CreateEksAnywhereSubscriptionCommandOutput>;
|
|
220
|
+
createEksAnywhereSubscription(
|
|
221
|
+
args: CreateEksAnywhereSubscriptionCommandInput,
|
|
222
|
+
cb: (err: any, data?: CreateEksAnywhereSubscriptionCommandOutput) => void
|
|
223
|
+
): void;
|
|
224
|
+
createEksAnywhereSubscription(
|
|
225
|
+
args: CreateEksAnywhereSubscriptionCommandInput,
|
|
226
|
+
options: __HttpHandlerOptions,
|
|
227
|
+
cb: (err: any, data?: CreateEksAnywhereSubscriptionCommandOutput) => void
|
|
228
|
+
): void;
|
|
196
229
|
createFargateProfile(
|
|
197
230
|
args: CreateFargateProfileCommandInput,
|
|
198
231
|
options?: __HttpHandlerOptions
|
|
@@ -245,6 +278,19 @@ export interface EKS {
|
|
|
245
278
|
options: __HttpHandlerOptions,
|
|
246
279
|
cb: (err: any, data?: DeleteClusterCommandOutput) => void
|
|
247
280
|
): void;
|
|
281
|
+
deleteEksAnywhereSubscription(
|
|
282
|
+
args: DeleteEksAnywhereSubscriptionCommandInput,
|
|
283
|
+
options?: __HttpHandlerOptions
|
|
284
|
+
): Promise<DeleteEksAnywhereSubscriptionCommandOutput>;
|
|
285
|
+
deleteEksAnywhereSubscription(
|
|
286
|
+
args: DeleteEksAnywhereSubscriptionCommandInput,
|
|
287
|
+
cb: (err: any, data?: DeleteEksAnywhereSubscriptionCommandOutput) => void
|
|
288
|
+
): void;
|
|
289
|
+
deleteEksAnywhereSubscription(
|
|
290
|
+
args: DeleteEksAnywhereSubscriptionCommandInput,
|
|
291
|
+
options: __HttpHandlerOptions,
|
|
292
|
+
cb: (err: any, data?: DeleteEksAnywhereSubscriptionCommandOutput) => void
|
|
293
|
+
): void;
|
|
248
294
|
deleteFargateProfile(
|
|
249
295
|
args: DeleteFargateProfileCommandInput,
|
|
250
296
|
options?: __HttpHandlerOptions
|
|
@@ -336,6 +382,19 @@ export interface EKS {
|
|
|
336
382
|
options: __HttpHandlerOptions,
|
|
337
383
|
cb: (err: any, data?: DescribeClusterCommandOutput) => void
|
|
338
384
|
): void;
|
|
385
|
+
describeEksAnywhereSubscription(
|
|
386
|
+
args: DescribeEksAnywhereSubscriptionCommandInput,
|
|
387
|
+
options?: __HttpHandlerOptions
|
|
388
|
+
): Promise<DescribeEksAnywhereSubscriptionCommandOutput>;
|
|
389
|
+
describeEksAnywhereSubscription(
|
|
390
|
+
args: DescribeEksAnywhereSubscriptionCommandInput,
|
|
391
|
+
cb: (err: any, data?: DescribeEksAnywhereSubscriptionCommandOutput) => void
|
|
392
|
+
): void;
|
|
393
|
+
describeEksAnywhereSubscription(
|
|
394
|
+
args: DescribeEksAnywhereSubscriptionCommandInput,
|
|
395
|
+
options: __HttpHandlerOptions,
|
|
396
|
+
cb: (err: any, data?: DescribeEksAnywhereSubscriptionCommandOutput) => void
|
|
397
|
+
): void;
|
|
339
398
|
describeFargateProfile(
|
|
340
399
|
args: DescribeFargateProfileCommandInput,
|
|
341
400
|
options?: __HttpHandlerOptions
|
|
@@ -433,6 +492,19 @@ export interface EKS {
|
|
|
433
492
|
options: __HttpHandlerOptions,
|
|
434
493
|
cb: (err: any, data?: ListClustersCommandOutput) => void
|
|
435
494
|
): void;
|
|
495
|
+
listEksAnywhereSubscriptions(
|
|
496
|
+
args: ListEksAnywhereSubscriptionsCommandInput,
|
|
497
|
+
options?: __HttpHandlerOptions
|
|
498
|
+
): Promise<ListEksAnywhereSubscriptionsCommandOutput>;
|
|
499
|
+
listEksAnywhereSubscriptions(
|
|
500
|
+
args: ListEksAnywhereSubscriptionsCommandInput,
|
|
501
|
+
cb: (err: any, data?: ListEksAnywhereSubscriptionsCommandOutput) => void
|
|
502
|
+
): void;
|
|
503
|
+
listEksAnywhereSubscriptions(
|
|
504
|
+
args: ListEksAnywhereSubscriptionsCommandInput,
|
|
505
|
+
options: __HttpHandlerOptions,
|
|
506
|
+
cb: (err: any, data?: ListEksAnywhereSubscriptionsCommandOutput) => void
|
|
507
|
+
): void;
|
|
436
508
|
listFargateProfiles(
|
|
437
509
|
args: ListFargateProfilesCommandInput,
|
|
438
510
|
options?: __HttpHandlerOptions
|
|
@@ -576,6 +648,19 @@ export interface EKS {
|
|
|
576
648
|
options: __HttpHandlerOptions,
|
|
577
649
|
cb: (err: any, data?: UpdateClusterVersionCommandOutput) => void
|
|
578
650
|
): void;
|
|
651
|
+
updateEksAnywhereSubscription(
|
|
652
|
+
args: UpdateEksAnywhereSubscriptionCommandInput,
|
|
653
|
+
options?: __HttpHandlerOptions
|
|
654
|
+
): Promise<UpdateEksAnywhereSubscriptionCommandOutput>;
|
|
655
|
+
updateEksAnywhereSubscription(
|
|
656
|
+
args: UpdateEksAnywhereSubscriptionCommandInput,
|
|
657
|
+
cb: (err: any, data?: UpdateEksAnywhereSubscriptionCommandOutput) => void
|
|
658
|
+
): void;
|
|
659
|
+
updateEksAnywhereSubscription(
|
|
660
|
+
args: UpdateEksAnywhereSubscriptionCommandInput,
|
|
661
|
+
options: __HttpHandlerOptions,
|
|
662
|
+
cb: (err: any, data?: UpdateEksAnywhereSubscriptionCommandOutput) => void
|
|
663
|
+
): void;
|
|
579
664
|
updateNodegroupConfig(
|
|
580
665
|
args: UpdateNodegroupConfigCommandInput,
|
|
581
666
|
options?: __HttpHandlerOptions
|
|
@@ -61,6 +61,10 @@ import {
|
|
|
61
61
|
CreateClusterCommandInput,
|
|
62
62
|
CreateClusterCommandOutput,
|
|
63
63
|
} from "./commands/CreateClusterCommand";
|
|
64
|
+
import {
|
|
65
|
+
CreateEksAnywhereSubscriptionCommandInput,
|
|
66
|
+
CreateEksAnywhereSubscriptionCommandOutput,
|
|
67
|
+
} from "./commands/CreateEksAnywhereSubscriptionCommand";
|
|
64
68
|
import {
|
|
65
69
|
CreateFargateProfileCommandInput,
|
|
66
70
|
CreateFargateProfileCommandOutput,
|
|
@@ -77,6 +81,10 @@ import {
|
|
|
77
81
|
DeleteClusterCommandInput,
|
|
78
82
|
DeleteClusterCommandOutput,
|
|
79
83
|
} from "./commands/DeleteClusterCommand";
|
|
84
|
+
import {
|
|
85
|
+
DeleteEksAnywhereSubscriptionCommandInput,
|
|
86
|
+
DeleteEksAnywhereSubscriptionCommandOutput,
|
|
87
|
+
} from "./commands/DeleteEksAnywhereSubscriptionCommand";
|
|
80
88
|
import {
|
|
81
89
|
DeleteFargateProfileCommandInput,
|
|
82
90
|
DeleteFargateProfileCommandOutput,
|
|
@@ -105,6 +113,10 @@ import {
|
|
|
105
113
|
DescribeClusterCommandInput,
|
|
106
114
|
DescribeClusterCommandOutput,
|
|
107
115
|
} from "./commands/DescribeClusterCommand";
|
|
116
|
+
import {
|
|
117
|
+
DescribeEksAnywhereSubscriptionCommandInput,
|
|
118
|
+
DescribeEksAnywhereSubscriptionCommandOutput,
|
|
119
|
+
} from "./commands/DescribeEksAnywhereSubscriptionCommand";
|
|
108
120
|
import {
|
|
109
121
|
DescribeFargateProfileCommandInput,
|
|
110
122
|
DescribeFargateProfileCommandOutput,
|
|
@@ -133,6 +145,10 @@ import {
|
|
|
133
145
|
ListClustersCommandInput,
|
|
134
146
|
ListClustersCommandOutput,
|
|
135
147
|
} from "./commands/ListClustersCommand";
|
|
148
|
+
import {
|
|
149
|
+
ListEksAnywhereSubscriptionsCommandInput,
|
|
150
|
+
ListEksAnywhereSubscriptionsCommandOutput,
|
|
151
|
+
} from "./commands/ListEksAnywhereSubscriptionsCommand";
|
|
136
152
|
import {
|
|
137
153
|
ListFargateProfilesCommandInput,
|
|
138
154
|
ListFargateProfilesCommandOutput,
|
|
@@ -177,6 +193,10 @@ import {
|
|
|
177
193
|
UpdateClusterVersionCommandInput,
|
|
178
194
|
UpdateClusterVersionCommandOutput,
|
|
179
195
|
} from "./commands/UpdateClusterVersionCommand";
|
|
196
|
+
import {
|
|
197
|
+
UpdateEksAnywhereSubscriptionCommandInput,
|
|
198
|
+
UpdateEksAnywhereSubscriptionCommandOutput,
|
|
199
|
+
} from "./commands/UpdateEksAnywhereSubscriptionCommand";
|
|
180
200
|
import {
|
|
181
201
|
UpdateNodegroupConfigCommandInput,
|
|
182
202
|
UpdateNodegroupConfigCommandOutput,
|
|
@@ -197,10 +217,12 @@ export type ServiceInputTypes =
|
|
|
197
217
|
| AssociateIdentityProviderConfigCommandInput
|
|
198
218
|
| CreateAddonCommandInput
|
|
199
219
|
| CreateClusterCommandInput
|
|
220
|
+
| CreateEksAnywhereSubscriptionCommandInput
|
|
200
221
|
| CreateFargateProfileCommandInput
|
|
201
222
|
| CreateNodegroupCommandInput
|
|
202
223
|
| DeleteAddonCommandInput
|
|
203
224
|
| DeleteClusterCommandInput
|
|
225
|
+
| DeleteEksAnywhereSubscriptionCommandInput
|
|
204
226
|
| DeleteFargateProfileCommandInput
|
|
205
227
|
| DeleteNodegroupCommandInput
|
|
206
228
|
| DeregisterClusterCommandInput
|
|
@@ -208,6 +230,7 @@ export type ServiceInputTypes =
|
|
|
208
230
|
| DescribeAddonConfigurationCommandInput
|
|
209
231
|
| DescribeAddonVersionsCommandInput
|
|
210
232
|
| DescribeClusterCommandInput
|
|
233
|
+
| DescribeEksAnywhereSubscriptionCommandInput
|
|
211
234
|
| DescribeFargateProfileCommandInput
|
|
212
235
|
| DescribeIdentityProviderConfigCommandInput
|
|
213
236
|
| DescribeNodegroupCommandInput
|
|
@@ -215,6 +238,7 @@ export type ServiceInputTypes =
|
|
|
215
238
|
| DisassociateIdentityProviderConfigCommandInput
|
|
216
239
|
| ListAddonsCommandInput
|
|
217
240
|
| ListClustersCommandInput
|
|
241
|
+
| ListEksAnywhereSubscriptionsCommandInput
|
|
218
242
|
| ListFargateProfilesCommandInput
|
|
219
243
|
| ListIdentityProviderConfigsCommandInput
|
|
220
244
|
| ListNodegroupsCommandInput
|
|
@@ -226,6 +250,7 @@ export type ServiceInputTypes =
|
|
|
226
250
|
| UpdateAddonCommandInput
|
|
227
251
|
| UpdateClusterConfigCommandInput
|
|
228
252
|
| UpdateClusterVersionCommandInput
|
|
253
|
+
| UpdateEksAnywhereSubscriptionCommandInput
|
|
229
254
|
| UpdateNodegroupConfigCommandInput
|
|
230
255
|
| UpdateNodegroupVersionCommandInput;
|
|
231
256
|
export type ServiceOutputTypes =
|
|
@@ -233,10 +258,12 @@ export type ServiceOutputTypes =
|
|
|
233
258
|
| AssociateIdentityProviderConfigCommandOutput
|
|
234
259
|
| CreateAddonCommandOutput
|
|
235
260
|
| CreateClusterCommandOutput
|
|
261
|
+
| CreateEksAnywhereSubscriptionCommandOutput
|
|
236
262
|
| CreateFargateProfileCommandOutput
|
|
237
263
|
| CreateNodegroupCommandOutput
|
|
238
264
|
| DeleteAddonCommandOutput
|
|
239
265
|
| DeleteClusterCommandOutput
|
|
266
|
+
| DeleteEksAnywhereSubscriptionCommandOutput
|
|
240
267
|
| DeleteFargateProfileCommandOutput
|
|
241
268
|
| DeleteNodegroupCommandOutput
|
|
242
269
|
| DeregisterClusterCommandOutput
|
|
@@ -244,6 +271,7 @@ export type ServiceOutputTypes =
|
|
|
244
271
|
| DescribeAddonConfigurationCommandOutput
|
|
245
272
|
| DescribeAddonVersionsCommandOutput
|
|
246
273
|
| DescribeClusterCommandOutput
|
|
274
|
+
| DescribeEksAnywhereSubscriptionCommandOutput
|
|
247
275
|
| DescribeFargateProfileCommandOutput
|
|
248
276
|
| DescribeIdentityProviderConfigCommandOutput
|
|
249
277
|
| DescribeNodegroupCommandOutput
|
|
@@ -251,6 +279,7 @@ export type ServiceOutputTypes =
|
|
|
251
279
|
| DisassociateIdentityProviderConfigCommandOutput
|
|
252
280
|
| ListAddonsCommandOutput
|
|
253
281
|
| ListClustersCommandOutput
|
|
282
|
+
| ListEksAnywhereSubscriptionsCommandOutput
|
|
254
283
|
| ListFargateProfilesCommandOutput
|
|
255
284
|
| ListIdentityProviderConfigsCommandOutput
|
|
256
285
|
| ListNodegroupsCommandOutput
|
|
@@ -262,6 +291,7 @@ export type ServiceOutputTypes =
|
|
|
262
291
|
| UpdateAddonCommandOutput
|
|
263
292
|
| UpdateClusterConfigCommandOutput
|
|
264
293
|
| UpdateClusterVersionCommandOutput
|
|
294
|
+
| UpdateEksAnywhereSubscriptionCommandOutput
|
|
265
295
|
| UpdateNodegroupConfigCommandOutput
|
|
266
296
|
| UpdateNodegroupVersionCommandOutput;
|
|
267
297
|
export interface ClientDefaults
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
EKSClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../EKSClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateEksAnywhereSubscriptionRequest,
|
|
16
|
+
CreateEksAnywhereSubscriptionResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateEksAnywhereSubscriptionCommandInput
|
|
20
|
+
extends CreateEksAnywhereSubscriptionRequest {}
|
|
21
|
+
export interface CreateEksAnywhereSubscriptionCommandOutput
|
|
22
|
+
extends CreateEksAnywhereSubscriptionResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateEksAnywhereSubscriptionCommand extends $Command<
|
|
25
|
+
CreateEksAnywhereSubscriptionCommandInput,
|
|
26
|
+
CreateEksAnywhereSubscriptionCommandOutput,
|
|
27
|
+
EKSClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateEksAnywhereSubscriptionCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateEksAnywhereSubscriptionCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: EKSClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CreateEksAnywhereSubscriptionCommandInput,
|
|
38
|
+
CreateEksAnywhereSubscriptionCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
EKSClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../EKSClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteEksAnywhereSubscriptionRequest,
|
|
16
|
+
DeleteEksAnywhereSubscriptionResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeleteEksAnywhereSubscriptionCommandInput
|
|
20
|
+
extends DeleteEksAnywhereSubscriptionRequest {}
|
|
21
|
+
export interface DeleteEksAnywhereSubscriptionCommandOutput
|
|
22
|
+
extends DeleteEksAnywhereSubscriptionResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeleteEksAnywhereSubscriptionCommand extends $Command<
|
|
25
|
+
DeleteEksAnywhereSubscriptionCommandInput,
|
|
26
|
+
DeleteEksAnywhereSubscriptionCommandOutput,
|
|
27
|
+
EKSClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeleteEksAnywhereSubscriptionCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeleteEksAnywhereSubscriptionCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: EKSClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DeleteEksAnywhereSubscriptionCommandInput,
|
|
38
|
+
DeleteEksAnywhereSubscriptionCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
EKSClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../EKSClient";
|
|
14
|
+
import {
|
|
15
|
+
DescribeEksAnywhereSubscriptionRequest,
|
|
16
|
+
DescribeEksAnywhereSubscriptionResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DescribeEksAnywhereSubscriptionCommandInput
|
|
20
|
+
extends DescribeEksAnywhereSubscriptionRequest {}
|
|
21
|
+
export interface DescribeEksAnywhereSubscriptionCommandOutput
|
|
22
|
+
extends DescribeEksAnywhereSubscriptionResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DescribeEksAnywhereSubscriptionCommand extends $Command<
|
|
25
|
+
DescribeEksAnywhereSubscriptionCommandInput,
|
|
26
|
+
DescribeEksAnywhereSubscriptionCommandOutput,
|
|
27
|
+
EKSClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DescribeEksAnywhereSubscriptionCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DescribeEksAnywhereSubscriptionCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: EKSClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DescribeEksAnywhereSubscriptionCommandInput,
|
|
38
|
+
DescribeEksAnywhereSubscriptionCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
EKSClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../EKSClient";
|
|
14
|
+
import {
|
|
15
|
+
ListEksAnywhereSubscriptionsRequest,
|
|
16
|
+
ListEksAnywhereSubscriptionsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListEksAnywhereSubscriptionsCommandInput
|
|
20
|
+
extends ListEksAnywhereSubscriptionsRequest {}
|
|
21
|
+
export interface ListEksAnywhereSubscriptionsCommandOutput
|
|
22
|
+
extends ListEksAnywhereSubscriptionsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListEksAnywhereSubscriptionsCommand extends $Command<
|
|
25
|
+
ListEksAnywhereSubscriptionsCommandInput,
|
|
26
|
+
ListEksAnywhereSubscriptionsCommandOutput,
|
|
27
|
+
EKSClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListEksAnywhereSubscriptionsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListEksAnywhereSubscriptionsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: EKSClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListEksAnywhereSubscriptionsCommandInput,
|
|
38
|
+
ListEksAnywhereSubscriptionsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
EKSClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../EKSClient";
|
|
14
|
+
import {
|
|
15
|
+
UpdateEksAnywhereSubscriptionRequest,
|
|
16
|
+
UpdateEksAnywhereSubscriptionResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UpdateEksAnywhereSubscriptionCommandInput
|
|
20
|
+
extends UpdateEksAnywhereSubscriptionRequest {}
|
|
21
|
+
export interface UpdateEksAnywhereSubscriptionCommandOutput
|
|
22
|
+
extends UpdateEksAnywhereSubscriptionResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class UpdateEksAnywhereSubscriptionCommand extends $Command<
|
|
25
|
+
UpdateEksAnywhereSubscriptionCommandInput,
|
|
26
|
+
UpdateEksAnywhereSubscriptionCommandOutput,
|
|
27
|
+
EKSClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: UpdateEksAnywhereSubscriptionCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: UpdateEksAnywhereSubscriptionCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: EKSClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
UpdateEksAnywhereSubscriptionCommandInput,
|
|
38
|
+
UpdateEksAnywhereSubscriptionCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -2,10 +2,12 @@ export * from "./AssociateEncryptionConfigCommand";
|
|
|
2
2
|
export * from "./AssociateIdentityProviderConfigCommand";
|
|
3
3
|
export * from "./CreateAddonCommand";
|
|
4
4
|
export * from "./CreateClusterCommand";
|
|
5
|
+
export * from "./CreateEksAnywhereSubscriptionCommand";
|
|
5
6
|
export * from "./CreateFargateProfileCommand";
|
|
6
7
|
export * from "./CreateNodegroupCommand";
|
|
7
8
|
export * from "./DeleteAddonCommand";
|
|
8
9
|
export * from "./DeleteClusterCommand";
|
|
10
|
+
export * from "./DeleteEksAnywhereSubscriptionCommand";
|
|
9
11
|
export * from "./DeleteFargateProfileCommand";
|
|
10
12
|
export * from "./DeleteNodegroupCommand";
|
|
11
13
|
export * from "./DeregisterClusterCommand";
|
|
@@ -13,6 +15,7 @@ export * from "./DescribeAddonCommand";
|
|
|
13
15
|
export * from "./DescribeAddonConfigurationCommand";
|
|
14
16
|
export * from "./DescribeAddonVersionsCommand";
|
|
15
17
|
export * from "./DescribeClusterCommand";
|
|
18
|
+
export * from "./DescribeEksAnywhereSubscriptionCommand";
|
|
16
19
|
export * from "./DescribeFargateProfileCommand";
|
|
17
20
|
export * from "./DescribeIdentityProviderConfigCommand";
|
|
18
21
|
export * from "./DescribeNodegroupCommand";
|
|
@@ -20,6 +23,7 @@ export * from "./DescribeUpdateCommand";
|
|
|
20
23
|
export * from "./DisassociateIdentityProviderConfigCommand";
|
|
21
24
|
export * from "./ListAddonsCommand";
|
|
22
25
|
export * from "./ListClustersCommand";
|
|
26
|
+
export * from "./ListEksAnywhereSubscriptionsCommand";
|
|
23
27
|
export * from "./ListFargateProfilesCommand";
|
|
24
28
|
export * from "./ListIdentityProviderConfigsCommand";
|
|
25
29
|
export * from "./ListNodegroupsCommand";
|
|
@@ -31,5 +35,6 @@ export * from "./UntagResourceCommand";
|
|
|
31
35
|
export * from "./UpdateAddonCommand";
|
|
32
36
|
export * from "./UpdateClusterConfigCommand";
|
|
33
37
|
export * from "./UpdateClusterVersionCommand";
|
|
38
|
+
export * from "./UpdateEksAnywhereSubscriptionCommand";
|
|
34
39
|
export * from "./UpdateNodegroupConfigCommand";
|
|
35
40
|
export * from "./UpdateNodegroupVersionCommand";
|