types-boto3-eks 1.35.86__py3-none-any.whl → 1.35.93__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- types_boto3_eks/__init__.py +5 -1
- types_boto3_eks/__init__.pyi +5 -1
- types_boto3_eks/__main__.py +5 -5
- types_boto3_eks/client.py +50 -20
- types_boto3_eks/client.pyi +50 -20
- types_boto3_eks/literals.py +6 -1
- types_boto3_eks/literals.pyi +6 -1
- types_boto3_eks/paginator.py +27 -1
- types_boto3_eks/paginator.pyi +24 -1
- types_boto3_eks/type_defs.py +125 -77
- types_boto3_eks/type_defs.pyi +121 -77
- types_boto3_eks/version.py +2 -2
- types_boto3_eks/waiter.py +1 -1
- types_boto3_eks/waiter.pyi +1 -1
- {types_boto3_eks-1.35.86.dist-info → types_boto3_eks-1.35.93.dist-info}/LICENSE +1 -1
- {types_boto3_eks-1.35.86.dist-info → types_boto3_eks-1.35.93.dist-info}/METADATA +10 -6
- types_boto3_eks-1.35.93.dist-info/RECORD +20 -0
- {types_boto3_eks-1.35.86.dist-info → types_boto3_eks-1.35.93.dist-info}/WHEEL +1 -1
- types_boto3_eks-1.35.86.dist-info/RECORD +0 -20
- {types_boto3_eks-1.35.86.dist-info → types_boto3_eks-1.35.93.dist-info}/top_level.txt +0 -0
types_boto3_eks/__init__.py
CHANGED
|
@@ -12,6 +12,7 @@ Usage::
|
|
|
12
12
|
ClusterActiveWaiter,
|
|
13
13
|
ClusterDeletedWaiter,
|
|
14
14
|
DescribeAddonVersionsPaginator,
|
|
15
|
+
DescribeClusterVersionsPaginator,
|
|
15
16
|
EKSClient,
|
|
16
17
|
FargateProfileActiveWaiter,
|
|
17
18
|
FargateProfileDeletedWaiter,
|
|
@@ -44,6 +45,7 @@ Usage::
|
|
|
44
45
|
nodegroup_deleted_waiter: NodegroupDeletedWaiter = client.get_waiter("nodegroup_deleted")
|
|
45
46
|
|
|
46
47
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
|
|
48
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
47
49
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
|
|
48
50
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
49
51
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
@@ -58,12 +60,13 @@ Usage::
|
|
|
58
60
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
59
61
|
```
|
|
60
62
|
|
|
61
|
-
Copyright
|
|
63
|
+
Copyright 2025 Vlad Emelianov
|
|
62
64
|
"""
|
|
63
65
|
|
|
64
66
|
from .client import EKSClient
|
|
65
67
|
from .paginator import (
|
|
66
68
|
DescribeAddonVersionsPaginator,
|
|
69
|
+
DescribeClusterVersionsPaginator,
|
|
67
70
|
ListAccessEntriesPaginator,
|
|
68
71
|
ListAccessPoliciesPaginator,
|
|
69
72
|
ListAddonsPaginator,
|
|
@@ -98,6 +101,7 @@ __all__ = (
|
|
|
98
101
|
"ClusterActiveWaiter",
|
|
99
102
|
"ClusterDeletedWaiter",
|
|
100
103
|
"DescribeAddonVersionsPaginator",
|
|
104
|
+
"DescribeClusterVersionsPaginator",
|
|
101
105
|
"EKSClient",
|
|
102
106
|
"FargateProfileActiveWaiter",
|
|
103
107
|
"FargateProfileDeletedWaiter",
|
types_boto3_eks/__init__.pyi
CHANGED
|
@@ -12,6 +12,7 @@ Usage::
|
|
|
12
12
|
ClusterActiveWaiter,
|
|
13
13
|
ClusterDeletedWaiter,
|
|
14
14
|
DescribeAddonVersionsPaginator,
|
|
15
|
+
DescribeClusterVersionsPaginator,
|
|
15
16
|
EKSClient,
|
|
16
17
|
FargateProfileActiveWaiter,
|
|
17
18
|
FargateProfileDeletedWaiter,
|
|
@@ -44,6 +45,7 @@ Usage::
|
|
|
44
45
|
nodegroup_deleted_waiter: NodegroupDeletedWaiter = client.get_waiter("nodegroup_deleted")
|
|
45
46
|
|
|
46
47
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
|
|
48
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
47
49
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
|
|
48
50
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
49
51
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
@@ -58,12 +60,13 @@ Usage::
|
|
|
58
60
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
59
61
|
```
|
|
60
62
|
|
|
61
|
-
Copyright
|
|
63
|
+
Copyright 2025 Vlad Emelianov
|
|
62
64
|
"""
|
|
63
65
|
|
|
64
66
|
from .client import EKSClient
|
|
65
67
|
from .paginator import (
|
|
66
68
|
DescribeAddonVersionsPaginator,
|
|
69
|
+
DescribeClusterVersionsPaginator,
|
|
67
70
|
ListAccessEntriesPaginator,
|
|
68
71
|
ListAccessPoliciesPaginator,
|
|
69
72
|
ListAddonsPaginator,
|
|
@@ -97,6 +100,7 @@ __all__ = (
|
|
|
97
100
|
"ClusterActiveWaiter",
|
|
98
101
|
"ClusterDeletedWaiter",
|
|
99
102
|
"DescribeAddonVersionsPaginator",
|
|
103
|
+
"DescribeClusterVersionsPaginator",
|
|
100
104
|
"EKSClient",
|
|
101
105
|
"FargateProfileActiveWaiter",
|
|
102
106
|
"FargateProfileDeletedWaiter",
|
types_boto3_eks/__main__.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
3
|
|
|
4
|
-
Copyright
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
5
5
|
"""
|
|
6
6
|
|
|
7
7
|
import sys
|
|
@@ -12,9 +12,9 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 EKS 1.35.
|
|
16
|
-
"Version: 1.35.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 EKS 1.35.93\n"
|
|
16
|
+
"Version: 1.35.93\n"
|
|
17
|
+
"Builder version: 8.8.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/types_boto3_docs/types_boto3_eks//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#eks\n"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.35.
|
|
29
|
+
sys.stdout.write("1.35.93\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_eks/client.py
CHANGED
|
@@ -13,13 +13,13 @@ Usage::
|
|
|
13
13
|
client: EKSClient = session.client("eks")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
23
23
|
|
|
24
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
25
|
from botocore.errorfactory import BaseClientExceptions
|
|
@@ -27,6 +27,7 @@ from botocore.exceptions import ClientError as BotocoreClientError
|
|
|
27
27
|
|
|
28
28
|
from .paginator import (
|
|
29
29
|
DescribeAddonVersionsPaginator,
|
|
30
|
+
DescribeClusterVersionsPaginator,
|
|
30
31
|
ListAccessEntriesPaginator,
|
|
31
32
|
ListAccessPoliciesPaginator,
|
|
32
33
|
ListAddonsPaginator,
|
|
@@ -86,6 +87,8 @@ from .type_defs import (
|
|
|
86
87
|
DescribeAddonVersionsResponseTypeDef,
|
|
87
88
|
DescribeClusterRequestRequestTypeDef,
|
|
88
89
|
DescribeClusterResponseTypeDef,
|
|
90
|
+
DescribeClusterVersionsRequestRequestTypeDef,
|
|
91
|
+
DescribeClusterVersionsResponseTypeDef,
|
|
89
92
|
DescribeEksAnywhereSubscriptionRequestRequestTypeDef,
|
|
90
93
|
DescribeEksAnywhereSubscriptionResponseTypeDef,
|
|
91
94
|
DescribeFargateProfileRequestRequestTypeDef,
|
|
@@ -161,6 +164,12 @@ from .waiter import (
|
|
|
161
164
|
NodegroupDeletedWaiter,
|
|
162
165
|
)
|
|
163
166
|
|
|
167
|
+
if sys.version_info >= (3, 9):
|
|
168
|
+
from builtins import dict as Dict
|
|
169
|
+
from builtins import type as Type
|
|
170
|
+
from collections.abc import Mapping
|
|
171
|
+
else:
|
|
172
|
+
from typing import Dict, Mapping, Type
|
|
164
173
|
if sys.version_info >= (3, 12):
|
|
165
174
|
from typing import Literal, Unpack
|
|
166
175
|
else:
|
|
@@ -171,20 +180,20 @@ __all__ = ("EKSClient",)
|
|
|
171
180
|
|
|
172
181
|
|
|
173
182
|
class Exceptions(BaseClientExceptions):
|
|
174
|
-
AccessDeniedException:
|
|
175
|
-
BadRequestException:
|
|
176
|
-
ClientError:
|
|
177
|
-
ClientException:
|
|
178
|
-
InvalidParameterException:
|
|
179
|
-
InvalidRequestException:
|
|
180
|
-
NotFoundException:
|
|
181
|
-
ResourceInUseException:
|
|
182
|
-
ResourceLimitExceededException:
|
|
183
|
-
ResourceNotFoundException:
|
|
184
|
-
ResourcePropagationDelayException:
|
|
185
|
-
ServerException:
|
|
186
|
-
ServiceUnavailableException:
|
|
187
|
-
UnsupportedAvailabilityZoneException:
|
|
183
|
+
AccessDeniedException: Type[BotocoreClientError]
|
|
184
|
+
BadRequestException: Type[BotocoreClientError]
|
|
185
|
+
ClientError: Type[BotocoreClientError]
|
|
186
|
+
ClientException: Type[BotocoreClientError]
|
|
187
|
+
InvalidParameterException: Type[BotocoreClientError]
|
|
188
|
+
InvalidRequestException: Type[BotocoreClientError]
|
|
189
|
+
NotFoundException: Type[BotocoreClientError]
|
|
190
|
+
ResourceInUseException: Type[BotocoreClientError]
|
|
191
|
+
ResourceLimitExceededException: Type[BotocoreClientError]
|
|
192
|
+
ResourceNotFoundException: Type[BotocoreClientError]
|
|
193
|
+
ResourcePropagationDelayException: Type[BotocoreClientError]
|
|
194
|
+
ServerException: Type[BotocoreClientError]
|
|
195
|
+
ServiceUnavailableException: Type[BotocoreClientError]
|
|
196
|
+
UnsupportedAvailabilityZoneException: Type[BotocoreClientError]
|
|
188
197
|
|
|
189
198
|
|
|
190
199
|
class EKSClient(BaseClient):
|
|
@@ -325,7 +334,7 @@ class EKSClient(BaseClient):
|
|
|
325
334
|
|
|
326
335
|
def delete_access_entry(
|
|
327
336
|
self, **kwargs: Unpack[DeleteAccessEntryRequestRequestTypeDef]
|
|
328
|
-
) ->
|
|
337
|
+
) -> Dict[str, Any]:
|
|
329
338
|
"""
|
|
330
339
|
Deletes an access entry.
|
|
331
340
|
|
|
@@ -453,6 +462,16 @@ class EKSClient(BaseClient):
|
|
|
453
462
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_cluster)
|
|
454
463
|
"""
|
|
455
464
|
|
|
465
|
+
def describe_cluster_versions(
|
|
466
|
+
self, **kwargs: Unpack[DescribeClusterVersionsRequestRequestTypeDef]
|
|
467
|
+
) -> DescribeClusterVersionsResponseTypeDef:
|
|
468
|
+
"""
|
|
469
|
+
Lists available Kubernetes versions for Amazon EKS clusters.
|
|
470
|
+
|
|
471
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_cluster_versions.html)
|
|
472
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_cluster_versions)
|
|
473
|
+
"""
|
|
474
|
+
|
|
456
475
|
def describe_eks_anywhere_subscription(
|
|
457
476
|
self, **kwargs: Unpack[DescribeEksAnywhereSubscriptionRequestRequestTypeDef]
|
|
458
477
|
) -> DescribeEksAnywhereSubscriptionResponseTypeDef:
|
|
@@ -525,7 +544,7 @@ class EKSClient(BaseClient):
|
|
|
525
544
|
|
|
526
545
|
def disassociate_access_policy(
|
|
527
546
|
self, **kwargs: Unpack[DisassociateAccessPolicyRequestRequestTypeDef]
|
|
528
|
-
) ->
|
|
547
|
+
) -> Dict[str, Any]:
|
|
529
548
|
"""
|
|
530
549
|
Disassociates an access policy from an access entry.
|
|
531
550
|
|
|
@@ -687,7 +706,7 @@ class EKSClient(BaseClient):
|
|
|
687
706
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#register_cluster)
|
|
688
707
|
"""
|
|
689
708
|
|
|
690
|
-
def tag_resource(self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]) ->
|
|
709
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]) -> Dict[str, Any]:
|
|
691
710
|
"""
|
|
692
711
|
Associates the specified tags to an Amazon EKS resource with the specified
|
|
693
712
|
<code>resourceArn</code>.
|
|
@@ -698,7 +717,7 @@ class EKSClient(BaseClient):
|
|
|
698
717
|
|
|
699
718
|
def untag_resource(
|
|
700
719
|
self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
|
|
701
|
-
) ->
|
|
720
|
+
) -> Dict[str, Any]:
|
|
702
721
|
"""
|
|
703
722
|
Deletes specified tags from an Amazon EKS resource.
|
|
704
723
|
|
|
@@ -798,6 +817,17 @@ class EKSClient(BaseClient):
|
|
|
798
817
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
799
818
|
"""
|
|
800
819
|
|
|
820
|
+
@overload # type: ignore[override]
|
|
821
|
+
def get_paginator( # type: ignore[override]
|
|
822
|
+
self, operation_name: Literal["describe_cluster_versions"]
|
|
823
|
+
) -> DescribeClusterVersionsPaginator:
|
|
824
|
+
"""
|
|
825
|
+
Create a paginator for an operation.
|
|
826
|
+
|
|
827
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
828
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
829
|
+
"""
|
|
830
|
+
|
|
801
831
|
@overload # type: ignore[override]
|
|
802
832
|
def get_paginator( # type: ignore[override]
|
|
803
833
|
self, operation_name: Literal["list_access_entries"]
|
types_boto3_eks/client.pyi
CHANGED
|
@@ -13,13 +13,13 @@ Usage::
|
|
|
13
13
|
client: EKSClient = session.client("eks")
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
Copyright
|
|
16
|
+
Copyright 2025 Vlad Emelianov
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
from __future__ import annotations
|
|
20
20
|
|
|
21
21
|
import sys
|
|
22
|
-
from typing import Any,
|
|
22
|
+
from typing import Any, overload
|
|
23
23
|
|
|
24
24
|
from botocore.client import BaseClient, ClientMeta
|
|
25
25
|
from botocore.errorfactory import BaseClientExceptions
|
|
@@ -27,6 +27,7 @@ from botocore.exceptions import ClientError as BotocoreClientError
|
|
|
27
27
|
|
|
28
28
|
from .paginator import (
|
|
29
29
|
DescribeAddonVersionsPaginator,
|
|
30
|
+
DescribeClusterVersionsPaginator,
|
|
30
31
|
ListAccessEntriesPaginator,
|
|
31
32
|
ListAccessPoliciesPaginator,
|
|
32
33
|
ListAddonsPaginator,
|
|
@@ -86,6 +87,8 @@ from .type_defs import (
|
|
|
86
87
|
DescribeAddonVersionsResponseTypeDef,
|
|
87
88
|
DescribeClusterRequestRequestTypeDef,
|
|
88
89
|
DescribeClusterResponseTypeDef,
|
|
90
|
+
DescribeClusterVersionsRequestRequestTypeDef,
|
|
91
|
+
DescribeClusterVersionsResponseTypeDef,
|
|
89
92
|
DescribeEksAnywhereSubscriptionRequestRequestTypeDef,
|
|
90
93
|
DescribeEksAnywhereSubscriptionResponseTypeDef,
|
|
91
94
|
DescribeFargateProfileRequestRequestTypeDef,
|
|
@@ -161,6 +164,12 @@ from .waiter import (
|
|
|
161
164
|
NodegroupDeletedWaiter,
|
|
162
165
|
)
|
|
163
166
|
|
|
167
|
+
if sys.version_info >= (3, 9):
|
|
168
|
+
from builtins import dict as Dict
|
|
169
|
+
from builtins import type as Type
|
|
170
|
+
from collections.abc import Mapping
|
|
171
|
+
else:
|
|
172
|
+
from typing import Dict, Mapping, Type
|
|
164
173
|
if sys.version_info >= (3, 12):
|
|
165
174
|
from typing import Literal, Unpack
|
|
166
175
|
else:
|
|
@@ -169,20 +178,20 @@ else:
|
|
|
169
178
|
__all__ = ("EKSClient",)
|
|
170
179
|
|
|
171
180
|
class Exceptions(BaseClientExceptions):
|
|
172
|
-
AccessDeniedException:
|
|
173
|
-
BadRequestException:
|
|
174
|
-
ClientError:
|
|
175
|
-
ClientException:
|
|
176
|
-
InvalidParameterException:
|
|
177
|
-
InvalidRequestException:
|
|
178
|
-
NotFoundException:
|
|
179
|
-
ResourceInUseException:
|
|
180
|
-
ResourceLimitExceededException:
|
|
181
|
-
ResourceNotFoundException:
|
|
182
|
-
ResourcePropagationDelayException:
|
|
183
|
-
ServerException:
|
|
184
|
-
ServiceUnavailableException:
|
|
185
|
-
UnsupportedAvailabilityZoneException:
|
|
181
|
+
AccessDeniedException: Type[BotocoreClientError]
|
|
182
|
+
BadRequestException: Type[BotocoreClientError]
|
|
183
|
+
ClientError: Type[BotocoreClientError]
|
|
184
|
+
ClientException: Type[BotocoreClientError]
|
|
185
|
+
InvalidParameterException: Type[BotocoreClientError]
|
|
186
|
+
InvalidRequestException: Type[BotocoreClientError]
|
|
187
|
+
NotFoundException: Type[BotocoreClientError]
|
|
188
|
+
ResourceInUseException: Type[BotocoreClientError]
|
|
189
|
+
ResourceLimitExceededException: Type[BotocoreClientError]
|
|
190
|
+
ResourceNotFoundException: Type[BotocoreClientError]
|
|
191
|
+
ResourcePropagationDelayException: Type[BotocoreClientError]
|
|
192
|
+
ServerException: Type[BotocoreClientError]
|
|
193
|
+
ServiceUnavailableException: Type[BotocoreClientError]
|
|
194
|
+
UnsupportedAvailabilityZoneException: Type[BotocoreClientError]
|
|
186
195
|
|
|
187
196
|
class EKSClient(BaseClient):
|
|
188
197
|
"""
|
|
@@ -322,7 +331,7 @@ class EKSClient(BaseClient):
|
|
|
322
331
|
|
|
323
332
|
def delete_access_entry(
|
|
324
333
|
self, **kwargs: Unpack[DeleteAccessEntryRequestRequestTypeDef]
|
|
325
|
-
) ->
|
|
334
|
+
) -> Dict[str, Any]:
|
|
326
335
|
"""
|
|
327
336
|
Deletes an access entry.
|
|
328
337
|
|
|
@@ -450,6 +459,16 @@ class EKSClient(BaseClient):
|
|
|
450
459
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_cluster)
|
|
451
460
|
"""
|
|
452
461
|
|
|
462
|
+
def describe_cluster_versions(
|
|
463
|
+
self, **kwargs: Unpack[DescribeClusterVersionsRequestRequestTypeDef]
|
|
464
|
+
) -> DescribeClusterVersionsResponseTypeDef:
|
|
465
|
+
"""
|
|
466
|
+
Lists available Kubernetes versions for Amazon EKS clusters.
|
|
467
|
+
|
|
468
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_cluster_versions.html)
|
|
469
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_cluster_versions)
|
|
470
|
+
"""
|
|
471
|
+
|
|
453
472
|
def describe_eks_anywhere_subscription(
|
|
454
473
|
self, **kwargs: Unpack[DescribeEksAnywhereSubscriptionRequestRequestTypeDef]
|
|
455
474
|
) -> DescribeEksAnywhereSubscriptionResponseTypeDef:
|
|
@@ -522,7 +541,7 @@ class EKSClient(BaseClient):
|
|
|
522
541
|
|
|
523
542
|
def disassociate_access_policy(
|
|
524
543
|
self, **kwargs: Unpack[DisassociateAccessPolicyRequestRequestTypeDef]
|
|
525
|
-
) ->
|
|
544
|
+
) -> Dict[str, Any]:
|
|
526
545
|
"""
|
|
527
546
|
Disassociates an access policy from an access entry.
|
|
528
547
|
|
|
@@ -684,7 +703,7 @@ class EKSClient(BaseClient):
|
|
|
684
703
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#register_cluster)
|
|
685
704
|
"""
|
|
686
705
|
|
|
687
|
-
def tag_resource(self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]) ->
|
|
706
|
+
def tag_resource(self, **kwargs: Unpack[TagResourceRequestRequestTypeDef]) -> Dict[str, Any]:
|
|
688
707
|
"""
|
|
689
708
|
Associates the specified tags to an Amazon EKS resource with the specified
|
|
690
709
|
<code>resourceArn</code>.
|
|
@@ -695,7 +714,7 @@ class EKSClient(BaseClient):
|
|
|
695
714
|
|
|
696
715
|
def untag_resource(
|
|
697
716
|
self, **kwargs: Unpack[UntagResourceRequestRequestTypeDef]
|
|
698
|
-
) ->
|
|
717
|
+
) -> Dict[str, Any]:
|
|
699
718
|
"""
|
|
700
719
|
Deletes specified tags from an Amazon EKS resource.
|
|
701
720
|
|
|
@@ -795,6 +814,17 @@ class EKSClient(BaseClient):
|
|
|
795
814
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
796
815
|
"""
|
|
797
816
|
|
|
817
|
+
@overload # type: ignore[override]
|
|
818
|
+
def get_paginator( # type: ignore[override]
|
|
819
|
+
self, operation_name: Literal["describe_cluster_versions"]
|
|
820
|
+
) -> DescribeClusterVersionsPaginator:
|
|
821
|
+
"""
|
|
822
|
+
Create a paginator for an operation.
|
|
823
|
+
|
|
824
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
825
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
826
|
+
"""
|
|
827
|
+
|
|
798
828
|
@overload # type: ignore[override]
|
|
799
829
|
def get_paginator( # type: ignore[override]
|
|
800
830
|
self, operation_name: Literal["list_access_entries"]
|
types_boto3_eks/literals.py
CHANGED
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: AMITypesType = "AL2023_ARM_64_STANDARD"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -36,9 +36,11 @@ __all__ = (
|
|
|
36
36
|
"ClusterDeletedWaiterName",
|
|
37
37
|
"ClusterIssueCodeType",
|
|
38
38
|
"ClusterStatusType",
|
|
39
|
+
"ClusterVersionStatusType",
|
|
39
40
|
"ConfigStatusType",
|
|
40
41
|
"ConnectorConfigProviderType",
|
|
41
42
|
"DescribeAddonVersionsPaginatorName",
|
|
43
|
+
"DescribeClusterVersionsPaginatorName",
|
|
42
44
|
"EKSServiceName",
|
|
43
45
|
"EksAnywhereSubscriptionLicenseTypeType",
|
|
44
46
|
"EksAnywhereSubscriptionStatusType",
|
|
@@ -151,11 +153,13 @@ ClusterIssueCodeType = Literal[
|
|
|
151
153
|
"VpcNotFound",
|
|
152
154
|
]
|
|
153
155
|
ClusterStatusType = Literal["ACTIVE", "CREATING", "DELETING", "FAILED", "PENDING", "UPDATING"]
|
|
156
|
+
ClusterVersionStatusType = Literal["extended-support", "standard-support", "unsupported"]
|
|
154
157
|
ConfigStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
155
158
|
ConnectorConfigProviderType = Literal[
|
|
156
159
|
"AKS", "ANTHOS", "EC2", "EKS_ANYWHERE", "GKE", "OPENSHIFT", "OTHER", "RANCHER", "TANZU"
|
|
157
160
|
]
|
|
158
161
|
DescribeAddonVersionsPaginatorName = Literal["describe_addon_versions"]
|
|
162
|
+
DescribeClusterVersionsPaginatorName = Literal["describe_cluster_versions"]
|
|
159
163
|
EksAnywhereSubscriptionLicenseTypeType = Literal["Cluster"]
|
|
160
164
|
EksAnywhereSubscriptionStatusType = Literal[
|
|
161
165
|
"ACTIVE", "CREATING", "DELETING", "EXPIRED", "EXPIRING", "UPDATING"
|
|
@@ -723,6 +727,7 @@ ResourceServiceName = Literal[
|
|
|
723
727
|
]
|
|
724
728
|
PaginatorName = Literal[
|
|
725
729
|
"describe_addon_versions",
|
|
730
|
+
"describe_cluster_versions",
|
|
726
731
|
"list_access_entries",
|
|
727
732
|
"list_access_policies",
|
|
728
733
|
"list_addons",
|
types_boto3_eks/literals.pyi
CHANGED
|
@@ -11,7 +11,7 @@ Usage::
|
|
|
11
11
|
data: AMITypesType = "AL2023_ARM_64_STANDARD"
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -35,9 +35,11 @@ __all__ = (
|
|
|
35
35
|
"ClusterDeletedWaiterName",
|
|
36
36
|
"ClusterIssueCodeType",
|
|
37
37
|
"ClusterStatusType",
|
|
38
|
+
"ClusterVersionStatusType",
|
|
38
39
|
"ConfigStatusType",
|
|
39
40
|
"ConnectorConfigProviderType",
|
|
40
41
|
"DescribeAddonVersionsPaginatorName",
|
|
42
|
+
"DescribeClusterVersionsPaginatorName",
|
|
41
43
|
"EKSServiceName",
|
|
42
44
|
"EksAnywhereSubscriptionLicenseTypeType",
|
|
43
45
|
"EksAnywhereSubscriptionStatusType",
|
|
@@ -149,11 +151,13 @@ ClusterIssueCodeType = Literal[
|
|
|
149
151
|
"VpcNotFound",
|
|
150
152
|
]
|
|
151
153
|
ClusterStatusType = Literal["ACTIVE", "CREATING", "DELETING", "FAILED", "PENDING", "UPDATING"]
|
|
154
|
+
ClusterVersionStatusType = Literal["extended-support", "standard-support", "unsupported"]
|
|
152
155
|
ConfigStatusType = Literal["ACTIVE", "CREATING", "DELETING"]
|
|
153
156
|
ConnectorConfigProviderType = Literal[
|
|
154
157
|
"AKS", "ANTHOS", "EC2", "EKS_ANYWHERE", "GKE", "OPENSHIFT", "OTHER", "RANCHER", "TANZU"
|
|
155
158
|
]
|
|
156
159
|
DescribeAddonVersionsPaginatorName = Literal["describe_addon_versions"]
|
|
160
|
+
DescribeClusterVersionsPaginatorName = Literal["describe_cluster_versions"]
|
|
157
161
|
EksAnywhereSubscriptionLicenseTypeType = Literal["Cluster"]
|
|
158
162
|
EksAnywhereSubscriptionStatusType = Literal[
|
|
159
163
|
"ACTIVE", "CREATING", "DELETING", "EXPIRED", "EXPIRING", "UPDATING"
|
|
@@ -721,6 +725,7 @@ ResourceServiceName = Literal[
|
|
|
721
725
|
]
|
|
722
726
|
PaginatorName = Literal[
|
|
723
727
|
"describe_addon_versions",
|
|
728
|
+
"describe_cluster_versions",
|
|
724
729
|
"list_access_entries",
|
|
725
730
|
"list_access_policies",
|
|
726
731
|
"list_addons",
|
types_boto3_eks/paginator.py
CHANGED
|
@@ -11,6 +11,7 @@ Usage::
|
|
|
11
11
|
from types_boto3_eks.client import EKSClient
|
|
12
12
|
from types_boto3_eks.paginator import (
|
|
13
13
|
DescribeAddonVersionsPaginator,
|
|
14
|
+
DescribeClusterVersionsPaginator,
|
|
14
15
|
ListAccessEntriesPaginator,
|
|
15
16
|
ListAccessPoliciesPaginator,
|
|
16
17
|
ListAddonsPaginator,
|
|
@@ -29,6 +30,7 @@ Usage::
|
|
|
29
30
|
client: EKSClient = session.client("eks")
|
|
30
31
|
|
|
31
32
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
|
|
33
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
32
34
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
|
|
33
35
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
34
36
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
@@ -43,7 +45,7 @@ Usage::
|
|
|
43
45
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
44
46
|
```
|
|
45
47
|
|
|
46
|
-
Copyright
|
|
48
|
+
Copyright 2025 Vlad Emelianov
|
|
47
49
|
"""
|
|
48
50
|
|
|
49
51
|
from __future__ import annotations
|
|
@@ -56,6 +58,8 @@ from botocore.paginate import PageIterator, Paginator
|
|
|
56
58
|
from .type_defs import (
|
|
57
59
|
DescribeAddonVersionsRequestPaginateTypeDef,
|
|
58
60
|
DescribeAddonVersionsResponseTypeDef,
|
|
61
|
+
DescribeClusterVersionsRequestPaginateTypeDef,
|
|
62
|
+
DescribeClusterVersionsResponseTypeDef,
|
|
59
63
|
ListAccessEntriesRequestPaginateTypeDef,
|
|
60
64
|
ListAccessEntriesResponseTypeDef,
|
|
61
65
|
ListAccessPoliciesRequestPaginateTypeDef,
|
|
@@ -90,6 +94,7 @@ else:
|
|
|
90
94
|
|
|
91
95
|
__all__ = (
|
|
92
96
|
"DescribeAddonVersionsPaginator",
|
|
97
|
+
"DescribeClusterVersionsPaginator",
|
|
93
98
|
"ListAccessEntriesPaginator",
|
|
94
99
|
"ListAccessPoliciesPaginator",
|
|
95
100
|
"ListAddonsPaginator",
|
|
@@ -126,6 +131,27 @@ class DescribeAddonVersionsPaginator(_DescribeAddonVersionsPaginatorBase):
|
|
|
126
131
|
"""
|
|
127
132
|
|
|
128
133
|
|
|
134
|
+
if TYPE_CHECKING:
|
|
135
|
+
_DescribeClusterVersionsPaginatorBase = Paginator[DescribeClusterVersionsResponseTypeDef]
|
|
136
|
+
else:
|
|
137
|
+
_DescribeClusterVersionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
class DescribeClusterVersionsPaginator(_DescribeClusterVersionsPaginatorBase):
|
|
141
|
+
"""
|
|
142
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeClusterVersions.html#EKS.Paginator.DescribeClusterVersions)
|
|
143
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#describeclusterversionspaginator)
|
|
144
|
+
"""
|
|
145
|
+
|
|
146
|
+
def paginate( # type: ignore[override]
|
|
147
|
+
self, **kwargs: Unpack[DescribeClusterVersionsRequestPaginateTypeDef]
|
|
148
|
+
) -> PageIterator[DescribeClusterVersionsResponseTypeDef]:
|
|
149
|
+
"""
|
|
150
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeClusterVersions.html#EKS.Paginator.DescribeClusterVersions.paginate)
|
|
151
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#describeclusterversionspaginator)
|
|
152
|
+
"""
|
|
153
|
+
|
|
154
|
+
|
|
129
155
|
if TYPE_CHECKING:
|
|
130
156
|
_ListAccessEntriesPaginatorBase = Paginator[ListAccessEntriesResponseTypeDef]
|
|
131
157
|
else:
|
types_boto3_eks/paginator.pyi
CHANGED
|
@@ -11,6 +11,7 @@ Usage::
|
|
|
11
11
|
from types_boto3_eks.client import EKSClient
|
|
12
12
|
from types_boto3_eks.paginator import (
|
|
13
13
|
DescribeAddonVersionsPaginator,
|
|
14
|
+
DescribeClusterVersionsPaginator,
|
|
14
15
|
ListAccessEntriesPaginator,
|
|
15
16
|
ListAccessPoliciesPaginator,
|
|
16
17
|
ListAddonsPaginator,
|
|
@@ -29,6 +30,7 @@ Usage::
|
|
|
29
30
|
client: EKSClient = session.client("eks")
|
|
30
31
|
|
|
31
32
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
|
|
33
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
32
34
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
|
|
33
35
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
34
36
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
@@ -43,7 +45,7 @@ Usage::
|
|
|
43
45
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
44
46
|
```
|
|
45
47
|
|
|
46
|
-
Copyright
|
|
48
|
+
Copyright 2025 Vlad Emelianov
|
|
47
49
|
"""
|
|
48
50
|
|
|
49
51
|
from __future__ import annotations
|
|
@@ -56,6 +58,8 @@ from botocore.paginate import PageIterator, Paginator
|
|
|
56
58
|
from .type_defs import (
|
|
57
59
|
DescribeAddonVersionsRequestPaginateTypeDef,
|
|
58
60
|
DescribeAddonVersionsResponseTypeDef,
|
|
61
|
+
DescribeClusterVersionsRequestPaginateTypeDef,
|
|
62
|
+
DescribeClusterVersionsResponseTypeDef,
|
|
59
63
|
ListAccessEntriesRequestPaginateTypeDef,
|
|
60
64
|
ListAccessEntriesResponseTypeDef,
|
|
61
65
|
ListAccessPoliciesRequestPaginateTypeDef,
|
|
@@ -89,6 +93,7 @@ else:
|
|
|
89
93
|
|
|
90
94
|
__all__ = (
|
|
91
95
|
"DescribeAddonVersionsPaginator",
|
|
96
|
+
"DescribeClusterVersionsPaginator",
|
|
92
97
|
"ListAccessEntriesPaginator",
|
|
93
98
|
"ListAccessPoliciesPaginator",
|
|
94
99
|
"ListAddonsPaginator",
|
|
@@ -121,6 +126,24 @@ class DescribeAddonVersionsPaginator(_DescribeAddonVersionsPaginatorBase):
|
|
|
121
126
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#describeaddonversionspaginator)
|
|
122
127
|
"""
|
|
123
128
|
|
|
129
|
+
if TYPE_CHECKING:
|
|
130
|
+
_DescribeClusterVersionsPaginatorBase = Paginator[DescribeClusterVersionsResponseTypeDef]
|
|
131
|
+
else:
|
|
132
|
+
_DescribeClusterVersionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
133
|
+
|
|
134
|
+
class DescribeClusterVersionsPaginator(_DescribeClusterVersionsPaginatorBase):
|
|
135
|
+
"""
|
|
136
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeClusterVersions.html#EKS.Paginator.DescribeClusterVersions)
|
|
137
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#describeclusterversionspaginator)
|
|
138
|
+
"""
|
|
139
|
+
def paginate( # type: ignore[override]
|
|
140
|
+
self, **kwargs: Unpack[DescribeClusterVersionsRequestPaginateTypeDef]
|
|
141
|
+
) -> PageIterator[DescribeClusterVersionsResponseTypeDef]:
|
|
142
|
+
"""
|
|
143
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/DescribeClusterVersions.html#EKS.Paginator.DescribeClusterVersions.paginate)
|
|
144
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#describeclusterversionspaginator)
|
|
145
|
+
"""
|
|
146
|
+
|
|
124
147
|
if TYPE_CHECKING:
|
|
125
148
|
_ListAccessEntriesPaginatorBase = Paginator[ListAccessEntriesResponseTypeDef]
|
|
126
149
|
else:
|