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