mypy-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.
- mypy_boto3_eks/__init__.py +4 -0
- mypy_boto3_eks/__init__.pyi +4 -0
- mypy_boto3_eks/__main__.py +8 -7
- mypy_boto3_eks/client.py +114 -78
- mypy_boto3_eks/client.pyi +114 -77
- mypy_boto3_eks/literals.py +7 -1
- mypy_boto3_eks/literals.pyi +7 -1
- mypy_boto3_eks/paginator.py +179 -87
- mypy_boto3_eks/paginator.pyi +164 -86
- mypy_boto3_eks/type_defs.py +167 -143
- mypy_boto3_eks/type_defs.pyi +161 -138
- mypy_boto3_eks/version.py +1 -1
- mypy_boto3_eks/waiter.py +29 -19
- mypy_boto3_eks/waiter.pyi +29 -19
- {mypy_boto3_eks-1.35.81.dist-info → mypy_boto3_eks-1.35.87.dist-info}/METADATA +10 -6
- mypy_boto3_eks-1.35.87.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.35.81.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.81.dist-info → mypy_boto3_eks-1.35.87.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.35.81.dist-info → mypy_boto3_eks-1.35.87.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.35.81.dist-info → mypy_boto3_eks-1.35.87.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/__init__.py
CHANGED
|
@@ -12,6 +12,7 @@ Usage::
|
|
|
12
12
|
ClusterActiveWaiter,
|
|
13
13
|
ClusterDeletedWaiter,
|
|
14
14
|
DescribeAddonVersionsPaginator,
|
|
15
|
+
DescribeClusterVersionsPaginator,
|
|
15
16
|
EKSClient,
|
|
16
17
|
FargateProfileActiveWaiter,
|
|
17
18
|
FargateProfileDeletedWaiter,
|
|
@@ -44,6 +45,7 @@ Usage::
|
|
|
44
45
|
nodegroup_deleted_waiter: NodegroupDeletedWaiter = client.get_waiter("nodegroup_deleted")
|
|
45
46
|
|
|
46
47
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
|
|
48
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
47
49
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
|
|
48
50
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
49
51
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
@@ -64,6 +66,7 @@ Copyright 2024 Vlad Emelianov
|
|
|
64
66
|
from .client import EKSClient
|
|
65
67
|
from .paginator import (
|
|
66
68
|
DescribeAddonVersionsPaginator,
|
|
69
|
+
DescribeClusterVersionsPaginator,
|
|
67
70
|
ListAccessEntriesPaginator,
|
|
68
71
|
ListAccessPoliciesPaginator,
|
|
69
72
|
ListAddonsPaginator,
|
|
@@ -98,6 +101,7 @@ __all__ = (
|
|
|
98
101
|
"ClusterActiveWaiter",
|
|
99
102
|
"ClusterDeletedWaiter",
|
|
100
103
|
"DescribeAddonVersionsPaginator",
|
|
104
|
+
"DescribeClusterVersionsPaginator",
|
|
101
105
|
"EKSClient",
|
|
102
106
|
"FargateProfileActiveWaiter",
|
|
103
107
|
"FargateProfileDeletedWaiter",
|
mypy_boto3_eks/__init__.pyi
CHANGED
|
@@ -12,6 +12,7 @@ Usage::
|
|
|
12
12
|
ClusterActiveWaiter,
|
|
13
13
|
ClusterDeletedWaiter,
|
|
14
14
|
DescribeAddonVersionsPaginator,
|
|
15
|
+
DescribeClusterVersionsPaginator,
|
|
15
16
|
EKSClient,
|
|
16
17
|
FargateProfileActiveWaiter,
|
|
17
18
|
FargateProfileDeletedWaiter,
|
|
@@ -44,6 +45,7 @@ Usage::
|
|
|
44
45
|
nodegroup_deleted_waiter: NodegroupDeletedWaiter = client.get_waiter("nodegroup_deleted")
|
|
45
46
|
|
|
46
47
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
|
|
48
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
47
49
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
|
|
48
50
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
49
51
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
@@ -64,6 +66,7 @@ Copyright 2024 Vlad Emelianov
|
|
|
64
66
|
from .client import EKSClient
|
|
65
67
|
from .paginator import (
|
|
66
68
|
DescribeAddonVersionsPaginator,
|
|
69
|
+
DescribeClusterVersionsPaginator,
|
|
67
70
|
ListAccessEntriesPaginator,
|
|
68
71
|
ListAccessPoliciesPaginator,
|
|
69
72
|
ListAddonsPaginator,
|
|
@@ -97,6 +100,7 @@ __all__ = (
|
|
|
97
100
|
"ClusterActiveWaiter",
|
|
98
101
|
"ClusterDeletedWaiter",
|
|
99
102
|
"DescribeAddonVersionsPaginator",
|
|
103
|
+
"DescribeClusterVersionsPaginator",
|
|
100
104
|
"EKSClient",
|
|
101
105
|
"FargateProfileActiveWaiter",
|
|
102
106
|
"FargateProfileDeletedWaiter",
|
mypy_boto3_eks/__main__.py
CHANGED
|
@@ -11,14 +11,14 @@ def print_info() -> None:
|
|
|
11
11
|
"""
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
|
-
|
|
15
|
-
"Type annotations for boto3 EKS 1.35.
|
|
16
|
-
"Version: 1.35.
|
|
17
|
-
"Builder version: 8.
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for boto3 EKS 1.35.87\n"
|
|
16
|
+
"Version: 1.35.87\n"
|
|
17
|
+
"Builder version: 8.7.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#eks\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
21
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
22
22
|
)
|
|
23
23
|
|
|
24
24
|
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
|
|
29
|
+
sys.stdout.write("1.35.87\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
|
@@ -34,7 +34,8 @@ def main() -> None:
|
|
|
34
34
|
Main CLI entrypoint.
|
|
35
35
|
"""
|
|
36
36
|
if "--version" in sys.argv:
|
|
37
|
-
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
38
39
|
print_info()
|
|
39
40
|
|
|
40
41
|
|
mypy_boto3_eks/client.py
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/boto3_stubs_docs/mypy_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,
|
|
@@ -166,29 +173,21 @@ else:
|
|
|
166
173
|
__all__ = ("EKSClient",)
|
|
167
174
|
|
|
168
175
|
|
|
169
|
-
class
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
NotFoundException: Type[BotocoreClientError]
|
|
185
|
-
ResourceInUseException: Type[BotocoreClientError]
|
|
186
|
-
ResourceLimitExceededException: Type[BotocoreClientError]
|
|
187
|
-
ResourceNotFoundException: Type[BotocoreClientError]
|
|
188
|
-
ResourcePropagationDelayException: Type[BotocoreClientError]
|
|
189
|
-
ServerException: Type[BotocoreClientError]
|
|
190
|
-
ServiceUnavailableException: Type[BotocoreClientError]
|
|
191
|
-
UnsupportedAvailabilityZoneException: Type[BotocoreClientError]
|
|
176
|
+
class Exceptions(BaseClientExceptions):
|
|
177
|
+
AccessDeniedException: type[BotocoreClientError]
|
|
178
|
+
BadRequestException: type[BotocoreClientError]
|
|
179
|
+
ClientError: type[BotocoreClientError]
|
|
180
|
+
ClientException: type[BotocoreClientError]
|
|
181
|
+
InvalidParameterException: type[BotocoreClientError]
|
|
182
|
+
InvalidRequestException: type[BotocoreClientError]
|
|
183
|
+
NotFoundException: type[BotocoreClientError]
|
|
184
|
+
ResourceInUseException: type[BotocoreClientError]
|
|
185
|
+
ResourceLimitExceededException: type[BotocoreClientError]
|
|
186
|
+
ResourceNotFoundException: type[BotocoreClientError]
|
|
187
|
+
ResourcePropagationDelayException: type[BotocoreClientError]
|
|
188
|
+
ServerException: type[BotocoreClientError]
|
|
189
|
+
ServiceUnavailableException: type[BotocoreClientError]
|
|
190
|
+
UnsupportedAvailabilityZoneException: type[BotocoreClientError]
|
|
192
191
|
|
|
193
192
|
|
|
194
193
|
class EKSClient(BaseClient):
|
|
@@ -226,12 +225,6 @@ class EKSClient(BaseClient):
|
|
|
226
225
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#generate_presigned_url)
|
|
227
226
|
"""
|
|
228
227
|
|
|
229
|
-
def close(self) -> None:
|
|
230
|
-
"""
|
|
231
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/close.html)
|
|
232
|
-
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#close)
|
|
233
|
-
"""
|
|
234
|
-
|
|
235
228
|
def associate_access_policy(
|
|
236
229
|
self, **kwargs: Unpack[AssociateAccessPolicyRequestRequestTypeDef]
|
|
237
230
|
) -> AssociateAccessPolicyResponseTypeDef:
|
|
@@ -335,7 +328,7 @@ class EKSClient(BaseClient):
|
|
|
335
328
|
|
|
336
329
|
def delete_access_entry(
|
|
337
330
|
self, **kwargs: Unpack[DeleteAccessEntryRequestRequestTypeDef]
|
|
338
|
-
) ->
|
|
331
|
+
) -> dict[str, Any]:
|
|
339
332
|
"""
|
|
340
333
|
Deletes an access entry.
|
|
341
334
|
|
|
@@ -463,6 +456,16 @@ class EKSClient(BaseClient):
|
|
|
463
456
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_cluster)
|
|
464
457
|
"""
|
|
465
458
|
|
|
459
|
+
def describe_cluster_versions(
|
|
460
|
+
self, **kwargs: Unpack[DescribeClusterVersionsRequestRequestTypeDef]
|
|
461
|
+
) -> DescribeClusterVersionsResponseTypeDef:
|
|
462
|
+
"""
|
|
463
|
+
Lists available Kubernetes versions for Amazon EKS clusters.
|
|
464
|
+
|
|
465
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_cluster_versions.html)
|
|
466
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_cluster_versions)
|
|
467
|
+
"""
|
|
468
|
+
|
|
466
469
|
def describe_eks_anywhere_subscription(
|
|
467
470
|
self, **kwargs: Unpack[DescribeEksAnywhereSubscriptionRequestRequestTypeDef]
|
|
468
471
|
) -> DescribeEksAnywhereSubscriptionResponseTypeDef:
|
|
@@ -535,7 +538,7 @@ class EKSClient(BaseClient):
|
|
|
535
538
|
|
|
536
539
|
def disassociate_access_policy(
|
|
537
540
|
self, **kwargs: Unpack[DisassociateAccessPolicyRequestRequestTypeDef]
|
|
538
|
-
) ->
|
|
541
|
+
) -> dict[str, Any]:
|
|
539
542
|
"""
|
|
540
543
|
Disassociates an access policy from an access entry.
|
|
541
544
|
|
|
@@ -697,7 +700,7 @@ class EKSClient(BaseClient):
|
|
|
697
700
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#register_cluster)
|
|
698
701
|
"""
|
|
699
702
|
|
|
700
|
-
def tag_resource(self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]) ->
|
|
703
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]) -> dict[str, Any]:
|
|
701
704
|
"""
|
|
702
705
|
Associates the specified tags to an Amazon EKS resource with the specified
|
|
703
706
|
<code>resourceArn</code>.
|
|
@@ -708,7 +711,7 @@ class EKSClient(BaseClient):
|
|
|
708
711
|
|
|
709
712
|
def untag_resource(
|
|
710
713
|
self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
|
|
711
|
-
) ->
|
|
714
|
+
) -> dict[str, Any]:
|
|
712
715
|
"""
|
|
713
716
|
Deletes specified tags from an Amazon EKS resource.
|
|
714
717
|
|
|
@@ -797,8 +800,8 @@ class EKSClient(BaseClient):
|
|
|
797
800
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#update_pod_identity_association)
|
|
798
801
|
"""
|
|
799
802
|
|
|
800
|
-
@overload
|
|
801
|
-
def get_paginator(
|
|
803
|
+
@overload # type: ignore[override]
|
|
804
|
+
def get_paginator( # type: ignore[override]
|
|
802
805
|
self, operation_name: Literal["describe_addon_versions"]
|
|
803
806
|
) -> DescribeAddonVersionsPaginator:
|
|
804
807
|
"""
|
|
@@ -808,8 +811,19 @@ class EKSClient(BaseClient):
|
|
|
808
811
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
809
812
|
"""
|
|
810
813
|
|
|
811
|
-
@overload
|
|
812
|
-
def get_paginator(
|
|
814
|
+
@overload # type: ignore[override]
|
|
815
|
+
def get_paginator( # type: ignore[override]
|
|
816
|
+
self, operation_name: Literal["describe_cluster_versions"]
|
|
817
|
+
) -> DescribeClusterVersionsPaginator:
|
|
818
|
+
"""
|
|
819
|
+
Create a paginator for an operation.
|
|
820
|
+
|
|
821
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
822
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
823
|
+
"""
|
|
824
|
+
|
|
825
|
+
@overload # type: ignore[override]
|
|
826
|
+
def get_paginator( # type: ignore[override]
|
|
813
827
|
self, operation_name: Literal["list_access_entries"]
|
|
814
828
|
) -> ListAccessEntriesPaginator:
|
|
815
829
|
"""
|
|
@@ -819,8 +833,8 @@ class EKSClient(BaseClient):
|
|
|
819
833
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
820
834
|
"""
|
|
821
835
|
|
|
822
|
-
@overload
|
|
823
|
-
def get_paginator(
|
|
836
|
+
@overload # type: ignore[override]
|
|
837
|
+
def get_paginator( # type: ignore[override]
|
|
824
838
|
self, operation_name: Literal["list_access_policies"]
|
|
825
839
|
) -> ListAccessPoliciesPaginator:
|
|
826
840
|
"""
|
|
@@ -830,8 +844,10 @@ class EKSClient(BaseClient):
|
|
|
830
844
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
831
845
|
"""
|
|
832
846
|
|
|
833
|
-
@overload
|
|
834
|
-
def get_paginator(
|
|
847
|
+
@overload # type: ignore[override]
|
|
848
|
+
def get_paginator( # type: ignore[override]
|
|
849
|
+
self, operation_name: Literal["list_addons"]
|
|
850
|
+
) -> ListAddonsPaginator:
|
|
835
851
|
"""
|
|
836
852
|
Create a paginator for an operation.
|
|
837
853
|
|
|
@@ -839,8 +855,8 @@ class EKSClient(BaseClient):
|
|
|
839
855
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
840
856
|
"""
|
|
841
857
|
|
|
842
|
-
@overload
|
|
843
|
-
def get_paginator(
|
|
858
|
+
@overload # type: ignore[override]
|
|
859
|
+
def get_paginator( # type: ignore[override]
|
|
844
860
|
self, operation_name: Literal["list_associated_access_policies"]
|
|
845
861
|
) -> ListAssociatedAccessPoliciesPaginator:
|
|
846
862
|
"""
|
|
@@ -850,8 +866,10 @@ class EKSClient(BaseClient):
|
|
|
850
866
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
851
867
|
"""
|
|
852
868
|
|
|
853
|
-
@overload
|
|
854
|
-
def get_paginator(
|
|
869
|
+
@overload # type: ignore[override]
|
|
870
|
+
def get_paginator( # type: ignore[override]
|
|
871
|
+
self, operation_name: Literal["list_clusters"]
|
|
872
|
+
) -> ListClustersPaginator:
|
|
855
873
|
"""
|
|
856
874
|
Create a paginator for an operation.
|
|
857
875
|
|
|
@@ -859,8 +877,8 @@ class EKSClient(BaseClient):
|
|
|
859
877
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
860
878
|
"""
|
|
861
879
|
|
|
862
|
-
@overload
|
|
863
|
-
def get_paginator(
|
|
880
|
+
@overload # type: ignore[override]
|
|
881
|
+
def get_paginator( # type: ignore[override]
|
|
864
882
|
self, operation_name: Literal["list_eks_anywhere_subscriptions"]
|
|
865
883
|
) -> ListEksAnywhereSubscriptionsPaginator:
|
|
866
884
|
"""
|
|
@@ -870,8 +888,8 @@ class EKSClient(BaseClient):
|
|
|
870
888
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
871
889
|
"""
|
|
872
890
|
|
|
873
|
-
@overload
|
|
874
|
-
def get_paginator(
|
|
891
|
+
@overload # type: ignore[override]
|
|
892
|
+
def get_paginator( # type: ignore[override]
|
|
875
893
|
self, operation_name: Literal["list_fargate_profiles"]
|
|
876
894
|
) -> ListFargateProfilesPaginator:
|
|
877
895
|
"""
|
|
@@ -881,8 +899,8 @@ class EKSClient(BaseClient):
|
|
|
881
899
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
882
900
|
"""
|
|
883
901
|
|
|
884
|
-
@overload
|
|
885
|
-
def get_paginator(
|
|
902
|
+
@overload # type: ignore[override]
|
|
903
|
+
def get_paginator( # type: ignore[override]
|
|
886
904
|
self, operation_name: Literal["list_identity_provider_configs"]
|
|
887
905
|
) -> ListIdentityProviderConfigsPaginator:
|
|
888
906
|
"""
|
|
@@ -892,8 +910,10 @@ class EKSClient(BaseClient):
|
|
|
892
910
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
893
911
|
"""
|
|
894
912
|
|
|
895
|
-
@overload
|
|
896
|
-
def get_paginator(
|
|
913
|
+
@overload # type: ignore[override]
|
|
914
|
+
def get_paginator( # type: ignore[override]
|
|
915
|
+
self, operation_name: Literal["list_insights"]
|
|
916
|
+
) -> ListInsightsPaginator:
|
|
897
917
|
"""
|
|
898
918
|
Create a paginator for an operation.
|
|
899
919
|
|
|
@@ -901,8 +921,10 @@ class EKSClient(BaseClient):
|
|
|
901
921
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
902
922
|
"""
|
|
903
923
|
|
|
904
|
-
@overload
|
|
905
|
-
def get_paginator(
|
|
924
|
+
@overload # type: ignore[override]
|
|
925
|
+
def get_paginator( # type: ignore[override]
|
|
926
|
+
self, operation_name: Literal["list_nodegroups"]
|
|
927
|
+
) -> ListNodegroupsPaginator:
|
|
906
928
|
"""
|
|
907
929
|
Create a paginator for an operation.
|
|
908
930
|
|
|
@@ -910,8 +932,8 @@ class EKSClient(BaseClient):
|
|
|
910
932
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
911
933
|
"""
|
|
912
934
|
|
|
913
|
-
@overload
|
|
914
|
-
def get_paginator(
|
|
935
|
+
@overload # type: ignore[override]
|
|
936
|
+
def get_paginator( # type: ignore[override]
|
|
915
937
|
self, operation_name: Literal["list_pod_identity_associations"]
|
|
916
938
|
) -> ListPodIdentityAssociationsPaginator:
|
|
917
939
|
"""
|
|
@@ -921,8 +943,10 @@ class EKSClient(BaseClient):
|
|
|
921
943
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
922
944
|
"""
|
|
923
945
|
|
|
924
|
-
@overload
|
|
925
|
-
def get_paginator(
|
|
946
|
+
@overload # type: ignore[override]
|
|
947
|
+
def get_paginator( # type: ignore[override]
|
|
948
|
+
self, operation_name: Literal["list_updates"]
|
|
949
|
+
) -> ListUpdatesPaginator:
|
|
926
950
|
"""
|
|
927
951
|
Create a paginator for an operation.
|
|
928
952
|
|
|
@@ -930,8 +954,10 @@ class EKSClient(BaseClient):
|
|
|
930
954
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
931
955
|
"""
|
|
932
956
|
|
|
933
|
-
@overload
|
|
934
|
-
def get_waiter(
|
|
957
|
+
@overload # type: ignore[override]
|
|
958
|
+
def get_waiter( # type: ignore[override]
|
|
959
|
+
self, waiter_name: Literal["addon_active"]
|
|
960
|
+
) -> AddonActiveWaiter:
|
|
935
961
|
"""
|
|
936
962
|
Returns an object that can wait for some condition.
|
|
937
963
|
|
|
@@ -939,8 +965,10 @@ class EKSClient(BaseClient):
|
|
|
939
965
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_waiter)
|
|
940
966
|
"""
|
|
941
967
|
|
|
942
|
-
@overload
|
|
943
|
-
def get_waiter(
|
|
968
|
+
@overload # type: ignore[override]
|
|
969
|
+
def get_waiter( # type: ignore[override]
|
|
970
|
+
self, waiter_name: Literal["addon_deleted"]
|
|
971
|
+
) -> AddonDeletedWaiter:
|
|
944
972
|
"""
|
|
945
973
|
Returns an object that can wait for some condition.
|
|
946
974
|
|
|
@@ -948,8 +976,10 @@ class EKSClient(BaseClient):
|
|
|
948
976
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_waiter)
|
|
949
977
|
"""
|
|
950
978
|
|
|
951
|
-
@overload
|
|
952
|
-
def get_waiter(
|
|
979
|
+
@overload # type: ignore[override]
|
|
980
|
+
def get_waiter( # type: ignore[override]
|
|
981
|
+
self, waiter_name: Literal["cluster_active"]
|
|
982
|
+
) -> ClusterActiveWaiter:
|
|
953
983
|
"""
|
|
954
984
|
Returns an object that can wait for some condition.
|
|
955
985
|
|
|
@@ -957,8 +987,10 @@ class EKSClient(BaseClient):
|
|
|
957
987
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_waiter)
|
|
958
988
|
"""
|
|
959
989
|
|
|
960
|
-
@overload
|
|
961
|
-
def get_waiter(
|
|
990
|
+
@overload # type: ignore[override]
|
|
991
|
+
def get_waiter( # type: ignore[override]
|
|
992
|
+
self, waiter_name: Literal["cluster_deleted"]
|
|
993
|
+
) -> ClusterDeletedWaiter:
|
|
962
994
|
"""
|
|
963
995
|
Returns an object that can wait for some condition.
|
|
964
996
|
|
|
@@ -966,8 +998,8 @@ class EKSClient(BaseClient):
|
|
|
966
998
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_waiter)
|
|
967
999
|
"""
|
|
968
1000
|
|
|
969
|
-
@overload
|
|
970
|
-
def get_waiter(
|
|
1001
|
+
@overload # type: ignore[override]
|
|
1002
|
+
def get_waiter( # type: ignore[override]
|
|
971
1003
|
self, waiter_name: Literal["fargate_profile_active"]
|
|
972
1004
|
) -> FargateProfileActiveWaiter:
|
|
973
1005
|
"""
|
|
@@ -977,8 +1009,8 @@ class EKSClient(BaseClient):
|
|
|
977
1009
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_waiter)
|
|
978
1010
|
"""
|
|
979
1011
|
|
|
980
|
-
@overload
|
|
981
|
-
def get_waiter(
|
|
1012
|
+
@overload # type: ignore[override]
|
|
1013
|
+
def get_waiter( # type: ignore[override]
|
|
982
1014
|
self, waiter_name: Literal["fargate_profile_deleted"]
|
|
983
1015
|
) -> FargateProfileDeletedWaiter:
|
|
984
1016
|
"""
|
|
@@ -988,8 +1020,10 @@ class EKSClient(BaseClient):
|
|
|
988
1020
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_waiter)
|
|
989
1021
|
"""
|
|
990
1022
|
|
|
991
|
-
@overload
|
|
992
|
-
def get_waiter(
|
|
1023
|
+
@overload # type: ignore[override]
|
|
1024
|
+
def get_waiter( # type: ignore[override]
|
|
1025
|
+
self, waiter_name: Literal["nodegroup_active"]
|
|
1026
|
+
) -> NodegroupActiveWaiter:
|
|
993
1027
|
"""
|
|
994
1028
|
Returns an object that can wait for some condition.
|
|
995
1029
|
|
|
@@ -997,8 +1031,10 @@ class EKSClient(BaseClient):
|
|
|
997
1031
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_waiter)
|
|
998
1032
|
"""
|
|
999
1033
|
|
|
1000
|
-
@overload
|
|
1001
|
-
def get_waiter(
|
|
1034
|
+
@overload # type: ignore[override]
|
|
1035
|
+
def get_waiter( # type: ignore[override]
|
|
1036
|
+
self, waiter_name: Literal["nodegroup_deleted"]
|
|
1037
|
+
) -> NodegroupDeletedWaiter:
|
|
1002
1038
|
"""
|
|
1003
1039
|
Returns an object that can wait for some condition.
|
|
1004
1040
|
|