mypy-boto3-eks 1.35.0__py3-none-any.whl → 1.35.57__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 +18 -8
- mypy_boto3_eks/literals.pyi +16 -8
- mypy_boto3_eks/paginator.py +46 -44
- mypy_boto3_eks/paginator.pyi +44 -57
- mypy_boto3_eks/type_defs.py +1422 -1765
- mypy_boto3_eks/type_defs.pyi +1224 -1778
- 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.35.0.dist-info → mypy_boto3_eks-1.35.57.dist-info}/METADATA +9 -9
- mypy_boto3_eks-1.35.57.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.35.57.dist-info}/WHEEL +1 -1
- mypy_boto3_eks-1.35.0.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.35.57.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.35.57.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/version.py
CHANGED
mypy_boto3_eks/waiter.py
CHANGED
|
@@ -34,9 +34,26 @@ 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
|
|
56
|
+
|
|
40
57
|
|
|
41
58
|
__all__ = (
|
|
42
59
|
"AddonActiveWaiter",
|
|
@@ -56,9 +73,7 @@ class AddonActiveWaiter(Waiter):
|
|
|
56
73
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
57
74
|
"""
|
|
58
75
|
|
|
59
|
-
def wait(
|
|
60
|
-
self, *, clusterName: str, addonName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
61
|
-
) -> None:
|
|
76
|
+
def wait(self, **kwargs: Unpack[DescribeAddonRequestAddonActiveWaitTypeDef]) -> None:
|
|
62
77
|
"""
|
|
63
78
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonActive.wait)
|
|
64
79
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
@@ -71,9 +86,7 @@ class AddonDeletedWaiter(Waiter):
|
|
|
71
86
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
72
87
|
"""
|
|
73
88
|
|
|
74
|
-
def wait(
|
|
75
|
-
self, *, clusterName: str, addonName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
76
|
-
) -> None:
|
|
89
|
+
def wait(self, **kwargs: Unpack[DescribeAddonRequestAddonDeletedWaitTypeDef]) -> None:
|
|
77
90
|
"""
|
|
78
91
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonDeleted.wait)
|
|
79
92
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
@@ -86,7 +99,7 @@ class ClusterActiveWaiter(Waiter):
|
|
|
86
99
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
87
100
|
"""
|
|
88
101
|
|
|
89
|
-
def wait(self,
|
|
102
|
+
def wait(self, **kwargs: Unpack[DescribeClusterRequestClusterActiveWaitTypeDef]) -> None:
|
|
90
103
|
"""
|
|
91
104
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterActive.wait)
|
|
92
105
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
@@ -99,7 +112,7 @@ class ClusterDeletedWaiter(Waiter):
|
|
|
99
112
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
100
113
|
"""
|
|
101
114
|
|
|
102
|
-
def wait(self,
|
|
115
|
+
def wait(self, **kwargs: Unpack[DescribeClusterRequestClusterDeletedWaitTypeDef]) -> None:
|
|
103
116
|
"""
|
|
104
117
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterDeleted.wait)
|
|
105
118
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
@@ -113,7 +126,7 @@ class FargateProfileActiveWaiter(Waiter):
|
|
|
113
126
|
"""
|
|
114
127
|
|
|
115
128
|
def wait(
|
|
116
|
-
self,
|
|
129
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef]
|
|
117
130
|
) -> None:
|
|
118
131
|
"""
|
|
119
132
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileActive.wait)
|
|
@@ -128,7 +141,7 @@ class FargateProfileDeletedWaiter(Waiter):
|
|
|
128
141
|
"""
|
|
129
142
|
|
|
130
143
|
def wait(
|
|
131
|
-
self,
|
|
144
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef]
|
|
132
145
|
) -> None:
|
|
133
146
|
"""
|
|
134
147
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileDeleted.wait)
|
|
@@ -142,9 +155,7 @@ class NodegroupActiveWaiter(Waiter):
|
|
|
142
155
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
143
156
|
"""
|
|
144
157
|
|
|
145
|
-
def wait(
|
|
146
|
-
self, *, clusterName: str, nodegroupName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
147
|
-
) -> None:
|
|
158
|
+
def wait(self, **kwargs: Unpack[DescribeNodegroupRequestNodegroupActiveWaitTypeDef]) -> None:
|
|
148
159
|
"""
|
|
149
160
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupActive.wait)
|
|
150
161
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
@@ -157,9 +168,7 @@ class NodegroupDeletedWaiter(Waiter):
|
|
|
157
168
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
158
169
|
"""
|
|
159
170
|
|
|
160
|
-
def wait(
|
|
161
|
-
self, *, clusterName: str, nodegroupName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
162
|
-
) -> None:
|
|
171
|
+
def wait(self, **kwargs: Unpack[DescribeNodegroupRequestNodegroupDeletedWaitTypeDef]) -> None:
|
|
163
172
|
"""
|
|
164
173
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupDeleted.wait)
|
|
165
174
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
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.35.
|
|
4
|
-
Summary: Type annotations for boto3.EKS 1.35.
|
|
3
|
+
Version: 1.35.57
|
|
4
|
+
Summary: Type annotations for boto3.EKS 1.35.57 service generated with mypy-boto3-builder 8.2.1
|
|
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
|
|
@@ -23,6 +23,7 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.11
|
|
24
24
|
Classifier: Programming Language :: Python :: 3.12
|
|
25
25
|
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
26
27
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
27
28
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
28
29
|
Classifier: Typing :: Stubs Only
|
|
@@ -43,7 +44,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
43
44
|

|
|
44
45
|
|
|
45
46
|
Type annotations for
|
|
46
|
-
[boto3.EKS 1.35.
|
|
47
|
+
[boto3.EKS 1.35.57](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS)
|
|
47
48
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
49
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
50
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +53,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
53
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
54
|
|
|
54
55
|
Generated by
|
|
55
|
-
[mypy-boto3-builder
|
|
56
|
+
[mypy-boto3-builder 8.2.1](https://github.com/youtype/mypy_boto3_builder).
|
|
56
57
|
|
|
57
58
|
More information can be found on
|
|
58
59
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -161,7 +162,7 @@ annotations required, write your `boto3` code as usual.
|
|
|
161
162
|
Install `boto3-stubs-lite[eks]` in your environment:
|
|
162
163
|
|
|
163
164
|
```bash
|
|
164
|
-
python -m pip install 'boto3-stubs-lite[eks]'
|
|
165
|
+
python -m pip install 'boto3-stubs-lite[eks]'
|
|
165
166
|
```
|
|
166
167
|
|
|
167
168
|
Both type checking and code completion should now work. Explicit type
|
|
@@ -231,7 +232,7 @@ should work.
|
|
|
231
232
|
- Install `boto3-stubs[eks]` in your environment:
|
|
232
233
|
|
|
233
234
|
```bash
|
|
234
|
-
python -m pip install 'boto3-stubs[eks]'
|
|
235
|
+
python -m pip install 'boto3-stubs[eks]'
|
|
235
236
|
```
|
|
236
237
|
|
|
237
238
|
Type checking should now work. No explicit type annotations required, write
|
|
@@ -248,7 +249,7 @@ your `boto3` code as usual.
|
|
|
248
249
|
python -m pip install 'boto3-stubs[eks]'
|
|
249
250
|
```
|
|
250
251
|
|
|
251
|
-
Optionally, you can install `boto3-stubs` to `typings`
|
|
252
|
+
Optionally, you can install `boto3-stubs` to `typings` directory.
|
|
252
253
|
|
|
253
254
|
Type checking should now work. No explicit type annotations required, write
|
|
254
255
|
your `boto3` code as usual.
|
|
@@ -422,8 +423,7 @@ updates. It delivers drop-in type annotations for you and makes sure that:
|
|
|
422
423
|
annotations extracted from `botocore` schemas.
|
|
423
424
|
- Type annotations include up-to-date documentation.
|
|
424
425
|
- Link to documentation is provided for every method.
|
|
425
|
-
- Code is processed by [
|
|
426
|
-
[isort](https://github.com/PyCQA/isort) for readability.
|
|
426
|
+
- Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.
|
|
427
427
|
|
|
428
428
|
<a id="what's-new"></a>
|
|
429
429
|
|
|
@@ -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=EqiaHLhx4dHxqI7wr5osAJw2s2BYlST-jZ0jkmcajR4,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=Bx18__7ItlKa9dfmz6JhtdK64KZ86UQfRAXbpqAgM_g,18380
|
|
7
|
+
mypy_boto3_eks/literals.pyi,sha256=XwP31GBnen8x8-N6kKtt7zLuMyZ3Fa1EjVJDF0D_nnM,18378
|
|
8
|
+
mypy_boto3_eks/paginator.py,sha256=3wgjSh8wiXgJS7H4DE3Qs_85t0UdRcOGehvxLyZJJ74,15859
|
|
9
|
+
mypy_boto3_eks/paginator.pyi,sha256=2KPvpup2wh4PMZhsCAKJ3elvgSsGlPyI0LE0DVR28SU,15830
|
|
10
|
+
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_eks/type_defs.py,sha256=L_48Efemg1e3wJxAH80-66kh9igfmFQae36scfiMHXk,52146
|
|
12
|
+
mypy_boto3_eks/type_defs.pyi,sha256=ICxkyNHgSRD-zTl78DZl-cu_hop9khJS4p8ep0bnHRw,51935
|
|
13
|
+
mypy_boto3_eks/version.py,sha256=kQVSRKdRJ8KDg2HO747s8W7KhacttdsPNONwO7M2VW8,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.57.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_eks-1.35.57.dist-info/METADATA,sha256=D2bRVL9Q0M6yBn1TKOnYBj8nhfCIZk-CnN9zP5AxbqU,15625
|
|
18
|
+
mypy_boto3_eks-1.35.57.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
19
|
+
mypy_boto3_eks-1.35.57.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
+
mypy_boto3_eks-1.35.57.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=Koa3jZw0ZsTazsHrEqgi8KBcdTXlk-0xlUzuuEJtueg,900
|
|
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=LGeN8DOPs0tRcJcxZVxCtqSh0iyZT7lFggGF3KkSqhA,61
|
|
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.35.0.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_eks-1.35.0.dist-info/METADATA,sha256=5RP_kMUlTrFBJtoNODtS5qKyJVzq5JPKtnY_-lR9giI,15619
|
|
18
|
-
mypy_boto3_eks-1.35.0.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
|
19
|
-
mypy_boto3_eks-1.35.0.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
-
mypy_boto3_eks-1.35.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|