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