mypy-boto3-eks 1.35.86__py3-none-any.whl → 1.35.93__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 +5 -5
- mypy_boto3_eks/client.py +50 -20
- mypy_boto3_eks/client.pyi +50 -20
- mypy_boto3_eks/literals.py +6 -1
- mypy_boto3_eks/literals.pyi +6 -1
- mypy_boto3_eks/paginator.py +27 -1
- mypy_boto3_eks/paginator.pyi +24 -1
- mypy_boto3_eks/type_defs.py +125 -77
- mypy_boto3_eks/type_defs.pyi +121 -77
- 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.35.86.dist-info → mypy_boto3_eks-1.35.93.dist-info}/LICENSE +1 -1
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.35.93.dist-info}/METADATA +10 -6
- mypy_boto3_eks-1.35.93.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.35.93.dist-info}/WHEEL +1 -1
- mypy_boto3_eks-1.35.86.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.35.93.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -11,14 +11,14 @@ Usage::
|
|
|
11
11
|
data: AccessConfigResponseTypeDef = ...
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
Copyright
|
|
14
|
+
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
20
|
from datetime import datetime
|
|
21
|
-
from typing import
|
|
21
|
+
from typing import Union
|
|
22
22
|
|
|
23
23
|
from .literals import (
|
|
24
24
|
AccessScopeTypeType,
|
|
@@ -29,6 +29,7 @@ from .literals import (
|
|
|
29
29
|
CapacityTypesType,
|
|
30
30
|
ClusterIssueCodeType,
|
|
31
31
|
ClusterStatusType,
|
|
32
|
+
ClusterVersionStatusType,
|
|
32
33
|
ConfigStatusType,
|
|
33
34
|
ConnectorConfigProviderType,
|
|
34
35
|
EksAnywhereSubscriptionStatusType,
|
|
@@ -48,6 +49,12 @@ from .literals import (
|
|
|
48
49
|
UpdateTypeType,
|
|
49
50
|
)
|
|
50
51
|
|
|
52
|
+
if sys.version_info >= (3, 9):
|
|
53
|
+
from builtins import dict as Dict
|
|
54
|
+
from builtins import list as List
|
|
55
|
+
from collections.abc import Mapping, Sequence
|
|
56
|
+
else:
|
|
57
|
+
from typing import Dict, List, Mapping, Sequence
|
|
51
58
|
if sys.version_info >= (3, 12):
|
|
52
59
|
from typing import Literal, NotRequired, TypedDict
|
|
53
60
|
else:
|
|
@@ -82,6 +89,7 @@ __all__ = (
|
|
|
82
89
|
"ClusterHealthTypeDef",
|
|
83
90
|
"ClusterIssueTypeDef",
|
|
84
91
|
"ClusterTypeDef",
|
|
92
|
+
"ClusterVersionInformationTypeDef",
|
|
85
93
|
"CompatibilityTypeDef",
|
|
86
94
|
"ComputeConfigRequestTypeDef",
|
|
87
95
|
"ComputeConfigResponseTypeDef",
|
|
@@ -133,6 +141,9 @@ __all__ = (
|
|
|
133
141
|
"DescribeClusterRequestRequestTypeDef",
|
|
134
142
|
"DescribeClusterRequestWaitTypeDef",
|
|
135
143
|
"DescribeClusterResponseTypeDef",
|
|
144
|
+
"DescribeClusterVersionsRequestPaginateTypeDef",
|
|
145
|
+
"DescribeClusterVersionsRequestRequestTypeDef",
|
|
146
|
+
"DescribeClusterVersionsResponseTypeDef",
|
|
136
147
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
137
148
|
"DescribeEksAnywhereSubscriptionResponseTypeDef",
|
|
138
149
|
"DescribeFargateProfileRequestRequestTypeDef",
|
|
@@ -296,11 +307,11 @@ AccessEntryTypeDef = TypedDict(
|
|
|
296
307
|
{
|
|
297
308
|
"clusterName": NotRequired[str],
|
|
298
309
|
"principalArn": NotRequired[str],
|
|
299
|
-
"kubernetesGroups": NotRequired[
|
|
310
|
+
"kubernetesGroups": NotRequired[List[str]],
|
|
300
311
|
"accessEntryArn": NotRequired[str],
|
|
301
312
|
"createdAt": NotRequired[datetime],
|
|
302
313
|
"modifiedAt": NotRequired[datetime],
|
|
303
|
-
"tags": NotRequired[
|
|
314
|
+
"tags": NotRequired[Dict[str, str]],
|
|
304
315
|
"username": NotRequired[str],
|
|
305
316
|
"type": NotRequired[str],
|
|
306
317
|
},
|
|
@@ -316,7 +327,7 @@ AccessScopeOutputTypeDef = TypedDict(
|
|
|
316
327
|
"AccessScopeOutputTypeDef",
|
|
317
328
|
{
|
|
318
329
|
"type": NotRequired[AccessScopeTypeType],
|
|
319
|
-
"namespaces": NotRequired[
|
|
330
|
+
"namespaces": NotRequired[List[str]],
|
|
320
331
|
},
|
|
321
332
|
)
|
|
322
333
|
AccessScopeTypeDef = TypedDict(
|
|
@@ -330,13 +341,13 @@ AccessScopeTypeDef = TypedDict(
|
|
|
330
341
|
|
|
331
342
|
class AddonCompatibilityDetailTypeDef(TypedDict):
|
|
332
343
|
name: NotRequired[str]
|
|
333
|
-
compatibleVersions: NotRequired[
|
|
344
|
+
compatibleVersions: NotRequired[List[str]]
|
|
334
345
|
|
|
335
346
|
|
|
336
347
|
class AddonIssueTypeDef(TypedDict):
|
|
337
348
|
code: NotRequired[AddonIssueCodeType]
|
|
338
349
|
message: NotRequired[str]
|
|
339
|
-
resourceIds: NotRequired[
|
|
350
|
+
resourceIds: NotRequired[List[str]]
|
|
340
351
|
|
|
341
352
|
|
|
342
353
|
class MarketplaceInformationTypeDef(TypedDict):
|
|
@@ -351,19 +362,19 @@ class AddonPodIdentityAssociationsTypeDef(TypedDict):
|
|
|
351
362
|
|
|
352
363
|
class AddonPodIdentityConfigurationTypeDef(TypedDict):
|
|
353
364
|
serviceAccount: NotRequired[str]
|
|
354
|
-
recommendedManagedPolicies: NotRequired[
|
|
365
|
+
recommendedManagedPolicies: NotRequired[List[str]]
|
|
355
366
|
|
|
356
367
|
|
|
357
368
|
class CompatibilityTypeDef(TypedDict):
|
|
358
369
|
clusterVersion: NotRequired[str]
|
|
359
|
-
platformVersions: NotRequired[
|
|
370
|
+
platformVersions: NotRequired[List[str]]
|
|
360
371
|
defaultVersion: NotRequired[bool]
|
|
361
372
|
|
|
362
373
|
|
|
363
374
|
class ResponseMetadataTypeDef(TypedDict):
|
|
364
375
|
RequestId: str
|
|
365
376
|
HTTPStatusCode: int
|
|
366
|
-
HTTPHeaders:
|
|
377
|
+
HTTPHeaders: Dict[str, str]
|
|
367
378
|
RetryAttempts: int
|
|
368
379
|
HostId: NotRequired[str]
|
|
369
380
|
|
|
@@ -400,12 +411,12 @@ class ClientStatTypeDef(TypedDict):
|
|
|
400
411
|
class ClusterIssueTypeDef(TypedDict):
|
|
401
412
|
code: NotRequired[ClusterIssueCodeType]
|
|
402
413
|
message: NotRequired[str]
|
|
403
|
-
resourceIds: NotRequired[
|
|
414
|
+
resourceIds: NotRequired[List[str]]
|
|
404
415
|
|
|
405
416
|
|
|
406
417
|
class ComputeConfigResponseTypeDef(TypedDict):
|
|
407
418
|
enabled: NotRequired[bool]
|
|
408
|
-
nodePools: NotRequired[
|
|
419
|
+
nodePools: NotRequired[List[str]]
|
|
409
420
|
nodeRoleArn: NotRequired[str]
|
|
410
421
|
|
|
411
422
|
|
|
@@ -422,19 +433,31 @@ class UpgradePolicyResponseTypeDef(TypedDict):
|
|
|
422
433
|
|
|
423
434
|
|
|
424
435
|
class VpcConfigResponseTypeDef(TypedDict):
|
|
425
|
-
subnetIds: NotRequired[
|
|
426
|
-
securityGroupIds: NotRequired[
|
|
436
|
+
subnetIds: NotRequired[List[str]]
|
|
437
|
+
securityGroupIds: NotRequired[List[str]]
|
|
427
438
|
clusterSecurityGroupId: NotRequired[str]
|
|
428
439
|
vpcId: NotRequired[str]
|
|
429
440
|
endpointPublicAccess: NotRequired[bool]
|
|
430
441
|
endpointPrivateAccess: NotRequired[bool]
|
|
431
|
-
publicAccessCidrs: NotRequired[
|
|
442
|
+
publicAccessCidrs: NotRequired[List[str]]
|
|
432
443
|
|
|
433
444
|
|
|
434
445
|
class ZonalShiftConfigResponseTypeDef(TypedDict):
|
|
435
446
|
enabled: NotRequired[bool]
|
|
436
447
|
|
|
437
448
|
|
|
449
|
+
class ClusterVersionInformationTypeDef(TypedDict):
|
|
450
|
+
clusterVersion: NotRequired[str]
|
|
451
|
+
clusterType: NotRequired[str]
|
|
452
|
+
defaultPlatformVersion: NotRequired[str]
|
|
453
|
+
defaultVersion: NotRequired[bool]
|
|
454
|
+
releaseDate: NotRequired[datetime]
|
|
455
|
+
endOfStandardSupportDate: NotRequired[datetime]
|
|
456
|
+
endOfExtendedSupportDate: NotRequired[datetime]
|
|
457
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
458
|
+
kubernetesPatchVersion: NotRequired[str]
|
|
459
|
+
|
|
460
|
+
|
|
438
461
|
class ComputeConfigRequestTypeDef(TypedDict):
|
|
439
462
|
enabled: NotRequired[bool]
|
|
440
463
|
nodePools: NotRequired[Sequence[str]]
|
|
@@ -546,7 +569,7 @@ class PodIdentityAssociationTypeDef(TypedDict):
|
|
|
546
569
|
roleArn: NotRequired[str]
|
|
547
570
|
associationArn: NotRequired[str]
|
|
548
571
|
associationId: NotRequired[str]
|
|
549
|
-
tags: NotRequired[
|
|
572
|
+
tags: NotRequired[Dict[str, str]]
|
|
550
573
|
createdAt: NotRequired[datetime]
|
|
551
574
|
modifiedAt: NotRequired[datetime]
|
|
552
575
|
ownerArn: NotRequired[str]
|
|
@@ -638,6 +661,16 @@ class DescribeClusterRequestRequestTypeDef(TypedDict):
|
|
|
638
661
|
name: str
|
|
639
662
|
|
|
640
663
|
|
|
664
|
+
class DescribeClusterVersionsRequestRequestTypeDef(TypedDict):
|
|
665
|
+
clusterType: NotRequired[str]
|
|
666
|
+
maxResults: NotRequired[int]
|
|
667
|
+
nextToken: NotRequired[str]
|
|
668
|
+
defaultOnly: NotRequired[bool]
|
|
669
|
+
includeAll: NotRequired[bool]
|
|
670
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
671
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
672
|
+
|
|
673
|
+
|
|
641
674
|
DescribeEksAnywhereSubscriptionRequestRequestTypeDef = TypedDict(
|
|
642
675
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
643
676
|
{
|
|
@@ -701,18 +734,18 @@ class ProviderTypeDef(TypedDict):
|
|
|
701
734
|
class ErrorDetailTypeDef(TypedDict):
|
|
702
735
|
errorCode: NotRequired[ErrorCodeType]
|
|
703
736
|
errorMessage: NotRequired[str]
|
|
704
|
-
resourceIds: NotRequired[
|
|
737
|
+
resourceIds: NotRequired[List[str]]
|
|
705
738
|
|
|
706
739
|
|
|
707
740
|
class FargateProfileIssueTypeDef(TypedDict):
|
|
708
741
|
code: NotRequired[FargateProfileIssueCodeType]
|
|
709
742
|
message: NotRequired[str]
|
|
710
|
-
resourceIds: NotRequired[
|
|
743
|
+
resourceIds: NotRequired[List[str]]
|
|
711
744
|
|
|
712
745
|
|
|
713
746
|
class FargateProfileSelectorOutputTypeDef(TypedDict):
|
|
714
747
|
namespace: NotRequired[str]
|
|
715
|
-
labels: NotRequired[
|
|
748
|
+
labels: NotRequired[Dict[str, str]]
|
|
716
749
|
|
|
717
750
|
|
|
718
751
|
class FargateProfileSelectorTypeDef(TypedDict):
|
|
@@ -730,8 +763,8 @@ class OidcIdentityProviderConfigTypeDef(TypedDict):
|
|
|
730
763
|
usernamePrefix: NotRequired[str]
|
|
731
764
|
groupsClaim: NotRequired[str]
|
|
732
765
|
groupsPrefix: NotRequired[str]
|
|
733
|
-
requiredClaims: NotRequired[
|
|
734
|
-
tags: NotRequired[
|
|
766
|
+
requiredClaims: NotRequired[Dict[str, str]]
|
|
767
|
+
tags: NotRequired[Dict[str, str]]
|
|
735
768
|
status: NotRequired[ConfigStatusType]
|
|
736
769
|
|
|
737
770
|
|
|
@@ -753,7 +786,7 @@ class InsightsFilterTypeDef(TypedDict):
|
|
|
753
786
|
class IssueTypeDef(TypedDict):
|
|
754
787
|
code: NotRequired[NodegroupIssueCodeType]
|
|
755
788
|
message: NotRequired[str]
|
|
756
|
-
resourceIds: NotRequired[
|
|
789
|
+
resourceIds: NotRequired[List[str]]
|
|
757
790
|
|
|
758
791
|
|
|
759
792
|
class ListAccessEntriesRequestRequestTypeDef(TypedDict):
|
|
@@ -843,7 +876,7 @@ class ListUpdatesRequestRequestTypeDef(TypedDict):
|
|
|
843
876
|
LogSetupOutputTypeDef = TypedDict(
|
|
844
877
|
"LogSetupOutputTypeDef",
|
|
845
878
|
{
|
|
846
|
-
"types": NotRequired[
|
|
879
|
+
"types": NotRequired[List[LogTypeType]],
|
|
847
880
|
"enabled": NotRequired[bool],
|
|
848
881
|
},
|
|
849
882
|
)
|
|
@@ -858,15 +891,15 @@ LogSetupTypeDef = TypedDict(
|
|
|
858
891
|
|
|
859
892
|
class RemoteAccessConfigOutputTypeDef(TypedDict):
|
|
860
893
|
ec2SshKey: NotRequired[str]
|
|
861
|
-
sourceSecurityGroups: NotRequired[
|
|
894
|
+
sourceSecurityGroups: NotRequired[List[str]]
|
|
862
895
|
|
|
863
896
|
|
|
864
897
|
class RemoteNodeNetworkOutputTypeDef(TypedDict):
|
|
865
|
-
cidrs: NotRequired[
|
|
898
|
+
cidrs: NotRequired[List[str]]
|
|
866
899
|
|
|
867
900
|
|
|
868
901
|
class RemotePodNetworkOutputTypeDef(TypedDict):
|
|
869
|
-
cidrs: NotRequired[
|
|
902
|
+
cidrs: NotRequired[List[str]]
|
|
870
903
|
|
|
871
904
|
|
|
872
905
|
class RemoteNodeNetworkTypeDef(TypedDict):
|
|
@@ -951,7 +984,7 @@ class AssociateAccessPolicyRequestRequestTypeDef(TypedDict):
|
|
|
951
984
|
|
|
952
985
|
|
|
953
986
|
class AddonHealthTypeDef(TypedDict):
|
|
954
|
-
issues: NotRequired[
|
|
987
|
+
issues: NotRequired[List[AddonIssueTypeDef]]
|
|
955
988
|
|
|
956
989
|
|
|
957
990
|
class CreateAddonRequestRequestTypeDef(TypedDict):
|
|
@@ -979,9 +1012,9 @@ class UpdateAddonRequestRequestTypeDef(TypedDict):
|
|
|
979
1012
|
|
|
980
1013
|
class AddonVersionInfoTypeDef(TypedDict):
|
|
981
1014
|
addonVersion: NotRequired[str]
|
|
982
|
-
architecture: NotRequired[
|
|
983
|
-
computeTypes: NotRequired[
|
|
984
|
-
compatibilities: NotRequired[
|
|
1015
|
+
architecture: NotRequired[List[str]]
|
|
1016
|
+
computeTypes: NotRequired[List[str]]
|
|
1017
|
+
compatibilities: NotRequired[List[CompatibilityTypeDef]]
|
|
985
1018
|
requiresConfiguration: NotRequired[bool]
|
|
986
1019
|
requiresIamPermissions: NotRequired[bool]
|
|
987
1020
|
|
|
@@ -1000,53 +1033,53 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
|
|
|
1000
1033
|
addonName: str
|
|
1001
1034
|
addonVersion: str
|
|
1002
1035
|
configurationSchema: str
|
|
1003
|
-
podIdentityConfiguration:
|
|
1036
|
+
podIdentityConfiguration: List[AddonPodIdentityConfigurationTypeDef]
|
|
1004
1037
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1005
1038
|
|
|
1006
1039
|
|
|
1007
1040
|
class ListAccessEntriesResponseTypeDef(TypedDict):
|
|
1008
|
-
accessEntries:
|
|
1041
|
+
accessEntries: List[str]
|
|
1009
1042
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1010
1043
|
nextToken: NotRequired[str]
|
|
1011
1044
|
|
|
1012
1045
|
|
|
1013
1046
|
class ListAccessPoliciesResponseTypeDef(TypedDict):
|
|
1014
|
-
accessPolicies:
|
|
1047
|
+
accessPolicies: List[AccessPolicyTypeDef]
|
|
1015
1048
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1016
1049
|
nextToken: NotRequired[str]
|
|
1017
1050
|
|
|
1018
1051
|
|
|
1019
1052
|
class ListAddonsResponseTypeDef(TypedDict):
|
|
1020
|
-
addons:
|
|
1053
|
+
addons: List[str]
|
|
1021
1054
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1022
1055
|
nextToken: NotRequired[str]
|
|
1023
1056
|
|
|
1024
1057
|
|
|
1025
1058
|
class ListClustersResponseTypeDef(TypedDict):
|
|
1026
|
-
clusters:
|
|
1059
|
+
clusters: List[str]
|
|
1027
1060
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1028
1061
|
nextToken: NotRequired[str]
|
|
1029
1062
|
|
|
1030
1063
|
|
|
1031
1064
|
class ListFargateProfilesResponseTypeDef(TypedDict):
|
|
1032
|
-
fargateProfileNames:
|
|
1065
|
+
fargateProfileNames: List[str]
|
|
1033
1066
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1034
1067
|
nextToken: NotRequired[str]
|
|
1035
1068
|
|
|
1036
1069
|
|
|
1037
1070
|
class ListNodegroupsResponseTypeDef(TypedDict):
|
|
1038
|
-
nodegroups:
|
|
1071
|
+
nodegroups: List[str]
|
|
1039
1072
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1040
1073
|
nextToken: NotRequired[str]
|
|
1041
1074
|
|
|
1042
1075
|
|
|
1043
1076
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
1044
|
-
tags:
|
|
1077
|
+
tags: Dict[str, str]
|
|
1045
1078
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1046
1079
|
|
|
1047
1080
|
|
|
1048
1081
|
class ListUpdatesResponseTypeDef(TypedDict):
|
|
1049
|
-
updateIds:
|
|
1082
|
+
updateIds: List[str]
|
|
1050
1083
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1051
1084
|
nextToken: NotRequired[str]
|
|
1052
1085
|
|
|
@@ -1064,7 +1097,7 @@ class AssociateIdentityProviderConfigRequestRequestTypeDef(TypedDict):
|
|
|
1064
1097
|
|
|
1065
1098
|
|
|
1066
1099
|
class NodegroupResourcesTypeDef(TypedDict):
|
|
1067
|
-
autoScalingGroups: NotRequired[
|
|
1100
|
+
autoScalingGroups: NotRequired[List[AutoScalingGroupTypeDef]]
|
|
1068
1101
|
remoteAccessSecurityGroup: NotRequired[str]
|
|
1069
1102
|
|
|
1070
1103
|
|
|
@@ -1081,11 +1114,17 @@ class DeprecationDetailTypeDef(TypedDict):
|
|
|
1081
1114
|
replacedWith: NotRequired[str]
|
|
1082
1115
|
stopServingVersion: NotRequired[str]
|
|
1083
1116
|
startServingReplacementVersion: NotRequired[str]
|
|
1084
|
-
clientStats: NotRequired[
|
|
1117
|
+
clientStats: NotRequired[List[ClientStatTypeDef]]
|
|
1085
1118
|
|
|
1086
1119
|
|
|
1087
1120
|
class ClusterHealthTypeDef(TypedDict):
|
|
1088
|
-
issues: NotRequired[
|
|
1121
|
+
issues: NotRequired[List[ClusterIssueTypeDef]]
|
|
1122
|
+
|
|
1123
|
+
|
|
1124
|
+
class DescribeClusterVersionsResponseTypeDef(TypedDict):
|
|
1125
|
+
clusterVersions: List[ClusterVersionInformationTypeDef]
|
|
1126
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1127
|
+
nextToken: NotRequired[str]
|
|
1089
1128
|
|
|
1090
1129
|
|
|
1091
1130
|
class RegisterClusterRequestRequestTypeDef(TypedDict):
|
|
@@ -1102,7 +1141,7 @@ class OutpostConfigRequestTypeDef(TypedDict):
|
|
|
1102
1141
|
|
|
1103
1142
|
|
|
1104
1143
|
class OutpostConfigResponseTypeDef(TypedDict):
|
|
1105
|
-
outpostArns:
|
|
1144
|
+
outpostArns: List[str]
|
|
1106
1145
|
controlPlaneInstanceType: str
|
|
1107
1146
|
controlPlanePlacement: NotRequired[ControlPlanePlacementResponseTypeDef]
|
|
1108
1147
|
|
|
@@ -1130,8 +1169,8 @@ EksAnywhereSubscriptionTypeDef = TypedDict(
|
|
|
1130
1169
|
"term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
|
|
1131
1170
|
"status": NotRequired[str],
|
|
1132
1171
|
"autoRenew": NotRequired[bool],
|
|
1133
|
-
"licenseArns": NotRequired[
|
|
1134
|
-
"tags": NotRequired[
|
|
1172
|
+
"licenseArns": NotRequired[List[str]],
|
|
1173
|
+
"tags": NotRequired[Dict[str, str]],
|
|
1135
1174
|
},
|
|
1136
1175
|
)
|
|
1137
1176
|
|
|
@@ -1229,6 +1268,15 @@ DescribeAddonVersionsRequestPaginateTypeDef = TypedDict(
|
|
|
1229
1268
|
)
|
|
1230
1269
|
|
|
1231
1270
|
|
|
1271
|
+
class DescribeClusterVersionsRequestPaginateTypeDef(TypedDict):
|
|
1272
|
+
clusterType: NotRequired[str]
|
|
1273
|
+
defaultOnly: NotRequired[bool]
|
|
1274
|
+
includeAll: NotRequired[bool]
|
|
1275
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
1276
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
1277
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1278
|
+
|
|
1279
|
+
|
|
1232
1280
|
class ListAccessEntriesRequestPaginateTypeDef(TypedDict):
|
|
1233
1281
|
clusterName: str
|
|
1234
1282
|
associatedPolicyArn: NotRequired[str]
|
|
@@ -1301,7 +1349,7 @@ class DisassociateIdentityProviderConfigRequestRequestTypeDef(TypedDict):
|
|
|
1301
1349
|
|
|
1302
1350
|
|
|
1303
1351
|
class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
|
|
1304
|
-
identityProviderConfigs:
|
|
1352
|
+
identityProviderConfigs: List[IdentityProviderConfigTypeDef]
|
|
1305
1353
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1306
1354
|
nextToken: NotRequired[str]
|
|
1307
1355
|
|
|
@@ -1320,7 +1368,7 @@ class KubernetesNetworkConfigResponseTypeDef(TypedDict):
|
|
|
1320
1368
|
|
|
1321
1369
|
|
|
1322
1370
|
class EncryptionConfigOutputTypeDef(TypedDict):
|
|
1323
|
-
resources: NotRequired[
|
|
1371
|
+
resources: NotRequired[List[str]]
|
|
1324
1372
|
provider: NotRequired[ProviderTypeDef]
|
|
1325
1373
|
|
|
1326
1374
|
|
|
@@ -1330,7 +1378,7 @@ class EncryptionConfigTypeDef(TypedDict):
|
|
|
1330
1378
|
|
|
1331
1379
|
|
|
1332
1380
|
class FargateProfileHealthTypeDef(TypedDict):
|
|
1333
|
-
issues: NotRequired[
|
|
1381
|
+
issues: NotRequired[List[FargateProfileIssueTypeDef]]
|
|
1334
1382
|
|
|
1335
1383
|
|
|
1336
1384
|
FargateProfileSelectorUnionTypeDef = Union[
|
|
@@ -1385,25 +1433,25 @@ ListInsightsRequestRequestTypeDef = TypedDict(
|
|
|
1385
1433
|
|
|
1386
1434
|
|
|
1387
1435
|
class NodegroupHealthTypeDef(TypedDict):
|
|
1388
|
-
issues: NotRequired[
|
|
1436
|
+
issues: NotRequired[List[IssueTypeDef]]
|
|
1389
1437
|
|
|
1390
1438
|
|
|
1391
1439
|
class ListPodIdentityAssociationsResponseTypeDef(TypedDict):
|
|
1392
|
-
associations:
|
|
1440
|
+
associations: List[PodIdentityAssociationSummaryTypeDef]
|
|
1393
1441
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1394
1442
|
nextToken: NotRequired[str]
|
|
1395
1443
|
|
|
1396
1444
|
|
|
1397
1445
|
class LoggingOutputTypeDef(TypedDict):
|
|
1398
|
-
clusterLogging: NotRequired[
|
|
1446
|
+
clusterLogging: NotRequired[List[LogSetupOutputTypeDef]]
|
|
1399
1447
|
|
|
1400
1448
|
|
|
1401
1449
|
LogSetupUnionTypeDef = Union[LogSetupTypeDef, LogSetupOutputTypeDef]
|
|
1402
1450
|
|
|
1403
1451
|
|
|
1404
1452
|
class RemoteNetworkConfigResponseTypeDef(TypedDict):
|
|
1405
|
-
remoteNodeNetworks: NotRequired[
|
|
1406
|
-
remotePodNetworks: NotRequired[
|
|
1453
|
+
remoteNodeNetworks: NotRequired[List[RemoteNodeNetworkOutputTypeDef]]
|
|
1454
|
+
remotePodNetworks: NotRequired[List[RemotePodNetworkOutputTypeDef]]
|
|
1407
1455
|
|
|
1408
1456
|
|
|
1409
1457
|
RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
|
|
@@ -1414,9 +1462,9 @@ UpdateTypeDef = TypedDict(
|
|
|
1414
1462
|
"id": NotRequired[str],
|
|
1415
1463
|
"status": NotRequired[UpdateStatusType],
|
|
1416
1464
|
"type": NotRequired[UpdateTypeType],
|
|
1417
|
-
"params": NotRequired[
|
|
1465
|
+
"params": NotRequired[List[UpdateParamTypeDef]],
|
|
1418
1466
|
"createdAt": NotRequired[datetime],
|
|
1419
|
-
"errors": NotRequired[
|
|
1467
|
+
"errors": NotRequired[List[ErrorDetailTypeDef]],
|
|
1420
1468
|
},
|
|
1421
1469
|
)
|
|
1422
1470
|
|
|
@@ -1431,7 +1479,7 @@ class AssociateAccessPolicyResponseTypeDef(TypedDict):
|
|
|
1431
1479
|
class ListAssociatedAccessPoliciesResponseTypeDef(TypedDict):
|
|
1432
1480
|
clusterName: str
|
|
1433
1481
|
principalArn: str
|
|
1434
|
-
associatedAccessPolicies:
|
|
1482
|
+
associatedAccessPolicies: List[AssociatedAccessPolicyTypeDef]
|
|
1435
1483
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1436
1484
|
nextToken: NotRequired[str]
|
|
1437
1485
|
|
|
@@ -1446,12 +1494,12 @@ class AddonTypeDef(TypedDict):
|
|
|
1446
1494
|
createdAt: NotRequired[datetime]
|
|
1447
1495
|
modifiedAt: NotRequired[datetime]
|
|
1448
1496
|
serviceAccountRoleArn: NotRequired[str]
|
|
1449
|
-
tags: NotRequired[
|
|
1497
|
+
tags: NotRequired[Dict[str, str]]
|
|
1450
1498
|
publisher: NotRequired[str]
|
|
1451
1499
|
owner: NotRequired[str]
|
|
1452
1500
|
marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
|
|
1453
1501
|
configurationValues: NotRequired[str]
|
|
1454
|
-
podIdentityAssociations: NotRequired[
|
|
1502
|
+
podIdentityAssociations: NotRequired[List[str]]
|
|
1455
1503
|
|
|
1456
1504
|
|
|
1457
1505
|
AddonInfoTypeDef = TypedDict(
|
|
@@ -1459,7 +1507,7 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1459
1507
|
{
|
|
1460
1508
|
"addonName": NotRequired[str],
|
|
1461
1509
|
"type": NotRequired[str],
|
|
1462
|
-
"addonVersions": NotRequired[
|
|
1510
|
+
"addonVersions": NotRequired[List[AddonVersionInfoTypeDef]],
|
|
1463
1511
|
"publisher": NotRequired[str],
|
|
1464
1512
|
"owner": NotRequired[str],
|
|
1465
1513
|
"marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
|
|
@@ -1468,8 +1516,8 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1468
1516
|
|
|
1469
1517
|
|
|
1470
1518
|
class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
1471
|
-
deprecationDetails: NotRequired[
|
|
1472
|
-
addonCompatibilityDetails: NotRequired[
|
|
1519
|
+
deprecationDetails: NotRequired[List[DeprecationDetailTypeDef]]
|
|
1520
|
+
addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
|
|
1473
1521
|
|
|
1474
1522
|
|
|
1475
1523
|
class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
@@ -1488,7 +1536,7 @@ class DescribeEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
|
1488
1536
|
|
|
1489
1537
|
|
|
1490
1538
|
class ListEksAnywhereSubscriptionsResponseTypeDef(TypedDict):
|
|
1491
|
-
subscriptions:
|
|
1539
|
+
subscriptions: List[EksAnywhereSubscriptionTypeDef]
|
|
1492
1540
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1493
1541
|
nextToken: NotRequired[str]
|
|
1494
1542
|
|
|
@@ -1518,10 +1566,10 @@ class FargateProfileTypeDef(TypedDict):
|
|
|
1518
1566
|
clusterName: NotRequired[str]
|
|
1519
1567
|
createdAt: NotRequired[datetime]
|
|
1520
1568
|
podExecutionRoleArn: NotRequired[str]
|
|
1521
|
-
subnets: NotRequired[
|
|
1522
|
-
selectors: NotRequired[
|
|
1569
|
+
subnets: NotRequired[List[str]]
|
|
1570
|
+
selectors: NotRequired[List[FargateProfileSelectorOutputTypeDef]]
|
|
1523
1571
|
status: NotRequired[FargateProfileStatusType]
|
|
1524
|
-
tags: NotRequired[
|
|
1572
|
+
tags: NotRequired[Dict[str, str]]
|
|
1525
1573
|
health: NotRequired[FargateProfileHealthTypeDef]
|
|
1526
1574
|
|
|
1527
1575
|
|
|
@@ -1541,7 +1589,7 @@ class DescribeIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
|
1541
1589
|
|
|
1542
1590
|
|
|
1543
1591
|
class ListInsightsResponseTypeDef(TypedDict):
|
|
1544
|
-
insights:
|
|
1592
|
+
insights: List[InsightSummaryTypeDef]
|
|
1545
1593
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1546
1594
|
nextToken: NotRequired[str]
|
|
1547
1595
|
|
|
@@ -1557,20 +1605,20 @@ class NodegroupTypeDef(TypedDict):
|
|
|
1557
1605
|
status: NotRequired[NodegroupStatusType]
|
|
1558
1606
|
capacityType: NotRequired[CapacityTypesType]
|
|
1559
1607
|
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1560
|
-
instanceTypes: NotRequired[
|
|
1561
|
-
subnets: NotRequired[
|
|
1608
|
+
instanceTypes: NotRequired[List[str]]
|
|
1609
|
+
subnets: NotRequired[List[str]]
|
|
1562
1610
|
remoteAccess: NotRequired[RemoteAccessConfigOutputTypeDef]
|
|
1563
1611
|
amiType: NotRequired[AMITypesType]
|
|
1564
1612
|
nodeRole: NotRequired[str]
|
|
1565
|
-
labels: NotRequired[
|
|
1566
|
-
taints: NotRequired[
|
|
1613
|
+
labels: NotRequired[Dict[str, str]]
|
|
1614
|
+
taints: NotRequired[List[TaintTypeDef]]
|
|
1567
1615
|
resources: NotRequired[NodegroupResourcesTypeDef]
|
|
1568
1616
|
diskSize: NotRequired[int]
|
|
1569
1617
|
health: NotRequired[NodegroupHealthTypeDef]
|
|
1570
1618
|
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1571
1619
|
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1572
1620
|
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1573
|
-
tags: NotRequired[
|
|
1621
|
+
tags: NotRequired[Dict[str, str]]
|
|
1574
1622
|
|
|
1575
1623
|
|
|
1576
1624
|
class LoggingTypeDef(TypedDict):
|
|
@@ -1594,8 +1642,8 @@ ClusterTypeDef = TypedDict(
|
|
|
1594
1642
|
"certificateAuthority": NotRequired[CertificateTypeDef],
|
|
1595
1643
|
"clientRequestToken": NotRequired[str],
|
|
1596
1644
|
"platformVersion": NotRequired[str],
|
|
1597
|
-
"tags": NotRequired[
|
|
1598
|
-
"encryptionConfig": NotRequired[
|
|
1645
|
+
"tags": NotRequired[Dict[str, str]],
|
|
1646
|
+
"encryptionConfig": NotRequired[List[EncryptionConfigOutputTypeDef]],
|
|
1599
1647
|
"connectorConfig": NotRequired[ConnectorConfigResponseTypeDef],
|
|
1600
1648
|
"id": NotRequired[str],
|
|
1601
1649
|
"health": NotRequired[ClusterHealthTypeDef],
|
|
@@ -1622,7 +1670,7 @@ class AssociateEncryptionConfigResponseTypeDef(TypedDict):
|
|
|
1622
1670
|
|
|
1623
1671
|
class AssociateIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
1624
1672
|
update: UpdateTypeDef
|
|
1625
|
-
tags:
|
|
1673
|
+
tags: Dict[str, str]
|
|
1626
1674
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1627
1675
|
|
|
1628
1676
|
|
|
@@ -1677,7 +1725,7 @@ class DescribeAddonResponseTypeDef(TypedDict):
|
|
|
1677
1725
|
|
|
1678
1726
|
|
|
1679
1727
|
class DescribeAddonVersionsResponseTypeDef(TypedDict):
|
|
1680
|
-
addons:
|
|
1728
|
+
addons: List[AddonInfoTypeDef]
|
|
1681
1729
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1682
1730
|
nextToken: NotRequired[str]
|
|
1683
1731
|
|
|
@@ -1694,8 +1742,8 @@ InsightTypeDef = TypedDict(
|
|
|
1694
1742
|
"description": NotRequired[str],
|
|
1695
1743
|
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1696
1744
|
"recommendation": NotRequired[str],
|
|
1697
|
-
"additionalInfo": NotRequired[
|
|
1698
|
-
"resources": NotRequired[
|
|
1745
|
+
"additionalInfo": NotRequired[Dict[str, str]],
|
|
1746
|
+
"resources": NotRequired[List[InsightResourceDetailTypeDef]],
|
|
1699
1747
|
"categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
|
|
1700
1748
|
},
|
|
1701
1749
|
)
|