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