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