@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,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
|
+
UpdateCapabilityRequest,
|
|
10
|
+
UpdateCapabilityResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateCapabilityCommandInput extends UpdateCapabilityRequest {}
|
|
15
|
+
export interface UpdateCapabilityCommandOutput
|
|
16
|
+
extends UpdateCapabilityResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UpdateCapabilityCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateCapabilityCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UpdateCapabilityCommandInput,
|
|
23
|
+
UpdateCapabilityCommandOutput,
|
|
24
|
+
EKSClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: UpdateCapabilityCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateCapabilityCommandInput,
|
|
32
|
+
UpdateCapabilityCommandOutput,
|
|
33
|
+
EKSClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class UpdateCapabilityCommand extends UpdateCapabilityCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UpdateCapabilityRequest;
|
|
43
|
+
output: UpdateCapabilityResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UpdateCapabilityCommandInput;
|
|
47
|
+
output: UpdateCapabilityCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -3,6 +3,7 @@ export * from "./AssociateEncryptionConfigCommand";
|
|
|
3
3
|
export * from "./AssociateIdentityProviderConfigCommand";
|
|
4
4
|
export * from "./CreateAccessEntryCommand";
|
|
5
5
|
export * from "./CreateAddonCommand";
|
|
6
|
+
export * from "./CreateCapabilityCommand";
|
|
6
7
|
export * from "./CreateClusterCommand";
|
|
7
8
|
export * from "./CreateEksAnywhereSubscriptionCommand";
|
|
8
9
|
export * from "./CreateFargateProfileCommand";
|
|
@@ -10,6 +11,7 @@ export * from "./CreateNodegroupCommand";
|
|
|
10
11
|
export * from "./CreatePodIdentityAssociationCommand";
|
|
11
12
|
export * from "./DeleteAccessEntryCommand";
|
|
12
13
|
export * from "./DeleteAddonCommand";
|
|
14
|
+
export * from "./DeleteCapabilityCommand";
|
|
13
15
|
export * from "./DeleteClusterCommand";
|
|
14
16
|
export * from "./DeleteEksAnywhereSubscriptionCommand";
|
|
15
17
|
export * from "./DeleteFargateProfileCommand";
|
|
@@ -20,6 +22,7 @@ export * from "./DescribeAccessEntryCommand";
|
|
|
20
22
|
export * from "./DescribeAddonCommand";
|
|
21
23
|
export * from "./DescribeAddonConfigurationCommand";
|
|
22
24
|
export * from "./DescribeAddonVersionsCommand";
|
|
25
|
+
export * from "./DescribeCapabilityCommand";
|
|
23
26
|
export * from "./DescribeClusterCommand";
|
|
24
27
|
export * from "./DescribeClusterVersionsCommand";
|
|
25
28
|
export * from "./DescribeEksAnywhereSubscriptionCommand";
|
|
@@ -36,6 +39,7 @@ export * from "./ListAccessEntriesCommand";
|
|
|
36
39
|
export * from "./ListAccessPoliciesCommand";
|
|
37
40
|
export * from "./ListAddonsCommand";
|
|
38
41
|
export * from "./ListAssociatedAccessPoliciesCommand";
|
|
42
|
+
export * from "./ListCapabilitiesCommand";
|
|
39
43
|
export * from "./ListClustersCommand";
|
|
40
44
|
export * from "./ListEksAnywhereSubscriptionsCommand";
|
|
41
45
|
export * from "./ListFargateProfilesCommand";
|
|
@@ -51,6 +55,7 @@ export * from "./TagResourceCommand";
|
|
|
51
55
|
export * from "./UntagResourceCommand";
|
|
52
56
|
export * from "./UpdateAccessEntryCommand";
|
|
53
57
|
export * from "./UpdateAddonCommand";
|
|
58
|
+
export * from "./UpdateCapabilityCommand";
|
|
54
59
|
export * from "./UpdateClusterConfigCommand";
|
|
55
60
|
export * from "./UpdateClusterVersionCommand";
|
|
56
61
|
export * from "./UpdateEksAnywhereSubscriptionCommand";
|
|
@@ -58,6 +58,18 @@ export declare const AMITypes: {
|
|
|
58
58
|
readonly WINDOWS_FULL_2022_x86_64: "WINDOWS_FULL_2022_x86_64";
|
|
59
59
|
};
|
|
60
60
|
export type AMITypes = (typeof AMITypes)[keyof typeof AMITypes];
|
|
61
|
+
export declare const SsoIdentityType: {
|
|
62
|
+
readonly SSO_GROUP: "SSO_GROUP";
|
|
63
|
+
readonly SSO_USER: "SSO_USER";
|
|
64
|
+
};
|
|
65
|
+
export type SsoIdentityType =
|
|
66
|
+
(typeof SsoIdentityType)[keyof typeof SsoIdentityType];
|
|
67
|
+
export declare const ArgoCdRole: {
|
|
68
|
+
readonly ADMIN: "ADMIN";
|
|
69
|
+
readonly EDITOR: "EDITOR";
|
|
70
|
+
readonly VIEWER: "VIEWER";
|
|
71
|
+
};
|
|
72
|
+
export type ArgoCdRole = (typeof ArgoCdRole)[keyof typeof ArgoCdRole];
|
|
61
73
|
export declare const ErrorCode: {
|
|
62
74
|
readonly ACCESS_DENIED: "AccessDenied";
|
|
63
75
|
readonly ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied";
|
|
@@ -155,6 +167,35 @@ export declare const ResolveConflicts: {
|
|
|
155
167
|
};
|
|
156
168
|
export type ResolveConflicts =
|
|
157
169
|
(typeof ResolveConflicts)[keyof typeof ResolveConflicts];
|
|
170
|
+
export declare const CapabilityDeletePropagationPolicy: {
|
|
171
|
+
readonly RETAIN: "RETAIN";
|
|
172
|
+
};
|
|
173
|
+
export type CapabilityDeletePropagationPolicy =
|
|
174
|
+
(typeof CapabilityDeletePropagationPolicy)[keyof typeof CapabilityDeletePropagationPolicy];
|
|
175
|
+
export declare const CapabilityType: {
|
|
176
|
+
readonly ACK: "ACK";
|
|
177
|
+
readonly ARGOCD: "ARGOCD";
|
|
178
|
+
readonly KRO: "KRO";
|
|
179
|
+
};
|
|
180
|
+
export type CapabilityType =
|
|
181
|
+
(typeof CapabilityType)[keyof typeof CapabilityType];
|
|
182
|
+
export declare const CapabilityIssueCode: {
|
|
183
|
+
readonly ACCESS_DENIED: "AccessDenied";
|
|
184
|
+
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
185
|
+
};
|
|
186
|
+
export type CapabilityIssueCode =
|
|
187
|
+
(typeof CapabilityIssueCode)[keyof typeof CapabilityIssueCode];
|
|
188
|
+
export declare const CapabilityStatus: {
|
|
189
|
+
readonly ACTIVE: "ACTIVE";
|
|
190
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
191
|
+
readonly CREATING: "CREATING";
|
|
192
|
+
readonly DEGRADED: "DEGRADED";
|
|
193
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
194
|
+
readonly DELETING: "DELETING";
|
|
195
|
+
readonly UPDATING: "UPDATING";
|
|
196
|
+
};
|
|
197
|
+
export type CapabilityStatus =
|
|
198
|
+
(typeof CapabilityStatus)[keyof typeof CapabilityStatus];
|
|
158
199
|
export declare const ProvisionedControlPlaneTier: {
|
|
159
200
|
readonly STANDARD: "standard";
|
|
160
201
|
readonly TIER_2XL: "tier-2xl";
|
|
@@ -3,7 +3,12 @@ import {
|
|
|
3
3
|
AddonIssueCode,
|
|
4
4
|
AddonStatus,
|
|
5
5
|
AMITypes,
|
|
6
|
+
ArgoCdRole,
|
|
6
7
|
AuthenticationMode,
|
|
8
|
+
CapabilityDeletePropagationPolicy,
|
|
9
|
+
CapabilityIssueCode,
|
|
10
|
+
CapabilityStatus,
|
|
11
|
+
CapabilityType,
|
|
7
12
|
CapacityTypes,
|
|
8
13
|
Category,
|
|
9
14
|
ClusterIssueCode,
|
|
@@ -27,6 +32,7 @@ import {
|
|
|
27
32
|
ProvisionedControlPlaneTier,
|
|
28
33
|
RepairAction,
|
|
29
34
|
ResolveConflicts,
|
|
35
|
+
SsoIdentityType,
|
|
30
36
|
SupportType,
|
|
31
37
|
TaintEffect,
|
|
32
38
|
UpdateParamType,
|
|
@@ -127,6 +133,42 @@ export interface AddonPodIdentityConfiguration {
|
|
|
127
133
|
serviceAccount?: string | undefined;
|
|
128
134
|
recommendedManagedPolicies?: string[] | undefined;
|
|
129
135
|
}
|
|
136
|
+
export interface ArgoCdAwsIdcConfigRequest {
|
|
137
|
+
idcInstanceArn: string | undefined;
|
|
138
|
+
idcRegion?: string | undefined;
|
|
139
|
+
}
|
|
140
|
+
export interface ArgoCdAwsIdcConfigResponse {
|
|
141
|
+
idcInstanceArn?: string | undefined;
|
|
142
|
+
idcRegion?: string | undefined;
|
|
143
|
+
idcManagedApplicationArn?: string | undefined;
|
|
144
|
+
}
|
|
145
|
+
export interface ArgoCdNetworkAccessConfigRequest {
|
|
146
|
+
vpceIds?: string[] | undefined;
|
|
147
|
+
}
|
|
148
|
+
export interface SsoIdentity {
|
|
149
|
+
id: string | undefined;
|
|
150
|
+
type: SsoIdentityType | undefined;
|
|
151
|
+
}
|
|
152
|
+
export interface ArgoCdRoleMapping {
|
|
153
|
+
role: ArgoCdRole | undefined;
|
|
154
|
+
identities: SsoIdentity[] | undefined;
|
|
155
|
+
}
|
|
156
|
+
export interface ArgoCdConfigRequest {
|
|
157
|
+
namespace?: string | undefined;
|
|
158
|
+
awsIdc: ArgoCdAwsIdcConfigRequest | undefined;
|
|
159
|
+
rbacRoleMappings?: ArgoCdRoleMapping[] | undefined;
|
|
160
|
+
networkAccess?: ArgoCdNetworkAccessConfigRequest | undefined;
|
|
161
|
+
}
|
|
162
|
+
export interface ArgoCdNetworkAccessConfigResponse {
|
|
163
|
+
vpceIds?: string[] | undefined;
|
|
164
|
+
}
|
|
165
|
+
export interface ArgoCdConfigResponse {
|
|
166
|
+
namespace?: string | undefined;
|
|
167
|
+
awsIdc?: ArgoCdAwsIdcConfigResponse | undefined;
|
|
168
|
+
rbacRoleMappings?: ArgoCdRoleMapping[] | undefined;
|
|
169
|
+
networkAccess?: ArgoCdNetworkAccessConfigResponse | undefined;
|
|
170
|
+
serverUrl?: string | undefined;
|
|
171
|
+
}
|
|
130
172
|
export interface AssociateAccessPolicyRequest {
|
|
131
173
|
clusterName: string | undefined;
|
|
132
174
|
principalArn: string | undefined;
|
|
@@ -226,6 +268,47 @@ export interface CreateAddonRequest {
|
|
|
226
268
|
export interface CreateAddonResponse {
|
|
227
269
|
addon?: Addon | undefined;
|
|
228
270
|
}
|
|
271
|
+
export interface CapabilityConfigurationRequest {
|
|
272
|
+
argoCd?: ArgoCdConfigRequest | undefined;
|
|
273
|
+
}
|
|
274
|
+
export interface CreateCapabilityRequest {
|
|
275
|
+
capabilityName: string | undefined;
|
|
276
|
+
clusterName: string | undefined;
|
|
277
|
+
clientRequestToken?: string | undefined;
|
|
278
|
+
type: CapabilityType | undefined;
|
|
279
|
+
roleArn: string | undefined;
|
|
280
|
+
configuration?: CapabilityConfigurationRequest | undefined;
|
|
281
|
+
tags?: Record<string, string> | undefined;
|
|
282
|
+
deletePropagationPolicy: CapabilityDeletePropagationPolicy | undefined;
|
|
283
|
+
}
|
|
284
|
+
export interface CapabilityConfigurationResponse {
|
|
285
|
+
argoCd?: ArgoCdConfigResponse | undefined;
|
|
286
|
+
}
|
|
287
|
+
export interface CapabilityIssue {
|
|
288
|
+
code?: CapabilityIssueCode | undefined;
|
|
289
|
+
message?: string | undefined;
|
|
290
|
+
}
|
|
291
|
+
export interface CapabilityHealth {
|
|
292
|
+
issues?: CapabilityIssue[] | undefined;
|
|
293
|
+
}
|
|
294
|
+
export interface Capability {
|
|
295
|
+
capabilityName?: string | undefined;
|
|
296
|
+
arn?: string | undefined;
|
|
297
|
+
clusterName?: string | undefined;
|
|
298
|
+
type?: CapabilityType | undefined;
|
|
299
|
+
roleArn?: string | undefined;
|
|
300
|
+
status?: CapabilityStatus | undefined;
|
|
301
|
+
version?: string | undefined;
|
|
302
|
+
configuration?: CapabilityConfigurationResponse | undefined;
|
|
303
|
+
tags?: Record<string, string> | undefined;
|
|
304
|
+
health?: CapabilityHealth | undefined;
|
|
305
|
+
createdAt?: Date | undefined;
|
|
306
|
+
modifiedAt?: Date | undefined;
|
|
307
|
+
deletePropagationPolicy?: CapabilityDeletePropagationPolicy | undefined;
|
|
308
|
+
}
|
|
309
|
+
export interface CreateCapabilityResponse {
|
|
310
|
+
capability?: Capability | undefined;
|
|
311
|
+
}
|
|
229
312
|
export interface CreateAccessConfigRequest {
|
|
230
313
|
bootstrapClusterCreatorAdminPermissions?: boolean | undefined;
|
|
231
314
|
authenticationMode?: AuthenticationMode | undefined;
|
|
@@ -621,6 +704,13 @@ export interface DeleteAddonRequest {
|
|
|
621
704
|
export interface DeleteAddonResponse {
|
|
622
705
|
addon?: Addon | undefined;
|
|
623
706
|
}
|
|
707
|
+
export interface DeleteCapabilityRequest {
|
|
708
|
+
clusterName: string | undefined;
|
|
709
|
+
capabilityName: string | undefined;
|
|
710
|
+
}
|
|
711
|
+
export interface DeleteCapabilityResponse {
|
|
712
|
+
capability?: Capability | undefined;
|
|
713
|
+
}
|
|
624
714
|
export interface DeleteClusterRequest {
|
|
625
715
|
name: string | undefined;
|
|
626
716
|
}
|
|
@@ -697,6 +787,13 @@ export interface DescribeAddonVersionsResponse {
|
|
|
697
787
|
addons?: AddonInfo[] | undefined;
|
|
698
788
|
nextToken?: string | undefined;
|
|
699
789
|
}
|
|
790
|
+
export interface DescribeCapabilityRequest {
|
|
791
|
+
clusterName: string | undefined;
|
|
792
|
+
capabilityName: string | undefined;
|
|
793
|
+
}
|
|
794
|
+
export interface DescribeCapabilityResponse {
|
|
795
|
+
capability?: Capability | undefined;
|
|
796
|
+
}
|
|
700
797
|
export interface DescribeClusterRequest {
|
|
701
798
|
name: string | undefined;
|
|
702
799
|
}
|
|
@@ -844,6 +941,7 @@ export interface DescribeUpdateRequest {
|
|
|
844
941
|
updateId: string | undefined;
|
|
845
942
|
nodegroupName?: string | undefined;
|
|
846
943
|
addonName?: string | undefined;
|
|
944
|
+
capabilityName?: string | undefined;
|
|
847
945
|
}
|
|
848
946
|
export interface DescribeUpdateResponse {
|
|
849
947
|
update?: Update | undefined;
|
|
@@ -901,6 +999,24 @@ export interface ListAssociatedAccessPoliciesResponse {
|
|
|
901
999
|
nextToken?: string | undefined;
|
|
902
1000
|
associatedAccessPolicies?: AssociatedAccessPolicy[] | undefined;
|
|
903
1001
|
}
|
|
1002
|
+
export interface ListCapabilitiesRequest {
|
|
1003
|
+
clusterName: string | undefined;
|
|
1004
|
+
nextToken?: string | undefined;
|
|
1005
|
+
maxResults?: number | undefined;
|
|
1006
|
+
}
|
|
1007
|
+
export interface CapabilitySummary {
|
|
1008
|
+
capabilityName?: string | undefined;
|
|
1009
|
+
arn?: string | undefined;
|
|
1010
|
+
type?: CapabilityType | undefined;
|
|
1011
|
+
status?: CapabilityStatus | undefined;
|
|
1012
|
+
version?: string | undefined;
|
|
1013
|
+
createdAt?: Date | undefined;
|
|
1014
|
+
modifiedAt?: Date | undefined;
|
|
1015
|
+
}
|
|
1016
|
+
export interface ListCapabilitiesResponse {
|
|
1017
|
+
capabilities?: CapabilitySummary[] | undefined;
|
|
1018
|
+
nextToken?: string | undefined;
|
|
1019
|
+
}
|
|
904
1020
|
export interface ListClustersRequest {
|
|
905
1021
|
maxResults?: number | undefined;
|
|
906
1022
|
nextToken?: string | undefined;
|
|
@@ -1000,6 +1116,7 @@ export interface ListUpdatesRequest {
|
|
|
1000
1116
|
name: string | undefined;
|
|
1001
1117
|
nodegroupName?: string | undefined;
|
|
1002
1118
|
addonName?: string | undefined;
|
|
1119
|
+
capabilityName?: string | undefined;
|
|
1003
1120
|
nextToken?: string | undefined;
|
|
1004
1121
|
maxResults?: number | undefined;
|
|
1005
1122
|
}
|
|
@@ -1060,6 +1177,28 @@ export interface UpdateAddonRequest {
|
|
|
1060
1177
|
export interface UpdateAddonResponse {
|
|
1061
1178
|
update?: Update | undefined;
|
|
1062
1179
|
}
|
|
1180
|
+
export interface UpdateRoleMappings {
|
|
1181
|
+
addOrUpdateRoleMappings?: ArgoCdRoleMapping[] | undefined;
|
|
1182
|
+
removeRoleMappings?: ArgoCdRoleMapping[] | undefined;
|
|
1183
|
+
}
|
|
1184
|
+
export interface UpdateArgoCdConfig {
|
|
1185
|
+
rbacRoleMappings?: UpdateRoleMappings | undefined;
|
|
1186
|
+
networkAccess?: ArgoCdNetworkAccessConfigRequest | undefined;
|
|
1187
|
+
}
|
|
1188
|
+
export interface UpdateCapabilityConfiguration {
|
|
1189
|
+
argoCd?: UpdateArgoCdConfig | undefined;
|
|
1190
|
+
}
|
|
1191
|
+
export interface UpdateCapabilityRequest {
|
|
1192
|
+
clusterName: string | undefined;
|
|
1193
|
+
capabilityName: string | undefined;
|
|
1194
|
+
roleArn?: string | undefined;
|
|
1195
|
+
configuration?: UpdateCapabilityConfiguration | undefined;
|
|
1196
|
+
clientRequestToken?: string | undefined;
|
|
1197
|
+
deletePropagationPolicy?: CapabilityDeletePropagationPolicy | undefined;
|
|
1198
|
+
}
|
|
1199
|
+
export interface UpdateCapabilityResponse {
|
|
1200
|
+
update?: Update | undefined;
|
|
1201
|
+
}
|
|
1063
1202
|
export interface UpdateAccessConfigRequest {
|
|
1064
1203
|
authenticationMode?: AuthenticationMode | undefined;
|
|
1065
1204
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCapabilitiesCommandInput,
|
|
4
|
+
ListCapabilitiesCommandOutput,
|
|
5
|
+
} from "../commands/ListCapabilitiesCommand";
|
|
6
|
+
import { EKSPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListCapabilities: (
|
|
8
|
+
config: EKSPaginationConfiguration,
|
|
9
|
+
input: ListCapabilitiesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => 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";
|
|
@@ -19,6 +19,13 @@ export declare var AddonNamespaceConfigResponse: StaticStructureSchema;
|
|
|
19
19
|
export declare var AddonPodIdentityAssociations: StaticStructureSchema;
|
|
20
20
|
export declare var AddonPodIdentityConfiguration: StaticStructureSchema;
|
|
21
21
|
export declare var AddonVersionInfo: StaticStructureSchema;
|
|
22
|
+
export declare var ArgoCdAwsIdcConfigRequest: StaticStructureSchema;
|
|
23
|
+
export declare var ArgoCdAwsIdcConfigResponse: StaticStructureSchema;
|
|
24
|
+
export declare var ArgoCdConfigRequest: StaticStructureSchema;
|
|
25
|
+
export declare var ArgoCdConfigResponse: StaticStructureSchema;
|
|
26
|
+
export declare var ArgoCdNetworkAccessConfigRequest: StaticStructureSchema;
|
|
27
|
+
export declare var ArgoCdNetworkAccessConfigResponse: StaticStructureSchema;
|
|
28
|
+
export declare var ArgoCdRoleMapping: StaticStructureSchema;
|
|
22
29
|
export declare var AssociateAccessPolicyRequest: StaticStructureSchema;
|
|
23
30
|
export declare var AssociateAccessPolicyResponse: StaticStructureSchema;
|
|
24
31
|
export declare var AssociatedAccessPolicy: StaticStructureSchema;
|
|
@@ -29,6 +36,12 @@ export declare var AssociateIdentityProviderConfigResponse: StaticStructureSchem
|
|
|
29
36
|
export declare var AutoScalingGroup: StaticStructureSchema;
|
|
30
37
|
export declare var BadRequestException: StaticErrorSchema;
|
|
31
38
|
export declare var BlockStorage: StaticStructureSchema;
|
|
39
|
+
export declare var Capability: StaticStructureSchema;
|
|
40
|
+
export declare var CapabilityConfigurationRequest: StaticStructureSchema;
|
|
41
|
+
export declare var CapabilityConfigurationResponse: StaticStructureSchema;
|
|
42
|
+
export declare var CapabilityHealth: StaticStructureSchema;
|
|
43
|
+
export declare var CapabilityIssue: StaticStructureSchema;
|
|
44
|
+
export declare var CapabilitySummary: StaticStructureSchema;
|
|
32
45
|
export declare var Certificate: StaticStructureSchema;
|
|
33
46
|
export declare var ClientException: StaticErrorSchema;
|
|
34
47
|
export declare var ClientStat: StaticStructureSchema;
|
|
@@ -49,6 +62,8 @@ export declare var CreateAccessEntryRequest: StaticStructureSchema;
|
|
|
49
62
|
export declare var CreateAccessEntryResponse: StaticStructureSchema;
|
|
50
63
|
export declare var CreateAddonRequest: StaticStructureSchema;
|
|
51
64
|
export declare var CreateAddonResponse: StaticStructureSchema;
|
|
65
|
+
export declare var CreateCapabilityRequest: StaticStructureSchema;
|
|
66
|
+
export declare var CreateCapabilityResponse: StaticStructureSchema;
|
|
52
67
|
export declare var CreateClusterRequest: StaticStructureSchema;
|
|
53
68
|
export declare var CreateClusterResponse: StaticStructureSchema;
|
|
54
69
|
export declare var CreateEksAnywhereSubscriptionRequest: StaticStructureSchema;
|
|
@@ -63,6 +78,8 @@ export declare var DeleteAccessEntryRequest: StaticStructureSchema;
|
|
|
63
78
|
export declare var DeleteAccessEntryResponse: StaticStructureSchema;
|
|
64
79
|
export declare var DeleteAddonRequest: StaticStructureSchema;
|
|
65
80
|
export declare var DeleteAddonResponse: StaticStructureSchema;
|
|
81
|
+
export declare var DeleteCapabilityRequest: StaticStructureSchema;
|
|
82
|
+
export declare var DeleteCapabilityResponse: StaticStructureSchema;
|
|
66
83
|
export declare var DeleteClusterRequest: StaticStructureSchema;
|
|
67
84
|
export declare var DeleteClusterResponse: StaticStructureSchema;
|
|
68
85
|
export declare var DeleteEksAnywhereSubscriptionRequest: StaticStructureSchema;
|
|
@@ -84,6 +101,8 @@ export declare var DescribeAddonRequest: StaticStructureSchema;
|
|
|
84
101
|
export declare var DescribeAddonResponse: StaticStructureSchema;
|
|
85
102
|
export declare var DescribeAddonVersionsRequest: StaticStructureSchema;
|
|
86
103
|
export declare var DescribeAddonVersionsResponse: StaticStructureSchema;
|
|
104
|
+
export declare var DescribeCapabilityRequest: StaticStructureSchema;
|
|
105
|
+
export declare var DescribeCapabilityResponse: StaticStructureSchema;
|
|
87
106
|
export declare var DescribeClusterRequest: StaticStructureSchema;
|
|
88
107
|
export declare var DescribeClusterResponse: StaticStructureSchema;
|
|
89
108
|
export declare var DescribeClusterVersionsRequest: StaticStructureSchema;
|
|
@@ -142,6 +161,8 @@ export declare var ListAddonsRequest: StaticStructureSchema;
|
|
|
142
161
|
export declare var ListAddonsResponse: StaticStructureSchema;
|
|
143
162
|
export declare var ListAssociatedAccessPoliciesRequest: StaticStructureSchema;
|
|
144
163
|
export declare var ListAssociatedAccessPoliciesResponse: StaticStructureSchema;
|
|
164
|
+
export declare var ListCapabilitiesRequest: StaticStructureSchema;
|
|
165
|
+
export declare var ListCapabilitiesResponse: StaticStructureSchema;
|
|
145
166
|
export declare var ListClustersRequest: StaticStructureSchema;
|
|
146
167
|
export declare var ListClustersResponse: StaticStructureSchema;
|
|
147
168
|
export declare var ListEksAnywhereSubscriptionsRequest: StaticStructureSchema;
|
|
@@ -192,6 +213,7 @@ export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
|
192
213
|
export declare var ResourcePropagationDelayException: StaticErrorSchema;
|
|
193
214
|
export declare var ServerException: StaticErrorSchema;
|
|
194
215
|
export declare var ServiceUnavailableException: StaticErrorSchema;
|
|
216
|
+
export declare var SsoIdentity: StaticStructureSchema;
|
|
195
217
|
export declare var StartInsightsRefreshRequest: StaticStructureSchema;
|
|
196
218
|
export declare var StartInsightsRefreshResponse: StaticStructureSchema;
|
|
197
219
|
export declare var StorageConfigRequest: StaticStructureSchema;
|
|
@@ -209,6 +231,10 @@ export declare var UpdateAccessEntryRequest: StaticStructureSchema;
|
|
|
209
231
|
export declare var UpdateAccessEntryResponse: StaticStructureSchema;
|
|
210
232
|
export declare var UpdateAddonRequest: StaticStructureSchema;
|
|
211
233
|
export declare var UpdateAddonResponse: StaticStructureSchema;
|
|
234
|
+
export declare var UpdateArgoCdConfig: StaticStructureSchema;
|
|
235
|
+
export declare var UpdateCapabilityConfiguration: StaticStructureSchema;
|
|
236
|
+
export declare var UpdateCapabilityRequest: StaticStructureSchema;
|
|
237
|
+
export declare var UpdateCapabilityResponse: StaticStructureSchema;
|
|
212
238
|
export declare var UpdateClusterConfigRequest: StaticStructureSchema;
|
|
213
239
|
export declare var UpdateClusterConfigResponse: StaticStructureSchema;
|
|
214
240
|
export declare var UpdateClusterVersionRequest: StaticStructureSchema;
|
|
@@ -223,6 +249,7 @@ export declare var UpdateNodegroupVersionResponse: StaticStructureSchema;
|
|
|
223
249
|
export declare var UpdateParam: StaticStructureSchema;
|
|
224
250
|
export declare var UpdatePodIdentityAssociationRequest: StaticStructureSchema;
|
|
225
251
|
export declare var UpdatePodIdentityAssociationResponse: StaticStructureSchema;
|
|
252
|
+
export declare var UpdateRoleMappings: StaticStructureSchema;
|
|
226
253
|
export declare var UpdateTaintsPayload: StaticStructureSchema;
|
|
227
254
|
export declare var UpgradePolicyRequest: StaticStructureSchema;
|
|
228
255
|
export declare var UpgradePolicyResponse: StaticStructureSchema;
|
|
@@ -239,8 +266,11 @@ export declare var AddonPodIdentityAssociationsList: StaticListSchema;
|
|
|
239
266
|
export declare var AddonPodIdentityConfigurationList: StaticListSchema;
|
|
240
267
|
export declare var Addons: StaticListSchema;
|
|
241
268
|
export declare var AddonVersionInfoList: StaticListSchema;
|
|
269
|
+
export declare var ArgoCdRoleMappingList: StaticListSchema;
|
|
242
270
|
export declare var AssociatedAccessPoliciesList: StaticListSchema;
|
|
243
271
|
export declare var AutoScalingGroupList: StaticListSchema;
|
|
272
|
+
export declare var CapabilityIssueList: StaticListSchema;
|
|
273
|
+
export declare var CapabilitySummaryList: StaticListSchema;
|
|
244
274
|
export declare var CategoryList: number;
|
|
245
275
|
export declare var ClientStats: StaticListSchema;
|
|
246
276
|
export declare var ClusterIssueList: StaticListSchema;
|
|
@@ -267,6 +297,7 @@ export declare var NodeRepairConfigOverridesList: StaticListSchema;
|
|
|
267
297
|
export declare var PodIdentityAssociationSummaries: StaticListSchema;
|
|
268
298
|
export declare var RemoteNodeNetworkList: StaticListSchema;
|
|
269
299
|
export declare var RemotePodNetworkList: StaticListSchema;
|
|
300
|
+
export declare var SsoIdentityList: StaticListSchema;
|
|
270
301
|
export declare var StringList: number;
|
|
271
302
|
export declare var TagKeyList: number;
|
|
272
303
|
export declare var taintsList: StaticListSchema;
|
|
@@ -281,6 +312,7 @@ export declare var AssociateEncryptionConfig: StaticOperationSchema;
|
|
|
281
312
|
export declare var AssociateIdentityProviderConfig: StaticOperationSchema;
|
|
282
313
|
export declare var CreateAccessEntry: StaticOperationSchema;
|
|
283
314
|
export declare var CreateAddon: StaticOperationSchema;
|
|
315
|
+
export declare var CreateCapability: StaticOperationSchema;
|
|
284
316
|
export declare var CreateCluster: StaticOperationSchema;
|
|
285
317
|
export declare var CreateEksAnywhereSubscription: StaticOperationSchema;
|
|
286
318
|
export declare var CreateFargateProfile: StaticOperationSchema;
|
|
@@ -288,6 +320,7 @@ export declare var CreateNodegroup: StaticOperationSchema;
|
|
|
288
320
|
export declare var CreatePodIdentityAssociation: StaticOperationSchema;
|
|
289
321
|
export declare var DeleteAccessEntry: StaticOperationSchema;
|
|
290
322
|
export declare var DeleteAddon: StaticOperationSchema;
|
|
323
|
+
export declare var DeleteCapability: StaticOperationSchema;
|
|
291
324
|
export declare var DeleteCluster: StaticOperationSchema;
|
|
292
325
|
export declare var DeleteEksAnywhereSubscription: StaticOperationSchema;
|
|
293
326
|
export declare var DeleteFargateProfile: StaticOperationSchema;
|
|
@@ -298,6 +331,7 @@ export declare var DescribeAccessEntry: StaticOperationSchema;
|
|
|
298
331
|
export declare var DescribeAddon: StaticOperationSchema;
|
|
299
332
|
export declare var DescribeAddonConfiguration: StaticOperationSchema;
|
|
300
333
|
export declare var DescribeAddonVersions: StaticOperationSchema;
|
|
334
|
+
export declare var DescribeCapability: StaticOperationSchema;
|
|
301
335
|
export declare var DescribeCluster: StaticOperationSchema;
|
|
302
336
|
export declare var DescribeClusterVersions: StaticOperationSchema;
|
|
303
337
|
export declare var DescribeEksAnywhereSubscription: StaticOperationSchema;
|
|
@@ -314,6 +348,7 @@ export declare var ListAccessEntries: StaticOperationSchema;
|
|
|
314
348
|
export declare var ListAccessPolicies: StaticOperationSchema;
|
|
315
349
|
export declare var ListAddons: StaticOperationSchema;
|
|
316
350
|
export declare var ListAssociatedAccessPolicies: StaticOperationSchema;
|
|
351
|
+
export declare var ListCapabilities: StaticOperationSchema;
|
|
317
352
|
export declare var ListClusters: StaticOperationSchema;
|
|
318
353
|
export declare var ListEksAnywhereSubscriptions: StaticOperationSchema;
|
|
319
354
|
export declare var ListFargateProfiles: StaticOperationSchema;
|
|
@@ -329,6 +364,7 @@ export declare var TagResource: StaticOperationSchema;
|
|
|
329
364
|
export declare var UntagResource: StaticOperationSchema;
|
|
330
365
|
export declare var UpdateAccessEntry: StaticOperationSchema;
|
|
331
366
|
export declare var UpdateAddon: StaticOperationSchema;
|
|
367
|
+
export declare var UpdateCapability: StaticOperationSchema;
|
|
332
368
|
export declare var UpdateClusterConfig: StaticOperationSchema;
|
|
333
369
|
export declare var UpdateClusterVersion: StaticOperationSchema;
|
|
334
370
|
export declare var UpdateEksAnywhereSubscription: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-eks",
|
|
3
3
|
"description": "AWS SDK for JavaScript Eks Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.942.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-eks",
|