mypy-boto3-eks 1.35.0__py3-none-any.whl → 1.38.0__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,9 @@
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
+
6
+ Copyright 2025 Vlad Emelianov
5
7
 
6
8
  Usage::
7
9
 
@@ -11,6 +13,7 @@ Usage::
11
13
  from mypy_boto3_eks.client import EKSClient
12
14
  from mypy_boto3_eks.paginator import (
13
15
  DescribeAddonVersionsPaginator,
16
+ DescribeClusterVersionsPaginator,
14
17
  ListAccessEntriesPaginator,
15
18
  ListAccessPoliciesPaginator,
16
19
  ListAddonsPaginator,
@@ -29,6 +32,7 @@ Usage::
29
32
  client: EKSClient = session.client("eks")
30
33
 
31
34
  describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
35
+ describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
32
36
  list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
33
37
  list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
34
38
  list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
@@ -44,31 +48,53 @@ Usage::
44
48
  ```
45
49
  """
46
50
 
47
- from typing import Generic, Iterator, Sequence, TypeVar
51
+ from __future__ import annotations
52
+
53
+ import sys
54
+ from typing import TYPE_CHECKING
48
55
 
49
56
  from botocore.paginate import PageIterator, Paginator
50
57
 
51
- from .literals import EksAnywhereSubscriptionStatusType
52
58
  from .type_defs import (
59
+ DescribeAddonVersionsRequestPaginateTypeDef,
53
60
  DescribeAddonVersionsResponseTypeDef,
54
- InsightsFilterTypeDef,
61
+ DescribeClusterVersionsRequestPaginateTypeDef,
62
+ DescribeClusterVersionsResponseTypeDef,
63
+ ListAccessEntriesRequestPaginateTypeDef,
55
64
  ListAccessEntriesResponseTypeDef,
65
+ ListAccessPoliciesRequestPaginateTypeDef,
56
66
  ListAccessPoliciesResponseTypeDef,
67
+ ListAddonsRequestPaginateTypeDef,
57
68
  ListAddonsResponseTypeDef,
69
+ ListAssociatedAccessPoliciesRequestPaginateTypeDef,
58
70
  ListAssociatedAccessPoliciesResponseTypeDef,
71
+ ListClustersRequestPaginateTypeDef,
59
72
  ListClustersResponseTypeDef,
73
+ ListEksAnywhereSubscriptionsRequestPaginateTypeDef,
60
74
  ListEksAnywhereSubscriptionsResponseTypeDef,
75
+ ListFargateProfilesRequestPaginateTypeDef,
61
76
  ListFargateProfilesResponseTypeDef,
77
+ ListIdentityProviderConfigsRequestPaginateTypeDef,
62
78
  ListIdentityProviderConfigsResponseTypeDef,
79
+ ListInsightsRequestPaginateTypeDef,
63
80
  ListInsightsResponseTypeDef,
81
+ ListNodegroupsRequestPaginateTypeDef,
64
82
  ListNodegroupsResponseTypeDef,
83
+ ListPodIdentityAssociationsRequestPaginateTypeDef,
65
84
  ListPodIdentityAssociationsResponseTypeDef,
85
+ ListUpdatesRequestPaginateTypeDef,
66
86
  ListUpdatesResponseTypeDef,
67
- PaginatorConfigTypeDef,
68
87
  )
69
88
 
89
+ if sys.version_info >= (3, 12):
90
+ from typing import Unpack
91
+ else:
92
+ from typing_extensions import Unpack
93
+
94
+
70
95
  __all__ = (
71
96
  "DescribeAddonVersionsPaginator",
97
+ "DescribeClusterVersionsPaginator",
72
98
  "ListAccessEntriesPaginator",
73
99
  "ListAccessPoliciesPaginator",
74
100
  "ListAddonsPaginator",
@@ -83,234 +109,304 @@ __all__ = (
83
109
  "ListUpdatesPaginator",
84
110
  )
85
111
 
86
- _ItemTypeDef = TypeVar("_ItemTypeDef")
112
+
113
+ if TYPE_CHECKING:
114
+ _DescribeAddonVersionsPaginatorBase = Paginator[DescribeAddonVersionsResponseTypeDef]
115
+ else:
116
+ _DescribeAddonVersionsPaginatorBase = Paginator # type: ignore[assignment]
87
117
 
88
118
 
89
- class _PageIterator(Generic[_ItemTypeDef], PageIterator):
90
- def __iter__(self) -> Iterator[_ItemTypeDef]:
119
+ class DescribeAddonVersionsPaginator(_DescribeAddonVersionsPaginatorBase):
120
+ """
121
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions)
122
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
123
+ """
124
+
125
+ def paginate( # type: ignore[override]
126
+ self, **kwargs: Unpack[DescribeAddonVersionsRequestPaginateTypeDef]
127
+ ) -> PageIterator[DescribeAddonVersionsResponseTypeDef]:
91
128
  """
92
- Proxy method to specify iterator item type.
129
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions.paginate)
130
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
93
131
  """
94
132
 
95
133
 
96
- class DescribeAddonVersionsPaginator(Paginator):
134
+ if TYPE_CHECKING:
135
+ _DescribeClusterVersionsPaginatorBase = Paginator[DescribeClusterVersionsResponseTypeDef]
136
+ else:
137
+ _DescribeClusterVersionsPaginatorBase = Paginator # type: ignore[assignment]
138
+
139
+
140
+ class DescribeClusterVersionsPaginator(_DescribeClusterVersionsPaginatorBase):
97
141
  """
98
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.DescribeAddonVersions)
99
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
142
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeClusterVersions.html#EKS.Paginator.DescribeClusterVersions)
143
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeclusterversionspaginator)
100
144
  """
101
145
 
102
- def paginate(
103
- self,
104
- *,
105
- kubernetesVersion: str = ...,
106
- addonName: str = ...,
107
- types: Sequence[str] = ...,
108
- publishers: Sequence[str] = ...,
109
- owners: Sequence[str] = ...,
110
- PaginationConfig: PaginatorConfigTypeDef = ...,
111
- ) -> _PageIterator[DescribeAddonVersionsResponseTypeDef]:
146
+ def paginate( # type: ignore[override]
147
+ self, **kwargs: Unpack[DescribeClusterVersionsRequestPaginateTypeDef]
148
+ ) -> PageIterator[DescribeClusterVersionsResponseTypeDef]:
112
149
  """
113
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.DescribeAddonVersions.paginate)
114
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
150
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeClusterVersions.html#EKS.Paginator.DescribeClusterVersions.paginate)
151
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeclusterversionspaginator)
115
152
  """
116
153
 
117
154
 
118
- class ListAccessEntriesPaginator(Paginator):
155
+ if TYPE_CHECKING:
156
+ _ListAccessEntriesPaginatorBase = Paginator[ListAccessEntriesResponseTypeDef]
157
+ else:
158
+ _ListAccessEntriesPaginatorBase = Paginator # type: ignore[assignment]
159
+
160
+
161
+ class ListAccessEntriesPaginator(_ListAccessEntriesPaginatorBase):
119
162
  """
120
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessEntries)
163
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries)
121
164
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccessentriespaginator)
122
165
  """
123
166
 
124
- def paginate(
125
- self,
126
- *,
127
- clusterName: str,
128
- associatedPolicyArn: str = ...,
129
- PaginationConfig: PaginatorConfigTypeDef = ...,
130
- ) -> _PageIterator[ListAccessEntriesResponseTypeDef]:
167
+ def paginate( # type: ignore[override]
168
+ self, **kwargs: Unpack[ListAccessEntriesRequestPaginateTypeDef]
169
+ ) -> PageIterator[ListAccessEntriesResponseTypeDef]:
131
170
  """
132
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessEntries.paginate)
171
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries.paginate)
133
172
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccessentriespaginator)
134
173
  """
135
174
 
136
175
 
137
- class ListAccessPoliciesPaginator(Paginator):
176
+ if TYPE_CHECKING:
177
+ _ListAccessPoliciesPaginatorBase = Paginator[ListAccessPoliciesResponseTypeDef]
178
+ else:
179
+ _ListAccessPoliciesPaginatorBase = Paginator # type: ignore[assignment]
180
+
181
+
182
+ class ListAccessPoliciesPaginator(_ListAccessPoliciesPaginatorBase):
138
183
  """
139
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessPolicies)
184
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies)
140
185
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccesspoliciespaginator)
141
186
  """
142
187
 
143
- def paginate(
144
- self, *, PaginationConfig: PaginatorConfigTypeDef = ...
145
- ) -> _PageIterator[ListAccessPoliciesResponseTypeDef]:
188
+ def paginate( # type: ignore[override]
189
+ self, **kwargs: Unpack[ListAccessPoliciesRequestPaginateTypeDef]
190
+ ) -> PageIterator[ListAccessPoliciesResponseTypeDef]:
146
191
  """
147
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessPolicies.paginate)
192
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies.paginate)
148
193
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccesspoliciespaginator)
149
194
  """
150
195
 
151
196
 
152
- class ListAddonsPaginator(Paginator):
197
+ if TYPE_CHECKING:
198
+ _ListAddonsPaginatorBase = Paginator[ListAddonsResponseTypeDef]
199
+ else:
200
+ _ListAddonsPaginatorBase = Paginator # type: ignore[assignment]
201
+
202
+
203
+ class ListAddonsPaginator(_ListAddonsPaginatorBase):
153
204
  """
154
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAddons)
205
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons)
155
206
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaddonspaginator)
156
207
  """
157
208
 
158
- def paginate(
159
- self, *, clusterName: str, PaginationConfig: PaginatorConfigTypeDef = ...
160
- ) -> _PageIterator[ListAddonsResponseTypeDef]:
209
+ def paginate( # type: ignore[override]
210
+ self, **kwargs: Unpack[ListAddonsRequestPaginateTypeDef]
211
+ ) -> PageIterator[ListAddonsResponseTypeDef]:
161
212
  """
162
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAddons.paginate)
213
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons.paginate)
163
214
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaddonspaginator)
164
215
  """
165
216
 
166
217
 
167
- class ListAssociatedAccessPoliciesPaginator(Paginator):
218
+ if TYPE_CHECKING:
219
+ _ListAssociatedAccessPoliciesPaginatorBase = Paginator[
220
+ ListAssociatedAccessPoliciesResponseTypeDef
221
+ ]
222
+ else:
223
+ _ListAssociatedAccessPoliciesPaginatorBase = Paginator # type: ignore[assignment]
224
+
225
+
226
+ class ListAssociatedAccessPoliciesPaginator(_ListAssociatedAccessPoliciesPaginatorBase):
168
227
  """
169
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAssociatedAccessPolicies)
228
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies)
170
229
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
171
230
  """
172
231
 
173
- def paginate(
174
- self, *, clusterName: str, principalArn: str, PaginationConfig: PaginatorConfigTypeDef = ...
175
- ) -> _PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
232
+ def paginate( # type: ignore[override]
233
+ self, **kwargs: Unpack[ListAssociatedAccessPoliciesRequestPaginateTypeDef]
234
+ ) -> PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
176
235
  """
177
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
236
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
178
237
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
179
238
  """
180
239
 
181
240
 
182
- class ListClustersPaginator(Paginator):
241
+ if TYPE_CHECKING:
242
+ _ListClustersPaginatorBase = Paginator[ListClustersResponseTypeDef]
243
+ else:
244
+ _ListClustersPaginatorBase = Paginator # type: ignore[assignment]
245
+
246
+
247
+ class ListClustersPaginator(_ListClustersPaginatorBase):
183
248
  """
184
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListClusters)
249
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters)
185
250
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listclusterspaginator)
186
251
  """
187
252
 
188
- def paginate(
189
- self, *, include: Sequence[str] = ..., PaginationConfig: PaginatorConfigTypeDef = ...
190
- ) -> _PageIterator[ListClustersResponseTypeDef]:
253
+ def paginate( # type: ignore[override]
254
+ self, **kwargs: Unpack[ListClustersRequestPaginateTypeDef]
255
+ ) -> PageIterator[ListClustersResponseTypeDef]:
191
256
  """
192
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListClusters.paginate)
257
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters.paginate)
193
258
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listclusterspaginator)
194
259
  """
195
260
 
196
261
 
197
- class ListEksAnywhereSubscriptionsPaginator(Paginator):
262
+ if TYPE_CHECKING:
263
+ _ListEksAnywhereSubscriptionsPaginatorBase = Paginator[
264
+ ListEksAnywhereSubscriptionsResponseTypeDef
265
+ ]
266
+ else:
267
+ _ListEksAnywhereSubscriptionsPaginatorBase = Paginator # type: ignore[assignment]
268
+
269
+
270
+ class ListEksAnywhereSubscriptionsPaginator(_ListEksAnywhereSubscriptionsPaginatorBase):
198
271
  """
199
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListEksAnywhereSubscriptions)
272
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions)
200
273
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
201
274
  """
202
275
 
203
- def paginate(
204
- self,
205
- *,
206
- includeStatus: Sequence[EksAnywhereSubscriptionStatusType] = ...,
207
- PaginationConfig: PaginatorConfigTypeDef = ...,
208
- ) -> _PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
276
+ def paginate( # type: ignore[override]
277
+ self, **kwargs: Unpack[ListEksAnywhereSubscriptionsRequestPaginateTypeDef]
278
+ ) -> PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
209
279
  """
210
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
280
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
211
281
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
212
282
  """
213
283
 
214
284
 
215
- class ListFargateProfilesPaginator(Paginator):
285
+ if TYPE_CHECKING:
286
+ _ListFargateProfilesPaginatorBase = Paginator[ListFargateProfilesResponseTypeDef]
287
+ else:
288
+ _ListFargateProfilesPaginatorBase = Paginator # type: ignore[assignment]
289
+
290
+
291
+ class ListFargateProfilesPaginator(_ListFargateProfilesPaginatorBase):
216
292
  """
217
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListFargateProfiles)
293
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles)
218
294
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listfargateprofilespaginator)
219
295
  """
220
296
 
221
- def paginate(
222
- self, *, clusterName: str, PaginationConfig: PaginatorConfigTypeDef = ...
223
- ) -> _PageIterator[ListFargateProfilesResponseTypeDef]:
297
+ def paginate( # type: ignore[override]
298
+ self, **kwargs: Unpack[ListFargateProfilesRequestPaginateTypeDef]
299
+ ) -> PageIterator[ListFargateProfilesResponseTypeDef]:
224
300
  """
225
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListFargateProfiles.paginate)
301
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles.paginate)
226
302
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listfargateprofilespaginator)
227
303
  """
228
304
 
229
305
 
230
- class ListIdentityProviderConfigsPaginator(Paginator):
306
+ if TYPE_CHECKING:
307
+ _ListIdentityProviderConfigsPaginatorBase = Paginator[
308
+ ListIdentityProviderConfigsResponseTypeDef
309
+ ]
310
+ else:
311
+ _ListIdentityProviderConfigsPaginatorBase = Paginator # type: ignore[assignment]
312
+
313
+
314
+ class ListIdentityProviderConfigsPaginator(_ListIdentityProviderConfigsPaginatorBase):
231
315
  """
232
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListIdentityProviderConfigs)
316
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs)
233
317
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
234
318
  """
235
319
 
236
- def paginate(
237
- self, *, clusterName: str, PaginationConfig: PaginatorConfigTypeDef = ...
238
- ) -> _PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
320
+ def paginate( # type: ignore[override]
321
+ self, **kwargs: Unpack[ListIdentityProviderConfigsRequestPaginateTypeDef]
322
+ ) -> PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
239
323
  """
240
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
324
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
241
325
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
242
326
  """
243
327
 
244
328
 
245
- class ListInsightsPaginator(Paginator):
329
+ if TYPE_CHECKING:
330
+ _ListInsightsPaginatorBase = Paginator[ListInsightsResponseTypeDef]
331
+ else:
332
+ _ListInsightsPaginatorBase = Paginator # type: ignore[assignment]
333
+
334
+
335
+ class ListInsightsPaginator(_ListInsightsPaginatorBase):
246
336
  """
247
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights)
337
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights)
248
338
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
249
339
  """
250
340
 
251
- def paginate(
252
- self,
253
- *,
254
- clusterName: str,
255
- filter: InsightsFilterTypeDef = ...,
256
- PaginationConfig: PaginatorConfigTypeDef = ...,
257
- ) -> _PageIterator[ListInsightsResponseTypeDef]:
341
+ def paginate( # type: ignore[override]
342
+ self, **kwargs: Unpack[ListInsightsRequestPaginateTypeDef]
343
+ ) -> PageIterator[ListInsightsResponseTypeDef]:
258
344
  """
259
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights.paginate)
345
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights.paginate)
260
346
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
261
347
  """
262
348
 
263
349
 
264
- class ListNodegroupsPaginator(Paginator):
350
+ if TYPE_CHECKING:
351
+ _ListNodegroupsPaginatorBase = Paginator[ListNodegroupsResponseTypeDef]
352
+ else:
353
+ _ListNodegroupsPaginatorBase = Paginator # type: ignore[assignment]
354
+
355
+
356
+ class ListNodegroupsPaginator(_ListNodegroupsPaginatorBase):
265
357
  """
266
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListNodegroups)
358
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups)
267
359
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listnodegroupspaginator)
268
360
  """
269
361
 
270
- def paginate(
271
- self, *, clusterName: str, PaginationConfig: PaginatorConfigTypeDef = ...
272
- ) -> _PageIterator[ListNodegroupsResponseTypeDef]:
362
+ def paginate( # type: ignore[override]
363
+ self, **kwargs: Unpack[ListNodegroupsRequestPaginateTypeDef]
364
+ ) -> PageIterator[ListNodegroupsResponseTypeDef]:
273
365
  """
274
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListNodegroups.paginate)
366
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups.paginate)
275
367
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listnodegroupspaginator)
276
368
  """
277
369
 
278
370
 
279
- class ListPodIdentityAssociationsPaginator(Paginator):
371
+ if TYPE_CHECKING:
372
+ _ListPodIdentityAssociationsPaginatorBase = Paginator[
373
+ ListPodIdentityAssociationsResponseTypeDef
374
+ ]
375
+ else:
376
+ _ListPodIdentityAssociationsPaginatorBase = Paginator # type: ignore[assignment]
377
+
378
+
379
+ class ListPodIdentityAssociationsPaginator(_ListPodIdentityAssociationsPaginatorBase):
280
380
  """
281
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListPodIdentityAssociations)
381
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations)
282
382
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listpodidentityassociationspaginator)
283
383
  """
284
384
 
285
- def paginate(
286
- self,
287
- *,
288
- clusterName: str,
289
- namespace: str = ...,
290
- serviceAccount: str = ...,
291
- PaginationConfig: PaginatorConfigTypeDef = ...,
292
- ) -> _PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
385
+ def paginate( # type: ignore[override]
386
+ self, **kwargs: Unpack[ListPodIdentityAssociationsRequestPaginateTypeDef]
387
+ ) -> PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
293
388
  """
294
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
389
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
295
390
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listpodidentityassociationspaginator)
296
391
  """
297
392
 
298
393
 
299
- class ListUpdatesPaginator(Paginator):
394
+ if TYPE_CHECKING:
395
+ _ListUpdatesPaginatorBase = Paginator[ListUpdatesResponseTypeDef]
396
+ else:
397
+ _ListUpdatesPaginatorBase = Paginator # type: ignore[assignment]
398
+
399
+
400
+ class ListUpdatesPaginator(_ListUpdatesPaginatorBase):
300
401
  """
301
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListUpdates)
402
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates)
302
403
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listupdatespaginator)
303
404
  """
304
405
 
305
- def paginate(
306
- self,
307
- *,
308
- name: str,
309
- nodegroupName: str = ...,
310
- addonName: str = ...,
311
- PaginationConfig: PaginatorConfigTypeDef = ...,
312
- ) -> _PageIterator[ListUpdatesResponseTypeDef]:
406
+ def paginate( # type: ignore[override]
407
+ self, **kwargs: Unpack[ListUpdatesRequestPaginateTypeDef]
408
+ ) -> PageIterator[ListUpdatesResponseTypeDef]:
313
409
  """
314
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListUpdates.paginate)
410
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates.paginate)
315
411
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listupdatespaginator)
316
412
  """