mypy-boto3-eks 1.35.45__py3-none-any.whl → 1.35.72__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 +2 -0
- mypy_boto3_eks/__init__.pyi +2 -0
- mypy_boto3_eks/__main__.py +7 -5
- mypy_boto3_eks/client.py +152 -119
- mypy_boto3_eks/client.pyi +152 -119
- mypy_boto3_eks/literals.py +25 -6
- mypy_boto3_eks/literals.pyi +25 -6
- mypy_boto3_eks/paginator.py +29 -27
- mypy_boto3_eks/paginator.pyi +29 -27
- mypy_boto3_eks/type_defs.py +1497 -1752
- mypy_boto3_eks/type_defs.pyi +1277 -1755
- mypy_boto3_eks/version.py +3 -1
- mypy_boto3_eks/waiter.py +18 -16
- mypy_boto3_eks/waiter.pyi +18 -16
- {mypy_boto3_eks-1.35.45.dist-info → mypy_boto3_eks-1.35.72.dist-info}/METADATA +59 -18
- mypy_boto3_eks-1.35.72.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.35.45.dist-info → mypy_boto3_eks-1.35.72.dist-info}/WHEEL +1 -1
- mypy_boto3_eks-1.35.45.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.45.dist-info → mypy_boto3_eks-1.35.72.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.35.45.dist-info → mypy_boto3_eks-1.35.72.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/paginator.pyi
CHANGED
|
@@ -42,6 +42,8 @@ Usage::
|
|
|
42
42
|
list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
|
|
43
43
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
44
44
|
```
|
|
45
|
+
|
|
46
|
+
Copyright 2024 Vlad Emelianov
|
|
45
47
|
"""
|
|
46
48
|
|
|
47
49
|
import sys
|
|
@@ -101,7 +103,7 @@ __all__ = (
|
|
|
101
103
|
|
|
102
104
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
103
105
|
|
|
104
|
-
class _PageIterator(Generic[_ItemTypeDef]
|
|
106
|
+
class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
|
|
105
107
|
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
106
108
|
"""
|
|
107
109
|
Proxy method to specify iterator item type.
|
|
@@ -109,59 +111,59 @@ class _PageIterator(Generic[_ItemTypeDef], PageIterator):
|
|
|
109
111
|
|
|
110
112
|
class DescribeAddonVersionsPaginator(Paginator):
|
|
111
113
|
"""
|
|
112
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.DescribeAddonVersions)
|
|
114
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions)
|
|
113
115
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
|
|
114
116
|
"""
|
|
115
117
|
def paginate(
|
|
116
118
|
self, **kwargs: Unpack[DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef]
|
|
117
119
|
) -> _PageIterator[DescribeAddonVersionsResponseTypeDef]:
|
|
118
120
|
"""
|
|
119
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.DescribeAddonVersions.paginate)
|
|
121
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions.paginate)
|
|
120
122
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
|
|
121
123
|
"""
|
|
122
124
|
|
|
123
125
|
class ListAccessEntriesPaginator(Paginator):
|
|
124
126
|
"""
|
|
125
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessEntries)
|
|
127
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries)
|
|
126
128
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccessentriespaginator)
|
|
127
129
|
"""
|
|
128
130
|
def paginate(
|
|
129
131
|
self, **kwargs: Unpack[ListAccessEntriesRequestListAccessEntriesPaginateTypeDef]
|
|
130
132
|
) -> _PageIterator[ListAccessEntriesResponseTypeDef]:
|
|
131
133
|
"""
|
|
132
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessEntries.paginate)
|
|
134
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries.paginate)
|
|
133
135
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccessentriespaginator)
|
|
134
136
|
"""
|
|
135
137
|
|
|
136
138
|
class ListAccessPoliciesPaginator(Paginator):
|
|
137
139
|
"""
|
|
138
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessPolicies)
|
|
140
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies)
|
|
139
141
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccesspoliciespaginator)
|
|
140
142
|
"""
|
|
141
143
|
def paginate(
|
|
142
144
|
self, **kwargs: Unpack[ListAccessPoliciesRequestListAccessPoliciesPaginateTypeDef]
|
|
143
145
|
) -> _PageIterator[ListAccessPoliciesResponseTypeDef]:
|
|
144
146
|
"""
|
|
145
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessPolicies.paginate)
|
|
147
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies.paginate)
|
|
146
148
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccesspoliciespaginator)
|
|
147
149
|
"""
|
|
148
150
|
|
|
149
151
|
class ListAddonsPaginator(Paginator):
|
|
150
152
|
"""
|
|
151
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAddons)
|
|
153
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons)
|
|
152
154
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaddonspaginator)
|
|
153
155
|
"""
|
|
154
156
|
def paginate(
|
|
155
157
|
self, **kwargs: Unpack[ListAddonsRequestListAddonsPaginateTypeDef]
|
|
156
158
|
) -> _PageIterator[ListAddonsResponseTypeDef]:
|
|
157
159
|
"""
|
|
158
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAddons.paginate)
|
|
160
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons.paginate)
|
|
159
161
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaddonspaginator)
|
|
160
162
|
"""
|
|
161
163
|
|
|
162
164
|
class ListAssociatedAccessPoliciesPaginator(Paginator):
|
|
163
165
|
"""
|
|
164
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAssociatedAccessPolicies)
|
|
166
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies)
|
|
165
167
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
|
|
166
168
|
"""
|
|
167
169
|
def paginate(
|
|
@@ -171,26 +173,26 @@ class ListAssociatedAccessPoliciesPaginator(Paginator):
|
|
|
171
173
|
],
|
|
172
174
|
) -> _PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
|
|
173
175
|
"""
|
|
174
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
|
|
176
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
|
|
175
177
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
|
|
176
178
|
"""
|
|
177
179
|
|
|
178
180
|
class ListClustersPaginator(Paginator):
|
|
179
181
|
"""
|
|
180
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListClusters)
|
|
182
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters)
|
|
181
183
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listclusterspaginator)
|
|
182
184
|
"""
|
|
183
185
|
def paginate(
|
|
184
186
|
self, **kwargs: Unpack[ListClustersRequestListClustersPaginateTypeDef]
|
|
185
187
|
) -> _PageIterator[ListClustersResponseTypeDef]:
|
|
186
188
|
"""
|
|
187
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListClusters.paginate)
|
|
189
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters.paginate)
|
|
188
190
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listclusterspaginator)
|
|
189
191
|
"""
|
|
190
192
|
|
|
191
193
|
class ListEksAnywhereSubscriptionsPaginator(Paginator):
|
|
192
194
|
"""
|
|
193
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListEksAnywhereSubscriptions)
|
|
195
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions)
|
|
194
196
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
|
|
195
197
|
"""
|
|
196
198
|
def paginate(
|
|
@@ -200,26 +202,26 @@ class ListEksAnywhereSubscriptionsPaginator(Paginator):
|
|
|
200
202
|
],
|
|
201
203
|
) -> _PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
|
|
202
204
|
"""
|
|
203
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
|
|
205
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
|
|
204
206
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
|
|
205
207
|
"""
|
|
206
208
|
|
|
207
209
|
class ListFargateProfilesPaginator(Paginator):
|
|
208
210
|
"""
|
|
209
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListFargateProfiles)
|
|
211
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles)
|
|
210
212
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listfargateprofilespaginator)
|
|
211
213
|
"""
|
|
212
214
|
def paginate(
|
|
213
215
|
self, **kwargs: Unpack[ListFargateProfilesRequestListFargateProfilesPaginateTypeDef]
|
|
214
216
|
) -> _PageIterator[ListFargateProfilesResponseTypeDef]:
|
|
215
217
|
"""
|
|
216
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListFargateProfiles.paginate)
|
|
218
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles.paginate)
|
|
217
219
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listfargateprofilespaginator)
|
|
218
220
|
"""
|
|
219
221
|
|
|
220
222
|
class ListIdentityProviderConfigsPaginator(Paginator):
|
|
221
223
|
"""
|
|
222
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListIdentityProviderConfigs)
|
|
224
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs)
|
|
223
225
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
|
|
224
226
|
"""
|
|
225
227
|
def paginate(
|
|
@@ -229,39 +231,39 @@ class ListIdentityProviderConfigsPaginator(Paginator):
|
|
|
229
231
|
],
|
|
230
232
|
) -> _PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
|
|
231
233
|
"""
|
|
232
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
|
|
234
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
|
|
233
235
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
|
|
234
236
|
"""
|
|
235
237
|
|
|
236
238
|
class ListInsightsPaginator(Paginator):
|
|
237
239
|
"""
|
|
238
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights)
|
|
240
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights)
|
|
239
241
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
|
|
240
242
|
"""
|
|
241
243
|
def paginate(
|
|
242
244
|
self, **kwargs: Unpack[ListInsightsRequestListInsightsPaginateTypeDef]
|
|
243
245
|
) -> _PageIterator[ListInsightsResponseTypeDef]:
|
|
244
246
|
"""
|
|
245
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights.paginate)
|
|
247
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights.paginate)
|
|
246
248
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
|
|
247
249
|
"""
|
|
248
250
|
|
|
249
251
|
class ListNodegroupsPaginator(Paginator):
|
|
250
252
|
"""
|
|
251
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListNodegroups)
|
|
253
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups)
|
|
252
254
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listnodegroupspaginator)
|
|
253
255
|
"""
|
|
254
256
|
def paginate(
|
|
255
257
|
self, **kwargs: Unpack[ListNodegroupsRequestListNodegroupsPaginateTypeDef]
|
|
256
258
|
) -> _PageIterator[ListNodegroupsResponseTypeDef]:
|
|
257
259
|
"""
|
|
258
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListNodegroups.paginate)
|
|
260
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups.paginate)
|
|
259
261
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listnodegroupspaginator)
|
|
260
262
|
"""
|
|
261
263
|
|
|
262
264
|
class ListPodIdentityAssociationsPaginator(Paginator):
|
|
263
265
|
"""
|
|
264
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListPodIdentityAssociations)
|
|
266
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations)
|
|
265
267
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listpodidentityassociationspaginator)
|
|
266
268
|
"""
|
|
267
269
|
def paginate(
|
|
@@ -271,19 +273,19 @@ class ListPodIdentityAssociationsPaginator(Paginator):
|
|
|
271
273
|
],
|
|
272
274
|
) -> _PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
|
|
273
275
|
"""
|
|
274
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
|
|
276
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
|
|
275
277
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listpodidentityassociationspaginator)
|
|
276
278
|
"""
|
|
277
279
|
|
|
278
280
|
class ListUpdatesPaginator(Paginator):
|
|
279
281
|
"""
|
|
280
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListUpdates)
|
|
282
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates)
|
|
281
283
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listupdatespaginator)
|
|
282
284
|
"""
|
|
283
285
|
def paginate(
|
|
284
286
|
self, **kwargs: Unpack[ListUpdatesRequestListUpdatesPaginateTypeDef]
|
|
285
287
|
) -> _PageIterator[ListUpdatesResponseTypeDef]:
|
|
286
288
|
"""
|
|
287
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListUpdates.paginate)
|
|
289
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates.paginate)
|
|
288
290
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listupdatespaginator)
|
|
289
291
|
"""
|