mypy-boto3-eks 1.41.2__py3-none-any.whl → 1.42.28__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mypy_boto3_eks/__init__.py +5 -1
- mypy_boto3_eks/__init__.pyi +5 -1
- mypy_boto3_eks/__main__.py +4 -4
- mypy_boto3_eks/client.py +75 -1
- mypy_boto3_eks/client.pyi +75 -1
- mypy_boto3_eks/literals.py +25 -2
- mypy_boto3_eks/literals.pyi +25 -2
- mypy_boto3_eks/paginator.py +27 -1
- mypy_boto3_eks/paginator.pyi +24 -1
- mypy_boto3_eks/type_defs.py +231 -1
- mypy_boto3_eks/type_defs.pyi +201 -1
- mypy_boto3_eks/version.py +2 -2
- mypy_boto3_eks/waiter.py +1 -1
- mypy_boto3_eks/waiter.pyi +1 -1
- {mypy_boto3_eks-1.41.2.dist-info → mypy_boto3_eks-1.42.28.dist-info}/METADATA +6 -4
- mypy_boto3_eks-1.42.28.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.41.2.dist-info → mypy_boto3_eks-1.42.28.dist-info}/licenses/LICENSE +1 -1
- mypy_boto3_eks-1.41.2.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.41.2.dist-info → mypy_boto3_eks-1.42.28.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.41.2.dist-info → mypy_boto3_eks-1.42.28.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for eks service literal definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/literals/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -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",
|
|
@@ -98,9 +105,11 @@ AMITypesType = Literal[
|
|
|
98
105
|
"BOTTLEROCKET_ARM_64",
|
|
99
106
|
"BOTTLEROCKET_ARM_64_FIPS",
|
|
100
107
|
"BOTTLEROCKET_ARM_64_NVIDIA",
|
|
108
|
+
"BOTTLEROCKET_ARM_64_NVIDIA_FIPS",
|
|
101
109
|
"BOTTLEROCKET_x86_64",
|
|
102
110
|
"BOTTLEROCKET_x86_64_FIPS",
|
|
103
111
|
"BOTTLEROCKET_x86_64_NVIDIA",
|
|
112
|
+
"BOTTLEROCKET_x86_64_NVIDIA_FIPS",
|
|
104
113
|
"CUSTOM",
|
|
105
114
|
"WINDOWS_CORE_2019_x86_64",
|
|
106
115
|
"WINDOWS_CORE_2022_x86_64",
|
|
@@ -132,7 +141,14 @@ AddonStatusType = Literal[
|
|
|
132
141
|
"UPDATE_FAILED",
|
|
133
142
|
"UPDATING",
|
|
134
143
|
]
|
|
144
|
+
ArgoCdRoleType = Literal["ADMIN", "EDITOR", "VIEWER"]
|
|
135
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"]
|
|
136
152
|
CapacityTypesType = Literal["CAPACITY_BLOCK", "ON_DEMAND", "SPOT"]
|
|
137
153
|
CategoryType = Literal["MISCONFIGURATION", "UPGRADE_READINESS"]
|
|
138
154
|
ClusterActiveWaiterName = Literal["cluster_active"]
|
|
@@ -205,6 +221,7 @@ ListAccessEntriesPaginatorName = Literal["list_access_entries"]
|
|
|
205
221
|
ListAccessPoliciesPaginatorName = Literal["list_access_policies"]
|
|
206
222
|
ListAddonsPaginatorName = Literal["list_addons"]
|
|
207
223
|
ListAssociatedAccessPoliciesPaginatorName = Literal["list_associated_access_policies"]
|
|
224
|
+
ListCapabilitiesPaginatorName = Literal["list_capabilities"]
|
|
208
225
|
ListClustersPaginatorName = Literal["list_clusters"]
|
|
209
226
|
ListEksAnywhereSubscriptionsPaginatorName = Literal["list_eks_anywhere_subscriptions"]
|
|
210
227
|
ListFargateProfilesPaginatorName = Literal["list_fargate_profiles"]
|
|
@@ -261,6 +278,7 @@ NodegroupUpdateStrategiesType = Literal["DEFAULT", "MINIMAL"]
|
|
|
261
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[
|
|
@@ -467,7 +485,6 @@ ServiceName = Literal[
|
|
|
467
485
|
"eks-auth",
|
|
468
486
|
"elasticache",
|
|
469
487
|
"elasticbeanstalk",
|
|
470
|
-
"elastictranscoder",
|
|
471
488
|
"elb",
|
|
472
489
|
"elbv2",
|
|
473
490
|
"emr",
|
|
@@ -602,6 +619,7 @@ ServiceName = Literal[
|
|
|
602
619
|
"networkmonitor",
|
|
603
620
|
"notifications",
|
|
604
621
|
"notificationscontacts",
|
|
622
|
+
"nova-act",
|
|
605
623
|
"oam",
|
|
606
624
|
"observabilityadmin",
|
|
607
625
|
"odb",
|
|
@@ -612,6 +630,8 @@ ServiceName = Literal[
|
|
|
612
630
|
"osis",
|
|
613
631
|
"outposts",
|
|
614
632
|
"panorama",
|
|
633
|
+
"partnercentral-account",
|
|
634
|
+
"partnercentral-benefits",
|
|
615
635
|
"partnercentral-channel",
|
|
616
636
|
"partnercentral-selling",
|
|
617
637
|
"payment-cryptography",
|
|
@@ -654,6 +674,7 @@ ServiceName = Literal[
|
|
|
654
674
|
"route53-recovery-control-config",
|
|
655
675
|
"route53-recovery-readiness",
|
|
656
676
|
"route53domains",
|
|
677
|
+
"route53globalresolver",
|
|
657
678
|
"route53profiles",
|
|
658
679
|
"route53resolver",
|
|
659
680
|
"rtbfabric",
|
|
@@ -728,6 +749,7 @@ ServiceName = Literal[
|
|
|
728
749
|
"waf-regional",
|
|
729
750
|
"wafv2",
|
|
730
751
|
"wellarchitected",
|
|
752
|
+
"wickr",
|
|
731
753
|
"wisdom",
|
|
732
754
|
"workdocs",
|
|
733
755
|
"workmail",
|
|
@@ -748,6 +770,7 @@ PaginatorName = Literal[
|
|
|
748
770
|
"list_access_policies",
|
|
749
771
|
"list_addons",
|
|
750
772
|
"list_associated_access_policies",
|
|
773
|
+
"list_capabilities",
|
|
751
774
|
"list_clusters",
|
|
752
775
|
"list_eks_anywhere_subscriptions",
|
|
753
776
|
"list_fargate_profiles",
|
mypy_boto3_eks/paginator.py
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for eks service client paginators.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_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 boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listcapabilitiespaginator)
|
|
264
|
+
"""
|
|
265
|
+
|
|
266
|
+
|
|
241
267
|
if TYPE_CHECKING:
|
|
242
268
|
_ListClustersPaginatorBase = Paginator[ListClustersResponseTypeDef]
|
|
243
269
|
else:
|
mypy_boto3_eks/paginator.pyi
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for eks service client paginators.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -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,
|
|
@@ -98,6 +102,7 @@ __all__ = (
|
|
|
98
102
|
"ListAccessPoliciesPaginator",
|
|
99
103
|
"ListAddonsPaginator",
|
|
100
104
|
"ListAssociatedAccessPoliciesPaginator",
|
|
105
|
+
"ListCapabilitiesPaginator",
|
|
101
106
|
"ListClustersPaginator",
|
|
102
107
|
"ListEksAnywhereSubscriptionsPaginator",
|
|
103
108
|
"ListFargateProfilesPaginator",
|
|
@@ -218,6 +223,24 @@ class ListAssociatedAccessPoliciesPaginator(_ListAssociatedAccessPoliciesPaginat
|
|
|
218
223
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listassociatedaccesspoliciespaginator)
|
|
219
224
|
"""
|
|
220
225
|
|
|
226
|
+
if TYPE_CHECKING:
|
|
227
|
+
_ListCapabilitiesPaginatorBase = Paginator[ListCapabilitiesResponseTypeDef]
|
|
228
|
+
else:
|
|
229
|
+
_ListCapabilitiesPaginatorBase = Paginator # type: ignore[assignment]
|
|
230
|
+
|
|
231
|
+
class ListCapabilitiesPaginator(_ListCapabilitiesPaginatorBase):
|
|
232
|
+
"""
|
|
233
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListCapabilities.html#EKS.Paginator.ListCapabilities)
|
|
234
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listcapabilitiespaginator)
|
|
235
|
+
"""
|
|
236
|
+
def paginate( # type: ignore[override]
|
|
237
|
+
self, **kwargs: Unpack[ListCapabilitiesRequestPaginateTypeDef]
|
|
238
|
+
) -> PageIterator[ListCapabilitiesResponseTypeDef]:
|
|
239
|
+
"""
|
|
240
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/paginator/ListCapabilities.html#EKS.Paginator.ListCapabilities.paginate)
|
|
241
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/#listcapabilitiespaginator)
|
|
242
|
+
"""
|
|
243
|
+
|
|
221
244
|
if TYPE_CHECKING:
|
|
222
245
|
_ListClustersPaginatorBase = Paginator[ListClustersResponseTypeDef]
|
|
223
246
|
else:
|
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -3,7 +3,7 @@ Type annotations for eks service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/type_defs/)
|
|
5
5
|
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2026 Vlad Emelianov
|
|
7
7
|
|
|
8
8
|
Usage::
|
|
9
9
|
|
|
@@ -26,7 +26,11 @@ from .literals import (
|
|
|
26
26
|
AddonIssueCodeType,
|
|
27
27
|
AddonStatusType,
|
|
28
28
|
AMITypesType,
|
|
29
|
+
ArgoCdRoleType,
|
|
29
30
|
AuthenticationModeType,
|
|
31
|
+
CapabilityIssueCodeType,
|
|
32
|
+
CapabilityStatusType,
|
|
33
|
+
CapabilityTypeType,
|
|
30
34
|
CapacityTypesType,
|
|
31
35
|
CategoryType,
|
|
32
36
|
ClusterIssueCodeType,
|
|
@@ -48,6 +52,7 @@ from .literals import (
|
|
|
48
52
|
ProvisionedControlPlaneTierType,
|
|
49
53
|
RepairActionType,
|
|
50
54
|
ResolveConflictsType,
|
|
55
|
+
SsoIdentityTypeType,
|
|
51
56
|
SupportTypeType,
|
|
52
57
|
TaintEffectType,
|
|
53
58
|
UpdateParamTypeType,
|
|
@@ -79,6 +84,15 @@ __all__ = (
|
|
|
79
84
|
"AddonPodIdentityConfigurationTypeDef",
|
|
80
85
|
"AddonTypeDef",
|
|
81
86
|
"AddonVersionInfoTypeDef",
|
|
87
|
+
"ArgoCdAwsIdcConfigRequestTypeDef",
|
|
88
|
+
"ArgoCdAwsIdcConfigResponseTypeDef",
|
|
89
|
+
"ArgoCdConfigRequestTypeDef",
|
|
90
|
+
"ArgoCdConfigResponseTypeDef",
|
|
91
|
+
"ArgoCdNetworkAccessConfigRequestTypeDef",
|
|
92
|
+
"ArgoCdNetworkAccessConfigResponseTypeDef",
|
|
93
|
+
"ArgoCdRoleMappingOutputTypeDef",
|
|
94
|
+
"ArgoCdRoleMappingTypeDef",
|
|
95
|
+
"ArgoCdRoleMappingUnionTypeDef",
|
|
82
96
|
"AssociateAccessPolicyRequestTypeDef",
|
|
83
97
|
"AssociateAccessPolicyResponseTypeDef",
|
|
84
98
|
"AssociateEncryptionConfigRequestTypeDef",
|
|
@@ -88,6 +102,12 @@ __all__ = (
|
|
|
88
102
|
"AssociatedAccessPolicyTypeDef",
|
|
89
103
|
"AutoScalingGroupTypeDef",
|
|
90
104
|
"BlockStorageTypeDef",
|
|
105
|
+
"CapabilityConfigurationRequestTypeDef",
|
|
106
|
+
"CapabilityConfigurationResponseTypeDef",
|
|
107
|
+
"CapabilityHealthTypeDef",
|
|
108
|
+
"CapabilityIssueTypeDef",
|
|
109
|
+
"CapabilitySummaryTypeDef",
|
|
110
|
+
"CapabilityTypeDef",
|
|
91
111
|
"CertificateTypeDef",
|
|
92
112
|
"ClientStatTypeDef",
|
|
93
113
|
"ClusterHealthTypeDef",
|
|
@@ -107,6 +127,8 @@ __all__ = (
|
|
|
107
127
|
"CreateAccessEntryResponseTypeDef",
|
|
108
128
|
"CreateAddonRequestTypeDef",
|
|
109
129
|
"CreateAddonResponseTypeDef",
|
|
130
|
+
"CreateCapabilityRequestTypeDef",
|
|
131
|
+
"CreateCapabilityResponseTypeDef",
|
|
110
132
|
"CreateClusterRequestTypeDef",
|
|
111
133
|
"CreateClusterResponseTypeDef",
|
|
112
134
|
"CreateEksAnywhereSubscriptionRequestTypeDef",
|
|
@@ -120,6 +142,8 @@ __all__ = (
|
|
|
120
142
|
"DeleteAccessEntryRequestTypeDef",
|
|
121
143
|
"DeleteAddonRequestTypeDef",
|
|
122
144
|
"DeleteAddonResponseTypeDef",
|
|
145
|
+
"DeleteCapabilityRequestTypeDef",
|
|
146
|
+
"DeleteCapabilityResponseTypeDef",
|
|
123
147
|
"DeleteClusterRequestTypeDef",
|
|
124
148
|
"DeleteClusterResponseTypeDef",
|
|
125
149
|
"DeleteEksAnywhereSubscriptionRequestTypeDef",
|
|
@@ -144,6 +168,8 @@ __all__ = (
|
|
|
144
168
|
"DescribeAddonVersionsRequestPaginateTypeDef",
|
|
145
169
|
"DescribeAddonVersionsRequestTypeDef",
|
|
146
170
|
"DescribeAddonVersionsResponseTypeDef",
|
|
171
|
+
"DescribeCapabilityRequestTypeDef",
|
|
172
|
+
"DescribeCapabilityResponseTypeDef",
|
|
147
173
|
"DescribeClusterRequestTypeDef",
|
|
148
174
|
"DescribeClusterRequestWaitExtraTypeDef",
|
|
149
175
|
"DescribeClusterRequestWaitTypeDef",
|
|
@@ -213,6 +239,9 @@ __all__ = (
|
|
|
213
239
|
"ListAssociatedAccessPoliciesRequestPaginateTypeDef",
|
|
214
240
|
"ListAssociatedAccessPoliciesRequestTypeDef",
|
|
215
241
|
"ListAssociatedAccessPoliciesResponseTypeDef",
|
|
242
|
+
"ListCapabilitiesRequestPaginateTypeDef",
|
|
243
|
+
"ListCapabilitiesRequestTypeDef",
|
|
244
|
+
"ListCapabilitiesResponseTypeDef",
|
|
216
245
|
"ListClustersRequestPaginateTypeDef",
|
|
217
246
|
"ListClustersRequestTypeDef",
|
|
218
247
|
"ListClustersResponseTypeDef",
|
|
@@ -277,6 +306,7 @@ __all__ = (
|
|
|
277
306
|
"RemotePodNetworkTypeDef",
|
|
278
307
|
"RemotePodNetworkUnionTypeDef",
|
|
279
308
|
"ResponseMetadataTypeDef",
|
|
309
|
+
"SsoIdentityTypeDef",
|
|
280
310
|
"StartInsightsRefreshRequestTypeDef",
|
|
281
311
|
"StartInsightsRefreshResponseTypeDef",
|
|
282
312
|
"StorageConfigRequestTypeDef",
|
|
@@ -289,6 +319,10 @@ __all__ = (
|
|
|
289
319
|
"UpdateAccessEntryResponseTypeDef",
|
|
290
320
|
"UpdateAddonRequestTypeDef",
|
|
291
321
|
"UpdateAddonResponseTypeDef",
|
|
322
|
+
"UpdateArgoCdConfigTypeDef",
|
|
323
|
+
"UpdateCapabilityConfigurationTypeDef",
|
|
324
|
+
"UpdateCapabilityRequestTypeDef",
|
|
325
|
+
"UpdateCapabilityResponseTypeDef",
|
|
292
326
|
"UpdateClusterConfigRequestTypeDef",
|
|
293
327
|
"UpdateClusterConfigResponseTypeDef",
|
|
294
328
|
"UpdateClusterVersionRequestTypeDef",
|
|
@@ -303,6 +337,7 @@ __all__ = (
|
|
|
303
337
|
"UpdateParamTypeDef",
|
|
304
338
|
"UpdatePodIdentityAssociationRequestTypeDef",
|
|
305
339
|
"UpdatePodIdentityAssociationResponseTypeDef",
|
|
340
|
+
"UpdateRoleMappingsTypeDef",
|
|
306
341
|
"UpdateTaintsPayloadTypeDef",
|
|
307
342
|
"UpdateTypeDef",
|
|
308
343
|
"UpgradePolicyRequestTypeDef",
|
|
@@ -397,6 +432,34 @@ class CompatibilityTypeDef(TypedDict):
|
|
|
397
432
|
defaultVersion: NotRequired[bool]
|
|
398
433
|
|
|
399
434
|
|
|
435
|
+
class ArgoCdAwsIdcConfigRequestTypeDef(TypedDict):
|
|
436
|
+
idcInstanceArn: str
|
|
437
|
+
idcRegion: NotRequired[str]
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
class ArgoCdAwsIdcConfigResponseTypeDef(TypedDict):
|
|
441
|
+
idcInstanceArn: NotRequired[str]
|
|
442
|
+
idcRegion: NotRequired[str]
|
|
443
|
+
idcManagedApplicationArn: NotRequired[str]
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
class ArgoCdNetworkAccessConfigRequestTypeDef(TypedDict):
|
|
447
|
+
vpceIds: NotRequired[Sequence[str]]
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
class ArgoCdNetworkAccessConfigResponseTypeDef(TypedDict):
|
|
451
|
+
vpceIds: NotRequired[list[str]]
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
SsoIdentityTypeDef = TypedDict(
|
|
455
|
+
"SsoIdentityTypeDef",
|
|
456
|
+
{
|
|
457
|
+
"id": str,
|
|
458
|
+
"type": SsoIdentityTypeType,
|
|
459
|
+
},
|
|
460
|
+
)
|
|
461
|
+
|
|
462
|
+
|
|
400
463
|
class ResponseMetadataTypeDef(TypedDict):
|
|
401
464
|
RequestId: str
|
|
402
465
|
HTTPStatusCode: int
|
|
@@ -424,6 +487,25 @@ class BlockStorageTypeDef(TypedDict):
|
|
|
424
487
|
enabled: NotRequired[bool]
|
|
425
488
|
|
|
426
489
|
|
|
490
|
+
class CapabilityIssueTypeDef(TypedDict):
|
|
491
|
+
code: NotRequired[CapabilityIssueCodeType]
|
|
492
|
+
message: NotRequired[str]
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
CapabilitySummaryTypeDef = TypedDict(
|
|
496
|
+
"CapabilitySummaryTypeDef",
|
|
497
|
+
{
|
|
498
|
+
"capabilityName": NotRequired[str],
|
|
499
|
+
"arn": NotRequired[str],
|
|
500
|
+
"type": NotRequired[CapabilityTypeType],
|
|
501
|
+
"status": NotRequired[CapabilityStatusType],
|
|
502
|
+
"version": NotRequired[str],
|
|
503
|
+
"createdAt": NotRequired[datetime],
|
|
504
|
+
"modifiedAt": NotRequired[datetime],
|
|
505
|
+
},
|
|
506
|
+
)
|
|
507
|
+
|
|
508
|
+
|
|
427
509
|
class CertificateTypeDef(TypedDict):
|
|
428
510
|
data: NotRequired[str]
|
|
429
511
|
|
|
@@ -614,6 +696,11 @@ class DeleteAddonRequestTypeDef(TypedDict):
|
|
|
614
696
|
preserve: NotRequired[bool]
|
|
615
697
|
|
|
616
698
|
|
|
699
|
+
class DeleteCapabilityRequestTypeDef(TypedDict):
|
|
700
|
+
clusterName: str
|
|
701
|
+
capabilityName: str
|
|
702
|
+
|
|
703
|
+
|
|
617
704
|
class DeleteClusterRequestTypeDef(TypedDict):
|
|
618
705
|
name: str
|
|
619
706
|
|
|
@@ -685,6 +772,11 @@ DescribeAddonVersionsRequestTypeDef = TypedDict(
|
|
|
685
772
|
)
|
|
686
773
|
|
|
687
774
|
|
|
775
|
+
class DescribeCapabilityRequestTypeDef(TypedDict):
|
|
776
|
+
clusterName: str
|
|
777
|
+
capabilityName: str
|
|
778
|
+
|
|
779
|
+
|
|
688
780
|
class DescribeClusterRequestTypeDef(TypedDict):
|
|
689
781
|
name: str
|
|
690
782
|
|
|
@@ -748,6 +840,7 @@ class DescribeUpdateRequestTypeDef(TypedDict):
|
|
|
748
840
|
updateId: str
|
|
749
841
|
nodegroupName: NotRequired[str]
|
|
750
842
|
addonName: NotRequired[str]
|
|
843
|
+
capabilityName: NotRequired[str]
|
|
751
844
|
|
|
752
845
|
|
|
753
846
|
class DisassociateAccessPolicyRequestTypeDef(TypedDict):
|
|
@@ -856,6 +949,12 @@ class ListAssociatedAccessPoliciesRequestTypeDef(TypedDict):
|
|
|
856
949
|
nextToken: NotRequired[str]
|
|
857
950
|
|
|
858
951
|
|
|
952
|
+
class ListCapabilitiesRequestTypeDef(TypedDict):
|
|
953
|
+
clusterName: str
|
|
954
|
+
nextToken: NotRequired[str]
|
|
955
|
+
maxResults: NotRequired[int]
|
|
956
|
+
|
|
957
|
+
|
|
859
958
|
class ListClustersRequestTypeDef(TypedDict):
|
|
860
959
|
maxResults: NotRequired[int]
|
|
861
960
|
nextToken: NotRequired[str]
|
|
@@ -911,6 +1010,7 @@ class ListUpdatesRequestTypeDef(TypedDict):
|
|
|
911
1010
|
name: str
|
|
912
1011
|
nodegroupName: NotRequired[str]
|
|
913
1012
|
addonName: NotRequired[str]
|
|
1013
|
+
capabilityName: NotRequired[str]
|
|
914
1014
|
nextToken: NotRequired[str]
|
|
915
1015
|
maxResults: NotRequired[int]
|
|
916
1016
|
|
|
@@ -1077,6 +1177,16 @@ class AddonVersionInfoTypeDef(TypedDict):
|
|
|
1077
1177
|
requiresIamPermissions: NotRequired[bool]
|
|
1078
1178
|
|
|
1079
1179
|
|
|
1180
|
+
class ArgoCdRoleMappingOutputTypeDef(TypedDict):
|
|
1181
|
+
role: ArgoCdRoleType
|
|
1182
|
+
identities: list[SsoIdentityTypeDef]
|
|
1183
|
+
|
|
1184
|
+
|
|
1185
|
+
class ArgoCdRoleMappingTypeDef(TypedDict):
|
|
1186
|
+
role: ArgoCdRoleType
|
|
1187
|
+
identities: Sequence[SsoIdentityTypeDef]
|
|
1188
|
+
|
|
1189
|
+
|
|
1080
1190
|
class CreateAccessEntryResponseTypeDef(TypedDict):
|
|
1081
1191
|
accessEntry: AccessEntryTypeDef
|
|
1082
1192
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1181,6 +1291,16 @@ class StorageConfigResponseTypeDef(TypedDict):
|
|
|
1181
1291
|
blockStorage: NotRequired[BlockStorageTypeDef]
|
|
1182
1292
|
|
|
1183
1293
|
|
|
1294
|
+
class CapabilityHealthTypeDef(TypedDict):
|
|
1295
|
+
issues: NotRequired[list[CapabilityIssueTypeDef]]
|
|
1296
|
+
|
|
1297
|
+
|
|
1298
|
+
class ListCapabilitiesResponseTypeDef(TypedDict):
|
|
1299
|
+
capabilities: list[CapabilitySummaryTypeDef]
|
|
1300
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1301
|
+
nextToken: NotRequired[str]
|
|
1302
|
+
|
|
1303
|
+
|
|
1184
1304
|
class DeprecationDetailTypeDef(TypedDict):
|
|
1185
1305
|
usage: NotRequired[str]
|
|
1186
1306
|
replacedWith: NotRequired[str]
|
|
@@ -1353,6 +1473,11 @@ class ListAssociatedAccessPoliciesRequestPaginateTypeDef(TypedDict):
|
|
|
1353
1473
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1354
1474
|
|
|
1355
1475
|
|
|
1476
|
+
class ListCapabilitiesRequestPaginateTypeDef(TypedDict):
|
|
1477
|
+
clusterName: str
|
|
1478
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1479
|
+
|
|
1480
|
+
|
|
1356
1481
|
class ListClustersRequestPaginateTypeDef(TypedDict):
|
|
1357
1482
|
include: NotRequired[Sequence[str]]
|
|
1358
1483
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
@@ -1389,6 +1514,7 @@ class ListUpdatesRequestPaginateTypeDef(TypedDict):
|
|
|
1389
1514
|
name: str
|
|
1390
1515
|
nodegroupName: NotRequired[str]
|
|
1391
1516
|
addonName: NotRequired[str]
|
|
1517
|
+
capabilityName: NotRequired[str]
|
|
1392
1518
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1393
1519
|
|
|
1394
1520
|
|
|
@@ -1621,6 +1747,17 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1621
1747
|
)
|
|
1622
1748
|
|
|
1623
1749
|
|
|
1750
|
+
class ArgoCdConfigResponseTypeDef(TypedDict):
|
|
1751
|
+
namespace: NotRequired[str]
|
|
1752
|
+
awsIdc: NotRequired[ArgoCdAwsIdcConfigResponseTypeDef]
|
|
1753
|
+
rbacRoleMappings: NotRequired[list[ArgoCdRoleMappingOutputTypeDef]]
|
|
1754
|
+
networkAccess: NotRequired[ArgoCdNetworkAccessConfigResponseTypeDef]
|
|
1755
|
+
serverUrl: NotRequired[str]
|
|
1756
|
+
|
|
1757
|
+
|
|
1758
|
+
ArgoCdRoleMappingUnionTypeDef = Union[ArgoCdRoleMappingTypeDef, ArgoCdRoleMappingOutputTypeDef]
|
|
1759
|
+
|
|
1760
|
+
|
|
1624
1761
|
class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
1625
1762
|
deprecationDetails: NotRequired[list[DeprecationDetailTypeDef]]
|
|
1626
1763
|
addonCompatibilityDetails: NotRequired[list[AddonCompatibilityDetailTypeDef]]
|
|
@@ -1786,6 +1923,11 @@ class UpdateAddonResponseTypeDef(TypedDict):
|
|
|
1786
1923
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1787
1924
|
|
|
1788
1925
|
|
|
1926
|
+
class UpdateCapabilityResponseTypeDef(TypedDict):
|
|
1927
|
+
update: UpdateTypeDef
|
|
1928
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1929
|
+
|
|
1930
|
+
|
|
1789
1931
|
class UpdateClusterConfigResponseTypeDef(TypedDict):
|
|
1790
1932
|
update: UpdateTypeDef
|
|
1791
1933
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1827,6 +1969,22 @@ class DescribeAddonVersionsResponseTypeDef(TypedDict):
|
|
|
1827
1969
|
nextToken: NotRequired[str]
|
|
1828
1970
|
|
|
1829
1971
|
|
|
1972
|
+
class CapabilityConfigurationResponseTypeDef(TypedDict):
|
|
1973
|
+
argoCd: NotRequired[ArgoCdConfigResponseTypeDef]
|
|
1974
|
+
|
|
1975
|
+
|
|
1976
|
+
class ArgoCdConfigRequestTypeDef(TypedDict):
|
|
1977
|
+
awsIdc: ArgoCdAwsIdcConfigRequestTypeDef
|
|
1978
|
+
namespace: NotRequired[str]
|
|
1979
|
+
rbacRoleMappings: NotRequired[Sequence[ArgoCdRoleMappingUnionTypeDef]]
|
|
1980
|
+
networkAccess: NotRequired[ArgoCdNetworkAccessConfigRequestTypeDef]
|
|
1981
|
+
|
|
1982
|
+
|
|
1983
|
+
class UpdateRoleMappingsTypeDef(TypedDict):
|
|
1984
|
+
addOrUpdateRoleMappings: NotRequired[Sequence[ArgoCdRoleMappingUnionTypeDef]]
|
|
1985
|
+
removeRoleMappings: NotRequired[Sequence[ArgoCdRoleMappingTypeDef]]
|
|
1986
|
+
|
|
1987
|
+
|
|
1830
1988
|
InsightTypeDef = TypedDict(
|
|
1831
1989
|
"InsightTypeDef",
|
|
1832
1990
|
{
|
|
@@ -1978,6 +2136,78 @@ class UpdateClusterConfigRequestTypeDef(TypedDict):
|
|
|
1978
2136
|
controlPlaneScalingConfig: NotRequired[ControlPlaneScalingConfigTypeDef]
|
|
1979
2137
|
|
|
1980
2138
|
|
|
2139
|
+
CapabilityTypeDef = TypedDict(
|
|
2140
|
+
"CapabilityTypeDef",
|
|
2141
|
+
{
|
|
2142
|
+
"capabilityName": NotRequired[str],
|
|
2143
|
+
"arn": NotRequired[str],
|
|
2144
|
+
"clusterName": NotRequired[str],
|
|
2145
|
+
"type": NotRequired[CapabilityTypeType],
|
|
2146
|
+
"roleArn": NotRequired[str],
|
|
2147
|
+
"status": NotRequired[CapabilityStatusType],
|
|
2148
|
+
"version": NotRequired[str],
|
|
2149
|
+
"configuration": NotRequired[CapabilityConfigurationResponseTypeDef],
|
|
2150
|
+
"tags": NotRequired[dict[str, str]],
|
|
2151
|
+
"health": NotRequired[CapabilityHealthTypeDef],
|
|
2152
|
+
"createdAt": NotRequired[datetime],
|
|
2153
|
+
"modifiedAt": NotRequired[datetime],
|
|
2154
|
+
"deletePropagationPolicy": NotRequired[Literal["RETAIN"]],
|
|
2155
|
+
},
|
|
2156
|
+
)
|
|
2157
|
+
|
|
2158
|
+
|
|
2159
|
+
class CapabilityConfigurationRequestTypeDef(TypedDict):
|
|
2160
|
+
argoCd: NotRequired[ArgoCdConfigRequestTypeDef]
|
|
2161
|
+
|
|
2162
|
+
|
|
2163
|
+
class UpdateArgoCdConfigTypeDef(TypedDict):
|
|
2164
|
+
rbacRoleMappings: NotRequired[UpdateRoleMappingsTypeDef]
|
|
2165
|
+
networkAccess: NotRequired[ArgoCdNetworkAccessConfigRequestTypeDef]
|
|
2166
|
+
|
|
2167
|
+
|
|
1981
2168
|
class DescribeInsightResponseTypeDef(TypedDict):
|
|
1982
2169
|
insight: InsightTypeDef
|
|
1983
2170
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
2171
|
+
|
|
2172
|
+
|
|
2173
|
+
class CreateCapabilityResponseTypeDef(TypedDict):
|
|
2174
|
+
capability: CapabilityTypeDef
|
|
2175
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
2176
|
+
|
|
2177
|
+
|
|
2178
|
+
class DeleteCapabilityResponseTypeDef(TypedDict):
|
|
2179
|
+
capability: CapabilityTypeDef
|
|
2180
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
2181
|
+
|
|
2182
|
+
|
|
2183
|
+
class DescribeCapabilityResponseTypeDef(TypedDict):
|
|
2184
|
+
capability: CapabilityTypeDef
|
|
2185
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
2186
|
+
|
|
2187
|
+
|
|
2188
|
+
CreateCapabilityRequestTypeDef = TypedDict(
|
|
2189
|
+
"CreateCapabilityRequestTypeDef",
|
|
2190
|
+
{
|
|
2191
|
+
"capabilityName": str,
|
|
2192
|
+
"clusterName": str,
|
|
2193
|
+
"type": CapabilityTypeType,
|
|
2194
|
+
"roleArn": str,
|
|
2195
|
+
"deletePropagationPolicy": Literal["RETAIN"],
|
|
2196
|
+
"clientRequestToken": NotRequired[str],
|
|
2197
|
+
"configuration": NotRequired[CapabilityConfigurationRequestTypeDef],
|
|
2198
|
+
"tags": NotRequired[Mapping[str, str]],
|
|
2199
|
+
},
|
|
2200
|
+
)
|
|
2201
|
+
|
|
2202
|
+
|
|
2203
|
+
class UpdateCapabilityConfigurationTypeDef(TypedDict):
|
|
2204
|
+
argoCd: NotRequired[UpdateArgoCdConfigTypeDef]
|
|
2205
|
+
|
|
2206
|
+
|
|
2207
|
+
class UpdateCapabilityRequestTypeDef(TypedDict):
|
|
2208
|
+
clusterName: str
|
|
2209
|
+
capabilityName: str
|
|
2210
|
+
roleArn: NotRequired[str]
|
|
2211
|
+
configuration: NotRequired[UpdateCapabilityConfigurationTypeDef]
|
|
2212
|
+
clientRequestToken: NotRequired[str]
|
|
2213
|
+
deletePropagationPolicy: NotRequired[Literal["RETAIN"]]
|