@aws-sdk/client-eks 3.301.0 → 3.303.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/models/models_0.js +188 -207
- package/dist-es/models/models_0.js +188 -207
- package/dist-types/models/models_0.d.ts +283 -188
- package/dist-types/ts3.4/models/models_0.d.ts +215 -188
- package/package.json +35 -35
|
@@ -17,17 +17,22 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
17
17
|
}
|
|
18
18
|
/**
|
|
19
19
|
* @public
|
|
20
|
+
* @enum
|
|
20
21
|
*/
|
|
21
|
-
export declare
|
|
22
|
-
ACCESS_DENIED
|
|
23
|
-
ADMISSION_REQUEST_DENIED
|
|
24
|
-
CLUSTER_UNREACHABLE
|
|
25
|
-
CONFIGURATION_CONFLICT
|
|
26
|
-
INSUFFICIENT_NUMBER_OF_REPLICAS
|
|
27
|
-
INTERNAL_FAILURE
|
|
28
|
-
K8S_RESOURCE_NOT_FOUND
|
|
29
|
-
UNSUPPORTED_ADDON_MODIFICATION
|
|
30
|
-
}
|
|
22
|
+
export declare const AddonIssueCode: {
|
|
23
|
+
readonly ACCESS_DENIED: "AccessDenied";
|
|
24
|
+
readonly ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied";
|
|
25
|
+
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
26
|
+
readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
|
|
27
|
+
readonly INSUFFICIENT_NUMBER_OF_REPLICAS: "InsufficientNumberOfReplicas";
|
|
28
|
+
readonly INTERNAL_FAILURE: "InternalFailure";
|
|
29
|
+
readonly K8S_RESOURCE_NOT_FOUND: "K8sResourceNotFound";
|
|
30
|
+
readonly UNSUPPORTED_ADDON_MODIFICATION: "UnsupportedAddonModification";
|
|
31
|
+
};
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export type AddonIssueCode = (typeof AddonIssueCode)[keyof typeof AddonIssueCode];
|
|
31
36
|
/**
|
|
32
37
|
* @public
|
|
33
38
|
* <p>An issue related to an add-on.</p>
|
|
@@ -72,17 +77,22 @@ export interface MarketplaceInformation {
|
|
|
72
77
|
}
|
|
73
78
|
/**
|
|
74
79
|
* @public
|
|
80
|
+
* @enum
|
|
75
81
|
*/
|
|
76
|
-
export declare
|
|
77
|
-
ACTIVE
|
|
78
|
-
CREATE_FAILED
|
|
79
|
-
CREATING
|
|
80
|
-
DEGRADED
|
|
81
|
-
DELETE_FAILED
|
|
82
|
-
DELETING
|
|
83
|
-
UPDATE_FAILED
|
|
84
|
-
UPDATING
|
|
85
|
-
}
|
|
82
|
+
export declare const AddonStatus: {
|
|
83
|
+
readonly ACTIVE: "ACTIVE";
|
|
84
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
85
|
+
readonly CREATING: "CREATING";
|
|
86
|
+
readonly DEGRADED: "DEGRADED";
|
|
87
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
88
|
+
readonly DELETING: "DELETING";
|
|
89
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
90
|
+
readonly UPDATING: "UPDATING";
|
|
91
|
+
};
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export type AddonStatus = (typeof AddonStatus)[keyof typeof AddonStatus];
|
|
86
96
|
/**
|
|
87
97
|
* @public
|
|
88
98
|
* <p>An Amazon EKS add-on. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/eks-add-ons.html">Amazon EKS add-ons</a> in
|
|
@@ -222,21 +232,26 @@ export interface AddonInfo {
|
|
|
222
232
|
}
|
|
223
233
|
/**
|
|
224
234
|
* @public
|
|
235
|
+
* @enum
|
|
225
236
|
*/
|
|
226
|
-
export declare
|
|
227
|
-
AL2_ARM_64
|
|
228
|
-
AL2_x86_64
|
|
229
|
-
AL2_x86_64_GPU
|
|
230
|
-
BOTTLEROCKET_ARM_64
|
|
231
|
-
BOTTLEROCKET_ARM_64_NVIDIA
|
|
232
|
-
BOTTLEROCKET_x86_64
|
|
233
|
-
BOTTLEROCKET_x86_64_NVIDIA
|
|
234
|
-
CUSTOM
|
|
235
|
-
WINDOWS_CORE_2019_x86_64
|
|
236
|
-
WINDOWS_CORE_2022_x86_64
|
|
237
|
-
WINDOWS_FULL_2019_x86_64
|
|
238
|
-
WINDOWS_FULL_2022_x86_64
|
|
239
|
-
}
|
|
237
|
+
export declare const AMITypes: {
|
|
238
|
+
readonly AL2_ARM_64: "AL2_ARM_64";
|
|
239
|
+
readonly AL2_x86_64: "AL2_x86_64";
|
|
240
|
+
readonly AL2_x86_64_GPU: "AL2_x86_64_GPU";
|
|
241
|
+
readonly BOTTLEROCKET_ARM_64: "BOTTLEROCKET_ARM_64";
|
|
242
|
+
readonly BOTTLEROCKET_ARM_64_NVIDIA: "BOTTLEROCKET_ARM_64_NVIDIA";
|
|
243
|
+
readonly BOTTLEROCKET_x86_64: "BOTTLEROCKET_x86_64";
|
|
244
|
+
readonly BOTTLEROCKET_x86_64_NVIDIA: "BOTTLEROCKET_x86_64_NVIDIA";
|
|
245
|
+
readonly CUSTOM: "CUSTOM";
|
|
246
|
+
readonly WINDOWS_CORE_2019_x86_64: "WINDOWS_CORE_2019_x86_64";
|
|
247
|
+
readonly WINDOWS_CORE_2022_x86_64: "WINDOWS_CORE_2022_x86_64";
|
|
248
|
+
readonly WINDOWS_FULL_2019_x86_64: "WINDOWS_FULL_2019_x86_64";
|
|
249
|
+
readonly WINDOWS_FULL_2022_x86_64: "WINDOWS_FULL_2022_x86_64";
|
|
250
|
+
};
|
|
251
|
+
/**
|
|
252
|
+
* @public
|
|
253
|
+
*/
|
|
254
|
+
export type AMITypes = (typeof AMITypes)[keyof typeof AMITypes];
|
|
240
255
|
/**
|
|
241
256
|
* @public
|
|
242
257
|
* <p>Identifies the Key Management Service (KMS) key used to encrypt the
|
|
@@ -285,26 +300,31 @@ export interface AssociateEncryptionConfigRequest {
|
|
|
285
300
|
}
|
|
286
301
|
/**
|
|
287
302
|
* @public
|
|
303
|
+
* @enum
|
|
288
304
|
*/
|
|
289
|
-
export declare
|
|
290
|
-
ACCESS_DENIED
|
|
291
|
-
ADMISSION_REQUEST_DENIED
|
|
292
|
-
CLUSTER_UNREACHABLE
|
|
293
|
-
CONFIGURATION_CONFLICT
|
|
294
|
-
ENI_LIMIT_REACHED
|
|
295
|
-
INSUFFICIENT_FREE_ADDRESSES
|
|
296
|
-
INSUFFICIENT_NUMBER_OF_REPLICAS
|
|
297
|
-
IP_NOT_AVAILABLE
|
|
298
|
-
K8S_RESOURCE_NOT_FOUND
|
|
299
|
-
NODE_CREATION_FAILURE
|
|
300
|
-
OPERATION_NOT_PERMITTED
|
|
301
|
-
POD_EVICTION_FAILURE
|
|
302
|
-
SECURITY_GROUP_NOT_FOUND
|
|
303
|
-
SUBNET_NOT_FOUND
|
|
304
|
-
UNKNOWN
|
|
305
|
-
UNSUPPORTED_ADDON_MODIFICATION
|
|
306
|
-
VPC_ID_NOT_FOUND
|
|
307
|
-
}
|
|
305
|
+
export declare const ErrorCode: {
|
|
306
|
+
readonly ACCESS_DENIED: "AccessDenied";
|
|
307
|
+
readonly ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied";
|
|
308
|
+
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
309
|
+
readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
|
|
310
|
+
readonly ENI_LIMIT_REACHED: "EniLimitReached";
|
|
311
|
+
readonly INSUFFICIENT_FREE_ADDRESSES: "InsufficientFreeAddresses";
|
|
312
|
+
readonly INSUFFICIENT_NUMBER_OF_REPLICAS: "InsufficientNumberOfReplicas";
|
|
313
|
+
readonly IP_NOT_AVAILABLE: "IpNotAvailable";
|
|
314
|
+
readonly K8S_RESOURCE_NOT_FOUND: "K8sResourceNotFound";
|
|
315
|
+
readonly NODE_CREATION_FAILURE: "NodeCreationFailure";
|
|
316
|
+
readonly OPERATION_NOT_PERMITTED: "OperationNotPermitted";
|
|
317
|
+
readonly POD_EVICTION_FAILURE: "PodEvictionFailure";
|
|
318
|
+
readonly SECURITY_GROUP_NOT_FOUND: "SecurityGroupNotFound";
|
|
319
|
+
readonly SUBNET_NOT_FOUND: "SubnetNotFound";
|
|
320
|
+
readonly UNKNOWN: "Unknown";
|
|
321
|
+
readonly UNSUPPORTED_ADDON_MODIFICATION: "UnsupportedAddonModification";
|
|
322
|
+
readonly VPC_ID_NOT_FOUND: "VpcIdNotFound";
|
|
323
|
+
};
|
|
324
|
+
/**
|
|
325
|
+
* @public
|
|
326
|
+
*/
|
|
327
|
+
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
308
328
|
/**
|
|
309
329
|
* @public
|
|
310
330
|
* <p>An object representing an error when an asynchronous operation fails.</p>
|
|
@@ -363,32 +383,37 @@ export interface ErrorDetail {
|
|
|
363
383
|
}
|
|
364
384
|
/**
|
|
365
385
|
* @public
|
|
386
|
+
* @enum
|
|
366
387
|
*/
|
|
367
|
-
export declare
|
|
368
|
-
ADDON_VERSION
|
|
369
|
-
CLUSTER_LOGGING
|
|
370
|
-
DESIRED_SIZE
|
|
371
|
-
ENCRYPTION_CONFIG
|
|
372
|
-
ENDPOINT_PRIVATE_ACCESS
|
|
373
|
-
ENDPOINT_PUBLIC_ACCESS
|
|
374
|
-
IDENTITY_PROVIDER_CONFIG
|
|
375
|
-
LABELS_TO_ADD
|
|
376
|
-
LABELS_TO_REMOVE
|
|
377
|
-
LAUNCH_TEMPLATE_NAME
|
|
378
|
-
LAUNCH_TEMPLATE_VERSION
|
|
379
|
-
MAX_SIZE
|
|
380
|
-
MAX_UNAVAILABLE
|
|
381
|
-
MAX_UNAVAILABLE_PERCENTAGE
|
|
382
|
-
MIN_SIZE
|
|
383
|
-
PLATFORM_VERSION
|
|
384
|
-
PUBLIC_ACCESS_CIDRS
|
|
385
|
-
RELEASE_VERSION
|
|
386
|
-
RESOLVE_CONFLICTS
|
|
387
|
-
SERVICE_ACCOUNT_ROLE_ARN
|
|
388
|
-
TAINTS_TO_ADD
|
|
389
|
-
TAINTS_TO_REMOVE
|
|
390
|
-
VERSION
|
|
391
|
-
}
|
|
388
|
+
export declare const UpdateParamType: {
|
|
389
|
+
readonly ADDON_VERSION: "AddonVersion";
|
|
390
|
+
readonly CLUSTER_LOGGING: "ClusterLogging";
|
|
391
|
+
readonly DESIRED_SIZE: "DesiredSize";
|
|
392
|
+
readonly ENCRYPTION_CONFIG: "EncryptionConfig";
|
|
393
|
+
readonly ENDPOINT_PRIVATE_ACCESS: "EndpointPrivateAccess";
|
|
394
|
+
readonly ENDPOINT_PUBLIC_ACCESS: "EndpointPublicAccess";
|
|
395
|
+
readonly IDENTITY_PROVIDER_CONFIG: "IdentityProviderConfig";
|
|
396
|
+
readonly LABELS_TO_ADD: "LabelsToAdd";
|
|
397
|
+
readonly LABELS_TO_REMOVE: "LabelsToRemove";
|
|
398
|
+
readonly LAUNCH_TEMPLATE_NAME: "LaunchTemplateName";
|
|
399
|
+
readonly LAUNCH_TEMPLATE_VERSION: "LaunchTemplateVersion";
|
|
400
|
+
readonly MAX_SIZE: "MaxSize";
|
|
401
|
+
readonly MAX_UNAVAILABLE: "MaxUnavailable";
|
|
402
|
+
readonly MAX_UNAVAILABLE_PERCENTAGE: "MaxUnavailablePercentage";
|
|
403
|
+
readonly MIN_SIZE: "MinSize";
|
|
404
|
+
readonly PLATFORM_VERSION: "PlatformVersion";
|
|
405
|
+
readonly PUBLIC_ACCESS_CIDRS: "PublicAccessCidrs";
|
|
406
|
+
readonly RELEASE_VERSION: "ReleaseVersion";
|
|
407
|
+
readonly RESOLVE_CONFLICTS: "ResolveConflicts";
|
|
408
|
+
readonly SERVICE_ACCOUNT_ROLE_ARN: "ServiceAccountRoleArn";
|
|
409
|
+
readonly TAINTS_TO_ADD: "TaintsToAdd";
|
|
410
|
+
readonly TAINTS_TO_REMOVE: "TaintsToRemove";
|
|
411
|
+
readonly VERSION: "Version";
|
|
412
|
+
};
|
|
413
|
+
/**
|
|
414
|
+
* @public
|
|
415
|
+
*/
|
|
416
|
+
export type UpdateParamType = (typeof UpdateParamType)[keyof typeof UpdateParamType];
|
|
392
417
|
/**
|
|
393
418
|
* @public
|
|
394
419
|
* <p>An object representing the details of an update request.</p>
|
|
@@ -405,26 +430,36 @@ export interface UpdateParam {
|
|
|
405
430
|
}
|
|
406
431
|
/**
|
|
407
432
|
* @public
|
|
433
|
+
* @enum
|
|
408
434
|
*/
|
|
409
|
-
export declare
|
|
410
|
-
CANCELLED
|
|
411
|
-
FAILED
|
|
412
|
-
IN_PROGRESS
|
|
413
|
-
SUCCESSFUL
|
|
414
|
-
}
|
|
435
|
+
export declare const UpdateStatus: {
|
|
436
|
+
readonly CANCELLED: "Cancelled";
|
|
437
|
+
readonly FAILED: "Failed";
|
|
438
|
+
readonly IN_PROGRESS: "InProgress";
|
|
439
|
+
readonly SUCCESSFUL: "Successful";
|
|
440
|
+
};
|
|
415
441
|
/**
|
|
416
442
|
* @public
|
|
417
443
|
*/
|
|
418
|
-
export
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
444
|
+
export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
|
|
445
|
+
/**
|
|
446
|
+
* @public
|
|
447
|
+
* @enum
|
|
448
|
+
*/
|
|
449
|
+
export declare const UpdateType: {
|
|
450
|
+
readonly ADDON_UPDATE: "AddonUpdate";
|
|
451
|
+
readonly ASSOCIATE_ENCRYPTION_CONFIG: "AssociateEncryptionConfig";
|
|
452
|
+
readonly ASSOCIATE_IDENTITY_PROVIDER_CONFIG: "AssociateIdentityProviderConfig";
|
|
453
|
+
readonly CONFIG_UPDATE: "ConfigUpdate";
|
|
454
|
+
readonly DISASSOCIATE_IDENTITY_PROVIDER_CONFIG: "DisassociateIdentityProviderConfig";
|
|
455
|
+
readonly ENDPOINT_ACCESS_UPDATE: "EndpointAccessUpdate";
|
|
456
|
+
readonly LOGGING_UPDATE: "LoggingUpdate";
|
|
457
|
+
readonly VERSION_UPDATE: "VersionUpdate";
|
|
458
|
+
};
|
|
459
|
+
/**
|
|
460
|
+
* @public
|
|
461
|
+
*/
|
|
462
|
+
export type UpdateType = (typeof UpdateType)[keyof typeof UpdateType];
|
|
428
463
|
/**
|
|
429
464
|
* @public
|
|
430
465
|
* <p>An object representing an asynchronous update.</p>
|
|
@@ -718,12 +753,17 @@ export interface AutoScalingGroup {
|
|
|
718
753
|
}
|
|
719
754
|
/**
|
|
720
755
|
* @public
|
|
756
|
+
* @enum
|
|
721
757
|
*/
|
|
722
|
-
export declare
|
|
723
|
-
NONE
|
|
724
|
-
OVERWRITE
|
|
725
|
-
PRESERVE
|
|
726
|
-
}
|
|
758
|
+
export declare const ResolveConflicts: {
|
|
759
|
+
readonly NONE: "NONE";
|
|
760
|
+
readonly OVERWRITE: "OVERWRITE";
|
|
761
|
+
readonly PRESERVE: "PRESERVE";
|
|
762
|
+
};
|
|
763
|
+
/**
|
|
764
|
+
* @public
|
|
765
|
+
*/
|
|
766
|
+
export type ResolveConflicts = (typeof ResolveConflicts)[keyof typeof ResolveConflicts];
|
|
727
767
|
/**
|
|
728
768
|
* @public
|
|
729
769
|
*/
|
|
@@ -813,11 +853,16 @@ export interface CreateAddonResponse {
|
|
|
813
853
|
}
|
|
814
854
|
/**
|
|
815
855
|
* @public
|
|
856
|
+
* @enum
|
|
816
857
|
*/
|
|
817
|
-
export declare
|
|
818
|
-
IPV4
|
|
819
|
-
IPV6
|
|
820
|
-
}
|
|
858
|
+
export declare const IpFamily: {
|
|
859
|
+
readonly IPV4: "ipv4";
|
|
860
|
+
readonly IPV6: "ipv6";
|
|
861
|
+
};
|
|
862
|
+
/**
|
|
863
|
+
* @public
|
|
864
|
+
*/
|
|
865
|
+
export type IpFamily = (typeof IpFamily)[keyof typeof IpFamily];
|
|
821
866
|
/**
|
|
822
867
|
* @public
|
|
823
868
|
* <p>The Kubernetes network configuration for the cluster.</p>
|
|
@@ -867,14 +912,19 @@ export interface KubernetesNetworkConfigRequest {
|
|
|
867
912
|
}
|
|
868
913
|
/**
|
|
869
914
|
* @public
|
|
915
|
+
* @enum
|
|
870
916
|
*/
|
|
871
|
-
export declare
|
|
872
|
-
API
|
|
873
|
-
AUDIT
|
|
874
|
-
AUTHENTICATOR
|
|
875
|
-
CONTROLLER_MANAGER
|
|
876
|
-
SCHEDULER
|
|
877
|
-
}
|
|
917
|
+
export declare const LogType: {
|
|
918
|
+
readonly API: "api";
|
|
919
|
+
readonly AUDIT: "audit";
|
|
920
|
+
readonly AUTHENTICATOR: "authenticator";
|
|
921
|
+
readonly CONTROLLER_MANAGER: "controllerManager";
|
|
922
|
+
readonly SCHEDULER: "scheduler";
|
|
923
|
+
};
|
|
924
|
+
/**
|
|
925
|
+
* @public
|
|
926
|
+
*/
|
|
927
|
+
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
878
928
|
/**
|
|
879
929
|
* @public
|
|
880
930
|
* <p>An object representing the enabled or disabled Kubernetes control plane logs for your
|
|
@@ -1124,15 +1174,20 @@ export interface ConnectorConfigResponse {
|
|
|
1124
1174
|
}
|
|
1125
1175
|
/**
|
|
1126
1176
|
* @public
|
|
1177
|
+
* @enum
|
|
1127
1178
|
*/
|
|
1128
|
-
export declare
|
|
1129
|
-
ACCESS_DENIED
|
|
1130
|
-
CLUSTER_UNREACHABLE
|
|
1131
|
-
CONFIGURATION_CONFLICT
|
|
1132
|
-
INTERNAL_FAILURE
|
|
1133
|
-
RESOURCE_LIMIT_EXCEEDED
|
|
1134
|
-
RESOURCE_NOT_FOUND
|
|
1135
|
-
}
|
|
1179
|
+
export declare const ClusterIssueCode: {
|
|
1180
|
+
readonly ACCESS_DENIED: "AccessDenied";
|
|
1181
|
+
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
1182
|
+
readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
|
|
1183
|
+
readonly INTERNAL_FAILURE: "InternalFailure";
|
|
1184
|
+
readonly RESOURCE_LIMIT_EXCEEDED: "ResourceLimitExceeded";
|
|
1185
|
+
readonly RESOURCE_NOT_FOUND: "ResourceNotFound";
|
|
1186
|
+
};
|
|
1187
|
+
/**
|
|
1188
|
+
* @public
|
|
1189
|
+
*/
|
|
1190
|
+
export type ClusterIssueCode = (typeof ClusterIssueCode)[keyof typeof ClusterIssueCode];
|
|
1136
1191
|
/**
|
|
1137
1192
|
* @public
|
|
1138
1193
|
* <p>An issue with your local Amazon EKS cluster on an Amazon Web Services Outpost.
|
|
@@ -1316,15 +1371,20 @@ export interface VpcConfigResponse {
|
|
|
1316
1371
|
}
|
|
1317
1372
|
/**
|
|
1318
1373
|
* @public
|
|
1374
|
+
* @enum
|
|
1319
1375
|
*/
|
|
1320
|
-
export declare
|
|
1321
|
-
ACTIVE
|
|
1322
|
-
CREATING
|
|
1323
|
-
DELETING
|
|
1324
|
-
FAILED
|
|
1325
|
-
PENDING
|
|
1326
|
-
UPDATING
|
|
1327
|
-
}
|
|
1376
|
+
export declare const ClusterStatus: {
|
|
1377
|
+
readonly ACTIVE: "ACTIVE";
|
|
1378
|
+
readonly CREATING: "CREATING";
|
|
1379
|
+
readonly DELETING: "DELETING";
|
|
1380
|
+
readonly FAILED: "FAILED";
|
|
1381
|
+
readonly PENDING: "PENDING";
|
|
1382
|
+
readonly UPDATING: "UPDATING";
|
|
1383
|
+
};
|
|
1384
|
+
/**
|
|
1385
|
+
* @public
|
|
1386
|
+
*/
|
|
1387
|
+
export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
|
|
1328
1388
|
/**
|
|
1329
1389
|
* @public
|
|
1330
1390
|
* <p>An object representing an Amazon EKS cluster.</p>
|
|
@@ -1559,14 +1619,19 @@ export interface CreateFargateProfileRequest {
|
|
|
1559
1619
|
}
|
|
1560
1620
|
/**
|
|
1561
1621
|
* @public
|
|
1622
|
+
* @enum
|
|
1562
1623
|
*/
|
|
1563
|
-
export declare
|
|
1564
|
-
ACTIVE
|
|
1565
|
-
CREATE_FAILED
|
|
1566
|
-
CREATING
|
|
1567
|
-
DELETE_FAILED
|
|
1568
|
-
DELETING
|
|
1569
|
-
}
|
|
1624
|
+
export declare const FargateProfileStatus: {
|
|
1625
|
+
readonly ACTIVE: "ACTIVE";
|
|
1626
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
1627
|
+
readonly CREATING: "CREATING";
|
|
1628
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
1629
|
+
readonly DELETING: "DELETING";
|
|
1630
|
+
};
|
|
1631
|
+
/**
|
|
1632
|
+
* @public
|
|
1633
|
+
*/
|
|
1634
|
+
export type FargateProfileStatus = (typeof FargateProfileStatus)[keyof typeof FargateProfileStatus];
|
|
1570
1635
|
/**
|
|
1571
1636
|
* @public
|
|
1572
1637
|
* <p>An object representing an Fargate profile.</p>
|
|
@@ -1628,11 +1693,16 @@ export interface CreateFargateProfileResponse {
|
|
|
1628
1693
|
}
|
|
1629
1694
|
/**
|
|
1630
1695
|
* @public
|
|
1696
|
+
* @enum
|
|
1631
1697
|
*/
|
|
1632
|
-
export declare
|
|
1633
|
-
ON_DEMAND
|
|
1634
|
-
SPOT
|
|
1635
|
-
}
|
|
1698
|
+
export declare const CapacityTypes: {
|
|
1699
|
+
readonly ON_DEMAND: "ON_DEMAND";
|
|
1700
|
+
readonly SPOT: "SPOT";
|
|
1701
|
+
};
|
|
1702
|
+
/**
|
|
1703
|
+
* @public
|
|
1704
|
+
*/
|
|
1705
|
+
export type CapacityTypes = (typeof CapacityTypes)[keyof typeof CapacityTypes];
|
|
1636
1706
|
/**
|
|
1637
1707
|
* @public
|
|
1638
1708
|
* <p>An object representing a node group launch template specification. The launch template
|
|
@@ -1739,12 +1809,17 @@ export interface NodegroupScalingConfig {
|
|
|
1739
1809
|
}
|
|
1740
1810
|
/**
|
|
1741
1811
|
* @public
|
|
1812
|
+
* @enum
|
|
1742
1813
|
*/
|
|
1743
|
-
export declare
|
|
1744
|
-
NO_EXECUTE
|
|
1745
|
-
NO_SCHEDULE
|
|
1746
|
-
PREFER_NO_SCHEDULE
|
|
1747
|
-
}
|
|
1814
|
+
export declare const TaintEffect: {
|
|
1815
|
+
readonly NO_EXECUTE: "NO_EXECUTE";
|
|
1816
|
+
readonly NO_SCHEDULE: "NO_SCHEDULE";
|
|
1817
|
+
readonly PREFER_NO_SCHEDULE: "PREFER_NO_SCHEDULE";
|
|
1818
|
+
};
|
|
1819
|
+
/**
|
|
1820
|
+
* @public
|
|
1821
|
+
*/
|
|
1822
|
+
export type TaintEffect = (typeof TaintEffect)[keyof typeof TaintEffect];
|
|
1748
1823
|
/**
|
|
1749
1824
|
* @public
|
|
1750
1825
|
* <p>A property that allows a node to repel a set of pods. For more information, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on managed node groups</a>.</p>
|
|
@@ -1918,28 +1993,33 @@ export interface CreateNodegroupRequest {
|
|
|
1918
1993
|
}
|
|
1919
1994
|
/**
|
|
1920
1995
|
* @public
|
|
1996
|
+
* @enum
|
|
1921
1997
|
*/
|
|
1922
|
-
export declare
|
|
1923
|
-
ACCESS_DENIED
|
|
1924
|
-
ASG_INSTANCE_LAUNCH_FAILURES
|
|
1925
|
-
AUTO_SCALING_GROUP_INVALID_CONFIGURATION
|
|
1926
|
-
AUTO_SCALING_GROUP_NOT_FOUND
|
|
1927
|
-
CLUSTER_UNREACHABLE
|
|
1928
|
-
EC2_LAUNCH_TEMPLATE_NOT_FOUND
|
|
1929
|
-
EC2_LAUNCH_TEMPLATE_VERSION_MISMATCH
|
|
1930
|
-
EC2_SECURITY_GROUP_DELETION_FAILURE
|
|
1931
|
-
EC2_SECURITY_GROUP_NOT_FOUND
|
|
1932
|
-
EC2_SUBNET_INVALID_CONFIGURATION
|
|
1933
|
-
EC2_SUBNET_MISSING_IPV6_ASSIGNMENT
|
|
1934
|
-
EC2_SUBNET_NOT_FOUND
|
|
1935
|
-
IAM_INSTANCE_PROFILE_NOT_FOUND
|
|
1936
|
-
IAM_LIMIT_EXCEEDED
|
|
1937
|
-
IAM_NODE_ROLE_NOT_FOUND
|
|
1938
|
-
INSTANCE_LIMIT_EXCEEDED
|
|
1939
|
-
INSUFFICIENT_FREE_ADDRESSES
|
|
1940
|
-
INTERNAL_FAILURE
|
|
1941
|
-
NODE_CREATION_FAILURE
|
|
1942
|
-
}
|
|
1998
|
+
export declare const NodegroupIssueCode: {
|
|
1999
|
+
readonly ACCESS_DENIED: "AccessDenied";
|
|
2000
|
+
readonly ASG_INSTANCE_LAUNCH_FAILURES: "AsgInstanceLaunchFailures";
|
|
2001
|
+
readonly AUTO_SCALING_GROUP_INVALID_CONFIGURATION: "AutoScalingGroupInvalidConfiguration";
|
|
2002
|
+
readonly AUTO_SCALING_GROUP_NOT_FOUND: "AutoScalingGroupNotFound";
|
|
2003
|
+
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
2004
|
+
readonly EC2_LAUNCH_TEMPLATE_NOT_FOUND: "Ec2LaunchTemplateNotFound";
|
|
2005
|
+
readonly EC2_LAUNCH_TEMPLATE_VERSION_MISMATCH: "Ec2LaunchTemplateVersionMismatch";
|
|
2006
|
+
readonly EC2_SECURITY_GROUP_DELETION_FAILURE: "Ec2SecurityGroupDeletionFailure";
|
|
2007
|
+
readonly EC2_SECURITY_GROUP_NOT_FOUND: "Ec2SecurityGroupNotFound";
|
|
2008
|
+
readonly EC2_SUBNET_INVALID_CONFIGURATION: "Ec2SubnetInvalidConfiguration";
|
|
2009
|
+
readonly EC2_SUBNET_MISSING_IPV6_ASSIGNMENT: "Ec2SubnetMissingIpv6Assignment";
|
|
2010
|
+
readonly EC2_SUBNET_NOT_FOUND: "Ec2SubnetNotFound";
|
|
2011
|
+
readonly IAM_INSTANCE_PROFILE_NOT_FOUND: "IamInstanceProfileNotFound";
|
|
2012
|
+
readonly IAM_LIMIT_EXCEEDED: "IamLimitExceeded";
|
|
2013
|
+
readonly IAM_NODE_ROLE_NOT_FOUND: "IamNodeRoleNotFound";
|
|
2014
|
+
readonly INSTANCE_LIMIT_EXCEEDED: "InstanceLimitExceeded";
|
|
2015
|
+
readonly INSUFFICIENT_FREE_ADDRESSES: "InsufficientFreeAddresses";
|
|
2016
|
+
readonly INTERNAL_FAILURE: "InternalFailure";
|
|
2017
|
+
readonly NODE_CREATION_FAILURE: "NodeCreationFailure";
|
|
2018
|
+
};
|
|
2019
|
+
/**
|
|
2020
|
+
* @public
|
|
2021
|
+
*/
|
|
2022
|
+
export type NodegroupIssueCode = (typeof NodegroupIssueCode)[keyof typeof NodegroupIssueCode];
|
|
1943
2023
|
/**
|
|
1944
2024
|
* @public
|
|
1945
2025
|
* <p>An object representing an issue with an Amazon EKS resource.</p>
|
|
@@ -2085,16 +2165,21 @@ export interface NodegroupResources {
|
|
|
2085
2165
|
}
|
|
2086
2166
|
/**
|
|
2087
2167
|
* @public
|
|
2168
|
+
* @enum
|
|
2088
2169
|
*/
|
|
2089
|
-
export declare
|
|
2090
|
-
ACTIVE
|
|
2091
|
-
CREATE_FAILED
|
|
2092
|
-
CREATING
|
|
2093
|
-
DEGRADED
|
|
2094
|
-
DELETE_FAILED
|
|
2095
|
-
DELETING
|
|
2096
|
-
UPDATING
|
|
2097
|
-
}
|
|
2170
|
+
export declare const NodegroupStatus: {
|
|
2171
|
+
readonly ACTIVE: "ACTIVE";
|
|
2172
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
2173
|
+
readonly CREATING: "CREATING";
|
|
2174
|
+
readonly DEGRADED: "DEGRADED";
|
|
2175
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
2176
|
+
readonly DELETING: "DELETING";
|
|
2177
|
+
readonly UPDATING: "UPDATING";
|
|
2178
|
+
};
|
|
2179
|
+
/**
|
|
2180
|
+
* @public
|
|
2181
|
+
*/
|
|
2182
|
+
export type NodegroupStatus = (typeof NodegroupStatus)[keyof typeof NodegroupStatus];
|
|
2098
2183
|
/**
|
|
2099
2184
|
* @public
|
|
2100
2185
|
* <p>An object representing an Amazon EKS managed node group.</p>
|
|
@@ -2543,12 +2628,17 @@ export interface DescribeIdentityProviderConfigRequest {
|
|
|
2543
2628
|
}
|
|
2544
2629
|
/**
|
|
2545
2630
|
* @public
|
|
2631
|
+
* @enum
|
|
2546
2632
|
*/
|
|
2547
|
-
export declare
|
|
2548
|
-
ACTIVE
|
|
2549
|
-
CREATING
|
|
2550
|
-
DELETING
|
|
2551
|
-
}
|
|
2633
|
+
export declare const ConfigStatus: {
|
|
2634
|
+
readonly ACTIVE: "ACTIVE";
|
|
2635
|
+
readonly CREATING: "CREATING";
|
|
2636
|
+
readonly DELETING: "DELETING";
|
|
2637
|
+
};
|
|
2638
|
+
/**
|
|
2639
|
+
* @public
|
|
2640
|
+
*/
|
|
2641
|
+
export type ConfigStatus = (typeof ConfigStatus)[keyof typeof ConfigStatus];
|
|
2552
2642
|
/**
|
|
2553
2643
|
* @public
|
|
2554
2644
|
* <p>An object representing the configuration for an OpenID Connect (OIDC) identity
|
|
@@ -3054,18 +3144,23 @@ export interface ListUpdatesResponse {
|
|
|
3054
3144
|
}
|
|
3055
3145
|
/**
|
|
3056
3146
|
* @public
|
|
3147
|
+
* @enum
|
|
3057
3148
|
*/
|
|
3058
|
-
export declare
|
|
3059
|
-
AKS
|
|
3060
|
-
ANTHOS
|
|
3061
|
-
EC2
|
|
3062
|
-
EKS_ANYWHERE
|
|
3063
|
-
GKE
|
|
3064
|
-
OPENSHIFT
|
|
3065
|
-
OTHER
|
|
3066
|
-
RANCHER
|
|
3067
|
-
TANZU
|
|
3068
|
-
}
|
|
3149
|
+
export declare const ConnectorConfigProvider: {
|
|
3150
|
+
readonly AKS: "AKS";
|
|
3151
|
+
readonly ANTHOS: "ANTHOS";
|
|
3152
|
+
readonly EC2: "EC2";
|
|
3153
|
+
readonly EKS_ANYWHERE: "EKS_ANYWHERE";
|
|
3154
|
+
readonly GKE: "GKE";
|
|
3155
|
+
readonly OPENSHIFT: "OPENSHIFT";
|
|
3156
|
+
readonly OTHER: "OTHER";
|
|
3157
|
+
readonly RANCHER: "RANCHER";
|
|
3158
|
+
readonly TANZU: "TANZU";
|
|
3159
|
+
};
|
|
3160
|
+
/**
|
|
3161
|
+
* @public
|
|
3162
|
+
*/
|
|
3163
|
+
export type ConnectorConfigProvider = (typeof ConnectorConfigProvider)[keyof typeof ConnectorConfigProvider];
|
|
3069
3164
|
/**
|
|
3070
3165
|
* @public
|
|
3071
3166
|
* <p>The configuration sent to a cluster for configuration.</p>
|