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,52 @@ 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
+
70
94
  __all__ = (
71
95
  "DescribeAddonVersionsPaginator",
96
+ "DescribeClusterVersionsPaginator",
72
97
  "ListAccessEntriesPaginator",
73
98
  "ListAccessPoliciesPaginator",
74
99
  "ListAddonsPaginator",
@@ -83,220 +108,262 @@ __all__ = (
83
108
  "ListUpdatesPaginator",
84
109
  )
85
110
 
86
- _ItemTypeDef = TypeVar("_ItemTypeDef")
111
+ if TYPE_CHECKING:
112
+ _DescribeAddonVersionsPaginatorBase = Paginator[DescribeAddonVersionsResponseTypeDef]
113
+ else:
114
+ _DescribeAddonVersionsPaginatorBase = Paginator # type: ignore[assignment]
87
115
 
88
- class _PageIterator(Generic[_ItemTypeDef], PageIterator):
89
- def __iter__(self) -> Iterator[_ItemTypeDef]:
116
+ class DescribeAddonVersionsPaginator(_DescribeAddonVersionsPaginatorBase):
117
+ """
118
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions)
119
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
120
+ """
121
+ def paginate( # type: ignore[override]
122
+ self, **kwargs: Unpack[DescribeAddonVersionsRequestPaginateTypeDef]
123
+ ) -> PageIterator[DescribeAddonVersionsResponseTypeDef]:
90
124
  """
91
- Proxy method to specify iterator item type.
125
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions.paginate)
126
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
92
127
  """
93
128
 
94
- class DescribeAddonVersionsPaginator(Paginator):
129
+ if TYPE_CHECKING:
130
+ _DescribeClusterVersionsPaginatorBase = Paginator[DescribeClusterVersionsResponseTypeDef]
131
+ else:
132
+ _DescribeClusterVersionsPaginatorBase = Paginator # type: ignore[assignment]
133
+
134
+ class DescribeClusterVersionsPaginator(_DescribeClusterVersionsPaginatorBase):
95
135
  """
96
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.DescribeAddonVersions)
97
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
136
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeClusterVersions.html#EKS.Paginator.DescribeClusterVersions)
137
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeclusterversionspaginator)
98
138
  """
99
-
100
- 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 = ...,
109
- ) -> _PageIterator[DescribeAddonVersionsResponseTypeDef]:
139
+ def paginate( # type: ignore[override]
140
+ self, **kwargs: Unpack[DescribeClusterVersionsRequestPaginateTypeDef]
141
+ ) -> PageIterator[DescribeClusterVersionsResponseTypeDef]:
110
142
  """
111
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.DescribeAddonVersions.paginate)
112
- [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
143
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeClusterVersions.html#EKS.Paginator.DescribeClusterVersions.paginate)
144
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeclusterversionspaginator)
113
145
  """
114
146
 
115
- class ListAccessEntriesPaginator(Paginator):
147
+ if TYPE_CHECKING:
148
+ _ListAccessEntriesPaginatorBase = Paginator[ListAccessEntriesResponseTypeDef]
149
+ else:
150
+ _ListAccessEntriesPaginatorBase = Paginator # type: ignore[assignment]
151
+
152
+ class ListAccessEntriesPaginator(_ListAccessEntriesPaginatorBase):
116
153
  """
117
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessEntries)
154
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries)
118
155
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccessentriespaginator)
119
156
  """
120
-
121
- def paginate(
122
- self,
123
- *,
124
- clusterName: str,
125
- associatedPolicyArn: str = ...,
126
- PaginationConfig: PaginatorConfigTypeDef = ...,
127
- ) -> _PageIterator[ListAccessEntriesResponseTypeDef]:
157
+ def paginate( # type: ignore[override]
158
+ self, **kwargs: Unpack[ListAccessEntriesRequestPaginateTypeDef]
159
+ ) -> PageIterator[ListAccessEntriesResponseTypeDef]:
128
160
  """
129
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessEntries.paginate)
161
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries.paginate)
130
162
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccessentriespaginator)
131
163
  """
132
164
 
133
- class ListAccessPoliciesPaginator(Paginator):
165
+ if TYPE_CHECKING:
166
+ _ListAccessPoliciesPaginatorBase = Paginator[ListAccessPoliciesResponseTypeDef]
167
+ else:
168
+ _ListAccessPoliciesPaginatorBase = Paginator # type: ignore[assignment]
169
+
170
+ class ListAccessPoliciesPaginator(_ListAccessPoliciesPaginatorBase):
134
171
  """
135
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessPolicies)
172
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies)
136
173
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccesspoliciespaginator)
137
174
  """
138
-
139
- def paginate(
140
- self, *, PaginationConfig: PaginatorConfigTypeDef = ...
141
- ) -> _PageIterator[ListAccessPoliciesResponseTypeDef]:
175
+ def paginate( # type: ignore[override]
176
+ self, **kwargs: Unpack[ListAccessPoliciesRequestPaginateTypeDef]
177
+ ) -> PageIterator[ListAccessPoliciesResponseTypeDef]:
142
178
  """
143
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAccessPolicies.paginate)
179
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies.paginate)
144
180
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccesspoliciespaginator)
145
181
  """
146
182
 
147
- class ListAddonsPaginator(Paginator):
183
+ if TYPE_CHECKING:
184
+ _ListAddonsPaginatorBase = Paginator[ListAddonsResponseTypeDef]
185
+ else:
186
+ _ListAddonsPaginatorBase = Paginator # type: ignore[assignment]
187
+
188
+ class ListAddonsPaginator(_ListAddonsPaginatorBase):
148
189
  """
149
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAddons)
190
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons)
150
191
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaddonspaginator)
151
192
  """
152
-
153
- def paginate(
154
- self, *, clusterName: str, PaginationConfig: PaginatorConfigTypeDef = ...
155
- ) -> _PageIterator[ListAddonsResponseTypeDef]:
193
+ def paginate( # type: ignore[override]
194
+ self, **kwargs: Unpack[ListAddonsRequestPaginateTypeDef]
195
+ ) -> PageIterator[ListAddonsResponseTypeDef]:
156
196
  """
157
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAddons.paginate)
197
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons.paginate)
158
198
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaddonspaginator)
159
199
  """
160
200
 
161
- class ListAssociatedAccessPoliciesPaginator(Paginator):
201
+ if TYPE_CHECKING:
202
+ _ListAssociatedAccessPoliciesPaginatorBase = Paginator[
203
+ ListAssociatedAccessPoliciesResponseTypeDef
204
+ ]
205
+ else:
206
+ _ListAssociatedAccessPoliciesPaginatorBase = Paginator # type: ignore[assignment]
207
+
208
+ class ListAssociatedAccessPoliciesPaginator(_ListAssociatedAccessPoliciesPaginatorBase):
162
209
  """
163
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAssociatedAccessPolicies)
210
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies)
164
211
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
165
212
  """
166
-
167
- def paginate(
168
- self, *, clusterName: str, principalArn: str, PaginationConfig: PaginatorConfigTypeDef = ...
169
- ) -> _PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
213
+ def paginate( # type: ignore[override]
214
+ self, **kwargs: Unpack[ListAssociatedAccessPoliciesRequestPaginateTypeDef]
215
+ ) -> PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
170
216
  """
171
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
217
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
172
218
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
173
219
  """
174
220
 
175
- class ListClustersPaginator(Paginator):
221
+ if TYPE_CHECKING:
222
+ _ListClustersPaginatorBase = Paginator[ListClustersResponseTypeDef]
223
+ else:
224
+ _ListClustersPaginatorBase = Paginator # type: ignore[assignment]
225
+
226
+ class ListClustersPaginator(_ListClustersPaginatorBase):
176
227
  """
177
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListClusters)
228
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters)
178
229
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listclusterspaginator)
179
230
  """
180
-
181
- def paginate(
182
- self, *, include: Sequence[str] = ..., PaginationConfig: PaginatorConfigTypeDef = ...
183
- ) -> _PageIterator[ListClustersResponseTypeDef]:
231
+ def paginate( # type: ignore[override]
232
+ self, **kwargs: Unpack[ListClustersRequestPaginateTypeDef]
233
+ ) -> PageIterator[ListClustersResponseTypeDef]:
184
234
  """
185
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListClusters.paginate)
235
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters.paginate)
186
236
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listclusterspaginator)
187
237
  """
188
238
 
189
- class ListEksAnywhereSubscriptionsPaginator(Paginator):
239
+ if TYPE_CHECKING:
240
+ _ListEksAnywhereSubscriptionsPaginatorBase = Paginator[
241
+ ListEksAnywhereSubscriptionsResponseTypeDef
242
+ ]
243
+ else:
244
+ _ListEksAnywhereSubscriptionsPaginatorBase = Paginator # type: ignore[assignment]
245
+
246
+ class ListEksAnywhereSubscriptionsPaginator(_ListEksAnywhereSubscriptionsPaginatorBase):
190
247
  """
191
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListEksAnywhereSubscriptions)
248
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions)
192
249
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
193
250
  """
194
-
195
- def paginate(
196
- self,
197
- *,
198
- includeStatus: Sequence[EksAnywhereSubscriptionStatusType] = ...,
199
- PaginationConfig: PaginatorConfigTypeDef = ...,
200
- ) -> _PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
251
+ def paginate( # type: ignore[override]
252
+ self, **kwargs: Unpack[ListEksAnywhereSubscriptionsRequestPaginateTypeDef]
253
+ ) -> PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
201
254
  """
202
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
255
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
203
256
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
204
257
  """
205
258
 
206
- class ListFargateProfilesPaginator(Paginator):
259
+ if TYPE_CHECKING:
260
+ _ListFargateProfilesPaginatorBase = Paginator[ListFargateProfilesResponseTypeDef]
261
+ else:
262
+ _ListFargateProfilesPaginatorBase = Paginator # type: ignore[assignment]
263
+
264
+ class ListFargateProfilesPaginator(_ListFargateProfilesPaginatorBase):
207
265
  """
208
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListFargateProfiles)
266
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles)
209
267
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listfargateprofilespaginator)
210
268
  """
211
-
212
- def paginate(
213
- self, *, clusterName: str, PaginationConfig: PaginatorConfigTypeDef = ...
214
- ) -> _PageIterator[ListFargateProfilesResponseTypeDef]:
269
+ def paginate( # type: ignore[override]
270
+ self, **kwargs: Unpack[ListFargateProfilesRequestPaginateTypeDef]
271
+ ) -> PageIterator[ListFargateProfilesResponseTypeDef]:
215
272
  """
216
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListFargateProfiles.paginate)
273
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles.paginate)
217
274
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listfargateprofilespaginator)
218
275
  """
219
276
 
220
- class ListIdentityProviderConfigsPaginator(Paginator):
277
+ if TYPE_CHECKING:
278
+ _ListIdentityProviderConfigsPaginatorBase = Paginator[
279
+ ListIdentityProviderConfigsResponseTypeDef
280
+ ]
281
+ else:
282
+ _ListIdentityProviderConfigsPaginatorBase = Paginator # type: ignore[assignment]
283
+
284
+ class ListIdentityProviderConfigsPaginator(_ListIdentityProviderConfigsPaginatorBase):
221
285
  """
222
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListIdentityProviderConfigs)
286
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs)
223
287
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
224
288
  """
225
-
226
- def paginate(
227
- self, *, clusterName: str, PaginationConfig: PaginatorConfigTypeDef = ...
228
- ) -> _PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
289
+ def paginate( # type: ignore[override]
290
+ self, **kwargs: Unpack[ListIdentityProviderConfigsRequestPaginateTypeDef]
291
+ ) -> PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
229
292
  """
230
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
293
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
231
294
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
232
295
  """
233
296
 
234
- class ListInsightsPaginator(Paginator):
297
+ if TYPE_CHECKING:
298
+ _ListInsightsPaginatorBase = Paginator[ListInsightsResponseTypeDef]
299
+ else:
300
+ _ListInsightsPaginatorBase = Paginator # type: ignore[assignment]
301
+
302
+ class ListInsightsPaginator(_ListInsightsPaginatorBase):
235
303
  """
236
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights)
304
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights)
237
305
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
238
306
  """
239
-
240
- def paginate(
241
- self,
242
- *,
243
- clusterName: str,
244
- filter: InsightsFilterTypeDef = ...,
245
- PaginationConfig: PaginatorConfigTypeDef = ...,
246
- ) -> _PageIterator[ListInsightsResponseTypeDef]:
307
+ def paginate( # type: ignore[override]
308
+ self, **kwargs: Unpack[ListInsightsRequestPaginateTypeDef]
309
+ ) -> PageIterator[ListInsightsResponseTypeDef]:
247
310
  """
248
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListInsights.paginate)
311
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights.paginate)
249
312
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
250
313
  """
251
314
 
252
- class ListNodegroupsPaginator(Paginator):
315
+ if TYPE_CHECKING:
316
+ _ListNodegroupsPaginatorBase = Paginator[ListNodegroupsResponseTypeDef]
317
+ else:
318
+ _ListNodegroupsPaginatorBase = Paginator # type: ignore[assignment]
319
+
320
+ class ListNodegroupsPaginator(_ListNodegroupsPaginatorBase):
253
321
  """
254
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListNodegroups)
322
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups)
255
323
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listnodegroupspaginator)
256
324
  """
257
-
258
- def paginate(
259
- self, *, clusterName: str, PaginationConfig: PaginatorConfigTypeDef = ...
260
- ) -> _PageIterator[ListNodegroupsResponseTypeDef]:
325
+ def paginate( # type: ignore[override]
326
+ self, **kwargs: Unpack[ListNodegroupsRequestPaginateTypeDef]
327
+ ) -> PageIterator[ListNodegroupsResponseTypeDef]:
261
328
  """
262
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListNodegroups.paginate)
329
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups.paginate)
263
330
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listnodegroupspaginator)
264
331
  """
265
332
 
266
- class ListPodIdentityAssociationsPaginator(Paginator):
333
+ if TYPE_CHECKING:
334
+ _ListPodIdentityAssociationsPaginatorBase = Paginator[
335
+ ListPodIdentityAssociationsResponseTypeDef
336
+ ]
337
+ else:
338
+ _ListPodIdentityAssociationsPaginatorBase = Paginator # type: ignore[assignment]
339
+
340
+ class ListPodIdentityAssociationsPaginator(_ListPodIdentityAssociationsPaginatorBase):
267
341
  """
268
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListPodIdentityAssociations)
342
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations)
269
343
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listpodidentityassociationspaginator)
270
344
  """
271
-
272
- def paginate(
273
- self,
274
- *,
275
- clusterName: str,
276
- namespace: str = ...,
277
- serviceAccount: str = ...,
278
- PaginationConfig: PaginatorConfigTypeDef = ...,
279
- ) -> _PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
345
+ def paginate( # type: ignore[override]
346
+ self, **kwargs: Unpack[ListPodIdentityAssociationsRequestPaginateTypeDef]
347
+ ) -> PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
280
348
  """
281
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
349
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
282
350
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listpodidentityassociationspaginator)
283
351
  """
284
352
 
285
- class ListUpdatesPaginator(Paginator):
353
+ if TYPE_CHECKING:
354
+ _ListUpdatesPaginatorBase = Paginator[ListUpdatesResponseTypeDef]
355
+ else:
356
+ _ListUpdatesPaginatorBase = Paginator # type: ignore[assignment]
357
+
358
+ class ListUpdatesPaginator(_ListUpdatesPaginatorBase):
286
359
  """
287
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListUpdates)
360
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates)
288
361
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listupdatespaginator)
289
362
  """
290
-
291
- def paginate(
292
- self,
293
- *,
294
- name: str,
295
- nodegroupName: str = ...,
296
- addonName: str = ...,
297
- PaginationConfig: PaginatorConfigTypeDef = ...,
298
- ) -> _PageIterator[ListUpdatesResponseTypeDef]:
363
+ def paginate( # type: ignore[override]
364
+ self, **kwargs: Unpack[ListUpdatesRequestPaginateTypeDef]
365
+ ) -> PageIterator[ListUpdatesResponseTypeDef]:
299
366
  """
300
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Paginator.ListUpdates.paginate)
367
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates.paginate)
301
368
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listupdatespaginator)
302
369
  """