mypy-boto3-eks 1.34.159__py3-none-any.whl → 1.35.45__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 +1 -0
- mypy_boto3_eks/__main__.py +4 -4
- mypy_boto3_eks/client.py +132 -262
- mypy_boto3_eks/client.pyi +131 -262
- mypy_boto3_eks/literals.py +9 -2
- mypy_boto3_eks/literals.pyi +7 -2
- mypy_boto3_eks/paginator.py +45 -43
- mypy_boto3_eks/paginator.pyi +43 -56
- mypy_boto3_eks/type_defs.py +57 -59
- mypy_boto3_eks/type_defs.pyi +56 -59
- mypy_boto3_eks/version.py +1 -1
- mypy_boto3_eks/waiter.py +26 -17
- mypy_boto3_eks/waiter.pyi +25 -25
- {mypy_boto3_eks-1.34.159.dist-info → mypy_boto3_eks-1.35.45.dist-info}/METADATA +7 -8
- mypy_boto3_eks-1.35.45.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.34.159.dist-info → mypy_boto3_eks-1.35.45.dist-info}/WHEEL +1 -1
- mypy_boto3_eks-1.34.159.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.34.159.dist-info → mypy_boto3_eks-1.35.45.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.34.159.dist-info → mypy_boto3_eks-1.35.45.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/waiter.pyi
CHANGED
|
@@ -34,9 +34,25 @@ Usage::
|
|
|
34
34
|
```
|
|
35
35
|
"""
|
|
36
36
|
|
|
37
|
+
import sys
|
|
38
|
+
|
|
37
39
|
from botocore.waiter import Waiter
|
|
38
40
|
|
|
39
|
-
from .type_defs import
|
|
41
|
+
from .type_defs import (
|
|
42
|
+
DescribeAddonRequestAddonActiveWaitTypeDef,
|
|
43
|
+
DescribeAddonRequestAddonDeletedWaitTypeDef,
|
|
44
|
+
DescribeClusterRequestClusterActiveWaitTypeDef,
|
|
45
|
+
DescribeClusterRequestClusterDeletedWaitTypeDef,
|
|
46
|
+
DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef,
|
|
47
|
+
DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef,
|
|
48
|
+
DescribeNodegroupRequestNodegroupActiveWaitTypeDef,
|
|
49
|
+
DescribeNodegroupRequestNodegroupDeletedWaitTypeDef,
|
|
50
|
+
)
|
|
51
|
+
|
|
52
|
+
if sys.version_info >= (3, 12):
|
|
53
|
+
from typing import Unpack
|
|
54
|
+
else:
|
|
55
|
+
from typing_extensions import Unpack
|
|
40
56
|
|
|
41
57
|
__all__ = (
|
|
42
58
|
"AddonActiveWaiter",
|
|
@@ -54,10 +70,7 @@ class AddonActiveWaiter(Waiter):
|
|
|
54
70
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonActive)
|
|
55
71
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
56
72
|
"""
|
|
57
|
-
|
|
58
|
-
def wait(
|
|
59
|
-
self, *, clusterName: str, addonName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
60
|
-
) -> None:
|
|
73
|
+
def wait(self, **kwargs: Unpack[DescribeAddonRequestAddonActiveWaitTypeDef]) -> None:
|
|
61
74
|
"""
|
|
62
75
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonActive.wait)
|
|
63
76
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
@@ -68,10 +81,7 @@ class AddonDeletedWaiter(Waiter):
|
|
|
68
81
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonDeleted)
|
|
69
82
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
70
83
|
"""
|
|
71
|
-
|
|
72
|
-
def wait(
|
|
73
|
-
self, *, clusterName: str, addonName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
74
|
-
) -> None:
|
|
84
|
+
def wait(self, **kwargs: Unpack[DescribeAddonRequestAddonDeletedWaitTypeDef]) -> None:
|
|
75
85
|
"""
|
|
76
86
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonDeleted.wait)
|
|
77
87
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
@@ -82,8 +92,7 @@ class ClusterActiveWaiter(Waiter):
|
|
|
82
92
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterActive)
|
|
83
93
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
84
94
|
"""
|
|
85
|
-
|
|
86
|
-
def wait(self, *, name: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
|
|
95
|
+
def wait(self, **kwargs: Unpack[DescribeClusterRequestClusterActiveWaitTypeDef]) -> None:
|
|
87
96
|
"""
|
|
88
97
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterActive.wait)
|
|
89
98
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
@@ -94,8 +103,7 @@ class ClusterDeletedWaiter(Waiter):
|
|
|
94
103
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterDeleted)
|
|
95
104
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
96
105
|
"""
|
|
97
|
-
|
|
98
|
-
def wait(self, *, name: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
|
|
106
|
+
def wait(self, **kwargs: Unpack[DescribeClusterRequestClusterDeletedWaitTypeDef]) -> None:
|
|
99
107
|
"""
|
|
100
108
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterDeleted.wait)
|
|
101
109
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
@@ -106,9 +114,8 @@ class FargateProfileActiveWaiter(Waiter):
|
|
|
106
114
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileActive)
|
|
107
115
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofileactivewaiter)
|
|
108
116
|
"""
|
|
109
|
-
|
|
110
117
|
def wait(
|
|
111
|
-
self,
|
|
118
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef]
|
|
112
119
|
) -> None:
|
|
113
120
|
"""
|
|
114
121
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileActive.wait)
|
|
@@ -120,9 +127,8 @@ class FargateProfileDeletedWaiter(Waiter):
|
|
|
120
127
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileDeleted)
|
|
121
128
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofiledeletedwaiter)
|
|
122
129
|
"""
|
|
123
|
-
|
|
124
130
|
def wait(
|
|
125
|
-
self,
|
|
131
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef]
|
|
126
132
|
) -> None:
|
|
127
133
|
"""
|
|
128
134
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileDeleted.wait)
|
|
@@ -134,10 +140,7 @@ class NodegroupActiveWaiter(Waiter):
|
|
|
134
140
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupActive)
|
|
135
141
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
136
142
|
"""
|
|
137
|
-
|
|
138
|
-
def wait(
|
|
139
|
-
self, *, clusterName: str, nodegroupName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
140
|
-
) -> None:
|
|
143
|
+
def wait(self, **kwargs: Unpack[DescribeNodegroupRequestNodegroupActiveWaitTypeDef]) -> None:
|
|
141
144
|
"""
|
|
142
145
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupActive.wait)
|
|
143
146
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
@@ -148,10 +151,7 @@ class NodegroupDeletedWaiter(Waiter):
|
|
|
148
151
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupDeleted)
|
|
149
152
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
150
153
|
"""
|
|
151
|
-
|
|
152
|
-
def wait(
|
|
153
|
-
self, *, clusterName: str, nodegroupName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
154
|
-
) -> None:
|
|
154
|
+
def wait(self, **kwargs: Unpack[DescribeNodegroupRequestNodegroupDeletedWaitTypeDef]) -> None:
|
|
155
155
|
"""
|
|
156
156
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupDeleted.wait)
|
|
157
157
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-eks
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3.EKS 1.
|
|
3
|
+
Version: 1.35.45
|
|
4
|
+
Summary: Type annotations for boto3.EKS 1.35.45 service generated with mypy-boto3-builder 8.1.2
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.EKS 1.
|
|
46
|
+
[boto3.EKS 1.35.45](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS)
|
|
47
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated by
|
|
55
|
-
[mypy-boto3-builder
|
|
55
|
+
[mypy-boto3-builder 8.1.2](https://github.com/youtype/mypy_boto3_builder).
|
|
56
56
|
|
|
57
57
|
More information can be found on
|
|
58
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -231,7 +231,7 @@ should work.
|
|
|
231
231
|
- Install `boto3-stubs[eks]` in your environment:
|
|
232
232
|
|
|
233
233
|
```bash
|
|
234
|
-
python -m pip install 'boto3-stubs[eks]'
|
|
234
|
+
python -m pip install 'boto3-stubs[eks]'
|
|
235
235
|
```
|
|
236
236
|
|
|
237
237
|
Type checking should now work. No explicit type annotations required, write
|
|
@@ -248,7 +248,7 @@ your `boto3` code as usual.
|
|
|
248
248
|
python -m pip install 'boto3-stubs[eks]'
|
|
249
249
|
```
|
|
250
250
|
|
|
251
|
-
Optionally, you can install `boto3-stubs` to `typings`
|
|
251
|
+
Optionally, you can install `boto3-stubs` to `typings` directory.
|
|
252
252
|
|
|
253
253
|
Type checking should now work. No explicit type annotations required, write
|
|
254
254
|
your `boto3` code as usual.
|
|
@@ -422,8 +422,7 @@ updates. It delivers drop-in type annotations for you and makes sure that:
|
|
|
422
422
|
annotations extracted from `botocore` schemas.
|
|
423
423
|
- Type annotations include up-to-date documentation.
|
|
424
424
|
- Link to documentation is provided for every method.
|
|
425
|
-
- Code is processed by [
|
|
426
|
-
[isort](https://github.com/PyCQA/isort) for readability.
|
|
425
|
+
- Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.
|
|
427
426
|
|
|
428
427
|
<a id="what's-new"></a>
|
|
429
428
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_eks/__init__.py,sha256=ftYoSg8t2HbS5n_Th10welexqH1s0B5P6EUTOPQM49A,4712
|
|
2
|
+
mypy_boto3_eks/__init__.pyi,sha256=E0bo5I6kWoDlOCMzx0dtxdOWp03U82Zv5m7lkQCqFaw,4711
|
|
3
|
+
mypy_boto3_eks/__main__.py,sha256=8zTa1GpWY8u64_XiZI67dQPx4R04tfdYLzb3U3x7A_o,902
|
|
4
|
+
mypy_boto3_eks/client.py,sha256=05BuVPBV_WUlRFNwg7mY_o1bG64jdZdlyCx3Ge4RMY0,47280
|
|
5
|
+
mypy_boto3_eks/client.pyi,sha256=KtumDlxwy0T5aJtu0CE-98aQEu5HqXUgqCpCCAIehJk,47276
|
|
6
|
+
mypy_boto3_eks/literals.py,sha256=z-22PKXYKKg45G8Wj3TdWDvsbUDa31oM_bbv9Aiz-EM,18307
|
|
7
|
+
mypy_boto3_eks/literals.pyi,sha256=8C-yjtM_p3HyQLq6EyQYfOUt-hX7mZ692IGgBikcTOE,18305
|
|
8
|
+
mypy_boto3_eks/paginator.py,sha256=8zV_QP1OHRDgo2SbSoUcyEzQsMEI70z0uE_ITNjwIH4,15859
|
|
9
|
+
mypy_boto3_eks/paginator.pyi,sha256=auOm3WVXFBeBM3WSZgKaTP6WriOosWYW5fbaMnEefmg,15830
|
|
10
|
+
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_eks/type_defs.py,sha256=u-EZQQEarwUanib4cdfC7t_Pjnli34FPXKn-36eeECo,65850
|
|
12
|
+
mypy_boto3_eks/type_defs.pyi,sha256=iiMWmKMzkPHxVgV0NsGwScsV5arp2hbog2V3KUwXZX0,65849
|
|
13
|
+
mypy_boto3_eks/version.py,sha256=Q953J1rS2sNa-Bck0IEZaV0xuA-p688pzKZk6S_Mgk0,62
|
|
14
|
+
mypy_boto3_eks/waiter.py,sha256=e8aMOT4WbPNTCuACUbdJbMHCQJJZPy4iKWGQoUkQuZU,8142
|
|
15
|
+
mypy_boto3_eks/waiter.pyi,sha256=2LqlAM_Ej2COESZHu1kT4rrBQig-pD9_MS76a8BzA90,8125
|
|
16
|
+
mypy_boto3_eks-1.35.45.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_eks-1.35.45.dist-info/METADATA,sha256=oXitSTSJWxBTBHa8szUoHMCtvg91CFKrL8evGCVZ7so,15575
|
|
18
|
+
mypy_boto3_eks-1.35.45.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
19
|
+
mypy_boto3_eks-1.35.45.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
+
mypy_boto3_eks-1.35.45.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_eks/__init__.py,sha256=E0bo5I6kWoDlOCMzx0dtxdOWp03U82Zv5m7lkQCqFaw,4711
|
|
2
|
-
mypy_boto3_eks/__init__.pyi,sha256=E0bo5I6kWoDlOCMzx0dtxdOWp03U82Zv5m7lkQCqFaw,4711
|
|
3
|
-
mypy_boto3_eks/__main__.py,sha256=SDOmlhmUsHC-MRPBEZV3GYbjf3U153AX5uLTIcQyLUc,906
|
|
4
|
-
mypy_boto3_eks/client.py,sha256=YeDAB77sjnIrK378ZdoYXwwwd4r-ziN2ukUaj6OG4Hw,49604
|
|
5
|
-
mypy_boto3_eks/client.pyi,sha256=astjZIOIwsevlLHC5frD8BpuL5_03jBsAIXR60Hhqek,49601
|
|
6
|
-
mypy_boto3_eks/literals.py,sha256=IFRe62L7B7MIu2hFOn1y7ekAIc4ywjszZKCpxaiedwM,18183
|
|
7
|
-
mypy_boto3_eks/literals.pyi,sha256=IFRe62L7B7MIu2hFOn1y7ekAIc4ywjszZKCpxaiedwM,18183
|
|
8
|
-
mypy_boto3_eks/paginator.py,sha256=ptf2OcGXBuVX_-zrJ2f29-J_erT3gw4pO2M8AXAj5_o,15318
|
|
9
|
-
mypy_boto3_eks/paginator.pyi,sha256=XcevxKQBwCxr_KwAaoPOUelzSTyi_2YyeWGx4No2aAU,15304
|
|
10
|
-
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_eks/type_defs.py,sha256=C3j3FSPIeT45P22WyqP3Yf4ioaXcKDuEQzP8G1LnygY,65941
|
|
12
|
-
mypy_boto3_eks/type_defs.pyi,sha256=C3j3FSPIeT45P22WyqP3Yf4ioaXcKDuEQzP8G1LnygY,65941
|
|
13
|
-
mypy_boto3_eks/version.py,sha256=2KN3bkItJwgBiGLUT3_p3erMNiQbyFDC7mvjmLhRjaU,63
|
|
14
|
-
mypy_boto3_eks/waiter.py,sha256=l2bUEk99tON1KtebRkH1naSDvzdKHt_IMvGnQW6qxR8,7687
|
|
15
|
-
mypy_boto3_eks/waiter.pyi,sha256=JCEUhwc2KS5UvHUoRYmySgrbIRGtXdDznPK37A-_yAI,7679
|
|
16
|
-
mypy_boto3_eks-1.34.159.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_eks-1.34.159.dist-info/METADATA,sha256=qkFXkhBWUygNpYPPIUEIP46keQlFAD6OMySeaWpNuQQ,15625
|
|
18
|
-
mypy_boto3_eks-1.34.159.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
19
|
-
mypy_boto3_eks-1.34.159.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
-
mypy_boto3_eks-1.34.159.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|