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/paginator.pyi
CHANGED
|
@@ -44,29 +44,45 @@ Usage::
|
|
|
44
44
|
```
|
|
45
45
|
"""
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
import sys
|
|
48
|
+
from typing import Generic, Iterator, TypeVar
|
|
48
49
|
|
|
49
50
|
from botocore.paginate import PageIterator, Paginator
|
|
50
51
|
|
|
51
|
-
from .literals import EksAnywhereSubscriptionStatusType
|
|
52
52
|
from .type_defs import (
|
|
53
|
+
DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef,
|
|
53
54
|
DescribeAddonVersionsResponseTypeDef,
|
|
54
|
-
|
|
55
|
+
ListAccessEntriesRequestListAccessEntriesPaginateTypeDef,
|
|
55
56
|
ListAccessEntriesResponseTypeDef,
|
|
57
|
+
ListAccessPoliciesRequestListAccessPoliciesPaginateTypeDef,
|
|
56
58
|
ListAccessPoliciesResponseTypeDef,
|
|
59
|
+
ListAddonsRequestListAddonsPaginateTypeDef,
|
|
57
60
|
ListAddonsResponseTypeDef,
|
|
61
|
+
ListAssociatedAccessPoliciesRequestListAssociatedAccessPoliciesPaginateTypeDef,
|
|
58
62
|
ListAssociatedAccessPoliciesResponseTypeDef,
|
|
63
|
+
ListClustersRequestListClustersPaginateTypeDef,
|
|
59
64
|
ListClustersResponseTypeDef,
|
|
65
|
+
ListEksAnywhereSubscriptionsRequestListEksAnywhereSubscriptionsPaginateTypeDef,
|
|
60
66
|
ListEksAnywhereSubscriptionsResponseTypeDef,
|
|
67
|
+
ListFargateProfilesRequestListFargateProfilesPaginateTypeDef,
|
|
61
68
|
ListFargateProfilesResponseTypeDef,
|
|
69
|
+
ListIdentityProviderConfigsRequestListIdentityProviderConfigsPaginateTypeDef,
|
|
62
70
|
ListIdentityProviderConfigsResponseTypeDef,
|
|
71
|
+
ListInsightsRequestListInsightsPaginateTypeDef,
|
|
63
72
|
ListInsightsResponseTypeDef,
|
|
73
|
+
ListNodegroupsRequestListNodegroupsPaginateTypeDef,
|
|
64
74
|
ListNodegroupsResponseTypeDef,
|
|
75
|
+
ListPodIdentityAssociationsRequestListPodIdentityAssociationsPaginateTypeDef,
|
|
65
76
|
ListPodIdentityAssociationsResponseTypeDef,
|
|
77
|
+
ListUpdatesRequestListUpdatesPaginateTypeDef,
|
|
66
78
|
ListUpdatesResponseTypeDef,
|
|
67
|
-
PaginatorConfigTypeDef,
|
|
68
79
|
)
|
|
69
80
|
|
|
81
|
+
if sys.version_info >= (3, 12):
|
|
82
|
+
from typing import Unpack
|
|
83
|
+
else:
|
|
84
|
+
from typing_extensions import Unpack
|
|
85
|
+
|
|
70
86
|
__all__ = (
|
|
71
87
|
"DescribeAddonVersionsPaginator",
|
|
72
88
|
"ListAccessEntriesPaginator",
|
|
@@ -85,7 +101,7 @@ __all__ = (
|
|
|
85
101
|
|
|
86
102
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
87
103
|
|
|
88
|
-
class _PageIterator(Generic[_ItemTypeDef]
|
|
104
|
+
class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
|
|
89
105
|
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
90
106
|
"""
|
|
91
107
|
Proxy method to specify iterator item type.
|
|
@@ -96,16 +112,8 @@ class DescribeAddonVersionsPaginator(Paginator):
|
|
|
96
112
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.DescribeAddonVersions)
|
|
97
113
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
|
|
98
114
|
"""
|
|
99
|
-
|
|
100
115
|
def paginate(
|
|
101
|
-
self,
|
|
102
|
-
*,
|
|
103
|
-
kubernetesVersion: str = ...,
|
|
104
|
-
addonName: str = ...,
|
|
105
|
-
types: Sequence[str] = ...,
|
|
106
|
-
publishers: Sequence[str] = ...,
|
|
107
|
-
owners: Sequence[str] = ...,
|
|
108
|
-
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
116
|
+
self, **kwargs: Unpack[DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef]
|
|
109
117
|
) -> _PageIterator[DescribeAddonVersionsResponseTypeDef]:
|
|
110
118
|
"""
|
|
111
119
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.DescribeAddonVersions.paginate)
|
|
@@ -117,13 +125,8 @@ class ListAccessEntriesPaginator(Paginator):
|
|
|
117
125
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessEntries)
|
|
118
126
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccessentriespaginator)
|
|
119
127
|
"""
|
|
120
|
-
|
|
121
128
|
def paginate(
|
|
122
|
-
self,
|
|
123
|
-
*,
|
|
124
|
-
clusterName: str,
|
|
125
|
-
associatedPolicyArn: str = ...,
|
|
126
|
-
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
129
|
+
self, **kwargs: Unpack[ListAccessEntriesRequestListAccessEntriesPaginateTypeDef]
|
|
127
130
|
) -> _PageIterator[ListAccessEntriesResponseTypeDef]:
|
|
128
131
|
"""
|
|
129
132
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessEntries.paginate)
|
|
@@ -135,9 +138,8 @@ class ListAccessPoliciesPaginator(Paginator):
|
|
|
135
138
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessPolicies)
|
|
136
139
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccesspoliciespaginator)
|
|
137
140
|
"""
|
|
138
|
-
|
|
139
141
|
def paginate(
|
|
140
|
-
self,
|
|
142
|
+
self, **kwargs: Unpack[ListAccessPoliciesRequestListAccessPoliciesPaginateTypeDef]
|
|
141
143
|
) -> _PageIterator[ListAccessPoliciesResponseTypeDef]:
|
|
142
144
|
"""
|
|
143
145
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessPolicies.paginate)
|
|
@@ -149,9 +151,8 @@ class ListAddonsPaginator(Paginator):
|
|
|
149
151
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAddons)
|
|
150
152
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaddonspaginator)
|
|
151
153
|
"""
|
|
152
|
-
|
|
153
154
|
def paginate(
|
|
154
|
-
self,
|
|
155
|
+
self, **kwargs: Unpack[ListAddonsRequestListAddonsPaginateTypeDef]
|
|
155
156
|
) -> _PageIterator[ListAddonsResponseTypeDef]:
|
|
156
157
|
"""
|
|
157
158
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAddons.paginate)
|
|
@@ -163,9 +164,11 @@ class ListAssociatedAccessPoliciesPaginator(Paginator):
|
|
|
163
164
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAssociatedAccessPolicies)
|
|
164
165
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
|
|
165
166
|
"""
|
|
166
|
-
|
|
167
167
|
def paginate(
|
|
168
|
-
self,
|
|
168
|
+
self,
|
|
169
|
+
**kwargs: Unpack[
|
|
170
|
+
ListAssociatedAccessPoliciesRequestListAssociatedAccessPoliciesPaginateTypeDef
|
|
171
|
+
],
|
|
169
172
|
) -> _PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
|
|
170
173
|
"""
|
|
171
174
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
|
|
@@ -177,9 +180,8 @@ class ListClustersPaginator(Paginator):
|
|
|
177
180
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListClusters)
|
|
178
181
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listclusterspaginator)
|
|
179
182
|
"""
|
|
180
|
-
|
|
181
183
|
def paginate(
|
|
182
|
-
self,
|
|
184
|
+
self, **kwargs: Unpack[ListClustersRequestListClustersPaginateTypeDef]
|
|
183
185
|
) -> _PageIterator[ListClustersResponseTypeDef]:
|
|
184
186
|
"""
|
|
185
187
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListClusters.paginate)
|
|
@@ -191,12 +193,11 @@ class ListEksAnywhereSubscriptionsPaginator(Paginator):
|
|
|
191
193
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListEksAnywhereSubscriptions)
|
|
192
194
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
|
|
193
195
|
"""
|
|
194
|
-
|
|
195
196
|
def paginate(
|
|
196
197
|
self,
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
198
|
+
**kwargs: Unpack[
|
|
199
|
+
ListEksAnywhereSubscriptionsRequestListEksAnywhereSubscriptionsPaginateTypeDef
|
|
200
|
+
],
|
|
200
201
|
) -> _PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
|
|
201
202
|
"""
|
|
202
203
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
|
|
@@ -208,9 +209,8 @@ class ListFargateProfilesPaginator(Paginator):
|
|
|
208
209
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListFargateProfiles)
|
|
209
210
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listfargateprofilespaginator)
|
|
210
211
|
"""
|
|
211
|
-
|
|
212
212
|
def paginate(
|
|
213
|
-
self,
|
|
213
|
+
self, **kwargs: Unpack[ListFargateProfilesRequestListFargateProfilesPaginateTypeDef]
|
|
214
214
|
) -> _PageIterator[ListFargateProfilesResponseTypeDef]:
|
|
215
215
|
"""
|
|
216
216
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListFargateProfiles.paginate)
|
|
@@ -222,9 +222,11 @@ class ListIdentityProviderConfigsPaginator(Paginator):
|
|
|
222
222
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListIdentityProviderConfigs)
|
|
223
223
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
|
|
224
224
|
"""
|
|
225
|
-
|
|
226
225
|
def paginate(
|
|
227
|
-
self,
|
|
226
|
+
self,
|
|
227
|
+
**kwargs: Unpack[
|
|
228
|
+
ListIdentityProviderConfigsRequestListIdentityProviderConfigsPaginateTypeDef
|
|
229
|
+
],
|
|
228
230
|
) -> _PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
|
|
229
231
|
"""
|
|
230
232
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
|
|
@@ -236,13 +238,8 @@ class ListInsightsPaginator(Paginator):
|
|
|
236
238
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights)
|
|
237
239
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
|
|
238
240
|
"""
|
|
239
|
-
|
|
240
241
|
def paginate(
|
|
241
|
-
self,
|
|
242
|
-
*,
|
|
243
|
-
clusterName: str,
|
|
244
|
-
filter: InsightsFilterTypeDef = ...,
|
|
245
|
-
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
242
|
+
self, **kwargs: Unpack[ListInsightsRequestListInsightsPaginateTypeDef]
|
|
246
243
|
) -> _PageIterator[ListInsightsResponseTypeDef]:
|
|
247
244
|
"""
|
|
248
245
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights.paginate)
|
|
@@ -254,9 +251,8 @@ class ListNodegroupsPaginator(Paginator):
|
|
|
254
251
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListNodegroups)
|
|
255
252
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listnodegroupspaginator)
|
|
256
253
|
"""
|
|
257
|
-
|
|
258
254
|
def paginate(
|
|
259
|
-
self,
|
|
255
|
+
self, **kwargs: Unpack[ListNodegroupsRequestListNodegroupsPaginateTypeDef]
|
|
260
256
|
) -> _PageIterator[ListNodegroupsResponseTypeDef]:
|
|
261
257
|
"""
|
|
262
258
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListNodegroups.paginate)
|
|
@@ -268,14 +264,11 @@ class ListPodIdentityAssociationsPaginator(Paginator):
|
|
|
268
264
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListPodIdentityAssociations)
|
|
269
265
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listpodidentityassociationspaginator)
|
|
270
266
|
"""
|
|
271
|
-
|
|
272
267
|
def paginate(
|
|
273
268
|
self,
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
serviceAccount: str = ...,
|
|
278
|
-
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
269
|
+
**kwargs: Unpack[
|
|
270
|
+
ListPodIdentityAssociationsRequestListPodIdentityAssociationsPaginateTypeDef
|
|
271
|
+
],
|
|
279
272
|
) -> _PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
|
|
280
273
|
"""
|
|
281
274
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
|
|
@@ -287,14 +280,8 @@ class ListUpdatesPaginator(Paginator):
|
|
|
287
280
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListUpdates)
|
|
288
281
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listupdatespaginator)
|
|
289
282
|
"""
|
|
290
|
-
|
|
291
283
|
def paginate(
|
|
292
|
-
self,
|
|
293
|
-
*,
|
|
294
|
-
name: str,
|
|
295
|
-
nodegroupName: str = ...,
|
|
296
|
-
addonName: str = ...,
|
|
297
|
-
PaginationConfig: PaginatorConfigTypeDef = ...,
|
|
284
|
+
self, **kwargs: Unpack[ListUpdatesRequestListUpdatesPaginateTypeDef]
|
|
298
285
|
) -> _PageIterator[ListUpdatesResponseTypeDef]:
|
|
299
286
|
"""
|
|
300
287
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListUpdates.paginate)
|