types-boto3-eks 1.35.81__py3-none-any.whl → 1.35.87__py3-none-any.whl
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.
- types_boto3_eks/__init__.py +4 -0
- types_boto3_eks/__init__.pyi +4 -0
- types_boto3_eks/__main__.py +8 -7
- types_boto3_eks/client.py +114 -78
- types_boto3_eks/client.pyi +114 -77
- types_boto3_eks/literals.py +7 -1
- types_boto3_eks/literals.pyi +7 -1
- types_boto3_eks/paginator.py +179 -87
- types_boto3_eks/paginator.pyi +164 -86
- types_boto3_eks/type_defs.py +167 -143
- types_boto3_eks/type_defs.pyi +161 -138
- types_boto3_eks/version.py +1 -1
- types_boto3_eks/waiter.py +29 -19
- types_boto3_eks/waiter.pyi +29 -19
- {types_boto3_eks-1.35.81.dist-info → types_boto3_eks-1.35.87.dist-info}/METADATA +9 -5
- types_boto3_eks-1.35.87.dist-info/RECORD +20 -0
- types_boto3_eks-1.35.81.dist-info/RECORD +0 -20
- {types_boto3_eks-1.35.81.dist-info → types_boto3_eks-1.35.87.dist-info}/LICENSE +0 -0
- {types_boto3_eks-1.35.81.dist-info → types_boto3_eks-1.35.87.dist-info}/WHEEL +0 -0
- {types_boto3_eks-1.35.81.dist-info → types_boto3_eks-1.35.87.dist-info}/top_level.txt +0 -0
types_boto3_eks/client.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
|
-
Type annotations for eks service
|
|
2
|
+
Type annotations for eks service Client.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -16,13 +16,18 @@ Usage::
|
|
|
16
16
|
Copyright 2024 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
19
21
|
import sys
|
|
20
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, Mapping, overload
|
|
21
23
|
|
|
22
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
23
27
|
|
|
24
28
|
from .paginator import (
|
|
25
29
|
DescribeAddonVersionsPaginator,
|
|
30
|
+
DescribeClusterVersionsPaginator,
|
|
26
31
|
ListAccessEntriesPaginator,
|
|
27
32
|
ListAccessPoliciesPaginator,
|
|
28
33
|
ListAddonsPaginator,
|
|
@@ -82,6 +87,8 @@ from .type_defs import (
|
|
|
82
87
|
DescribeAddonVersionsResponseTypeDef,
|
|
83
88
|
DescribeClusterRequestRequestTypeDef,
|
|
84
89
|
DescribeClusterResponseTypeDef,
|
|
90
|
+
DescribeClusterVersionsRequestRequestTypeDef,
|
|
91
|
+
DescribeClusterVersionsResponseTypeDef,
|
|
85
92
|
DescribeEksAnywhereSubscriptionRequestRequestTypeDef,
|
|
86
93
|
DescribeEksAnywhereSubscriptionResponseTypeDef,
|
|
87
94
|
DescribeFargateProfileRequestRequestTypeDef,
|
|
@@ -164,28 +171,21 @@ else:
|
|
|
164
171
|
|
|
165
172
|
__all__ = ("EKSClient",)
|
|
166
173
|
|
|
167
|
-
class
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
ResourceInUseException: Type[BotocoreClientError]
|
|
183
|
-
ResourceLimitExceededException: Type[BotocoreClientError]
|
|
184
|
-
ResourceNotFoundException: Type[BotocoreClientError]
|
|
185
|
-
ResourcePropagationDelayException: Type[BotocoreClientError]
|
|
186
|
-
ServerException: Type[BotocoreClientError]
|
|
187
|
-
ServiceUnavailableException: Type[BotocoreClientError]
|
|
188
|
-
UnsupportedAvailabilityZoneException: Type[BotocoreClientError]
|
|
174
|
+
class Exceptions(BaseClientExceptions):
|
|
175
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
176
|
+
BadRequestException: type[BotocoreClientError]
|
|
177
|
+
ClientError: type[BotocoreClientError]
|
|
178
|
+
ClientException: type[BotocoreClientError]
|
|
179
|
+
InvalidParameterException: type[BotocoreClientError]
|
|
180
|
+
InvalidRequestException: type[BotocoreClientError]
|
|
181
|
+
NotFoundException: type[BotocoreClientError]
|
|
182
|
+
ResourceInUseException: type[BotocoreClientError]
|
|
183
|
+
ResourceLimitExceededException: type[BotocoreClientError]
|
|
184
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
185
|
+
ResourcePropagationDelayException: type[BotocoreClientError]
|
|
186
|
+
ServerException: type[BotocoreClientError]
|
|
187
|
+
ServiceUnavailableException: type[BotocoreClientError]
|
|
188
|
+
UnsupportedAvailabilityZoneException: type[BotocoreClientError]
|
|
189
189
|
|
|
190
190
|
class EKSClient(BaseClient):
|
|
191
191
|
"""
|
|
@@ -222,12 +222,6 @@ class EKSClient(BaseClient):
|
|
|
222
222
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#generate_presigned_url)
|
|
223
223
|
"""
|
|
224
224
|
|
|
225
|
-
def close(self) -> None:
|
|
226
|
-
"""
|
|
227
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/close.html)
|
|
228
|
-
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#close)
|
|
229
|
-
"""
|
|
230
|
-
|
|
231
225
|
def associate_access_policy(
|
|
232
226
|
self, **kwargs: Unpack[AssociateAccessPolicyRequestRequestTypeDef]
|
|
233
227
|
) -> AssociateAccessPolicyResponseTypeDef:
|
|
@@ -331,7 +325,7 @@ class EKSClient(BaseClient):
|
|
|
331
325
|
|
|
332
326
|
def delete_access_entry(
|
|
333
327
|
self, **kwargs: Unpack[DeleteAccessEntryRequestRequestTypeDef]
|
|
334
|
-
) ->
|
|
328
|
+
) -> dict[str, Any]:
|
|
335
329
|
"""
|
|
336
330
|
Deletes an access entry.
|
|
337
331
|
|
|
@@ -459,6 +453,16 @@ class EKSClient(BaseClient):
|
|
|
459
453
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_cluster)
|
|
460
454
|
"""
|
|
461
455
|
|
|
456
|
+
def describe_cluster_versions(
|
|
457
|
+
self, **kwargs: Unpack[DescribeClusterVersionsRequestRequestTypeDef]
|
|
458
|
+
) -> DescribeClusterVersionsResponseTypeDef:
|
|
459
|
+
"""
|
|
460
|
+
Lists available Kubernetes versions for Amazon EKS clusters.
|
|
461
|
+
|
|
462
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_cluster_versions.html)
|
|
463
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_cluster_versions)
|
|
464
|
+
"""
|
|
465
|
+
|
|
462
466
|
def describe_eks_anywhere_subscription(
|
|
463
467
|
self, **kwargs: Unpack[DescribeEksAnywhereSubscriptionRequestRequestTypeDef]
|
|
464
468
|
) -> DescribeEksAnywhereSubscriptionResponseTypeDef:
|
|
@@ -531,7 +535,7 @@ class EKSClient(BaseClient):
|
|
|
531
535
|
|
|
532
536
|
def disassociate_access_policy(
|
|
533
537
|
self, **kwargs: Unpack[DisassociateAccessPolicyRequestRequestTypeDef]
|
|
534
|
-
) ->
|
|
538
|
+
) -> dict[str, Any]:
|
|
535
539
|
"""
|
|
536
540
|
Disassociates an access policy from an access entry.
|
|
537
541
|
|
|
@@ -693,7 +697,7 @@ class EKSClient(BaseClient):
|
|
|
693
697
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#register_cluster)
|
|
694
698
|
"""
|
|
695
699
|
|
|
696
|
-
def tag_resource(self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]) ->
|
|
700
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]) -> dict[str, Any]:
|
|
697
701
|
"""
|
|
698
702
|
Associates the specified tags to an Amazon EKS resource with the specified
|
|
699
703
|
<code>resourceArn</code>.
|
|
@@ -704,7 +708,7 @@ class EKSClient(BaseClient):
|
|
|
704
708
|
|
|
705
709
|
def untag_resource(
|
|
706
710
|
self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
|
|
707
|
-
) ->
|
|
711
|
+
) -> dict[str, Any]:
|
|
708
712
|
"""
|
|
709
713
|
Deletes specified tags from an Amazon EKS resource.
|
|
710
714
|
|
|
@@ -793,8 +797,8 @@ class EKSClient(BaseClient):
|
|
|
793
797
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#update_pod_identity_association)
|
|
794
798
|
"""
|
|
795
799
|
|
|
796
|
-
@overload
|
|
797
|
-
def get_paginator(
|
|
800
|
+
@overload # type: ignore[override]
|
|
801
|
+
def get_paginator( # type: ignore[override]
|
|
798
802
|
self, operation_name: Literal["describe_addon_versions"]
|
|
799
803
|
) -> DescribeAddonVersionsPaginator:
|
|
800
804
|
"""
|
|
@@ -804,8 +808,19 @@ class EKSClient(BaseClient):
|
|
|
804
808
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
805
809
|
"""
|
|
806
810
|
|
|
807
|
-
@overload
|
|
808
|
-
def get_paginator(
|
|
811
|
+
@overload # type: ignore[override]
|
|
812
|
+
def get_paginator( # type: ignore[override]
|
|
813
|
+
self, operation_name: Literal["describe_cluster_versions"]
|
|
814
|
+
) -> DescribeClusterVersionsPaginator:
|
|
815
|
+
"""
|
|
816
|
+
Create a paginator for an operation.
|
|
817
|
+
|
|
818
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
819
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
820
|
+
"""
|
|
821
|
+
|
|
822
|
+
@overload # type: ignore[override]
|
|
823
|
+
def get_paginator( # type: ignore[override]
|
|
809
824
|
self, operation_name: Literal["list_access_entries"]
|
|
810
825
|
) -> ListAccessEntriesPaginator:
|
|
811
826
|
"""
|
|
@@ -815,8 +830,8 @@ class EKSClient(BaseClient):
|
|
|
815
830
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
816
831
|
"""
|
|
817
832
|
|
|
818
|
-
@overload
|
|
819
|
-
def get_paginator(
|
|
833
|
+
@overload # type: ignore[override]
|
|
834
|
+
def get_paginator( # type: ignore[override]
|
|
820
835
|
self, operation_name: Literal["list_access_policies"]
|
|
821
836
|
) -> ListAccessPoliciesPaginator:
|
|
822
837
|
"""
|
|
@@ -826,8 +841,10 @@ class EKSClient(BaseClient):
|
|
|
826
841
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
827
842
|
"""
|
|
828
843
|
|
|
829
|
-
@overload
|
|
830
|
-
def get_paginator(
|
|
844
|
+
@overload # type: ignore[override]
|
|
845
|
+
def get_paginator( # type: ignore[override]
|
|
846
|
+
self, operation_name: Literal["list_addons"]
|
|
847
|
+
) -> ListAddonsPaginator:
|
|
831
848
|
"""
|
|
832
849
|
Create a paginator for an operation.
|
|
833
850
|
|
|
@@ -835,8 +852,8 @@ class EKSClient(BaseClient):
|
|
|
835
852
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
836
853
|
"""
|
|
837
854
|
|
|
838
|
-
@overload
|
|
839
|
-
def get_paginator(
|
|
855
|
+
@overload # type: ignore[override]
|
|
856
|
+
def get_paginator( # type: ignore[override]
|
|
840
857
|
self, operation_name: Literal["list_associated_access_policies"]
|
|
841
858
|
) -> ListAssociatedAccessPoliciesPaginator:
|
|
842
859
|
"""
|
|
@@ -846,8 +863,10 @@ class EKSClient(BaseClient):
|
|
|
846
863
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
847
864
|
"""
|
|
848
865
|
|
|
849
|
-
@overload
|
|
850
|
-
def get_paginator(
|
|
866
|
+
@overload # type: ignore[override]
|
|
867
|
+
def get_paginator( # type: ignore[override]
|
|
868
|
+
self, operation_name: Literal["list_clusters"]
|
|
869
|
+
) -> ListClustersPaginator:
|
|
851
870
|
"""
|
|
852
871
|
Create a paginator for an operation.
|
|
853
872
|
|
|
@@ -855,8 +874,8 @@ class EKSClient(BaseClient):
|
|
|
855
874
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
856
875
|
"""
|
|
857
876
|
|
|
858
|
-
@overload
|
|
859
|
-
def get_paginator(
|
|
877
|
+
@overload # type: ignore[override]
|
|
878
|
+
def get_paginator( # type: ignore[override]
|
|
860
879
|
self, operation_name: Literal["list_eks_anywhere_subscriptions"]
|
|
861
880
|
) -> ListEksAnywhereSubscriptionsPaginator:
|
|
862
881
|
"""
|
|
@@ -866,8 +885,8 @@ class EKSClient(BaseClient):
|
|
|
866
885
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
867
886
|
"""
|
|
868
887
|
|
|
869
|
-
@overload
|
|
870
|
-
def get_paginator(
|
|
888
|
+
@overload # type: ignore[override]
|
|
889
|
+
def get_paginator( # type: ignore[override]
|
|
871
890
|
self, operation_name: Literal["list_fargate_profiles"]
|
|
872
891
|
) -> ListFargateProfilesPaginator:
|
|
873
892
|
"""
|
|
@@ -877,8 +896,8 @@ class EKSClient(BaseClient):
|
|
|
877
896
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
878
897
|
"""
|
|
879
898
|
|
|
880
|
-
@overload
|
|
881
|
-
def get_paginator(
|
|
899
|
+
@overload # type: ignore[override]
|
|
900
|
+
def get_paginator( # type: ignore[override]
|
|
882
901
|
self, operation_name: Literal["list_identity_provider_configs"]
|
|
883
902
|
) -> ListIdentityProviderConfigsPaginator:
|
|
884
903
|
"""
|
|
@@ -888,8 +907,10 @@ class EKSClient(BaseClient):
|
|
|
888
907
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
889
908
|
"""
|
|
890
909
|
|
|
891
|
-
@overload
|
|
892
|
-
def get_paginator(
|
|
910
|
+
@overload # type: ignore[override]
|
|
911
|
+
def get_paginator( # type: ignore[override]
|
|
912
|
+
self, operation_name: Literal["list_insights"]
|
|
913
|
+
) -> ListInsightsPaginator:
|
|
893
914
|
"""
|
|
894
915
|
Create a paginator for an operation.
|
|
895
916
|
|
|
@@ -897,8 +918,10 @@ class EKSClient(BaseClient):
|
|
|
897
918
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
898
919
|
"""
|
|
899
920
|
|
|
900
|
-
@overload
|
|
901
|
-
def get_paginator(
|
|
921
|
+
@overload # type: ignore[override]
|
|
922
|
+
def get_paginator( # type: ignore[override]
|
|
923
|
+
self, operation_name: Literal["list_nodegroups"]
|
|
924
|
+
) -> ListNodegroupsPaginator:
|
|
902
925
|
"""
|
|
903
926
|
Create a paginator for an operation.
|
|
904
927
|
|
|
@@ -906,8 +929,8 @@ class EKSClient(BaseClient):
|
|
|
906
929
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
907
930
|
"""
|
|
908
931
|
|
|
909
|
-
@overload
|
|
910
|
-
def get_paginator(
|
|
932
|
+
@overload # type: ignore[override]
|
|
933
|
+
def get_paginator( # type: ignore[override]
|
|
911
934
|
self, operation_name: Literal["list_pod_identity_associations"]
|
|
912
935
|
) -> ListPodIdentityAssociationsPaginator:
|
|
913
936
|
"""
|
|
@@ -917,8 +940,10 @@ class EKSClient(BaseClient):
|
|
|
917
940
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
918
941
|
"""
|
|
919
942
|
|
|
920
|
-
@overload
|
|
921
|
-
def get_paginator(
|
|
943
|
+
@overload # type: ignore[override]
|
|
944
|
+
def get_paginator( # type: ignore[override]
|
|
945
|
+
self, operation_name: Literal["list_updates"]
|
|
946
|
+
) -> ListUpdatesPaginator:
|
|
922
947
|
"""
|
|
923
948
|
Create a paginator for an operation.
|
|
924
949
|
|
|
@@ -926,8 +951,10 @@ class EKSClient(BaseClient):
|
|
|
926
951
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
927
952
|
"""
|
|
928
953
|
|
|
929
|
-
@overload
|
|
930
|
-
def get_waiter(
|
|
954
|
+
@overload # type: ignore[override]
|
|
955
|
+
def get_waiter( # type: ignore[override]
|
|
956
|
+
self, waiter_name: Literal["addon_active"]
|
|
957
|
+
) -> AddonActiveWaiter:
|
|
931
958
|
"""
|
|
932
959
|
Returns an object that can wait for some condition.
|
|
933
960
|
|
|
@@ -935,8 +962,10 @@ class EKSClient(BaseClient):
|
|
|
935
962
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
936
963
|
"""
|
|
937
964
|
|
|
938
|
-
@overload
|
|
939
|
-
def get_waiter(
|
|
965
|
+
@overload # type: ignore[override]
|
|
966
|
+
def get_waiter( # type: ignore[override]
|
|
967
|
+
self, waiter_name: Literal["addon_deleted"]
|
|
968
|
+
) -> AddonDeletedWaiter:
|
|
940
969
|
"""
|
|
941
970
|
Returns an object that can wait for some condition.
|
|
942
971
|
|
|
@@ -944,8 +973,10 @@ class EKSClient(BaseClient):
|
|
|
944
973
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
945
974
|
"""
|
|
946
975
|
|
|
947
|
-
@overload
|
|
948
|
-
def get_waiter(
|
|
976
|
+
@overload # type: ignore[override]
|
|
977
|
+
def get_waiter( # type: ignore[override]
|
|
978
|
+
self, waiter_name: Literal["cluster_active"]
|
|
979
|
+
) -> ClusterActiveWaiter:
|
|
949
980
|
"""
|
|
950
981
|
Returns an object that can wait for some condition.
|
|
951
982
|
|
|
@@ -953,8 +984,10 @@ class EKSClient(BaseClient):
|
|
|
953
984
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
954
985
|
"""
|
|
955
986
|
|
|
956
|
-
@overload
|
|
957
|
-
def get_waiter(
|
|
987
|
+
@overload # type: ignore[override]
|
|
988
|
+
def get_waiter( # type: ignore[override]
|
|
989
|
+
self, waiter_name: Literal["cluster_deleted"]
|
|
990
|
+
) -> ClusterDeletedWaiter:
|
|
958
991
|
"""
|
|
959
992
|
Returns an object that can wait for some condition.
|
|
960
993
|
|
|
@@ -962,8 +995,8 @@ class EKSClient(BaseClient):
|
|
|
962
995
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
963
996
|
"""
|
|
964
997
|
|
|
965
|
-
@overload
|
|
966
|
-
def get_waiter(
|
|
998
|
+
@overload # type: ignore[override]
|
|
999
|
+
def get_waiter( # type: ignore[override]
|
|
967
1000
|
self, waiter_name: Literal["fargate_profile_active"]
|
|
968
1001
|
) -> FargateProfileActiveWaiter:
|
|
969
1002
|
"""
|
|
@@ -973,8 +1006,8 @@ class EKSClient(BaseClient):
|
|
|
973
1006
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
974
1007
|
"""
|
|
975
1008
|
|
|
976
|
-
@overload
|
|
977
|
-
def get_waiter(
|
|
1009
|
+
@overload # type: ignore[override]
|
|
1010
|
+
def get_waiter( # type: ignore[override]
|
|
978
1011
|
self, waiter_name: Literal["fargate_profile_deleted"]
|
|
979
1012
|
) -> FargateProfileDeletedWaiter:
|
|
980
1013
|
"""
|
|
@@ -984,8 +1017,10 @@ class EKSClient(BaseClient):
|
|
|
984
1017
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
985
1018
|
"""
|
|
986
1019
|
|
|
987
|
-
@overload
|
|
988
|
-
def get_waiter(
|
|
1020
|
+
@overload # type: ignore[override]
|
|
1021
|
+
def get_waiter( # type: ignore[override]
|
|
1022
|
+
self, waiter_name: Literal["nodegroup_active"]
|
|
1023
|
+
) -> NodegroupActiveWaiter:
|
|
989
1024
|
"""
|
|
990
1025
|
Returns an object that can wait for some condition.
|
|
991
1026
|
|
|
@@ -993,8 +1028,10 @@ class EKSClient(BaseClient):
|
|
|
993
1028
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
994
1029
|
"""
|
|
995
1030
|
|
|
996
|
-
@overload
|
|
997
|
-
def get_waiter(
|
|
1031
|
+
@overload # type: ignore[override]
|
|
1032
|
+
def get_waiter( # type: ignore[override]
|
|
1033
|
+
self, waiter_name: Literal["nodegroup_deleted"]
|
|
1034
|
+
) -> NodegroupDeletedWaiter:
|
|
998
1035
|
"""
|
|
999
1036
|
Returns an object that can wait for some condition.
|
|
1000
1037
|
|
types_boto3_eks/literals.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for eks service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -36,9 +36,11 @@ __all__ = (
|
|
|
36
36
|
"ClusterDeletedWaiterName",
|
|
37
37
|
"ClusterIssueCodeType",
|
|
38
38
|
"ClusterStatusType",
|
|
39
|
+
"ClusterVersionStatusType",
|
|
39
40
|
"ConfigStatusType",
|
|
40
41
|
"ConnectorConfigProviderType",
|
|
41
42
|
"DescribeAddonVersionsPaginatorName",
|
|
43
|
+
"DescribeClusterVersionsPaginatorName",
|
|
42
44
|
"EKSServiceName",
|
|
43
45
|
"EksAnywhereSubscriptionLicenseTypeType",
|
|
44
46
|
"EksAnywhereSubscriptionStatusType",
|
|
@@ -151,11 +153,13 @@ ClusterIssueCodeType = Literal[
|
|
|
151
153
|
"VpcNotFound",
|
|
152
154
|
]
|
|
153
155
|
ClusterStatusType = Literal["ACTIVE", "CREATING", "DELETING", "FAILED", "PENDING", "UPDATING"]
|
|
156
|
+
ClusterVersionStatusType = Literal["extended-support", "standard-support", "unsupported"]
|
|
154
157
|
ConfigStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
155
158
|
ConnectorConfigProviderType = Literal[
|
|
156
159
|
"AKS", "ANTHOS", "EC2", "EKS_ANYWHERE", "GKE", "OPENSHIFT", "OTHER", "RANCHER", "TANZU"
|
|
157
160
|
]
|
|
158
161
|
DescribeAddonVersionsPaginatorName = Literal["describe_addon_versions"]
|
|
162
|
+
DescribeClusterVersionsPaginatorName = Literal["describe_cluster_versions"]
|
|
159
163
|
EksAnywhereSubscriptionLicenseTypeType = Literal["Cluster"]
|
|
160
164
|
EksAnywhereSubscriptionStatusType = Literal[
|
|
161
165
|
"ACTIVE", "CREATING", "DELETING", "EXPIRED", "EXPIRING", "UPDATING"
|
|
@@ -337,6 +341,7 @@ ServiceName = Literal[
|
|
|
337
341
|
"b2bi",
|
|
338
342
|
"backup",
|
|
339
343
|
"backup-gateway",
|
|
344
|
+
"backupsearch",
|
|
340
345
|
"batch",
|
|
341
346
|
"bcm-data-exports",
|
|
342
347
|
"bcm-pricing-calculator",
|
|
@@ -722,6 +727,7 @@ ResourceServiceName = Literal[
|
|
|
722
727
|
]
|
|
723
728
|
PaginatorName = Literal[
|
|
724
729
|
"describe_addon_versions",
|
|
730
|
+
"describe_cluster_versions",
|
|
725
731
|
"list_access_entries",
|
|
726
732
|
"list_access_policies",
|
|
727
733
|
"list_addons",
|
types_boto3_eks/literals.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for eks service literal definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/literals/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -35,9 +35,11 @@ __all__ = (
|
|
|
35
35
|
"ClusterDeletedWaiterName",
|
|
36
36
|
"ClusterIssueCodeType",
|
|
37
37
|
"ClusterStatusType",
|
|
38
|
+
"ClusterVersionStatusType",
|
|
38
39
|
"ConfigStatusType",
|
|
39
40
|
"ConnectorConfigProviderType",
|
|
40
41
|
"DescribeAddonVersionsPaginatorName",
|
|
42
|
+
"DescribeClusterVersionsPaginatorName",
|
|
41
43
|
"EKSServiceName",
|
|
42
44
|
"EksAnywhereSubscriptionLicenseTypeType",
|
|
43
45
|
"EksAnywhereSubscriptionStatusType",
|
|
@@ -149,11 +151,13 @@ ClusterIssueCodeType = Literal[
|
|
|
149
151
|
"VpcNotFound",
|
|
150
152
|
]
|
|
151
153
|
ClusterStatusType = Literal["ACTIVE", "CREATING", "DELETING", "FAILED", "PENDING", "UPDATING"]
|
|
154
|
+
ClusterVersionStatusType = Literal["extended-support", "standard-support", "unsupported"]
|
|
152
155
|
ConfigStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
153
156
|
ConnectorConfigProviderType = Literal[
|
|
154
157
|
"AKS", "ANTHOS", "EC2", "EKS_ANYWHERE", "GKE", "OPENSHIFT", "OTHER", "RANCHER", "TANZU"
|
|
155
158
|
]
|
|
156
159
|
DescribeAddonVersionsPaginatorName = Literal["describe_addon_versions"]
|
|
160
|
+
DescribeClusterVersionsPaginatorName = Literal["describe_cluster_versions"]
|
|
157
161
|
EksAnywhereSubscriptionLicenseTypeType = Literal["Cluster"]
|
|
158
162
|
EksAnywhereSubscriptionStatusType = Literal[
|
|
159
163
|
"ACTIVE", "CREATING", "DELETING", "EXPIRED", "EXPIRING", "UPDATING"
|
|
@@ -335,6 +339,7 @@ ServiceName = Literal[
|
|
|
335
339
|
"b2bi",
|
|
336
340
|
"backup",
|
|
337
341
|
"backup-gateway",
|
|
342
|
+
"backupsearch",
|
|
338
343
|
"batch",
|
|
339
344
|
"bcm-data-exports",
|
|
340
345
|
"bcm-pricing-calculator",
|
|
@@ -720,6 +725,7 @@ ResourceServiceName = Literal[
|
|
|
720
725
|
]
|
|
721
726
|
PaginatorName = Literal[
|
|
722
727
|
"describe_addon_versions",
|
|
728
|
+
"describe_cluster_versions",
|
|
723
729
|
"list_access_entries",
|
|
724
730
|
"list_access_policies",
|
|
725
731
|
"list_addons",
|