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.
- 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 +2 -1
- mypy_boto3_eks/literals.pyi +2 -1
- mypy_boto3_eks/paginator.py +153 -87
- mypy_boto3_eks/paginator.pyi +141 -86
- mypy_boto3_eks/type_defs.py +125 -143
- mypy_boto3_eks/type_defs.pyi +123 -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.81.dist-info → mypy_boto3_eks-1.35.86.dist-info}/METADATA +6 -6
- mypy_boto3_eks-1.35.86.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.35.81.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.81.dist-info → mypy_boto3_eks-1.35.86.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.35.81.dist-info → mypy_boto3_eks-1.35.86.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.35.81.dist-info → mypy_boto3_eks-1.35.86.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/paginator.pyi
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
|
|
|
@@ -101,190 +103,243 @@ __all__ = (
|
|
|
101
103
|
"ListUpdatesPaginator",
|
|
102
104
|
)
|
|
103
105
|
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
"""
|
|
109
|
-
Proxy method to specify iterator item type.
|
|
110
|
-
"""
|
|
106
|
+
if TYPE_CHECKING:
|
|
107
|
+
_DescribeAddonVersionsPaginatorBase = Paginator[DescribeAddonVersionsResponseTypeDef]
|
|
108
|
+
else:
|
|
109
|
+
_DescribeAddonVersionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
111
110
|
|
|
112
|
-
class DescribeAddonVersionsPaginator(
|
|
111
|
+
class DescribeAddonVersionsPaginator(_DescribeAddonVersionsPaginatorBase):
|
|
113
112
|
"""
|
|
114
113
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions)
|
|
115
114
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
|
|
116
115
|
"""
|
|
117
|
-
def paginate(
|
|
118
|
-
self, **kwargs: Unpack[
|
|
119
|
-
) ->
|
|
116
|
+
def paginate( # type: ignore[override]
|
|
117
|
+
self, **kwargs: Unpack[DescribeAddonVersionsRequestPaginateTypeDef]
|
|
118
|
+
) -> PageIterator[DescribeAddonVersionsResponseTypeDef]:
|
|
120
119
|
"""
|
|
121
120
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions.paginate)
|
|
122
121
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#describeaddonversionspaginator)
|
|
123
122
|
"""
|
|
124
123
|
|
|
125
|
-
|
|
124
|
+
if TYPE_CHECKING:
|
|
125
|
+
_ListAccessEntriesPaginatorBase = Paginator[ListAccessEntriesResponseTypeDef]
|
|
126
|
+
else:
|
|
127
|
+
_ListAccessEntriesPaginatorBase = Paginator # type: ignore[assignment]
|
|
128
|
+
|
|
129
|
+
class ListAccessEntriesPaginator(_ListAccessEntriesPaginatorBase):
|
|
126
130
|
"""
|
|
127
131
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries)
|
|
128
132
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccessentriespaginator)
|
|
129
133
|
"""
|
|
130
|
-
def paginate(
|
|
131
|
-
self, **kwargs: Unpack[
|
|
132
|
-
) ->
|
|
134
|
+
def paginate( # type: ignore[override]
|
|
135
|
+
self, **kwargs: Unpack[ListAccessEntriesRequestPaginateTypeDef]
|
|
136
|
+
) -> PageIterator[ListAccessEntriesResponseTypeDef]:
|
|
133
137
|
"""
|
|
134
138
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries.paginate)
|
|
135
139
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccessentriespaginator)
|
|
136
140
|
"""
|
|
137
141
|
|
|
138
|
-
|
|
142
|
+
if TYPE_CHECKING:
|
|
143
|
+
_ListAccessPoliciesPaginatorBase = Paginator[ListAccessPoliciesResponseTypeDef]
|
|
144
|
+
else:
|
|
145
|
+
_ListAccessPoliciesPaginatorBase = Paginator # type: ignore[assignment]
|
|
146
|
+
|
|
147
|
+
class ListAccessPoliciesPaginator(_ListAccessPoliciesPaginatorBase):
|
|
139
148
|
"""
|
|
140
149
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies)
|
|
141
150
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccesspoliciespaginator)
|
|
142
151
|
"""
|
|
143
|
-
def paginate(
|
|
144
|
-
self, **kwargs: Unpack[
|
|
145
|
-
) ->
|
|
152
|
+
def paginate( # type: ignore[override]
|
|
153
|
+
self, **kwargs: Unpack[ListAccessPoliciesRequestPaginateTypeDef]
|
|
154
|
+
) -> PageIterator[ListAccessPoliciesResponseTypeDef]:
|
|
146
155
|
"""
|
|
147
156
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies.paginate)
|
|
148
157
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaccesspoliciespaginator)
|
|
149
158
|
"""
|
|
150
159
|
|
|
151
|
-
|
|
160
|
+
if TYPE_CHECKING:
|
|
161
|
+
_ListAddonsPaginatorBase = Paginator[ListAddonsResponseTypeDef]
|
|
162
|
+
else:
|
|
163
|
+
_ListAddonsPaginatorBase = Paginator # type: ignore[assignment]
|
|
164
|
+
|
|
165
|
+
class ListAddonsPaginator(_ListAddonsPaginatorBase):
|
|
152
166
|
"""
|
|
153
167
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons)
|
|
154
168
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaddonspaginator)
|
|
155
169
|
"""
|
|
156
|
-
def paginate(
|
|
157
|
-
self, **kwargs: Unpack[
|
|
158
|
-
) ->
|
|
170
|
+
def paginate( # type: ignore[override]
|
|
171
|
+
self, **kwargs: Unpack[ListAddonsRequestPaginateTypeDef]
|
|
172
|
+
) -> PageIterator[ListAddonsResponseTypeDef]:
|
|
159
173
|
"""
|
|
160
174
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons.paginate)
|
|
161
175
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listaddonspaginator)
|
|
162
176
|
"""
|
|
163
177
|
|
|
164
|
-
|
|
178
|
+
if TYPE_CHECKING:
|
|
179
|
+
_ListAssociatedAccessPoliciesPaginatorBase = Paginator[
|
|
180
|
+
ListAssociatedAccessPoliciesResponseTypeDef
|
|
181
|
+
]
|
|
182
|
+
else:
|
|
183
|
+
_ListAssociatedAccessPoliciesPaginatorBase = Paginator # type: ignore[assignment]
|
|
184
|
+
|
|
185
|
+
class ListAssociatedAccessPoliciesPaginator(_ListAssociatedAccessPoliciesPaginatorBase):
|
|
165
186
|
"""
|
|
166
187
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies)
|
|
167
188
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
|
|
168
189
|
"""
|
|
169
|
-
def paginate(
|
|
170
|
-
self,
|
|
171
|
-
|
|
172
|
-
ListAssociatedAccessPoliciesRequestListAssociatedAccessPoliciesPaginateTypeDef
|
|
173
|
-
],
|
|
174
|
-
) -> _PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
|
|
190
|
+
def paginate( # type: ignore[override]
|
|
191
|
+
self, **kwargs: Unpack[ListAssociatedAccessPoliciesRequestPaginateTypeDef]
|
|
192
|
+
) -> PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
|
|
175
193
|
"""
|
|
176
194
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
|
|
177
195
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
|
|
178
196
|
"""
|
|
179
197
|
|
|
180
|
-
|
|
198
|
+
if TYPE_CHECKING:
|
|
199
|
+
_ListClustersPaginatorBase = Paginator[ListClustersResponseTypeDef]
|
|
200
|
+
else:
|
|
201
|
+
_ListClustersPaginatorBase = Paginator # type: ignore[assignment]
|
|
202
|
+
|
|
203
|
+
class ListClustersPaginator(_ListClustersPaginatorBase):
|
|
181
204
|
"""
|
|
182
205
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters)
|
|
183
206
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listclusterspaginator)
|
|
184
207
|
"""
|
|
185
|
-
def paginate(
|
|
186
|
-
self, **kwargs: Unpack[
|
|
187
|
-
) ->
|
|
208
|
+
def paginate( # type: ignore[override]
|
|
209
|
+
self, **kwargs: Unpack[ListClustersRequestPaginateTypeDef]
|
|
210
|
+
) -> PageIterator[ListClustersResponseTypeDef]:
|
|
188
211
|
"""
|
|
189
212
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters.paginate)
|
|
190
213
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listclusterspaginator)
|
|
191
214
|
"""
|
|
192
215
|
|
|
193
|
-
|
|
216
|
+
if TYPE_CHECKING:
|
|
217
|
+
_ListEksAnywhereSubscriptionsPaginatorBase = Paginator[
|
|
218
|
+
ListEksAnywhereSubscriptionsResponseTypeDef
|
|
219
|
+
]
|
|
220
|
+
else:
|
|
221
|
+
_ListEksAnywhereSubscriptionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
222
|
+
|
|
223
|
+
class ListEksAnywhereSubscriptionsPaginator(_ListEksAnywhereSubscriptionsPaginatorBase):
|
|
194
224
|
"""
|
|
195
225
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions)
|
|
196
226
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
|
|
197
227
|
"""
|
|
198
|
-
def paginate(
|
|
199
|
-
self,
|
|
200
|
-
|
|
201
|
-
ListEksAnywhereSubscriptionsRequestListEksAnywhereSubscriptionsPaginateTypeDef
|
|
202
|
-
],
|
|
203
|
-
) -> _PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
|
|
228
|
+
def paginate( # type: ignore[override]
|
|
229
|
+
self, **kwargs: Unpack[ListEksAnywhereSubscriptionsRequestPaginateTypeDef]
|
|
230
|
+
) -> PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
|
|
204
231
|
"""
|
|
205
232
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
|
|
206
233
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
|
|
207
234
|
"""
|
|
208
235
|
|
|
209
|
-
|
|
236
|
+
if TYPE_CHECKING:
|
|
237
|
+
_ListFargateProfilesPaginatorBase = Paginator[ListFargateProfilesResponseTypeDef]
|
|
238
|
+
else:
|
|
239
|
+
_ListFargateProfilesPaginatorBase = Paginator # type: ignore[assignment]
|
|
240
|
+
|
|
241
|
+
class ListFargateProfilesPaginator(_ListFargateProfilesPaginatorBase):
|
|
210
242
|
"""
|
|
211
243
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles)
|
|
212
244
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listfargateprofilespaginator)
|
|
213
245
|
"""
|
|
214
|
-
def paginate(
|
|
215
|
-
self, **kwargs: Unpack[
|
|
216
|
-
) ->
|
|
246
|
+
def paginate( # type: ignore[override]
|
|
247
|
+
self, **kwargs: Unpack[ListFargateProfilesRequestPaginateTypeDef]
|
|
248
|
+
) -> PageIterator[ListFargateProfilesResponseTypeDef]:
|
|
217
249
|
"""
|
|
218
250
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles.paginate)
|
|
219
251
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listfargateprofilespaginator)
|
|
220
252
|
"""
|
|
221
253
|
|
|
222
|
-
|
|
254
|
+
if TYPE_CHECKING:
|
|
255
|
+
_ListIdentityProviderConfigsPaginatorBase = Paginator[
|
|
256
|
+
ListIdentityProviderConfigsResponseTypeDef
|
|
257
|
+
]
|
|
258
|
+
else:
|
|
259
|
+
_ListIdentityProviderConfigsPaginatorBase = Paginator # type: ignore[assignment]
|
|
260
|
+
|
|
261
|
+
class ListIdentityProviderConfigsPaginator(_ListIdentityProviderConfigsPaginatorBase):
|
|
223
262
|
"""
|
|
224
263
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs)
|
|
225
264
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
|
|
226
265
|
"""
|
|
227
|
-
def paginate(
|
|
228
|
-
self,
|
|
229
|
-
|
|
230
|
-
ListIdentityProviderConfigsRequestListIdentityProviderConfigsPaginateTypeDef
|
|
231
|
-
],
|
|
232
|
-
) -> _PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
|
|
266
|
+
def paginate( # type: ignore[override]
|
|
267
|
+
self, **kwargs: Unpack[ListIdentityProviderConfigsRequestPaginateTypeDef]
|
|
268
|
+
) -> PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
|
|
233
269
|
"""
|
|
234
270
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
|
|
235
271
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listidentityproviderconfigspaginator)
|
|
236
272
|
"""
|
|
237
273
|
|
|
238
|
-
|
|
274
|
+
if TYPE_CHECKING:
|
|
275
|
+
_ListInsightsPaginatorBase = Paginator[ListInsightsResponseTypeDef]
|
|
276
|
+
else:
|
|
277
|
+
_ListInsightsPaginatorBase = Paginator # type: ignore[assignment]
|
|
278
|
+
|
|
279
|
+
class ListInsightsPaginator(_ListInsightsPaginatorBase):
|
|
239
280
|
"""
|
|
240
281
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights)
|
|
241
282
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
|
|
242
283
|
"""
|
|
243
|
-
def paginate(
|
|
244
|
-
self, **kwargs: Unpack[
|
|
245
|
-
) ->
|
|
284
|
+
def paginate( # type: ignore[override]
|
|
285
|
+
self, **kwargs: Unpack[ListInsightsRequestPaginateTypeDef]
|
|
286
|
+
) -> PageIterator[ListInsightsResponseTypeDef]:
|
|
246
287
|
"""
|
|
247
288
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights.paginate)
|
|
248
289
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listinsightspaginator)
|
|
249
290
|
"""
|
|
250
291
|
|
|
251
|
-
|
|
292
|
+
if TYPE_CHECKING:
|
|
293
|
+
_ListNodegroupsPaginatorBase = Paginator[ListNodegroupsResponseTypeDef]
|
|
294
|
+
else:
|
|
295
|
+
_ListNodegroupsPaginatorBase = Paginator # type: ignore[assignment]
|
|
296
|
+
|
|
297
|
+
class ListNodegroupsPaginator(_ListNodegroupsPaginatorBase):
|
|
252
298
|
"""
|
|
253
299
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups)
|
|
254
300
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listnodegroupspaginator)
|
|
255
301
|
"""
|
|
256
|
-
def paginate(
|
|
257
|
-
self, **kwargs: Unpack[
|
|
258
|
-
) ->
|
|
302
|
+
def paginate( # type: ignore[override]
|
|
303
|
+
self, **kwargs: Unpack[ListNodegroupsRequestPaginateTypeDef]
|
|
304
|
+
) -> PageIterator[ListNodegroupsResponseTypeDef]:
|
|
259
305
|
"""
|
|
260
306
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups.paginate)
|
|
261
307
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listnodegroupspaginator)
|
|
262
308
|
"""
|
|
263
309
|
|
|
264
|
-
|
|
310
|
+
if TYPE_CHECKING:
|
|
311
|
+
_ListPodIdentityAssociationsPaginatorBase = Paginator[
|
|
312
|
+
ListPodIdentityAssociationsResponseTypeDef
|
|
313
|
+
]
|
|
314
|
+
else:
|
|
315
|
+
_ListPodIdentityAssociationsPaginatorBase = Paginator # type: ignore[assignment]
|
|
316
|
+
|
|
317
|
+
class ListPodIdentityAssociationsPaginator(_ListPodIdentityAssociationsPaginatorBase):
|
|
265
318
|
"""
|
|
266
319
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations)
|
|
267
320
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listpodidentityassociationspaginator)
|
|
268
321
|
"""
|
|
269
|
-
def paginate(
|
|
270
|
-
self,
|
|
271
|
-
|
|
272
|
-
ListPodIdentityAssociationsRequestListPodIdentityAssociationsPaginateTypeDef
|
|
273
|
-
],
|
|
274
|
-
) -> _PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
|
|
322
|
+
def paginate( # type: ignore[override]
|
|
323
|
+
self, **kwargs: Unpack[ListPodIdentityAssociationsRequestPaginateTypeDef]
|
|
324
|
+
) -> PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
|
|
275
325
|
"""
|
|
276
326
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
|
|
277
327
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listpodidentityassociationspaginator)
|
|
278
328
|
"""
|
|
279
329
|
|
|
280
|
-
|
|
330
|
+
if TYPE_CHECKING:
|
|
331
|
+
_ListUpdatesPaginatorBase = Paginator[ListUpdatesResponseTypeDef]
|
|
332
|
+
else:
|
|
333
|
+
_ListUpdatesPaginatorBase = Paginator # type: ignore[assignment]
|
|
334
|
+
|
|
335
|
+
class ListUpdatesPaginator(_ListUpdatesPaginatorBase):
|
|
281
336
|
"""
|
|
282
337
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates)
|
|
283
338
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listupdatespaginator)
|
|
284
339
|
"""
|
|
285
|
-
def paginate(
|
|
286
|
-
self, **kwargs: Unpack[
|
|
287
|
-
) ->
|
|
340
|
+
def paginate( # type: ignore[override]
|
|
341
|
+
self, **kwargs: Unpack[ListUpdatesRequestPaginateTypeDef]
|
|
342
|
+
) -> PageIterator[ListUpdatesResponseTypeDef]:
|
|
288
343
|
"""
|
|
289
344
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates.paginate)
|
|
290
345
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listupdatespaginator)
|