mypy-boto3-eks 1.35.72__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.
- mypy_boto3_eks/__main__.py +8 -7
- mypy_boto3_eks/client.py +90 -78
- mypy_boto3_eks/client.pyi +90 -77
- mypy_boto3_eks/literals.py +7 -1
- mypy_boto3_eks/literals.pyi +7 -1
- mypy_boto3_eks/paginator.py +153 -87
- mypy_boto3_eks/paginator.pyi +141 -86
- mypy_boto3_eks/type_defs.py +133 -143
- mypy_boto3_eks/type_defs.pyi +130 -138
- mypy_boto3_eks/version.py +1 -1
- mypy_boto3_eks/waiter.py +29 -19
- mypy_boto3_eks/waiter.pyi +29 -19
- {mypy_boto3_eks-1.35.72.dist-info → mypy_boto3_eks-1.35.86.dist-info}/METADATA +21 -7
- mypy_boto3_eks-1.35.86.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.35.72.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.72.dist-info → mypy_boto3_eks-1.35.86.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.35.72.dist-info → mypy_boto3_eks-1.35.86.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.35.72.dist-info → mypy_boto3_eks-1.35.86.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/paginator.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for eks service client paginators.
|
|
3
3
|
|
|
4
|
-
[
|
|
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
|
|
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
|
-
|
|
57
|
+
DescribeAddonVersionsRequestPaginateTypeDef,
|
|
56
58
|
DescribeAddonVersionsResponseTypeDef,
|
|
57
|
-
|
|
59
|
+
ListAccessEntriesRequestPaginateTypeDef,
|
|
58
60
|
ListAccessEntriesResponseTypeDef,
|
|
59
|
-
|
|
61
|
+
ListAccessPoliciesRequestPaginateTypeDef,
|
|
60
62
|
ListAccessPoliciesResponseTypeDef,
|
|
61
|
-
|
|
63
|
+
ListAddonsRequestPaginateTypeDef,
|
|
62
64
|
ListAddonsResponseTypeDef,
|
|
63
|
-
|
|
65
|
+
ListAssociatedAccessPoliciesRequestPaginateTypeDef,
|
|
64
66
|
ListAssociatedAccessPoliciesResponseTypeDef,
|
|
65
|
-
|
|
67
|
+
ListClustersRequestPaginateTypeDef,
|
|
66
68
|
ListClustersResponseTypeDef,
|
|
67
|
-
|
|
69
|
+
ListEksAnywhereSubscriptionsRequestPaginateTypeDef,
|
|
68
70
|
ListEksAnywhereSubscriptionsResponseTypeDef,
|
|
69
|
-
|
|
71
|
+
ListFargateProfilesRequestPaginateTypeDef,
|
|
70
72
|
ListFargateProfilesResponseTypeDef,
|
|
71
|
-
|
|
73
|
+
ListIdentityProviderConfigsRequestPaginateTypeDef,
|
|
72
74
|
ListIdentityProviderConfigsResponseTypeDef,
|
|
73
|
-
|
|
75
|
+
ListInsightsRequestPaginateTypeDef,
|
|
74
76
|
ListInsightsResponseTypeDef,
|
|
75
|
-
|
|
77
|
+
ListNodegroupsRequestPaginateTypeDef,
|
|
76
78
|
ListNodegroupsResponseTypeDef,
|
|
77
|
-
|
|
79
|
+
ListPodIdentityAssociationsRequestPaginateTypeDef,
|
|
78
80
|
ListPodIdentityAssociationsResponseTypeDef,
|
|
79
|
-
|
|
81
|
+
ListUpdatesRequestPaginateTypeDef,
|
|
80
82
|
ListUpdatesResponseTypeDef,
|
|
81
83
|
)
|
|
82
84
|
|
|
@@ -103,217 +105,281 @@ __all__ = (
|
|
|
103
105
|
)
|
|
104
106
|
|
|
105
107
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
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(
|
|
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[
|
|
124
|
-
) ->
|
|
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
|
-
|
|
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[
|
|
139
|
-
) ->
|
|
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
|
-
|
|
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[
|
|
154
|
-
) ->
|
|
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
|
-
|
|
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[
|
|
169
|
-
) ->
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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[
|
|
202
|
-
) ->
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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[
|
|
235
|
-
) ->
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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[
|
|
268
|
-
) ->
|
|
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
|
-
|
|
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[
|
|
283
|
-
) ->
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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[
|
|
316
|
-
) ->
|
|
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)
|