mypy-boto3-eks 1.35.86__py3-none-any.whl → 1.38.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.
- mypy_boto3_eks/__init__.py +8 -2
- mypy_boto3_eks/__init__.pyi +8 -2
- mypy_boto3_eks/__main__.py +5 -5
- mypy_boto3_eks/client.py +163 -135
- mypy_boto3_eks/client.pyi +163 -135
- mypy_boto3_eks/literals.py +22 -6
- mypy_boto3_eks/literals.pyi +22 -6
- mypy_boto3_eks/paginator.py +28 -2
- mypy_boto3_eks/paginator.pyi +25 -2
- mypy_boto3_eks/type_defs.py +374 -272
- mypy_boto3_eks/type_defs.pyi +358 -267
- mypy_boto3_eks/version.py +2 -2
- mypy_boto3_eks/waiter.py +10 -6
- mypy_boto3_eks/waiter.pyi +10 -6
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.38.0.dist-info}/METADATA +30 -10
- mypy_boto3_eks-1.38.0.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.38.0.dist-info}/WHEEL +1 -1
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.38.0.dist-info/licenses}/LICENSE +1 -1
- mypy_boto3_eks-1.35.86.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.38.0.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/client.pyi
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for eks service Client.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -12,14 +14,12 @@ Usage::
|
|
|
12
14
|
session = Session()
|
|
13
15
|
client: EKSClient = session.client("eks")
|
|
14
16
|
```
|
|
15
|
-
|
|
16
|
-
Copyright 2024 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
23
23
|
|
|
24
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
25
|
from botocore.errorfactory import BaseClientExceptions
|
|
@@ -27,6 +27,7 @@ from botocore.exceptions import ClientError as BotocoreClientError
|
|
|
27
27
|
|
|
28
28
|
from .paginator import (
|
|
29
29
|
DescribeAddonVersionsPaginator,
|
|
30
|
+
DescribeClusterVersionsPaginator,
|
|
30
31
|
ListAccessEntriesPaginator,
|
|
31
32
|
ListAccessPoliciesPaginator,
|
|
32
33
|
ListAddonsPaginator,
|
|
@@ -41,113 +42,115 @@ from .paginator import (
|
|
|
41
42
|
ListUpdatesPaginator,
|
|
42
43
|
)
|
|
43
44
|
from .type_defs import (
|
|
44
|
-
|
|
45
|
+
AssociateAccessPolicyRequestTypeDef,
|
|
45
46
|
AssociateAccessPolicyResponseTypeDef,
|
|
46
|
-
|
|
47
|
+
AssociateEncryptionConfigRequestTypeDef,
|
|
47
48
|
AssociateEncryptionConfigResponseTypeDef,
|
|
48
|
-
|
|
49
|
+
AssociateIdentityProviderConfigRequestTypeDef,
|
|
49
50
|
AssociateIdentityProviderConfigResponseTypeDef,
|
|
50
|
-
|
|
51
|
+
CreateAccessEntryRequestTypeDef,
|
|
51
52
|
CreateAccessEntryResponseTypeDef,
|
|
52
|
-
|
|
53
|
+
CreateAddonRequestTypeDef,
|
|
53
54
|
CreateAddonResponseTypeDef,
|
|
54
|
-
|
|
55
|
+
CreateClusterRequestTypeDef,
|
|
55
56
|
CreateClusterResponseTypeDef,
|
|
56
|
-
|
|
57
|
+
CreateEksAnywhereSubscriptionRequestTypeDef,
|
|
57
58
|
CreateEksAnywhereSubscriptionResponseTypeDef,
|
|
58
|
-
|
|
59
|
+
CreateFargateProfileRequestTypeDef,
|
|
59
60
|
CreateFargateProfileResponseTypeDef,
|
|
60
|
-
|
|
61
|
+
CreateNodegroupRequestTypeDef,
|
|
61
62
|
CreateNodegroupResponseTypeDef,
|
|
62
|
-
|
|
63
|
+
CreatePodIdentityAssociationRequestTypeDef,
|
|
63
64
|
CreatePodIdentityAssociationResponseTypeDef,
|
|
64
|
-
|
|
65
|
-
|
|
65
|
+
DeleteAccessEntryRequestTypeDef,
|
|
66
|
+
DeleteAddonRequestTypeDef,
|
|
66
67
|
DeleteAddonResponseTypeDef,
|
|
67
|
-
|
|
68
|
+
DeleteClusterRequestTypeDef,
|
|
68
69
|
DeleteClusterResponseTypeDef,
|
|
69
|
-
|
|
70
|
+
DeleteEksAnywhereSubscriptionRequestTypeDef,
|
|
70
71
|
DeleteEksAnywhereSubscriptionResponseTypeDef,
|
|
71
|
-
|
|
72
|
+
DeleteFargateProfileRequestTypeDef,
|
|
72
73
|
DeleteFargateProfileResponseTypeDef,
|
|
73
|
-
|
|
74
|
+
DeleteNodegroupRequestTypeDef,
|
|
74
75
|
DeleteNodegroupResponseTypeDef,
|
|
75
|
-
|
|
76
|
+
DeletePodIdentityAssociationRequestTypeDef,
|
|
76
77
|
DeletePodIdentityAssociationResponseTypeDef,
|
|
77
|
-
|
|
78
|
+
DeregisterClusterRequestTypeDef,
|
|
78
79
|
DeregisterClusterResponseTypeDef,
|
|
79
|
-
|
|
80
|
+
DescribeAccessEntryRequestTypeDef,
|
|
80
81
|
DescribeAccessEntryResponseTypeDef,
|
|
81
|
-
|
|
82
|
+
DescribeAddonConfigurationRequestTypeDef,
|
|
82
83
|
DescribeAddonConfigurationResponseTypeDef,
|
|
83
|
-
|
|
84
|
+
DescribeAddonRequestTypeDef,
|
|
84
85
|
DescribeAddonResponseTypeDef,
|
|
85
|
-
|
|
86
|
+
DescribeAddonVersionsRequestTypeDef,
|
|
86
87
|
DescribeAddonVersionsResponseTypeDef,
|
|
87
|
-
|
|
88
|
+
DescribeClusterRequestTypeDef,
|
|
88
89
|
DescribeClusterResponseTypeDef,
|
|
89
|
-
|
|
90
|
+
DescribeClusterVersionsRequestTypeDef,
|
|
91
|
+
DescribeClusterVersionsResponseTypeDef,
|
|
92
|
+
DescribeEksAnywhereSubscriptionRequestTypeDef,
|
|
90
93
|
DescribeEksAnywhereSubscriptionResponseTypeDef,
|
|
91
|
-
|
|
94
|
+
DescribeFargateProfileRequestTypeDef,
|
|
92
95
|
DescribeFargateProfileResponseTypeDef,
|
|
93
|
-
|
|
96
|
+
DescribeIdentityProviderConfigRequestTypeDef,
|
|
94
97
|
DescribeIdentityProviderConfigResponseTypeDef,
|
|
95
|
-
|
|
98
|
+
DescribeInsightRequestTypeDef,
|
|
96
99
|
DescribeInsightResponseTypeDef,
|
|
97
|
-
|
|
100
|
+
DescribeNodegroupRequestTypeDef,
|
|
98
101
|
DescribeNodegroupResponseTypeDef,
|
|
99
|
-
|
|
102
|
+
DescribePodIdentityAssociationRequestTypeDef,
|
|
100
103
|
DescribePodIdentityAssociationResponseTypeDef,
|
|
101
|
-
|
|
104
|
+
DescribeUpdateRequestTypeDef,
|
|
102
105
|
DescribeUpdateResponseTypeDef,
|
|
103
|
-
|
|
104
|
-
|
|
106
|
+
DisassociateAccessPolicyRequestTypeDef,
|
|
107
|
+
DisassociateIdentityProviderConfigRequestTypeDef,
|
|
105
108
|
DisassociateIdentityProviderConfigResponseTypeDef,
|
|
106
|
-
|
|
109
|
+
ListAccessEntriesRequestTypeDef,
|
|
107
110
|
ListAccessEntriesResponseTypeDef,
|
|
108
|
-
|
|
111
|
+
ListAccessPoliciesRequestTypeDef,
|
|
109
112
|
ListAccessPoliciesResponseTypeDef,
|
|
110
|
-
|
|
113
|
+
ListAddonsRequestTypeDef,
|
|
111
114
|
ListAddonsResponseTypeDef,
|
|
112
|
-
|
|
115
|
+
ListAssociatedAccessPoliciesRequestTypeDef,
|
|
113
116
|
ListAssociatedAccessPoliciesResponseTypeDef,
|
|
114
|
-
|
|
117
|
+
ListClustersRequestTypeDef,
|
|
115
118
|
ListClustersResponseTypeDef,
|
|
116
|
-
|
|
119
|
+
ListEksAnywhereSubscriptionsRequestTypeDef,
|
|
117
120
|
ListEksAnywhereSubscriptionsResponseTypeDef,
|
|
118
|
-
|
|
121
|
+
ListFargateProfilesRequestTypeDef,
|
|
119
122
|
ListFargateProfilesResponseTypeDef,
|
|
120
|
-
|
|
123
|
+
ListIdentityProviderConfigsRequestTypeDef,
|
|
121
124
|
ListIdentityProviderConfigsResponseTypeDef,
|
|
122
|
-
|
|
125
|
+
ListInsightsRequestTypeDef,
|
|
123
126
|
ListInsightsResponseTypeDef,
|
|
124
|
-
|
|
127
|
+
ListNodegroupsRequestTypeDef,
|
|
125
128
|
ListNodegroupsResponseTypeDef,
|
|
126
|
-
|
|
129
|
+
ListPodIdentityAssociationsRequestTypeDef,
|
|
127
130
|
ListPodIdentityAssociationsResponseTypeDef,
|
|
128
|
-
|
|
131
|
+
ListTagsForResourceRequestTypeDef,
|
|
129
132
|
ListTagsForResourceResponseTypeDef,
|
|
130
|
-
|
|
133
|
+
ListUpdatesRequestTypeDef,
|
|
131
134
|
ListUpdatesResponseTypeDef,
|
|
132
|
-
|
|
135
|
+
RegisterClusterRequestTypeDef,
|
|
133
136
|
RegisterClusterResponseTypeDef,
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
+
TagResourceRequestTypeDef,
|
|
138
|
+
UntagResourceRequestTypeDef,
|
|
139
|
+
UpdateAccessEntryRequestTypeDef,
|
|
137
140
|
UpdateAccessEntryResponseTypeDef,
|
|
138
|
-
|
|
141
|
+
UpdateAddonRequestTypeDef,
|
|
139
142
|
UpdateAddonResponseTypeDef,
|
|
140
|
-
|
|
143
|
+
UpdateClusterConfigRequestTypeDef,
|
|
141
144
|
UpdateClusterConfigResponseTypeDef,
|
|
142
|
-
|
|
145
|
+
UpdateClusterVersionRequestTypeDef,
|
|
143
146
|
UpdateClusterVersionResponseTypeDef,
|
|
144
|
-
|
|
147
|
+
UpdateEksAnywhereSubscriptionRequestTypeDef,
|
|
145
148
|
UpdateEksAnywhereSubscriptionResponseTypeDef,
|
|
146
|
-
|
|
149
|
+
UpdateNodegroupConfigRequestTypeDef,
|
|
147
150
|
UpdateNodegroupConfigResponseTypeDef,
|
|
148
|
-
|
|
151
|
+
UpdateNodegroupVersionRequestTypeDef,
|
|
149
152
|
UpdateNodegroupVersionResponseTypeDef,
|
|
150
|
-
|
|
153
|
+
UpdatePodIdentityAssociationRequestTypeDef,
|
|
151
154
|
UpdatePodIdentityAssociationResponseTypeDef,
|
|
152
155
|
)
|
|
153
156
|
from .waiter import (
|
|
@@ -161,6 +164,12 @@ from .waiter import (
|
|
|
161
164
|
NodegroupDeletedWaiter,
|
|
162
165
|
)
|
|
163
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
|
|
164
173
|
if sys.version_info >= (3, 12):
|
|
165
174
|
from typing import Literal, Unpack
|
|
166
175
|
else:
|
|
@@ -169,20 +178,22 @@ else:
|
|
|
169
178
|
__all__ = ("EKSClient",)
|
|
170
179
|
|
|
171
180
|
class Exceptions(BaseClientExceptions):
|
|
172
|
-
AccessDeniedException:
|
|
173
|
-
BadRequestException:
|
|
174
|
-
ClientError:
|
|
175
|
-
ClientException:
|
|
176
|
-
InvalidParameterException:
|
|
177
|
-
InvalidRequestException:
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
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
|
+
InvalidStateException: Type[BotocoreClientError]
|
|
188
|
+
NotFoundException: Type[BotocoreClientError]
|
|
189
|
+
ResourceInUseException: Type[BotocoreClientError]
|
|
190
|
+
ResourceLimitExceededException: Type[BotocoreClientError]
|
|
191
|
+
ResourceNotFoundException: Type[BotocoreClientError]
|
|
192
|
+
ResourcePropagationDelayException: Type[BotocoreClientError]
|
|
193
|
+
ServerException: Type[BotocoreClientError]
|
|
194
|
+
ServiceUnavailableException: Type[BotocoreClientError]
|
|
195
|
+
ThrottlingException: Type[BotocoreClientError]
|
|
196
|
+
UnsupportedAvailabilityZoneException: Type[BotocoreClientError]
|
|
186
197
|
|
|
187
198
|
class EKSClient(BaseClient):
|
|
188
199
|
"""
|
|
@@ -220,7 +231,7 @@ class EKSClient(BaseClient):
|
|
|
220
231
|
"""
|
|
221
232
|
|
|
222
233
|
def associate_access_policy(
|
|
223
|
-
self, **kwargs: Unpack[
|
|
234
|
+
self, **kwargs: Unpack[AssociateAccessPolicyRequestTypeDef]
|
|
224
235
|
) -> AssociateAccessPolicyResponseTypeDef:
|
|
225
236
|
"""
|
|
226
237
|
Associates an access policy and its scope to an access entry.
|
|
@@ -230,7 +241,7 @@ class EKSClient(BaseClient):
|
|
|
230
241
|
"""
|
|
231
242
|
|
|
232
243
|
def associate_encryption_config(
|
|
233
|
-
self, **kwargs: Unpack[
|
|
244
|
+
self, **kwargs: Unpack[AssociateEncryptionConfigRequestTypeDef]
|
|
234
245
|
) -> AssociateEncryptionConfigResponseTypeDef:
|
|
235
246
|
"""
|
|
236
247
|
Associates an encryption configuration to an existing cluster.
|
|
@@ -240,7 +251,7 @@ class EKSClient(BaseClient):
|
|
|
240
251
|
"""
|
|
241
252
|
|
|
242
253
|
def associate_identity_provider_config(
|
|
243
|
-
self, **kwargs: Unpack[
|
|
254
|
+
self, **kwargs: Unpack[AssociateIdentityProviderConfigRequestTypeDef]
|
|
244
255
|
) -> AssociateIdentityProviderConfigResponseTypeDef:
|
|
245
256
|
"""
|
|
246
257
|
Associates an identity provider configuration to a cluster.
|
|
@@ -250,7 +261,7 @@ class EKSClient(BaseClient):
|
|
|
250
261
|
"""
|
|
251
262
|
|
|
252
263
|
def create_access_entry(
|
|
253
|
-
self, **kwargs: Unpack[
|
|
264
|
+
self, **kwargs: Unpack[CreateAccessEntryRequestTypeDef]
|
|
254
265
|
) -> CreateAccessEntryResponseTypeDef:
|
|
255
266
|
"""
|
|
256
267
|
Creates an access entry.
|
|
@@ -260,7 +271,7 @@ class EKSClient(BaseClient):
|
|
|
260
271
|
"""
|
|
261
272
|
|
|
262
273
|
def create_addon(
|
|
263
|
-
self, **kwargs: Unpack[
|
|
274
|
+
self, **kwargs: Unpack[CreateAddonRequestTypeDef]
|
|
264
275
|
) -> CreateAddonResponseTypeDef:
|
|
265
276
|
"""
|
|
266
277
|
Creates an Amazon EKS add-on.
|
|
@@ -270,7 +281,7 @@ class EKSClient(BaseClient):
|
|
|
270
281
|
"""
|
|
271
282
|
|
|
272
283
|
def create_cluster(
|
|
273
|
-
self, **kwargs: Unpack[
|
|
284
|
+
self, **kwargs: Unpack[CreateClusterRequestTypeDef]
|
|
274
285
|
) -> CreateClusterResponseTypeDef:
|
|
275
286
|
"""
|
|
276
287
|
Creates an Amazon EKS control plane.
|
|
@@ -280,7 +291,7 @@ class EKSClient(BaseClient):
|
|
|
280
291
|
"""
|
|
281
292
|
|
|
282
293
|
def create_eks_anywhere_subscription(
|
|
283
|
-
self, **kwargs: Unpack[
|
|
294
|
+
self, **kwargs: Unpack[CreateEksAnywhereSubscriptionRequestTypeDef]
|
|
284
295
|
) -> CreateEksAnywhereSubscriptionResponseTypeDef:
|
|
285
296
|
"""
|
|
286
297
|
Creates an EKS Anywhere subscription.
|
|
@@ -290,7 +301,7 @@ class EKSClient(BaseClient):
|
|
|
290
301
|
"""
|
|
291
302
|
|
|
292
303
|
def create_fargate_profile(
|
|
293
|
-
self, **kwargs: Unpack[
|
|
304
|
+
self, **kwargs: Unpack[CreateFargateProfileRequestTypeDef]
|
|
294
305
|
) -> CreateFargateProfileResponseTypeDef:
|
|
295
306
|
"""
|
|
296
307
|
Creates an Fargate profile for your Amazon EKS cluster.
|
|
@@ -300,7 +311,7 @@ class EKSClient(BaseClient):
|
|
|
300
311
|
"""
|
|
301
312
|
|
|
302
313
|
def create_nodegroup(
|
|
303
|
-
self, **kwargs: Unpack[
|
|
314
|
+
self, **kwargs: Unpack[CreateNodegroupRequestTypeDef]
|
|
304
315
|
) -> CreateNodegroupResponseTypeDef:
|
|
305
316
|
"""
|
|
306
317
|
Creates a managed node group for an Amazon EKS cluster.
|
|
@@ -310,7 +321,7 @@ class EKSClient(BaseClient):
|
|
|
310
321
|
"""
|
|
311
322
|
|
|
312
323
|
def create_pod_identity_association(
|
|
313
|
-
self, **kwargs: Unpack[
|
|
324
|
+
self, **kwargs: Unpack[CreatePodIdentityAssociationRequestTypeDef]
|
|
314
325
|
) -> CreatePodIdentityAssociationResponseTypeDef:
|
|
315
326
|
"""
|
|
316
327
|
Creates an EKS Pod Identity association between a service account in an Amazon
|
|
@@ -321,8 +332,8 @@ class EKSClient(BaseClient):
|
|
|
321
332
|
"""
|
|
322
333
|
|
|
323
334
|
def delete_access_entry(
|
|
324
|
-
self, **kwargs: Unpack[
|
|
325
|
-
) ->
|
|
335
|
+
self, **kwargs: Unpack[DeleteAccessEntryRequestTypeDef]
|
|
336
|
+
) -> Dict[str, Any]:
|
|
326
337
|
"""
|
|
327
338
|
Deletes an access entry.
|
|
328
339
|
|
|
@@ -331,7 +342,7 @@ class EKSClient(BaseClient):
|
|
|
331
342
|
"""
|
|
332
343
|
|
|
333
344
|
def delete_addon(
|
|
334
|
-
self, **kwargs: Unpack[
|
|
345
|
+
self, **kwargs: Unpack[DeleteAddonRequestTypeDef]
|
|
335
346
|
) -> DeleteAddonResponseTypeDef:
|
|
336
347
|
"""
|
|
337
348
|
Deletes an Amazon EKS add-on.
|
|
@@ -341,7 +352,7 @@ class EKSClient(BaseClient):
|
|
|
341
352
|
"""
|
|
342
353
|
|
|
343
354
|
def delete_cluster(
|
|
344
|
-
self, **kwargs: Unpack[
|
|
355
|
+
self, **kwargs: Unpack[DeleteClusterRequestTypeDef]
|
|
345
356
|
) -> DeleteClusterResponseTypeDef:
|
|
346
357
|
"""
|
|
347
358
|
Deletes an Amazon EKS cluster control plane.
|
|
@@ -351,7 +362,7 @@ class EKSClient(BaseClient):
|
|
|
351
362
|
"""
|
|
352
363
|
|
|
353
364
|
def delete_eks_anywhere_subscription(
|
|
354
|
-
self, **kwargs: Unpack[
|
|
365
|
+
self, **kwargs: Unpack[DeleteEksAnywhereSubscriptionRequestTypeDef]
|
|
355
366
|
) -> DeleteEksAnywhereSubscriptionResponseTypeDef:
|
|
356
367
|
"""
|
|
357
368
|
Deletes an expired or inactive subscription.
|
|
@@ -361,7 +372,7 @@ class EKSClient(BaseClient):
|
|
|
361
372
|
"""
|
|
362
373
|
|
|
363
374
|
def delete_fargate_profile(
|
|
364
|
-
self, **kwargs: Unpack[
|
|
375
|
+
self, **kwargs: Unpack[DeleteFargateProfileRequestTypeDef]
|
|
365
376
|
) -> DeleteFargateProfileResponseTypeDef:
|
|
366
377
|
"""
|
|
367
378
|
Deletes an Fargate profile.
|
|
@@ -371,7 +382,7 @@ class EKSClient(BaseClient):
|
|
|
371
382
|
"""
|
|
372
383
|
|
|
373
384
|
def delete_nodegroup(
|
|
374
|
-
self, **kwargs: Unpack[
|
|
385
|
+
self, **kwargs: Unpack[DeleteNodegroupRequestTypeDef]
|
|
375
386
|
) -> DeleteNodegroupResponseTypeDef:
|
|
376
387
|
"""
|
|
377
388
|
Deletes a managed node group.
|
|
@@ -381,7 +392,7 @@ class EKSClient(BaseClient):
|
|
|
381
392
|
"""
|
|
382
393
|
|
|
383
394
|
def delete_pod_identity_association(
|
|
384
|
-
self, **kwargs: Unpack[
|
|
395
|
+
self, **kwargs: Unpack[DeletePodIdentityAssociationRequestTypeDef]
|
|
385
396
|
) -> DeletePodIdentityAssociationResponseTypeDef:
|
|
386
397
|
"""
|
|
387
398
|
Deletes a EKS Pod Identity association.
|
|
@@ -391,7 +402,7 @@ class EKSClient(BaseClient):
|
|
|
391
402
|
"""
|
|
392
403
|
|
|
393
404
|
def deregister_cluster(
|
|
394
|
-
self, **kwargs: Unpack[
|
|
405
|
+
self, **kwargs: Unpack[DeregisterClusterRequestTypeDef]
|
|
395
406
|
) -> DeregisterClusterResponseTypeDef:
|
|
396
407
|
"""
|
|
397
408
|
Deregisters a connected cluster to remove it from the Amazon EKS control plane.
|
|
@@ -401,7 +412,7 @@ class EKSClient(BaseClient):
|
|
|
401
412
|
"""
|
|
402
413
|
|
|
403
414
|
def describe_access_entry(
|
|
404
|
-
self, **kwargs: Unpack[
|
|
415
|
+
self, **kwargs: Unpack[DescribeAccessEntryRequestTypeDef]
|
|
405
416
|
) -> DescribeAccessEntryResponseTypeDef:
|
|
406
417
|
"""
|
|
407
418
|
Describes an access entry.
|
|
@@ -411,7 +422,7 @@ class EKSClient(BaseClient):
|
|
|
411
422
|
"""
|
|
412
423
|
|
|
413
424
|
def describe_addon(
|
|
414
|
-
self, **kwargs: Unpack[
|
|
425
|
+
self, **kwargs: Unpack[DescribeAddonRequestTypeDef]
|
|
415
426
|
) -> DescribeAddonResponseTypeDef:
|
|
416
427
|
"""
|
|
417
428
|
Describes an Amazon EKS add-on.
|
|
@@ -421,7 +432,7 @@ class EKSClient(BaseClient):
|
|
|
421
432
|
"""
|
|
422
433
|
|
|
423
434
|
def describe_addon_configuration(
|
|
424
|
-
self, **kwargs: Unpack[
|
|
435
|
+
self, **kwargs: Unpack[DescribeAddonConfigurationRequestTypeDef]
|
|
425
436
|
) -> DescribeAddonConfigurationResponseTypeDef:
|
|
426
437
|
"""
|
|
427
438
|
Returns configuration options.
|
|
@@ -431,7 +442,7 @@ class EKSClient(BaseClient):
|
|
|
431
442
|
"""
|
|
432
443
|
|
|
433
444
|
def describe_addon_versions(
|
|
434
|
-
self, **kwargs: Unpack[
|
|
445
|
+
self, **kwargs: Unpack[DescribeAddonVersionsRequestTypeDef]
|
|
435
446
|
) -> DescribeAddonVersionsResponseTypeDef:
|
|
436
447
|
"""
|
|
437
448
|
Describes the versions for an add-on.
|
|
@@ -441,7 +452,7 @@ class EKSClient(BaseClient):
|
|
|
441
452
|
"""
|
|
442
453
|
|
|
443
454
|
def describe_cluster(
|
|
444
|
-
self, **kwargs: Unpack[
|
|
455
|
+
self, **kwargs: Unpack[DescribeClusterRequestTypeDef]
|
|
445
456
|
) -> DescribeClusterResponseTypeDef:
|
|
446
457
|
"""
|
|
447
458
|
Describes an Amazon EKS cluster.
|
|
@@ -450,8 +461,18 @@ class EKSClient(BaseClient):
|
|
|
450
461
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_cluster)
|
|
451
462
|
"""
|
|
452
463
|
|
|
464
|
+
def describe_cluster_versions(
|
|
465
|
+
self, **kwargs: Unpack[DescribeClusterVersionsRequestTypeDef]
|
|
466
|
+
) -> DescribeClusterVersionsResponseTypeDef:
|
|
467
|
+
"""
|
|
468
|
+
Lists available Kubernetes versions for Amazon EKS clusters.
|
|
469
|
+
|
|
470
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_cluster_versions.html)
|
|
471
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_cluster_versions)
|
|
472
|
+
"""
|
|
473
|
+
|
|
453
474
|
def describe_eks_anywhere_subscription(
|
|
454
|
-
self, **kwargs: Unpack[
|
|
475
|
+
self, **kwargs: Unpack[DescribeEksAnywhereSubscriptionRequestTypeDef]
|
|
455
476
|
) -> DescribeEksAnywhereSubscriptionResponseTypeDef:
|
|
456
477
|
"""
|
|
457
478
|
Returns descriptive information about a subscription.
|
|
@@ -461,7 +482,7 @@ class EKSClient(BaseClient):
|
|
|
461
482
|
"""
|
|
462
483
|
|
|
463
484
|
def describe_fargate_profile(
|
|
464
|
-
self, **kwargs: Unpack[
|
|
485
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestTypeDef]
|
|
465
486
|
) -> DescribeFargateProfileResponseTypeDef:
|
|
466
487
|
"""
|
|
467
488
|
Describes an Fargate profile.
|
|
@@ -471,7 +492,7 @@ class EKSClient(BaseClient):
|
|
|
471
492
|
"""
|
|
472
493
|
|
|
473
494
|
def describe_identity_provider_config(
|
|
474
|
-
self, **kwargs: Unpack[
|
|
495
|
+
self, **kwargs: Unpack[DescribeIdentityProviderConfigRequestTypeDef]
|
|
475
496
|
) -> DescribeIdentityProviderConfigResponseTypeDef:
|
|
476
497
|
"""
|
|
477
498
|
Describes an identity provider configuration.
|
|
@@ -481,7 +502,7 @@ class EKSClient(BaseClient):
|
|
|
481
502
|
"""
|
|
482
503
|
|
|
483
504
|
def describe_insight(
|
|
484
|
-
self, **kwargs: Unpack[
|
|
505
|
+
self, **kwargs: Unpack[DescribeInsightRequestTypeDef]
|
|
485
506
|
) -> DescribeInsightResponseTypeDef:
|
|
486
507
|
"""
|
|
487
508
|
Returns details about an insight that you specify using its ID.
|
|
@@ -491,7 +512,7 @@ class EKSClient(BaseClient):
|
|
|
491
512
|
"""
|
|
492
513
|
|
|
493
514
|
def describe_nodegroup(
|
|
494
|
-
self, **kwargs: Unpack[
|
|
515
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestTypeDef]
|
|
495
516
|
) -> DescribeNodegroupResponseTypeDef:
|
|
496
517
|
"""
|
|
497
518
|
Describes a managed node group.
|
|
@@ -501,7 +522,7 @@ class EKSClient(BaseClient):
|
|
|
501
522
|
"""
|
|
502
523
|
|
|
503
524
|
def describe_pod_identity_association(
|
|
504
|
-
self, **kwargs: Unpack[
|
|
525
|
+
self, **kwargs: Unpack[DescribePodIdentityAssociationRequestTypeDef]
|
|
505
526
|
) -> DescribePodIdentityAssociationResponseTypeDef:
|
|
506
527
|
"""
|
|
507
528
|
Returns descriptive information about an EKS Pod Identity association.
|
|
@@ -511,7 +532,7 @@ class EKSClient(BaseClient):
|
|
|
511
532
|
"""
|
|
512
533
|
|
|
513
534
|
def describe_update(
|
|
514
|
-
self, **kwargs: Unpack[
|
|
535
|
+
self, **kwargs: Unpack[DescribeUpdateRequestTypeDef]
|
|
515
536
|
) -> DescribeUpdateResponseTypeDef:
|
|
516
537
|
"""
|
|
517
538
|
Describes an update to an Amazon EKS resource.
|
|
@@ -521,8 +542,8 @@ class EKSClient(BaseClient):
|
|
|
521
542
|
"""
|
|
522
543
|
|
|
523
544
|
def disassociate_access_policy(
|
|
524
|
-
self, **kwargs: Unpack[
|
|
525
|
-
) ->
|
|
545
|
+
self, **kwargs: Unpack[DisassociateAccessPolicyRequestTypeDef]
|
|
546
|
+
) -> Dict[str, Any]:
|
|
526
547
|
"""
|
|
527
548
|
Disassociates an access policy from an access entry.
|
|
528
549
|
|
|
@@ -531,7 +552,7 @@ class EKSClient(BaseClient):
|
|
|
531
552
|
"""
|
|
532
553
|
|
|
533
554
|
def disassociate_identity_provider_config(
|
|
534
|
-
self, **kwargs: Unpack[
|
|
555
|
+
self, **kwargs: Unpack[DisassociateIdentityProviderConfigRequestTypeDef]
|
|
535
556
|
) -> DisassociateIdentityProviderConfigResponseTypeDef:
|
|
536
557
|
"""
|
|
537
558
|
Disassociates an identity provider configuration from a cluster.
|
|
@@ -541,7 +562,7 @@ class EKSClient(BaseClient):
|
|
|
541
562
|
"""
|
|
542
563
|
|
|
543
564
|
def list_access_entries(
|
|
544
|
-
self, **kwargs: Unpack[
|
|
565
|
+
self, **kwargs: Unpack[ListAccessEntriesRequestTypeDef]
|
|
545
566
|
) -> ListAccessEntriesResponseTypeDef:
|
|
546
567
|
"""
|
|
547
568
|
Lists the access entries for your cluster.
|
|
@@ -551,7 +572,7 @@ class EKSClient(BaseClient):
|
|
|
551
572
|
"""
|
|
552
573
|
|
|
553
574
|
def list_access_policies(
|
|
554
|
-
self, **kwargs: Unpack[
|
|
575
|
+
self, **kwargs: Unpack[ListAccessPoliciesRequestTypeDef]
|
|
555
576
|
) -> ListAccessPoliciesResponseTypeDef:
|
|
556
577
|
"""
|
|
557
578
|
Lists the available access policies.
|
|
@@ -560,9 +581,7 @@ class EKSClient(BaseClient):
|
|
|
560
581
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#list_access_policies)
|
|
561
582
|
"""
|
|
562
583
|
|
|
563
|
-
def list_addons(
|
|
564
|
-
self, **kwargs: Unpack[ListAddonsRequestRequestTypeDef]
|
|
565
|
-
) -> ListAddonsResponseTypeDef:
|
|
584
|
+
def list_addons(self, **kwargs: Unpack[ListAddonsRequestTypeDef]) -> ListAddonsResponseTypeDef:
|
|
566
585
|
"""
|
|
567
586
|
Lists the installed add-ons.
|
|
568
587
|
|
|
@@ -571,7 +590,7 @@ class EKSClient(BaseClient):
|
|
|
571
590
|
"""
|
|
572
591
|
|
|
573
592
|
def list_associated_access_policies(
|
|
574
|
-
self, **kwargs: Unpack[
|
|
593
|
+
self, **kwargs: Unpack[ListAssociatedAccessPoliciesRequestTypeDef]
|
|
575
594
|
) -> ListAssociatedAccessPoliciesResponseTypeDef:
|
|
576
595
|
"""
|
|
577
596
|
Lists the access policies associated with an access entry.
|
|
@@ -581,7 +600,7 @@ class EKSClient(BaseClient):
|
|
|
581
600
|
"""
|
|
582
601
|
|
|
583
602
|
def list_clusters(
|
|
584
|
-
self, **kwargs: Unpack[
|
|
603
|
+
self, **kwargs: Unpack[ListClustersRequestTypeDef]
|
|
585
604
|
) -> ListClustersResponseTypeDef:
|
|
586
605
|
"""
|
|
587
606
|
Lists the Amazon EKS clusters in your Amazon Web Services account in the
|
|
@@ -592,7 +611,7 @@ class EKSClient(BaseClient):
|
|
|
592
611
|
"""
|
|
593
612
|
|
|
594
613
|
def list_eks_anywhere_subscriptions(
|
|
595
|
-
self, **kwargs: Unpack[
|
|
614
|
+
self, **kwargs: Unpack[ListEksAnywhereSubscriptionsRequestTypeDef]
|
|
596
615
|
) -> ListEksAnywhereSubscriptionsResponseTypeDef:
|
|
597
616
|
"""
|
|
598
617
|
Displays the full description of the subscription.
|
|
@@ -602,7 +621,7 @@ class EKSClient(BaseClient):
|
|
|
602
621
|
"""
|
|
603
622
|
|
|
604
623
|
def list_fargate_profiles(
|
|
605
|
-
self, **kwargs: Unpack[
|
|
624
|
+
self, **kwargs: Unpack[ListFargateProfilesRequestTypeDef]
|
|
606
625
|
) -> ListFargateProfilesResponseTypeDef:
|
|
607
626
|
"""
|
|
608
627
|
Lists the Fargate profiles associated with the specified cluster in your Amazon
|
|
@@ -613,7 +632,7 @@ class EKSClient(BaseClient):
|
|
|
613
632
|
"""
|
|
614
633
|
|
|
615
634
|
def list_identity_provider_configs(
|
|
616
|
-
self, **kwargs: Unpack[
|
|
635
|
+
self, **kwargs: Unpack[ListIdentityProviderConfigsRequestTypeDef]
|
|
617
636
|
) -> ListIdentityProviderConfigsResponseTypeDef:
|
|
618
637
|
"""
|
|
619
638
|
Lists the identity provider configurations for your cluster.
|
|
@@ -623,7 +642,7 @@ class EKSClient(BaseClient):
|
|
|
623
642
|
"""
|
|
624
643
|
|
|
625
644
|
def list_insights(
|
|
626
|
-
self, **kwargs: Unpack[
|
|
645
|
+
self, **kwargs: Unpack[ListInsightsRequestTypeDef]
|
|
627
646
|
) -> ListInsightsResponseTypeDef:
|
|
628
647
|
"""
|
|
629
648
|
Returns a list of all insights checked for against the specified cluster.
|
|
@@ -633,7 +652,7 @@ class EKSClient(BaseClient):
|
|
|
633
652
|
"""
|
|
634
653
|
|
|
635
654
|
def list_nodegroups(
|
|
636
|
-
self, **kwargs: Unpack[
|
|
655
|
+
self, **kwargs: Unpack[ListNodegroupsRequestTypeDef]
|
|
637
656
|
) -> ListNodegroupsResponseTypeDef:
|
|
638
657
|
"""
|
|
639
658
|
Lists the managed node groups associated with the specified cluster in your
|
|
@@ -644,7 +663,7 @@ class EKSClient(BaseClient):
|
|
|
644
663
|
"""
|
|
645
664
|
|
|
646
665
|
def list_pod_identity_associations(
|
|
647
|
-
self, **kwargs: Unpack[
|
|
666
|
+
self, **kwargs: Unpack[ListPodIdentityAssociationsRequestTypeDef]
|
|
648
667
|
) -> ListPodIdentityAssociationsResponseTypeDef:
|
|
649
668
|
"""
|
|
650
669
|
List the EKS Pod Identity associations in a cluster.
|
|
@@ -654,7 +673,7 @@ class EKSClient(BaseClient):
|
|
|
654
673
|
"""
|
|
655
674
|
|
|
656
675
|
def list_tags_for_resource(
|
|
657
|
-
self, **kwargs: Unpack[
|
|
676
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestTypeDef]
|
|
658
677
|
) -> ListTagsForResourceResponseTypeDef:
|
|
659
678
|
"""
|
|
660
679
|
List the tags for an Amazon EKS resource.
|
|
@@ -664,7 +683,7 @@ class EKSClient(BaseClient):
|
|
|
664
683
|
"""
|
|
665
684
|
|
|
666
685
|
def list_updates(
|
|
667
|
-
self, **kwargs: Unpack[
|
|
686
|
+
self, **kwargs: Unpack[ListUpdatesRequestTypeDef]
|
|
668
687
|
) -> ListUpdatesResponseTypeDef:
|
|
669
688
|
"""
|
|
670
689
|
Lists the updates associated with an Amazon EKS resource in your Amazon Web
|
|
@@ -675,7 +694,7 @@ class EKSClient(BaseClient):
|
|
|
675
694
|
"""
|
|
676
695
|
|
|
677
696
|
def register_cluster(
|
|
678
|
-
self, **kwargs: Unpack[
|
|
697
|
+
self, **kwargs: Unpack[RegisterClusterRequestTypeDef]
|
|
679
698
|
) -> RegisterClusterResponseTypeDef:
|
|
680
699
|
"""
|
|
681
700
|
Connects a Kubernetes cluster to the Amazon EKS control plane.
|
|
@@ -684,7 +703,7 @@ class EKSClient(BaseClient):
|
|
|
684
703
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#register_cluster)
|
|
685
704
|
"""
|
|
686
705
|
|
|
687
|
-
def tag_resource(self, **kwargs: Unpack[
|
|
706
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> Dict[str, Any]:
|
|
688
707
|
"""
|
|
689
708
|
Associates the specified tags to an Amazon EKS resource with the specified
|
|
690
709
|
<code>resourceArn</code>.
|
|
@@ -693,9 +712,7 @@ class EKSClient(BaseClient):
|
|
|
693
712
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#tag_resource)
|
|
694
713
|
"""
|
|
695
714
|
|
|
696
|
-
def untag_resource(
|
|
697
|
-
self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
|
|
698
|
-
) -> dict[str, Any]:
|
|
715
|
+
def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) -> Dict[str, Any]:
|
|
699
716
|
"""
|
|
700
717
|
Deletes specified tags from an Amazon EKS resource.
|
|
701
718
|
|
|
@@ -704,7 +721,7 @@ class EKSClient(BaseClient):
|
|
|
704
721
|
"""
|
|
705
722
|
|
|
706
723
|
def update_access_entry(
|
|
707
|
-
self, **kwargs: Unpack[
|
|
724
|
+
self, **kwargs: Unpack[UpdateAccessEntryRequestTypeDef]
|
|
708
725
|
) -> UpdateAccessEntryResponseTypeDef:
|
|
709
726
|
"""
|
|
710
727
|
Updates an access entry.
|
|
@@ -714,7 +731,7 @@ class EKSClient(BaseClient):
|
|
|
714
731
|
"""
|
|
715
732
|
|
|
716
733
|
def update_addon(
|
|
717
|
-
self, **kwargs: Unpack[
|
|
734
|
+
self, **kwargs: Unpack[UpdateAddonRequestTypeDef]
|
|
718
735
|
) -> UpdateAddonResponseTypeDef:
|
|
719
736
|
"""
|
|
720
737
|
Updates an Amazon EKS add-on.
|
|
@@ -724,7 +741,7 @@ class EKSClient(BaseClient):
|
|
|
724
741
|
"""
|
|
725
742
|
|
|
726
743
|
def update_cluster_config(
|
|
727
|
-
self, **kwargs: Unpack[
|
|
744
|
+
self, **kwargs: Unpack[UpdateClusterConfigRequestTypeDef]
|
|
728
745
|
) -> UpdateClusterConfigResponseTypeDef:
|
|
729
746
|
"""
|
|
730
747
|
Updates an Amazon EKS cluster configuration.
|
|
@@ -734,7 +751,7 @@ class EKSClient(BaseClient):
|
|
|
734
751
|
"""
|
|
735
752
|
|
|
736
753
|
def update_cluster_version(
|
|
737
|
-
self, **kwargs: Unpack[
|
|
754
|
+
self, **kwargs: Unpack[UpdateClusterVersionRequestTypeDef]
|
|
738
755
|
) -> UpdateClusterVersionResponseTypeDef:
|
|
739
756
|
"""
|
|
740
757
|
Updates an Amazon EKS cluster to the specified Kubernetes version.
|
|
@@ -744,7 +761,7 @@ class EKSClient(BaseClient):
|
|
|
744
761
|
"""
|
|
745
762
|
|
|
746
763
|
def update_eks_anywhere_subscription(
|
|
747
|
-
self, **kwargs: Unpack[
|
|
764
|
+
self, **kwargs: Unpack[UpdateEksAnywhereSubscriptionRequestTypeDef]
|
|
748
765
|
) -> UpdateEksAnywhereSubscriptionResponseTypeDef:
|
|
749
766
|
"""
|
|
750
767
|
Update an EKS Anywhere Subscription.
|
|
@@ -754,7 +771,7 @@ class EKSClient(BaseClient):
|
|
|
754
771
|
"""
|
|
755
772
|
|
|
756
773
|
def update_nodegroup_config(
|
|
757
|
-
self, **kwargs: Unpack[
|
|
774
|
+
self, **kwargs: Unpack[UpdateNodegroupConfigRequestTypeDef]
|
|
758
775
|
) -> UpdateNodegroupConfigResponseTypeDef:
|
|
759
776
|
"""
|
|
760
777
|
Updates an Amazon EKS managed node group configuration.
|
|
@@ -764,7 +781,7 @@ class EKSClient(BaseClient):
|
|
|
764
781
|
"""
|
|
765
782
|
|
|
766
783
|
def update_nodegroup_version(
|
|
767
|
-
self, **kwargs: Unpack[
|
|
784
|
+
self, **kwargs: Unpack[UpdateNodegroupVersionRequestTypeDef]
|
|
768
785
|
) -> UpdateNodegroupVersionResponseTypeDef:
|
|
769
786
|
"""
|
|
770
787
|
Updates the Kubernetes version or AMI version of an Amazon EKS managed node
|
|
@@ -775,7 +792,7 @@ class EKSClient(BaseClient):
|
|
|
775
792
|
"""
|
|
776
793
|
|
|
777
794
|
def update_pod_identity_association(
|
|
778
|
-
self, **kwargs: Unpack[
|
|
795
|
+
self, **kwargs: Unpack[UpdatePodIdentityAssociationRequestTypeDef]
|
|
779
796
|
) -> UpdatePodIdentityAssociationResponseTypeDef:
|
|
780
797
|
"""
|
|
781
798
|
Updates a EKS Pod Identity association.
|
|
@@ -795,6 +812,17 @@ class EKSClient(BaseClient):
|
|
|
795
812
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
796
813
|
"""
|
|
797
814
|
|
|
815
|
+
@overload # type: ignore[override]
|
|
816
|
+
def get_paginator( # type: ignore[override]
|
|
817
|
+
self, operation_name: Literal["describe_cluster_versions"]
|
|
818
|
+
) -> DescribeClusterVersionsPaginator:
|
|
819
|
+
"""
|
|
820
|
+
Create a paginator for an operation.
|
|
821
|
+
|
|
822
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
823
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
824
|
+
"""
|
|
825
|
+
|
|
798
826
|
@overload # type: ignore[override]
|
|
799
827
|
def get_paginator( # type: ignore[override]
|
|
800
828
|
self, operation_name: Literal["list_access_entries"]
|