types-boto3-eks 1.41.0__py3-none-any.whl → 1.42.3__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 +4 -0
- types_boto3_eks/__init__.pyi +4 -0
- types_boto3_eks/__main__.py +3 -3
- types_boto3_eks/client.py +74 -0
- types_boto3_eks/client.pyi +74 -0
- types_boto3_eks/literals.py +27 -0
- types_boto3_eks/literals.pyi +27 -0
- types_boto3_eks/paginator.py +26 -0
- types_boto3_eks/paginator.pyi +23 -0
- types_boto3_eks/type_defs.py +239 -0
- types_boto3_eks/type_defs.pyi +208 -0
- types_boto3_eks/version.py +1 -1
- {types_boto3_eks-1.41.0.dist-info → types_boto3_eks-1.42.3.dist-info}/METADATA +6 -4
- types_boto3_eks-1.42.3.dist-info/RECORD +20 -0
- types_boto3_eks-1.41.0.dist-info/RECORD +0 -20
- {types_boto3_eks-1.41.0.dist-info → types_boto3_eks-1.42.3.dist-info}/WHEEL +0 -0
- {types_boto3_eks-1.41.0.dist-info → types_boto3_eks-1.42.3.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_eks-1.41.0.dist-info → types_boto3_eks-1.42.3.dist-info}/top_level.txt +0 -0
types_boto3_eks/__init__.py
CHANGED
|
@@ -24,6 +24,7 @@ Usage::
|
|
|
24
24
|
ListAccessPoliciesPaginator,
|
|
25
25
|
ListAddonsPaginator,
|
|
26
26
|
ListAssociatedAccessPoliciesPaginator,
|
|
27
|
+
ListCapabilitiesPaginator,
|
|
27
28
|
ListClustersPaginator,
|
|
28
29
|
ListEksAnywhereSubscriptionsPaginator,
|
|
29
30
|
ListFargateProfilesPaginator,
|
|
@@ -54,6 +55,7 @@ Usage::
|
|
|
54
55
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
55
56
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
56
57
|
list_associated_access_policies_paginator: ListAssociatedAccessPoliciesPaginator = client.get_paginator("list_associated_access_policies")
|
|
58
|
+
list_capabilities_paginator: ListCapabilitiesPaginator = client.get_paginator("list_capabilities")
|
|
57
59
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
58
60
|
list_eks_anywhere_subscriptions_paginator: ListEksAnywhereSubscriptionsPaginator = client.get_paginator("list_eks_anywhere_subscriptions")
|
|
59
61
|
list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_paginator("list_fargate_profiles")
|
|
@@ -73,6 +75,7 @@ from .paginator import (
|
|
|
73
75
|
ListAccessPoliciesPaginator,
|
|
74
76
|
ListAddonsPaginator,
|
|
75
77
|
ListAssociatedAccessPoliciesPaginator,
|
|
78
|
+
ListCapabilitiesPaginator,
|
|
76
79
|
ListClustersPaginator,
|
|
77
80
|
ListEksAnywhereSubscriptionsPaginator,
|
|
78
81
|
ListFargateProfilesPaginator,
|
|
@@ -111,6 +114,7 @@ __all__ = (
|
|
|
111
114
|
"ListAccessPoliciesPaginator",
|
|
112
115
|
"ListAddonsPaginator",
|
|
113
116
|
"ListAssociatedAccessPoliciesPaginator",
|
|
117
|
+
"ListCapabilitiesPaginator",
|
|
114
118
|
"ListClustersPaginator",
|
|
115
119
|
"ListEksAnywhereSubscriptionsPaginator",
|
|
116
120
|
"ListFargateProfilesPaginator",
|
types_boto3_eks/__init__.pyi
CHANGED
|
@@ -24,6 +24,7 @@ Usage::
|
|
|
24
24
|
ListAccessPoliciesPaginator,
|
|
25
25
|
ListAddonsPaginator,
|
|
26
26
|
ListAssociatedAccessPoliciesPaginator,
|
|
27
|
+
ListCapabilitiesPaginator,
|
|
27
28
|
ListClustersPaginator,
|
|
28
29
|
ListEksAnywhereSubscriptionsPaginator,
|
|
29
30
|
ListFargateProfilesPaginator,
|
|
@@ -54,6 +55,7 @@ Usage::
|
|
|
54
55
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
55
56
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
56
57
|
list_associated_access_policies_paginator: ListAssociatedAccessPoliciesPaginator = client.get_paginator("list_associated_access_policies")
|
|
58
|
+
list_capabilities_paginator: ListCapabilitiesPaginator = client.get_paginator("list_capabilities")
|
|
57
59
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
58
60
|
list_eks_anywhere_subscriptions_paginator: ListEksAnywhereSubscriptionsPaginator = client.get_paginator("list_eks_anywhere_subscriptions")
|
|
59
61
|
list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_paginator("list_fargate_profiles")
|
|
@@ -73,6 +75,7 @@ from .paginator import (
|
|
|
73
75
|
ListAccessPoliciesPaginator,
|
|
74
76
|
ListAddonsPaginator,
|
|
75
77
|
ListAssociatedAccessPoliciesPaginator,
|
|
78
|
+
ListCapabilitiesPaginator,
|
|
76
79
|
ListClustersPaginator,
|
|
77
80
|
ListEksAnywhereSubscriptionsPaginator,
|
|
78
81
|
ListFargateProfilesPaginator,
|
|
@@ -110,6 +113,7 @@ __all__ = (
|
|
|
110
113
|
"ListAccessPoliciesPaginator",
|
|
111
114
|
"ListAddonsPaginator",
|
|
112
115
|
"ListAssociatedAccessPoliciesPaginator",
|
|
116
|
+
"ListCapabilitiesPaginator",
|
|
113
117
|
"ListClustersPaginator",
|
|
114
118
|
"ListEksAnywhereSubscriptionsPaginator",
|
|
115
119
|
"ListFargateProfilesPaginator",
|
types_boto3_eks/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ 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.
|
|
16
|
-
"Version: 1.
|
|
15
|
+
"Type annotations for boto3 EKS 1.42.3\n"
|
|
16
|
+
"Version: 1.42.3\n"
|
|
17
17
|
"Builder version: 8.12.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"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.42.3\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
types_boto3_eks/client.py
CHANGED
|
@@ -33,6 +33,7 @@ from .paginator import (
|
|
|
33
33
|
ListAccessPoliciesPaginator,
|
|
34
34
|
ListAddonsPaginator,
|
|
35
35
|
ListAssociatedAccessPoliciesPaginator,
|
|
36
|
+
ListCapabilitiesPaginator,
|
|
36
37
|
ListClustersPaginator,
|
|
37
38
|
ListEksAnywhereSubscriptionsPaginator,
|
|
38
39
|
ListFargateProfilesPaginator,
|
|
@@ -53,6 +54,8 @@ from .type_defs import (
|
|
|
53
54
|
CreateAccessEntryResponseTypeDef,
|
|
54
55
|
CreateAddonRequestTypeDef,
|
|
55
56
|
CreateAddonResponseTypeDef,
|
|
57
|
+
CreateCapabilityRequestTypeDef,
|
|
58
|
+
CreateCapabilityResponseTypeDef,
|
|
56
59
|
CreateClusterRequestTypeDef,
|
|
57
60
|
CreateClusterResponseTypeDef,
|
|
58
61
|
CreateEksAnywhereSubscriptionRequestTypeDef,
|
|
@@ -66,6 +69,8 @@ from .type_defs import (
|
|
|
66
69
|
DeleteAccessEntryRequestTypeDef,
|
|
67
70
|
DeleteAddonRequestTypeDef,
|
|
68
71
|
DeleteAddonResponseTypeDef,
|
|
72
|
+
DeleteCapabilityRequestTypeDef,
|
|
73
|
+
DeleteCapabilityResponseTypeDef,
|
|
69
74
|
DeleteClusterRequestTypeDef,
|
|
70
75
|
DeleteClusterResponseTypeDef,
|
|
71
76
|
DeleteEksAnywhereSubscriptionRequestTypeDef,
|
|
@@ -86,6 +91,8 @@ from .type_defs import (
|
|
|
86
91
|
DescribeAddonResponseTypeDef,
|
|
87
92
|
DescribeAddonVersionsRequestTypeDef,
|
|
88
93
|
DescribeAddonVersionsResponseTypeDef,
|
|
94
|
+
DescribeCapabilityRequestTypeDef,
|
|
95
|
+
DescribeCapabilityResponseTypeDef,
|
|
89
96
|
DescribeClusterRequestTypeDef,
|
|
90
97
|
DescribeClusterResponseTypeDef,
|
|
91
98
|
DescribeClusterVersionsRequestTypeDef,
|
|
@@ -117,6 +124,8 @@ from .type_defs import (
|
|
|
117
124
|
ListAddonsResponseTypeDef,
|
|
118
125
|
ListAssociatedAccessPoliciesRequestTypeDef,
|
|
119
126
|
ListAssociatedAccessPoliciesResponseTypeDef,
|
|
127
|
+
ListCapabilitiesRequestTypeDef,
|
|
128
|
+
ListCapabilitiesResponseTypeDef,
|
|
120
129
|
ListClustersRequestTypeDef,
|
|
121
130
|
ListClustersResponseTypeDef,
|
|
122
131
|
ListEksAnywhereSubscriptionsRequestTypeDef,
|
|
@@ -145,6 +154,8 @@ from .type_defs import (
|
|
|
145
154
|
UpdateAccessEntryResponseTypeDef,
|
|
146
155
|
UpdateAddonRequestTypeDef,
|
|
147
156
|
UpdateAddonResponseTypeDef,
|
|
157
|
+
UpdateCapabilityRequestTypeDef,
|
|
158
|
+
UpdateCapabilityResponseTypeDef,
|
|
148
159
|
UpdateClusterConfigRequestTypeDef,
|
|
149
160
|
UpdateClusterConfigResponseTypeDef,
|
|
150
161
|
UpdateClusterVersionRequestTypeDef,
|
|
@@ -282,6 +293,16 @@ class EKSClient(BaseClient):
|
|
|
282
293
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#create_addon)
|
|
283
294
|
"""
|
|
284
295
|
|
|
296
|
+
def create_capability(
|
|
297
|
+
self, **kwargs: Unpack[CreateCapabilityRequestTypeDef]
|
|
298
|
+
) -> CreateCapabilityResponseTypeDef:
|
|
299
|
+
"""
|
|
300
|
+
Creates a managed capability resource for an Amazon EKS cluster.
|
|
301
|
+
|
|
302
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/create_capability.html)
|
|
303
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#create_capability)
|
|
304
|
+
"""
|
|
305
|
+
|
|
285
306
|
def create_cluster(
|
|
286
307
|
self, **kwargs: Unpack[CreateClusterRequestTypeDef]
|
|
287
308
|
) -> CreateClusterResponseTypeDef:
|
|
@@ -353,6 +374,16 @@ class EKSClient(BaseClient):
|
|
|
353
374
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#delete_addon)
|
|
354
375
|
"""
|
|
355
376
|
|
|
377
|
+
def delete_capability(
|
|
378
|
+
self, **kwargs: Unpack[DeleteCapabilityRequestTypeDef]
|
|
379
|
+
) -> DeleteCapabilityResponseTypeDef:
|
|
380
|
+
"""
|
|
381
|
+
Deletes a managed capability from your Amazon EKS cluster.
|
|
382
|
+
|
|
383
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/delete_capability.html)
|
|
384
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#delete_capability)
|
|
385
|
+
"""
|
|
386
|
+
|
|
356
387
|
def delete_cluster(
|
|
357
388
|
self, **kwargs: Unpack[DeleteClusterRequestTypeDef]
|
|
358
389
|
) -> DeleteClusterResponseTypeDef:
|
|
@@ -453,6 +484,18 @@ class EKSClient(BaseClient):
|
|
|
453
484
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_addon_versions)
|
|
454
485
|
"""
|
|
455
486
|
|
|
487
|
+
def describe_capability(
|
|
488
|
+
self, **kwargs: Unpack[DescribeCapabilityRequestTypeDef]
|
|
489
|
+
) -> DescribeCapabilityResponseTypeDef:
|
|
490
|
+
"""
|
|
491
|
+
Returns detailed information about a specific managed capability in your Amazon
|
|
492
|
+
EKS cluster, including its current status, configuration, health information,
|
|
493
|
+
and any issues that may be affecting its operation.
|
|
494
|
+
|
|
495
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_capability.html)
|
|
496
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_capability)
|
|
497
|
+
"""
|
|
498
|
+
|
|
456
499
|
def describe_cluster(
|
|
457
500
|
self, **kwargs: Unpack[DescribeClusterRequestTypeDef]
|
|
458
501
|
) -> DescribeClusterResponseTypeDef:
|
|
@@ -611,6 +654,16 @@ class EKSClient(BaseClient):
|
|
|
611
654
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_associated_access_policies)
|
|
612
655
|
"""
|
|
613
656
|
|
|
657
|
+
def list_capabilities(
|
|
658
|
+
self, **kwargs: Unpack[ListCapabilitiesRequestTypeDef]
|
|
659
|
+
) -> ListCapabilitiesResponseTypeDef:
|
|
660
|
+
"""
|
|
661
|
+
Lists all managed capabilities in your Amazon EKS cluster.
|
|
662
|
+
|
|
663
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_capabilities.html)
|
|
664
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_capabilities)
|
|
665
|
+
"""
|
|
666
|
+
|
|
614
667
|
def list_clusters(
|
|
615
668
|
self, **kwargs: Unpack[ListClustersRequestTypeDef]
|
|
616
669
|
) -> ListClustersResponseTypeDef:
|
|
@@ -763,6 +816,16 @@ class EKSClient(BaseClient):
|
|
|
763
816
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#update_addon)
|
|
764
817
|
"""
|
|
765
818
|
|
|
819
|
+
def update_capability(
|
|
820
|
+
self, **kwargs: Unpack[UpdateCapabilityRequestTypeDef]
|
|
821
|
+
) -> UpdateCapabilityResponseTypeDef:
|
|
822
|
+
"""
|
|
823
|
+
Updates the configuration of a managed capability in your Amazon EKS cluster.
|
|
824
|
+
|
|
825
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/update_capability.html)
|
|
826
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#update_capability)
|
|
827
|
+
"""
|
|
828
|
+
|
|
766
829
|
def update_cluster_config(
|
|
767
830
|
self, **kwargs: Unpack[UpdateClusterConfigRequestTypeDef]
|
|
768
831
|
) -> UpdateClusterConfigResponseTypeDef:
|
|
@@ -890,6 +953,17 @@ class EKSClient(BaseClient):
|
|
|
890
953
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
891
954
|
"""
|
|
892
955
|
|
|
956
|
+
@overload # type: ignore[override]
|
|
957
|
+
def get_paginator( # type: ignore[override]
|
|
958
|
+
self, operation_name: Literal["list_capabilities"]
|
|
959
|
+
) -> ListCapabilitiesPaginator:
|
|
960
|
+
"""
|
|
961
|
+
Create a paginator for an operation.
|
|
962
|
+
|
|
963
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
964
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
965
|
+
"""
|
|
966
|
+
|
|
893
967
|
@overload # type: ignore[override]
|
|
894
968
|
def get_paginator( # type: ignore[override]
|
|
895
969
|
self, operation_name: Literal["list_clusters"]
|
types_boto3_eks/client.pyi
CHANGED
|
@@ -33,6 +33,7 @@ from .paginator import (
|
|
|
33
33
|
ListAccessPoliciesPaginator,
|
|
34
34
|
ListAddonsPaginator,
|
|
35
35
|
ListAssociatedAccessPoliciesPaginator,
|
|
36
|
+
ListCapabilitiesPaginator,
|
|
36
37
|
ListClustersPaginator,
|
|
37
38
|
ListEksAnywhereSubscriptionsPaginator,
|
|
38
39
|
ListFargateProfilesPaginator,
|
|
@@ -53,6 +54,8 @@ from .type_defs import (
|
|
|
53
54
|
CreateAccessEntryResponseTypeDef,
|
|
54
55
|
CreateAddonRequestTypeDef,
|
|
55
56
|
CreateAddonResponseTypeDef,
|
|
57
|
+
CreateCapabilityRequestTypeDef,
|
|
58
|
+
CreateCapabilityResponseTypeDef,
|
|
56
59
|
CreateClusterRequestTypeDef,
|
|
57
60
|
CreateClusterResponseTypeDef,
|
|
58
61
|
CreateEksAnywhereSubscriptionRequestTypeDef,
|
|
@@ -66,6 +69,8 @@ from .type_defs import (
|
|
|
66
69
|
DeleteAccessEntryRequestTypeDef,
|
|
67
70
|
DeleteAddonRequestTypeDef,
|
|
68
71
|
DeleteAddonResponseTypeDef,
|
|
72
|
+
DeleteCapabilityRequestTypeDef,
|
|
73
|
+
DeleteCapabilityResponseTypeDef,
|
|
69
74
|
DeleteClusterRequestTypeDef,
|
|
70
75
|
DeleteClusterResponseTypeDef,
|
|
71
76
|
DeleteEksAnywhereSubscriptionRequestTypeDef,
|
|
@@ -86,6 +91,8 @@ from .type_defs import (
|
|
|
86
91
|
DescribeAddonResponseTypeDef,
|
|
87
92
|
DescribeAddonVersionsRequestTypeDef,
|
|
88
93
|
DescribeAddonVersionsResponseTypeDef,
|
|
94
|
+
DescribeCapabilityRequestTypeDef,
|
|
95
|
+
DescribeCapabilityResponseTypeDef,
|
|
89
96
|
DescribeClusterRequestTypeDef,
|
|
90
97
|
DescribeClusterResponseTypeDef,
|
|
91
98
|
DescribeClusterVersionsRequestTypeDef,
|
|
@@ -117,6 +124,8 @@ from .type_defs import (
|
|
|
117
124
|
ListAddonsResponseTypeDef,
|
|
118
125
|
ListAssociatedAccessPoliciesRequestTypeDef,
|
|
119
126
|
ListAssociatedAccessPoliciesResponseTypeDef,
|
|
127
|
+
ListCapabilitiesRequestTypeDef,
|
|
128
|
+
ListCapabilitiesResponseTypeDef,
|
|
120
129
|
ListClustersRequestTypeDef,
|
|
121
130
|
ListClustersResponseTypeDef,
|
|
122
131
|
ListEksAnywhereSubscriptionsRequestTypeDef,
|
|
@@ -145,6 +154,8 @@ from .type_defs import (
|
|
|
145
154
|
UpdateAccessEntryResponseTypeDef,
|
|
146
155
|
UpdateAddonRequestTypeDef,
|
|
147
156
|
UpdateAddonResponseTypeDef,
|
|
157
|
+
UpdateCapabilityRequestTypeDef,
|
|
158
|
+
UpdateCapabilityResponseTypeDef,
|
|
148
159
|
UpdateClusterConfigRequestTypeDef,
|
|
149
160
|
UpdateClusterConfigResponseTypeDef,
|
|
150
161
|
UpdateClusterVersionRequestTypeDef,
|
|
@@ -279,6 +290,16 @@ class EKSClient(BaseClient):
|
|
|
279
290
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#create_addon)
|
|
280
291
|
"""
|
|
281
292
|
|
|
293
|
+
def create_capability(
|
|
294
|
+
self, **kwargs: Unpack[CreateCapabilityRequestTypeDef]
|
|
295
|
+
) -> CreateCapabilityResponseTypeDef:
|
|
296
|
+
"""
|
|
297
|
+
Creates a managed capability resource for an Amazon EKS cluster.
|
|
298
|
+
|
|
299
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/create_capability.html)
|
|
300
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#create_capability)
|
|
301
|
+
"""
|
|
302
|
+
|
|
282
303
|
def create_cluster(
|
|
283
304
|
self, **kwargs: Unpack[CreateClusterRequestTypeDef]
|
|
284
305
|
) -> CreateClusterResponseTypeDef:
|
|
@@ -350,6 +371,16 @@ class EKSClient(BaseClient):
|
|
|
350
371
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#delete_addon)
|
|
351
372
|
"""
|
|
352
373
|
|
|
374
|
+
def delete_capability(
|
|
375
|
+
self, **kwargs: Unpack[DeleteCapabilityRequestTypeDef]
|
|
376
|
+
) -> DeleteCapabilityResponseTypeDef:
|
|
377
|
+
"""
|
|
378
|
+
Deletes a managed capability from your Amazon EKS cluster.
|
|
379
|
+
|
|
380
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/delete_capability.html)
|
|
381
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#delete_capability)
|
|
382
|
+
"""
|
|
383
|
+
|
|
353
384
|
def delete_cluster(
|
|
354
385
|
self, **kwargs: Unpack[DeleteClusterRequestTypeDef]
|
|
355
386
|
) -> DeleteClusterResponseTypeDef:
|
|
@@ -450,6 +481,18 @@ class EKSClient(BaseClient):
|
|
|
450
481
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_addon_versions)
|
|
451
482
|
"""
|
|
452
483
|
|
|
484
|
+
def describe_capability(
|
|
485
|
+
self, **kwargs: Unpack[DescribeCapabilityRequestTypeDef]
|
|
486
|
+
) -> DescribeCapabilityResponseTypeDef:
|
|
487
|
+
"""
|
|
488
|
+
Returns detailed information about a specific managed capability in your Amazon
|
|
489
|
+
EKS cluster, including its current status, configuration, health information,
|
|
490
|
+
and any issues that may be affecting its operation.
|
|
491
|
+
|
|
492
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_capability.html)
|
|
493
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#describe_capability)
|
|
494
|
+
"""
|
|
495
|
+
|
|
453
496
|
def describe_cluster(
|
|
454
497
|
self, **kwargs: Unpack[DescribeClusterRequestTypeDef]
|
|
455
498
|
) -> DescribeClusterResponseTypeDef:
|
|
@@ -608,6 +651,16 @@ class EKSClient(BaseClient):
|
|
|
608
651
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_associated_access_policies)
|
|
609
652
|
"""
|
|
610
653
|
|
|
654
|
+
def list_capabilities(
|
|
655
|
+
self, **kwargs: Unpack[ListCapabilitiesRequestTypeDef]
|
|
656
|
+
) -> ListCapabilitiesResponseTypeDef:
|
|
657
|
+
"""
|
|
658
|
+
Lists all managed capabilities in your Amazon EKS cluster.
|
|
659
|
+
|
|
660
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/list_capabilities.html)
|
|
661
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#list_capabilities)
|
|
662
|
+
"""
|
|
663
|
+
|
|
611
664
|
def list_clusters(
|
|
612
665
|
self, **kwargs: Unpack[ListClustersRequestTypeDef]
|
|
613
666
|
) -> ListClustersResponseTypeDef:
|
|
@@ -760,6 +813,16 @@ class EKSClient(BaseClient):
|
|
|
760
813
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#update_addon)
|
|
761
814
|
"""
|
|
762
815
|
|
|
816
|
+
def update_capability(
|
|
817
|
+
self, **kwargs: Unpack[UpdateCapabilityRequestTypeDef]
|
|
818
|
+
) -> UpdateCapabilityResponseTypeDef:
|
|
819
|
+
"""
|
|
820
|
+
Updates the configuration of a managed capability in your Amazon EKS cluster.
|
|
821
|
+
|
|
822
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/update_capability.html)
|
|
823
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#update_capability)
|
|
824
|
+
"""
|
|
825
|
+
|
|
763
826
|
def update_cluster_config(
|
|
764
827
|
self, **kwargs: Unpack[UpdateClusterConfigRequestTypeDef]
|
|
765
828
|
) -> UpdateClusterConfigResponseTypeDef:
|
|
@@ -887,6 +950,17 @@ class EKSClient(BaseClient):
|
|
|
887
950
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
888
951
|
"""
|
|
889
952
|
|
|
953
|
+
@overload # type: ignore[override]
|
|
954
|
+
def get_paginator( # type: ignore[override]
|
|
955
|
+
self, operation_name: Literal["list_capabilities"]
|
|
956
|
+
) -> ListCapabilitiesPaginator:
|
|
957
|
+
"""
|
|
958
|
+
Create a paginator for an operation.
|
|
959
|
+
|
|
960
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/get_paginator.html)
|
|
961
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#get_paginator)
|
|
962
|
+
"""
|
|
963
|
+
|
|
890
964
|
@overload # type: ignore[override]
|
|
891
965
|
def get_paginator( # type: ignore[override]
|
|
892
966
|
self, operation_name: Literal["list_clusters"]
|
types_boto3_eks/literals.py
CHANGED
|
@@ -29,7 +29,12 @@ __all__ = (
|
|
|
29
29
|
"AddonDeletedWaiterName",
|
|
30
30
|
"AddonIssueCodeType",
|
|
31
31
|
"AddonStatusType",
|
|
32
|
+
"ArgoCdRoleType",
|
|
32
33
|
"AuthenticationModeType",
|
|
34
|
+
"CapabilityDeletePropagationPolicyType",
|
|
35
|
+
"CapabilityIssueCodeType",
|
|
36
|
+
"CapabilityStatusType",
|
|
37
|
+
"CapabilityTypeType",
|
|
33
38
|
"CapacityTypesType",
|
|
34
39
|
"CategoryType",
|
|
35
40
|
"ClusterActiveWaiterName",
|
|
@@ -57,6 +62,7 @@ __all__ = (
|
|
|
57
62
|
"ListAccessPoliciesPaginatorName",
|
|
58
63
|
"ListAddonsPaginatorName",
|
|
59
64
|
"ListAssociatedAccessPoliciesPaginatorName",
|
|
65
|
+
"ListCapabilitiesPaginatorName",
|
|
60
66
|
"ListClustersPaginatorName",
|
|
61
67
|
"ListEksAnywhereSubscriptionsPaginatorName",
|
|
62
68
|
"ListFargateProfilesPaginatorName",
|
|
@@ -72,11 +78,13 @@ __all__ = (
|
|
|
72
78
|
"NodegroupStatusType",
|
|
73
79
|
"NodegroupUpdateStrategiesType",
|
|
74
80
|
"PaginatorName",
|
|
81
|
+
"ProvisionedControlPlaneTierType",
|
|
75
82
|
"RegionName",
|
|
76
83
|
"RepairActionType",
|
|
77
84
|
"ResolveConflictsType",
|
|
78
85
|
"ResourceServiceName",
|
|
79
86
|
"ServiceName",
|
|
87
|
+
"SsoIdentityTypeType",
|
|
80
88
|
"SupportTypeType",
|
|
81
89
|
"TaintEffectType",
|
|
82
90
|
"UpdateParamTypeType",
|
|
@@ -133,7 +141,14 @@ AddonStatusType = Literal[
|
|
|
133
141
|
"UPDATE_FAILED",
|
|
134
142
|
"UPDATING",
|
|
135
143
|
]
|
|
144
|
+
ArgoCdRoleType = Literal["ADMIN", "EDITOR", "VIEWER"]
|
|
136
145
|
AuthenticationModeType = Literal["API", "API_AND_CONFIG_MAP", "CONFIG_MAP"]
|
|
146
|
+
CapabilityDeletePropagationPolicyType = Literal["RETAIN"]
|
|
147
|
+
CapabilityIssueCodeType = Literal["AccessDenied", "ClusterUnreachable"]
|
|
148
|
+
CapabilityStatusType = Literal[
|
|
149
|
+
"ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
|
|
150
|
+
]
|
|
151
|
+
CapabilityTypeType = Literal["ACK", "ARGOCD", "KRO"]
|
|
137
152
|
CapacityTypesType = Literal["CAPACITY_BLOCK", "ON_DEMAND", "SPOT"]
|
|
138
153
|
CategoryType = Literal["MISCONFIGURATION", "UPGRADE_READINESS"]
|
|
139
154
|
ClusterActiveWaiterName = Literal["cluster_active"]
|
|
@@ -206,6 +221,7 @@ ListAccessEntriesPaginatorName = Literal["list_access_entries"]
|
|
|
206
221
|
ListAccessPoliciesPaginatorName = Literal["list_access_policies"]
|
|
207
222
|
ListAddonsPaginatorName = Literal["list_addons"]
|
|
208
223
|
ListAssociatedAccessPoliciesPaginatorName = Literal["list_associated_access_policies"]
|
|
224
|
+
ListCapabilitiesPaginatorName = Literal["list_capabilities"]
|
|
209
225
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
210
226
|
ListEksAnywhereSubscriptionsPaginatorName = Literal["list_eks_anywhere_subscriptions"]
|
|
211
227
|
ListFargateProfilesPaginatorName = Literal["list_fargate_profiles"]
|
|
@@ -259,8 +275,10 @@ NodegroupStatusType = Literal[
|
|
|
259
275
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
|
|
260
276
|
]
|
|
261
277
|
NodegroupUpdateStrategiesType = Literal["DEFAULT", "MINIMAL"]
|
|
278
|
+
ProvisionedControlPlaneTierType = Literal["standard", "tier-2xl", "tier-4xl", "tier-xl"]
|
|
262
279
|
RepairActionType = Literal["NoAction", "Reboot", "Replace"]
|
|
263
280
|
ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
|
|
281
|
+
SsoIdentityTypeType = Literal["SSO_GROUP", "SSO_USER"]
|
|
264
282
|
SupportTypeType = Literal["EXTENDED", "STANDARD"]
|
|
265
283
|
TaintEffectType = Literal["NO_EXECUTE", "NO_SCHEDULE", "PREFER_NO_SCHEDULE"]
|
|
266
284
|
UpdateParamTypeType = Literal[
|
|
@@ -288,6 +306,7 @@ UpdateParamTypeType = Literal[
|
|
|
288
306
|
"NodeRepairEnabled",
|
|
289
307
|
"PlatformVersion",
|
|
290
308
|
"PodIdentityAssociations",
|
|
309
|
+
"PreviousTier",
|
|
291
310
|
"PublicAccessCidrs",
|
|
292
311
|
"ReleaseVersion",
|
|
293
312
|
"RemoteNetworkConfig",
|
|
@@ -299,6 +318,7 @@ UpdateParamTypeType = Literal[
|
|
|
299
318
|
"TaintsToAdd",
|
|
300
319
|
"TaintsToRemove",
|
|
301
320
|
"UpdateStrategy",
|
|
321
|
+
"UpdatedTier",
|
|
302
322
|
"UpgradePolicy",
|
|
303
323
|
"Version",
|
|
304
324
|
"ZonalShiftConfig",
|
|
@@ -311,6 +331,7 @@ UpdateTypeType = Literal[
|
|
|
311
331
|
"AssociateIdentityProviderConfig",
|
|
312
332
|
"AutoModeUpdate",
|
|
313
333
|
"ConfigUpdate",
|
|
334
|
+
"ControlPlaneScalingConfigUpdate",
|
|
314
335
|
"DeletionProtectionUpdate",
|
|
315
336
|
"DisassociateIdentityProviderConfig",
|
|
316
337
|
"EndpointAccessUpdate",
|
|
@@ -418,6 +439,7 @@ ServiceName = Literal[
|
|
|
418
439
|
"comprehend",
|
|
419
440
|
"comprehendmedical",
|
|
420
441
|
"compute-optimizer",
|
|
442
|
+
"compute-optimizer-automation",
|
|
421
443
|
"config",
|
|
422
444
|
"connect",
|
|
423
445
|
"connect-contact-lens",
|
|
@@ -598,6 +620,7 @@ ServiceName = Literal[
|
|
|
598
620
|
"networkmonitor",
|
|
599
621
|
"notifications",
|
|
600
622
|
"notificationscontacts",
|
|
623
|
+
"nova-act",
|
|
601
624
|
"oam",
|
|
602
625
|
"observabilityadmin",
|
|
603
626
|
"odb",
|
|
@@ -608,6 +631,8 @@ ServiceName = Literal[
|
|
|
608
631
|
"osis",
|
|
609
632
|
"outposts",
|
|
610
633
|
"panorama",
|
|
634
|
+
"partnercentral-account",
|
|
635
|
+
"partnercentral-benefits",
|
|
611
636
|
"partnercentral-channel",
|
|
612
637
|
"partnercentral-selling",
|
|
613
638
|
"payment-cryptography",
|
|
@@ -650,6 +675,7 @@ ServiceName = Literal[
|
|
|
650
675
|
"route53-recovery-control-config",
|
|
651
676
|
"route53-recovery-readiness",
|
|
652
677
|
"route53domains",
|
|
678
|
+
"route53globalresolver",
|
|
653
679
|
"route53profiles",
|
|
654
680
|
"route53resolver",
|
|
655
681
|
"rtbfabric",
|
|
@@ -744,6 +770,7 @@ PaginatorName = Literal[
|
|
|
744
770
|
"list_access_policies",
|
|
745
771
|
"list_addons",
|
|
746
772
|
"list_associated_access_policies",
|
|
773
|
+
"list_capabilities",
|
|
747
774
|
"list_clusters",
|
|
748
775
|
"list_eks_anywhere_subscriptions",
|
|
749
776
|
"list_fargate_profiles",
|
types_boto3_eks/literals.pyi
CHANGED
|
@@ -28,7 +28,12 @@ __all__ = (
|
|
|
28
28
|
"AddonDeletedWaiterName",
|
|
29
29
|
"AddonIssueCodeType",
|
|
30
30
|
"AddonStatusType",
|
|
31
|
+
"ArgoCdRoleType",
|
|
31
32
|
"AuthenticationModeType",
|
|
33
|
+
"CapabilityDeletePropagationPolicyType",
|
|
34
|
+
"CapabilityIssueCodeType",
|
|
35
|
+
"CapabilityStatusType",
|
|
36
|
+
"CapabilityTypeType",
|
|
32
37
|
"CapacityTypesType",
|
|
33
38
|
"CategoryType",
|
|
34
39
|
"ClusterActiveWaiterName",
|
|
@@ -56,6 +61,7 @@ __all__ = (
|
|
|
56
61
|
"ListAccessPoliciesPaginatorName",
|
|
57
62
|
"ListAddonsPaginatorName",
|
|
58
63
|
"ListAssociatedAccessPoliciesPaginatorName",
|
|
64
|
+
"ListCapabilitiesPaginatorName",
|
|
59
65
|
"ListClustersPaginatorName",
|
|
60
66
|
"ListEksAnywhereSubscriptionsPaginatorName",
|
|
61
67
|
"ListFargateProfilesPaginatorName",
|
|
@@ -71,11 +77,13 @@ __all__ = (
|
|
|
71
77
|
"NodegroupStatusType",
|
|
72
78
|
"NodegroupUpdateStrategiesType",
|
|
73
79
|
"PaginatorName",
|
|
80
|
+
"ProvisionedControlPlaneTierType",
|
|
74
81
|
"RegionName",
|
|
75
82
|
"RepairActionType",
|
|
76
83
|
"ResolveConflictsType",
|
|
77
84
|
"ResourceServiceName",
|
|
78
85
|
"ServiceName",
|
|
86
|
+
"SsoIdentityTypeType",
|
|
79
87
|
"SupportTypeType",
|
|
80
88
|
"TaintEffectType",
|
|
81
89
|
"UpdateParamTypeType",
|
|
@@ -131,7 +139,14 @@ AddonStatusType = Literal[
|
|
|
131
139
|
"UPDATE_FAILED",
|
|
132
140
|
"UPDATING",
|
|
133
141
|
]
|
|
142
|
+
ArgoCdRoleType = Literal["ADMIN", "EDITOR", "VIEWER"]
|
|
134
143
|
AuthenticationModeType = Literal["API", "API_AND_CONFIG_MAP", "CONFIG_MAP"]
|
|
144
|
+
CapabilityDeletePropagationPolicyType = Literal["RETAIN"]
|
|
145
|
+
CapabilityIssueCodeType = Literal["AccessDenied", "ClusterUnreachable"]
|
|
146
|
+
CapabilityStatusType = Literal[
|
|
147
|
+
"ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
|
|
148
|
+
]
|
|
149
|
+
CapabilityTypeType = Literal["ACK", "ARGOCD", "KRO"]
|
|
135
150
|
CapacityTypesType = Literal["CAPACITY_BLOCK", "ON_DEMAND", "SPOT"]
|
|
136
151
|
CategoryType = Literal["MISCONFIGURATION", "UPGRADE_READINESS"]
|
|
137
152
|
ClusterActiveWaiterName = Literal["cluster_active"]
|
|
@@ -204,6 +219,7 @@ ListAccessEntriesPaginatorName = Literal["list_access_entries"]
|
|
|
204
219
|
ListAccessPoliciesPaginatorName = Literal["list_access_policies"]
|
|
205
220
|
ListAddonsPaginatorName = Literal["list_addons"]
|
|
206
221
|
ListAssociatedAccessPoliciesPaginatorName = Literal["list_associated_access_policies"]
|
|
222
|
+
ListCapabilitiesPaginatorName = Literal["list_capabilities"]
|
|
207
223
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
208
224
|
ListEksAnywhereSubscriptionsPaginatorName = Literal["list_eks_anywhere_subscriptions"]
|
|
209
225
|
ListFargateProfilesPaginatorName = Literal["list_fargate_profiles"]
|
|
@@ -257,8 +273,10 @@ NodegroupStatusType = Literal[
|
|
|
257
273
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
|
|
258
274
|
]
|
|
259
275
|
NodegroupUpdateStrategiesType = Literal["DEFAULT", "MINIMAL"]
|
|
276
|
+
ProvisionedControlPlaneTierType = Literal["standard", "tier-2xl", "tier-4xl", "tier-xl"]
|
|
260
277
|
RepairActionType = Literal["NoAction", "Reboot", "Replace"]
|
|
261
278
|
ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
|
|
279
|
+
SsoIdentityTypeType = Literal["SSO_GROUP", "SSO_USER"]
|
|
262
280
|
SupportTypeType = Literal["EXTENDED", "STANDARD"]
|
|
263
281
|
TaintEffectType = Literal["NO_EXECUTE", "NO_SCHEDULE", "PREFER_NO_SCHEDULE"]
|
|
264
282
|
UpdateParamTypeType = Literal[
|
|
@@ -286,6 +304,7 @@ UpdateParamTypeType = Literal[
|
|
|
286
304
|
"NodeRepairEnabled",
|
|
287
305
|
"PlatformVersion",
|
|
288
306
|
"PodIdentityAssociations",
|
|
307
|
+
"PreviousTier",
|
|
289
308
|
"PublicAccessCidrs",
|
|
290
309
|
"ReleaseVersion",
|
|
291
310
|
"RemoteNetworkConfig",
|
|
@@ -297,6 +316,7 @@ UpdateParamTypeType = Literal[
|
|
|
297
316
|
"TaintsToAdd",
|
|
298
317
|
"TaintsToRemove",
|
|
299
318
|
"UpdateStrategy",
|
|
319
|
+
"UpdatedTier",
|
|
300
320
|
"UpgradePolicy",
|
|
301
321
|
"Version",
|
|
302
322
|
"ZonalShiftConfig",
|
|
@@ -309,6 +329,7 @@ UpdateTypeType = Literal[
|
|
|
309
329
|
"AssociateIdentityProviderConfig",
|
|
310
330
|
"AutoModeUpdate",
|
|
311
331
|
"ConfigUpdate",
|
|
332
|
+
"ControlPlaneScalingConfigUpdate",
|
|
312
333
|
"DeletionProtectionUpdate",
|
|
313
334
|
"DisassociateIdentityProviderConfig",
|
|
314
335
|
"EndpointAccessUpdate",
|
|
@@ -416,6 +437,7 @@ ServiceName = Literal[
|
|
|
416
437
|
"comprehend",
|
|
417
438
|
"comprehendmedical",
|
|
418
439
|
"compute-optimizer",
|
|
440
|
+
"compute-optimizer-automation",
|
|
419
441
|
"config",
|
|
420
442
|
"connect",
|
|
421
443
|
"connect-contact-lens",
|
|
@@ -596,6 +618,7 @@ ServiceName = Literal[
|
|
|
596
618
|
"networkmonitor",
|
|
597
619
|
"notifications",
|
|
598
620
|
"notificationscontacts",
|
|
621
|
+
"nova-act",
|
|
599
622
|
"oam",
|
|
600
623
|
"observabilityadmin",
|
|
601
624
|
"odb",
|
|
@@ -606,6 +629,8 @@ ServiceName = Literal[
|
|
|
606
629
|
"osis",
|
|
607
630
|
"outposts",
|
|
608
631
|
"panorama",
|
|
632
|
+
"partnercentral-account",
|
|
633
|
+
"partnercentral-benefits",
|
|
609
634
|
"partnercentral-channel",
|
|
610
635
|
"partnercentral-selling",
|
|
611
636
|
"payment-cryptography",
|
|
@@ -648,6 +673,7 @@ ServiceName = Literal[
|
|
|
648
673
|
"route53-recovery-control-config",
|
|
649
674
|
"route53-recovery-readiness",
|
|
650
675
|
"route53domains",
|
|
676
|
+
"route53globalresolver",
|
|
651
677
|
"route53profiles",
|
|
652
678
|
"route53resolver",
|
|
653
679
|
"rtbfabric",
|
|
@@ -742,6 +768,7 @@ PaginatorName = Literal[
|
|
|
742
768
|
"list_access_policies",
|
|
743
769
|
"list_addons",
|
|
744
770
|
"list_associated_access_policies",
|
|
771
|
+
"list_capabilities",
|
|
745
772
|
"list_clusters",
|
|
746
773
|
"list_eks_anywhere_subscriptions",
|
|
747
774
|
"list_fargate_profiles",
|