types-boto3-eks 1.41.2__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 +21 -0
- types_boto3_eks/literals.pyi +21 -0
- types_boto3_eks/paginator.py +26 -0
- types_boto3_eks/paginator.pyi +23 -0
- types_boto3_eks/type_defs.py +230 -0
- types_boto3_eks/type_defs.pyi +200 -0
- types_boto3_eks/version.py +1 -1
- {types_boto3_eks-1.41.2.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.2.dist-info/RECORD +0 -20
- {types_boto3_eks-1.41.2.dist-info → types_boto3_eks-1.42.3.dist-info}/WHEEL +0 -0
- {types_boto3_eks-1.41.2.dist-info → types_boto3_eks-1.42.3.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_eks-1.41.2.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",
|
|
@@ -78,6 +84,7 @@ __all__ = (
|
|
|
78
84
|
"ResolveConflictsType",
|
|
79
85
|
"ResourceServiceName",
|
|
80
86
|
"ServiceName",
|
|
87
|
+
"SsoIdentityTypeType",
|
|
81
88
|
"SupportTypeType",
|
|
82
89
|
"TaintEffectType",
|
|
83
90
|
"UpdateParamTypeType",
|
|
@@ -134,7 +141,14 @@ AddonStatusType = Literal[
|
|
|
134
141
|
"UPDATE_FAILED",
|
|
135
142
|
"UPDATING",
|
|
136
143
|
]
|
|
144
|
+
ArgoCdRoleType = Literal["ADMIN", "EDITOR", "VIEWER"]
|
|
137
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"]
|
|
138
152
|
CapacityTypesType = Literal["CAPACITY_BLOCK", "ON_DEMAND", "SPOT"]
|
|
139
153
|
CategoryType = Literal["MISCONFIGURATION", "UPGRADE_READINESS"]
|
|
140
154
|
ClusterActiveWaiterName = Literal["cluster_active"]
|
|
@@ -207,6 +221,7 @@ ListAccessEntriesPaginatorName = Literal["list_access_entries"]
|
|
|
207
221
|
ListAccessPoliciesPaginatorName = Literal["list_access_policies"]
|
|
208
222
|
ListAddonsPaginatorName = Literal["list_addons"]
|
|
209
223
|
ListAssociatedAccessPoliciesPaginatorName = Literal["list_associated_access_policies"]
|
|
224
|
+
ListCapabilitiesPaginatorName = Literal["list_capabilities"]
|
|
210
225
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
211
226
|
ListEksAnywhereSubscriptionsPaginatorName = Literal["list_eks_anywhere_subscriptions"]
|
|
212
227
|
ListFargateProfilesPaginatorName = Literal["list_fargate_profiles"]
|
|
@@ -263,6 +278,7 @@ NodegroupUpdateStrategiesType = Literal["DEFAULT", "MINIMAL"]
|
|
|
263
278
|
ProvisionedControlPlaneTierType = Literal["standard", "tier-2xl", "tier-4xl", "tier-xl"]
|
|
264
279
|
RepairActionType = Literal["NoAction", "Reboot", "Replace"]
|
|
265
280
|
ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
|
|
281
|
+
SsoIdentityTypeType = Literal["SSO_GROUP", "SSO_USER"]
|
|
266
282
|
SupportTypeType = Literal["EXTENDED", "STANDARD"]
|
|
267
283
|
TaintEffectType = Literal["NO_EXECUTE", "NO_SCHEDULE", "PREFER_NO_SCHEDULE"]
|
|
268
284
|
UpdateParamTypeType = Literal[
|
|
@@ -604,6 +620,7 @@ ServiceName = Literal[
|
|
|
604
620
|
"networkmonitor",
|
|
605
621
|
"notifications",
|
|
606
622
|
"notificationscontacts",
|
|
623
|
+
"nova-act",
|
|
607
624
|
"oam",
|
|
608
625
|
"observabilityadmin",
|
|
609
626
|
"odb",
|
|
@@ -614,6 +631,8 @@ ServiceName = Literal[
|
|
|
614
631
|
"osis",
|
|
615
632
|
"outposts",
|
|
616
633
|
"panorama",
|
|
634
|
+
"partnercentral-account",
|
|
635
|
+
"partnercentral-benefits",
|
|
617
636
|
"partnercentral-channel",
|
|
618
637
|
"partnercentral-selling",
|
|
619
638
|
"payment-cryptography",
|
|
@@ -656,6 +675,7 @@ ServiceName = Literal[
|
|
|
656
675
|
"route53-recovery-control-config",
|
|
657
676
|
"route53-recovery-readiness",
|
|
658
677
|
"route53domains",
|
|
678
|
+
"route53globalresolver",
|
|
659
679
|
"route53profiles",
|
|
660
680
|
"route53resolver",
|
|
661
681
|
"rtbfabric",
|
|
@@ -750,6 +770,7 @@ PaginatorName = Literal[
|
|
|
750
770
|
"list_access_policies",
|
|
751
771
|
"list_addons",
|
|
752
772
|
"list_associated_access_policies",
|
|
773
|
+
"list_capabilities",
|
|
753
774
|
"list_clusters",
|
|
754
775
|
"list_eks_anywhere_subscriptions",
|
|
755
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",
|
|
@@ -77,6 +83,7 @@ __all__ = (
|
|
|
77
83
|
"ResolveConflictsType",
|
|
78
84
|
"ResourceServiceName",
|
|
79
85
|
"ServiceName",
|
|
86
|
+
"SsoIdentityTypeType",
|
|
80
87
|
"SupportTypeType",
|
|
81
88
|
"TaintEffectType",
|
|
82
89
|
"UpdateParamTypeType",
|
|
@@ -132,7 +139,14 @@ AddonStatusType = Literal[
|
|
|
132
139
|
"UPDATE_FAILED",
|
|
133
140
|
"UPDATING",
|
|
134
141
|
]
|
|
142
|
+
ArgoCdRoleType = Literal["ADMIN", "EDITOR", "VIEWER"]
|
|
135
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"]
|
|
136
150
|
CapacityTypesType = Literal["CAPACITY_BLOCK", "ON_DEMAND", "SPOT"]
|
|
137
151
|
CategoryType = Literal["MISCONFIGURATION", "UPGRADE_READINESS"]
|
|
138
152
|
ClusterActiveWaiterName = Literal["cluster_active"]
|
|
@@ -205,6 +219,7 @@ ListAccessEntriesPaginatorName = Literal["list_access_entries"]
|
|
|
205
219
|
ListAccessPoliciesPaginatorName = Literal["list_access_policies"]
|
|
206
220
|
ListAddonsPaginatorName = Literal["list_addons"]
|
|
207
221
|
ListAssociatedAccessPoliciesPaginatorName = Literal["list_associated_access_policies"]
|
|
222
|
+
ListCapabilitiesPaginatorName = Literal["list_capabilities"]
|
|
208
223
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
209
224
|
ListEksAnywhereSubscriptionsPaginatorName = Literal["list_eks_anywhere_subscriptions"]
|
|
210
225
|
ListFargateProfilesPaginatorName = Literal["list_fargate_profiles"]
|
|
@@ -261,6 +276,7 @@ NodegroupUpdateStrategiesType = Literal["DEFAULT", "MINIMAL"]
|
|
|
261
276
|
ProvisionedControlPlaneTierType = Literal["standard", "tier-2xl", "tier-4xl", "tier-xl"]
|
|
262
277
|
RepairActionType = Literal["NoAction", "Reboot", "Replace"]
|
|
263
278
|
ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
|
|
279
|
+
SsoIdentityTypeType = Literal["SSO_GROUP", "SSO_USER"]
|
|
264
280
|
SupportTypeType = Literal["EXTENDED", "STANDARD"]
|
|
265
281
|
TaintEffectType = Literal["NO_EXECUTE", "NO_SCHEDULE", "PREFER_NO_SCHEDULE"]
|
|
266
282
|
UpdateParamTypeType = Literal[
|
|
@@ -602,6 +618,7 @@ ServiceName = Literal[
|
|
|
602
618
|
"networkmonitor",
|
|
603
619
|
"notifications",
|
|
604
620
|
"notificationscontacts",
|
|
621
|
+
"nova-act",
|
|
605
622
|
"oam",
|
|
606
623
|
"observabilityadmin",
|
|
607
624
|
"odb",
|
|
@@ -612,6 +629,8 @@ ServiceName = Literal[
|
|
|
612
629
|
"osis",
|
|
613
630
|
"outposts",
|
|
614
631
|
"panorama",
|
|
632
|
+
"partnercentral-account",
|
|
633
|
+
"partnercentral-benefits",
|
|
615
634
|
"partnercentral-channel",
|
|
616
635
|
"partnercentral-selling",
|
|
617
636
|
"payment-cryptography",
|
|
@@ -654,6 +673,7 @@ ServiceName = Literal[
|
|
|
654
673
|
"route53-recovery-control-config",
|
|
655
674
|
"route53-recovery-readiness",
|
|
656
675
|
"route53domains",
|
|
676
|
+
"route53globalresolver",
|
|
657
677
|
"route53profiles",
|
|
658
678
|
"route53resolver",
|
|
659
679
|
"rtbfabric",
|
|
@@ -748,6 +768,7 @@ PaginatorName = Literal[
|
|
|
748
768
|
"list_access_policies",
|
|
749
769
|
"list_addons",
|
|
750
770
|
"list_associated_access_policies",
|
|
771
|
+
"list_capabilities",
|
|
751
772
|
"list_clusters",
|
|
752
773
|
"list_eks_anywhere_subscriptions",
|
|
753
774
|
"list_fargate_profiles",
|
types_boto3_eks/paginator.py
CHANGED
|
@@ -18,6 +18,7 @@ Usage::
|
|
|
18
18
|
ListAccessPoliciesPaginator,
|
|
19
19
|
ListAddonsPaginator,
|
|
20
20
|
ListAssociatedAccessPoliciesPaginator,
|
|
21
|
+
ListCapabilitiesPaginator,
|
|
21
22
|
ListClustersPaginator,
|
|
22
23
|
ListEksAnywhereSubscriptionsPaginator,
|
|
23
24
|
ListFargateProfilesPaginator,
|
|
@@ -37,6 +38,7 @@ Usage::
|
|
|
37
38
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
38
39
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
39
40
|
list_associated_access_policies_paginator: ListAssociatedAccessPoliciesPaginator = client.get_paginator("list_associated_access_policies")
|
|
41
|
+
list_capabilities_paginator: ListCapabilitiesPaginator = client.get_paginator("list_capabilities")
|
|
40
42
|
list_clusters_paginator: ListClustersPaginator = client.get_paginator("list_clusters")
|
|
41
43
|
list_eks_anywhere_subscriptions_paginator: ListEksAnywhereSubscriptionsPaginator = client.get_paginator("list_eks_anywhere_subscriptions")
|
|
42
44
|
list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_paginator("list_fargate_profiles")
|
|
@@ -68,6 +70,8 @@ from .type_defs import (
|
|
|
68
70
|
ListAddonsResponseTypeDef,
|
|
69
71
|
ListAssociatedAccessPoliciesRequestPaginateTypeDef,
|
|
70
72
|
ListAssociatedAccessPoliciesResponseTypeDef,
|
|
73
|
+
ListCapabilitiesRequestPaginateTypeDef,
|
|
74
|
+
ListCapabilitiesResponseTypeDef,
|
|
71
75
|
ListClustersRequestPaginateTypeDef,
|
|
72
76
|
ListClustersResponseTypeDef,
|
|
73
77
|
ListEksAnywhereSubscriptionsRequestPaginateTypeDef,
|
|
@@ -99,6 +103,7 @@ __all__ = (
|
|
|
99
103
|
"ListAccessPoliciesPaginator",
|
|
100
104
|
"ListAddonsPaginator",
|
|
101
105
|
"ListAssociatedAccessPoliciesPaginator",
|
|
106
|
+
"ListCapabilitiesPaginator",
|
|
102
107
|
"ListClustersPaginator",
|
|
103
108
|
"ListEksAnywhereSubscriptionsPaginator",
|
|
104
109
|
"ListFargateProfilesPaginator",
|
|
@@ -238,6 +243,27 @@ class ListAssociatedAccessPoliciesPaginator(_ListAssociatedAccessPoliciesPaginat
|
|
|
238
243
|
"""
|
|
239
244
|
|
|
240
245
|
|
|
246
|
+
if TYPE_CHECKING:
|
|
247
|
+
_ListCapabilitiesPaginatorBase = Paginator[ListCapabilitiesResponseTypeDef]
|
|
248
|
+
else:
|
|
249
|
+
_ListCapabilitiesPaginatorBase = Paginator # type: ignore[assignment]
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
class ListCapabilitiesPaginator(_ListCapabilitiesPaginatorBase):
|
|
253
|
+
"""
|
|
254
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListCapabilities.html#EKS.Paginator.ListCapabilities)
|
|
255
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listcapabilitiespaginator)
|
|
256
|
+
"""
|
|
257
|
+
|
|
258
|
+
def paginate( # type: ignore[override]
|
|
259
|
+
self, **kwargs: Unpack[ListCapabilitiesRequestPaginateTypeDef]
|
|
260
|
+
) -> PageIterator[ListCapabilitiesResponseTypeDef]:
|
|
261
|
+
"""
|
|
262
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListCapabilities.html#EKS.Paginator.ListCapabilities.paginate)
|
|
263
|
+
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listcapabilitiespaginator)
|
|
264
|
+
"""
|
|
265
|
+
|
|
266
|
+
|
|
241
267
|
if TYPE_CHECKING:
|
|
242
268
|
_ListClustersPaginatorBase = Paginator[ListClustersResponseTypeDef]
|
|
243
269
|
else:
|