mypy-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.
- mypy_boto3_eks/__init__.py +4 -0
- mypy_boto3_eks/__init__.pyi +4 -0
- mypy_boto3_eks/__main__.py +3 -3
- mypy_boto3_eks/client.py +74 -0
- mypy_boto3_eks/client.pyi +74 -0
- mypy_boto3_eks/literals.py +27 -0
- mypy_boto3_eks/literals.pyi +27 -0
- mypy_boto3_eks/paginator.py +26 -0
- mypy_boto3_eks/paginator.pyi +23 -0
- mypy_boto3_eks/type_defs.py +239 -0
- mypy_boto3_eks/type_defs.pyi +208 -0
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.41.0.dist-info → mypy_boto3_eks-1.42.3.dist-info}/METADATA +6 -4
- mypy_boto3_eks-1.42.3.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.41.0.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.41.0.dist-info → mypy_boto3_eks-1.42.3.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.41.0.dist-info → mypy_boto3_eks-1.42.3.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_eks-1.41.0.dist-info → mypy_boto3_eks-1.42.3.dist-info}/top_level.txt +0 -0
mypy_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 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
|
@@ -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
|
@@ -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,
|
|
@@ -45,8 +49,10 @@ from .literals import (
|
|
|
45
49
|
NodegroupIssueCodeType,
|
|
46
50
|
NodegroupStatusType,
|
|
47
51
|
NodegroupUpdateStrategiesType,
|
|
52
|
+
ProvisionedControlPlaneTierType,
|
|
48
53
|
RepairActionType,
|
|
49
54
|
ResolveConflictsType,
|
|
55
|
+
SsoIdentityTypeType,
|
|
50
56
|
SupportTypeType,
|
|
51
57
|
TaintEffectType,
|
|
52
58
|
UpdateParamTypeType,
|
|
@@ -78,6 +84,15 @@ __all__ = (
|
|
|
78
84
|
"AddonPodIdentityConfigurationTypeDef",
|
|
79
85
|
"AddonTypeDef",
|
|
80
86
|
"AddonVersionInfoTypeDef",
|
|
87
|
+
"ArgoCdAwsIdcConfigRequestTypeDef",
|
|
88
|
+
"ArgoCdAwsIdcConfigResponseTypeDef",
|
|
89
|
+
"ArgoCdConfigRequestTypeDef",
|
|
90
|
+
"ArgoCdConfigResponseTypeDef",
|
|
91
|
+
"ArgoCdNetworkAccessConfigRequestTypeDef",
|
|
92
|
+
"ArgoCdNetworkAccessConfigResponseTypeDef",
|
|
93
|
+
"ArgoCdRoleMappingOutputTypeDef",
|
|
94
|
+
"ArgoCdRoleMappingTypeDef",
|
|
95
|
+
"ArgoCdRoleMappingUnionTypeDef",
|
|
81
96
|
"AssociateAccessPolicyRequestTypeDef",
|
|
82
97
|
"AssociateAccessPolicyResponseTypeDef",
|
|
83
98
|
"AssociateEncryptionConfigRequestTypeDef",
|
|
@@ -87,6 +102,12 @@ __all__ = (
|
|
|
87
102
|
"AssociatedAccessPolicyTypeDef",
|
|
88
103
|
"AutoScalingGroupTypeDef",
|
|
89
104
|
"BlockStorageTypeDef",
|
|
105
|
+
"CapabilityConfigurationRequestTypeDef",
|
|
106
|
+
"CapabilityConfigurationResponseTypeDef",
|
|
107
|
+
"CapabilityHealthTypeDef",
|
|
108
|
+
"CapabilityIssueTypeDef",
|
|
109
|
+
"CapabilitySummaryTypeDef",
|
|
110
|
+
"CapabilityTypeDef",
|
|
90
111
|
"CertificateTypeDef",
|
|
91
112
|
"ClientStatTypeDef",
|
|
92
113
|
"ClusterHealthTypeDef",
|
|
@@ -100,11 +121,14 @@ __all__ = (
|
|
|
100
121
|
"ConnectorConfigResponseTypeDef",
|
|
101
122
|
"ControlPlanePlacementRequestTypeDef",
|
|
102
123
|
"ControlPlanePlacementResponseTypeDef",
|
|
124
|
+
"ControlPlaneScalingConfigTypeDef",
|
|
103
125
|
"CreateAccessConfigRequestTypeDef",
|
|
104
126
|
"CreateAccessEntryRequestTypeDef",
|
|
105
127
|
"CreateAccessEntryResponseTypeDef",
|
|
106
128
|
"CreateAddonRequestTypeDef",
|
|
107
129
|
"CreateAddonResponseTypeDef",
|
|
130
|
+
"CreateCapabilityRequestTypeDef",
|
|
131
|
+
"CreateCapabilityResponseTypeDef",
|
|
108
132
|
"CreateClusterRequestTypeDef",
|
|
109
133
|
"CreateClusterResponseTypeDef",
|
|
110
134
|
"CreateEksAnywhereSubscriptionRequestTypeDef",
|
|
@@ -118,6 +142,8 @@ __all__ = (
|
|
|
118
142
|
"DeleteAccessEntryRequestTypeDef",
|
|
119
143
|
"DeleteAddonRequestTypeDef",
|
|
120
144
|
"DeleteAddonResponseTypeDef",
|
|
145
|
+
"DeleteCapabilityRequestTypeDef",
|
|
146
|
+
"DeleteCapabilityResponseTypeDef",
|
|
121
147
|
"DeleteClusterRequestTypeDef",
|
|
122
148
|
"DeleteClusterResponseTypeDef",
|
|
123
149
|
"DeleteEksAnywhereSubscriptionRequestTypeDef",
|
|
@@ -142,6 +168,8 @@ __all__ = (
|
|
|
142
168
|
"DescribeAddonVersionsRequestPaginateTypeDef",
|
|
143
169
|
"DescribeAddonVersionsRequestTypeDef",
|
|
144
170
|
"DescribeAddonVersionsResponseTypeDef",
|
|
171
|
+
"DescribeCapabilityRequestTypeDef",
|
|
172
|
+
"DescribeCapabilityResponseTypeDef",
|
|
145
173
|
"DescribeClusterRequestTypeDef",
|
|
146
174
|
"DescribeClusterRequestWaitExtraTypeDef",
|
|
147
175
|
"DescribeClusterRequestWaitTypeDef",
|
|
@@ -211,6 +239,9 @@ __all__ = (
|
|
|
211
239
|
"ListAssociatedAccessPoliciesRequestPaginateTypeDef",
|
|
212
240
|
"ListAssociatedAccessPoliciesRequestTypeDef",
|
|
213
241
|
"ListAssociatedAccessPoliciesResponseTypeDef",
|
|
242
|
+
"ListCapabilitiesRequestPaginateTypeDef",
|
|
243
|
+
"ListCapabilitiesRequestTypeDef",
|
|
244
|
+
"ListCapabilitiesResponseTypeDef",
|
|
214
245
|
"ListClustersRequestPaginateTypeDef",
|
|
215
246
|
"ListClustersRequestTypeDef",
|
|
216
247
|
"ListClustersResponseTypeDef",
|
|
@@ -275,6 +306,7 @@ __all__ = (
|
|
|
275
306
|
"RemotePodNetworkTypeDef",
|
|
276
307
|
"RemotePodNetworkUnionTypeDef",
|
|
277
308
|
"ResponseMetadataTypeDef",
|
|
309
|
+
"SsoIdentityTypeDef",
|
|
278
310
|
"StartInsightsRefreshRequestTypeDef",
|
|
279
311
|
"StartInsightsRefreshResponseTypeDef",
|
|
280
312
|
"StorageConfigRequestTypeDef",
|
|
@@ -287,6 +319,10 @@ __all__ = (
|
|
|
287
319
|
"UpdateAccessEntryResponseTypeDef",
|
|
288
320
|
"UpdateAddonRequestTypeDef",
|
|
289
321
|
"UpdateAddonResponseTypeDef",
|
|
322
|
+
"UpdateArgoCdConfigTypeDef",
|
|
323
|
+
"UpdateCapabilityConfigurationTypeDef",
|
|
324
|
+
"UpdateCapabilityRequestTypeDef",
|
|
325
|
+
"UpdateCapabilityResponseTypeDef",
|
|
290
326
|
"UpdateClusterConfigRequestTypeDef",
|
|
291
327
|
"UpdateClusterConfigResponseTypeDef",
|
|
292
328
|
"UpdateClusterVersionRequestTypeDef",
|
|
@@ -301,6 +337,7 @@ __all__ = (
|
|
|
301
337
|
"UpdateParamTypeDef",
|
|
302
338
|
"UpdatePodIdentityAssociationRequestTypeDef",
|
|
303
339
|
"UpdatePodIdentityAssociationResponseTypeDef",
|
|
340
|
+
"UpdateRoleMappingsTypeDef",
|
|
304
341
|
"UpdateTaintsPayloadTypeDef",
|
|
305
342
|
"UpdateTypeDef",
|
|
306
343
|
"UpgradePolicyRequestTypeDef",
|
|
@@ -395,6 +432,34 @@ class CompatibilityTypeDef(TypedDict):
|
|
|
395
432
|
defaultVersion: NotRequired[bool]
|
|
396
433
|
|
|
397
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
|
+
|
|
398
463
|
class ResponseMetadataTypeDef(TypedDict):
|
|
399
464
|
RequestId: str
|
|
400
465
|
HTTPStatusCode: int
|
|
@@ -422,6 +487,25 @@ class BlockStorageTypeDef(TypedDict):
|
|
|
422
487
|
enabled: NotRequired[bool]
|
|
423
488
|
|
|
424
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
|
+
|
|
425
509
|
class CertificateTypeDef(TypedDict):
|
|
426
510
|
data: NotRequired[str]
|
|
427
511
|
|
|
@@ -452,6 +536,10 @@ class ConnectorConfigResponseTypeDef(TypedDict):
|
|
|
452
536
|
roleArn: NotRequired[str]
|
|
453
537
|
|
|
454
538
|
|
|
539
|
+
class ControlPlaneScalingConfigTypeDef(TypedDict):
|
|
540
|
+
tier: NotRequired[ProvisionedControlPlaneTierType]
|
|
541
|
+
|
|
542
|
+
|
|
455
543
|
class UpgradePolicyResponseTypeDef(TypedDict):
|
|
456
544
|
supportType: NotRequired[SupportTypeType]
|
|
457
545
|
|
|
@@ -608,6 +696,11 @@ class DeleteAddonRequestTypeDef(TypedDict):
|
|
|
608
696
|
preserve: NotRequired[bool]
|
|
609
697
|
|
|
610
698
|
|
|
699
|
+
class DeleteCapabilityRequestTypeDef(TypedDict):
|
|
700
|
+
clusterName: str
|
|
701
|
+
capabilityName: str
|
|
702
|
+
|
|
703
|
+
|
|
611
704
|
class DeleteClusterRequestTypeDef(TypedDict):
|
|
612
705
|
name: str
|
|
613
706
|
|
|
@@ -679,6 +772,11 @@ DescribeAddonVersionsRequestTypeDef = TypedDict(
|
|
|
679
772
|
)
|
|
680
773
|
|
|
681
774
|
|
|
775
|
+
class DescribeCapabilityRequestTypeDef(TypedDict):
|
|
776
|
+
clusterName: str
|
|
777
|
+
capabilityName: str
|
|
778
|
+
|
|
779
|
+
|
|
682
780
|
class DescribeClusterRequestTypeDef(TypedDict):
|
|
683
781
|
name: str
|
|
684
782
|
|
|
@@ -742,6 +840,7 @@ class DescribeUpdateRequestTypeDef(TypedDict):
|
|
|
742
840
|
updateId: str
|
|
743
841
|
nodegroupName: NotRequired[str]
|
|
744
842
|
addonName: NotRequired[str]
|
|
843
|
+
capabilityName: NotRequired[str]
|
|
745
844
|
|
|
746
845
|
|
|
747
846
|
class DisassociateAccessPolicyRequestTypeDef(TypedDict):
|
|
@@ -850,6 +949,12 @@ class ListAssociatedAccessPoliciesRequestTypeDef(TypedDict):
|
|
|
850
949
|
nextToken: NotRequired[str]
|
|
851
950
|
|
|
852
951
|
|
|
952
|
+
class ListCapabilitiesRequestTypeDef(TypedDict):
|
|
953
|
+
clusterName: str
|
|
954
|
+
nextToken: NotRequired[str]
|
|
955
|
+
maxResults: NotRequired[int]
|
|
956
|
+
|
|
957
|
+
|
|
853
958
|
class ListClustersRequestTypeDef(TypedDict):
|
|
854
959
|
maxResults: NotRequired[int]
|
|
855
960
|
nextToken: NotRequired[str]
|
|
@@ -905,6 +1010,7 @@ class ListUpdatesRequestTypeDef(TypedDict):
|
|
|
905
1010
|
name: str
|
|
906
1011
|
nodegroupName: NotRequired[str]
|
|
907
1012
|
addonName: NotRequired[str]
|
|
1013
|
+
capabilityName: NotRequired[str]
|
|
908
1014
|
nextToken: NotRequired[str]
|
|
909
1015
|
maxResults: NotRequired[int]
|
|
910
1016
|
|
|
@@ -1071,6 +1177,16 @@ class AddonVersionInfoTypeDef(TypedDict):
|
|
|
1071
1177
|
requiresIamPermissions: NotRequired[bool]
|
|
1072
1178
|
|
|
1073
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
|
+
|
|
1074
1190
|
class CreateAccessEntryResponseTypeDef(TypedDict):
|
|
1075
1191
|
accessEntry: AccessEntryTypeDef
|
|
1076
1192
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1175,6 +1291,16 @@ class StorageConfigResponseTypeDef(TypedDict):
|
|
|
1175
1291
|
blockStorage: NotRequired[BlockStorageTypeDef]
|
|
1176
1292
|
|
|
1177
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
|
+
|
|
1178
1304
|
class DeprecationDetailTypeDef(TypedDict):
|
|
1179
1305
|
usage: NotRequired[str]
|
|
1180
1306
|
replacedWith: NotRequired[str]
|
|
@@ -1347,6 +1473,11 @@ class ListAssociatedAccessPoliciesRequestPaginateTypeDef(TypedDict):
|
|
|
1347
1473
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1348
1474
|
|
|
1349
1475
|
|
|
1476
|
+
class ListCapabilitiesRequestPaginateTypeDef(TypedDict):
|
|
1477
|
+
clusterName: str
|
|
1478
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1479
|
+
|
|
1480
|
+
|
|
1350
1481
|
class ListClustersRequestPaginateTypeDef(TypedDict):
|
|
1351
1482
|
include: NotRequired[Sequence[str]]
|
|
1352
1483
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
@@ -1383,6 +1514,7 @@ class ListUpdatesRequestPaginateTypeDef(TypedDict):
|
|
|
1383
1514
|
name: str
|
|
1384
1515
|
nodegroupName: NotRequired[str]
|
|
1385
1516
|
addonName: NotRequired[str]
|
|
1517
|
+
capabilityName: NotRequired[str]
|
|
1386
1518
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1387
1519
|
|
|
1388
1520
|
|
|
@@ -1615,6 +1747,17 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1615
1747
|
)
|
|
1616
1748
|
|
|
1617
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
|
+
|
|
1618
1761
|
class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
1619
1762
|
deprecationDetails: NotRequired[list[DeprecationDetailTypeDef]]
|
|
1620
1763
|
addonCompatibilityDetails: NotRequired[list[AddonCompatibilityDetailTypeDef]]
|
|
@@ -1744,6 +1887,7 @@ ClusterTypeDef = TypedDict(
|
|
|
1744
1887
|
"computeConfig": NotRequired[ComputeConfigResponseTypeDef],
|
|
1745
1888
|
"storageConfig": NotRequired[StorageConfigResponseTypeDef],
|
|
1746
1889
|
"deletionProtection": NotRequired[bool],
|
|
1890
|
+
"controlPlaneScalingConfig": NotRequired[ControlPlaneScalingConfigTypeDef],
|
|
1747
1891
|
},
|
|
1748
1892
|
)
|
|
1749
1893
|
|
|
@@ -1779,6 +1923,11 @@ class UpdateAddonResponseTypeDef(TypedDict):
|
|
|
1779
1923
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1780
1924
|
|
|
1781
1925
|
|
|
1926
|
+
class UpdateCapabilityResponseTypeDef(TypedDict):
|
|
1927
|
+
update: UpdateTypeDef
|
|
1928
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1929
|
+
|
|
1930
|
+
|
|
1782
1931
|
class UpdateClusterConfigResponseTypeDef(TypedDict):
|
|
1783
1932
|
update: UpdateTypeDef
|
|
1784
1933
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1820,6 +1969,22 @@ class DescribeAddonVersionsResponseTypeDef(TypedDict):
|
|
|
1820
1969
|
nextToken: NotRequired[str]
|
|
1821
1970
|
|
|
1822
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
|
+
|
|
1823
1988
|
InsightTypeDef = TypedDict(
|
|
1824
1989
|
"InsightTypeDef",
|
|
1825
1990
|
{
|
|
@@ -1952,6 +2117,7 @@ class CreateClusterRequestTypeDef(TypedDict):
|
|
|
1952
2117
|
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1953
2118
|
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1954
2119
|
deletionProtection: NotRequired[bool]
|
|
2120
|
+
controlPlaneScalingConfig: NotRequired[ControlPlaneScalingConfigTypeDef]
|
|
1955
2121
|
|
|
1956
2122
|
|
|
1957
2123
|
class UpdateClusterConfigRequestTypeDef(TypedDict):
|
|
@@ -1967,8 +2133,81 @@ class UpdateClusterConfigRequestTypeDef(TypedDict):
|
|
|
1967
2133
|
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1968
2134
|
remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
|
|
1969
2135
|
deletionProtection: NotRequired[bool]
|
|
2136
|
+
controlPlaneScalingConfig: NotRequired[ControlPlaneScalingConfigTypeDef]
|
|
2137
|
+
|
|
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]
|
|
1970
2166
|
|
|
1971
2167
|
|
|
1972
2168
|
class DescribeInsightResponseTypeDef(TypedDict):
|
|
1973
2169
|
insight: InsightTypeDef
|
|
1974
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"]]
|