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/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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_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 types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/paginators/#listcapabilitiespaginator)
|
|
242
|
+
"""
|
|
243
|
+
|
|
221
244
|
if TYPE_CHECKING:
|
|
222
245
|
_ListClustersPaginatorBase = Paginator[ListClustersResponseTypeDef]
|
|
223
246
|
else:
|
types_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,
|
|
@@ -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"]]
|