mypy-boto3-eks 1.35.81__py3-none-any.whl → 1.35.86__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/__main__.py +8 -7
- mypy_boto3_eks/client.py +90 -78
- mypy_boto3_eks/client.pyi +90 -77
- mypy_boto3_eks/literals.py +2 -1
- mypy_boto3_eks/literals.pyi +2 -1
- mypy_boto3_eks/paginator.py +153 -87
- mypy_boto3_eks/paginator.pyi +141 -86
- mypy_boto3_eks/type_defs.py +125 -143
- mypy_boto3_eks/type_defs.pyi +123 -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.86.dist-info}/METADATA +6 -6
- mypy_boto3_eks-1.35.86.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.86.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.35.81.dist-info → mypy_boto3_eks-1.35.86.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.35.81.dist-info → mypy_boto3_eks-1.35.86.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/version.py
CHANGED
mypy_boto3_eks/waiter.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for eks service client waiters.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -36,19 +36,17 @@ Usage::
|
|
|
36
36
|
Copyright 2024 Vlad Emelianov
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
|
+
from __future__ import annotations
|
|
40
|
+
|
|
39
41
|
import sys
|
|
40
42
|
|
|
41
43
|
from botocore.waiter import Waiter
|
|
42
44
|
|
|
43
45
|
from .type_defs import (
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef,
|
|
49
|
-
DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef,
|
|
50
|
-
DescribeNodegroupRequestNodegroupActiveWaitTypeDef,
|
|
51
|
-
DescribeNodegroupRequestNodegroupDeletedWaitTypeDef,
|
|
46
|
+
DescribeAddonRequestWaitTypeDef,
|
|
47
|
+
DescribeClusterRequestWaitTypeDef,
|
|
48
|
+
DescribeFargateProfileRequestWaitTypeDef,
|
|
49
|
+
DescribeNodegroupRequestWaitTypeDef,
|
|
52
50
|
)
|
|
53
51
|
|
|
54
52
|
if sys.version_info >= (3, 12):
|
|
@@ -75,7 +73,9 @@ class AddonActiveWaiter(Waiter):
|
|
|
75
73
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
76
74
|
"""
|
|
77
75
|
|
|
78
|
-
def wait(
|
|
76
|
+
def wait( # type: ignore[override]
|
|
77
|
+
self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
|
|
78
|
+
) -> None:
|
|
79
79
|
"""
|
|
80
80
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive.wait)
|
|
81
81
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
@@ -88,7 +88,9 @@ class AddonDeletedWaiter(Waiter):
|
|
|
88
88
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
89
89
|
"""
|
|
90
90
|
|
|
91
|
-
def wait(
|
|
91
|
+
def wait( # type: ignore[override]
|
|
92
|
+
self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
|
|
93
|
+
) -> None:
|
|
92
94
|
"""
|
|
93
95
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted.wait)
|
|
94
96
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
@@ -101,7 +103,9 @@ class ClusterActiveWaiter(Waiter):
|
|
|
101
103
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
102
104
|
"""
|
|
103
105
|
|
|
104
|
-
def wait(
|
|
106
|
+
def wait( # type: ignore[override]
|
|
107
|
+
self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
|
|
108
|
+
) -> None:
|
|
105
109
|
"""
|
|
106
110
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive.wait)
|
|
107
111
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
@@ -114,7 +118,9 @@ class ClusterDeletedWaiter(Waiter):
|
|
|
114
118
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
115
119
|
"""
|
|
116
120
|
|
|
117
|
-
def wait(
|
|
121
|
+
def wait( # type: ignore[override]
|
|
122
|
+
self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
|
|
123
|
+
) -> None:
|
|
118
124
|
"""
|
|
119
125
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted.wait)
|
|
120
126
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
@@ -127,8 +133,8 @@ class FargateProfileActiveWaiter(Waiter):
|
|
|
127
133
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofileactivewaiter)
|
|
128
134
|
"""
|
|
129
135
|
|
|
130
|
-
def wait(
|
|
131
|
-
self, **kwargs: Unpack[
|
|
136
|
+
def wait( # type: ignore[override]
|
|
137
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
|
|
132
138
|
) -> None:
|
|
133
139
|
"""
|
|
134
140
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive.wait)
|
|
@@ -142,8 +148,8 @@ class FargateProfileDeletedWaiter(Waiter):
|
|
|
142
148
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofiledeletedwaiter)
|
|
143
149
|
"""
|
|
144
150
|
|
|
145
|
-
def wait(
|
|
146
|
-
self, **kwargs: Unpack[
|
|
151
|
+
def wait( # type: ignore[override]
|
|
152
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
|
|
147
153
|
) -> None:
|
|
148
154
|
"""
|
|
149
155
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted.wait)
|
|
@@ -157,7 +163,9 @@ class NodegroupActiveWaiter(Waiter):
|
|
|
157
163
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
158
164
|
"""
|
|
159
165
|
|
|
160
|
-
def wait(
|
|
166
|
+
def wait( # type: ignore[override]
|
|
167
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
|
|
168
|
+
) -> None:
|
|
161
169
|
"""
|
|
162
170
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive.wait)
|
|
163
171
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
@@ -170,7 +178,9 @@ class NodegroupDeletedWaiter(Waiter):
|
|
|
170
178
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
171
179
|
"""
|
|
172
180
|
|
|
173
|
-
def wait(
|
|
181
|
+
def wait( # type: ignore[override]
|
|
182
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
|
|
183
|
+
) -> None:
|
|
174
184
|
"""
|
|
175
185
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted.wait)
|
|
176
186
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
mypy_boto3_eks/waiter.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for eks service client waiters.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -36,19 +36,17 @@ Usage::
|
|
|
36
36
|
Copyright 2024 Vlad Emelianov
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
|
+
from __future__ import annotations
|
|
40
|
+
|
|
39
41
|
import sys
|
|
40
42
|
|
|
41
43
|
from botocore.waiter import Waiter
|
|
42
44
|
|
|
43
45
|
from .type_defs import (
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef,
|
|
49
|
-
DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef,
|
|
50
|
-
DescribeNodegroupRequestNodegroupActiveWaitTypeDef,
|
|
51
|
-
DescribeNodegroupRequestNodegroupDeletedWaitTypeDef,
|
|
46
|
+
DescribeAddonRequestWaitTypeDef,
|
|
47
|
+
DescribeClusterRequestWaitTypeDef,
|
|
48
|
+
DescribeFargateProfileRequestWaitTypeDef,
|
|
49
|
+
DescribeNodegroupRequestWaitTypeDef,
|
|
52
50
|
)
|
|
53
51
|
|
|
54
52
|
if sys.version_info >= (3, 12):
|
|
@@ -72,7 +70,9 @@ class AddonActiveWaiter(Waiter):
|
|
|
72
70
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive)
|
|
73
71
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
74
72
|
"""
|
|
75
|
-
def wait(
|
|
73
|
+
def wait( # type: ignore[override]
|
|
74
|
+
self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
|
|
75
|
+
) -> None:
|
|
76
76
|
"""
|
|
77
77
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive.wait)
|
|
78
78
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
@@ -83,7 +83,9 @@ class AddonDeletedWaiter(Waiter):
|
|
|
83
83
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted)
|
|
84
84
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
85
85
|
"""
|
|
86
|
-
def wait(
|
|
86
|
+
def wait( # type: ignore[override]
|
|
87
|
+
self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
|
|
88
|
+
) -> None:
|
|
87
89
|
"""
|
|
88
90
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted.wait)
|
|
89
91
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
@@ -94,7 +96,9 @@ class ClusterActiveWaiter(Waiter):
|
|
|
94
96
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive)
|
|
95
97
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
96
98
|
"""
|
|
97
|
-
def wait(
|
|
99
|
+
def wait( # type: ignore[override]
|
|
100
|
+
self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
|
|
101
|
+
) -> None:
|
|
98
102
|
"""
|
|
99
103
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive.wait)
|
|
100
104
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
@@ -105,7 +109,9 @@ class ClusterDeletedWaiter(Waiter):
|
|
|
105
109
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted)
|
|
106
110
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
107
111
|
"""
|
|
108
|
-
def wait(
|
|
112
|
+
def wait( # type: ignore[override]
|
|
113
|
+
self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
|
|
114
|
+
) -> None:
|
|
109
115
|
"""
|
|
110
116
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted.wait)
|
|
111
117
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
@@ -116,8 +122,8 @@ class FargateProfileActiveWaiter(Waiter):
|
|
|
116
122
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive)
|
|
117
123
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofileactivewaiter)
|
|
118
124
|
"""
|
|
119
|
-
def wait(
|
|
120
|
-
self, **kwargs: Unpack[
|
|
125
|
+
def wait( # type: ignore[override]
|
|
126
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
|
|
121
127
|
) -> None:
|
|
122
128
|
"""
|
|
123
129
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive.wait)
|
|
@@ -129,8 +135,8 @@ class FargateProfileDeletedWaiter(Waiter):
|
|
|
129
135
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted)
|
|
130
136
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofiledeletedwaiter)
|
|
131
137
|
"""
|
|
132
|
-
def wait(
|
|
133
|
-
self, **kwargs: Unpack[
|
|
138
|
+
def wait( # type: ignore[override]
|
|
139
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
|
|
134
140
|
) -> None:
|
|
135
141
|
"""
|
|
136
142
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted.wait)
|
|
@@ -142,7 +148,9 @@ class NodegroupActiveWaiter(Waiter):
|
|
|
142
148
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive)
|
|
143
149
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
144
150
|
"""
|
|
145
|
-
def wait(
|
|
151
|
+
def wait( # type: ignore[override]
|
|
152
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
|
|
153
|
+
) -> None:
|
|
146
154
|
"""
|
|
147
155
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive.wait)
|
|
148
156
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
@@ -153,7 +161,9 @@ class NodegroupDeletedWaiter(Waiter):
|
|
|
153
161
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted)
|
|
154
162
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
155
163
|
"""
|
|
156
|
-
def wait(
|
|
164
|
+
def wait( # type: ignore[override]
|
|
165
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
|
|
166
|
+
) -> None:
|
|
157
167
|
"""
|
|
158
168
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted.wait)
|
|
159
169
|
[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.86
|
|
4
|
+
Summary: Type annotations for boto3 EKS 1.35.86 service generated with mypy-boto3-builder 8.7.0
|
|
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
|
|
|
46
|
-
Type annotations for [boto3 EKS 1.35.
|
|
46
|
+
Type annotations for [boto3 EKS 1.35.86](https://pypi.org/project/boto3/)
|
|
47
47
|
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 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated with
|
|
55
|
-
[mypy-boto3-builder 8.
|
|
55
|
+
[mypy-boto3-builder 8.7.0](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
|
|
@@ -106,8 +106,8 @@ You can generate type annotations for `boto3` package locally with
|
|
|
106
106
|
isolation.
|
|
107
107
|
|
|
108
108
|
1. Run mypy-boto3-builder in your package root directory:
|
|
109
|
-
`uvx --with 'boto3==1.35.
|
|
110
|
-
2. Select `boto3
|
|
109
|
+
`uvx --with 'boto3==1.35.86' mypy_boto3_builder`
|
|
110
|
+
2. Select `boto3-stubs` AWS SDK.
|
|
111
111
|
3. Add `EKS` service.
|
|
112
112
|
4. Use provided commands to install generated packages.
|
|
113
113
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_eks/__init__.py,sha256=jFVUXeLoad7MEcujD_IzbWsthXmaDeDIHTMXeiBEnus,4743
|
|
2
|
+
mypy_boto3_eks/__init__.pyi,sha256=FZEpmKxAATrcpUAICEJ3rOJMJADPR7MZWMgXZ2Fnk_g,4742
|
|
3
|
+
mypy_boto3_eks/__main__.py,sha256=dnbOCDFWY-VdIlShDLGw12bazazclgFUNvAO7db_ltI,967
|
|
4
|
+
mypy_boto3_eks/client.py,sha256=sjrGK-eUdGOxFQXQLP4KdaepUuG-nBq2h9GMf-uO0Ag,48753
|
|
5
|
+
mypy_boto3_eks/client.pyi,sha256=ejQE_kbDxQUAUuLXbcgTLhakWO0-rYwhlJGP-pfUgoI,48750
|
|
6
|
+
mypy_boto3_eks/literals.py,sha256=hQ_OHXR1GBzSDNTTPXQyfgik35emgoTKVNh9Gi0ZSPc,18883
|
|
7
|
+
mypy_boto3_eks/literals.pyi,sha256=NO3FczjuJbTT0uFmSc5lADevKpsoAFWDif5daHJtPFk,18881
|
|
8
|
+
mypy_boto3_eks/paginator.py,sha256=czW6iVnPyp1gDzICwGUzCWVprYnAgevn54UIWaZUdNU,18994
|
|
9
|
+
mypy_boto3_eks/paginator.pyi,sha256=WIGPNDTQvmr6tbMjooznD239-6_aOp073uwSHpNMxb4,18954
|
|
10
|
+
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_eks/type_defs.py,sha256=-2ejQY47jXlNE2UQem6vcM9i80Im3G22A_D0O323ubA,54085
|
|
12
|
+
mypy_boto3_eks/type_defs.pyi,sha256=nEB3BVXNRYE75yLe4Vf6ciO-kJVEnJHnlNnfmhfGyY8,53863
|
|
13
|
+
mypy_boto3_eks/version.py,sha256=R7ca4mwTpgac6S4rPbB0dyM2ChqlwVrwpVhiVVMCC_k,93
|
|
14
|
+
mypy_boto3_eks/waiter.py,sha256=b2JbfeXUPoIMzoIrQddfoXz5E_1_koI6cAKqs8PK6Do,8461
|
|
15
|
+
mypy_boto3_eks/waiter.pyi,sha256=KmQ0V-iy-S1kj_l_SX5daw-KyIkqALGZQMzMYavWTC4,8444
|
|
16
|
+
mypy_boto3_eks-1.35.86.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_eks-1.35.86.dist-info/METADATA,sha256=uB-ZjQyzcKNjWbsCI9gqvSM10x4C-JwgQgGTSlIvvgA,17465
|
|
18
|
+
mypy_boto3_eks-1.35.86.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
19
|
+
mypy_boto3_eks-1.35.86.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
+
mypy_boto3_eks-1.35.86.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_eks/__init__.py,sha256=jFVUXeLoad7MEcujD_IzbWsthXmaDeDIHTMXeiBEnus,4743
|
|
2
|
-
mypy_boto3_eks/__init__.pyi,sha256=FZEpmKxAATrcpUAICEJ3rOJMJADPR7MZWMgXZ2Fnk_g,4742
|
|
3
|
-
mypy_boto3_eks/__main__.py,sha256=evP40ImZWuzINg2znGymxKjLVItzdbVGyoE0FTKosWs,933
|
|
4
|
-
mypy_boto3_eks/client.py,sha256=-4_q-egEi_VRRzY8euKJjVvAWAT8GtVTiU3APt2IkvE,47867
|
|
5
|
-
mypy_boto3_eks/client.pyi,sha256=Z8Bqxwz50F1DkMkBYuRsb4_WdeGkHJb2fVbTp50NvZE,47863
|
|
6
|
-
mypy_boto3_eks/literals.py,sha256=fe94L8Yd1U1Og7Hdwi3odSnSl5fLJAbI2KI3QpsyOqI,18868
|
|
7
|
-
mypy_boto3_eks/literals.pyi,sha256=a--t8UdCfCoOXtzbWeYV7A32g5a6qDQuBTO52L-fdC0,18866
|
|
8
|
-
mypy_boto3_eks/paginator.py,sha256=b47PYSo7ZZeyb6a8cZAvKWs0GQJNHe491CGkrnvD4pU,16664
|
|
9
|
-
mypy_boto3_eks/paginator.pyi,sha256=snJRMYrJ-Fm_qCLP4NuD0y2wX2AlZkFkc7MrJPx3qrA,16635
|
|
10
|
-
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_eks/type_defs.py,sha256=_IXKFwuc92X8FlHDKOScDtPE3BN0tGFRY6UwBv88PcA,55329
|
|
12
|
-
mypy_boto3_eks/type_defs.pyi,sha256=kSYaqSk2MYeTCppZi2NhvQxubPoRbYjLxE2eiAe0NoA,55104
|
|
13
|
-
mypy_boto3_eks/version.py,sha256=43YQ076woionZM0aB5UwdorEF0QPSwqFdL8sU1y7tgU,93
|
|
14
|
-
mypy_boto3_eks/waiter.py,sha256=zpm2zEN_i94jJpYhb4yDd5xJ_jI5kRf2ynCffyOZEpM,8545
|
|
15
|
-
mypy_boto3_eks/waiter.pyi,sha256=FcCxeEAmZHN---jGku2y6s-h_KMBuGeMnqfOVZGa8Aw,8528
|
|
16
|
-
mypy_boto3_eks-1.35.81.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_eks-1.35.81.dist-info/METADATA,sha256=H77vnEOkNcKxc4C_g-qj2G64wTX0q6VFlVRT88Q2xy0,17480
|
|
18
|
-
mypy_boto3_eks-1.35.81.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
19
|
-
mypy_boto3_eks-1.35.81.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
-
mypy_boto3_eks-1.35.81.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|