@aws-sdk/client-eks 3.933.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +364 -363
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +317 -0
- package/dist-es/models/errors.js +247 -0
- package/dist-es/models/models_0.js +1 -564
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +581 -0
- package/dist-types/models/errors.d.ts +372 -0
- package/dist-types/models/models_0.d.ts +1 -953
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +368 -0
- package/dist-types/ts3.4/models/errors.d.ts +140 -0
- package/dist-types/ts3.4/models/models_0.d.ts +35 -508
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,23 +1,42 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
1
|
+
import {
|
|
2
|
+
AccessScopeType,
|
|
3
|
+
AddonIssueCode,
|
|
4
|
+
AddonStatus,
|
|
5
|
+
AMITypes,
|
|
6
|
+
AuthenticationMode,
|
|
7
|
+
CapacityTypes,
|
|
8
|
+
Category,
|
|
9
|
+
ClusterIssueCode,
|
|
10
|
+
ClusterStatus,
|
|
11
|
+
ClusterVersionStatus,
|
|
12
|
+
ConfigStatus,
|
|
13
|
+
ConnectorConfigProvider,
|
|
14
|
+
EksAnywhereSubscriptionLicenseType,
|
|
15
|
+
EksAnywhereSubscriptionStatus,
|
|
16
|
+
EksAnywhereSubscriptionTermUnit,
|
|
17
|
+
ErrorCode,
|
|
18
|
+
FargateProfileIssueCode,
|
|
19
|
+
FargateProfileStatus,
|
|
20
|
+
InsightsRefreshStatus,
|
|
21
|
+
InsightStatusValue,
|
|
22
|
+
IpFamily,
|
|
23
|
+
LogType,
|
|
24
|
+
NodegroupIssueCode,
|
|
25
|
+
NodegroupStatus,
|
|
26
|
+
NodegroupUpdateStrategies,
|
|
27
|
+
RepairAction,
|
|
28
|
+
ResolveConflicts,
|
|
29
|
+
SupportType,
|
|
30
|
+
TaintEffect,
|
|
31
|
+
UpdateParamType,
|
|
32
|
+
UpdateStatus,
|
|
33
|
+
UpdateType,
|
|
34
|
+
VersionStatus,
|
|
35
|
+
} from "./enums";
|
|
10
36
|
export interface AccessConfigResponse {
|
|
11
37
|
bootstrapClusterCreatorAdminPermissions?: boolean | undefined;
|
|
12
38
|
authenticationMode?: AuthenticationMode | undefined;
|
|
13
39
|
}
|
|
14
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
15
|
-
readonly name: "AccessDeniedException";
|
|
16
|
-
readonly $fault: "client";
|
|
17
|
-
constructor(
|
|
18
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
19
|
-
);
|
|
20
|
-
}
|
|
21
40
|
export interface AccessEntry {
|
|
22
41
|
clusterName?: string | undefined;
|
|
23
42
|
principalArn?: string | undefined;
|
|
@@ -33,30 +52,10 @@ export interface AccessPolicy {
|
|
|
33
52
|
name?: string | undefined;
|
|
34
53
|
arn?: string | undefined;
|
|
35
54
|
}
|
|
36
|
-
export declare const AccessScopeType: {
|
|
37
|
-
readonly cluster: "cluster";
|
|
38
|
-
readonly namespace: "namespace";
|
|
39
|
-
};
|
|
40
|
-
export type AccessScopeType =
|
|
41
|
-
(typeof AccessScopeType)[keyof typeof AccessScopeType];
|
|
42
55
|
export interface AccessScope {
|
|
43
56
|
type?: AccessScopeType | undefined;
|
|
44
57
|
namespaces?: string[] | undefined;
|
|
45
58
|
}
|
|
46
|
-
export declare const AddonIssueCode: {
|
|
47
|
-
readonly ACCESS_DENIED: "AccessDenied";
|
|
48
|
-
readonly ADDON_PERMISSION_FAILURE: "AddonPermissionFailure";
|
|
49
|
-
readonly ADDON_SUBSCRIPTION_NEEDED: "AddonSubscriptionNeeded";
|
|
50
|
-
readonly ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied";
|
|
51
|
-
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
52
|
-
readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
|
|
53
|
-
readonly INSUFFICIENT_NUMBER_OF_REPLICAS: "InsufficientNumberOfReplicas";
|
|
54
|
-
readonly INTERNAL_FAILURE: "InternalFailure";
|
|
55
|
-
readonly K8S_RESOURCE_NOT_FOUND: "K8sResourceNotFound";
|
|
56
|
-
readonly UNSUPPORTED_ADDON_MODIFICATION: "UnsupportedAddonModification";
|
|
57
|
-
};
|
|
58
|
-
export type AddonIssueCode =
|
|
59
|
-
(typeof AddonIssueCode)[keyof typeof AddonIssueCode];
|
|
60
59
|
export interface AddonIssue {
|
|
61
60
|
code?: AddonIssueCode | undefined;
|
|
62
61
|
message?: string | undefined;
|
|
@@ -72,17 +71,6 @@ export interface MarketplaceInformation {
|
|
|
72
71
|
export interface AddonNamespaceConfigResponse {
|
|
73
72
|
namespace?: string | undefined;
|
|
74
73
|
}
|
|
75
|
-
export declare const AddonStatus: {
|
|
76
|
-
readonly ACTIVE: "ACTIVE";
|
|
77
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
78
|
-
readonly CREATING: "CREATING";
|
|
79
|
-
readonly DEGRADED: "DEGRADED";
|
|
80
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
81
|
-
readonly DELETING: "DELETING";
|
|
82
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
83
|
-
readonly UPDATING: "UPDATING";
|
|
84
|
-
};
|
|
85
|
-
export type AddonStatus = (typeof AddonStatus)[keyof typeof AddonStatus];
|
|
86
74
|
export interface Addon {
|
|
87
75
|
addonName?: string | undefined;
|
|
88
76
|
clusterName?: string | undefined;
|
|
@@ -138,28 +126,6 @@ export interface AddonPodIdentityConfiguration {
|
|
|
138
126
|
serviceAccount?: string | undefined;
|
|
139
127
|
recommendedManagedPolicies?: string[] | undefined;
|
|
140
128
|
}
|
|
141
|
-
export declare const AMITypes: {
|
|
142
|
-
readonly AL2023_ARM_64_NVIDIA: "AL2023_ARM_64_NVIDIA";
|
|
143
|
-
readonly AL2023_ARM_64_STANDARD: "AL2023_ARM_64_STANDARD";
|
|
144
|
-
readonly AL2023_x86_64_NEURON: "AL2023_x86_64_NEURON";
|
|
145
|
-
readonly AL2023_x86_64_NVIDIA: "AL2023_x86_64_NVIDIA";
|
|
146
|
-
readonly AL2023_x86_64_STANDARD: "AL2023_x86_64_STANDARD";
|
|
147
|
-
readonly AL2_ARM_64: "AL2_ARM_64";
|
|
148
|
-
readonly AL2_x86_64: "AL2_x86_64";
|
|
149
|
-
readonly AL2_x86_64_GPU: "AL2_x86_64_GPU";
|
|
150
|
-
readonly BOTTLEROCKET_ARM_64: "BOTTLEROCKET_ARM_64";
|
|
151
|
-
readonly BOTTLEROCKET_ARM_64_FIPS: "BOTTLEROCKET_ARM_64_FIPS";
|
|
152
|
-
readonly BOTTLEROCKET_ARM_64_NVIDIA: "BOTTLEROCKET_ARM_64_NVIDIA";
|
|
153
|
-
readonly BOTTLEROCKET_x86_64: "BOTTLEROCKET_x86_64";
|
|
154
|
-
readonly BOTTLEROCKET_x86_64_FIPS: "BOTTLEROCKET_x86_64_FIPS";
|
|
155
|
-
readonly BOTTLEROCKET_x86_64_NVIDIA: "BOTTLEROCKET_x86_64_NVIDIA";
|
|
156
|
-
readonly CUSTOM: "CUSTOM";
|
|
157
|
-
readonly WINDOWS_CORE_2019_x86_64: "WINDOWS_CORE_2019_x86_64";
|
|
158
|
-
readonly WINDOWS_CORE_2022_x86_64: "WINDOWS_CORE_2022_x86_64";
|
|
159
|
-
readonly WINDOWS_FULL_2019_x86_64: "WINDOWS_FULL_2019_x86_64";
|
|
160
|
-
readonly WINDOWS_FULL_2022_x86_64: "WINDOWS_FULL_2022_x86_64";
|
|
161
|
-
};
|
|
162
|
-
export type AMITypes = (typeof AMITypes)[keyof typeof AMITypes];
|
|
163
129
|
export interface AssociateAccessPolicyRequest {
|
|
164
130
|
clusterName: string | undefined;
|
|
165
131
|
principalArn: string | undefined;
|
|
@@ -177,50 +143,6 @@ export interface AssociateAccessPolicyResponse {
|
|
|
177
143
|
principalArn?: string | undefined;
|
|
178
144
|
associatedAccessPolicy?: AssociatedAccessPolicy | undefined;
|
|
179
145
|
}
|
|
180
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
181
|
-
readonly name: "InvalidParameterException";
|
|
182
|
-
readonly $fault: "client";
|
|
183
|
-
clusterName?: string | undefined;
|
|
184
|
-
nodegroupName?: string | undefined;
|
|
185
|
-
fargateProfileName?: string | undefined;
|
|
186
|
-
addonName?: string | undefined;
|
|
187
|
-
subscriptionId?: string | undefined;
|
|
188
|
-
constructor(
|
|
189
|
-
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
190
|
-
);
|
|
191
|
-
}
|
|
192
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
193
|
-
readonly name: "InvalidRequestException";
|
|
194
|
-
readonly $fault: "client";
|
|
195
|
-
clusterName?: string | undefined;
|
|
196
|
-
nodegroupName?: string | undefined;
|
|
197
|
-
addonName?: string | undefined;
|
|
198
|
-
subscriptionId?: string | undefined;
|
|
199
|
-
constructor(
|
|
200
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
201
|
-
);
|
|
202
|
-
}
|
|
203
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
204
|
-
readonly name: "ResourceNotFoundException";
|
|
205
|
-
readonly $fault: "client";
|
|
206
|
-
clusterName?: string | undefined;
|
|
207
|
-
nodegroupName?: string | undefined;
|
|
208
|
-
fargateProfileName?: string | undefined;
|
|
209
|
-
addonName?: string | undefined;
|
|
210
|
-
subscriptionId?: string | undefined;
|
|
211
|
-
constructor(
|
|
212
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
213
|
-
);
|
|
214
|
-
}
|
|
215
|
-
export declare class ServerException extends __BaseException {
|
|
216
|
-
readonly name: "ServerException";
|
|
217
|
-
readonly $fault: "server";
|
|
218
|
-
clusterName?: string | undefined;
|
|
219
|
-
nodegroupName?: string | undefined;
|
|
220
|
-
addonName?: string | undefined;
|
|
221
|
-
subscriptionId?: string | undefined;
|
|
222
|
-
constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
|
|
223
|
-
}
|
|
224
146
|
export interface Provider {
|
|
225
147
|
keyArn?: string | undefined;
|
|
226
148
|
}
|
|
@@ -233,102 +155,15 @@ export interface AssociateEncryptionConfigRequest {
|
|
|
233
155
|
encryptionConfig: EncryptionConfig[] | undefined;
|
|
234
156
|
clientRequestToken?: string | undefined;
|
|
235
157
|
}
|
|
236
|
-
export declare const ErrorCode: {
|
|
237
|
-
readonly ACCESS_DENIED: "AccessDenied";
|
|
238
|
-
readonly ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied";
|
|
239
|
-
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
240
|
-
readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
|
|
241
|
-
readonly ENI_LIMIT_REACHED: "EniLimitReached";
|
|
242
|
-
readonly INSUFFICIENT_FREE_ADDRESSES: "InsufficientFreeAddresses";
|
|
243
|
-
readonly INSUFFICIENT_NUMBER_OF_REPLICAS: "InsufficientNumberOfReplicas";
|
|
244
|
-
readonly IP_NOT_AVAILABLE: "IpNotAvailable";
|
|
245
|
-
readonly K8S_RESOURCE_NOT_FOUND: "K8sResourceNotFound";
|
|
246
|
-
readonly NODE_CREATION_FAILURE: "NodeCreationFailure";
|
|
247
|
-
readonly OPERATION_NOT_PERMITTED: "OperationNotPermitted";
|
|
248
|
-
readonly POD_EVICTION_FAILURE: "PodEvictionFailure";
|
|
249
|
-
readonly SECURITY_GROUP_NOT_FOUND: "SecurityGroupNotFound";
|
|
250
|
-
readonly SUBNET_NOT_FOUND: "SubnetNotFound";
|
|
251
|
-
readonly UNKNOWN: "Unknown";
|
|
252
|
-
readonly UNSUPPORTED_ADDON_MODIFICATION: "UnsupportedAddonModification";
|
|
253
|
-
readonly VPC_ID_NOT_FOUND: "VpcIdNotFound";
|
|
254
|
-
};
|
|
255
|
-
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
256
158
|
export interface ErrorDetail {
|
|
257
159
|
errorCode?: ErrorCode | undefined;
|
|
258
160
|
errorMessage?: string | undefined;
|
|
259
161
|
resourceIds?: string[] | undefined;
|
|
260
162
|
}
|
|
261
|
-
export declare const UpdateParamType: {
|
|
262
|
-
readonly ADDON_VERSION: "AddonVersion";
|
|
263
|
-
readonly AUTHENTICATION_MODE: "AuthenticationMode";
|
|
264
|
-
readonly CLUSTER_LOGGING: "ClusterLogging";
|
|
265
|
-
readonly COMPUTE_CONFIG: "ComputeConfig";
|
|
266
|
-
readonly CONFIGURATION_VALUES: "ConfigurationValues";
|
|
267
|
-
readonly DELETION_PROTECTION: "DeletionProtection";
|
|
268
|
-
readonly DESIRED_SIZE: "DesiredSize";
|
|
269
|
-
readonly ENCRYPTION_CONFIG: "EncryptionConfig";
|
|
270
|
-
readonly ENDPOINT_PRIVATE_ACCESS: "EndpointPrivateAccess";
|
|
271
|
-
readonly ENDPOINT_PUBLIC_ACCESS: "EndpointPublicAccess";
|
|
272
|
-
readonly IDENTITY_PROVIDER_CONFIG: "IdentityProviderConfig";
|
|
273
|
-
readonly KUBERNETES_NETWORK_CONFIG: "KubernetesNetworkConfig";
|
|
274
|
-
readonly LABELS_TO_ADD: "LabelsToAdd";
|
|
275
|
-
readonly LABELS_TO_REMOVE: "LabelsToRemove";
|
|
276
|
-
readonly LAUNCH_TEMPLATE_NAME: "LaunchTemplateName";
|
|
277
|
-
readonly LAUNCH_TEMPLATE_VERSION: "LaunchTemplateVersion";
|
|
278
|
-
readonly MAX_SIZE: "MaxSize";
|
|
279
|
-
readonly MAX_UNAVAILABLE: "MaxUnavailable";
|
|
280
|
-
readonly MAX_UNAVAILABLE_PERCENTAGE: "MaxUnavailablePercentage";
|
|
281
|
-
readonly MIN_SIZE: "MinSize";
|
|
282
|
-
readonly NODE_REPAIR_CONFIG: "NodeRepairConfig";
|
|
283
|
-
readonly NODE_REPAIR_ENABLED: "NodeRepairEnabled";
|
|
284
|
-
readonly PLATFORM_VERSION: "PlatformVersion";
|
|
285
|
-
readonly POD_IDENTITY_ASSOCIATIONS: "PodIdentityAssociations";
|
|
286
|
-
readonly PUBLIC_ACCESS_CIDRS: "PublicAccessCidrs";
|
|
287
|
-
readonly RELEASE_VERSION: "ReleaseVersion";
|
|
288
|
-
readonly REMOTE_NETWORK_CONFIG: "RemoteNetworkConfig";
|
|
289
|
-
readonly RESOLVE_CONFLICTS: "ResolveConflicts";
|
|
290
|
-
readonly SECURITY_GROUPS: "SecurityGroups";
|
|
291
|
-
readonly SERVICE_ACCOUNT_ROLE_ARN: "ServiceAccountRoleArn";
|
|
292
|
-
readonly STORAGE_CONFIG: "StorageConfig";
|
|
293
|
-
readonly SUBNETS: "Subnets";
|
|
294
|
-
readonly TAINTS_TO_ADD: "TaintsToAdd";
|
|
295
|
-
readonly TAINTS_TO_REMOVE: "TaintsToRemove";
|
|
296
|
-
readonly UPDATE_STRATEGY: "UpdateStrategy";
|
|
297
|
-
readonly UPGRADE_POLICY: "UpgradePolicy";
|
|
298
|
-
readonly VERSION: "Version";
|
|
299
|
-
readonly ZONAL_SHIFT_CONFIG: "ZonalShiftConfig";
|
|
300
|
-
};
|
|
301
|
-
export type UpdateParamType =
|
|
302
|
-
(typeof UpdateParamType)[keyof typeof UpdateParamType];
|
|
303
163
|
export interface UpdateParam {
|
|
304
164
|
type?: UpdateParamType | undefined;
|
|
305
165
|
value?: string | undefined;
|
|
306
166
|
}
|
|
307
|
-
export declare const UpdateStatus: {
|
|
308
|
-
readonly CANCELLED: "Cancelled";
|
|
309
|
-
readonly FAILED: "Failed";
|
|
310
|
-
readonly IN_PROGRESS: "InProgress";
|
|
311
|
-
readonly SUCCESSFUL: "Successful";
|
|
312
|
-
};
|
|
313
|
-
export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
|
|
314
|
-
export declare const UpdateType: {
|
|
315
|
-
readonly ACCESS_CONFIG_UPDATE: "AccessConfigUpdate";
|
|
316
|
-
readonly ADDON_UPDATE: "AddonUpdate";
|
|
317
|
-
readonly ASSOCIATE_ENCRYPTION_CONFIG: "AssociateEncryptionConfig";
|
|
318
|
-
readonly ASSOCIATE_IDENTITY_PROVIDER_CONFIG: "AssociateIdentityProviderConfig";
|
|
319
|
-
readonly AUTO_MODE_UPDATE: "AutoModeUpdate";
|
|
320
|
-
readonly CONFIG_UPDATE: "ConfigUpdate";
|
|
321
|
-
readonly DELETION_PROTECTION_UPDATE: "DeletionProtectionUpdate";
|
|
322
|
-
readonly DISASSOCIATE_IDENTITY_PROVIDER_CONFIG: "DisassociateIdentityProviderConfig";
|
|
323
|
-
readonly ENDPOINT_ACCESS_UPDATE: "EndpointAccessUpdate";
|
|
324
|
-
readonly LOGGING_UPDATE: "LoggingUpdate";
|
|
325
|
-
readonly REMOTE_NETWORK_CONFIG_UPDATE: "RemoteNetworkConfigUpdate";
|
|
326
|
-
readonly UPGRADE_POLICY_UPDATE: "UpgradePolicyUpdate";
|
|
327
|
-
readonly VERSION_UPDATE: "VersionUpdate";
|
|
328
|
-
readonly VPC_CONFIG_UPDATE: "VpcConfigUpdate";
|
|
329
|
-
readonly ZONAL_SHIFT_CONFIG_UPDATE: "ZonalShiftConfigUpdate";
|
|
330
|
-
};
|
|
331
|
-
export type UpdateType = (typeof UpdateType)[keyof typeof UpdateType];
|
|
332
167
|
export interface Update {
|
|
333
168
|
id?: string | undefined;
|
|
334
169
|
status?: UpdateStatus | undefined;
|
|
@@ -340,33 +175,6 @@ export interface Update {
|
|
|
340
175
|
export interface AssociateEncryptionConfigResponse {
|
|
341
176
|
update?: Update | undefined;
|
|
342
177
|
}
|
|
343
|
-
export declare class ClientException extends __BaseException {
|
|
344
|
-
readonly name: "ClientException";
|
|
345
|
-
readonly $fault: "client";
|
|
346
|
-
clusterName?: string | undefined;
|
|
347
|
-
nodegroupName?: string | undefined;
|
|
348
|
-
addonName?: string | undefined;
|
|
349
|
-
subscriptionId?: string | undefined;
|
|
350
|
-
constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
|
|
351
|
-
}
|
|
352
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
353
|
-
readonly name: "ResourceInUseException";
|
|
354
|
-
readonly $fault: "client";
|
|
355
|
-
clusterName?: string | undefined;
|
|
356
|
-
nodegroupName?: string | undefined;
|
|
357
|
-
addonName?: string | undefined;
|
|
358
|
-
constructor(
|
|
359
|
-
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
360
|
-
);
|
|
361
|
-
}
|
|
362
|
-
export declare class ThrottlingException extends __BaseException {
|
|
363
|
-
readonly name: "ThrottlingException";
|
|
364
|
-
readonly $fault: "client";
|
|
365
|
-
clusterName?: string | undefined;
|
|
366
|
-
constructor(
|
|
367
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
368
|
-
);
|
|
369
|
-
}
|
|
370
178
|
export interface OidcIdentityProviderConfigRequest {
|
|
371
179
|
identityProviderConfigName: string | undefined;
|
|
372
180
|
issuerUrl: string | undefined;
|
|
@@ -402,23 +210,6 @@ export interface CreateAccessEntryRequest {
|
|
|
402
210
|
export interface CreateAccessEntryResponse {
|
|
403
211
|
accessEntry?: AccessEntry | undefined;
|
|
404
212
|
}
|
|
405
|
-
export declare class ResourceLimitExceededException extends __BaseException {
|
|
406
|
-
readonly name: "ResourceLimitExceededException";
|
|
407
|
-
readonly $fault: "client";
|
|
408
|
-
clusterName?: string | undefined;
|
|
409
|
-
nodegroupName?: string | undefined;
|
|
410
|
-
subscriptionId?: string | undefined;
|
|
411
|
-
constructor(
|
|
412
|
-
opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
|
|
413
|
-
);
|
|
414
|
-
}
|
|
415
|
-
export declare const ResolveConflicts: {
|
|
416
|
-
readonly NONE: "NONE";
|
|
417
|
-
readonly OVERWRITE: "OVERWRITE";
|
|
418
|
-
readonly PRESERVE: "PRESERVE";
|
|
419
|
-
};
|
|
420
|
-
export type ResolveConflicts =
|
|
421
|
-
(typeof ResolveConflicts)[keyof typeof ResolveConflicts];
|
|
422
213
|
export interface CreateAddonRequest {
|
|
423
214
|
clusterName: string | undefined;
|
|
424
215
|
addonName: string | undefined;
|
|
@@ -446,24 +237,11 @@ export interface ComputeConfigRequest {
|
|
|
446
237
|
export interface ElasticLoadBalancing {
|
|
447
238
|
enabled?: boolean | undefined;
|
|
448
239
|
}
|
|
449
|
-
export declare const IpFamily: {
|
|
450
|
-
readonly IPV4: "ipv4";
|
|
451
|
-
readonly IPV6: "ipv6";
|
|
452
|
-
};
|
|
453
|
-
export type IpFamily = (typeof IpFamily)[keyof typeof IpFamily];
|
|
454
240
|
export interface KubernetesNetworkConfigRequest {
|
|
455
241
|
serviceIpv4Cidr?: string | undefined;
|
|
456
242
|
ipFamily?: IpFamily | undefined;
|
|
457
243
|
elasticLoadBalancing?: ElasticLoadBalancing | undefined;
|
|
458
244
|
}
|
|
459
|
-
export declare const LogType: {
|
|
460
|
-
readonly API: "api";
|
|
461
|
-
readonly AUDIT: "audit";
|
|
462
|
-
readonly AUTHENTICATOR: "authenticator";
|
|
463
|
-
readonly CONTROLLER_MANAGER: "controllerManager";
|
|
464
|
-
readonly SCHEDULER: "scheduler";
|
|
465
|
-
};
|
|
466
|
-
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
467
245
|
export interface LogSetup {
|
|
468
246
|
types?: LogType[] | undefined;
|
|
469
247
|
enabled?: boolean | undefined;
|
|
@@ -502,11 +280,6 @@ export interface BlockStorage {
|
|
|
502
280
|
export interface StorageConfigRequest {
|
|
503
281
|
blockStorage?: BlockStorage | undefined;
|
|
504
282
|
}
|
|
505
|
-
export declare const SupportType: {
|
|
506
|
-
readonly EXTENDED: "EXTENDED";
|
|
507
|
-
readonly STANDARD: "STANDARD";
|
|
508
|
-
};
|
|
509
|
-
export type SupportType = (typeof SupportType)[keyof typeof SupportType];
|
|
510
283
|
export interface UpgradePolicyRequest {
|
|
511
284
|
supportType?: SupportType | undefined;
|
|
512
285
|
}
|
|
@@ -548,29 +321,6 @@ export interface ConnectorConfigResponse {
|
|
|
548
321
|
provider?: string | undefined;
|
|
549
322
|
roleArn?: string | undefined;
|
|
550
323
|
}
|
|
551
|
-
export declare const ClusterIssueCode: {
|
|
552
|
-
readonly ACCESS_DENIED: "AccessDenied";
|
|
553
|
-
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
554
|
-
readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
|
|
555
|
-
readonly EC2_SECURITY_GROUP_NOT_FOUND: "Ec2SecurityGroupNotFound";
|
|
556
|
-
readonly EC2_SERVICE_NOT_SUBSCRIBED: "Ec2ServiceNotSubscribed";
|
|
557
|
-
readonly EC2_SUBNET_NOT_FOUND: "Ec2SubnetNotFound";
|
|
558
|
-
readonly IAM_ROLE_NOT_FOUND: "IamRoleNotFound";
|
|
559
|
-
readonly INSUFFICIENT_FREE_ADDRESSES: "InsufficientFreeAddresses";
|
|
560
|
-
readonly INTERNAL_FAILURE: "InternalFailure";
|
|
561
|
-
readonly KMS_GRANT_REVOKED: "KmsGrantRevoked";
|
|
562
|
-
readonly KMS_KEY_DISABLED: "KmsKeyDisabled";
|
|
563
|
-
readonly KMS_KEY_MARKED_FOR_DELETION: "KmsKeyMarkedForDeletion";
|
|
564
|
-
readonly KMS_KEY_NOT_FOUND: "KmsKeyNotFound";
|
|
565
|
-
readonly OTHER: "Other";
|
|
566
|
-
readonly RESOURCE_LIMIT_EXCEEDED: "ResourceLimitExceeded";
|
|
567
|
-
readonly RESOURCE_NOT_FOUND: "ResourceNotFound";
|
|
568
|
-
readonly STS_REGIONAL_ENDPOINT_DISABLED: "StsRegionalEndpointDisabled";
|
|
569
|
-
readonly UNSUPPORTED_VERSION: "UnsupportedVersion";
|
|
570
|
-
readonly VPC_NOT_FOUND: "VpcNotFound";
|
|
571
|
-
};
|
|
572
|
-
export type ClusterIssueCode =
|
|
573
|
-
(typeof ClusterIssueCode)[keyof typeof ClusterIssueCode];
|
|
574
324
|
export interface ClusterIssue {
|
|
575
325
|
code?: ClusterIssueCode | undefined;
|
|
576
326
|
message?: string | undefined;
|
|
@@ -612,15 +362,6 @@ export interface VpcConfigResponse {
|
|
|
612
362
|
endpointPrivateAccess?: boolean | undefined;
|
|
613
363
|
publicAccessCidrs?: string[] | undefined;
|
|
614
364
|
}
|
|
615
|
-
export declare const ClusterStatus: {
|
|
616
|
-
readonly ACTIVE: "ACTIVE";
|
|
617
|
-
readonly CREATING: "CREATING";
|
|
618
|
-
readonly DELETING: "DELETING";
|
|
619
|
-
readonly FAILED: "FAILED";
|
|
620
|
-
readonly PENDING: "PENDING";
|
|
621
|
-
readonly UPDATING: "UPDATING";
|
|
622
|
-
};
|
|
623
|
-
export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
|
|
624
365
|
export interface StorageConfigResponse {
|
|
625
366
|
blockStorage?: BlockStorage | undefined;
|
|
626
367
|
}
|
|
@@ -662,36 +403,6 @@ export interface Cluster {
|
|
|
662
403
|
export interface CreateClusterResponse {
|
|
663
404
|
cluster?: Cluster | undefined;
|
|
664
405
|
}
|
|
665
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
666
|
-
readonly name: "ServiceUnavailableException";
|
|
667
|
-
readonly $fault: "server";
|
|
668
|
-
constructor(
|
|
669
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
670
|
-
);
|
|
671
|
-
}
|
|
672
|
-
export declare class UnsupportedAvailabilityZoneException extends __BaseException {
|
|
673
|
-
readonly name: "UnsupportedAvailabilityZoneException";
|
|
674
|
-
readonly $fault: "client";
|
|
675
|
-
clusterName?: string | undefined;
|
|
676
|
-
nodegroupName?: string | undefined;
|
|
677
|
-
validZones?: string[] | undefined;
|
|
678
|
-
constructor(
|
|
679
|
-
opts: __ExceptionOptionType<
|
|
680
|
-
UnsupportedAvailabilityZoneException,
|
|
681
|
-
__BaseException
|
|
682
|
-
>
|
|
683
|
-
);
|
|
684
|
-
}
|
|
685
|
-
export declare const EksAnywhereSubscriptionLicenseType: {
|
|
686
|
-
readonly Cluster: "Cluster";
|
|
687
|
-
};
|
|
688
|
-
export type EksAnywhereSubscriptionLicenseType =
|
|
689
|
-
(typeof EksAnywhereSubscriptionLicenseType)[keyof typeof EksAnywhereSubscriptionLicenseType];
|
|
690
|
-
export declare const EksAnywhereSubscriptionTermUnit: {
|
|
691
|
-
readonly MONTHS: "MONTHS";
|
|
692
|
-
};
|
|
693
|
-
export type EksAnywhereSubscriptionTermUnit =
|
|
694
|
-
(typeof EksAnywhereSubscriptionTermUnit)[keyof typeof EksAnywhereSubscriptionTermUnit];
|
|
695
406
|
export interface EksAnywhereSubscriptionTerm {
|
|
696
407
|
duration?: number | undefined;
|
|
697
408
|
unit?: EksAnywhereSubscriptionTermUnit | undefined;
|
|
@@ -740,14 +451,6 @@ export interface CreateFargateProfileRequest {
|
|
|
740
451
|
clientRequestToken?: string | undefined;
|
|
741
452
|
tags?: Record<string, string> | undefined;
|
|
742
453
|
}
|
|
743
|
-
export declare const FargateProfileIssueCode: {
|
|
744
|
-
readonly ACCESS_DENIED: "AccessDenied";
|
|
745
|
-
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
746
|
-
readonly INTERNAL_FAILURE: "InternalFailure";
|
|
747
|
-
readonly POD_EXECUTION_ROLE_ALREADY_IN_USE: "PodExecutionRoleAlreadyInUse";
|
|
748
|
-
};
|
|
749
|
-
export type FargateProfileIssueCode =
|
|
750
|
-
(typeof FargateProfileIssueCode)[keyof typeof FargateProfileIssueCode];
|
|
751
454
|
export interface FargateProfileIssue {
|
|
752
455
|
code?: FargateProfileIssueCode | undefined;
|
|
753
456
|
message?: string | undefined;
|
|
@@ -756,15 +459,6 @@ export interface FargateProfileIssue {
|
|
|
756
459
|
export interface FargateProfileHealth {
|
|
757
460
|
issues?: FargateProfileIssue[] | undefined;
|
|
758
461
|
}
|
|
759
|
-
export declare const FargateProfileStatus: {
|
|
760
|
-
readonly ACTIVE: "ACTIVE";
|
|
761
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
762
|
-
readonly CREATING: "CREATING";
|
|
763
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
764
|
-
readonly DELETING: "DELETING";
|
|
765
|
-
};
|
|
766
|
-
export type FargateProfileStatus =
|
|
767
|
-
(typeof FargateProfileStatus)[keyof typeof FargateProfileStatus];
|
|
768
462
|
export interface FargateProfile {
|
|
769
463
|
fargateProfileName?: string | undefined;
|
|
770
464
|
fargateProfileArn?: string | undefined;
|
|
@@ -780,23 +474,11 @@ export interface FargateProfile {
|
|
|
780
474
|
export interface CreateFargateProfileResponse {
|
|
781
475
|
fargateProfile?: FargateProfile | undefined;
|
|
782
476
|
}
|
|
783
|
-
export declare const CapacityTypes: {
|
|
784
|
-
readonly CAPACITY_BLOCK: "CAPACITY_BLOCK";
|
|
785
|
-
readonly ON_DEMAND: "ON_DEMAND";
|
|
786
|
-
readonly SPOT: "SPOT";
|
|
787
|
-
};
|
|
788
|
-
export type CapacityTypes = (typeof CapacityTypes)[keyof typeof CapacityTypes];
|
|
789
477
|
export interface LaunchTemplateSpecification {
|
|
790
478
|
name?: string | undefined;
|
|
791
479
|
version?: string | undefined;
|
|
792
480
|
id?: string | undefined;
|
|
793
481
|
}
|
|
794
|
-
export declare const RepairAction: {
|
|
795
|
-
readonly NoAction: "NoAction";
|
|
796
|
-
readonly Reboot: "Reboot";
|
|
797
|
-
readonly Replace: "Replace";
|
|
798
|
-
};
|
|
799
|
-
export type RepairAction = (typeof RepairAction)[keyof typeof RepairAction];
|
|
800
482
|
export interface NodeRepairConfigOverrides {
|
|
801
483
|
nodeMonitoringCondition?: string | undefined;
|
|
802
484
|
nodeUnhealthyReason?: string | undefined;
|
|
@@ -820,23 +502,11 @@ export interface NodegroupScalingConfig {
|
|
|
820
502
|
maxSize?: number | undefined;
|
|
821
503
|
desiredSize?: number | undefined;
|
|
822
504
|
}
|
|
823
|
-
export declare const TaintEffect: {
|
|
824
|
-
readonly NO_EXECUTE: "NO_EXECUTE";
|
|
825
|
-
readonly NO_SCHEDULE: "NO_SCHEDULE";
|
|
826
|
-
readonly PREFER_NO_SCHEDULE: "PREFER_NO_SCHEDULE";
|
|
827
|
-
};
|
|
828
|
-
export type TaintEffect = (typeof TaintEffect)[keyof typeof TaintEffect];
|
|
829
505
|
export interface Taint {
|
|
830
506
|
key?: string | undefined;
|
|
831
507
|
value?: string | undefined;
|
|
832
508
|
effect?: TaintEffect | undefined;
|
|
833
509
|
}
|
|
834
|
-
export declare const NodegroupUpdateStrategies: {
|
|
835
|
-
readonly DEFAULT: "DEFAULT";
|
|
836
|
-
readonly MINIMAL: "MINIMAL";
|
|
837
|
-
};
|
|
838
|
-
export type NodegroupUpdateStrategies =
|
|
839
|
-
(typeof NodegroupUpdateStrategies)[keyof typeof NodegroupUpdateStrategies];
|
|
840
510
|
export interface NodegroupUpdateConfig {
|
|
841
511
|
maxUnavailable?: number | undefined;
|
|
842
512
|
maxUnavailablePercentage?: number | undefined;
|
|
@@ -863,46 +533,6 @@ export interface CreateNodegroupRequest {
|
|
|
863
533
|
version?: string | undefined;
|
|
864
534
|
releaseVersion?: string | undefined;
|
|
865
535
|
}
|
|
866
|
-
export declare const NodegroupIssueCode: {
|
|
867
|
-
readonly ACCESS_DENIED: "AccessDenied";
|
|
868
|
-
readonly AMI_ID_NOT_FOUND: "AmiIdNotFound";
|
|
869
|
-
readonly ASG_INSTANCE_LAUNCH_FAILURES: "AsgInstanceLaunchFailures";
|
|
870
|
-
readonly AUTO_SCALING_GROUP_INSTANCE_REFRESH_ACTIVE: "AutoScalingGroupInstanceRefreshActive";
|
|
871
|
-
readonly AUTO_SCALING_GROUP_INVALID_CONFIGURATION: "AutoScalingGroupInvalidConfiguration";
|
|
872
|
-
readonly AUTO_SCALING_GROUP_NOT_FOUND: "AutoScalingGroupNotFound";
|
|
873
|
-
readonly AUTO_SCALING_GROUP_OPT_IN_REQUIRED: "AutoScalingGroupOptInRequired";
|
|
874
|
-
readonly AUTO_SCALING_GROUP_RATE_LIMIT_EXCEEDED: "AutoScalingGroupRateLimitExceeded";
|
|
875
|
-
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
876
|
-
readonly EC2_INSTANCE_TYPE_DOES_NOT_EXIST: "Ec2InstanceTypeDoesNotExist";
|
|
877
|
-
readonly EC2_LAUNCH_TEMPLATE_DELETION_FAILURE: "Ec2LaunchTemplateDeletionFailure";
|
|
878
|
-
readonly EC2_LAUNCH_TEMPLATE_INVALID_CONFIGURATION: "Ec2LaunchTemplateInvalidConfiguration";
|
|
879
|
-
readonly EC2_LAUNCH_TEMPLATE_MAX_LIMIT_EXCEEDED: "Ec2LaunchTemplateMaxLimitExceeded";
|
|
880
|
-
readonly EC2_LAUNCH_TEMPLATE_NOT_FOUND: "Ec2LaunchTemplateNotFound";
|
|
881
|
-
readonly EC2_LAUNCH_TEMPLATE_VERSION_MAX_LIMIT_EXCEEDED: "Ec2LaunchTemplateVersionMaxLimitExceeded";
|
|
882
|
-
readonly EC2_LAUNCH_TEMPLATE_VERSION_MISMATCH: "Ec2LaunchTemplateVersionMismatch";
|
|
883
|
-
readonly EC2_SECURITY_GROUP_DELETION_FAILURE: "Ec2SecurityGroupDeletionFailure";
|
|
884
|
-
readonly EC2_SECURITY_GROUP_NOT_FOUND: "Ec2SecurityGroupNotFound";
|
|
885
|
-
readonly EC2_SUBNET_INVALID_CONFIGURATION: "Ec2SubnetInvalidConfiguration";
|
|
886
|
-
readonly EC2_SUBNET_LIST_TOO_LONG: "Ec2SubnetListTooLong";
|
|
887
|
-
readonly EC2_SUBNET_MISSING_IPV6_ASSIGNMENT: "Ec2SubnetMissingIpv6Assignment";
|
|
888
|
-
readonly EC2_SUBNET_NOT_FOUND: "Ec2SubnetNotFound";
|
|
889
|
-
readonly IAM_INSTANCE_PROFILE_NOT_FOUND: "IamInstanceProfileNotFound";
|
|
890
|
-
readonly IAM_LIMIT_EXCEEDED: "IamLimitExceeded";
|
|
891
|
-
readonly IAM_NODE_ROLE_NOT_FOUND: "IamNodeRoleNotFound";
|
|
892
|
-
readonly IAM_THROTTLING: "IamThrottling";
|
|
893
|
-
readonly INSTANCE_LIMIT_EXCEEDED: "InstanceLimitExceeded";
|
|
894
|
-
readonly INSUFFICIENT_FREE_ADDRESSES: "InsufficientFreeAddresses";
|
|
895
|
-
readonly INTERNAL_FAILURE: "InternalFailure";
|
|
896
|
-
readonly KUBERNETES_LABEL_INVALID: "KubernetesLabelInvalid";
|
|
897
|
-
readonly LIMIT_EXCEEDED: "LimitExceeded";
|
|
898
|
-
readonly NODE_CREATION_FAILURE: "NodeCreationFailure";
|
|
899
|
-
readonly NODE_TERMINATION_FAILURE: "NodeTerminationFailure";
|
|
900
|
-
readonly POD_EVICTION_FAILURE: "PodEvictionFailure";
|
|
901
|
-
readonly SOURCE_EC2_LAUNCH_TEMPLATE_NOT_FOUND: "SourceEc2LaunchTemplateNotFound";
|
|
902
|
-
readonly UNKNOWN: "Unknown";
|
|
903
|
-
};
|
|
904
|
-
export type NodegroupIssueCode =
|
|
905
|
-
(typeof NodegroupIssueCode)[keyof typeof NodegroupIssueCode];
|
|
906
536
|
export interface Issue {
|
|
907
537
|
code?: NodegroupIssueCode | undefined;
|
|
908
538
|
message?: string | undefined;
|
|
@@ -915,17 +545,6 @@ export interface NodegroupResources {
|
|
|
915
545
|
autoScalingGroups?: AutoScalingGroup[] | undefined;
|
|
916
546
|
remoteAccessSecurityGroup?: string | undefined;
|
|
917
547
|
}
|
|
918
|
-
export declare const NodegroupStatus: {
|
|
919
|
-
readonly ACTIVE: "ACTIVE";
|
|
920
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
921
|
-
readonly CREATING: "CREATING";
|
|
922
|
-
readonly DEGRADED: "DEGRADED";
|
|
923
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
924
|
-
readonly DELETING: "DELETING";
|
|
925
|
-
readonly UPDATING: "UPDATING";
|
|
926
|
-
};
|
|
927
|
-
export type NodegroupStatus =
|
|
928
|
-
(typeof NodegroupStatus)[keyof typeof NodegroupStatus];
|
|
929
548
|
export interface Nodegroup {
|
|
930
549
|
nodegroupName?: string | undefined;
|
|
931
550
|
nodegroupArn?: string | undefined;
|
|
@@ -1078,19 +697,6 @@ export interface DescribeClusterRequest {
|
|
|
1078
697
|
export interface DescribeClusterResponse {
|
|
1079
698
|
cluster?: Cluster | undefined;
|
|
1080
699
|
}
|
|
1081
|
-
export declare const ClusterVersionStatus: {
|
|
1082
|
-
readonly extended_support: "extended-support";
|
|
1083
|
-
readonly standard_support: "standard-support";
|
|
1084
|
-
readonly unsupported: "unsupported";
|
|
1085
|
-
};
|
|
1086
|
-
export type ClusterVersionStatus =
|
|
1087
|
-
(typeof ClusterVersionStatus)[keyof typeof ClusterVersionStatus];
|
|
1088
|
-
export declare const VersionStatus: {
|
|
1089
|
-
readonly EXTENDED_SUPPORT: "EXTENDED_SUPPORT";
|
|
1090
|
-
readonly STANDARD_SUPPORT: "STANDARD_SUPPORT";
|
|
1091
|
-
readonly UNSUPPORTED: "UNSUPPORTED";
|
|
1092
|
-
};
|
|
1093
|
-
export type VersionStatus = (typeof VersionStatus)[keyof typeof VersionStatus];
|
|
1094
700
|
export interface DescribeClusterVersionsRequest {
|
|
1095
701
|
clusterType?: string | undefined;
|
|
1096
702
|
maxResults?: number | undefined;
|
|
@@ -1138,12 +744,6 @@ export interface DescribeIdentityProviderConfigRequest {
|
|
|
1138
744
|
clusterName: string | undefined;
|
|
1139
745
|
identityProviderConfig: IdentityProviderConfig | undefined;
|
|
1140
746
|
}
|
|
1141
|
-
export declare const ConfigStatus: {
|
|
1142
|
-
readonly ACTIVE: "ACTIVE";
|
|
1143
|
-
readonly CREATING: "CREATING";
|
|
1144
|
-
readonly DELETING: "DELETING";
|
|
1145
|
-
};
|
|
1146
|
-
export type ConfigStatus = (typeof ConfigStatus)[keyof typeof ConfigStatus];
|
|
1147
747
|
export interface OidcIdentityProviderConfig {
|
|
1148
748
|
identityProviderConfigName?: string | undefined;
|
|
1149
749
|
identityProviderConfigArn?: string | undefined;
|
|
@@ -1168,11 +768,6 @@ export interface DescribeInsightRequest {
|
|
|
1168
768
|
clusterName: string | undefined;
|
|
1169
769
|
id: string | undefined;
|
|
1170
770
|
}
|
|
1171
|
-
export declare const Category: {
|
|
1172
|
-
readonly MISCONFIGURATION: "MISCONFIGURATION";
|
|
1173
|
-
readonly UPGRADE_READINESS: "UPGRADE_READINESS";
|
|
1174
|
-
};
|
|
1175
|
-
export type Category = (typeof Category)[keyof typeof Category];
|
|
1176
771
|
export interface ClientStat {
|
|
1177
772
|
userAgent?: string | undefined;
|
|
1178
773
|
numberOfRequestsLast30Days?: number | undefined;
|
|
@@ -1189,14 +784,6 @@ export interface InsightCategorySpecificSummary {
|
|
|
1189
784
|
deprecationDetails?: DeprecationDetail[] | undefined;
|
|
1190
785
|
addonCompatibilityDetails?: AddonCompatibilityDetail[] | undefined;
|
|
1191
786
|
}
|
|
1192
|
-
export declare const InsightStatusValue: {
|
|
1193
|
-
readonly ERROR: "ERROR";
|
|
1194
|
-
readonly PASSING: "PASSING";
|
|
1195
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
1196
|
-
readonly WARNING: "WARNING";
|
|
1197
|
-
};
|
|
1198
|
-
export type InsightStatusValue =
|
|
1199
|
-
(typeof InsightStatusValue)[keyof typeof InsightStatusValue];
|
|
1200
787
|
export interface InsightStatus {
|
|
1201
788
|
status?: InsightStatusValue | undefined;
|
|
1202
789
|
reason?: string | undefined;
|
|
@@ -1226,13 +813,6 @@ export interface DescribeInsightResponse {
|
|
|
1226
813
|
export interface DescribeInsightsRefreshRequest {
|
|
1227
814
|
clusterName: string | undefined;
|
|
1228
815
|
}
|
|
1229
|
-
export declare const InsightsRefreshStatus: {
|
|
1230
|
-
readonly COMPLETED: "COMPLETED";
|
|
1231
|
-
readonly FAILED: "FAILED";
|
|
1232
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1233
|
-
};
|
|
1234
|
-
export type InsightsRefreshStatus =
|
|
1235
|
-
(typeof InsightsRefreshStatus)[keyof typeof InsightsRefreshStatus];
|
|
1236
816
|
export interface DescribeInsightsRefreshResponse {
|
|
1237
817
|
message?: string | undefined;
|
|
1238
818
|
status?: InsightsRefreshStatus | undefined;
|
|
@@ -1324,16 +904,6 @@ export interface ListClustersResponse {
|
|
|
1324
904
|
clusters?: string[] | undefined;
|
|
1325
905
|
nextToken?: string | undefined;
|
|
1326
906
|
}
|
|
1327
|
-
export declare const EksAnywhereSubscriptionStatus: {
|
|
1328
|
-
readonly ACTIVE: "ACTIVE";
|
|
1329
|
-
readonly CREATING: "CREATING";
|
|
1330
|
-
readonly DELETING: "DELETING";
|
|
1331
|
-
readonly EXPIRED: "EXPIRED";
|
|
1332
|
-
readonly EXPIRING: "EXPIRING";
|
|
1333
|
-
readonly UPDATING: "UPDATING";
|
|
1334
|
-
};
|
|
1335
|
-
export type EksAnywhereSubscriptionStatus =
|
|
1336
|
-
(typeof EksAnywhereSubscriptionStatus)[keyof typeof EksAnywhereSubscriptionStatus];
|
|
1337
907
|
export interface ListEksAnywhereSubscriptionsRequest {
|
|
1338
908
|
maxResults?: number | undefined;
|
|
1339
909
|
nextToken?: string | undefined;
|
|
@@ -1414,24 +984,12 @@ export interface ListPodIdentityAssociationsResponse {
|
|
|
1414
984
|
associations?: PodIdentityAssociationSummary[] | undefined;
|
|
1415
985
|
nextToken?: string | undefined;
|
|
1416
986
|
}
|
|
1417
|
-
export declare class BadRequestException extends __BaseException {
|
|
1418
|
-
readonly name: "BadRequestException";
|
|
1419
|
-
readonly $fault: "client";
|
|
1420
|
-
constructor(
|
|
1421
|
-
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
1422
|
-
);
|
|
1423
|
-
}
|
|
1424
987
|
export interface ListTagsForResourceRequest {
|
|
1425
988
|
resourceArn: string | undefined;
|
|
1426
989
|
}
|
|
1427
990
|
export interface ListTagsForResourceResponse {
|
|
1428
991
|
tags?: Record<string, string> | undefined;
|
|
1429
992
|
}
|
|
1430
|
-
export declare class NotFoundException extends __BaseException {
|
|
1431
|
-
readonly name: "NotFoundException";
|
|
1432
|
-
readonly $fault: "client";
|
|
1433
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
1434
|
-
}
|
|
1435
993
|
export interface ListUpdatesRequest {
|
|
1436
994
|
name: string | undefined;
|
|
1437
995
|
nodegroupName?: string | undefined;
|
|
@@ -1443,19 +1001,6 @@ export interface ListUpdatesResponse {
|
|
|
1443
1001
|
updateIds?: string[] | undefined;
|
|
1444
1002
|
nextToken?: string | undefined;
|
|
1445
1003
|
}
|
|
1446
|
-
export declare const ConnectorConfigProvider: {
|
|
1447
|
-
readonly AKS: "AKS";
|
|
1448
|
-
readonly ANTHOS: "ANTHOS";
|
|
1449
|
-
readonly EC2: "EC2";
|
|
1450
|
-
readonly EKS_ANYWHERE: "EKS_ANYWHERE";
|
|
1451
|
-
readonly GKE: "GKE";
|
|
1452
|
-
readonly OPENSHIFT: "OPENSHIFT";
|
|
1453
|
-
readonly OTHER: "OTHER";
|
|
1454
|
-
readonly RANCHER: "RANCHER";
|
|
1455
|
-
readonly TANZU: "TANZU";
|
|
1456
|
-
};
|
|
1457
|
-
export type ConnectorConfigProvider =
|
|
1458
|
-
(typeof ConnectorConfigProvider)[keyof typeof ConnectorConfigProvider];
|
|
1459
1004
|
export interface ConnectorConfigRequest {
|
|
1460
1005
|
roleArn: string | undefined;
|
|
1461
1006
|
provider: ConnectorConfigProvider | undefined;
|
|
@@ -1469,16 +1014,6 @@ export interface RegisterClusterRequest {
|
|
|
1469
1014
|
export interface RegisterClusterResponse {
|
|
1470
1015
|
cluster?: Cluster | undefined;
|
|
1471
1016
|
}
|
|
1472
|
-
export declare class ResourcePropagationDelayException extends __BaseException {
|
|
1473
|
-
readonly name: "ResourcePropagationDelayException";
|
|
1474
|
-
readonly $fault: "client";
|
|
1475
|
-
constructor(
|
|
1476
|
-
opts: __ExceptionOptionType<
|
|
1477
|
-
ResourcePropagationDelayException,
|
|
1478
|
-
__BaseException
|
|
1479
|
-
>
|
|
1480
|
-
);
|
|
1481
|
-
}
|
|
1482
1017
|
export interface StartInsightsRefreshRequest {
|
|
1483
1018
|
clusterName: string | undefined;
|
|
1484
1019
|
}
|
|
@@ -1539,14 +1074,6 @@ export interface UpdateClusterConfigRequest {
|
|
|
1539
1074
|
export interface UpdateClusterConfigResponse {
|
|
1540
1075
|
update?: Update | undefined;
|
|
1541
1076
|
}
|
|
1542
|
-
export declare class InvalidStateException extends __BaseException {
|
|
1543
|
-
readonly name: "InvalidStateException";
|
|
1544
|
-
readonly $fault: "client";
|
|
1545
|
-
clusterName?: string | undefined;
|
|
1546
|
-
constructor(
|
|
1547
|
-
opts: __ExceptionOptionType<InvalidStateException, __BaseException>
|
|
1548
|
-
);
|
|
1549
|
-
}
|
|
1550
1077
|
export interface UpdateClusterVersionRequest {
|
|
1551
1078
|
name: string | undefined;
|
|
1552
1079
|
version: string | undefined;
|