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