types-boto3-eks 1.35.71__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.
@@ -0,0 +1,320 @@
1
+ """
2
+ Type annotations for eks service client paginators.
3
+
4
+ [Open 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
+ ListAccessEntriesPaginator,
15
+ ListAccessPoliciesPaginator,
16
+ ListAddonsPaginator,
17
+ ListAssociatedAccessPoliciesPaginator,
18
+ ListClustersPaginator,
19
+ ListEksAnywhereSubscriptionsPaginator,
20
+ ListFargateProfilesPaginator,
21
+ ListIdentityProviderConfigsPaginator,
22
+ ListInsightsPaginator,
23
+ ListNodegroupsPaginator,
24
+ ListPodIdentityAssociationsPaginator,
25
+ ListUpdatesPaginator,
26
+ )
27
+
28
+ session = Session()
29
+ client: EKSClient = session.client("eks")
30
+
31
+ describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
32
+ list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
33
+ list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
34
+ list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
35
+ list_associated_access_policies_paginator: ListAssociatedAccessPoliciesPaginator = client.get_paginator("list_associated_access_policies")
36
+ list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
37
+ list_eks_anywhere_subscriptions_paginator: ListEksAnywhereSubscriptionsPaginator = client.get_paginator("list_eks_anywhere_subscriptions")
38
+ list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_paginator("list_fargate_profiles")
39
+ list_identity_provider_configs_paginator: ListIdentityProviderConfigsPaginator = client.get_paginator("list_identity_provider_configs")
40
+ list_insights_paginator: ListInsightsPaginator = client.get_paginator("list_insights")
41
+ list_nodegroups_paginator: ListNodegroupsPaginator = client.get_paginator("list_nodegroups")
42
+ list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
43
+ list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
44
+ ```
45
+
46
+ Copyright 2024 Vlad Emelianov
47
+ """
48
+
49
+ import sys
50
+ from typing import Generic, Iterator, TypeVar
51
+
52
+ from botocore.paginate import PageIterator, Paginator
53
+
54
+ from .type_defs import (
55
+ DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef,
56
+ DescribeAddonVersionsResponseTypeDef,
57
+ ListAccessEntriesRequestListAccessEntriesPaginateTypeDef,
58
+ ListAccessEntriesResponseTypeDef,
59
+ ListAccessPoliciesRequestListAccessPoliciesPaginateTypeDef,
60
+ ListAccessPoliciesResponseTypeDef,
61
+ ListAddonsRequestListAddonsPaginateTypeDef,
62
+ ListAddonsResponseTypeDef,
63
+ ListAssociatedAccessPoliciesRequestListAssociatedAccessPoliciesPaginateTypeDef,
64
+ ListAssociatedAccessPoliciesResponseTypeDef,
65
+ ListClustersRequestListClustersPaginateTypeDef,
66
+ ListClustersResponseTypeDef,
67
+ ListEksAnywhereSubscriptionsRequestListEksAnywhereSubscriptionsPaginateTypeDef,
68
+ ListEksAnywhereSubscriptionsResponseTypeDef,
69
+ ListFargateProfilesRequestListFargateProfilesPaginateTypeDef,
70
+ ListFargateProfilesResponseTypeDef,
71
+ ListIdentityProviderConfigsRequestListIdentityProviderConfigsPaginateTypeDef,
72
+ ListIdentityProviderConfigsResponseTypeDef,
73
+ ListInsightsRequestListInsightsPaginateTypeDef,
74
+ ListInsightsResponseTypeDef,
75
+ ListNodegroupsRequestListNodegroupsPaginateTypeDef,
76
+ ListNodegroupsResponseTypeDef,
77
+ ListPodIdentityAssociationsRequestListPodIdentityAssociationsPaginateTypeDef,
78
+ ListPodIdentityAssociationsResponseTypeDef,
79
+ ListUpdatesRequestListUpdatesPaginateTypeDef,
80
+ ListUpdatesResponseTypeDef,
81
+ )
82
+
83
+ if sys.version_info >= (3, 12):
84
+ from typing import Unpack
85
+ else:
86
+ from typing_extensions import Unpack
87
+
88
+
89
+ __all__ = (
90
+ "DescribeAddonVersionsPaginator",
91
+ "ListAccessEntriesPaginator",
92
+ "ListAccessPoliciesPaginator",
93
+ "ListAddonsPaginator",
94
+ "ListAssociatedAccessPoliciesPaginator",
95
+ "ListClustersPaginator",
96
+ "ListEksAnywhereSubscriptionsPaginator",
97
+ "ListFargateProfilesPaginator",
98
+ "ListIdentityProviderConfigsPaginator",
99
+ "ListInsightsPaginator",
100
+ "ListNodegroupsPaginator",
101
+ "ListPodIdentityAssociationsPaginator",
102
+ "ListUpdatesPaginator",
103
+ )
104
+
105
+
106
+ _ItemTypeDef = TypeVar("_ItemTypeDef")
107
+
108
+
109
+ class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
110
+ def __iter__(self) -> Iterator[_ItemTypeDef]:
111
+ """
112
+ Proxy method to specify iterator item type.
113
+ """
114
+
115
+
116
+ class DescribeAddonVersionsPaginator(Paginator):
117
+ """
118
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions)
119
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#describeaddonversionspaginator)
120
+ """
121
+
122
+ def paginate(
123
+ self, **kwargs: Unpack[DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef]
124
+ ) -> _PageIterator[DescribeAddonVersionsResponseTypeDef]:
125
+ """
126
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions.paginate)
127
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#describeaddonversionspaginator)
128
+ """
129
+
130
+
131
+ class ListAccessEntriesPaginator(Paginator):
132
+ """
133
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries)
134
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listaccessentriespaginator)
135
+ """
136
+
137
+ def paginate(
138
+ self, **kwargs: Unpack[ListAccessEntriesRequestListAccessEntriesPaginateTypeDef]
139
+ ) -> _PageIterator[ListAccessEntriesResponseTypeDef]:
140
+ """
141
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries.paginate)
142
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listaccessentriespaginator)
143
+ """
144
+
145
+
146
+ class ListAccessPoliciesPaginator(Paginator):
147
+ """
148
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies)
149
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listaccesspoliciespaginator)
150
+ """
151
+
152
+ def paginate(
153
+ self, **kwargs: Unpack[ListAccessPoliciesRequestListAccessPoliciesPaginateTypeDef]
154
+ ) -> _PageIterator[ListAccessPoliciesResponseTypeDef]:
155
+ """
156
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies.paginate)
157
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listaccesspoliciespaginator)
158
+ """
159
+
160
+
161
+ class ListAddonsPaginator(Paginator):
162
+ """
163
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons)
164
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listaddonspaginator)
165
+ """
166
+
167
+ def paginate(
168
+ self, **kwargs: Unpack[ListAddonsRequestListAddonsPaginateTypeDef]
169
+ ) -> _PageIterator[ListAddonsResponseTypeDef]:
170
+ """
171
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons.paginate)
172
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listaddonspaginator)
173
+ """
174
+
175
+
176
+ class ListAssociatedAccessPoliciesPaginator(Paginator):
177
+ """
178
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies)
179
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
180
+ """
181
+
182
+ def paginate(
183
+ self,
184
+ **kwargs: Unpack[
185
+ ListAssociatedAccessPoliciesRequestListAssociatedAccessPoliciesPaginateTypeDef
186
+ ],
187
+ ) -> _PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
188
+ """
189
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
190
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
191
+ """
192
+
193
+
194
+ class ListClustersPaginator(Paginator):
195
+ """
196
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters)
197
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listclusterspaginator)
198
+ """
199
+
200
+ def paginate(
201
+ self, **kwargs: Unpack[ListClustersRequestListClustersPaginateTypeDef]
202
+ ) -> _PageIterator[ListClustersResponseTypeDef]:
203
+ """
204
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters.paginate)
205
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listclusterspaginator)
206
+ """
207
+
208
+
209
+ class ListEksAnywhereSubscriptionsPaginator(Paginator):
210
+ """
211
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions)
212
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
213
+ """
214
+
215
+ def paginate(
216
+ self,
217
+ **kwargs: Unpack[
218
+ ListEksAnywhereSubscriptionsRequestListEksAnywhereSubscriptionsPaginateTypeDef
219
+ ],
220
+ ) -> _PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
221
+ """
222
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
223
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
224
+ """
225
+
226
+
227
+ class ListFargateProfilesPaginator(Paginator):
228
+ """
229
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles)
230
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listfargateprofilespaginator)
231
+ """
232
+
233
+ def paginate(
234
+ self, **kwargs: Unpack[ListFargateProfilesRequestListFargateProfilesPaginateTypeDef]
235
+ ) -> _PageIterator[ListFargateProfilesResponseTypeDef]:
236
+ """
237
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles.paginate)
238
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listfargateprofilespaginator)
239
+ """
240
+
241
+
242
+ class ListIdentityProviderConfigsPaginator(Paginator):
243
+ """
244
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs)
245
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listidentityproviderconfigspaginator)
246
+ """
247
+
248
+ def paginate(
249
+ self,
250
+ **kwargs: Unpack[
251
+ ListIdentityProviderConfigsRequestListIdentityProviderConfigsPaginateTypeDef
252
+ ],
253
+ ) -> _PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
254
+ """
255
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
256
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listidentityproviderconfigspaginator)
257
+ """
258
+
259
+
260
+ class ListInsightsPaginator(Paginator):
261
+ """
262
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights)
263
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listinsightspaginator)
264
+ """
265
+
266
+ def paginate(
267
+ self, **kwargs: Unpack[ListInsightsRequestListInsightsPaginateTypeDef]
268
+ ) -> _PageIterator[ListInsightsResponseTypeDef]:
269
+ """
270
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights.paginate)
271
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listinsightspaginator)
272
+ """
273
+
274
+
275
+ class ListNodegroupsPaginator(Paginator):
276
+ """
277
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups)
278
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listnodegroupspaginator)
279
+ """
280
+
281
+ def paginate(
282
+ self, **kwargs: Unpack[ListNodegroupsRequestListNodegroupsPaginateTypeDef]
283
+ ) -> _PageIterator[ListNodegroupsResponseTypeDef]:
284
+ """
285
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups.paginate)
286
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listnodegroupspaginator)
287
+ """
288
+
289
+
290
+ class ListPodIdentityAssociationsPaginator(Paginator):
291
+ """
292
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations)
293
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listpodidentityassociationspaginator)
294
+ """
295
+
296
+ def paginate(
297
+ self,
298
+ **kwargs: Unpack[
299
+ ListPodIdentityAssociationsRequestListPodIdentityAssociationsPaginateTypeDef
300
+ ],
301
+ ) -> _PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
302
+ """
303
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
304
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listpodidentityassociationspaginator)
305
+ """
306
+
307
+
308
+ class ListUpdatesPaginator(Paginator):
309
+ """
310
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates)
311
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listupdatespaginator)
312
+ """
313
+
314
+ def paginate(
315
+ self, **kwargs: Unpack[ListUpdatesRequestListUpdatesPaginateTypeDef]
316
+ ) -> _PageIterator[ListUpdatesResponseTypeDef]:
317
+ """
318
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates.paginate)
319
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listupdatespaginator)
320
+ """
@@ -0,0 +1,291 @@
1
+ """
2
+ Type annotations for eks service client paginators.
3
+
4
+ [Open 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
+ ListAccessEntriesPaginator,
15
+ ListAccessPoliciesPaginator,
16
+ ListAddonsPaginator,
17
+ ListAssociatedAccessPoliciesPaginator,
18
+ ListClustersPaginator,
19
+ ListEksAnywhereSubscriptionsPaginator,
20
+ ListFargateProfilesPaginator,
21
+ ListIdentityProviderConfigsPaginator,
22
+ ListInsightsPaginator,
23
+ ListNodegroupsPaginator,
24
+ ListPodIdentityAssociationsPaginator,
25
+ ListUpdatesPaginator,
26
+ )
27
+
28
+ session = Session()
29
+ client: EKSClient = session.client("eks")
30
+
31
+ describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
32
+ list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
33
+ list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
34
+ list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
35
+ list_associated_access_policies_paginator: ListAssociatedAccessPoliciesPaginator = client.get_paginator("list_associated_access_policies")
36
+ list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
37
+ list_eks_anywhere_subscriptions_paginator: ListEksAnywhereSubscriptionsPaginator = client.get_paginator("list_eks_anywhere_subscriptions")
38
+ list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_paginator("list_fargate_profiles")
39
+ list_identity_provider_configs_paginator: ListIdentityProviderConfigsPaginator = client.get_paginator("list_identity_provider_configs")
40
+ list_insights_paginator: ListInsightsPaginator = client.get_paginator("list_insights")
41
+ list_nodegroups_paginator: ListNodegroupsPaginator = client.get_paginator("list_nodegroups")
42
+ list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
43
+ list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
44
+ ```
45
+
46
+ Copyright 2024 Vlad Emelianov
47
+ """
48
+
49
+ import sys
50
+ from typing import Generic, Iterator, TypeVar
51
+
52
+ from botocore.paginate import PageIterator, Paginator
53
+
54
+ from .type_defs import (
55
+ DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef,
56
+ DescribeAddonVersionsResponseTypeDef,
57
+ ListAccessEntriesRequestListAccessEntriesPaginateTypeDef,
58
+ ListAccessEntriesResponseTypeDef,
59
+ ListAccessPoliciesRequestListAccessPoliciesPaginateTypeDef,
60
+ ListAccessPoliciesResponseTypeDef,
61
+ ListAddonsRequestListAddonsPaginateTypeDef,
62
+ ListAddonsResponseTypeDef,
63
+ ListAssociatedAccessPoliciesRequestListAssociatedAccessPoliciesPaginateTypeDef,
64
+ ListAssociatedAccessPoliciesResponseTypeDef,
65
+ ListClustersRequestListClustersPaginateTypeDef,
66
+ ListClustersResponseTypeDef,
67
+ ListEksAnywhereSubscriptionsRequestListEksAnywhereSubscriptionsPaginateTypeDef,
68
+ ListEksAnywhereSubscriptionsResponseTypeDef,
69
+ ListFargateProfilesRequestListFargateProfilesPaginateTypeDef,
70
+ ListFargateProfilesResponseTypeDef,
71
+ ListIdentityProviderConfigsRequestListIdentityProviderConfigsPaginateTypeDef,
72
+ ListIdentityProviderConfigsResponseTypeDef,
73
+ ListInsightsRequestListInsightsPaginateTypeDef,
74
+ ListInsightsResponseTypeDef,
75
+ ListNodegroupsRequestListNodegroupsPaginateTypeDef,
76
+ ListNodegroupsResponseTypeDef,
77
+ ListPodIdentityAssociationsRequestListPodIdentityAssociationsPaginateTypeDef,
78
+ ListPodIdentityAssociationsResponseTypeDef,
79
+ ListUpdatesRequestListUpdatesPaginateTypeDef,
80
+ ListUpdatesResponseTypeDef,
81
+ )
82
+
83
+ if sys.version_info >= (3, 12):
84
+ from typing import Unpack
85
+ else:
86
+ from typing_extensions import Unpack
87
+
88
+ __all__ = (
89
+ "DescribeAddonVersionsPaginator",
90
+ "ListAccessEntriesPaginator",
91
+ "ListAccessPoliciesPaginator",
92
+ "ListAddonsPaginator",
93
+ "ListAssociatedAccessPoliciesPaginator",
94
+ "ListClustersPaginator",
95
+ "ListEksAnywhereSubscriptionsPaginator",
96
+ "ListFargateProfilesPaginator",
97
+ "ListIdentityProviderConfigsPaginator",
98
+ "ListInsightsPaginator",
99
+ "ListNodegroupsPaginator",
100
+ "ListPodIdentityAssociationsPaginator",
101
+ "ListUpdatesPaginator",
102
+ )
103
+
104
+ _ItemTypeDef = TypeVar("_ItemTypeDef")
105
+
106
+ class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
107
+ def __iter__(self) -> Iterator[_ItemTypeDef]:
108
+ """
109
+ Proxy method to specify iterator item type.
110
+ """
111
+
112
+ class DescribeAddonVersionsPaginator(Paginator):
113
+ """
114
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions)
115
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#describeaddonversionspaginator)
116
+ """
117
+ def paginate(
118
+ self, **kwargs: Unpack[DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef]
119
+ ) -> _PageIterator[DescribeAddonVersionsResponseTypeDef]:
120
+ """
121
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeAddonVersions.html#EKS.Paginator.DescribeAddonVersions.paginate)
122
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#describeaddonversionspaginator)
123
+ """
124
+
125
+ class ListAccessEntriesPaginator(Paginator):
126
+ """
127
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries)
128
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listaccessentriespaginator)
129
+ """
130
+ def paginate(
131
+ self, **kwargs: Unpack[ListAccessEntriesRequestListAccessEntriesPaginateTypeDef]
132
+ ) -> _PageIterator[ListAccessEntriesResponseTypeDef]:
133
+ """
134
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessEntries.html#EKS.Paginator.ListAccessEntries.paginate)
135
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listaccessentriespaginator)
136
+ """
137
+
138
+ class ListAccessPoliciesPaginator(Paginator):
139
+ """
140
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies)
141
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listaccesspoliciespaginator)
142
+ """
143
+ def paginate(
144
+ self, **kwargs: Unpack[ListAccessPoliciesRequestListAccessPoliciesPaginateTypeDef]
145
+ ) -> _PageIterator[ListAccessPoliciesResponseTypeDef]:
146
+ """
147
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAccessPolicies.html#EKS.Paginator.ListAccessPolicies.paginate)
148
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listaccesspoliciespaginator)
149
+ """
150
+
151
+ class ListAddonsPaginator(Paginator):
152
+ """
153
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons)
154
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listaddonspaginator)
155
+ """
156
+ def paginate(
157
+ self, **kwargs: Unpack[ListAddonsRequestListAddonsPaginateTypeDef]
158
+ ) -> _PageIterator[ListAddonsResponseTypeDef]:
159
+ """
160
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAddons.html#EKS.Paginator.ListAddons.paginate)
161
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listaddonspaginator)
162
+ """
163
+
164
+ class ListAssociatedAccessPoliciesPaginator(Paginator):
165
+ """
166
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies)
167
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
168
+ """
169
+ def paginate(
170
+ self,
171
+ **kwargs: Unpack[
172
+ ListAssociatedAccessPoliciesRequestListAssociatedAccessPoliciesPaginateTypeDef
173
+ ],
174
+ ) -> _PageIterator[ListAssociatedAccessPoliciesResponseTypeDef]:
175
+ """
176
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListAssociatedAccessPolicies.html#EKS.Paginator.ListAssociatedAccessPolicies.paginate)
177
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
178
+ """
179
+
180
+ class ListClustersPaginator(Paginator):
181
+ """
182
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters)
183
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listclusterspaginator)
184
+ """
185
+ def paginate(
186
+ self, **kwargs: Unpack[ListClustersRequestListClustersPaginateTypeDef]
187
+ ) -> _PageIterator[ListClustersResponseTypeDef]:
188
+ """
189
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListClusters.html#EKS.Paginator.ListClusters.paginate)
190
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listclusterspaginator)
191
+ """
192
+
193
+ class ListEksAnywhereSubscriptionsPaginator(Paginator):
194
+ """
195
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions)
196
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
197
+ """
198
+ def paginate(
199
+ self,
200
+ **kwargs: Unpack[
201
+ ListEksAnywhereSubscriptionsRequestListEksAnywhereSubscriptionsPaginateTypeDef
202
+ ],
203
+ ) -> _PageIterator[ListEksAnywhereSubscriptionsResponseTypeDef]:
204
+ """
205
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListEksAnywhereSubscriptions.html#EKS.Paginator.ListEksAnywhereSubscriptions.paginate)
206
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listeksanywheresubscriptionspaginator)
207
+ """
208
+
209
+ class ListFargateProfilesPaginator(Paginator):
210
+ """
211
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles)
212
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listfargateprofilespaginator)
213
+ """
214
+ def paginate(
215
+ self, **kwargs: Unpack[ListFargateProfilesRequestListFargateProfilesPaginateTypeDef]
216
+ ) -> _PageIterator[ListFargateProfilesResponseTypeDef]:
217
+ """
218
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListFargateProfiles.html#EKS.Paginator.ListFargateProfiles.paginate)
219
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listfargateprofilespaginator)
220
+ """
221
+
222
+ class ListIdentityProviderConfigsPaginator(Paginator):
223
+ """
224
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs)
225
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listidentityproviderconfigspaginator)
226
+ """
227
+ def paginate(
228
+ self,
229
+ **kwargs: Unpack[
230
+ ListIdentityProviderConfigsRequestListIdentityProviderConfigsPaginateTypeDef
231
+ ],
232
+ ) -> _PageIterator[ListIdentityProviderConfigsResponseTypeDef]:
233
+ """
234
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListIdentityProviderConfigs.html#EKS.Paginator.ListIdentityProviderConfigs.paginate)
235
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listidentityproviderconfigspaginator)
236
+ """
237
+
238
+ class ListInsightsPaginator(Paginator):
239
+ """
240
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights)
241
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listinsightspaginator)
242
+ """
243
+ def paginate(
244
+ self, **kwargs: Unpack[ListInsightsRequestListInsightsPaginateTypeDef]
245
+ ) -> _PageIterator[ListInsightsResponseTypeDef]:
246
+ """
247
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListInsights.html#EKS.Paginator.ListInsights.paginate)
248
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listinsightspaginator)
249
+ """
250
+
251
+ class ListNodegroupsPaginator(Paginator):
252
+ """
253
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups)
254
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listnodegroupspaginator)
255
+ """
256
+ def paginate(
257
+ self, **kwargs: Unpack[ListNodegroupsRequestListNodegroupsPaginateTypeDef]
258
+ ) -> _PageIterator[ListNodegroupsResponseTypeDef]:
259
+ """
260
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListNodegroups.html#EKS.Paginator.ListNodegroups.paginate)
261
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listnodegroupspaginator)
262
+ """
263
+
264
+ class ListPodIdentityAssociationsPaginator(Paginator):
265
+ """
266
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations)
267
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listpodidentityassociationspaginator)
268
+ """
269
+ def paginate(
270
+ self,
271
+ **kwargs: Unpack[
272
+ ListPodIdentityAssociationsRequestListPodIdentityAssociationsPaginateTypeDef
273
+ ],
274
+ ) -> _PageIterator[ListPodIdentityAssociationsResponseTypeDef]:
275
+ """
276
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListPodIdentityAssociations.html#EKS.Paginator.ListPodIdentityAssociations.paginate)
277
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listpodidentityassociationspaginator)
278
+ """
279
+
280
+ class ListUpdatesPaginator(Paginator):
281
+ """
282
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates)
283
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listupdatespaginator)
284
+ """
285
+ def paginate(
286
+ self, **kwargs: Unpack[ListUpdatesRequestListUpdatesPaginateTypeDef]
287
+ ) -> _PageIterator[ListUpdatesResponseTypeDef]:
288
+ """
289
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListUpdates.html#EKS.Paginator.ListUpdates.paginate)
290
+ [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listupdatespaginator)
291
+ """
File without changes