@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,18 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { EKSServiceException as __BaseException } from "./EKSServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* @public
|
|
5
|
-
* @enum
|
|
6
|
-
*/
|
|
7
|
-
export declare const AuthenticationMode: {
|
|
8
|
-
readonly API: "API";
|
|
9
|
-
readonly API_AND_CONFIG_MAP: "API_AND_CONFIG_MAP";
|
|
10
|
-
readonly CONFIG_MAP: "CONFIG_MAP";
|
|
11
|
-
};
|
|
12
|
-
/**
|
|
13
|
-
* @public
|
|
14
|
-
*/
|
|
15
|
-
export type AuthenticationMode = (typeof AuthenticationMode)[keyof typeof AuthenticationMode];
|
|
1
|
+
import { AccessScopeType, AddonIssueCode, AddonStatus, AMITypes, AuthenticationMode, CapacityTypes, Category, ClusterIssueCode, ClusterStatus, ClusterVersionStatus, ConfigStatus, ConnectorConfigProvider, EksAnywhereSubscriptionLicenseType, EksAnywhereSubscriptionStatus, EksAnywhereSubscriptionTermUnit, ErrorCode, FargateProfileIssueCode, FargateProfileStatus, InsightsRefreshStatus, InsightStatusValue, IpFamily, LogType, NodegroupIssueCode, NodegroupStatus, NodegroupUpdateStrategies, RepairAction, ResolveConflicts, SupportType, TaintEffect, UpdateParamType, UpdateStatus, UpdateType, VersionStatus } from "./enums";
|
|
16
2
|
/**
|
|
17
3
|
* <p>The access configuration for the cluster.</p>
|
|
18
4
|
* @public
|
|
@@ -30,21 +16,6 @@ export interface AccessConfigResponse {
|
|
|
30
16
|
*/
|
|
31
17
|
authenticationMode?: AuthenticationMode | undefined;
|
|
32
18
|
}
|
|
33
|
-
/**
|
|
34
|
-
* <p>You don't have permissions to perform the requested operation. The <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html">IAM principal</a>
|
|
35
|
-
* making the request must have at least one IAM permissions policy attached that grants
|
|
36
|
-
* the required permissions. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access.html">Access
|
|
37
|
-
* management</a> in the <i>IAM User Guide</i>. </p>
|
|
38
|
-
* @public
|
|
39
|
-
*/
|
|
40
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
41
|
-
readonly name: "AccessDeniedException";
|
|
42
|
-
readonly $fault: "client";
|
|
43
|
-
/**
|
|
44
|
-
* @internal
|
|
45
|
-
*/
|
|
46
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
47
|
-
}
|
|
48
19
|
/**
|
|
49
20
|
* <p>An access entry allows an IAM principal (user or role) to access your cluster.
|
|
50
21
|
* Access entries can replace the need to maintain the <code>aws-auth</code>
|
|
@@ -138,18 +109,6 @@ export interface AccessPolicy {
|
|
|
138
109
|
*/
|
|
139
110
|
arn?: string | undefined;
|
|
140
111
|
}
|
|
141
|
-
/**
|
|
142
|
-
* @public
|
|
143
|
-
* @enum
|
|
144
|
-
*/
|
|
145
|
-
export declare const AccessScopeType: {
|
|
146
|
-
readonly cluster: "cluster";
|
|
147
|
-
readonly namespace: "namespace";
|
|
148
|
-
};
|
|
149
|
-
/**
|
|
150
|
-
* @public
|
|
151
|
-
*/
|
|
152
|
-
export type AccessScopeType = (typeof AccessScopeType)[keyof typeof AccessScopeType];
|
|
153
112
|
/**
|
|
154
113
|
* <p>The scope of an <code>AccessPolicy</code> that's associated to an
|
|
155
114
|
* <code>AccessEntry</code>.</p>
|
|
@@ -168,26 +127,6 @@ export interface AccessScope {
|
|
|
168
127
|
*/
|
|
169
128
|
namespaces?: string[] | undefined;
|
|
170
129
|
}
|
|
171
|
-
/**
|
|
172
|
-
* @public
|
|
173
|
-
* @enum
|
|
174
|
-
*/
|
|
175
|
-
export declare const AddonIssueCode: {
|
|
176
|
-
readonly ACCESS_DENIED: "AccessDenied";
|
|
177
|
-
readonly ADDON_PERMISSION_FAILURE: "AddonPermissionFailure";
|
|
178
|
-
readonly ADDON_SUBSCRIPTION_NEEDED: "AddonSubscriptionNeeded";
|
|
179
|
-
readonly ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied";
|
|
180
|
-
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
181
|
-
readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
|
|
182
|
-
readonly INSUFFICIENT_NUMBER_OF_REPLICAS: "InsufficientNumberOfReplicas";
|
|
183
|
-
readonly INTERNAL_FAILURE: "InternalFailure";
|
|
184
|
-
readonly K8S_RESOURCE_NOT_FOUND: "K8sResourceNotFound";
|
|
185
|
-
readonly UNSUPPORTED_ADDON_MODIFICATION: "UnsupportedAddonModification";
|
|
186
|
-
};
|
|
187
|
-
/**
|
|
188
|
-
* @public
|
|
189
|
-
*/
|
|
190
|
-
export type AddonIssueCode = (typeof AddonIssueCode)[keyof typeof AddonIssueCode];
|
|
191
130
|
/**
|
|
192
131
|
* <p>An issue related to an add-on.</p>
|
|
193
132
|
* @public
|
|
@@ -247,24 +186,6 @@ export interface AddonNamespaceConfigResponse {
|
|
|
247
186
|
*/
|
|
248
187
|
namespace?: string | undefined;
|
|
249
188
|
}
|
|
250
|
-
/**
|
|
251
|
-
* @public
|
|
252
|
-
* @enum
|
|
253
|
-
*/
|
|
254
|
-
export declare const AddonStatus: {
|
|
255
|
-
readonly ACTIVE: "ACTIVE";
|
|
256
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
257
|
-
readonly CREATING: "CREATING";
|
|
258
|
-
readonly DEGRADED: "DEGRADED";
|
|
259
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
260
|
-
readonly DELETING: "DELETING";
|
|
261
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
262
|
-
readonly UPDATING: "UPDATING";
|
|
263
|
-
};
|
|
264
|
-
/**
|
|
265
|
-
* @public
|
|
266
|
-
*/
|
|
267
|
-
export type AddonStatus = (typeof AddonStatus)[keyof typeof AddonStatus];
|
|
268
189
|
/**
|
|
269
190
|
* <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 the
|
|
270
191
|
* <i>Amazon EKS User Guide</i>.</p>
|
|
@@ -522,35 +443,6 @@ export interface AddonPodIdentityConfiguration {
|
|
|
522
443
|
*/
|
|
523
444
|
recommendedManagedPolicies?: string[] | undefined;
|
|
524
445
|
}
|
|
525
|
-
/**
|
|
526
|
-
* @public
|
|
527
|
-
* @enum
|
|
528
|
-
*/
|
|
529
|
-
export declare const AMITypes: {
|
|
530
|
-
readonly AL2023_ARM_64_NVIDIA: "AL2023_ARM_64_NVIDIA";
|
|
531
|
-
readonly AL2023_ARM_64_STANDARD: "AL2023_ARM_64_STANDARD";
|
|
532
|
-
readonly AL2023_x86_64_NEURON: "AL2023_x86_64_NEURON";
|
|
533
|
-
readonly AL2023_x86_64_NVIDIA: "AL2023_x86_64_NVIDIA";
|
|
534
|
-
readonly AL2023_x86_64_STANDARD: "AL2023_x86_64_STANDARD";
|
|
535
|
-
readonly AL2_ARM_64: "AL2_ARM_64";
|
|
536
|
-
readonly AL2_x86_64: "AL2_x86_64";
|
|
537
|
-
readonly AL2_x86_64_GPU: "AL2_x86_64_GPU";
|
|
538
|
-
readonly BOTTLEROCKET_ARM_64: "BOTTLEROCKET_ARM_64";
|
|
539
|
-
readonly BOTTLEROCKET_ARM_64_FIPS: "BOTTLEROCKET_ARM_64_FIPS";
|
|
540
|
-
readonly BOTTLEROCKET_ARM_64_NVIDIA: "BOTTLEROCKET_ARM_64_NVIDIA";
|
|
541
|
-
readonly BOTTLEROCKET_x86_64: "BOTTLEROCKET_x86_64";
|
|
542
|
-
readonly BOTTLEROCKET_x86_64_FIPS: "BOTTLEROCKET_x86_64_FIPS";
|
|
543
|
-
readonly BOTTLEROCKET_x86_64_NVIDIA: "BOTTLEROCKET_x86_64_NVIDIA";
|
|
544
|
-
readonly CUSTOM: "CUSTOM";
|
|
545
|
-
readonly WINDOWS_CORE_2019_x86_64: "WINDOWS_CORE_2019_x86_64";
|
|
546
|
-
readonly WINDOWS_CORE_2022_x86_64: "WINDOWS_CORE_2022_x86_64";
|
|
547
|
-
readonly WINDOWS_FULL_2019_x86_64: "WINDOWS_FULL_2019_x86_64";
|
|
548
|
-
readonly WINDOWS_FULL_2022_x86_64: "WINDOWS_FULL_2022_x86_64";
|
|
549
|
-
};
|
|
550
|
-
/**
|
|
551
|
-
* @public
|
|
552
|
-
*/
|
|
553
|
-
export type AMITypes = (typeof AMITypes)[keyof typeof AMITypes];
|
|
554
446
|
/**
|
|
555
447
|
* @public
|
|
556
448
|
*/
|
|
@@ -627,151 +519,6 @@ export interface AssociateAccessPolicyResponse {
|
|
|
627
519
|
*/
|
|
628
520
|
associatedAccessPolicy?: AssociatedAccessPolicy | undefined;
|
|
629
521
|
}
|
|
630
|
-
/**
|
|
631
|
-
* <p>The specified parameter is invalid. Review the available parameters for the API
|
|
632
|
-
* request.</p>
|
|
633
|
-
* @public
|
|
634
|
-
*/
|
|
635
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
636
|
-
readonly name: "InvalidParameterException";
|
|
637
|
-
readonly $fault: "client";
|
|
638
|
-
/**
|
|
639
|
-
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
640
|
-
* @public
|
|
641
|
-
*/
|
|
642
|
-
clusterName?: string | undefined;
|
|
643
|
-
/**
|
|
644
|
-
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
645
|
-
* @public
|
|
646
|
-
*/
|
|
647
|
-
nodegroupName?: string | undefined;
|
|
648
|
-
/**
|
|
649
|
-
* <p>The Fargate profile associated with the exception.</p>
|
|
650
|
-
* @public
|
|
651
|
-
*/
|
|
652
|
-
fargateProfileName?: string | undefined;
|
|
653
|
-
/**
|
|
654
|
-
* <p>The specified parameter for the add-on name is invalid. Review the available
|
|
655
|
-
* parameters for the API request</p>
|
|
656
|
-
* @public
|
|
657
|
-
*/
|
|
658
|
-
addonName?: string | undefined;
|
|
659
|
-
/**
|
|
660
|
-
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
661
|
-
* @public
|
|
662
|
-
*/
|
|
663
|
-
subscriptionId?: string | undefined;
|
|
664
|
-
/**
|
|
665
|
-
* @internal
|
|
666
|
-
*/
|
|
667
|
-
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
668
|
-
}
|
|
669
|
-
/**
|
|
670
|
-
* <p>The request is invalid given the state of the cluster. Check the state of the cluster
|
|
671
|
-
* and the associated operations.</p>
|
|
672
|
-
* @public
|
|
673
|
-
*/
|
|
674
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
675
|
-
readonly name: "InvalidRequestException";
|
|
676
|
-
readonly $fault: "client";
|
|
677
|
-
/**
|
|
678
|
-
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
679
|
-
* @public
|
|
680
|
-
*/
|
|
681
|
-
clusterName?: string | undefined;
|
|
682
|
-
/**
|
|
683
|
-
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
684
|
-
* @public
|
|
685
|
-
*/
|
|
686
|
-
nodegroupName?: string | undefined;
|
|
687
|
-
/**
|
|
688
|
-
* <p>The request is invalid given the state of the add-on name. Check the state of the
|
|
689
|
-
* cluster and the associated operations.</p>
|
|
690
|
-
* @public
|
|
691
|
-
*/
|
|
692
|
-
addonName?: string | undefined;
|
|
693
|
-
/**
|
|
694
|
-
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
695
|
-
* @public
|
|
696
|
-
*/
|
|
697
|
-
subscriptionId?: string | undefined;
|
|
698
|
-
/**
|
|
699
|
-
* @internal
|
|
700
|
-
*/
|
|
701
|
-
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
702
|
-
}
|
|
703
|
-
/**
|
|
704
|
-
* <p>The specified resource could not be found. You can view your available clusters with
|
|
705
|
-
* <code>ListClusters</code>. You can view your available managed node groups with
|
|
706
|
-
* <code>ListNodegroups</code>. Amazon EKS clusters and node groups are Amazon Web Services Region
|
|
707
|
-
* specific.</p>
|
|
708
|
-
* @public
|
|
709
|
-
*/
|
|
710
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
711
|
-
readonly name: "ResourceNotFoundException";
|
|
712
|
-
readonly $fault: "client";
|
|
713
|
-
/**
|
|
714
|
-
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
715
|
-
* @public
|
|
716
|
-
*/
|
|
717
|
-
clusterName?: string | undefined;
|
|
718
|
-
/**
|
|
719
|
-
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
720
|
-
* @public
|
|
721
|
-
*/
|
|
722
|
-
nodegroupName?: string | undefined;
|
|
723
|
-
/**
|
|
724
|
-
* <p>The Fargate profile associated with the exception.</p>
|
|
725
|
-
* @public
|
|
726
|
-
*/
|
|
727
|
-
fargateProfileName?: string | undefined;
|
|
728
|
-
/**
|
|
729
|
-
* <p>The Amazon EKS add-on name associated with the exception.</p>
|
|
730
|
-
* @public
|
|
731
|
-
*/
|
|
732
|
-
addonName?: string | undefined;
|
|
733
|
-
/**
|
|
734
|
-
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
735
|
-
* @public
|
|
736
|
-
*/
|
|
737
|
-
subscriptionId?: string | undefined;
|
|
738
|
-
/**
|
|
739
|
-
* @internal
|
|
740
|
-
*/
|
|
741
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
742
|
-
}
|
|
743
|
-
/**
|
|
744
|
-
* <p>These errors are usually caused by a server-side issue.</p>
|
|
745
|
-
* @public
|
|
746
|
-
*/
|
|
747
|
-
export declare class ServerException extends __BaseException {
|
|
748
|
-
readonly name: "ServerException";
|
|
749
|
-
readonly $fault: "server";
|
|
750
|
-
/**
|
|
751
|
-
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
752
|
-
* @public
|
|
753
|
-
*/
|
|
754
|
-
clusterName?: string | undefined;
|
|
755
|
-
/**
|
|
756
|
-
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
757
|
-
* @public
|
|
758
|
-
*/
|
|
759
|
-
nodegroupName?: string | undefined;
|
|
760
|
-
/**
|
|
761
|
-
* <p>The Amazon EKS add-on name associated with the exception.</p>
|
|
762
|
-
* @public
|
|
763
|
-
*/
|
|
764
|
-
addonName?: string | undefined;
|
|
765
|
-
/**
|
|
766
|
-
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
767
|
-
* @public
|
|
768
|
-
*/
|
|
769
|
-
subscriptionId?: string | undefined;
|
|
770
|
-
/**
|
|
771
|
-
* @internal
|
|
772
|
-
*/
|
|
773
|
-
constructor(opts: __ExceptionOptionType<ServerException, __BaseException>);
|
|
774
|
-
}
|
|
775
522
|
/**
|
|
776
523
|
* <p>Identifies the Key Management Service (KMS) key used to encrypt the secrets.</p>
|
|
777
524
|
* @public
|
|
@@ -826,33 +573,6 @@ export interface AssociateEncryptionConfigRequest {
|
|
|
826
573
|
*/
|
|
827
574
|
clientRequestToken?: string | undefined;
|
|
828
575
|
}
|
|
829
|
-
/**
|
|
830
|
-
* @public
|
|
831
|
-
* @enum
|
|
832
|
-
*/
|
|
833
|
-
export declare const ErrorCode: {
|
|
834
|
-
readonly ACCESS_DENIED: "AccessDenied";
|
|
835
|
-
readonly ADMISSION_REQUEST_DENIED: "AdmissionRequestDenied";
|
|
836
|
-
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
837
|
-
readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
|
|
838
|
-
readonly ENI_LIMIT_REACHED: "EniLimitReached";
|
|
839
|
-
readonly INSUFFICIENT_FREE_ADDRESSES: "InsufficientFreeAddresses";
|
|
840
|
-
readonly INSUFFICIENT_NUMBER_OF_REPLICAS: "InsufficientNumberOfReplicas";
|
|
841
|
-
readonly IP_NOT_AVAILABLE: "IpNotAvailable";
|
|
842
|
-
readonly K8S_RESOURCE_NOT_FOUND: "K8sResourceNotFound";
|
|
843
|
-
readonly NODE_CREATION_FAILURE: "NodeCreationFailure";
|
|
844
|
-
readonly OPERATION_NOT_PERMITTED: "OperationNotPermitted";
|
|
845
|
-
readonly POD_EVICTION_FAILURE: "PodEvictionFailure";
|
|
846
|
-
readonly SECURITY_GROUP_NOT_FOUND: "SecurityGroupNotFound";
|
|
847
|
-
readonly SUBNET_NOT_FOUND: "SubnetNotFound";
|
|
848
|
-
readonly UNKNOWN: "Unknown";
|
|
849
|
-
readonly UNSUPPORTED_ADDON_MODIFICATION: "UnsupportedAddonModification";
|
|
850
|
-
readonly VPC_ID_NOT_FOUND: "VpcIdNotFound";
|
|
851
|
-
};
|
|
852
|
-
/**
|
|
853
|
-
* @public
|
|
854
|
-
*/
|
|
855
|
-
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
856
576
|
/**
|
|
857
577
|
* <p>An object representing an error when an asynchronous operation fails.</p>
|
|
858
578
|
* @public
|
|
@@ -912,54 +632,6 @@ export interface ErrorDetail {
|
|
|
912
632
|
*/
|
|
913
633
|
resourceIds?: string[] | undefined;
|
|
914
634
|
}
|
|
915
|
-
/**
|
|
916
|
-
* @public
|
|
917
|
-
* @enum
|
|
918
|
-
*/
|
|
919
|
-
export declare const UpdateParamType: {
|
|
920
|
-
readonly ADDON_VERSION: "AddonVersion";
|
|
921
|
-
readonly AUTHENTICATION_MODE: "AuthenticationMode";
|
|
922
|
-
readonly CLUSTER_LOGGING: "ClusterLogging";
|
|
923
|
-
readonly COMPUTE_CONFIG: "ComputeConfig";
|
|
924
|
-
readonly CONFIGURATION_VALUES: "ConfigurationValues";
|
|
925
|
-
readonly DELETION_PROTECTION: "DeletionProtection";
|
|
926
|
-
readonly DESIRED_SIZE: "DesiredSize";
|
|
927
|
-
readonly ENCRYPTION_CONFIG: "EncryptionConfig";
|
|
928
|
-
readonly ENDPOINT_PRIVATE_ACCESS: "EndpointPrivateAccess";
|
|
929
|
-
readonly ENDPOINT_PUBLIC_ACCESS: "EndpointPublicAccess";
|
|
930
|
-
readonly IDENTITY_PROVIDER_CONFIG: "IdentityProviderConfig";
|
|
931
|
-
readonly KUBERNETES_NETWORK_CONFIG: "KubernetesNetworkConfig";
|
|
932
|
-
readonly LABELS_TO_ADD: "LabelsToAdd";
|
|
933
|
-
readonly LABELS_TO_REMOVE: "LabelsToRemove";
|
|
934
|
-
readonly LAUNCH_TEMPLATE_NAME: "LaunchTemplateName";
|
|
935
|
-
readonly LAUNCH_TEMPLATE_VERSION: "LaunchTemplateVersion";
|
|
936
|
-
readonly MAX_SIZE: "MaxSize";
|
|
937
|
-
readonly MAX_UNAVAILABLE: "MaxUnavailable";
|
|
938
|
-
readonly MAX_UNAVAILABLE_PERCENTAGE: "MaxUnavailablePercentage";
|
|
939
|
-
readonly MIN_SIZE: "MinSize";
|
|
940
|
-
readonly NODE_REPAIR_CONFIG: "NodeRepairConfig";
|
|
941
|
-
readonly NODE_REPAIR_ENABLED: "NodeRepairEnabled";
|
|
942
|
-
readonly PLATFORM_VERSION: "PlatformVersion";
|
|
943
|
-
readonly POD_IDENTITY_ASSOCIATIONS: "PodIdentityAssociations";
|
|
944
|
-
readonly PUBLIC_ACCESS_CIDRS: "PublicAccessCidrs";
|
|
945
|
-
readonly RELEASE_VERSION: "ReleaseVersion";
|
|
946
|
-
readonly REMOTE_NETWORK_CONFIG: "RemoteNetworkConfig";
|
|
947
|
-
readonly RESOLVE_CONFLICTS: "ResolveConflicts";
|
|
948
|
-
readonly SECURITY_GROUPS: "SecurityGroups";
|
|
949
|
-
readonly SERVICE_ACCOUNT_ROLE_ARN: "ServiceAccountRoleArn";
|
|
950
|
-
readonly STORAGE_CONFIG: "StorageConfig";
|
|
951
|
-
readonly SUBNETS: "Subnets";
|
|
952
|
-
readonly TAINTS_TO_ADD: "TaintsToAdd";
|
|
953
|
-
readonly TAINTS_TO_REMOVE: "TaintsToRemove";
|
|
954
|
-
readonly UPDATE_STRATEGY: "UpdateStrategy";
|
|
955
|
-
readonly UPGRADE_POLICY: "UpgradePolicy";
|
|
956
|
-
readonly VERSION: "Version";
|
|
957
|
-
readonly ZONAL_SHIFT_CONFIG: "ZonalShiftConfig";
|
|
958
|
-
};
|
|
959
|
-
/**
|
|
960
|
-
* @public
|
|
961
|
-
*/
|
|
962
|
-
export type UpdateParamType = (typeof UpdateParamType)[keyof typeof UpdateParamType];
|
|
963
635
|
/**
|
|
964
636
|
* <p>An object representing the details of an update request.</p>
|
|
965
637
|
* @public
|
|
@@ -976,45 +648,6 @@ export interface UpdateParam {
|
|
|
976
648
|
*/
|
|
977
649
|
value?: string | undefined;
|
|
978
650
|
}
|
|
979
|
-
/**
|
|
980
|
-
* @public
|
|
981
|
-
* @enum
|
|
982
|
-
*/
|
|
983
|
-
export declare const UpdateStatus: {
|
|
984
|
-
readonly CANCELLED: "Cancelled";
|
|
985
|
-
readonly FAILED: "Failed";
|
|
986
|
-
readonly IN_PROGRESS: "InProgress";
|
|
987
|
-
readonly SUCCESSFUL: "Successful";
|
|
988
|
-
};
|
|
989
|
-
/**
|
|
990
|
-
* @public
|
|
991
|
-
*/
|
|
992
|
-
export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
|
|
993
|
-
/**
|
|
994
|
-
* @public
|
|
995
|
-
* @enum
|
|
996
|
-
*/
|
|
997
|
-
export declare const UpdateType: {
|
|
998
|
-
readonly ACCESS_CONFIG_UPDATE: "AccessConfigUpdate";
|
|
999
|
-
readonly ADDON_UPDATE: "AddonUpdate";
|
|
1000
|
-
readonly ASSOCIATE_ENCRYPTION_CONFIG: "AssociateEncryptionConfig";
|
|
1001
|
-
readonly ASSOCIATE_IDENTITY_PROVIDER_CONFIG: "AssociateIdentityProviderConfig";
|
|
1002
|
-
readonly AUTO_MODE_UPDATE: "AutoModeUpdate";
|
|
1003
|
-
readonly CONFIG_UPDATE: "ConfigUpdate";
|
|
1004
|
-
readonly DELETION_PROTECTION_UPDATE: "DeletionProtectionUpdate";
|
|
1005
|
-
readonly DISASSOCIATE_IDENTITY_PROVIDER_CONFIG: "DisassociateIdentityProviderConfig";
|
|
1006
|
-
readonly ENDPOINT_ACCESS_UPDATE: "EndpointAccessUpdate";
|
|
1007
|
-
readonly LOGGING_UPDATE: "LoggingUpdate";
|
|
1008
|
-
readonly REMOTE_NETWORK_CONFIG_UPDATE: "RemoteNetworkConfigUpdate";
|
|
1009
|
-
readonly UPGRADE_POLICY_UPDATE: "UpgradePolicyUpdate";
|
|
1010
|
-
readonly VERSION_UPDATE: "VersionUpdate";
|
|
1011
|
-
readonly VPC_CONFIG_UPDATE: "VpcConfigUpdate";
|
|
1012
|
-
readonly ZONAL_SHIFT_CONFIG_UPDATE: "ZonalShiftConfigUpdate";
|
|
1013
|
-
};
|
|
1014
|
-
/**
|
|
1015
|
-
* @public
|
|
1016
|
-
*/
|
|
1017
|
-
export type UpdateType = (typeof UpdateType)[keyof typeof UpdateType];
|
|
1018
651
|
/**
|
|
1019
652
|
* <p>An object representing an asynchronous update.</p>
|
|
1020
653
|
* @public
|
|
@@ -1061,85 +694,6 @@ export interface AssociateEncryptionConfigResponse {
|
|
|
1061
694
|
*/
|
|
1062
695
|
update?: Update | undefined;
|
|
1063
696
|
}
|
|
1064
|
-
/**
|
|
1065
|
-
* <p>These errors are usually caused by a client action. Actions can include using an
|
|
1066
|
-
* action or resource on behalf of an <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html">IAM principal</a> that doesn't have permissions to use
|
|
1067
|
-
* the action or resource or specifying an identifier that is not valid.</p>
|
|
1068
|
-
* @public
|
|
1069
|
-
*/
|
|
1070
|
-
export declare class ClientException extends __BaseException {
|
|
1071
|
-
readonly name: "ClientException";
|
|
1072
|
-
readonly $fault: "client";
|
|
1073
|
-
/**
|
|
1074
|
-
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
1075
|
-
* @public
|
|
1076
|
-
*/
|
|
1077
|
-
clusterName?: string | undefined;
|
|
1078
|
-
/**
|
|
1079
|
-
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
1080
|
-
* @public
|
|
1081
|
-
*/
|
|
1082
|
-
nodegroupName?: string | undefined;
|
|
1083
|
-
/**
|
|
1084
|
-
* <p>The Amazon EKS add-on name associated with the exception.</p>
|
|
1085
|
-
* @public
|
|
1086
|
-
*/
|
|
1087
|
-
addonName?: string | undefined;
|
|
1088
|
-
/**
|
|
1089
|
-
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
1090
|
-
* @public
|
|
1091
|
-
*/
|
|
1092
|
-
subscriptionId?: string | undefined;
|
|
1093
|
-
/**
|
|
1094
|
-
* @internal
|
|
1095
|
-
*/
|
|
1096
|
-
constructor(opts: __ExceptionOptionType<ClientException, __BaseException>);
|
|
1097
|
-
}
|
|
1098
|
-
/**
|
|
1099
|
-
* <p>The specified resource is in use.</p>
|
|
1100
|
-
* @public
|
|
1101
|
-
*/
|
|
1102
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
1103
|
-
readonly name: "ResourceInUseException";
|
|
1104
|
-
readonly $fault: "client";
|
|
1105
|
-
/**
|
|
1106
|
-
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
1107
|
-
* @public
|
|
1108
|
-
*/
|
|
1109
|
-
clusterName?: string | undefined;
|
|
1110
|
-
/**
|
|
1111
|
-
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
1112
|
-
* @public
|
|
1113
|
-
*/
|
|
1114
|
-
nodegroupName?: string | undefined;
|
|
1115
|
-
/**
|
|
1116
|
-
* <p>The specified add-on name is in use.</p>
|
|
1117
|
-
* @public
|
|
1118
|
-
*/
|
|
1119
|
-
addonName?: string | undefined;
|
|
1120
|
-
/**
|
|
1121
|
-
* @internal
|
|
1122
|
-
*/
|
|
1123
|
-
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
1124
|
-
}
|
|
1125
|
-
/**
|
|
1126
|
-
* <p>The request or operation couldn't be performed because a service is throttling
|
|
1127
|
-
* requests.</p>
|
|
1128
|
-
* @public
|
|
1129
|
-
*/
|
|
1130
|
-
export declare class ThrottlingException extends __BaseException {
|
|
1131
|
-
readonly name: "ThrottlingException";
|
|
1132
|
-
readonly $fault: "client";
|
|
1133
|
-
/**
|
|
1134
|
-
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
1135
|
-
* @public
|
|
1136
|
-
*/
|
|
1137
|
-
clusterName?: string | undefined;
|
|
1138
|
-
/**
|
|
1139
|
-
* @internal
|
|
1140
|
-
*/
|
|
1141
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
1142
|
-
}
|
|
1143
697
|
/**
|
|
1144
698
|
* <p>An object representing an OpenID Connect (OIDC) configuration. Before associating an
|
|
1145
699
|
* OIDC identity provider to your cluster, review the considerations in <a href="https://docs.aws.amazon.com/eks/latest/userguide/authenticate-oidc-identity-provider.html">Authenticating
|
|
@@ -1373,46 +927,6 @@ export interface CreateAccessEntryResponse {
|
|
|
1373
927
|
*/
|
|
1374
928
|
accessEntry?: AccessEntry | undefined;
|
|
1375
929
|
}
|
|
1376
|
-
/**
|
|
1377
|
-
* <p>You have encountered a service limit on the specified resource.</p>
|
|
1378
|
-
* @public
|
|
1379
|
-
*/
|
|
1380
|
-
export declare class ResourceLimitExceededException extends __BaseException {
|
|
1381
|
-
readonly name: "ResourceLimitExceededException";
|
|
1382
|
-
readonly $fault: "client";
|
|
1383
|
-
/**
|
|
1384
|
-
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
1385
|
-
* @public
|
|
1386
|
-
*/
|
|
1387
|
-
clusterName?: string | undefined;
|
|
1388
|
-
/**
|
|
1389
|
-
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
1390
|
-
* @public
|
|
1391
|
-
*/
|
|
1392
|
-
nodegroupName?: string | undefined;
|
|
1393
|
-
/**
|
|
1394
|
-
* <p>The Amazon EKS subscription ID with the exception.</p>
|
|
1395
|
-
* @public
|
|
1396
|
-
*/
|
|
1397
|
-
subscriptionId?: string | undefined;
|
|
1398
|
-
/**
|
|
1399
|
-
* @internal
|
|
1400
|
-
*/
|
|
1401
|
-
constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
|
|
1402
|
-
}
|
|
1403
|
-
/**
|
|
1404
|
-
* @public
|
|
1405
|
-
* @enum
|
|
1406
|
-
*/
|
|
1407
|
-
export declare const ResolveConflicts: {
|
|
1408
|
-
readonly NONE: "NONE";
|
|
1409
|
-
readonly OVERWRITE: "OVERWRITE";
|
|
1410
|
-
readonly PRESERVE: "PRESERVE";
|
|
1411
|
-
};
|
|
1412
|
-
/**
|
|
1413
|
-
* @public
|
|
1414
|
-
*/
|
|
1415
|
-
export type ResolveConflicts = (typeof ResolveConflicts)[keyof typeof ResolveConflicts];
|
|
1416
930
|
/**
|
|
1417
931
|
* @public
|
|
1418
932
|
*/
|
|
@@ -1592,18 +1106,6 @@ export interface ElasticLoadBalancing {
|
|
|
1592
1106
|
*/
|
|
1593
1107
|
enabled?: boolean | undefined;
|
|
1594
1108
|
}
|
|
1595
|
-
/**
|
|
1596
|
-
* @public
|
|
1597
|
-
* @enum
|
|
1598
|
-
*/
|
|
1599
|
-
export declare const IpFamily: {
|
|
1600
|
-
readonly IPV4: "ipv4";
|
|
1601
|
-
readonly IPV6: "ipv6";
|
|
1602
|
-
};
|
|
1603
|
-
/**
|
|
1604
|
-
* @public
|
|
1605
|
-
*/
|
|
1606
|
-
export type IpFamily = (typeof IpFamily)[keyof typeof IpFamily];
|
|
1607
1109
|
/**
|
|
1608
1110
|
* <p>The Kubernetes network configuration for the cluster.</p>
|
|
1609
1111
|
* @public
|
|
@@ -1663,21 +1165,6 @@ export interface KubernetesNetworkConfigRequest {
|
|
|
1663
1165
|
*/
|
|
1664
1166
|
elasticLoadBalancing?: ElasticLoadBalancing | undefined;
|
|
1665
1167
|
}
|
|
1666
|
-
/**
|
|
1667
|
-
* @public
|
|
1668
|
-
* @enum
|
|
1669
|
-
*/
|
|
1670
|
-
export declare const LogType: {
|
|
1671
|
-
readonly API: "api";
|
|
1672
|
-
readonly AUDIT: "audit";
|
|
1673
|
-
readonly AUTHENTICATOR: "authenticator";
|
|
1674
|
-
readonly CONTROLLER_MANAGER: "controllerManager";
|
|
1675
|
-
readonly SCHEDULER: "scheduler";
|
|
1676
|
-
};
|
|
1677
|
-
/**
|
|
1678
|
-
* @public
|
|
1679
|
-
*/
|
|
1680
|
-
export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
1681
1168
|
/**
|
|
1682
1169
|
* <p>An object representing the enabled or disabled Kubernetes control plane logs for your
|
|
1683
1170
|
* cluster.</p>
|
|
@@ -2047,18 +1534,6 @@ export interface StorageConfigRequest {
|
|
|
2047
1534
|
*/
|
|
2048
1535
|
blockStorage?: BlockStorage | undefined;
|
|
2049
1536
|
}
|
|
2050
|
-
/**
|
|
2051
|
-
* @public
|
|
2052
|
-
* @enum
|
|
2053
|
-
*/
|
|
2054
|
-
export declare const SupportType: {
|
|
2055
|
-
readonly EXTENDED: "EXTENDED";
|
|
2056
|
-
readonly STANDARD: "STANDARD";
|
|
2057
|
-
};
|
|
2058
|
-
/**
|
|
2059
|
-
* @public
|
|
2060
|
-
*/
|
|
2061
|
-
export type SupportType = (typeof SupportType)[keyof typeof SupportType];
|
|
2062
1537
|
/**
|
|
2063
1538
|
* <p>The support policy to use for the cluster. Extended support allows you to remain on
|
|
2064
1539
|
* specific Kubernetes versions for longer. Clusters in extended support have higher costs. The
|
|
@@ -2320,35 +1795,6 @@ export interface ConnectorConfigResponse {
|
|
|
2320
1795
|
*/
|
|
2321
1796
|
roleArn?: string | undefined;
|
|
2322
1797
|
}
|
|
2323
|
-
/**
|
|
2324
|
-
* @public
|
|
2325
|
-
* @enum
|
|
2326
|
-
*/
|
|
2327
|
-
export declare const ClusterIssueCode: {
|
|
2328
|
-
readonly ACCESS_DENIED: "AccessDenied";
|
|
2329
|
-
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
2330
|
-
readonly CONFIGURATION_CONFLICT: "ConfigurationConflict";
|
|
2331
|
-
readonly EC2_SECURITY_GROUP_NOT_FOUND: "Ec2SecurityGroupNotFound";
|
|
2332
|
-
readonly EC2_SERVICE_NOT_SUBSCRIBED: "Ec2ServiceNotSubscribed";
|
|
2333
|
-
readonly EC2_SUBNET_NOT_FOUND: "Ec2SubnetNotFound";
|
|
2334
|
-
readonly IAM_ROLE_NOT_FOUND: "IamRoleNotFound";
|
|
2335
|
-
readonly INSUFFICIENT_FREE_ADDRESSES: "InsufficientFreeAddresses";
|
|
2336
|
-
readonly INTERNAL_FAILURE: "InternalFailure";
|
|
2337
|
-
readonly KMS_GRANT_REVOKED: "KmsGrantRevoked";
|
|
2338
|
-
readonly KMS_KEY_DISABLED: "KmsKeyDisabled";
|
|
2339
|
-
readonly KMS_KEY_MARKED_FOR_DELETION: "KmsKeyMarkedForDeletion";
|
|
2340
|
-
readonly KMS_KEY_NOT_FOUND: "KmsKeyNotFound";
|
|
2341
|
-
readonly OTHER: "Other";
|
|
2342
|
-
readonly RESOURCE_LIMIT_EXCEEDED: "ResourceLimitExceeded";
|
|
2343
|
-
readonly RESOURCE_NOT_FOUND: "ResourceNotFound";
|
|
2344
|
-
readonly STS_REGIONAL_ENDPOINT_DISABLED: "StsRegionalEndpointDisabled";
|
|
2345
|
-
readonly UNSUPPORTED_VERSION: "UnsupportedVersion";
|
|
2346
|
-
readonly VPC_NOT_FOUND: "VpcNotFound";
|
|
2347
|
-
};
|
|
2348
|
-
/**
|
|
2349
|
-
* @public
|
|
2350
|
-
*/
|
|
2351
|
-
export type ClusterIssueCode = (typeof ClusterIssueCode)[keyof typeof ClusterIssueCode];
|
|
2352
1798
|
/**
|
|
2353
1799
|
* <p>An issue with your Amazon EKS cluster.</p>
|
|
2354
1800
|
* @public
|
|
@@ -2568,22 +2014,6 @@ export interface VpcConfigResponse {
|
|
|
2568
2014
|
*/
|
|
2569
2015
|
publicAccessCidrs?: string[] | undefined;
|
|
2570
2016
|
}
|
|
2571
|
-
/**
|
|
2572
|
-
* @public
|
|
2573
|
-
* @enum
|
|
2574
|
-
*/
|
|
2575
|
-
export declare const ClusterStatus: {
|
|
2576
|
-
readonly ACTIVE: "ACTIVE";
|
|
2577
|
-
readonly CREATING: "CREATING";
|
|
2578
|
-
readonly DELETING: "DELETING";
|
|
2579
|
-
readonly FAILED: "FAILED";
|
|
2580
|
-
readonly PENDING: "PENDING";
|
|
2581
|
-
readonly UPDATING: "UPDATING";
|
|
2582
|
-
};
|
|
2583
|
-
/**
|
|
2584
|
-
* @public
|
|
2585
|
-
*/
|
|
2586
|
-
export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
|
|
2587
2017
|
/**
|
|
2588
2018
|
* <p>Indicates the status of the request to update the block storage capability of your EKS
|
|
2589
2019
|
* Auto Mode cluster.</p>
|
|
@@ -2812,70 +2242,6 @@ export interface CreateClusterResponse {
|
|
|
2812
2242
|
*/
|
|
2813
2243
|
cluster?: Cluster | undefined;
|
|
2814
2244
|
}
|
|
2815
|
-
/**
|
|
2816
|
-
* <p>The service is unavailable. Back off and retry the operation.</p>
|
|
2817
|
-
* @public
|
|
2818
|
-
*/
|
|
2819
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
2820
|
-
readonly name: "ServiceUnavailableException";
|
|
2821
|
-
readonly $fault: "server";
|
|
2822
|
-
/**
|
|
2823
|
-
* @internal
|
|
2824
|
-
*/
|
|
2825
|
-
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
2826
|
-
}
|
|
2827
|
-
/**
|
|
2828
|
-
* <p>At least one of your specified cluster subnets is in an Availability Zone that does not support
|
|
2829
|
-
* Amazon EKS. The exception output specifies the supported Availability Zones for your account, from which
|
|
2830
|
-
* you can choose subnets for your cluster.</p>
|
|
2831
|
-
* @public
|
|
2832
|
-
*/
|
|
2833
|
-
export declare class UnsupportedAvailabilityZoneException extends __BaseException {
|
|
2834
|
-
readonly name: "UnsupportedAvailabilityZoneException";
|
|
2835
|
-
readonly $fault: "client";
|
|
2836
|
-
/**
|
|
2837
|
-
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
2838
|
-
* @public
|
|
2839
|
-
*/
|
|
2840
|
-
clusterName?: string | undefined;
|
|
2841
|
-
/**
|
|
2842
|
-
* <p>The Amazon EKS managed node group associated with the exception.</p>
|
|
2843
|
-
* @public
|
|
2844
|
-
*/
|
|
2845
|
-
nodegroupName?: string | undefined;
|
|
2846
|
-
/**
|
|
2847
|
-
* <p>The supported Availability Zones for your account. Choose subnets in these Availability Zones for your
|
|
2848
|
-
* cluster.</p>
|
|
2849
|
-
* @public
|
|
2850
|
-
*/
|
|
2851
|
-
validZones?: string[] | undefined;
|
|
2852
|
-
/**
|
|
2853
|
-
* @internal
|
|
2854
|
-
*/
|
|
2855
|
-
constructor(opts: __ExceptionOptionType<UnsupportedAvailabilityZoneException, __BaseException>);
|
|
2856
|
-
}
|
|
2857
|
-
/**
|
|
2858
|
-
* @public
|
|
2859
|
-
* @enum
|
|
2860
|
-
*/
|
|
2861
|
-
export declare const EksAnywhereSubscriptionLicenseType: {
|
|
2862
|
-
readonly Cluster: "Cluster";
|
|
2863
|
-
};
|
|
2864
|
-
/**
|
|
2865
|
-
* @public
|
|
2866
|
-
*/
|
|
2867
|
-
export type EksAnywhereSubscriptionLicenseType = (typeof EksAnywhereSubscriptionLicenseType)[keyof typeof EksAnywhereSubscriptionLicenseType];
|
|
2868
|
-
/**
|
|
2869
|
-
* @public
|
|
2870
|
-
* @enum
|
|
2871
|
-
*/
|
|
2872
|
-
export declare const EksAnywhereSubscriptionTermUnit: {
|
|
2873
|
-
readonly MONTHS: "MONTHS";
|
|
2874
|
-
};
|
|
2875
|
-
/**
|
|
2876
|
-
* @public
|
|
2877
|
-
*/
|
|
2878
|
-
export type EksAnywhereSubscriptionTermUnit = (typeof EksAnywhereSubscriptionTermUnit)[keyof typeof EksAnywhereSubscriptionTermUnit];
|
|
2879
2245
|
/**
|
|
2880
2246
|
* <p>An object representing the term duration and term unit type of your subscription. This
|
|
2881
2247
|
* determines the term length of your subscription. Valid values are MONTHS for term unit
|
|
@@ -3123,20 +2489,6 @@ export interface CreateFargateProfileRequest {
|
|
|
3123
2489
|
*/
|
|
3124
2490
|
tags?: Record<string, string> | undefined;
|
|
3125
2491
|
}
|
|
3126
|
-
/**
|
|
3127
|
-
* @public
|
|
3128
|
-
* @enum
|
|
3129
|
-
*/
|
|
3130
|
-
export declare const FargateProfileIssueCode: {
|
|
3131
|
-
readonly ACCESS_DENIED: "AccessDenied";
|
|
3132
|
-
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
3133
|
-
readonly INTERNAL_FAILURE: "InternalFailure";
|
|
3134
|
-
readonly POD_EXECUTION_ROLE_ALREADY_IN_USE: "PodExecutionRoleAlreadyInUse";
|
|
3135
|
-
};
|
|
3136
|
-
/**
|
|
3137
|
-
* @public
|
|
3138
|
-
*/
|
|
3139
|
-
export type FargateProfileIssueCode = (typeof FargateProfileIssueCode)[keyof typeof FargateProfileIssueCode];
|
|
3140
2492
|
/**
|
|
3141
2493
|
* <p>An issue that is associated with the Fargate profile.</p>
|
|
3142
2494
|
* @public
|
|
@@ -3170,21 +2522,6 @@ export interface FargateProfileHealth {
|
|
|
3170
2522
|
*/
|
|
3171
2523
|
issues?: FargateProfileIssue[] | undefined;
|
|
3172
2524
|
}
|
|
3173
|
-
/**
|
|
3174
|
-
* @public
|
|
3175
|
-
* @enum
|
|
3176
|
-
*/
|
|
3177
|
-
export declare const FargateProfileStatus: {
|
|
3178
|
-
readonly ACTIVE: "ACTIVE";
|
|
3179
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
3180
|
-
readonly CREATING: "CREATING";
|
|
3181
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
3182
|
-
readonly DELETING: "DELETING";
|
|
3183
|
-
};
|
|
3184
|
-
/**
|
|
3185
|
-
* @public
|
|
3186
|
-
*/
|
|
3187
|
-
export type FargateProfileStatus = (typeof FargateProfileStatus)[keyof typeof FargateProfileStatus];
|
|
3188
2525
|
/**
|
|
3189
2526
|
* <p>An object representing an Fargate profile.</p>
|
|
3190
2527
|
* @public
|
|
@@ -3256,19 +2593,6 @@ export interface CreateFargateProfileResponse {
|
|
|
3256
2593
|
*/
|
|
3257
2594
|
fargateProfile?: FargateProfile | undefined;
|
|
3258
2595
|
}
|
|
3259
|
-
/**
|
|
3260
|
-
* @public
|
|
3261
|
-
* @enum
|
|
3262
|
-
*/
|
|
3263
|
-
export declare const CapacityTypes: {
|
|
3264
|
-
readonly CAPACITY_BLOCK: "CAPACITY_BLOCK";
|
|
3265
|
-
readonly ON_DEMAND: "ON_DEMAND";
|
|
3266
|
-
readonly SPOT: "SPOT";
|
|
3267
|
-
};
|
|
3268
|
-
/**
|
|
3269
|
-
* @public
|
|
3270
|
-
*/
|
|
3271
|
-
export type CapacityTypes = (typeof CapacityTypes)[keyof typeof CapacityTypes];
|
|
3272
2596
|
/**
|
|
3273
2597
|
* <p>An object representing a node group launch template specification. The launch template
|
|
3274
2598
|
* can't include <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateNetworkInterface.html">
|
|
@@ -3314,19 +2638,6 @@ export interface LaunchTemplateSpecification {
|
|
|
3314
2638
|
*/
|
|
3315
2639
|
id?: string | undefined;
|
|
3316
2640
|
}
|
|
3317
|
-
/**
|
|
3318
|
-
* @public
|
|
3319
|
-
* @enum
|
|
3320
|
-
*/
|
|
3321
|
-
export declare const RepairAction: {
|
|
3322
|
-
readonly NoAction: "NoAction";
|
|
3323
|
-
readonly Reboot: "Reboot";
|
|
3324
|
-
readonly Replace: "Replace";
|
|
3325
|
-
};
|
|
3326
|
-
/**
|
|
3327
|
-
* @public
|
|
3328
|
-
*/
|
|
3329
|
-
export type RepairAction = (typeof RepairAction)[keyof typeof RepairAction];
|
|
3330
2641
|
/**
|
|
3331
2642
|
* <p>Specify granular overrides for specific repair actions. These overrides control the
|
|
3332
2643
|
* repair action and the repair delay time before a node is considered eligible for repair.
|
|
@@ -3480,19 +2791,6 @@ export interface NodegroupScalingConfig {
|
|
|
3480
2791
|
*/
|
|
3481
2792
|
desiredSize?: number | undefined;
|
|
3482
2793
|
}
|
|
3483
|
-
/**
|
|
3484
|
-
* @public
|
|
3485
|
-
* @enum
|
|
3486
|
-
*/
|
|
3487
|
-
export declare const TaintEffect: {
|
|
3488
|
-
readonly NO_EXECUTE: "NO_EXECUTE";
|
|
3489
|
-
readonly NO_SCHEDULE: "NO_SCHEDULE";
|
|
3490
|
-
readonly PREFER_NO_SCHEDULE: "PREFER_NO_SCHEDULE";
|
|
3491
|
-
};
|
|
3492
|
-
/**
|
|
3493
|
-
* @public
|
|
3494
|
-
*/
|
|
3495
|
-
export type TaintEffect = (typeof TaintEffect)[keyof typeof TaintEffect];
|
|
3496
2794
|
/**
|
|
3497
2795
|
* <p>A property that allows a node to repel a <code>Pod</code>. For more information, see
|
|
3498
2796
|
* <a href="https://docs.aws.amazon.com/eks/latest/userguide/node-taints-managed-node-groups.html">Node taints on
|
|
@@ -3516,18 +2814,6 @@ export interface Taint {
|
|
|
3516
2814
|
*/
|
|
3517
2815
|
effect?: TaintEffect | undefined;
|
|
3518
2816
|
}
|
|
3519
|
-
/**
|
|
3520
|
-
* @public
|
|
3521
|
-
* @enum
|
|
3522
|
-
*/
|
|
3523
|
-
export declare const NodegroupUpdateStrategies: {
|
|
3524
|
-
readonly DEFAULT: "DEFAULT";
|
|
3525
|
-
readonly MINIMAL: "MINIMAL";
|
|
3526
|
-
};
|
|
3527
|
-
/**
|
|
3528
|
-
* @public
|
|
3529
|
-
*/
|
|
3530
|
-
export type NodegroupUpdateStrategies = (typeof NodegroupUpdateStrategies)[keyof typeof NodegroupUpdateStrategies];
|
|
3531
2817
|
/**
|
|
3532
2818
|
* <p>The node group update configuration. An Amazon EKS managed node group updates by replacing
|
|
3533
2819
|
* nodes with new nodes of newer AMI versions in parallel. You choose the <i>maximum
|
|
@@ -3730,52 +3016,6 @@ export interface CreateNodegroupRequest {
|
|
|
3730
3016
|
*/
|
|
3731
3017
|
releaseVersion?: string | undefined;
|
|
3732
3018
|
}
|
|
3733
|
-
/**
|
|
3734
|
-
* @public
|
|
3735
|
-
* @enum
|
|
3736
|
-
*/
|
|
3737
|
-
export declare const NodegroupIssueCode: {
|
|
3738
|
-
readonly ACCESS_DENIED: "AccessDenied";
|
|
3739
|
-
readonly AMI_ID_NOT_FOUND: "AmiIdNotFound";
|
|
3740
|
-
readonly ASG_INSTANCE_LAUNCH_FAILURES: "AsgInstanceLaunchFailures";
|
|
3741
|
-
readonly AUTO_SCALING_GROUP_INSTANCE_REFRESH_ACTIVE: "AutoScalingGroupInstanceRefreshActive";
|
|
3742
|
-
readonly AUTO_SCALING_GROUP_INVALID_CONFIGURATION: "AutoScalingGroupInvalidConfiguration";
|
|
3743
|
-
readonly AUTO_SCALING_GROUP_NOT_FOUND: "AutoScalingGroupNotFound";
|
|
3744
|
-
readonly AUTO_SCALING_GROUP_OPT_IN_REQUIRED: "AutoScalingGroupOptInRequired";
|
|
3745
|
-
readonly AUTO_SCALING_GROUP_RATE_LIMIT_EXCEEDED: "AutoScalingGroupRateLimitExceeded";
|
|
3746
|
-
readonly CLUSTER_UNREACHABLE: "ClusterUnreachable";
|
|
3747
|
-
readonly EC2_INSTANCE_TYPE_DOES_NOT_EXIST: "Ec2InstanceTypeDoesNotExist";
|
|
3748
|
-
readonly EC2_LAUNCH_TEMPLATE_DELETION_FAILURE: "Ec2LaunchTemplateDeletionFailure";
|
|
3749
|
-
readonly EC2_LAUNCH_TEMPLATE_INVALID_CONFIGURATION: "Ec2LaunchTemplateInvalidConfiguration";
|
|
3750
|
-
readonly EC2_LAUNCH_TEMPLATE_MAX_LIMIT_EXCEEDED: "Ec2LaunchTemplateMaxLimitExceeded";
|
|
3751
|
-
readonly EC2_LAUNCH_TEMPLATE_NOT_FOUND: "Ec2LaunchTemplateNotFound";
|
|
3752
|
-
readonly EC2_LAUNCH_TEMPLATE_VERSION_MAX_LIMIT_EXCEEDED: "Ec2LaunchTemplateVersionMaxLimitExceeded";
|
|
3753
|
-
readonly EC2_LAUNCH_TEMPLATE_VERSION_MISMATCH: "Ec2LaunchTemplateVersionMismatch";
|
|
3754
|
-
readonly EC2_SECURITY_GROUP_DELETION_FAILURE: "Ec2SecurityGroupDeletionFailure";
|
|
3755
|
-
readonly EC2_SECURITY_GROUP_NOT_FOUND: "Ec2SecurityGroupNotFound";
|
|
3756
|
-
readonly EC2_SUBNET_INVALID_CONFIGURATION: "Ec2SubnetInvalidConfiguration";
|
|
3757
|
-
readonly EC2_SUBNET_LIST_TOO_LONG: "Ec2SubnetListTooLong";
|
|
3758
|
-
readonly EC2_SUBNET_MISSING_IPV6_ASSIGNMENT: "Ec2SubnetMissingIpv6Assignment";
|
|
3759
|
-
readonly EC2_SUBNET_NOT_FOUND: "Ec2SubnetNotFound";
|
|
3760
|
-
readonly IAM_INSTANCE_PROFILE_NOT_FOUND: "IamInstanceProfileNotFound";
|
|
3761
|
-
readonly IAM_LIMIT_EXCEEDED: "IamLimitExceeded";
|
|
3762
|
-
readonly IAM_NODE_ROLE_NOT_FOUND: "IamNodeRoleNotFound";
|
|
3763
|
-
readonly IAM_THROTTLING: "IamThrottling";
|
|
3764
|
-
readonly INSTANCE_LIMIT_EXCEEDED: "InstanceLimitExceeded";
|
|
3765
|
-
readonly INSUFFICIENT_FREE_ADDRESSES: "InsufficientFreeAddresses";
|
|
3766
|
-
readonly INTERNAL_FAILURE: "InternalFailure";
|
|
3767
|
-
readonly KUBERNETES_LABEL_INVALID: "KubernetesLabelInvalid";
|
|
3768
|
-
readonly LIMIT_EXCEEDED: "LimitExceeded";
|
|
3769
|
-
readonly NODE_CREATION_FAILURE: "NodeCreationFailure";
|
|
3770
|
-
readonly NODE_TERMINATION_FAILURE: "NodeTerminationFailure";
|
|
3771
|
-
readonly POD_EVICTION_FAILURE: "PodEvictionFailure";
|
|
3772
|
-
readonly SOURCE_EC2_LAUNCH_TEMPLATE_NOT_FOUND: "SourceEc2LaunchTemplateNotFound";
|
|
3773
|
-
readonly UNKNOWN: "Unknown";
|
|
3774
|
-
};
|
|
3775
|
-
/**
|
|
3776
|
-
* @public
|
|
3777
|
-
*/
|
|
3778
|
-
export type NodegroupIssueCode = (typeof NodegroupIssueCode)[keyof typeof NodegroupIssueCode];
|
|
3779
3019
|
/**
|
|
3780
3020
|
* <p>An object representing an issue with an Amazon EKS resource.</p>
|
|
3781
3021
|
* @public
|
|
@@ -3930,23 +3170,6 @@ export interface NodegroupResources {
|
|
|
3930
3170
|
*/
|
|
3931
3171
|
remoteAccessSecurityGroup?: string | undefined;
|
|
3932
3172
|
}
|
|
3933
|
-
/**
|
|
3934
|
-
* @public
|
|
3935
|
-
* @enum
|
|
3936
|
-
*/
|
|
3937
|
-
export declare const NodegroupStatus: {
|
|
3938
|
-
readonly ACTIVE: "ACTIVE";
|
|
3939
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
3940
|
-
readonly CREATING: "CREATING";
|
|
3941
|
-
readonly DEGRADED: "DEGRADED";
|
|
3942
|
-
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
3943
|
-
readonly DELETING: "DELETING";
|
|
3944
|
-
readonly UPDATING: "UPDATING";
|
|
3945
|
-
};
|
|
3946
|
-
/**
|
|
3947
|
-
* @public
|
|
3948
|
-
*/
|
|
3949
|
-
export type NodegroupStatus = (typeof NodegroupStatus)[keyof typeof NodegroupStatus];
|
|
3950
3173
|
/**
|
|
3951
3174
|
* <p>An object representing an Amazon EKS managed node group.</p>
|
|
3952
3175
|
* @public
|
|
@@ -4747,32 +3970,6 @@ export interface DescribeClusterResponse {
|
|
|
4747
3970
|
*/
|
|
4748
3971
|
cluster?: Cluster | undefined;
|
|
4749
3972
|
}
|
|
4750
|
-
/**
|
|
4751
|
-
* @public
|
|
4752
|
-
* @enum
|
|
4753
|
-
*/
|
|
4754
|
-
export declare const ClusterVersionStatus: {
|
|
4755
|
-
readonly extended_support: "extended-support";
|
|
4756
|
-
readonly standard_support: "standard-support";
|
|
4757
|
-
readonly unsupported: "unsupported";
|
|
4758
|
-
};
|
|
4759
|
-
/**
|
|
4760
|
-
* @public
|
|
4761
|
-
*/
|
|
4762
|
-
export type ClusterVersionStatus = (typeof ClusterVersionStatus)[keyof typeof ClusterVersionStatus];
|
|
4763
|
-
/**
|
|
4764
|
-
* @public
|
|
4765
|
-
* @enum
|
|
4766
|
-
*/
|
|
4767
|
-
export declare const VersionStatus: {
|
|
4768
|
-
readonly EXTENDED_SUPPORT: "EXTENDED_SUPPORT";
|
|
4769
|
-
readonly STANDARD_SUPPORT: "STANDARD_SUPPORT";
|
|
4770
|
-
readonly UNSUPPORTED: "UNSUPPORTED";
|
|
4771
|
-
};
|
|
4772
|
-
/**
|
|
4773
|
-
* @public
|
|
4774
|
-
*/
|
|
4775
|
-
export type VersionStatus = (typeof VersionStatus)[keyof typeof VersionStatus];
|
|
4776
3973
|
/**
|
|
4777
3974
|
* @public
|
|
4778
3975
|
*/
|
|
@@ -4976,19 +4173,6 @@ export interface DescribeIdentityProviderConfigRequest {
|
|
|
4976
4173
|
*/
|
|
4977
4174
|
identityProviderConfig: IdentityProviderConfig | undefined;
|
|
4978
4175
|
}
|
|
4979
|
-
/**
|
|
4980
|
-
* @public
|
|
4981
|
-
* @enum
|
|
4982
|
-
*/
|
|
4983
|
-
export declare const ConfigStatus: {
|
|
4984
|
-
readonly ACTIVE: "ACTIVE";
|
|
4985
|
-
readonly CREATING: "CREATING";
|
|
4986
|
-
readonly DELETING: "DELETING";
|
|
4987
|
-
};
|
|
4988
|
-
/**
|
|
4989
|
-
* @public
|
|
4990
|
-
*/
|
|
4991
|
-
export type ConfigStatus = (typeof ConfigStatus)[keyof typeof ConfigStatus];
|
|
4992
4176
|
/**
|
|
4993
4177
|
* <p>An object representing the configuration for an OpenID Connect (OIDC) identity provider.
|
|
4994
4178
|
* </p>
|
|
@@ -5104,18 +4288,6 @@ export interface DescribeInsightRequest {
|
|
|
5104
4288
|
*/
|
|
5105
4289
|
id: string | undefined;
|
|
5106
4290
|
}
|
|
5107
|
-
/**
|
|
5108
|
-
* @public
|
|
5109
|
-
* @enum
|
|
5110
|
-
*/
|
|
5111
|
-
export declare const Category: {
|
|
5112
|
-
readonly MISCONFIGURATION: "MISCONFIGURATION";
|
|
5113
|
-
readonly UPGRADE_READINESS: "UPGRADE_READINESS";
|
|
5114
|
-
};
|
|
5115
|
-
/**
|
|
5116
|
-
* @public
|
|
5117
|
-
*/
|
|
5118
|
-
export type Category = (typeof Category)[keyof typeof Category];
|
|
5119
4291
|
/**
|
|
5120
4292
|
* <p>Details about clients using the deprecated resources.</p>
|
|
5121
4293
|
* @public
|
|
@@ -5189,20 +4361,6 @@ export interface InsightCategorySpecificSummary {
|
|
|
5189
4361
|
*/
|
|
5190
4362
|
addonCompatibilityDetails?: AddonCompatibilityDetail[] | undefined;
|
|
5191
4363
|
}
|
|
5192
|
-
/**
|
|
5193
|
-
* @public
|
|
5194
|
-
* @enum
|
|
5195
|
-
*/
|
|
5196
|
-
export declare const InsightStatusValue: {
|
|
5197
|
-
readonly ERROR: "ERROR";
|
|
5198
|
-
readonly PASSING: "PASSING";
|
|
5199
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
5200
|
-
readonly WARNING: "WARNING";
|
|
5201
|
-
};
|
|
5202
|
-
/**
|
|
5203
|
-
* @public
|
|
5204
|
-
*/
|
|
5205
|
-
export type InsightStatusValue = (typeof InsightStatusValue)[keyof typeof InsightStatusValue];
|
|
5206
4364
|
/**
|
|
5207
4365
|
* <p>The status of the insight.</p>
|
|
5208
4366
|
* @public
|
|
@@ -5330,19 +4488,6 @@ export interface DescribeInsightsRefreshRequest {
|
|
|
5330
4488
|
*/
|
|
5331
4489
|
clusterName: string | undefined;
|
|
5332
4490
|
}
|
|
5333
|
-
/**
|
|
5334
|
-
* @public
|
|
5335
|
-
* @enum
|
|
5336
|
-
*/
|
|
5337
|
-
export declare const InsightsRefreshStatus: {
|
|
5338
|
-
readonly COMPLETED: "COMPLETED";
|
|
5339
|
-
readonly FAILED: "FAILED";
|
|
5340
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
5341
|
-
};
|
|
5342
|
-
/**
|
|
5343
|
-
* @public
|
|
5344
|
-
*/
|
|
5345
|
-
export type InsightsRefreshStatus = (typeof InsightsRefreshStatus)[keyof typeof InsightsRefreshStatus];
|
|
5346
4491
|
/**
|
|
5347
4492
|
* @public
|
|
5348
4493
|
*/
|
|
@@ -5803,22 +4948,6 @@ export interface ListClustersResponse {
|
|
|
5803
4948
|
*/
|
|
5804
4949
|
nextToken?: string | undefined;
|
|
5805
4950
|
}
|
|
5806
|
-
/**
|
|
5807
|
-
* @public
|
|
5808
|
-
* @enum
|
|
5809
|
-
*/
|
|
5810
|
-
export declare const EksAnywhereSubscriptionStatus: {
|
|
5811
|
-
readonly ACTIVE: "ACTIVE";
|
|
5812
|
-
readonly CREATING: "CREATING";
|
|
5813
|
-
readonly DELETING: "DELETING";
|
|
5814
|
-
readonly EXPIRED: "EXPIRED";
|
|
5815
|
-
readonly EXPIRING: "EXPIRING";
|
|
5816
|
-
readonly UPDATING: "UPDATING";
|
|
5817
|
-
};
|
|
5818
|
-
/**
|
|
5819
|
-
* @public
|
|
5820
|
-
*/
|
|
5821
|
-
export type EksAnywhereSubscriptionStatus = (typeof EksAnywhereSubscriptionStatus)[keyof typeof EksAnywhereSubscriptionStatus];
|
|
5822
4951
|
/**
|
|
5823
4952
|
* @public
|
|
5824
4953
|
*/
|
|
@@ -6319,19 +5448,6 @@ export interface ListPodIdentityAssociationsResponse {
|
|
|
6319
5448
|
*/
|
|
6320
5449
|
nextToken?: string | undefined;
|
|
6321
5450
|
}
|
|
6322
|
-
/**
|
|
6323
|
-
* <p>This exception is thrown if the request contains a semantic error. The precise meaning
|
|
6324
|
-
* will depend on the API, and will be documented in the error message.</p>
|
|
6325
|
-
* @public
|
|
6326
|
-
*/
|
|
6327
|
-
export declare class BadRequestException extends __BaseException {
|
|
6328
|
-
readonly name: "BadRequestException";
|
|
6329
|
-
readonly $fault: "client";
|
|
6330
|
-
/**
|
|
6331
|
-
* @internal
|
|
6332
|
-
*/
|
|
6333
|
-
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
6334
|
-
}
|
|
6335
5451
|
/**
|
|
6336
5452
|
* @public
|
|
6337
5453
|
*/
|
|
@@ -6352,19 +5468,6 @@ export interface ListTagsForResourceResponse {
|
|
|
6352
5468
|
*/
|
|
6353
5469
|
tags?: Record<string, string> | undefined;
|
|
6354
5470
|
}
|
|
6355
|
-
/**
|
|
6356
|
-
* <p>A service resource associated with the request could not be found. Clients should not
|
|
6357
|
-
* retry such requests.</p>
|
|
6358
|
-
* @public
|
|
6359
|
-
*/
|
|
6360
|
-
export declare class NotFoundException extends __BaseException {
|
|
6361
|
-
readonly name: "NotFoundException";
|
|
6362
|
-
readonly $fault: "client";
|
|
6363
|
-
/**
|
|
6364
|
-
* @internal
|
|
6365
|
-
*/
|
|
6366
|
-
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
6367
|
-
}
|
|
6368
5471
|
/**
|
|
6369
5472
|
* @public
|
|
6370
5473
|
*/
|
|
@@ -6428,25 +5531,6 @@ export interface ListUpdatesResponse {
|
|
|
6428
5531
|
*/
|
|
6429
5532
|
nextToken?: string | undefined;
|
|
6430
5533
|
}
|
|
6431
|
-
/**
|
|
6432
|
-
* @public
|
|
6433
|
-
* @enum
|
|
6434
|
-
*/
|
|
6435
|
-
export declare const ConnectorConfigProvider: {
|
|
6436
|
-
readonly AKS: "AKS";
|
|
6437
|
-
readonly ANTHOS: "ANTHOS";
|
|
6438
|
-
readonly EC2: "EC2";
|
|
6439
|
-
readonly EKS_ANYWHERE: "EKS_ANYWHERE";
|
|
6440
|
-
readonly GKE: "GKE";
|
|
6441
|
-
readonly OPENSHIFT: "OPENSHIFT";
|
|
6442
|
-
readonly OTHER: "OTHER";
|
|
6443
|
-
readonly RANCHER: "RANCHER";
|
|
6444
|
-
readonly TANZU: "TANZU";
|
|
6445
|
-
};
|
|
6446
|
-
/**
|
|
6447
|
-
* @public
|
|
6448
|
-
*/
|
|
6449
|
-
export type ConnectorConfigProvider = (typeof ConnectorConfigProvider)[keyof typeof ConnectorConfigProvider];
|
|
6450
5534
|
/**
|
|
6451
5535
|
* <p>The configuration sent to a cluster for configuration.</p>
|
|
6452
5536
|
* @public
|
|
@@ -6503,19 +5587,6 @@ export interface RegisterClusterResponse {
|
|
|
6503
5587
|
*/
|
|
6504
5588
|
cluster?: Cluster | undefined;
|
|
6505
5589
|
}
|
|
6506
|
-
/**
|
|
6507
|
-
* <p>Required resources (such as service-linked roles) were created and are still
|
|
6508
|
-
* propagating. Retry later.</p>
|
|
6509
|
-
* @public
|
|
6510
|
-
*/
|
|
6511
|
-
export declare class ResourcePropagationDelayException extends __BaseException {
|
|
6512
|
-
readonly name: "ResourcePropagationDelayException";
|
|
6513
|
-
readonly $fault: "client";
|
|
6514
|
-
/**
|
|
6515
|
-
* @internal
|
|
6516
|
-
*/
|
|
6517
|
-
constructor(opts: __ExceptionOptionType<ResourcePropagationDelayException, __BaseException>);
|
|
6518
|
-
}
|
|
6519
5590
|
/**
|
|
6520
5591
|
* @public
|
|
6521
5592
|
*/
|
|
@@ -6860,29 +5931,6 @@ export interface UpdateClusterConfigResponse {
|
|
|
6860
5931
|
*/
|
|
6861
5932
|
update?: Update | undefined;
|
|
6862
5933
|
}
|
|
6863
|
-
/**
|
|
6864
|
-
* <p>Amazon EKS detected upgrade readiness issues. Call the <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_ListInsights.html">
|
|
6865
|
-
* <code>ListInsights</code>
|
|
6866
|
-
* </a> API to view detected upgrade blocking issues.
|
|
6867
|
-
* Pass the <a href="https://docs.aws.amazon.com/eks/latest/APIReference/API_UpdateClusterVersion.html#API_UpdateClusterVersion_RequestBody">
|
|
6868
|
-
* <code>force</code>
|
|
6869
|
-
* </a> flag when updating to override upgrade readiness
|
|
6870
|
-
* errors.</p>
|
|
6871
|
-
* @public
|
|
6872
|
-
*/
|
|
6873
|
-
export declare class InvalidStateException extends __BaseException {
|
|
6874
|
-
readonly name: "InvalidStateException";
|
|
6875
|
-
readonly $fault: "client";
|
|
6876
|
-
/**
|
|
6877
|
-
* <p>The Amazon EKS cluster associated with the exception.</p>
|
|
6878
|
-
* @public
|
|
6879
|
-
*/
|
|
6880
|
-
clusterName?: string | undefined;
|
|
6881
|
-
/**
|
|
6882
|
-
* @internal
|
|
6883
|
-
*/
|
|
6884
|
-
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
6885
|
-
}
|
|
6886
5934
|
/**
|
|
6887
5935
|
* @public
|
|
6888
5936
|
*/
|