@aws-sdk/client-eks 3.301.0 → 3.306.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.
@@ -7,16 +7,18 @@ export declare class AccessDeniedException extends __BaseException {
7
7
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
8
  );
9
9
  }
10
- export declare enum AddonIssueCode {
11
- ACCESS_DENIED = "AccessDenied",
12
- ADMISSION_REQUEST_DENIED = "AdmissionRequestDenied",
13
- CLUSTER_UNREACHABLE = "ClusterUnreachable",
14
- CONFIGURATION_CONFLICT = "ConfigurationConflict",
15
- INSUFFICIENT_NUMBER_OF_REPLICAS = "InsufficientNumberOfReplicas",
16
- INTERNAL_FAILURE = "InternalFailure",
17
- K8S_RESOURCE_NOT_FOUND = "K8sResourceNotFound",
18
- UNSUPPORTED_ADDON_MODIFICATION = "UnsupportedAddonModification",
19
- }
10
+ export declare const AddonIssueCode: {
11
+ readonly ACCESS_DENIED: "AccessDenied";
12
+ readonly ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied";
13
+ readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
14
+ readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
15
+ readonly INSUFFICIENT_NUMBER_OF_REPLICAS: "InsufficientNumberOfReplicas";
16
+ readonly INTERNAL_FAILURE: "InternalFailure";
17
+ readonly K8S_RESOURCE_NOT_FOUND: "K8sResourceNotFound";
18
+ readonly UNSUPPORTED_ADDON_MODIFICATION: "UnsupportedAddonModification";
19
+ };
20
+ export type AddonIssueCode =
21
+ (typeof AddonIssueCode)[keyof typeof AddonIssueCode];
20
22
  export interface AddonIssue {
21
23
  code?: AddonIssueCode | string;
22
24
  message?: string;
@@ -29,16 +31,17 @@ export interface MarketplaceInformation {
29
31
  productId?: string;
30
32
  productUrl?: string;
31
33
  }
32
- export declare enum AddonStatus {
33
- ACTIVE = "ACTIVE",
34
- CREATE_FAILED = "CREATE_FAILED",
35
- CREATING = "CREATING",
36
- DEGRADED = "DEGRADED",
37
- DELETE_FAILED = "DELETE_FAILED",
38
- DELETING = "DELETING",
39
- UPDATE_FAILED = "UPDATE_FAILED",
40
- UPDATING = "UPDATING",
41
- }
34
+ export declare const AddonStatus: {
35
+ readonly ACTIVE: "ACTIVE";
36
+ readonly CREATE_FAILED: "CREATE_FAILED";
37
+ readonly CREATING: "CREATING";
38
+ readonly DEGRADED: "DEGRADED";
39
+ readonly DELETE_FAILED: "DELETE_FAILED";
40
+ readonly DELETING: "DELETING";
41
+ readonly UPDATE_FAILED: "UPDATE_FAILED";
42
+ readonly UPDATING: "UPDATING";
43
+ };
44
+ export type AddonStatus = (typeof AddonStatus)[keyof typeof AddonStatus];
42
45
  export interface Addon {
43
46
  addonName?: string;
44
47
  clusterName?: string;
@@ -74,20 +77,21 @@ export interface AddonInfo {
74
77
  owner?: string;
75
78
  marketplaceInformation?: MarketplaceInformation;
76
79
  }
77
- export declare enum AMITypes {
78
- AL2_ARM_64 = "AL2_ARM_64",
79
- AL2_x86_64 = "AL2_x86_64",
80
- AL2_x86_64_GPU = "AL2_x86_64_GPU",
81
- BOTTLEROCKET_ARM_64 = "BOTTLEROCKET_ARM_64",
82
- BOTTLEROCKET_ARM_64_NVIDIA = "BOTTLEROCKET_ARM_64_NVIDIA",
83
- BOTTLEROCKET_x86_64 = "BOTTLEROCKET_x86_64",
84
- BOTTLEROCKET_x86_64_NVIDIA = "BOTTLEROCKET_x86_64_NVIDIA",
85
- CUSTOM = "CUSTOM",
86
- WINDOWS_CORE_2019_x86_64 = "WINDOWS_CORE_2019_x86_64",
87
- WINDOWS_CORE_2022_x86_64 = "WINDOWS_CORE_2022_x86_64",
88
- WINDOWS_FULL_2019_x86_64 = "WINDOWS_FULL_2019_x86_64",
89
- WINDOWS_FULL_2022_x86_64 = "WINDOWS_FULL_2022_x86_64",
90
- }
80
+ export declare const AMITypes: {
81
+ readonly AL2_ARM_64: "AL2_ARM_64";
82
+ readonly AL2_x86_64: "AL2_x86_64";
83
+ readonly AL2_x86_64_GPU: "AL2_x86_64_GPU";
84
+ readonly BOTTLEROCKET_ARM_64: "BOTTLEROCKET_ARM_64";
85
+ readonly BOTTLEROCKET_ARM_64_NVIDIA: "BOTTLEROCKET_ARM_64_NVIDIA";
86
+ readonly BOTTLEROCKET_x86_64: "BOTTLEROCKET_x86_64";
87
+ readonly BOTTLEROCKET_x86_64_NVIDIA: "BOTTLEROCKET_x86_64_NVIDIA";
88
+ readonly CUSTOM: "CUSTOM";
89
+ readonly WINDOWS_CORE_2019_x86_64: "WINDOWS_CORE_2019_x86_64";
90
+ readonly WINDOWS_CORE_2022_x86_64: "WINDOWS_CORE_2022_x86_64";
91
+ readonly WINDOWS_FULL_2019_x86_64: "WINDOWS_FULL_2019_x86_64";
92
+ readonly WINDOWS_FULL_2022_x86_64: "WINDOWS_FULL_2022_x86_64";
93
+ };
94
+ export type AMITypes = (typeof AMITypes)[keyof typeof AMITypes];
91
95
  export interface Provider {
92
96
  keyArn?: string;
93
97
  }
@@ -100,75 +104,80 @@ export interface AssociateEncryptionConfigRequest {
100
104
  encryptionConfig: EncryptionConfig[] | undefined;
101
105
  clientRequestToken?: string;
102
106
  }
103
- export declare enum ErrorCode {
104
- ACCESS_DENIED = "AccessDenied",
105
- ADMISSION_REQUEST_DENIED = "AdmissionRequestDenied",
106
- CLUSTER_UNREACHABLE = "ClusterUnreachable",
107
- CONFIGURATION_CONFLICT = "ConfigurationConflict",
108
- ENI_LIMIT_REACHED = "EniLimitReached",
109
- INSUFFICIENT_FREE_ADDRESSES = "InsufficientFreeAddresses",
110
- INSUFFICIENT_NUMBER_OF_REPLICAS = "InsufficientNumberOfReplicas",
111
- IP_NOT_AVAILABLE = "IpNotAvailable",
112
- K8S_RESOURCE_NOT_FOUND = "K8sResourceNotFound",
113
- NODE_CREATION_FAILURE = "NodeCreationFailure",
114
- OPERATION_NOT_PERMITTED = "OperationNotPermitted",
115
- POD_EVICTION_FAILURE = "PodEvictionFailure",
116
- SECURITY_GROUP_NOT_FOUND = "SecurityGroupNotFound",
117
- SUBNET_NOT_FOUND = "SubnetNotFound",
118
- UNKNOWN = "Unknown",
119
- UNSUPPORTED_ADDON_MODIFICATION = "UnsupportedAddonModification",
120
- VPC_ID_NOT_FOUND = "VpcIdNotFound",
121
- }
107
+ export declare const ErrorCode: {
108
+ readonly ACCESS_DENIED: "AccessDenied";
109
+ readonly ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied";
110
+ readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
111
+ readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
112
+ readonly ENI_LIMIT_REACHED: "EniLimitReached";
113
+ readonly INSUFFICIENT_FREE_ADDRESSES: "InsufficientFreeAddresses";
114
+ readonly INSUFFICIENT_NUMBER_OF_REPLICAS: "InsufficientNumberOfReplicas";
115
+ readonly IP_NOT_AVAILABLE: "IpNotAvailable";
116
+ readonly K8S_RESOURCE_NOT_FOUND: "K8sResourceNotFound";
117
+ readonly NODE_CREATION_FAILURE: "NodeCreationFailure";
118
+ readonly OPERATION_NOT_PERMITTED: "OperationNotPermitted";
119
+ readonly POD_EVICTION_FAILURE: "PodEvictionFailure";
120
+ readonly SECURITY_GROUP_NOT_FOUND: "SecurityGroupNotFound";
121
+ readonly SUBNET_NOT_FOUND: "SubnetNotFound";
122
+ readonly UNKNOWN: "Unknown";
123
+ readonly UNSUPPORTED_ADDON_MODIFICATION: "UnsupportedAddonModification";
124
+ readonly VPC_ID_NOT_FOUND: "VpcIdNotFound";
125
+ };
126
+ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
122
127
  export interface ErrorDetail {
123
128
  errorCode?: ErrorCode | string;
124
129
  errorMessage?: string;
125
130
  resourceIds?: string[];
126
131
  }
127
- export declare enum UpdateParamType {
128
- ADDON_VERSION = "AddonVersion",
129
- CLUSTER_LOGGING = "ClusterLogging",
130
- DESIRED_SIZE = "DesiredSize",
131
- ENCRYPTION_CONFIG = "EncryptionConfig",
132
- ENDPOINT_PRIVATE_ACCESS = "EndpointPrivateAccess",
133
- ENDPOINT_PUBLIC_ACCESS = "EndpointPublicAccess",
134
- IDENTITY_PROVIDER_CONFIG = "IdentityProviderConfig",
135
- LABELS_TO_ADD = "LabelsToAdd",
136
- LABELS_TO_REMOVE = "LabelsToRemove",
137
- LAUNCH_TEMPLATE_NAME = "LaunchTemplateName",
138
- LAUNCH_TEMPLATE_VERSION = "LaunchTemplateVersion",
139
- MAX_SIZE = "MaxSize",
140
- MAX_UNAVAILABLE = "MaxUnavailable",
141
- MAX_UNAVAILABLE_PERCENTAGE = "MaxUnavailablePercentage",
142
- MIN_SIZE = "MinSize",
143
- PLATFORM_VERSION = "PlatformVersion",
144
- PUBLIC_ACCESS_CIDRS = "PublicAccessCidrs",
145
- RELEASE_VERSION = "ReleaseVersion",
146
- RESOLVE_CONFLICTS = "ResolveConflicts",
147
- SERVICE_ACCOUNT_ROLE_ARN = "ServiceAccountRoleArn",
148
- TAINTS_TO_ADD = "TaintsToAdd",
149
- TAINTS_TO_REMOVE = "TaintsToRemove",
150
- VERSION = "Version",
151
- }
132
+ export declare const UpdateParamType: {
133
+ readonly ADDON_VERSION: "AddonVersion";
134
+ readonly CLUSTER_LOGGING: "ClusterLogging";
135
+ readonly DESIRED_SIZE: "DesiredSize";
136
+ readonly ENCRYPTION_CONFIG: "EncryptionConfig";
137
+ readonly ENDPOINT_PRIVATE_ACCESS: "EndpointPrivateAccess";
138
+ readonly ENDPOINT_PUBLIC_ACCESS: "EndpointPublicAccess";
139
+ readonly IDENTITY_PROVIDER_CONFIG: "IdentityProviderConfig";
140
+ readonly LABELS_TO_ADD: "LabelsToAdd";
141
+ readonly LABELS_TO_REMOVE: "LabelsToRemove";
142
+ readonly LAUNCH_TEMPLATE_NAME: "LaunchTemplateName";
143
+ readonly LAUNCH_TEMPLATE_VERSION: "LaunchTemplateVersion";
144
+ readonly MAX_SIZE: "MaxSize";
145
+ readonly MAX_UNAVAILABLE: "MaxUnavailable";
146
+ readonly MAX_UNAVAILABLE_PERCENTAGE: "MaxUnavailablePercentage";
147
+ readonly MIN_SIZE: "MinSize";
148
+ readonly PLATFORM_VERSION: "PlatformVersion";
149
+ readonly PUBLIC_ACCESS_CIDRS: "PublicAccessCidrs";
150
+ readonly RELEASE_VERSION: "ReleaseVersion";
151
+ readonly RESOLVE_CONFLICTS: "ResolveConflicts";
152
+ readonly SERVICE_ACCOUNT_ROLE_ARN: "ServiceAccountRoleArn";
153
+ readonly TAINTS_TO_ADD: "TaintsToAdd";
154
+ readonly TAINTS_TO_REMOVE: "TaintsToRemove";
155
+ readonly VERSION: "Version";
156
+ };
157
+ export type UpdateParamType =
158
+ (typeof UpdateParamType)[keyof typeof UpdateParamType];
152
159
  export interface UpdateParam {
153
160
  type?: UpdateParamType | string;
154
161
  value?: string;
155
162
  }
156
- export declare enum UpdateStatus {
157
- CANCELLED = "Cancelled",
158
- FAILED = "Failed",
159
- IN_PROGRESS = "InProgress",
160
- SUCCESSFUL = "Successful",
161
- }
162
- export declare enum UpdateType {
163
- ADDON_UPDATE = "AddonUpdate",
164
- ASSOCIATE_ENCRYPTION_CONFIG = "AssociateEncryptionConfig",
165
- ASSOCIATE_IDENTITY_PROVIDER_CONFIG = "AssociateIdentityProviderConfig",
166
- CONFIG_UPDATE = "ConfigUpdate",
167
- DISASSOCIATE_IDENTITY_PROVIDER_CONFIG = "DisassociateIdentityProviderConfig",
168
- ENDPOINT_ACCESS_UPDATE = "EndpointAccessUpdate",
169
- LOGGING_UPDATE = "LoggingUpdate",
170
- VERSION_UPDATE = "VersionUpdate",
171
- }
163
+ export declare const UpdateStatus: {
164
+ readonly CANCELLED: "Cancelled";
165
+ readonly FAILED: "Failed";
166
+ readonly IN_PROGRESS: "InProgress";
167
+ readonly SUCCESSFUL: "Successful";
168
+ };
169
+ export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
170
+ export declare const UpdateType: {
171
+ readonly ADDON_UPDATE: "AddonUpdate";
172
+ readonly ASSOCIATE_ENCRYPTION_CONFIG: "AssociateEncryptionConfig";
173
+ readonly ASSOCIATE_IDENTITY_PROVIDER_CONFIG: "AssociateIdentityProviderConfig";
174
+ readonly CONFIG_UPDATE: "ConfigUpdate";
175
+ readonly DISASSOCIATE_IDENTITY_PROVIDER_CONFIG: "DisassociateIdentityProviderConfig";
176
+ readonly ENDPOINT_ACCESS_UPDATE: "EndpointAccessUpdate";
177
+ readonly LOGGING_UPDATE: "LoggingUpdate";
178
+ readonly VERSION_UPDATE: "VersionUpdate";
179
+ };
180
+ export type UpdateType = (typeof UpdateType)[keyof typeof UpdateType];
172
181
  export interface Update {
173
182
  id?: string;
174
183
  status?: UpdateStatus | string;
@@ -261,11 +270,13 @@ export interface AssociateIdentityProviderConfigResponse {
261
270
  export interface AutoScalingGroup {
262
271
  name?: string;
263
272
  }
264
- export declare enum ResolveConflicts {
265
- NONE = "NONE",
266
- OVERWRITE = "OVERWRITE",
267
- PRESERVE = "PRESERVE",
268
- }
273
+ export declare const ResolveConflicts: {
274
+ readonly NONE: "NONE";
275
+ readonly OVERWRITE: "OVERWRITE";
276
+ readonly PRESERVE: "PRESERVE";
277
+ };
278
+ export type ResolveConflicts =
279
+ (typeof ResolveConflicts)[keyof typeof ResolveConflicts];
269
280
  export interface CreateAddonRequest {
270
281
  clusterName: string | undefined;
271
282
  addonName: string | undefined;
@@ -279,21 +290,23 @@ export interface CreateAddonRequest {
279
290
  export interface CreateAddonResponse {
280
291
  addon?: Addon;
281
292
  }
282
- export declare enum IpFamily {
283
- IPV4 = "ipv4",
284
- IPV6 = "ipv6",
285
- }
293
+ export declare const IpFamily: {
294
+ readonly IPV4: "ipv4";
295
+ readonly IPV6: "ipv6";
296
+ };
297
+ export type IpFamily = (typeof IpFamily)[keyof typeof IpFamily];
286
298
  export interface KubernetesNetworkConfigRequest {
287
299
  serviceIpv4Cidr?: string;
288
300
  ipFamily?: IpFamily | string;
289
301
  }
290
- export declare enum LogType {
291
- API = "api",
292
- AUDIT = "audit",
293
- AUTHENTICATOR = "authenticator",
294
- CONTROLLER_MANAGER = "controllerManager",
295
- SCHEDULER = "scheduler",
296
- }
302
+ export declare const LogType: {
303
+ readonly API: "api";
304
+ readonly AUDIT: "audit";
305
+ readonly AUTHENTICATOR: "authenticator";
306
+ readonly CONTROLLER_MANAGER: "controllerManager";
307
+ readonly SCHEDULER: "scheduler";
308
+ };
309
+ export type LogType = (typeof LogType)[keyof typeof LogType];
297
310
  export interface LogSetup {
298
311
  types?: (LogType | string)[];
299
312
  enabled?: boolean;
@@ -338,14 +351,16 @@ export interface ConnectorConfigResponse {
338
351
  provider?: string;
339
352
  roleArn?: string;
340
353
  }
341
- export declare enum ClusterIssueCode {
342
- ACCESS_DENIED = "AccessDenied",
343
- CLUSTER_UNREACHABLE = "ClusterUnreachable",
344
- CONFIGURATION_CONFLICT = "ConfigurationConflict",
345
- INTERNAL_FAILURE = "InternalFailure",
346
- RESOURCE_LIMIT_EXCEEDED = "ResourceLimitExceeded",
347
- RESOURCE_NOT_FOUND = "ResourceNotFound",
348
- }
354
+ export declare const ClusterIssueCode: {
355
+ readonly ACCESS_DENIED: "AccessDenied";
356
+ readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
357
+ readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
358
+ readonly INTERNAL_FAILURE: "InternalFailure";
359
+ readonly RESOURCE_LIMIT_EXCEEDED: "ResourceLimitExceeded";
360
+ readonly RESOURCE_NOT_FOUND: "ResourceNotFound";
361
+ };
362
+ export type ClusterIssueCode =
363
+ (typeof ClusterIssueCode)[keyof typeof ClusterIssueCode];
349
364
  export interface ClusterIssue {
350
365
  code?: ClusterIssueCode | string;
351
366
  message?: string;
@@ -382,14 +397,15 @@ export interface VpcConfigResponse {
382
397
  endpointPrivateAccess?: boolean;
383
398
  publicAccessCidrs?: string[];
384
399
  }
385
- export declare enum ClusterStatus {
386
- ACTIVE = "ACTIVE",
387
- CREATING = "CREATING",
388
- DELETING = "DELETING",
389
- FAILED = "FAILED",
390
- PENDING = "PENDING",
391
- UPDATING = "UPDATING",
392
- }
400
+ export declare const ClusterStatus: {
401
+ readonly ACTIVE: "ACTIVE";
402
+ readonly CREATING: "CREATING";
403
+ readonly DELETING: "DELETING";
404
+ readonly FAILED: "FAILED";
405
+ readonly PENDING: "PENDING";
406
+ readonly UPDATING: "UPDATING";
407
+ };
408
+ export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
393
409
  export interface Cluster {
394
410
  name?: string;
395
411
  arn?: string;
@@ -457,13 +473,15 @@ export interface CreateFargateProfileRequest {
457
473
  clientRequestToken?: string;
458
474
  tags?: Record<string, string>;
459
475
  }
460
- export declare enum FargateProfileStatus {
461
- ACTIVE = "ACTIVE",
462
- CREATE_FAILED = "CREATE_FAILED",
463
- CREATING = "CREATING",
464
- DELETE_FAILED = "DELETE_FAILED",
465
- DELETING = "DELETING",
466
- }
476
+ export declare const FargateProfileStatus: {
477
+ readonly ACTIVE: "ACTIVE";
478
+ readonly CREATE_FAILED: "CREATE_FAILED";
479
+ readonly CREATING: "CREATING";
480
+ readonly DELETE_FAILED: "DELETE_FAILED";
481
+ readonly DELETING: "DELETING";
482
+ };
483
+ export type FargateProfileStatus =
484
+ (typeof FargateProfileStatus)[keyof typeof FargateProfileStatus];
467
485
  export interface FargateProfile {
468
486
  fargateProfileName?: string;
469
487
  fargateProfileArn?: string;
@@ -478,10 +496,11 @@ export interface FargateProfile {
478
496
  export interface CreateFargateProfileResponse {
479
497
  fargateProfile?: FargateProfile;
480
498
  }
481
- export declare enum CapacityTypes {
482
- ON_DEMAND = "ON_DEMAND",
483
- SPOT = "SPOT",
484
- }
499
+ export declare const CapacityTypes: {
500
+ readonly ON_DEMAND: "ON_DEMAND";
501
+ readonly SPOT: "SPOT";
502
+ };
503
+ export type CapacityTypes = (typeof CapacityTypes)[keyof typeof CapacityTypes];
485
504
  export interface LaunchTemplateSpecification {
486
505
  name?: string;
487
506
  version?: string;
@@ -496,11 +515,12 @@ export interface NodegroupScalingConfig {
496
515
  maxSize?: number;
497
516
  desiredSize?: number;
498
517
  }
499
- export declare enum TaintEffect {
500
- NO_EXECUTE = "NO_EXECUTE",
501
- NO_SCHEDULE = "NO_SCHEDULE",
502
- PREFER_NO_SCHEDULE = "PREFER_NO_SCHEDULE",
503
- }
518
+ export declare const TaintEffect: {
519
+ readonly NO_EXECUTE: "NO_EXECUTE";
520
+ readonly NO_SCHEDULE: "NO_SCHEDULE";
521
+ readonly PREFER_NO_SCHEDULE: "PREFER_NO_SCHEDULE";
522
+ };
523
+ export type TaintEffect = (typeof TaintEffect)[keyof typeof TaintEffect];
504
524
  export interface Taint {
505
525
  key?: string;
506
526
  value?: string;
@@ -530,27 +550,29 @@ export interface CreateNodegroupRequest {
530
550
  version?: string;
531
551
  releaseVersion?: string;
532
552
  }
533
- export declare enum NodegroupIssueCode {
534
- ACCESS_DENIED = "AccessDenied",
535
- ASG_INSTANCE_LAUNCH_FAILURES = "AsgInstanceLaunchFailures",
536
- AUTO_SCALING_GROUP_INVALID_CONFIGURATION = "AutoScalingGroupInvalidConfiguration",
537
- AUTO_SCALING_GROUP_NOT_FOUND = "AutoScalingGroupNotFound",
538
- CLUSTER_UNREACHABLE = "ClusterUnreachable",
539
- EC2_LAUNCH_TEMPLATE_NOT_FOUND = "Ec2LaunchTemplateNotFound",
540
- EC2_LAUNCH_TEMPLATE_VERSION_MISMATCH = "Ec2LaunchTemplateVersionMismatch",
541
- EC2_SECURITY_GROUP_DELETION_FAILURE = "Ec2SecurityGroupDeletionFailure",
542
- EC2_SECURITY_GROUP_NOT_FOUND = "Ec2SecurityGroupNotFound",
543
- EC2_SUBNET_INVALID_CONFIGURATION = "Ec2SubnetInvalidConfiguration",
544
- EC2_SUBNET_MISSING_IPV6_ASSIGNMENT = "Ec2SubnetMissingIpv6Assignment",
545
- EC2_SUBNET_NOT_FOUND = "Ec2SubnetNotFound",
546
- IAM_INSTANCE_PROFILE_NOT_FOUND = "IamInstanceProfileNotFound",
547
- IAM_LIMIT_EXCEEDED = "IamLimitExceeded",
548
- IAM_NODE_ROLE_NOT_FOUND = "IamNodeRoleNotFound",
549
- INSTANCE_LIMIT_EXCEEDED = "InstanceLimitExceeded",
550
- INSUFFICIENT_FREE_ADDRESSES = "InsufficientFreeAddresses",
551
- INTERNAL_FAILURE = "InternalFailure",
552
- NODE_CREATION_FAILURE = "NodeCreationFailure",
553
- }
553
+ export declare const NodegroupIssueCode: {
554
+ readonly ACCESS_DENIED: "AccessDenied";
555
+ readonly ASG_INSTANCE_LAUNCH_FAILURES: "AsgInstanceLaunchFailures";
556
+ readonly AUTO_SCALING_GROUP_INVALID_CONFIGURATION: "AutoScalingGroupInvalidConfiguration";
557
+ readonly AUTO_SCALING_GROUP_NOT_FOUND: "AutoScalingGroupNotFound";
558
+ readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
559
+ readonly EC2_LAUNCH_TEMPLATE_NOT_FOUND: "Ec2LaunchTemplateNotFound";
560
+ readonly EC2_LAUNCH_TEMPLATE_VERSION_MISMATCH: "Ec2LaunchTemplateVersionMismatch";
561
+ readonly EC2_SECURITY_GROUP_DELETION_FAILURE: "Ec2SecurityGroupDeletionFailure";
562
+ readonly EC2_SECURITY_GROUP_NOT_FOUND: "Ec2SecurityGroupNotFound";
563
+ readonly EC2_SUBNET_INVALID_CONFIGURATION: "Ec2SubnetInvalidConfiguration";
564
+ readonly EC2_SUBNET_MISSING_IPV6_ASSIGNMENT: "Ec2SubnetMissingIpv6Assignment";
565
+ readonly EC2_SUBNET_NOT_FOUND: "Ec2SubnetNotFound";
566
+ readonly IAM_INSTANCE_PROFILE_NOT_FOUND: "IamInstanceProfileNotFound";
567
+ readonly IAM_LIMIT_EXCEEDED: "IamLimitExceeded";
568
+ readonly IAM_NODE_ROLE_NOT_FOUND: "IamNodeRoleNotFound";
569
+ readonly INSTANCE_LIMIT_EXCEEDED: "InstanceLimitExceeded";
570
+ readonly INSUFFICIENT_FREE_ADDRESSES: "InsufficientFreeAddresses";
571
+ readonly INTERNAL_FAILURE: "InternalFailure";
572
+ readonly NODE_CREATION_FAILURE: "NodeCreationFailure";
573
+ };
574
+ export type NodegroupIssueCode =
575
+ (typeof NodegroupIssueCode)[keyof typeof NodegroupIssueCode];
554
576
  export interface Issue {
555
577
  code?: NodegroupIssueCode | string;
556
578
  message?: string;
@@ -563,15 +585,17 @@ export interface NodegroupResources {
563
585
  autoScalingGroups?: AutoScalingGroup[];
564
586
  remoteAccessSecurityGroup?: string;
565
587
  }
566
- export declare enum NodegroupStatus {
567
- ACTIVE = "ACTIVE",
568
- CREATE_FAILED = "CREATE_FAILED",
569
- CREATING = "CREATING",
570
- DEGRADED = "DEGRADED",
571
- DELETE_FAILED = "DELETE_FAILED",
572
- DELETING = "DELETING",
573
- UPDATING = "UPDATING",
574
- }
588
+ export declare const NodegroupStatus: {
589
+ readonly ACTIVE: "ACTIVE";
590
+ readonly CREATE_FAILED: "CREATE_FAILED";
591
+ readonly CREATING: "CREATING";
592
+ readonly DEGRADED: "DEGRADED";
593
+ readonly DELETE_FAILED: "DELETE_FAILED";
594
+ readonly DELETING: "DELETING";
595
+ readonly UPDATING: "UPDATING";
596
+ };
597
+ export type NodegroupStatus =
598
+ (typeof NodegroupStatus)[keyof typeof NodegroupStatus];
575
599
  export interface Nodegroup {
576
600
  nodegroupName?: string;
577
601
  nodegroupArn?: string;
@@ -684,11 +708,12 @@ export interface DescribeIdentityProviderConfigRequest {
684
708
  clusterName: string | undefined;
685
709
  identityProviderConfig: IdentityProviderConfig | undefined;
686
710
  }
687
- export declare enum ConfigStatus {
688
- ACTIVE = "ACTIVE",
689
- CREATING = "CREATING",
690
- DELETING = "DELETING",
691
- }
711
+ export declare const ConfigStatus: {
712
+ readonly ACTIVE: "ACTIVE";
713
+ readonly CREATING: "CREATING";
714
+ readonly DELETING: "DELETING";
715
+ };
716
+ export type ConfigStatus = (typeof ConfigStatus)[keyof typeof ConfigStatus];
692
717
  export interface OidcIdentityProviderConfig {
693
718
  identityProviderConfigName?: string;
694
719
  identityProviderConfigArn?: string;
@@ -807,17 +832,19 @@ export interface ListUpdatesResponse {
807
832
  updateIds?: string[];
808
833
  nextToken?: string;
809
834
  }
810
- export declare enum ConnectorConfigProvider {
811
- AKS = "AKS",
812
- ANTHOS = "ANTHOS",
813
- EC2 = "EC2",
814
- EKS_ANYWHERE = "EKS_ANYWHERE",
815
- GKE = "GKE",
816
- OPENSHIFT = "OPENSHIFT",
817
- OTHER = "OTHER",
818
- RANCHER = "RANCHER",
819
- TANZU = "TANZU",
820
- }
835
+ export declare const ConnectorConfigProvider: {
836
+ readonly AKS: "AKS";
837
+ readonly ANTHOS: "ANTHOS";
838
+ readonly EC2: "EC2";
839
+ readonly EKS_ANYWHERE: "EKS_ANYWHERE";
840
+ readonly GKE: "GKE";
841
+ readonly OPENSHIFT: "OPENSHIFT";
842
+ readonly OTHER: "OTHER";
843
+ readonly RANCHER: "RANCHER";
844
+ readonly TANZU: "TANZU";
845
+ };
846
+ export type ConnectorConfigProvider =
847
+ (typeof ConnectorConfigProvider)[keyof typeof ConnectorConfigProvider];
821
848
  export interface ConnectorConfigRequest {
822
849
  roleArn: string | undefined;
823
850
  provider: ConnectorConfigProvider | string | undefined;
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.301.0",
4
+ "version": "3.306.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,44 +21,44 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.301.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.301.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
56
- "@aws-sdk/util-waiter": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.306.0",
25
+ "@aws-sdk/config-resolver": "3.306.0",
26
+ "@aws-sdk/credential-provider-node": "3.306.0",
27
+ "@aws-sdk/fetch-http-handler": "3.306.0",
28
+ "@aws-sdk/hash-node": "3.306.0",
29
+ "@aws-sdk/invalid-dependency": "3.306.0",
30
+ "@aws-sdk/middleware-content-length": "3.306.0",
31
+ "@aws-sdk/middleware-endpoint": "3.306.0",
32
+ "@aws-sdk/middleware-host-header": "3.306.0",
33
+ "@aws-sdk/middleware-logger": "3.306.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.306.0",
35
+ "@aws-sdk/middleware-retry": "3.306.0",
36
+ "@aws-sdk/middleware-serde": "3.306.0",
37
+ "@aws-sdk/middleware-signing": "3.306.0",
38
+ "@aws-sdk/middleware-stack": "3.306.0",
39
+ "@aws-sdk/middleware-user-agent": "3.306.0",
40
+ "@aws-sdk/node-config-provider": "3.306.0",
41
+ "@aws-sdk/node-http-handler": "3.306.0",
42
+ "@aws-sdk/protocol-http": "3.306.0",
43
+ "@aws-sdk/smithy-client": "3.306.0",
44
+ "@aws-sdk/types": "3.306.0",
45
+ "@aws-sdk/url-parser": "3.306.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.306.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.306.0",
51
+ "@aws-sdk/util-endpoints": "3.306.0",
52
+ "@aws-sdk/util-retry": "3.306.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.306.0",
54
+ "@aws-sdk/util-user-agent-node": "3.306.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
+ "@aws-sdk/util-waiter": "3.306.0",
57
57
  "tslib": "^2.5.0",
58
58
  "uuid": "^8.3.2"
59
59
  },
60
60
  "devDependencies": {
61
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
61
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
62
62
  "@tsconfig/node14": "1.0.3",
63
63
  "@types/node": "^14.14.31",
64
64
  "@types/uuid": "^8.3.0",