@aws-sdk/client-eks 3.940.0 → 3.942.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 +40 -0
- package/dist-cjs/index.js +435 -68
- package/dist-es/EKS.js +10 -0
- package/dist-es/commands/CreateCapabilityCommand.js +16 -0
- package/dist-es/commands/DeleteCapabilityCommand.js +16 -0
- package/dist-es/commands/DescribeCapabilityCommand.js +16 -0
- package/dist-es/commands/ListCapabilitiesCommand.js +16 -0
- package/dist-es/commands/UpdateCapabilityCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +30 -0
- package/dist-es/pagination/ListCapabilitiesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +326 -68
- package/dist-types/EKS.d.ts +35 -0
- package/dist-types/EKSClient.d.ts +7 -2
- package/dist-types/commands/CreateCapabilityCommand.d.ts +186 -0
- package/dist-types/commands/DeleteCapabilityCommand.d.ts +147 -0
- package/dist-types/commands/DescribeCapabilityCommand.d.ts +143 -0
- package/dist-types/commands/DescribeUpdateCommand.d.ts +1 -0
- package/dist-types/commands/ListCapabilitiesCommand.d.ts +94 -0
- package/dist-types/commands/ListUpdatesCommand.d.ts +1 -0
- package/dist-types/commands/UpdateCapabilityCommand.d.ts +154 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +78 -0
- package/dist-types/models/models_0.d.ts +672 -1
- package/dist-types/pagination/ListCapabilitiesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +36 -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/CreateCapabilityCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteCapabilityCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeCapabilityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCapabilitiesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateCapabilityCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +41 -0
- package/dist-types/ts3.4/models/models_0.d.ts +139 -0
- package/dist-types/ts3.4/pagination/ListCapabilitiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +36 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListCapabilitiesCommandInput, ListCapabilitiesCommandOutput } from "../commands/ListCapabilitiesCommand";
|
|
3
|
+
import { EKSPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListCapabilities: (config: EKSPaginationConfiguration, input: ListCapabilitiesCommandInput, ...rest: any[]) => Paginator<ListCapabilitiesCommandOutput>;
|
|
@@ -5,6 +5,7 @@ export * from "./ListAccessEntriesPaginator";
|
|
|
5
5
|
export * from "./ListAccessPoliciesPaginator";
|
|
6
6
|
export * from "./ListAddonsPaginator";
|
|
7
7
|
export * from "./ListAssociatedAccessPoliciesPaginator";
|
|
8
|
+
export * from "./ListCapabilitiesPaginator";
|
|
8
9
|
export * from "./ListClustersPaginator";
|
|
9
10
|
export * from "./ListEksAnywhereSubscriptionsPaginator";
|
|
10
11
|
export * from "./ListFargateProfilesPaginator";
|
|
@@ -14,6 +14,13 @@ export declare var AddonNamespaceConfigResponse: StaticStructureSchema;
|
|
|
14
14
|
export declare var AddonPodIdentityAssociations: StaticStructureSchema;
|
|
15
15
|
export declare var AddonPodIdentityConfiguration: StaticStructureSchema;
|
|
16
16
|
export declare var AddonVersionInfo: StaticStructureSchema;
|
|
17
|
+
export declare var ArgoCdAwsIdcConfigRequest: StaticStructureSchema;
|
|
18
|
+
export declare var ArgoCdAwsIdcConfigResponse: StaticStructureSchema;
|
|
19
|
+
export declare var ArgoCdConfigRequest: StaticStructureSchema;
|
|
20
|
+
export declare var ArgoCdConfigResponse: StaticStructureSchema;
|
|
21
|
+
export declare var ArgoCdNetworkAccessConfigRequest: StaticStructureSchema;
|
|
22
|
+
export declare var ArgoCdNetworkAccessConfigResponse: StaticStructureSchema;
|
|
23
|
+
export declare var ArgoCdRoleMapping: StaticStructureSchema;
|
|
17
24
|
export declare var AssociateAccessPolicyRequest: StaticStructureSchema;
|
|
18
25
|
export declare var AssociateAccessPolicyResponse: StaticStructureSchema;
|
|
19
26
|
export declare var AssociatedAccessPolicy: StaticStructureSchema;
|
|
@@ -24,6 +31,12 @@ export declare var AssociateIdentityProviderConfigResponse: StaticStructureSchem
|
|
|
24
31
|
export declare var AutoScalingGroup: StaticStructureSchema;
|
|
25
32
|
export declare var BadRequestException: StaticErrorSchema;
|
|
26
33
|
export declare var BlockStorage: StaticStructureSchema;
|
|
34
|
+
export declare var Capability: StaticStructureSchema;
|
|
35
|
+
export declare var CapabilityConfigurationRequest: StaticStructureSchema;
|
|
36
|
+
export declare var CapabilityConfigurationResponse: StaticStructureSchema;
|
|
37
|
+
export declare var CapabilityHealth: StaticStructureSchema;
|
|
38
|
+
export declare var CapabilityIssue: StaticStructureSchema;
|
|
39
|
+
export declare var CapabilitySummary: StaticStructureSchema;
|
|
27
40
|
export declare var Certificate: StaticStructureSchema;
|
|
28
41
|
export declare var ClientException: StaticErrorSchema;
|
|
29
42
|
export declare var ClientStat: StaticStructureSchema;
|
|
@@ -44,6 +57,8 @@ export declare var CreateAccessEntryRequest: StaticStructureSchema;
|
|
|
44
57
|
export declare var CreateAccessEntryResponse: StaticStructureSchema;
|
|
45
58
|
export declare var CreateAddonRequest: StaticStructureSchema;
|
|
46
59
|
export declare var CreateAddonResponse: StaticStructureSchema;
|
|
60
|
+
export declare var CreateCapabilityRequest: StaticStructureSchema;
|
|
61
|
+
export declare var CreateCapabilityResponse: StaticStructureSchema;
|
|
47
62
|
export declare var CreateClusterRequest: StaticStructureSchema;
|
|
48
63
|
export declare var CreateClusterResponse: StaticStructureSchema;
|
|
49
64
|
export declare var CreateEksAnywhereSubscriptionRequest: StaticStructureSchema;
|
|
@@ -58,6 +73,8 @@ export declare var DeleteAccessEntryRequest: StaticStructureSchema;
|
|
|
58
73
|
export declare var DeleteAccessEntryResponse: StaticStructureSchema;
|
|
59
74
|
export declare var DeleteAddonRequest: StaticStructureSchema;
|
|
60
75
|
export declare var DeleteAddonResponse: StaticStructureSchema;
|
|
76
|
+
export declare var DeleteCapabilityRequest: StaticStructureSchema;
|
|
77
|
+
export declare var DeleteCapabilityResponse: StaticStructureSchema;
|
|
61
78
|
export declare var DeleteClusterRequest: StaticStructureSchema;
|
|
62
79
|
export declare var DeleteClusterResponse: StaticStructureSchema;
|
|
63
80
|
export declare var DeleteEksAnywhereSubscriptionRequest: StaticStructureSchema;
|
|
@@ -79,6 +96,8 @@ export declare var DescribeAddonRequest: StaticStructureSchema;
|
|
|
79
96
|
export declare var DescribeAddonResponse: StaticStructureSchema;
|
|
80
97
|
export declare var DescribeAddonVersionsRequest: StaticStructureSchema;
|
|
81
98
|
export declare var DescribeAddonVersionsResponse: StaticStructureSchema;
|
|
99
|
+
export declare var DescribeCapabilityRequest: StaticStructureSchema;
|
|
100
|
+
export declare var DescribeCapabilityResponse: StaticStructureSchema;
|
|
82
101
|
export declare var DescribeClusterRequest: StaticStructureSchema;
|
|
83
102
|
export declare var DescribeClusterResponse: StaticStructureSchema;
|
|
84
103
|
export declare var DescribeClusterVersionsRequest: StaticStructureSchema;
|
|
@@ -137,6 +156,8 @@ export declare var ListAddonsRequest: StaticStructureSchema;
|
|
|
137
156
|
export declare var ListAddonsResponse: StaticStructureSchema;
|
|
138
157
|
export declare var ListAssociatedAccessPoliciesRequest: StaticStructureSchema;
|
|
139
158
|
export declare var ListAssociatedAccessPoliciesResponse: StaticStructureSchema;
|
|
159
|
+
export declare var ListCapabilitiesRequest: StaticStructureSchema;
|
|
160
|
+
export declare var ListCapabilitiesResponse: StaticStructureSchema;
|
|
140
161
|
export declare var ListClustersRequest: StaticStructureSchema;
|
|
141
162
|
export declare var ListClustersResponse: StaticStructureSchema;
|
|
142
163
|
export declare var ListEksAnywhereSubscriptionsRequest: StaticStructureSchema;
|
|
@@ -187,6 +208,7 @@ export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
|
187
208
|
export declare var ResourcePropagationDelayException: StaticErrorSchema;
|
|
188
209
|
export declare var ServerException: StaticErrorSchema;
|
|
189
210
|
export declare var ServiceUnavailableException: StaticErrorSchema;
|
|
211
|
+
export declare var SsoIdentity: StaticStructureSchema;
|
|
190
212
|
export declare var StartInsightsRefreshRequest: StaticStructureSchema;
|
|
191
213
|
export declare var StartInsightsRefreshResponse: StaticStructureSchema;
|
|
192
214
|
export declare var StorageConfigRequest: StaticStructureSchema;
|
|
@@ -204,6 +226,10 @@ export declare var UpdateAccessEntryRequest: StaticStructureSchema;
|
|
|
204
226
|
export declare var UpdateAccessEntryResponse: StaticStructureSchema;
|
|
205
227
|
export declare var UpdateAddonRequest: StaticStructureSchema;
|
|
206
228
|
export declare var UpdateAddonResponse: StaticStructureSchema;
|
|
229
|
+
export declare var UpdateArgoCdConfig: StaticStructureSchema;
|
|
230
|
+
export declare var UpdateCapabilityConfiguration: StaticStructureSchema;
|
|
231
|
+
export declare var UpdateCapabilityRequest: StaticStructureSchema;
|
|
232
|
+
export declare var UpdateCapabilityResponse: StaticStructureSchema;
|
|
207
233
|
export declare var UpdateClusterConfigRequest: StaticStructureSchema;
|
|
208
234
|
export declare var UpdateClusterConfigResponse: StaticStructureSchema;
|
|
209
235
|
export declare var UpdateClusterVersionRequest: StaticStructureSchema;
|
|
@@ -218,6 +244,7 @@ export declare var UpdateNodegroupVersionResponse: StaticStructureSchema;
|
|
|
218
244
|
export declare var UpdateParam: StaticStructureSchema;
|
|
219
245
|
export declare var UpdatePodIdentityAssociationRequest: StaticStructureSchema;
|
|
220
246
|
export declare var UpdatePodIdentityAssociationResponse: StaticStructureSchema;
|
|
247
|
+
export declare var UpdateRoleMappings: StaticStructureSchema;
|
|
221
248
|
export declare var UpdateTaintsPayload: StaticStructureSchema;
|
|
222
249
|
export declare var UpgradePolicyRequest: StaticStructureSchema;
|
|
223
250
|
export declare var UpgradePolicyResponse: StaticStructureSchema;
|
|
@@ -234,8 +261,11 @@ export declare var AddonPodIdentityAssociationsList: StaticListSchema;
|
|
|
234
261
|
export declare var AddonPodIdentityConfigurationList: StaticListSchema;
|
|
235
262
|
export declare var Addons: StaticListSchema;
|
|
236
263
|
export declare var AddonVersionInfoList: StaticListSchema;
|
|
264
|
+
export declare var ArgoCdRoleMappingList: StaticListSchema;
|
|
237
265
|
export declare var AssociatedAccessPoliciesList: StaticListSchema;
|
|
238
266
|
export declare var AutoScalingGroupList: StaticListSchema;
|
|
267
|
+
export declare var CapabilityIssueList: StaticListSchema;
|
|
268
|
+
export declare var CapabilitySummaryList: StaticListSchema;
|
|
239
269
|
export declare var CategoryList: number;
|
|
240
270
|
export declare var ClientStats: StaticListSchema;
|
|
241
271
|
export declare var ClusterIssueList: StaticListSchema;
|
|
@@ -262,6 +292,7 @@ export declare var NodeRepairConfigOverridesList: StaticListSchema;
|
|
|
262
292
|
export declare var PodIdentityAssociationSummaries: StaticListSchema;
|
|
263
293
|
export declare var RemoteNodeNetworkList: StaticListSchema;
|
|
264
294
|
export declare var RemotePodNetworkList: StaticListSchema;
|
|
295
|
+
export declare var SsoIdentityList: StaticListSchema;
|
|
265
296
|
export declare var StringList: number;
|
|
266
297
|
export declare var TagKeyList: number;
|
|
267
298
|
export declare var taintsList: StaticListSchema;
|
|
@@ -276,6 +307,7 @@ export declare var AssociateEncryptionConfig: StaticOperationSchema;
|
|
|
276
307
|
export declare var AssociateIdentityProviderConfig: StaticOperationSchema;
|
|
277
308
|
export declare var CreateAccessEntry: StaticOperationSchema;
|
|
278
309
|
export declare var CreateAddon: StaticOperationSchema;
|
|
310
|
+
export declare var CreateCapability: StaticOperationSchema;
|
|
279
311
|
export declare var CreateCluster: StaticOperationSchema;
|
|
280
312
|
export declare var CreateEksAnywhereSubscription: StaticOperationSchema;
|
|
281
313
|
export declare var CreateFargateProfile: StaticOperationSchema;
|
|
@@ -283,6 +315,7 @@ export declare var CreateNodegroup: StaticOperationSchema;
|
|
|
283
315
|
export declare var CreatePodIdentityAssociation: StaticOperationSchema;
|
|
284
316
|
export declare var DeleteAccessEntry: StaticOperationSchema;
|
|
285
317
|
export declare var DeleteAddon: StaticOperationSchema;
|
|
318
|
+
export declare var DeleteCapability: StaticOperationSchema;
|
|
286
319
|
export declare var DeleteCluster: StaticOperationSchema;
|
|
287
320
|
export declare var DeleteEksAnywhereSubscription: StaticOperationSchema;
|
|
288
321
|
export declare var DeleteFargateProfile: StaticOperationSchema;
|
|
@@ -293,6 +326,7 @@ export declare var DescribeAccessEntry: StaticOperationSchema;
|
|
|
293
326
|
export declare var DescribeAddon: StaticOperationSchema;
|
|
294
327
|
export declare var DescribeAddonConfiguration: StaticOperationSchema;
|
|
295
328
|
export declare var DescribeAddonVersions: StaticOperationSchema;
|
|
329
|
+
export declare var DescribeCapability: StaticOperationSchema;
|
|
296
330
|
export declare var DescribeCluster: StaticOperationSchema;
|
|
297
331
|
export declare var DescribeClusterVersions: StaticOperationSchema;
|
|
298
332
|
export declare var DescribeEksAnywhereSubscription: StaticOperationSchema;
|
|
@@ -309,6 +343,7 @@ export declare var ListAccessEntries: StaticOperationSchema;
|
|
|
309
343
|
export declare var ListAccessPolicies: StaticOperationSchema;
|
|
310
344
|
export declare var ListAddons: StaticOperationSchema;
|
|
311
345
|
export declare var ListAssociatedAccessPolicies: StaticOperationSchema;
|
|
346
|
+
export declare var ListCapabilities: StaticOperationSchema;
|
|
312
347
|
export declare var ListClusters: StaticOperationSchema;
|
|
313
348
|
export declare var ListEksAnywhereSubscriptions: StaticOperationSchema;
|
|
314
349
|
export declare var ListFargateProfiles: StaticOperationSchema;
|
|
@@ -324,6 +359,7 @@ export declare var TagResource: StaticOperationSchema;
|
|
|
324
359
|
export declare var UntagResource: StaticOperationSchema;
|
|
325
360
|
export declare var UpdateAccessEntry: StaticOperationSchema;
|
|
326
361
|
export declare var UpdateAddon: StaticOperationSchema;
|
|
362
|
+
export declare var UpdateCapability: StaticOperationSchema;
|
|
327
363
|
export declare var UpdateClusterConfig: StaticOperationSchema;
|
|
328
364
|
export declare var UpdateClusterVersion: StaticOperationSchema;
|
|
329
365
|
export declare var UpdateEksAnywhereSubscription: StaticOperationSchema;
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
CreateAddonCommandInput,
|
|
20
20
|
CreateAddonCommandOutput,
|
|
21
21
|
} from "./commands/CreateAddonCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateCapabilityCommandInput,
|
|
24
|
+
CreateCapabilityCommandOutput,
|
|
25
|
+
} from "./commands/CreateCapabilityCommand";
|
|
22
26
|
import {
|
|
23
27
|
CreateClusterCommandInput,
|
|
24
28
|
CreateClusterCommandOutput,
|
|
@@ -47,6 +51,10 @@ import {
|
|
|
47
51
|
DeleteAddonCommandInput,
|
|
48
52
|
DeleteAddonCommandOutput,
|
|
49
53
|
} from "./commands/DeleteAddonCommand";
|
|
54
|
+
import {
|
|
55
|
+
DeleteCapabilityCommandInput,
|
|
56
|
+
DeleteCapabilityCommandOutput,
|
|
57
|
+
} from "./commands/DeleteCapabilityCommand";
|
|
50
58
|
import {
|
|
51
59
|
DeleteClusterCommandInput,
|
|
52
60
|
DeleteClusterCommandOutput,
|
|
@@ -87,6 +95,10 @@ import {
|
|
|
87
95
|
DescribeAddonVersionsCommandInput,
|
|
88
96
|
DescribeAddonVersionsCommandOutput,
|
|
89
97
|
} from "./commands/DescribeAddonVersionsCommand";
|
|
98
|
+
import {
|
|
99
|
+
DescribeCapabilityCommandInput,
|
|
100
|
+
DescribeCapabilityCommandOutput,
|
|
101
|
+
} from "./commands/DescribeCapabilityCommand";
|
|
90
102
|
import {
|
|
91
103
|
DescribeClusterCommandInput,
|
|
92
104
|
DescribeClusterCommandOutput,
|
|
@@ -151,6 +163,10 @@ import {
|
|
|
151
163
|
ListAssociatedAccessPoliciesCommandInput,
|
|
152
164
|
ListAssociatedAccessPoliciesCommandOutput,
|
|
153
165
|
} from "./commands/ListAssociatedAccessPoliciesCommand";
|
|
166
|
+
import {
|
|
167
|
+
ListCapabilitiesCommandInput,
|
|
168
|
+
ListCapabilitiesCommandOutput,
|
|
169
|
+
} from "./commands/ListCapabilitiesCommand";
|
|
154
170
|
import {
|
|
155
171
|
ListClustersCommandInput,
|
|
156
172
|
ListClustersCommandOutput,
|
|
@@ -211,6 +227,10 @@ import {
|
|
|
211
227
|
UpdateAddonCommandInput,
|
|
212
228
|
UpdateAddonCommandOutput,
|
|
213
229
|
} from "./commands/UpdateAddonCommand";
|
|
230
|
+
import {
|
|
231
|
+
UpdateCapabilityCommandInput,
|
|
232
|
+
UpdateCapabilityCommandOutput,
|
|
233
|
+
} from "./commands/UpdateCapabilityCommand";
|
|
214
234
|
import {
|
|
215
235
|
UpdateClusterConfigCommandInput,
|
|
216
236
|
UpdateClusterConfigCommandOutput,
|
|
@@ -302,6 +322,19 @@ export interface EKS {
|
|
|
302
322
|
options: __HttpHandlerOptions,
|
|
303
323
|
cb: (err: any, data?: CreateAddonCommandOutput) => void
|
|
304
324
|
): void;
|
|
325
|
+
createCapability(
|
|
326
|
+
args: CreateCapabilityCommandInput,
|
|
327
|
+
options?: __HttpHandlerOptions
|
|
328
|
+
): Promise<CreateCapabilityCommandOutput>;
|
|
329
|
+
createCapability(
|
|
330
|
+
args: CreateCapabilityCommandInput,
|
|
331
|
+
cb: (err: any, data?: CreateCapabilityCommandOutput) => void
|
|
332
|
+
): void;
|
|
333
|
+
createCapability(
|
|
334
|
+
args: CreateCapabilityCommandInput,
|
|
335
|
+
options: __HttpHandlerOptions,
|
|
336
|
+
cb: (err: any, data?: CreateCapabilityCommandOutput) => void
|
|
337
|
+
): void;
|
|
305
338
|
createCluster(
|
|
306
339
|
args: CreateClusterCommandInput,
|
|
307
340
|
options?: __HttpHandlerOptions
|
|
@@ -393,6 +426,19 @@ export interface EKS {
|
|
|
393
426
|
options: __HttpHandlerOptions,
|
|
394
427
|
cb: (err: any, data?: DeleteAddonCommandOutput) => void
|
|
395
428
|
): void;
|
|
429
|
+
deleteCapability(
|
|
430
|
+
args: DeleteCapabilityCommandInput,
|
|
431
|
+
options?: __HttpHandlerOptions
|
|
432
|
+
): Promise<DeleteCapabilityCommandOutput>;
|
|
433
|
+
deleteCapability(
|
|
434
|
+
args: DeleteCapabilityCommandInput,
|
|
435
|
+
cb: (err: any, data?: DeleteCapabilityCommandOutput) => void
|
|
436
|
+
): void;
|
|
437
|
+
deleteCapability(
|
|
438
|
+
args: DeleteCapabilityCommandInput,
|
|
439
|
+
options: __HttpHandlerOptions,
|
|
440
|
+
cb: (err: any, data?: DeleteCapabilityCommandOutput) => void
|
|
441
|
+
): void;
|
|
396
442
|
deleteCluster(
|
|
397
443
|
args: DeleteClusterCommandInput,
|
|
398
444
|
options?: __HttpHandlerOptions
|
|
@@ -524,6 +570,19 @@ export interface EKS {
|
|
|
524
570
|
options: __HttpHandlerOptions,
|
|
525
571
|
cb: (err: any, data?: DescribeAddonVersionsCommandOutput) => void
|
|
526
572
|
): void;
|
|
573
|
+
describeCapability(
|
|
574
|
+
args: DescribeCapabilityCommandInput,
|
|
575
|
+
options?: __HttpHandlerOptions
|
|
576
|
+
): Promise<DescribeCapabilityCommandOutput>;
|
|
577
|
+
describeCapability(
|
|
578
|
+
args: DescribeCapabilityCommandInput,
|
|
579
|
+
cb: (err: any, data?: DescribeCapabilityCommandOutput) => void
|
|
580
|
+
): void;
|
|
581
|
+
describeCapability(
|
|
582
|
+
args: DescribeCapabilityCommandInput,
|
|
583
|
+
options: __HttpHandlerOptions,
|
|
584
|
+
cb: (err: any, data?: DescribeCapabilityCommandOutput) => void
|
|
585
|
+
): void;
|
|
527
586
|
describeCluster(
|
|
528
587
|
args: DescribeClusterCommandInput,
|
|
529
588
|
options?: __HttpHandlerOptions
|
|
@@ -740,6 +799,19 @@ export interface EKS {
|
|
|
740
799
|
options: __HttpHandlerOptions,
|
|
741
800
|
cb: (err: any, data?: ListAssociatedAccessPoliciesCommandOutput) => void
|
|
742
801
|
): void;
|
|
802
|
+
listCapabilities(
|
|
803
|
+
args: ListCapabilitiesCommandInput,
|
|
804
|
+
options?: __HttpHandlerOptions
|
|
805
|
+
): Promise<ListCapabilitiesCommandOutput>;
|
|
806
|
+
listCapabilities(
|
|
807
|
+
args: ListCapabilitiesCommandInput,
|
|
808
|
+
cb: (err: any, data?: ListCapabilitiesCommandOutput) => void
|
|
809
|
+
): void;
|
|
810
|
+
listCapabilities(
|
|
811
|
+
args: ListCapabilitiesCommandInput,
|
|
812
|
+
options: __HttpHandlerOptions,
|
|
813
|
+
cb: (err: any, data?: ListCapabilitiesCommandOutput) => void
|
|
814
|
+
): void;
|
|
743
815
|
listClusters(): Promise<ListClustersCommandOutput>;
|
|
744
816
|
listClusters(
|
|
745
817
|
args: ListClustersCommandInput,
|
|
@@ -937,6 +1009,19 @@ export interface EKS {
|
|
|
937
1009
|
options: __HttpHandlerOptions,
|
|
938
1010
|
cb: (err: any, data?: UpdateAddonCommandOutput) => void
|
|
939
1011
|
): void;
|
|
1012
|
+
updateCapability(
|
|
1013
|
+
args: UpdateCapabilityCommandInput,
|
|
1014
|
+
options?: __HttpHandlerOptions
|
|
1015
|
+
): Promise<UpdateCapabilityCommandOutput>;
|
|
1016
|
+
updateCapability(
|
|
1017
|
+
args: UpdateCapabilityCommandInput,
|
|
1018
|
+
cb: (err: any, data?: UpdateCapabilityCommandOutput) => void
|
|
1019
|
+
): void;
|
|
1020
|
+
updateCapability(
|
|
1021
|
+
args: UpdateCapabilityCommandInput,
|
|
1022
|
+
options: __HttpHandlerOptions,
|
|
1023
|
+
cb: (err: any, data?: UpdateCapabilityCommandOutput) => void
|
|
1024
|
+
): void;
|
|
940
1025
|
updateClusterConfig(
|
|
941
1026
|
args: UpdateClusterConfigCommandInput,
|
|
942
1027
|
options?: __HttpHandlerOptions
|
|
@@ -68,6 +68,10 @@ import {
|
|
|
68
68
|
CreateAddonCommandInput,
|
|
69
69
|
CreateAddonCommandOutput,
|
|
70
70
|
} from "./commands/CreateAddonCommand";
|
|
71
|
+
import {
|
|
72
|
+
CreateCapabilityCommandInput,
|
|
73
|
+
CreateCapabilityCommandOutput,
|
|
74
|
+
} from "./commands/CreateCapabilityCommand";
|
|
71
75
|
import {
|
|
72
76
|
CreateClusterCommandInput,
|
|
73
77
|
CreateClusterCommandOutput,
|
|
@@ -96,6 +100,10 @@ import {
|
|
|
96
100
|
DeleteAddonCommandInput,
|
|
97
101
|
DeleteAddonCommandOutput,
|
|
98
102
|
} from "./commands/DeleteAddonCommand";
|
|
103
|
+
import {
|
|
104
|
+
DeleteCapabilityCommandInput,
|
|
105
|
+
DeleteCapabilityCommandOutput,
|
|
106
|
+
} from "./commands/DeleteCapabilityCommand";
|
|
99
107
|
import {
|
|
100
108
|
DeleteClusterCommandInput,
|
|
101
109
|
DeleteClusterCommandOutput,
|
|
@@ -136,6 +144,10 @@ import {
|
|
|
136
144
|
DescribeAddonVersionsCommandInput,
|
|
137
145
|
DescribeAddonVersionsCommandOutput,
|
|
138
146
|
} from "./commands/DescribeAddonVersionsCommand";
|
|
147
|
+
import {
|
|
148
|
+
DescribeCapabilityCommandInput,
|
|
149
|
+
DescribeCapabilityCommandOutput,
|
|
150
|
+
} from "./commands/DescribeCapabilityCommand";
|
|
139
151
|
import {
|
|
140
152
|
DescribeClusterCommandInput,
|
|
141
153
|
DescribeClusterCommandOutput,
|
|
@@ -200,6 +212,10 @@ import {
|
|
|
200
212
|
ListAssociatedAccessPoliciesCommandInput,
|
|
201
213
|
ListAssociatedAccessPoliciesCommandOutput,
|
|
202
214
|
} from "./commands/ListAssociatedAccessPoliciesCommand";
|
|
215
|
+
import {
|
|
216
|
+
ListCapabilitiesCommandInput,
|
|
217
|
+
ListCapabilitiesCommandOutput,
|
|
218
|
+
} from "./commands/ListCapabilitiesCommand";
|
|
203
219
|
import {
|
|
204
220
|
ListClustersCommandInput,
|
|
205
221
|
ListClustersCommandOutput,
|
|
@@ -260,6 +276,10 @@ import {
|
|
|
260
276
|
UpdateAddonCommandInput,
|
|
261
277
|
UpdateAddonCommandOutput,
|
|
262
278
|
} from "./commands/UpdateAddonCommand";
|
|
279
|
+
import {
|
|
280
|
+
UpdateCapabilityCommandInput,
|
|
281
|
+
UpdateCapabilityCommandOutput,
|
|
282
|
+
} from "./commands/UpdateCapabilityCommand";
|
|
263
283
|
import {
|
|
264
284
|
UpdateClusterConfigCommandInput,
|
|
265
285
|
UpdateClusterConfigCommandOutput,
|
|
@@ -297,6 +317,7 @@ export type ServiceInputTypes =
|
|
|
297
317
|
| AssociateIdentityProviderConfigCommandInput
|
|
298
318
|
| CreateAccessEntryCommandInput
|
|
299
319
|
| CreateAddonCommandInput
|
|
320
|
+
| CreateCapabilityCommandInput
|
|
300
321
|
| CreateClusterCommandInput
|
|
301
322
|
| CreateEksAnywhereSubscriptionCommandInput
|
|
302
323
|
| CreateFargateProfileCommandInput
|
|
@@ -304,6 +325,7 @@ export type ServiceInputTypes =
|
|
|
304
325
|
| CreatePodIdentityAssociationCommandInput
|
|
305
326
|
| DeleteAccessEntryCommandInput
|
|
306
327
|
| DeleteAddonCommandInput
|
|
328
|
+
| DeleteCapabilityCommandInput
|
|
307
329
|
| DeleteClusterCommandInput
|
|
308
330
|
| DeleteEksAnywhereSubscriptionCommandInput
|
|
309
331
|
| DeleteFargateProfileCommandInput
|
|
@@ -314,6 +336,7 @@ export type ServiceInputTypes =
|
|
|
314
336
|
| DescribeAddonCommandInput
|
|
315
337
|
| DescribeAddonConfigurationCommandInput
|
|
316
338
|
| DescribeAddonVersionsCommandInput
|
|
339
|
+
| DescribeCapabilityCommandInput
|
|
317
340
|
| DescribeClusterCommandInput
|
|
318
341
|
| DescribeClusterVersionsCommandInput
|
|
319
342
|
| DescribeEksAnywhereSubscriptionCommandInput
|
|
@@ -330,6 +353,7 @@ export type ServiceInputTypes =
|
|
|
330
353
|
| ListAccessPoliciesCommandInput
|
|
331
354
|
| ListAddonsCommandInput
|
|
332
355
|
| ListAssociatedAccessPoliciesCommandInput
|
|
356
|
+
| ListCapabilitiesCommandInput
|
|
333
357
|
| ListClustersCommandInput
|
|
334
358
|
| ListEksAnywhereSubscriptionsCommandInput
|
|
335
359
|
| ListFargateProfilesCommandInput
|
|
@@ -345,6 +369,7 @@ export type ServiceInputTypes =
|
|
|
345
369
|
| UntagResourceCommandInput
|
|
346
370
|
| UpdateAccessEntryCommandInput
|
|
347
371
|
| UpdateAddonCommandInput
|
|
372
|
+
| UpdateCapabilityCommandInput
|
|
348
373
|
| UpdateClusterConfigCommandInput
|
|
349
374
|
| UpdateClusterVersionCommandInput
|
|
350
375
|
| UpdateEksAnywhereSubscriptionCommandInput
|
|
@@ -357,6 +382,7 @@ export type ServiceOutputTypes =
|
|
|
357
382
|
| AssociateIdentityProviderConfigCommandOutput
|
|
358
383
|
| CreateAccessEntryCommandOutput
|
|
359
384
|
| CreateAddonCommandOutput
|
|
385
|
+
| CreateCapabilityCommandOutput
|
|
360
386
|
| CreateClusterCommandOutput
|
|
361
387
|
| CreateEksAnywhereSubscriptionCommandOutput
|
|
362
388
|
| CreateFargateProfileCommandOutput
|
|
@@ -364,6 +390,7 @@ export type ServiceOutputTypes =
|
|
|
364
390
|
| CreatePodIdentityAssociationCommandOutput
|
|
365
391
|
| DeleteAccessEntryCommandOutput
|
|
366
392
|
| DeleteAddonCommandOutput
|
|
393
|
+
| DeleteCapabilityCommandOutput
|
|
367
394
|
| DeleteClusterCommandOutput
|
|
368
395
|
| DeleteEksAnywhereSubscriptionCommandOutput
|
|
369
396
|
| DeleteFargateProfileCommandOutput
|
|
@@ -374,6 +401,7 @@ export type ServiceOutputTypes =
|
|
|
374
401
|
| DescribeAddonCommandOutput
|
|
375
402
|
| DescribeAddonConfigurationCommandOutput
|
|
376
403
|
| DescribeAddonVersionsCommandOutput
|
|
404
|
+
| DescribeCapabilityCommandOutput
|
|
377
405
|
| DescribeClusterCommandOutput
|
|
378
406
|
| DescribeClusterVersionsCommandOutput
|
|
379
407
|
| DescribeEksAnywhereSubscriptionCommandOutput
|
|
@@ -390,6 +418,7 @@ export type ServiceOutputTypes =
|
|
|
390
418
|
| ListAccessPoliciesCommandOutput
|
|
391
419
|
| ListAddonsCommandOutput
|
|
392
420
|
| ListAssociatedAccessPoliciesCommandOutput
|
|
421
|
+
| ListCapabilitiesCommandOutput
|
|
393
422
|
| ListClustersCommandOutput
|
|
394
423
|
| ListEksAnywhereSubscriptionsCommandOutput
|
|
395
424
|
| ListFargateProfilesCommandOutput
|
|
@@ -405,6 +434,7 @@ export type ServiceOutputTypes =
|
|
|
405
434
|
| UntagResourceCommandOutput
|
|
406
435
|
| UpdateAccessEntryCommandOutput
|
|
407
436
|
| UpdateAddonCommandOutput
|
|
437
|
+
| UpdateCapabilityCommandOutput
|
|
408
438
|
| UpdateClusterConfigCommandOutput
|
|
409
439
|
| UpdateClusterVersionCommandOutput
|
|
410
440
|
| UpdateEksAnywhereSubscriptionCommandOutput
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EKSClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EKSClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateCapabilityRequest,
|
|
10
|
+
CreateCapabilityResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateCapabilityCommandInput extends CreateCapabilityRequest {}
|
|
15
|
+
export interface CreateCapabilityCommandOutput
|
|
16
|
+
extends CreateCapabilityResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateCapabilityCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateCapabilityCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateCapabilityCommandInput,
|
|
23
|
+
CreateCapabilityCommandOutput,
|
|
24
|
+
EKSClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: CreateCapabilityCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateCapabilityCommandInput,
|
|
32
|
+
CreateCapabilityCommandOutput,
|
|
33
|
+
EKSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateCapabilityCommand extends CreateCapabilityCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateCapabilityRequest;
|
|
43
|
+
output: CreateCapabilityResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateCapabilityCommandInput;
|
|
47
|
+
output: CreateCapabilityCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EKSClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EKSClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteCapabilityRequest,
|
|
10
|
+
DeleteCapabilityResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteCapabilityCommandInput extends DeleteCapabilityRequest {}
|
|
15
|
+
export interface DeleteCapabilityCommandOutput
|
|
16
|
+
extends DeleteCapabilityResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeleteCapabilityCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteCapabilityCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteCapabilityCommandInput,
|
|
23
|
+
DeleteCapabilityCommandOutput,
|
|
24
|
+
EKSClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: DeleteCapabilityCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteCapabilityCommandInput,
|
|
32
|
+
DeleteCapabilityCommandOutput,
|
|
33
|
+
EKSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DeleteCapabilityCommand extends DeleteCapabilityCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DeleteCapabilityRequest;
|
|
43
|
+
output: DeleteCapabilityResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DeleteCapabilityCommandInput;
|
|
47
|
+
output: DeleteCapabilityCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EKSClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EKSClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeCapabilityRequest,
|
|
10
|
+
DescribeCapabilityResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeCapabilityCommandInput
|
|
15
|
+
extends DescribeCapabilityRequest {}
|
|
16
|
+
export interface DescribeCapabilityCommandOutput
|
|
17
|
+
extends DescribeCapabilityResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeCapabilityCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeCapabilityCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeCapabilityCommandInput,
|
|
24
|
+
DescribeCapabilityCommandOutput,
|
|
25
|
+
EKSClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DescribeCapabilityCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeCapabilityCommandInput,
|
|
33
|
+
DescribeCapabilityCommandOutput,
|
|
34
|
+
EKSClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeCapabilityCommand extends DescribeCapabilityCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeCapabilityRequest;
|
|
44
|
+
output: DescribeCapabilityResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeCapabilityCommandInput;
|
|
48
|
+
output: DescribeCapabilityCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EKSClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EKSClient";
|
|
8
|
+
import {
|
|
9
|
+
ListCapabilitiesRequest,
|
|
10
|
+
ListCapabilitiesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListCapabilitiesCommandInput extends ListCapabilitiesRequest {}
|
|
15
|
+
export interface ListCapabilitiesCommandOutput
|
|
16
|
+
extends ListCapabilitiesResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListCapabilitiesCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListCapabilitiesCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListCapabilitiesCommandInput,
|
|
23
|
+
ListCapabilitiesCommandOutput,
|
|
24
|
+
EKSClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: ListCapabilitiesCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListCapabilitiesCommandInput,
|
|
32
|
+
ListCapabilitiesCommandOutput,
|
|
33
|
+
EKSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListCapabilitiesCommand extends ListCapabilitiesCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListCapabilitiesRequest;
|
|
43
|
+
output: ListCapabilitiesResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListCapabilitiesCommandInput;
|
|
47
|
+
output: ListCapabilitiesCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|