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.
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for eks service client paginators.
3
3
 
4
- [Open documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/)
4
+ [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/)
5
5
 
6
6
  Usage::
7
7
 
@@ -46,37 +46,39 @@ Usage::
46
46
  Copyright 2024 Vlad Emelianov
47
47
  """
48
48
 
49
+ from __future__ import annotations
50
+
49
51
  import sys
50
- from typing import Generic, Iterator, TypeVar
52
+ from typing import TYPE_CHECKING
51
53
 
52
54
  from botocore.paginate import PageIterator, Paginator
53
55
 
54
56
  from .type_defs import (
55
- DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef,
57
+ DescribeAddonVersionsRequestPaginateTypeDef,
56
58
  DescribeAddonVersionsResponseTypeDef,
57
- ListAccessEntriesRequestListAccessEntriesPaginateTypeDef,
59
+ ListAccessEntriesRequestPaginateTypeDef,
58
60
  ListAccessEntriesResponseTypeDef,
59
- ListAccessPoliciesRequestListAccessPoliciesPaginateTypeDef,
61
+ ListAccessPoliciesRequestPaginateTypeDef,
60
62
  ListAccessPoliciesResponseTypeDef,
61
- ListAddonsRequestListAddonsPaginateTypeDef,
63
+ ListAddonsRequestPaginateTypeDef,
62
64
  ListAddonsResponseTypeDef,
63
- ListAssociatedAccessPoliciesRequestListAssociatedAccessPoliciesPaginateTypeDef,
65
+ ListAssociatedAccessPoliciesRequestPaginateTypeDef,
64
66
  ListAssociatedAccessPoliciesResponseTypeDef,
65
- ListClustersRequestListClustersPaginateTypeDef,
67
+ ListClustersRequestPaginateTypeDef,
66
68
  ListClustersResponseTypeDef,
67
- ListEksAnywhereSubscriptionsRequestListEksAnywhereSubscriptionsPaginateTypeDef,
69
+ ListEksAnywhereSubscriptionsRequestPaginateTypeDef,
68
70
  ListEksAnywhereSubscriptionsResponseTypeDef,
69
- ListFargateProfilesRequestListFargateProfilesPaginateTypeDef,
71
+ ListFargateProfilesRequestPaginateTypeDef,
70
72
  ListFargateProfilesResponseTypeDef,
71
- ListIdentityProviderConfigsRequestListIdentityProviderConfigsPaginateTypeDef,
73
+ ListIdentityProviderConfigsRequestPaginateTypeDef,
72
74
  ListIdentityProviderConfigsResponseTypeDef,
73
- ListInsightsRequestListInsightsPaginateTypeDef,
75
+ ListInsightsRequestPaginateTypeDef,
74
76
  ListInsightsResponseTypeDef,
75
- ListNodegroupsRequestListNodegroupsPaginateTypeDef,
77
+ ListNodegroupsRequestPaginateTypeDef,
76
78
  ListNodegroupsResponseTypeDef,
77
- ListPodIdentityAssociationsRequestListPodIdentityAssociationsPaginateTypeDef,
79
+ ListPodIdentityAssociationsRequestPaginateTypeDef,
78
80
  ListPodIdentityAssociationsResponseTypeDef,
79
- ListUpdatesRequestListUpdatesPaginateTypeDef,
81
+ ListUpdatesRequestPaginateTypeDef,
80
82
  ListUpdatesResponseTypeDef,
81
83
  )
82
84
 
@@ -103,217 +105,281 @@ __all__ = (
103
105
  )
104
106
 
105
107
 
106
- _ItemTypeDef = TypeVar("_ItemTypeDef")
107
-
108
-
109
- class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
110
- def __iter__(self) -> Iterator[_ItemTypeDef]:
111
- """
112
- Proxy method to specify iterator item type.
113
- """
108
+ if TYPE_CHECKING:
109
+ _DescribeAddonVersionsPaginatorBase = Paginator[DescribeAddonVersionsResponseTypeDef]
110
+ else:
111
+ _DescribeAddonVersionsPaginatorBase = Paginator # type: ignore[assignment]
114
112
 
115
113
 
116
- class DescribeAddonVersionsPaginator(Paginator):
114
+ class DescribeAddonVersionsPaginator(_DescribeAddonVersionsPaginatorBase):
117
115
  """
118
116
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions)
119
117
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
120
118
  """
121
119
 
122
- def paginate(
123
- self, **kwargs: Unpack[DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef]
124
- ) -> _PageIterator[DescribeAddonVersionsResponseTypeDef]:
120
+ def paginate( # type: ignore[override]
121
+ self, **kwargs: Unpack[DescribeAddonVersionsRequestPaginateTypeDef]
122
+ ) -> PageIterator[DescribeAddonVersionsResponseTypeDef]:
125
123
  """
126
124
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions.paginate)
127
125
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
128
126
  """
129
127
 
130
128
 
131
- class ListAccessEntriesPaginator(Paginator):
129
+ if TYPE_CHECKING:
130
+ _ListAccessEntriesPaginatorBase = Paginator[ListAccessEntriesResponseTypeDef]
131
+ else:
132
+ _ListAccessEntriesPaginatorBase = Paginator # type: ignore[assignment]
133
+
134
+
135
+ class ListAccessEntriesPaginator(_ListAccessEntriesPaginatorBase):
132
136
  """
133
137
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries)
134
138
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccessentriespaginator)
135
139
  """
136
140
 
137
- def paginate(
138
- self, **kwargs: Unpack[ListAccessEntriesRequestListAccessEntriesPaginateTypeDef]
139
- ) -> _PageIterator[ListAccessEntriesResponseTypeDef]:
141
+ def paginate( # type: ignore[override]
142
+ self, **kwargs: Unpack[ListAccessEntriesRequestPaginateTypeDef]
143
+ ) -> PageIterator[ListAccessEntriesResponseTypeDef]:
140
144
  """
141
145
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries.paginate)
142
146
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccessentriespaginator)
143
147
  """
144
148
 
145
149
 
146
- class ListAccessPoliciesPaginator(Paginator):
150
+ if TYPE_CHECKING:
151
+ _ListAccessPoliciesPaginatorBase = Paginator[ListAccessPoliciesResponseTypeDef]
152
+ else:
153
+ _ListAccessPoliciesPaginatorBase = Paginator # type: ignore[assignment]
154
+
155
+
156
+ class ListAccessPoliciesPaginator(_ListAccessPoliciesPaginatorBase):
147
157
  """
148
158
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies)
149
159
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccesspoliciespaginator)
150
160
  """
151
161
 
152
- def paginate(
153
- self, **kwargs: Unpack[ListAccessPoliciesRequestListAccessPoliciesPaginateTypeDef]
154
- ) -> _PageIterator[ListAccessPoliciesResponseTypeDef]:
162
+ def paginate( # type: ignore[override]
163
+ self, **kwargs: Unpack[ListAccessPoliciesRequestPaginateTypeDef]
164
+ ) -> PageIterator[ListAccessPoliciesResponseTypeDef]:
155
165
  """
156
166
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies.paginate)
157
167
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccesspoliciespaginator)
158
168
  """
159
169
 
160
170
 
161
- class ListAddonsPaginator(Paginator):
171
+ if TYPE_CHECKING:
172
+ _ListAddonsPaginatorBase = Paginator[ListAddonsResponseTypeDef]
173
+ else:
174
+ _ListAddonsPaginatorBase = Paginator # type: ignore[assignment]
175
+
176
+
177
+ class ListAddonsPaginator(_ListAddonsPaginatorBase):
162
178
  """
163
179
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons)
164
180
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaddonspaginator)
165
181
  """
166
182
 
167
- def paginate(
168
- self, **kwargs: Unpack[ListAddonsRequestListAddonsPaginateTypeDef]
169
- ) -> _PageIterator[ListAddonsResponseTypeDef]:
183
+ def paginate( # type: ignore[override]
184
+ self, **kwargs: Unpack[ListAddonsRequestPaginateTypeDef]
185
+ ) -> PageIterator[ListAddonsResponseTypeDef]:
170
186
  """
171
187
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons.paginate)
172
188
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaddonspaginator)
173
189
  """
174
190
 
175
191
 
176
- class ListAssociatedAccessPoliciesPaginator(Paginator):
192
+ if TYPE_CHECKING:
193
+ _ListAssociatedAccessPoliciesPaginatorBase = Paginator[
194
+ ListAssociatedAccessPoliciesResponseTypeDef
195
+ ]
196
+ else:
197
+ _ListAssociatedAccessPoliciesPaginatorBase = Paginator # type: ignore[assignment]
198
+
199
+
200
+ class ListAssociatedAccessPoliciesPaginator(_ListAssociatedAccessPoliciesPaginatorBase):
177
201
  """
178
202
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies)
179
203
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
180
204
  """
181
205
 
182
- def paginate(
183
- self,
184
- **kwargs: Unpack[
185
- ListAssociatedAccessPoliciesRequestListAssociatedAccessPoliciesPaginateTypeDef
186
- ],
187
- ) -> _PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
206
+ def paginate( # type: ignore[override]
207
+ self, **kwargs: Unpack[ListAssociatedAccessPoliciesRequestPaginateTypeDef]
208
+ ) -> PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
188
209
  """
189
210
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
190
211
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
191
212
  """
192
213
 
193
214
 
194
- class ListClustersPaginator(Paginator):
215
+ if TYPE_CHECKING:
216
+ _ListClustersPaginatorBase = Paginator[ListClustersResponseTypeDef]
217
+ else:
218
+ _ListClustersPaginatorBase = Paginator # type: ignore[assignment]
219
+
220
+
221
+ class ListClustersPaginator(_ListClustersPaginatorBase):
195
222
  """
196
223
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters)
197
224
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listclusterspaginator)
198
225
  """
199
226
 
200
- def paginate(
201
- self, **kwargs: Unpack[ListClustersRequestListClustersPaginateTypeDef]
202
- ) -> _PageIterator[ListClustersResponseTypeDef]:
227
+ def paginate( # type: ignore[override]
228
+ self, **kwargs: Unpack[ListClustersRequestPaginateTypeDef]
229
+ ) -> PageIterator[ListClustersResponseTypeDef]:
203
230
  """
204
231
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters.paginate)
205
232
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listclusterspaginator)
206
233
  """
207
234
 
208
235
 
209
- class ListEksAnywhereSubscriptionsPaginator(Paginator):
236
+ if TYPE_CHECKING:
237
+ _ListEksAnywhereSubscriptionsPaginatorBase = Paginator[
238
+ ListEksAnywhereSubscriptionsResponseTypeDef
239
+ ]
240
+ else:
241
+ _ListEksAnywhereSubscriptionsPaginatorBase = Paginator # type: ignore[assignment]
242
+
243
+
244
+ class ListEksAnywhereSubscriptionsPaginator(_ListEksAnywhereSubscriptionsPaginatorBase):
210
245
  """
211
246
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions)
212
247
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
213
248
  """
214
249
 
215
- def paginate(
216
- self,
217
- **kwargs: Unpack[
218
- ListEksAnywhereSubscriptionsRequestListEksAnywhereSubscriptionsPaginateTypeDef
219
- ],
220
- ) -> _PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
250
+ def paginate( # type: ignore[override]
251
+ self, **kwargs: Unpack[ListEksAnywhereSubscriptionsRequestPaginateTypeDef]
252
+ ) -> PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
221
253
  """
222
254
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
223
255
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
224
256
  """
225
257
 
226
258
 
227
- class ListFargateProfilesPaginator(Paginator):
259
+ if TYPE_CHECKING:
260
+ _ListFargateProfilesPaginatorBase = Paginator[ListFargateProfilesResponseTypeDef]
261
+ else:
262
+ _ListFargateProfilesPaginatorBase = Paginator # type: ignore[assignment]
263
+
264
+
265
+ class ListFargateProfilesPaginator(_ListFargateProfilesPaginatorBase):
228
266
  """
229
267
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles)
230
268
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listfargateprofilespaginator)
231
269
  """
232
270
 
233
- def paginate(
234
- self, **kwargs: Unpack[ListFargateProfilesRequestListFargateProfilesPaginateTypeDef]
235
- ) -> _PageIterator[ListFargateProfilesResponseTypeDef]:
271
+ def paginate( # type: ignore[override]
272
+ self, **kwargs: Unpack[ListFargateProfilesRequestPaginateTypeDef]
273
+ ) -> PageIterator[ListFargateProfilesResponseTypeDef]:
236
274
  """
237
275
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles.paginate)
238
276
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listfargateprofilespaginator)
239
277
  """
240
278
 
241
279
 
242
- class ListIdentityProviderConfigsPaginator(Paginator):
280
+ if TYPE_CHECKING:
281
+ _ListIdentityProviderConfigsPaginatorBase = Paginator[
282
+ ListIdentityProviderConfigsResponseTypeDef
283
+ ]
284
+ else:
285
+ _ListIdentityProviderConfigsPaginatorBase = Paginator # type: ignore[assignment]
286
+
287
+
288
+ class ListIdentityProviderConfigsPaginator(_ListIdentityProviderConfigsPaginatorBase):
243
289
  """
244
290
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs)
245
291
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
246
292
  """
247
293
 
248
- def paginate(
249
- self,
250
- **kwargs: Unpack[
251
- ListIdentityProviderConfigsRequestListIdentityProviderConfigsPaginateTypeDef
252
- ],
253
- ) -> _PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
294
+ def paginate( # type: ignore[override]
295
+ self, **kwargs: Unpack[ListIdentityProviderConfigsRequestPaginateTypeDef]
296
+ ) -> PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
254
297
  """
255
298
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
256
299
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
257
300
  """
258
301
 
259
302
 
260
- class ListInsightsPaginator(Paginator):
303
+ if TYPE_CHECKING:
304
+ _ListInsightsPaginatorBase = Paginator[ListInsightsResponseTypeDef]
305
+ else:
306
+ _ListInsightsPaginatorBase = Paginator # type: ignore[assignment]
307
+
308
+
309
+ class ListInsightsPaginator(_ListInsightsPaginatorBase):
261
310
  """
262
311
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights)
263
312
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
264
313
  """
265
314
 
266
- def paginate(
267
- self, **kwargs: Unpack[ListInsightsRequestListInsightsPaginateTypeDef]
268
- ) -> _PageIterator[ListInsightsResponseTypeDef]:
315
+ def paginate( # type: ignore[override]
316
+ self, **kwargs: Unpack[ListInsightsRequestPaginateTypeDef]
317
+ ) -> PageIterator[ListInsightsResponseTypeDef]:
269
318
  """
270
319
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights.paginate)
271
320
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
272
321
  """
273
322
 
274
323
 
275
- class ListNodegroupsPaginator(Paginator):
324
+ if TYPE_CHECKING:
325
+ _ListNodegroupsPaginatorBase = Paginator[ListNodegroupsResponseTypeDef]
326
+ else:
327
+ _ListNodegroupsPaginatorBase = Paginator # type: ignore[assignment]
328
+
329
+
330
+ class ListNodegroupsPaginator(_ListNodegroupsPaginatorBase):
276
331
  """
277
332
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups)
278
333
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listnodegroupspaginator)
279
334
  """
280
335
 
281
- def paginate(
282
- self, **kwargs: Unpack[ListNodegroupsRequestListNodegroupsPaginateTypeDef]
283
- ) -> _PageIterator[ListNodegroupsResponseTypeDef]:
336
+ def paginate( # type: ignore[override]
337
+ self, **kwargs: Unpack[ListNodegroupsRequestPaginateTypeDef]
338
+ ) -> PageIterator[ListNodegroupsResponseTypeDef]:
284
339
  """
285
340
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups.paginate)
286
341
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listnodegroupspaginator)
287
342
  """
288
343
 
289
344
 
290
- class ListPodIdentityAssociationsPaginator(Paginator):
345
+ if TYPE_CHECKING:
346
+ _ListPodIdentityAssociationsPaginatorBase = Paginator[
347
+ ListPodIdentityAssociationsResponseTypeDef
348
+ ]
349
+ else:
350
+ _ListPodIdentityAssociationsPaginatorBase = Paginator # type: ignore[assignment]
351
+
352
+
353
+ class ListPodIdentityAssociationsPaginator(_ListPodIdentityAssociationsPaginatorBase):
291
354
  """
292
355
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations)
293
356
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listpodidentityassociationspaginator)
294
357
  """
295
358
 
296
- def paginate(
297
- self,
298
- **kwargs: Unpack[
299
- ListPodIdentityAssociationsRequestListPodIdentityAssociationsPaginateTypeDef
300
- ],
301
- ) -> _PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
359
+ def paginate( # type: ignore[override]
360
+ self, **kwargs: Unpack[ListPodIdentityAssociationsRequestPaginateTypeDef]
361
+ ) -> PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
302
362
  """
303
363
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
304
364
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listpodidentityassociationspaginator)
305
365
  """
306
366
 
307
367
 
308
- class ListUpdatesPaginator(Paginator):
368
+ if TYPE_CHECKING:
369
+ _ListUpdatesPaginatorBase = Paginator[ListUpdatesResponseTypeDef]
370
+ else:
371
+ _ListUpdatesPaginatorBase = Paginator # type: ignore[assignment]
372
+
373
+
374
+ class ListUpdatesPaginator(_ListUpdatesPaginatorBase):
309
375
  """
310
376
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates)
311
377
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listupdatespaginator)
312
378
  """
313
379
 
314
- def paginate(
315
- self, **kwargs: Unpack[ListUpdatesRequestListUpdatesPaginateTypeDef]
316
- ) -> _PageIterator[ListUpdatesResponseTypeDef]:
380
+ def paginate( # type: ignore[override]
381
+ self, **kwargs: Unpack[ListUpdatesRequestPaginateTypeDef]
382
+ ) -> PageIterator[ListUpdatesResponseTypeDef]:
317
383
  """
318
384
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates.paginate)
319
385
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listupdatespaginator)