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,1046 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Type annotations for eks service Client.
|
|
3
|
+
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/)
|
|
5
|
+
|
|
6
|
+
Usage::
|
|
7
|
+
|
|
8
|
+
```python
|
|
9
|
+
from boto3.session import Session
|
|
10
|
+
from types_boto3_eks.client import EKSClient
|
|
11
|
+
|
|
12
|
+
session = Session()
|
|
13
|
+
client: EKSClient = session.client("eks")
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
from __future__ import annotations
|
|
20
|
+
|
|
21
|
+
import sys
|
|
22
|
+
from typing import Any, overload
|
|
23
|
+
|
|
24
|
+
from botocore.client import BaseClient, ClientMeta
|
|
25
|
+
from botocore.errorfactory import BaseClientExceptions
|
|
26
|
+
from botocore.exceptions import ClientError as BotocoreClientError
|
|
27
|
+
|
|
28
|
+
from .paginator import (
|
|
29
|
+
DescribeAddonVersionsPaginator,
|
|
30
|
+
DescribeClusterVersionsPaginator,
|
|
31
|
+
ListAccessEntriesPaginator,
|
|
32
|
+
ListAccessPoliciesPaginator,
|
|
33
|
+
ListAddonsPaginator,
|
|
34
|
+
ListAssociatedAccessPoliciesPaginator,
|
|
35
|
+
ListClustersPaginator,
|
|
36
|
+
ListEksAnywhereSubscriptionsPaginator,
|
|
37
|
+
ListFargateProfilesPaginator,
|
|
38
|
+
ListIdentityProviderConfigsPaginator,
|
|
39
|
+
ListInsightsPaginator,
|
|
40
|
+
ListNodegroupsPaginator,
|
|
41
|
+
ListPodIdentityAssociationsPaginator,
|
|
42
|
+
ListUpdatesPaginator,
|
|
43
|
+
)
|
|
44
|
+
from .type_defs import (
|
|
45
|
+
AssociateAccessPolicyRequestRequestTypeDef,
|
|
46
|
+
AssociateAccessPolicyResponseTypeDef,
|
|
47
|
+
AssociateEncryptionConfigRequestRequestTypeDef,
|
|
48
|
+
AssociateEncryptionConfigResponseTypeDef,
|
|
49
|
+
AssociateIdentityProviderConfigRequestRequestTypeDef,
|
|
50
|
+
AssociateIdentityProviderConfigResponseTypeDef,
|
|
51
|
+
CreateAccessEntryRequestRequestTypeDef,
|
|
52
|
+
CreateAccessEntryResponseTypeDef,
|
|
53
|
+
CreateAddonRequestRequestTypeDef,
|
|
54
|
+
CreateAddonResponseTypeDef,
|
|
55
|
+
CreateClusterRequestRequestTypeDef,
|
|
56
|
+
CreateClusterResponseTypeDef,
|
|
57
|
+
CreateEksAnywhereSubscriptionRequestRequestTypeDef,
|
|
58
|
+
CreateEksAnywhereSubscriptionResponseTypeDef,
|
|
59
|
+
CreateFargateProfileRequestRequestTypeDef,
|
|
60
|
+
CreateFargateProfileResponseTypeDef,
|
|
61
|
+
CreateNodegroupRequestRequestTypeDef,
|
|
62
|
+
CreateNodegroupResponseTypeDef,
|
|
63
|
+
CreatePodIdentityAssociationRequestRequestTypeDef,
|
|
64
|
+
CreatePodIdentityAssociationResponseTypeDef,
|
|
65
|
+
DeleteAccessEntryRequestRequestTypeDef,
|
|
66
|
+
DeleteAddonRequestRequestTypeDef,
|
|
67
|
+
DeleteAddonResponseTypeDef,
|
|
68
|
+
DeleteClusterRequestRequestTypeDef,
|
|
69
|
+
DeleteClusterResponseTypeDef,
|
|
70
|
+
DeleteEksAnywhereSubscriptionRequestRequestTypeDef,
|
|
71
|
+
DeleteEksAnywhereSubscriptionResponseTypeDef,
|
|
72
|
+
DeleteFargateProfileRequestRequestTypeDef,
|
|
73
|
+
DeleteFargateProfileResponseTypeDef,
|
|
74
|
+
DeleteNodegroupRequestRequestTypeDef,
|
|
75
|
+
DeleteNodegroupResponseTypeDef,
|
|
76
|
+
DeletePodIdentityAssociationRequestRequestTypeDef,
|
|
77
|
+
DeletePodIdentityAssociationResponseTypeDef,
|
|
78
|
+
DeregisterClusterRequestRequestTypeDef,
|
|
79
|
+
DeregisterClusterResponseTypeDef,
|
|
80
|
+
DescribeAccessEntryRequestRequestTypeDef,
|
|
81
|
+
DescribeAccessEntryResponseTypeDef,
|
|
82
|
+
DescribeAddonConfigurationRequestRequestTypeDef,
|
|
83
|
+
DescribeAddonConfigurationResponseTypeDef,
|
|
84
|
+
DescribeAddonRequestRequestTypeDef,
|
|
85
|
+
DescribeAddonResponseTypeDef,
|
|
86
|
+
DescribeAddonVersionsRequestRequestTypeDef,
|
|
87
|
+
DescribeAddonVersionsResponseTypeDef,
|
|
88
|
+
DescribeClusterRequestRequestTypeDef,
|
|
89
|
+
DescribeClusterResponseTypeDef,
|
|
90
|
+
DescribeClusterVersionsRequestRequestTypeDef,
|
|
91
|
+
DescribeClusterVersionsResponseTypeDef,
|
|
92
|
+
DescribeEksAnywhereSubscriptionRequestRequestTypeDef,
|
|
93
|
+
DescribeEksAnywhereSubscriptionResponseTypeDef,
|
|
94
|
+
DescribeFargateProfileRequestRequestTypeDef,
|
|
95
|
+
DescribeFargateProfileResponseTypeDef,
|
|
96
|
+
DescribeIdentityProviderConfigRequestRequestTypeDef,
|
|
97
|
+
DescribeIdentityProviderConfigResponseTypeDef,
|
|
98
|
+
DescribeInsightRequestRequestTypeDef,
|
|
99
|
+
DescribeInsightResponseTypeDef,
|
|
100
|
+
DescribeNodegroupRequestRequestTypeDef,
|
|
101
|
+
DescribeNodegroupResponseTypeDef,
|
|
102
|
+
DescribePodIdentityAssociationRequestRequestTypeDef,
|
|
103
|
+
DescribePodIdentityAssociationResponseTypeDef,
|
|
104
|
+
DescribeUpdateRequestRequestTypeDef,
|
|
105
|
+
DescribeUpdateResponseTypeDef,
|
|
106
|
+
DisassociateAccessPolicyRequestRequestTypeDef,
|
|
107
|
+
DisassociateIdentityProviderConfigRequestRequestTypeDef,
|
|
108
|
+
DisassociateIdentityProviderConfigResponseTypeDef,
|
|
109
|
+
ListAccessEntriesRequestRequestTypeDef,
|
|
110
|
+
ListAccessEntriesResponseTypeDef,
|
|
111
|
+
ListAccessPoliciesRequestRequestTypeDef,
|
|
112
|
+
ListAccessPoliciesResponseTypeDef,
|
|
113
|
+
ListAddonsRequestRequestTypeDef,
|
|
114
|
+
ListAddonsResponseTypeDef,
|
|
115
|
+
ListAssociatedAccessPoliciesRequestRequestTypeDef,
|
|
116
|
+
ListAssociatedAccessPoliciesResponseTypeDef,
|
|
117
|
+
ListClustersRequestRequestTypeDef,
|
|
118
|
+
ListClustersResponseTypeDef,
|
|
119
|
+
ListEksAnywhereSubscriptionsRequestRequestTypeDef,
|
|
120
|
+
ListEksAnywhereSubscriptionsResponseTypeDef,
|
|
121
|
+
ListFargateProfilesRequestRequestTypeDef,
|
|
122
|
+
ListFargateProfilesResponseTypeDef,
|
|
123
|
+
ListIdentityProviderConfigsRequestRequestTypeDef,
|
|
124
|
+
ListIdentityProviderConfigsResponseTypeDef,
|
|
125
|
+
ListInsightsRequestRequestTypeDef,
|
|
126
|
+
ListInsightsResponseTypeDef,
|
|
127
|
+
ListNodegroupsRequestRequestTypeDef,
|
|
128
|
+
ListNodegroupsResponseTypeDef,
|
|
129
|
+
ListPodIdentityAssociationsRequestRequestTypeDef,
|
|
130
|
+
ListPodIdentityAssociationsResponseTypeDef,
|
|
131
|
+
ListTagsForResourceRequestRequestTypeDef,
|
|
132
|
+
ListTagsForResourceResponseTypeDef,
|
|
133
|
+
ListUpdatesRequestRequestTypeDef,
|
|
134
|
+
ListUpdatesResponseTypeDef,
|
|
135
|
+
RegisterClusterRequestRequestTypeDef,
|
|
136
|
+
RegisterClusterResponseTypeDef,
|
|
137
|
+
TagResourceRequestRequestTypeDef,
|
|
138
|
+
UntagResourceRequestRequestTypeDef,
|
|
139
|
+
UpdateAccessEntryRequestRequestTypeDef,
|
|
140
|
+
UpdateAccessEntryResponseTypeDef,
|
|
141
|
+
UpdateAddonRequestRequestTypeDef,
|
|
142
|
+
UpdateAddonResponseTypeDef,
|
|
143
|
+
UpdateClusterConfigRequestRequestTypeDef,
|
|
144
|
+
UpdateClusterConfigResponseTypeDef,
|
|
145
|
+
UpdateClusterVersionRequestRequestTypeDef,
|
|
146
|
+
UpdateClusterVersionResponseTypeDef,
|
|
147
|
+
UpdateEksAnywhereSubscriptionRequestRequestTypeDef,
|
|
148
|
+
UpdateEksAnywhereSubscriptionResponseTypeDef,
|
|
149
|
+
UpdateNodegroupConfigRequestRequestTypeDef,
|
|
150
|
+
UpdateNodegroupConfigResponseTypeDef,
|
|
151
|
+
UpdateNodegroupVersionRequestRequestTypeDef,
|
|
152
|
+
UpdateNodegroupVersionResponseTypeDef,
|
|
153
|
+
UpdatePodIdentityAssociationRequestRequestTypeDef,
|
|
154
|
+
UpdatePodIdentityAssociationResponseTypeDef,
|
|
155
|
+
)
|
|
156
|
+
from .waiter import (
|
|
157
|
+
AddonActiveWaiter,
|
|
158
|
+
AddonDeletedWaiter,
|
|
159
|
+
ClusterActiveWaiter,
|
|
160
|
+
ClusterDeletedWaiter,
|
|
161
|
+
FargateProfileActiveWaiter,
|
|
162
|
+
FargateProfileDeletedWaiter,
|
|
163
|
+
NodegroupActiveWaiter,
|
|
164
|
+
NodegroupDeletedWaiter,
|
|
165
|
+
)
|
|
166
|
+
|
|
167
|
+
if sys.version_info >= (3, 9):
|
|
168
|
+
from builtins import dict as Dict
|
|
169
|
+
from builtins import type as Type
|
|
170
|
+
from collections.abc import Mapping
|
|
171
|
+
else:
|
|
172
|
+
from typing import Dict, Mapping, Type
|
|
173
|
+
if sys.version_info >= (3, 12):
|
|
174
|
+
from typing import Literal, Unpack
|
|
175
|
+
else:
|
|
176
|
+
from typing_extensions import Literal, Unpack
|
|
177
|
+
|
|
178
|
+
__all__ = ("EKSClient",)
|
|
179
|
+
|
|
180
|
+
class Exceptions(BaseClientExceptions):
|
|
181
|
+
AccessDeniedException: Type[BotocoreClientError]
|
|
182
|
+
BadRequestException: Type[BotocoreClientError]
|
|
183
|
+
ClientError: Type[BotocoreClientError]
|
|
184
|
+
ClientException: Type[BotocoreClientError]
|
|
185
|
+
InvalidParameterException: Type[BotocoreClientError]
|
|
186
|
+
InvalidRequestException: Type[BotocoreClientError]
|
|
187
|
+
NotFoundException: Type[BotocoreClientError]
|
|
188
|
+
ResourceInUseException: Type[BotocoreClientError]
|
|
189
|
+
ResourceLimitExceededException: Type[BotocoreClientError]
|
|
190
|
+
ResourceNotFoundException: Type[BotocoreClientError]
|
|
191
|
+
ResourcePropagationDelayException: Type[BotocoreClientError]
|
|
192
|
+
ServerException: Type[BotocoreClientError]
|
|
193
|
+
ServiceUnavailableException: Type[BotocoreClientError]
|
|
194
|
+
UnsupportedAvailabilityZoneException: Type[BotocoreClientError]
|
|
195
|
+
|
|
196
|
+
class EKSClient(BaseClient):
|
|
197
|
+
"""
|
|
198
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Client)
|
|
199
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/)
|
|
200
|
+
"""
|
|
201
|
+
|
|
202
|
+
meta: ClientMeta
|
|
203
|
+
|
|
204
|
+
@property
|
|
205
|
+
def exceptions(self) -> Exceptions:
|
|
206
|
+
"""
|
|
207
|
+
EKSClient exceptions.
|
|
208
|
+
|
|
209
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Client)
|
|
210
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#exceptions)
|
|
211
|
+
"""
|
|
212
|
+
|
|
213
|
+
def can_paginate(self, operation_name: str) -> bool:
|
|
214
|
+
"""
|
|
215
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/can_paginate.html)
|
|
216
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#can_paginate)
|
|
217
|
+
"""
|
|
218
|
+
|
|
219
|
+
def generate_presigned_url(
|
|
220
|
+
self,
|
|
221
|
+
ClientMethod: str,
|
|
222
|
+
Params: Mapping[str, Any] = ...,
|
|
223
|
+
ExpiresIn: int = 3600,
|
|
224
|
+
HttpMethod: str = ...,
|
|
225
|
+
) -> str:
|
|
226
|
+
"""
|
|
227
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/generate_presigned_url.html)
|
|
228
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#generate_presigned_url)
|
|
229
|
+
"""
|
|
230
|
+
|
|
231
|
+
def associate_access_policy(
|
|
232
|
+
self, **kwargs: Unpack[AssociateAccessPolicyRequestRequestTypeDef]
|
|
233
|
+
) -> AssociateAccessPolicyResponseTypeDef:
|
|
234
|
+
"""
|
|
235
|
+
Associates an access policy and its scope to an access entry.
|
|
236
|
+
|
|
237
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/associate_access_policy.html)
|
|
238
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#associate_access_policy)
|
|
239
|
+
"""
|
|
240
|
+
|
|
241
|
+
def associate_encryption_config(
|
|
242
|
+
self, **kwargs: Unpack[AssociateEncryptionConfigRequestRequestTypeDef]
|
|
243
|
+
) -> AssociateEncryptionConfigResponseTypeDef:
|
|
244
|
+
"""
|
|
245
|
+
Associates an encryption configuration to an existing cluster.
|
|
246
|
+
|
|
247
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/associate_encryption_config.html)
|
|
248
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#associate_encryption_config)
|
|
249
|
+
"""
|
|
250
|
+
|
|
251
|
+
def associate_identity_provider_config(
|
|
252
|
+
self, **kwargs: Unpack[AssociateIdentityProviderConfigRequestRequestTypeDef]
|
|
253
|
+
) -> AssociateIdentityProviderConfigResponseTypeDef:
|
|
254
|
+
"""
|
|
255
|
+
Associates an identity provider configuration to a cluster.
|
|
256
|
+
|
|
257
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/associate_identity_provider_config.html)
|
|
258
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#associate_identity_provider_config)
|
|
259
|
+
"""
|
|
260
|
+
|
|
261
|
+
def create_access_entry(
|
|
262
|
+
self, **kwargs: Unpack[CreateAccessEntryRequestRequestTypeDef]
|
|
263
|
+
) -> CreateAccessEntryResponseTypeDef:
|
|
264
|
+
"""
|
|
265
|
+
Creates an access entry.
|
|
266
|
+
|
|
267
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/create_access_entry.html)
|
|
268
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#create_access_entry)
|
|
269
|
+
"""
|
|
270
|
+
|
|
271
|
+
def create_addon(
|
|
272
|
+
self, **kwargs: Unpack[CreateAddonRequestRequestTypeDef]
|
|
273
|
+
) -> CreateAddonResponseTypeDef:
|
|
274
|
+
"""
|
|
275
|
+
Creates an Amazon EKS add-on.
|
|
276
|
+
|
|
277
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/create_addon.html)
|
|
278
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#create_addon)
|
|
279
|
+
"""
|
|
280
|
+
|
|
281
|
+
def create_cluster(
|
|
282
|
+
self, **kwargs: Unpack[CreateClusterRequestRequestTypeDef]
|
|
283
|
+
) -> CreateClusterResponseTypeDef:
|
|
284
|
+
"""
|
|
285
|
+
Creates an Amazon EKS control plane.
|
|
286
|
+
|
|
287
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/create_cluster.html)
|
|
288
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#create_cluster)
|
|
289
|
+
"""
|
|
290
|
+
|
|
291
|
+
def create_eks_anywhere_subscription(
|
|
292
|
+
self, **kwargs: Unpack[CreateEksAnywhereSubscriptionRequestRequestTypeDef]
|
|
293
|
+
) -> CreateEksAnywhereSubscriptionResponseTypeDef:
|
|
294
|
+
"""
|
|
295
|
+
Creates an EKS Anywhere subscription.
|
|
296
|
+
|
|
297
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/create_eks_anywhere_subscription.html)
|
|
298
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#create_eks_anywhere_subscription)
|
|
299
|
+
"""
|
|
300
|
+
|
|
301
|
+
def create_fargate_profile(
|
|
302
|
+
self, **kwargs: Unpack[CreateFargateProfileRequestRequestTypeDef]
|
|
303
|
+
) -> CreateFargateProfileResponseTypeDef:
|
|
304
|
+
"""
|
|
305
|
+
Creates an Fargate profile for your Amazon EKS cluster.
|
|
306
|
+
|
|
307
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/create_fargate_profile.html)
|
|
308
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#create_fargate_profile)
|
|
309
|
+
"""
|
|
310
|
+
|
|
311
|
+
def create_nodegroup(
|
|
312
|
+
self, **kwargs: Unpack[CreateNodegroupRequestRequestTypeDef]
|
|
313
|
+
) -> CreateNodegroupResponseTypeDef:
|
|
314
|
+
"""
|
|
315
|
+
Creates a managed node group for an Amazon EKS cluster.
|
|
316
|
+
|
|
317
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/create_nodegroup.html)
|
|
318
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#create_nodegroup)
|
|
319
|
+
"""
|
|
320
|
+
|
|
321
|
+
def create_pod_identity_association(
|
|
322
|
+
self, **kwargs: Unpack[CreatePodIdentityAssociationRequestRequestTypeDef]
|
|
323
|
+
) -> CreatePodIdentityAssociationResponseTypeDef:
|
|
324
|
+
"""
|
|
325
|
+
Creates an EKS Pod Identity association between a service account in an Amazon
|
|
326
|
+
EKS cluster and an IAM role with <i>EKS Pod Identity</i>.
|
|
327
|
+
|
|
328
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/create_pod_identity_association.html)
|
|
329
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#create_pod_identity_association)
|
|
330
|
+
"""
|
|
331
|
+
|
|
332
|
+
def delete_access_entry(
|
|
333
|
+
self, **kwargs: Unpack[DeleteAccessEntryRequestRequestTypeDef]
|
|
334
|
+
) -> Dict[str, Any]:
|
|
335
|
+
"""
|
|
336
|
+
Deletes an access entry.
|
|
337
|
+
|
|
338
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/delete_access_entry.html)
|
|
339
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#delete_access_entry)
|
|
340
|
+
"""
|
|
341
|
+
|
|
342
|
+
def delete_addon(
|
|
343
|
+
self, **kwargs: Unpack[DeleteAddonRequestRequestTypeDef]
|
|
344
|
+
) -> DeleteAddonResponseTypeDef:
|
|
345
|
+
"""
|
|
346
|
+
Deletes an Amazon EKS add-on.
|
|
347
|
+
|
|
348
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/delete_addon.html)
|
|
349
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#delete_addon)
|
|
350
|
+
"""
|
|
351
|
+
|
|
352
|
+
def delete_cluster(
|
|
353
|
+
self, **kwargs: Unpack[DeleteClusterRequestRequestTypeDef]
|
|
354
|
+
) -> DeleteClusterResponseTypeDef:
|
|
355
|
+
"""
|
|
356
|
+
Deletes an Amazon EKS cluster control plane.
|
|
357
|
+
|
|
358
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/delete_cluster.html)
|
|
359
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#delete_cluster)
|
|
360
|
+
"""
|
|
361
|
+
|
|
362
|
+
def delete_eks_anywhere_subscription(
|
|
363
|
+
self, **kwargs: Unpack[DeleteEksAnywhereSubscriptionRequestRequestTypeDef]
|
|
364
|
+
) -> DeleteEksAnywhereSubscriptionResponseTypeDef:
|
|
365
|
+
"""
|
|
366
|
+
Deletes an expired or inactive subscription.
|
|
367
|
+
|
|
368
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/delete_eks_anywhere_subscription.html)
|
|
369
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#delete_eks_anywhere_subscription)
|
|
370
|
+
"""
|
|
371
|
+
|
|
372
|
+
def delete_fargate_profile(
|
|
373
|
+
self, **kwargs: Unpack[DeleteFargateProfileRequestRequestTypeDef]
|
|
374
|
+
) -> DeleteFargateProfileResponseTypeDef:
|
|
375
|
+
"""
|
|
376
|
+
Deletes an Fargate profile.
|
|
377
|
+
|
|
378
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/delete_fargate_profile.html)
|
|
379
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#delete_fargate_profile)
|
|
380
|
+
"""
|
|
381
|
+
|
|
382
|
+
def delete_nodegroup(
|
|
383
|
+
self, **kwargs: Unpack[DeleteNodegroupRequestRequestTypeDef]
|
|
384
|
+
) -> DeleteNodegroupResponseTypeDef:
|
|
385
|
+
"""
|
|
386
|
+
Deletes a managed node group.
|
|
387
|
+
|
|
388
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/delete_nodegroup.html)
|
|
389
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#delete_nodegroup)
|
|
390
|
+
"""
|
|
391
|
+
|
|
392
|
+
def delete_pod_identity_association(
|
|
393
|
+
self, **kwargs: Unpack[DeletePodIdentityAssociationRequestRequestTypeDef]
|
|
394
|
+
) -> DeletePodIdentityAssociationResponseTypeDef:
|
|
395
|
+
"""
|
|
396
|
+
Deletes a EKS Pod Identity association.
|
|
397
|
+
|
|
398
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/delete_pod_identity_association.html)
|
|
399
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#delete_pod_identity_association)
|
|
400
|
+
"""
|
|
401
|
+
|
|
402
|
+
def deregister_cluster(
|
|
403
|
+
self, **kwargs: Unpack[DeregisterClusterRequestRequestTypeDef]
|
|
404
|
+
) -> DeregisterClusterResponseTypeDef:
|
|
405
|
+
"""
|
|
406
|
+
Deregisters a connected cluster to remove it from the Amazon EKS control plane.
|
|
407
|
+
|
|
408
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/deregister_cluster.html)
|
|
409
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#deregister_cluster)
|
|
410
|
+
"""
|
|
411
|
+
|
|
412
|
+
def describe_access_entry(
|
|
413
|
+
self, **kwargs: Unpack[DescribeAccessEntryRequestRequestTypeDef]
|
|
414
|
+
) -> DescribeAccessEntryResponseTypeDef:
|
|
415
|
+
"""
|
|
416
|
+
Describes an access entry.
|
|
417
|
+
|
|
418
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_access_entry.html)
|
|
419
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_access_entry)
|
|
420
|
+
"""
|
|
421
|
+
|
|
422
|
+
def describe_addon(
|
|
423
|
+
self, **kwargs: Unpack[DescribeAddonRequestRequestTypeDef]
|
|
424
|
+
) -> DescribeAddonResponseTypeDef:
|
|
425
|
+
"""
|
|
426
|
+
Describes an Amazon EKS add-on.
|
|
427
|
+
|
|
428
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_addon.html)
|
|
429
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_addon)
|
|
430
|
+
"""
|
|
431
|
+
|
|
432
|
+
def describe_addon_configuration(
|
|
433
|
+
self, **kwargs: Unpack[DescribeAddonConfigurationRequestRequestTypeDef]
|
|
434
|
+
) -> DescribeAddonConfigurationResponseTypeDef:
|
|
435
|
+
"""
|
|
436
|
+
Returns configuration options.
|
|
437
|
+
|
|
438
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_addon_configuration.html)
|
|
439
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_addon_configuration)
|
|
440
|
+
"""
|
|
441
|
+
|
|
442
|
+
def describe_addon_versions(
|
|
443
|
+
self, **kwargs: Unpack[DescribeAddonVersionsRequestRequestTypeDef]
|
|
444
|
+
) -> DescribeAddonVersionsResponseTypeDef:
|
|
445
|
+
"""
|
|
446
|
+
Describes the versions for an add-on.
|
|
447
|
+
|
|
448
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_addon_versions.html)
|
|
449
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_addon_versions)
|
|
450
|
+
"""
|
|
451
|
+
|
|
452
|
+
def describe_cluster(
|
|
453
|
+
self, **kwargs: Unpack[DescribeClusterRequestRequestTypeDef]
|
|
454
|
+
) -> DescribeClusterResponseTypeDef:
|
|
455
|
+
"""
|
|
456
|
+
Describes an Amazon EKS cluster.
|
|
457
|
+
|
|
458
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_cluster.html)
|
|
459
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_cluster)
|
|
460
|
+
"""
|
|
461
|
+
|
|
462
|
+
def describe_cluster_versions(
|
|
463
|
+
self, **kwargs: Unpack[DescribeClusterVersionsRequestRequestTypeDef]
|
|
464
|
+
) -> DescribeClusterVersionsResponseTypeDef:
|
|
465
|
+
"""
|
|
466
|
+
Lists available Kubernetes versions for Amazon EKS clusters.
|
|
467
|
+
|
|
468
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_cluster_versions.html)
|
|
469
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_cluster_versions)
|
|
470
|
+
"""
|
|
471
|
+
|
|
472
|
+
def describe_eks_anywhere_subscription(
|
|
473
|
+
self, **kwargs: Unpack[DescribeEksAnywhereSubscriptionRequestRequestTypeDef]
|
|
474
|
+
) -> DescribeEksAnywhereSubscriptionResponseTypeDef:
|
|
475
|
+
"""
|
|
476
|
+
Returns descriptive information about a subscription.
|
|
477
|
+
|
|
478
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_eks_anywhere_subscription.html)
|
|
479
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_eks_anywhere_subscription)
|
|
480
|
+
"""
|
|
481
|
+
|
|
482
|
+
def describe_fargate_profile(
|
|
483
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestRequestTypeDef]
|
|
484
|
+
) -> DescribeFargateProfileResponseTypeDef:
|
|
485
|
+
"""
|
|
486
|
+
Describes an Fargate profile.
|
|
487
|
+
|
|
488
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_fargate_profile.html)
|
|
489
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_fargate_profile)
|
|
490
|
+
"""
|
|
491
|
+
|
|
492
|
+
def describe_identity_provider_config(
|
|
493
|
+
self, **kwargs: Unpack[DescribeIdentityProviderConfigRequestRequestTypeDef]
|
|
494
|
+
) -> DescribeIdentityProviderConfigResponseTypeDef:
|
|
495
|
+
"""
|
|
496
|
+
Describes an identity provider configuration.
|
|
497
|
+
|
|
498
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_identity_provider_config.html)
|
|
499
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_identity_provider_config)
|
|
500
|
+
"""
|
|
501
|
+
|
|
502
|
+
def describe_insight(
|
|
503
|
+
self, **kwargs: Unpack[DescribeInsightRequestRequestTypeDef]
|
|
504
|
+
) -> DescribeInsightResponseTypeDef:
|
|
505
|
+
"""
|
|
506
|
+
Returns details about an insight that you specify using its ID.
|
|
507
|
+
|
|
508
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_insight.html)
|
|
509
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_insight)
|
|
510
|
+
"""
|
|
511
|
+
|
|
512
|
+
def describe_nodegroup(
|
|
513
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestRequestTypeDef]
|
|
514
|
+
) -> DescribeNodegroupResponseTypeDef:
|
|
515
|
+
"""
|
|
516
|
+
Describes a managed node group.
|
|
517
|
+
|
|
518
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_nodegroup.html)
|
|
519
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_nodegroup)
|
|
520
|
+
"""
|
|
521
|
+
|
|
522
|
+
def describe_pod_identity_association(
|
|
523
|
+
self, **kwargs: Unpack[DescribePodIdentityAssociationRequestRequestTypeDef]
|
|
524
|
+
) -> DescribePodIdentityAssociationResponseTypeDef:
|
|
525
|
+
"""
|
|
526
|
+
Returns descriptive information about an EKS Pod Identity association.
|
|
527
|
+
|
|
528
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_pod_identity_association.html)
|
|
529
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_pod_identity_association)
|
|
530
|
+
"""
|
|
531
|
+
|
|
532
|
+
def describe_update(
|
|
533
|
+
self, **kwargs: Unpack[DescribeUpdateRequestRequestTypeDef]
|
|
534
|
+
) -> DescribeUpdateResponseTypeDef:
|
|
535
|
+
"""
|
|
536
|
+
Describes an update to an Amazon EKS resource.
|
|
537
|
+
|
|
538
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_update.html)
|
|
539
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_update)
|
|
540
|
+
"""
|
|
541
|
+
|
|
542
|
+
def disassociate_access_policy(
|
|
543
|
+
self, **kwargs: Unpack[DisassociateAccessPolicyRequestRequestTypeDef]
|
|
544
|
+
) -> Dict[str, Any]:
|
|
545
|
+
"""
|
|
546
|
+
Disassociates an access policy from an access entry.
|
|
547
|
+
|
|
548
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/disassociate_access_policy.html)
|
|
549
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#disassociate_access_policy)
|
|
550
|
+
"""
|
|
551
|
+
|
|
552
|
+
def disassociate_identity_provider_config(
|
|
553
|
+
self, **kwargs: Unpack[DisassociateIdentityProviderConfigRequestRequestTypeDef]
|
|
554
|
+
) -> DisassociateIdentityProviderConfigResponseTypeDef:
|
|
555
|
+
"""
|
|
556
|
+
Disassociates an identity provider configuration from a cluster.
|
|
557
|
+
|
|
558
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/disassociate_identity_provider_config.html)
|
|
559
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#disassociate_identity_provider_config)
|
|
560
|
+
"""
|
|
561
|
+
|
|
562
|
+
def list_access_entries(
|
|
563
|
+
self, **kwargs: Unpack[ListAccessEntriesRequestRequestTypeDef]
|
|
564
|
+
) -> ListAccessEntriesResponseTypeDef:
|
|
565
|
+
"""
|
|
566
|
+
Lists the access entries for your cluster.
|
|
567
|
+
|
|
568
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_access_entries.html)
|
|
569
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_access_entries)
|
|
570
|
+
"""
|
|
571
|
+
|
|
572
|
+
def list_access_policies(
|
|
573
|
+
self, **kwargs: Unpack[ListAccessPoliciesRequestRequestTypeDef]
|
|
574
|
+
) -> ListAccessPoliciesResponseTypeDef:
|
|
575
|
+
"""
|
|
576
|
+
Lists the available access policies.
|
|
577
|
+
|
|
578
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_access_policies.html)
|
|
579
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_access_policies)
|
|
580
|
+
"""
|
|
581
|
+
|
|
582
|
+
def list_addons(
|
|
583
|
+
self, **kwargs: Unpack[ListAddonsRequestRequestTypeDef]
|
|
584
|
+
) -> ListAddonsResponseTypeDef:
|
|
585
|
+
"""
|
|
586
|
+
Lists the installed add-ons.
|
|
587
|
+
|
|
588
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_addons.html)
|
|
589
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_addons)
|
|
590
|
+
"""
|
|
591
|
+
|
|
592
|
+
def list_associated_access_policies(
|
|
593
|
+
self, **kwargs: Unpack[ListAssociatedAccessPoliciesRequestRequestTypeDef]
|
|
594
|
+
) -> ListAssociatedAccessPoliciesResponseTypeDef:
|
|
595
|
+
"""
|
|
596
|
+
Lists the access policies associated with an access entry.
|
|
597
|
+
|
|
598
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_associated_access_policies.html)
|
|
599
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_associated_access_policies)
|
|
600
|
+
"""
|
|
601
|
+
|
|
602
|
+
def list_clusters(
|
|
603
|
+
self, **kwargs: Unpack[ListClustersRequestRequestTypeDef]
|
|
604
|
+
) -> ListClustersResponseTypeDef:
|
|
605
|
+
"""
|
|
606
|
+
Lists the Amazon EKS clusters in your Amazon Web Services account in the
|
|
607
|
+
specified Amazon Web Services Region.
|
|
608
|
+
|
|
609
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_clusters.html)
|
|
610
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_clusters)
|
|
611
|
+
"""
|
|
612
|
+
|
|
613
|
+
def list_eks_anywhere_subscriptions(
|
|
614
|
+
self, **kwargs: Unpack[ListEksAnywhereSubscriptionsRequestRequestTypeDef]
|
|
615
|
+
) -> ListEksAnywhereSubscriptionsResponseTypeDef:
|
|
616
|
+
"""
|
|
617
|
+
Displays the full description of the subscription.
|
|
618
|
+
|
|
619
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_eks_anywhere_subscriptions.html)
|
|
620
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_eks_anywhere_subscriptions)
|
|
621
|
+
"""
|
|
622
|
+
|
|
623
|
+
def list_fargate_profiles(
|
|
624
|
+
self, **kwargs: Unpack[ListFargateProfilesRequestRequestTypeDef]
|
|
625
|
+
) -> ListFargateProfilesResponseTypeDef:
|
|
626
|
+
"""
|
|
627
|
+
Lists the Fargate profiles associated with the specified cluster in your Amazon
|
|
628
|
+
Web Services account in the specified Amazon Web Services Region.
|
|
629
|
+
|
|
630
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_fargate_profiles.html)
|
|
631
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_fargate_profiles)
|
|
632
|
+
"""
|
|
633
|
+
|
|
634
|
+
def list_identity_provider_configs(
|
|
635
|
+
self, **kwargs: Unpack[ListIdentityProviderConfigsRequestRequestTypeDef]
|
|
636
|
+
) -> ListIdentityProviderConfigsResponseTypeDef:
|
|
637
|
+
"""
|
|
638
|
+
Lists the identity provider configurations for your cluster.
|
|
639
|
+
|
|
640
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_identity_provider_configs.html)
|
|
641
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_identity_provider_configs)
|
|
642
|
+
"""
|
|
643
|
+
|
|
644
|
+
def list_insights(
|
|
645
|
+
self, **kwargs: Unpack[ListInsightsRequestRequestTypeDef]
|
|
646
|
+
) -> ListInsightsResponseTypeDef:
|
|
647
|
+
"""
|
|
648
|
+
Returns a list of all insights checked for against the specified cluster.
|
|
649
|
+
|
|
650
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_insights.html)
|
|
651
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_insights)
|
|
652
|
+
"""
|
|
653
|
+
|
|
654
|
+
def list_nodegroups(
|
|
655
|
+
self, **kwargs: Unpack[ListNodegroupsRequestRequestTypeDef]
|
|
656
|
+
) -> ListNodegroupsResponseTypeDef:
|
|
657
|
+
"""
|
|
658
|
+
Lists the managed node groups associated with the specified cluster in your
|
|
659
|
+
Amazon Web Services account in the specified Amazon Web Services Region.
|
|
660
|
+
|
|
661
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_nodegroups.html)
|
|
662
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_nodegroups)
|
|
663
|
+
"""
|
|
664
|
+
|
|
665
|
+
def list_pod_identity_associations(
|
|
666
|
+
self, **kwargs: Unpack[ListPodIdentityAssociationsRequestRequestTypeDef]
|
|
667
|
+
) -> ListPodIdentityAssociationsResponseTypeDef:
|
|
668
|
+
"""
|
|
669
|
+
List the EKS Pod Identity associations in a cluster.
|
|
670
|
+
|
|
671
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_pod_identity_associations.html)
|
|
672
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_pod_identity_associations)
|
|
673
|
+
"""
|
|
674
|
+
|
|
675
|
+
def list_tags_for_resource(
|
|
676
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestRequestTypeDef]
|
|
677
|
+
) -> ListTagsForResourceResponseTypeDef:
|
|
678
|
+
"""
|
|
679
|
+
List the tags for an Amazon EKS resource.
|
|
680
|
+
|
|
681
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_tags_for_resource.html)
|
|
682
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_tags_for_resource)
|
|
683
|
+
"""
|
|
684
|
+
|
|
685
|
+
def list_updates(
|
|
686
|
+
self, **kwargs: Unpack[ListUpdatesRequestRequestTypeDef]
|
|
687
|
+
) -> ListUpdatesResponseTypeDef:
|
|
688
|
+
"""
|
|
689
|
+
Lists the updates associated with an Amazon EKS resource in your Amazon Web
|
|
690
|
+
Services account, in the specified Amazon Web Services Region.
|
|
691
|
+
|
|
692
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_updates.html)
|
|
693
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_updates)
|
|
694
|
+
"""
|
|
695
|
+
|
|
696
|
+
def register_cluster(
|
|
697
|
+
self, **kwargs: Unpack[RegisterClusterRequestRequestTypeDef]
|
|
698
|
+
) -> RegisterClusterResponseTypeDef:
|
|
699
|
+
"""
|
|
700
|
+
Connects a Kubernetes cluster to the Amazon EKS control plane.
|
|
701
|
+
|
|
702
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/register_cluster.html)
|
|
703
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#register_cluster)
|
|
704
|
+
"""
|
|
705
|
+
|
|
706
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]) -> Dict[str, Any]:
|
|
707
|
+
"""
|
|
708
|
+
Associates the specified tags to an Amazon EKS resource with the specified
|
|
709
|
+
<code>resourceArn</code>.
|
|
710
|
+
|
|
711
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/tag_resource.html)
|
|
712
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#tag_resource)
|
|
713
|
+
"""
|
|
714
|
+
|
|
715
|
+
def untag_resource(
|
|
716
|
+
self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
|
|
717
|
+
) -> Dict[str, Any]:
|
|
718
|
+
"""
|
|
719
|
+
Deletes specified tags from an Amazon EKS resource.
|
|
720
|
+
|
|
721
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/untag_resource.html)
|
|
722
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#untag_resource)
|
|
723
|
+
"""
|
|
724
|
+
|
|
725
|
+
def update_access_entry(
|
|
726
|
+
self, **kwargs: Unpack[UpdateAccessEntryRequestRequestTypeDef]
|
|
727
|
+
) -> UpdateAccessEntryResponseTypeDef:
|
|
728
|
+
"""
|
|
729
|
+
Updates an access entry.
|
|
730
|
+
|
|
731
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/update_access_entry.html)
|
|
732
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#update_access_entry)
|
|
733
|
+
"""
|
|
734
|
+
|
|
735
|
+
def update_addon(
|
|
736
|
+
self, **kwargs: Unpack[UpdateAddonRequestRequestTypeDef]
|
|
737
|
+
) -> UpdateAddonResponseTypeDef:
|
|
738
|
+
"""
|
|
739
|
+
Updates an Amazon EKS add-on.
|
|
740
|
+
|
|
741
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/update_addon.html)
|
|
742
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#update_addon)
|
|
743
|
+
"""
|
|
744
|
+
|
|
745
|
+
def update_cluster_config(
|
|
746
|
+
self, **kwargs: Unpack[UpdateClusterConfigRequestRequestTypeDef]
|
|
747
|
+
) -> UpdateClusterConfigResponseTypeDef:
|
|
748
|
+
"""
|
|
749
|
+
Updates an Amazon EKS cluster configuration.
|
|
750
|
+
|
|
751
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/update_cluster_config.html)
|
|
752
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#update_cluster_config)
|
|
753
|
+
"""
|
|
754
|
+
|
|
755
|
+
def update_cluster_version(
|
|
756
|
+
self, **kwargs: Unpack[UpdateClusterVersionRequestRequestTypeDef]
|
|
757
|
+
) -> UpdateClusterVersionResponseTypeDef:
|
|
758
|
+
"""
|
|
759
|
+
Updates an Amazon EKS cluster to the specified Kubernetes version.
|
|
760
|
+
|
|
761
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/update_cluster_version.html)
|
|
762
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#update_cluster_version)
|
|
763
|
+
"""
|
|
764
|
+
|
|
765
|
+
def update_eks_anywhere_subscription(
|
|
766
|
+
self, **kwargs: Unpack[UpdateEksAnywhereSubscriptionRequestRequestTypeDef]
|
|
767
|
+
) -> UpdateEksAnywhereSubscriptionResponseTypeDef:
|
|
768
|
+
"""
|
|
769
|
+
Update an EKS Anywhere Subscription.
|
|
770
|
+
|
|
771
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/update_eks_anywhere_subscription.html)
|
|
772
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#update_eks_anywhere_subscription)
|
|
773
|
+
"""
|
|
774
|
+
|
|
775
|
+
def update_nodegroup_config(
|
|
776
|
+
self, **kwargs: Unpack[UpdateNodegroupConfigRequestRequestTypeDef]
|
|
777
|
+
) -> UpdateNodegroupConfigResponseTypeDef:
|
|
778
|
+
"""
|
|
779
|
+
Updates an Amazon EKS managed node group configuration.
|
|
780
|
+
|
|
781
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/update_nodegroup_config.html)
|
|
782
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#update_nodegroup_config)
|
|
783
|
+
"""
|
|
784
|
+
|
|
785
|
+
def update_nodegroup_version(
|
|
786
|
+
self, **kwargs: Unpack[UpdateNodegroupVersionRequestRequestTypeDef]
|
|
787
|
+
) -> UpdateNodegroupVersionResponseTypeDef:
|
|
788
|
+
"""
|
|
789
|
+
Updates the Kubernetes version or AMI version of an Amazon EKS managed node
|
|
790
|
+
group.
|
|
791
|
+
|
|
792
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/update_nodegroup_version.html)
|
|
793
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#update_nodegroup_version)
|
|
794
|
+
"""
|
|
795
|
+
|
|
796
|
+
def update_pod_identity_association(
|
|
797
|
+
self, **kwargs: Unpack[UpdatePodIdentityAssociationRequestRequestTypeDef]
|
|
798
|
+
) -> UpdatePodIdentityAssociationResponseTypeDef:
|
|
799
|
+
"""
|
|
800
|
+
Updates a EKS Pod Identity association.
|
|
801
|
+
|
|
802
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/update_pod_identity_association.html)
|
|
803
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#update_pod_identity_association)
|
|
804
|
+
"""
|
|
805
|
+
|
|
806
|
+
@overload # type: ignore[override]
|
|
807
|
+
def get_paginator( # type: ignore[override]
|
|
808
|
+
self, operation_name: Literal["describe_addon_versions"]
|
|
809
|
+
) -> DescribeAddonVersionsPaginator:
|
|
810
|
+
"""
|
|
811
|
+
Create a paginator for an operation.
|
|
812
|
+
|
|
813
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
814
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
815
|
+
"""
|
|
816
|
+
|
|
817
|
+
@overload # type: ignore[override]
|
|
818
|
+
def get_paginator( # type: ignore[override]
|
|
819
|
+
self, operation_name: Literal["describe_cluster_versions"]
|
|
820
|
+
) -> DescribeClusterVersionsPaginator:
|
|
821
|
+
"""
|
|
822
|
+
Create a paginator for an operation.
|
|
823
|
+
|
|
824
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
825
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
826
|
+
"""
|
|
827
|
+
|
|
828
|
+
@overload # type: ignore[override]
|
|
829
|
+
def get_paginator( # type: ignore[override]
|
|
830
|
+
self, operation_name: Literal["list_access_entries"]
|
|
831
|
+
) -> ListAccessEntriesPaginator:
|
|
832
|
+
"""
|
|
833
|
+
Create a paginator for an operation.
|
|
834
|
+
|
|
835
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
836
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
837
|
+
"""
|
|
838
|
+
|
|
839
|
+
@overload # type: ignore[override]
|
|
840
|
+
def get_paginator( # type: ignore[override]
|
|
841
|
+
self, operation_name: Literal["list_access_policies"]
|
|
842
|
+
) -> ListAccessPoliciesPaginator:
|
|
843
|
+
"""
|
|
844
|
+
Create a paginator for an operation.
|
|
845
|
+
|
|
846
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
847
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
848
|
+
"""
|
|
849
|
+
|
|
850
|
+
@overload # type: ignore[override]
|
|
851
|
+
def get_paginator( # type: ignore[override]
|
|
852
|
+
self, operation_name: Literal["list_addons"]
|
|
853
|
+
) -> ListAddonsPaginator:
|
|
854
|
+
"""
|
|
855
|
+
Create a paginator for an operation.
|
|
856
|
+
|
|
857
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
858
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
859
|
+
"""
|
|
860
|
+
|
|
861
|
+
@overload # type: ignore[override]
|
|
862
|
+
def get_paginator( # type: ignore[override]
|
|
863
|
+
self, operation_name: Literal["list_associated_access_policies"]
|
|
864
|
+
) -> ListAssociatedAccessPoliciesPaginator:
|
|
865
|
+
"""
|
|
866
|
+
Create a paginator for an operation.
|
|
867
|
+
|
|
868
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
869
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
870
|
+
"""
|
|
871
|
+
|
|
872
|
+
@overload # type: ignore[override]
|
|
873
|
+
def get_paginator( # type: ignore[override]
|
|
874
|
+
self, operation_name: Literal["list_clusters"]
|
|
875
|
+
) -> ListClustersPaginator:
|
|
876
|
+
"""
|
|
877
|
+
Create a paginator for an operation.
|
|
878
|
+
|
|
879
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
880
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
881
|
+
"""
|
|
882
|
+
|
|
883
|
+
@overload # type: ignore[override]
|
|
884
|
+
def get_paginator( # type: ignore[override]
|
|
885
|
+
self, operation_name: Literal["list_eks_anywhere_subscriptions"]
|
|
886
|
+
) -> ListEksAnywhereSubscriptionsPaginator:
|
|
887
|
+
"""
|
|
888
|
+
Create a paginator for an operation.
|
|
889
|
+
|
|
890
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
891
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
892
|
+
"""
|
|
893
|
+
|
|
894
|
+
@overload # type: ignore[override]
|
|
895
|
+
def get_paginator( # type: ignore[override]
|
|
896
|
+
self, operation_name: Literal["list_fargate_profiles"]
|
|
897
|
+
) -> ListFargateProfilesPaginator:
|
|
898
|
+
"""
|
|
899
|
+
Create a paginator for an operation.
|
|
900
|
+
|
|
901
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
902
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
903
|
+
"""
|
|
904
|
+
|
|
905
|
+
@overload # type: ignore[override]
|
|
906
|
+
def get_paginator( # type: ignore[override]
|
|
907
|
+
self, operation_name: Literal["list_identity_provider_configs"]
|
|
908
|
+
) -> ListIdentityProviderConfigsPaginator:
|
|
909
|
+
"""
|
|
910
|
+
Create a paginator for an operation.
|
|
911
|
+
|
|
912
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
913
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
914
|
+
"""
|
|
915
|
+
|
|
916
|
+
@overload # type: ignore[override]
|
|
917
|
+
def get_paginator( # type: ignore[override]
|
|
918
|
+
self, operation_name: Literal["list_insights"]
|
|
919
|
+
) -> ListInsightsPaginator:
|
|
920
|
+
"""
|
|
921
|
+
Create a paginator for an operation.
|
|
922
|
+
|
|
923
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
924
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
925
|
+
"""
|
|
926
|
+
|
|
927
|
+
@overload # type: ignore[override]
|
|
928
|
+
def get_paginator( # type: ignore[override]
|
|
929
|
+
self, operation_name: Literal["list_nodegroups"]
|
|
930
|
+
) -> ListNodegroupsPaginator:
|
|
931
|
+
"""
|
|
932
|
+
Create a paginator for an operation.
|
|
933
|
+
|
|
934
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
935
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
936
|
+
"""
|
|
937
|
+
|
|
938
|
+
@overload # type: ignore[override]
|
|
939
|
+
def get_paginator( # type: ignore[override]
|
|
940
|
+
self, operation_name: Literal["list_pod_identity_associations"]
|
|
941
|
+
) -> ListPodIdentityAssociationsPaginator:
|
|
942
|
+
"""
|
|
943
|
+
Create a paginator for an operation.
|
|
944
|
+
|
|
945
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
946
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
947
|
+
"""
|
|
948
|
+
|
|
949
|
+
@overload # type: ignore[override]
|
|
950
|
+
def get_paginator( # type: ignore[override]
|
|
951
|
+
self, operation_name: Literal["list_updates"]
|
|
952
|
+
) -> ListUpdatesPaginator:
|
|
953
|
+
"""
|
|
954
|
+
Create a paginator for an operation.
|
|
955
|
+
|
|
956
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
957
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
958
|
+
"""
|
|
959
|
+
|
|
960
|
+
@overload # type: ignore[override]
|
|
961
|
+
def get_waiter( # type: ignore[override]
|
|
962
|
+
self, waiter_name: Literal["addon_active"]
|
|
963
|
+
) -> AddonActiveWaiter:
|
|
964
|
+
"""
|
|
965
|
+
Returns an object that can wait for some condition.
|
|
966
|
+
|
|
967
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_waiter.html)
|
|
968
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
969
|
+
"""
|
|
970
|
+
|
|
971
|
+
@overload # type: ignore[override]
|
|
972
|
+
def get_waiter( # type: ignore[override]
|
|
973
|
+
self, waiter_name: Literal["addon_deleted"]
|
|
974
|
+
) -> AddonDeletedWaiter:
|
|
975
|
+
"""
|
|
976
|
+
Returns an object that can wait for some condition.
|
|
977
|
+
|
|
978
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_waiter.html)
|
|
979
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
980
|
+
"""
|
|
981
|
+
|
|
982
|
+
@overload # type: ignore[override]
|
|
983
|
+
def get_waiter( # type: ignore[override]
|
|
984
|
+
self, waiter_name: Literal["cluster_active"]
|
|
985
|
+
) -> ClusterActiveWaiter:
|
|
986
|
+
"""
|
|
987
|
+
Returns an object that can wait for some condition.
|
|
988
|
+
|
|
989
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_waiter.html)
|
|
990
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
991
|
+
"""
|
|
992
|
+
|
|
993
|
+
@overload # type: ignore[override]
|
|
994
|
+
def get_waiter( # type: ignore[override]
|
|
995
|
+
self, waiter_name: Literal["cluster_deleted"]
|
|
996
|
+
) -> ClusterDeletedWaiter:
|
|
997
|
+
"""
|
|
998
|
+
Returns an object that can wait for some condition.
|
|
999
|
+
|
|
1000
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_waiter.html)
|
|
1001
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
1002
|
+
"""
|
|
1003
|
+
|
|
1004
|
+
@overload # type: ignore[override]
|
|
1005
|
+
def get_waiter( # type: ignore[override]
|
|
1006
|
+
self, waiter_name: Literal["fargate_profile_active"]
|
|
1007
|
+
) -> FargateProfileActiveWaiter:
|
|
1008
|
+
"""
|
|
1009
|
+
Returns an object that can wait for some condition.
|
|
1010
|
+
|
|
1011
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_waiter.html)
|
|
1012
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
1013
|
+
"""
|
|
1014
|
+
|
|
1015
|
+
@overload # type: ignore[override]
|
|
1016
|
+
def get_waiter( # type: ignore[override]
|
|
1017
|
+
self, waiter_name: Literal["fargate_profile_deleted"]
|
|
1018
|
+
) -> FargateProfileDeletedWaiter:
|
|
1019
|
+
"""
|
|
1020
|
+
Returns an object that can wait for some condition.
|
|
1021
|
+
|
|
1022
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_waiter.html)
|
|
1023
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
1024
|
+
"""
|
|
1025
|
+
|
|
1026
|
+
@overload # type: ignore[override]
|
|
1027
|
+
def get_waiter( # type: ignore[override]
|
|
1028
|
+
self, waiter_name: Literal["nodegroup_active"]
|
|
1029
|
+
) -> NodegroupActiveWaiter:
|
|
1030
|
+
"""
|
|
1031
|
+
Returns an object that can wait for some condition.
|
|
1032
|
+
|
|
1033
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_waiter.html)
|
|
1034
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
1035
|
+
"""
|
|
1036
|
+
|
|
1037
|
+
@overload # type: ignore[override]
|
|
1038
|
+
def get_waiter( # type: ignore[override]
|
|
1039
|
+
self, waiter_name: Literal["nodegroup_deleted"]
|
|
1040
|
+
) -> NodegroupDeletedWaiter:
|
|
1041
|
+
"""
|
|
1042
|
+
Returns an object that can wait for some condition.
|
|
1043
|
+
|
|
1044
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_waiter.html)
|
|
1045
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_waiter)
|
|
1046
|
+
"""
|