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.pyi
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:
|
|
@@ -81,6 +88,7 @@ __all__ = (
|
|
|
81
88
|
"ClusterHealthTypeDef",
|
|
82
89
|
"ClusterIssueTypeDef",
|
|
83
90
|
"ClusterTypeDef",
|
|
91
|
+
"ClusterVersionInformationTypeDef",
|
|
84
92
|
"CompatibilityTypeDef",
|
|
85
93
|
"ComputeConfigRequestTypeDef",
|
|
86
94
|
"ComputeConfigResponseTypeDef",
|
|
@@ -132,6 +140,9 @@ __all__ = (
|
|
|
132
140
|
"DescribeClusterRequestRequestTypeDef",
|
|
133
141
|
"DescribeClusterRequestWaitTypeDef",
|
|
134
142
|
"DescribeClusterResponseTypeDef",
|
|
143
|
+
"DescribeClusterVersionsRequestPaginateTypeDef",
|
|
144
|
+
"DescribeClusterVersionsRequestRequestTypeDef",
|
|
145
|
+
"DescribeClusterVersionsResponseTypeDef",
|
|
135
146
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
136
147
|
"DescribeEksAnywhereSubscriptionResponseTypeDef",
|
|
137
148
|
"DescribeFargateProfileRequestRequestTypeDef",
|
|
@@ -293,11 +304,11 @@ AccessEntryTypeDef = TypedDict(
|
|
|
293
304
|
{
|
|
294
305
|
"clusterName": NotRequired[str],
|
|
295
306
|
"principalArn": NotRequired[str],
|
|
296
|
-
"kubernetesGroups": NotRequired[
|
|
307
|
+
"kubernetesGroups": NotRequired[List[str]],
|
|
297
308
|
"accessEntryArn": NotRequired[str],
|
|
298
309
|
"createdAt": NotRequired[datetime],
|
|
299
310
|
"modifiedAt": NotRequired[datetime],
|
|
300
|
-
"tags": NotRequired[
|
|
311
|
+
"tags": NotRequired[Dict[str, str]],
|
|
301
312
|
"username": NotRequired[str],
|
|
302
313
|
"type": NotRequired[str],
|
|
303
314
|
},
|
|
@@ -311,7 +322,7 @@ AccessScopeOutputTypeDef = TypedDict(
|
|
|
311
322
|
"AccessScopeOutputTypeDef",
|
|
312
323
|
{
|
|
313
324
|
"type": NotRequired[AccessScopeTypeType],
|
|
314
|
-
"namespaces": NotRequired[
|
|
325
|
+
"namespaces": NotRequired[List[str]],
|
|
315
326
|
},
|
|
316
327
|
)
|
|
317
328
|
AccessScopeTypeDef = TypedDict(
|
|
@@ -324,12 +335,12 @@ AccessScopeTypeDef = TypedDict(
|
|
|
324
335
|
|
|
325
336
|
class AddonCompatibilityDetailTypeDef(TypedDict):
|
|
326
337
|
name: NotRequired[str]
|
|
327
|
-
compatibleVersions: NotRequired[
|
|
338
|
+
compatibleVersions: NotRequired[List[str]]
|
|
328
339
|
|
|
329
340
|
class AddonIssueTypeDef(TypedDict):
|
|
330
341
|
code: NotRequired[AddonIssueCodeType]
|
|
331
342
|
message: NotRequired[str]
|
|
332
|
-
resourceIds: NotRequired[
|
|
343
|
+
resourceIds: NotRequired[List[str]]
|
|
333
344
|
|
|
334
345
|
class MarketplaceInformationTypeDef(TypedDict):
|
|
335
346
|
productId: NotRequired[str]
|
|
@@ -341,17 +352,17 @@ class AddonPodIdentityAssociationsTypeDef(TypedDict):
|
|
|
341
352
|
|
|
342
353
|
class AddonPodIdentityConfigurationTypeDef(TypedDict):
|
|
343
354
|
serviceAccount: NotRequired[str]
|
|
344
|
-
recommendedManagedPolicies: NotRequired[
|
|
355
|
+
recommendedManagedPolicies: NotRequired[List[str]]
|
|
345
356
|
|
|
346
357
|
class CompatibilityTypeDef(TypedDict):
|
|
347
358
|
clusterVersion: NotRequired[str]
|
|
348
|
-
platformVersions: NotRequired[
|
|
359
|
+
platformVersions: NotRequired[List[str]]
|
|
349
360
|
defaultVersion: NotRequired[bool]
|
|
350
361
|
|
|
351
362
|
class ResponseMetadataTypeDef(TypedDict):
|
|
352
363
|
RequestId: str
|
|
353
364
|
HTTPStatusCode: int
|
|
354
|
-
HTTPHeaders:
|
|
365
|
+
HTTPHeaders: Dict[str, str]
|
|
355
366
|
RetryAttempts: int
|
|
356
367
|
HostId: NotRequired[str]
|
|
357
368
|
|
|
@@ -382,11 +393,11 @@ class ClientStatTypeDef(TypedDict):
|
|
|
382
393
|
class ClusterIssueTypeDef(TypedDict):
|
|
383
394
|
code: NotRequired[ClusterIssueCodeType]
|
|
384
395
|
message: NotRequired[str]
|
|
385
|
-
resourceIds: NotRequired[
|
|
396
|
+
resourceIds: NotRequired[List[str]]
|
|
386
397
|
|
|
387
398
|
class ComputeConfigResponseTypeDef(TypedDict):
|
|
388
399
|
enabled: NotRequired[bool]
|
|
389
|
-
nodePools: NotRequired[
|
|
400
|
+
nodePools: NotRequired[List[str]]
|
|
390
401
|
nodeRoleArn: NotRequired[str]
|
|
391
402
|
|
|
392
403
|
class ConnectorConfigResponseTypeDef(TypedDict):
|
|
@@ -400,17 +411,28 @@ class UpgradePolicyResponseTypeDef(TypedDict):
|
|
|
400
411
|
supportType: NotRequired[SupportTypeType]
|
|
401
412
|
|
|
402
413
|
class VpcConfigResponseTypeDef(TypedDict):
|
|
403
|
-
subnetIds: NotRequired[
|
|
404
|
-
securityGroupIds: NotRequired[
|
|
414
|
+
subnetIds: NotRequired[List[str]]
|
|
415
|
+
securityGroupIds: NotRequired[List[str]]
|
|
405
416
|
clusterSecurityGroupId: NotRequired[str]
|
|
406
417
|
vpcId: NotRequired[str]
|
|
407
418
|
endpointPublicAccess: NotRequired[bool]
|
|
408
419
|
endpointPrivateAccess: NotRequired[bool]
|
|
409
|
-
publicAccessCidrs: NotRequired[
|
|
420
|
+
publicAccessCidrs: NotRequired[List[str]]
|
|
410
421
|
|
|
411
422
|
class ZonalShiftConfigResponseTypeDef(TypedDict):
|
|
412
423
|
enabled: NotRequired[bool]
|
|
413
424
|
|
|
425
|
+
class ClusterVersionInformationTypeDef(TypedDict):
|
|
426
|
+
clusterVersion: NotRequired[str]
|
|
427
|
+
clusterType: NotRequired[str]
|
|
428
|
+
defaultPlatformVersion: NotRequired[str]
|
|
429
|
+
defaultVersion: NotRequired[bool]
|
|
430
|
+
releaseDate: NotRequired[datetime]
|
|
431
|
+
endOfStandardSupportDate: NotRequired[datetime]
|
|
432
|
+
endOfExtendedSupportDate: NotRequired[datetime]
|
|
433
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
434
|
+
kubernetesPatchVersion: NotRequired[str]
|
|
435
|
+
|
|
414
436
|
class ComputeConfigRequestTypeDef(TypedDict):
|
|
415
437
|
enabled: NotRequired[bool]
|
|
416
438
|
nodePools: NotRequired[Sequence[str]]
|
|
@@ -505,7 +527,7 @@ class PodIdentityAssociationTypeDef(TypedDict):
|
|
|
505
527
|
roleArn: NotRequired[str]
|
|
506
528
|
associationArn: NotRequired[str]
|
|
507
529
|
associationId: NotRequired[str]
|
|
508
|
-
tags: NotRequired[
|
|
530
|
+
tags: NotRequired[Dict[str, str]]
|
|
509
531
|
createdAt: NotRequired[datetime]
|
|
510
532
|
modifiedAt: NotRequired[datetime]
|
|
511
533
|
ownerArn: NotRequired[str]
|
|
@@ -581,6 +603,15 @@ DescribeAddonVersionsRequestRequestTypeDef = TypedDict(
|
|
|
581
603
|
class DescribeClusterRequestRequestTypeDef(TypedDict):
|
|
582
604
|
name: str
|
|
583
605
|
|
|
606
|
+
class DescribeClusterVersionsRequestRequestTypeDef(TypedDict):
|
|
607
|
+
clusterType: NotRequired[str]
|
|
608
|
+
maxResults: NotRequired[int]
|
|
609
|
+
nextToken: NotRequired[str]
|
|
610
|
+
defaultOnly: NotRequired[bool]
|
|
611
|
+
includeAll: NotRequired[bool]
|
|
612
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
613
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
614
|
+
|
|
584
615
|
DescribeEksAnywhereSubscriptionRequestRequestTypeDef = TypedDict(
|
|
585
616
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
586
617
|
{
|
|
@@ -635,16 +666,16 @@ class ProviderTypeDef(TypedDict):
|
|
|
635
666
|
class ErrorDetailTypeDef(TypedDict):
|
|
636
667
|
errorCode: NotRequired[ErrorCodeType]
|
|
637
668
|
errorMessage: NotRequired[str]
|
|
638
|
-
resourceIds: NotRequired[
|
|
669
|
+
resourceIds: NotRequired[List[str]]
|
|
639
670
|
|
|
640
671
|
class FargateProfileIssueTypeDef(TypedDict):
|
|
641
672
|
code: NotRequired[FargateProfileIssueCodeType]
|
|
642
673
|
message: NotRequired[str]
|
|
643
|
-
resourceIds: NotRequired[
|
|
674
|
+
resourceIds: NotRequired[List[str]]
|
|
644
675
|
|
|
645
676
|
class FargateProfileSelectorOutputTypeDef(TypedDict):
|
|
646
677
|
namespace: NotRequired[str]
|
|
647
|
-
labels: NotRequired[
|
|
678
|
+
labels: NotRequired[Dict[str, str]]
|
|
648
679
|
|
|
649
680
|
class FargateProfileSelectorTypeDef(TypedDict):
|
|
650
681
|
namespace: NotRequired[str]
|
|
@@ -660,8 +691,8 @@ class OidcIdentityProviderConfigTypeDef(TypedDict):
|
|
|
660
691
|
usernamePrefix: NotRequired[str]
|
|
661
692
|
groupsClaim: NotRequired[str]
|
|
662
693
|
groupsPrefix: NotRequired[str]
|
|
663
|
-
requiredClaims: NotRequired[
|
|
664
|
-
tags: NotRequired[
|
|
694
|
+
requiredClaims: NotRequired[Dict[str, str]]
|
|
695
|
+
tags: NotRequired[Dict[str, str]]
|
|
665
696
|
status: NotRequired[ConfigStatusType]
|
|
666
697
|
|
|
667
698
|
class OIDCTypeDef(TypedDict):
|
|
@@ -679,7 +710,7 @@ class InsightsFilterTypeDef(TypedDict):
|
|
|
679
710
|
class IssueTypeDef(TypedDict):
|
|
680
711
|
code: NotRequired[NodegroupIssueCodeType]
|
|
681
712
|
message: NotRequired[str]
|
|
682
|
-
resourceIds: NotRequired[
|
|
713
|
+
resourceIds: NotRequired[List[str]]
|
|
683
714
|
|
|
684
715
|
class ListAccessEntriesRequestRequestTypeDef(TypedDict):
|
|
685
716
|
clusterName: str
|
|
@@ -755,7 +786,7 @@ class ListUpdatesRequestRequestTypeDef(TypedDict):
|
|
|
755
786
|
LogSetupOutputTypeDef = TypedDict(
|
|
756
787
|
"LogSetupOutputTypeDef",
|
|
757
788
|
{
|
|
758
|
-
"types": NotRequired[
|
|
789
|
+
"types": NotRequired[List[LogTypeType]],
|
|
759
790
|
"enabled": NotRequired[bool],
|
|
760
791
|
},
|
|
761
792
|
)
|
|
@@ -769,13 +800,13 @@ LogSetupTypeDef = TypedDict(
|
|
|
769
800
|
|
|
770
801
|
class RemoteAccessConfigOutputTypeDef(TypedDict):
|
|
771
802
|
ec2SshKey: NotRequired[str]
|
|
772
|
-
sourceSecurityGroups: NotRequired[
|
|
803
|
+
sourceSecurityGroups: NotRequired[List[str]]
|
|
773
804
|
|
|
774
805
|
class RemoteNodeNetworkOutputTypeDef(TypedDict):
|
|
775
|
-
cidrs: NotRequired[
|
|
806
|
+
cidrs: NotRequired[List[str]]
|
|
776
807
|
|
|
777
808
|
class RemotePodNetworkOutputTypeDef(TypedDict):
|
|
778
|
-
cidrs: NotRequired[
|
|
809
|
+
cidrs: NotRequired[List[str]]
|
|
779
810
|
|
|
780
811
|
class RemoteNodeNetworkTypeDef(TypedDict):
|
|
781
812
|
cidrs: NotRequired[Sequence[str]]
|
|
@@ -846,7 +877,7 @@ class AssociateAccessPolicyRequestRequestTypeDef(TypedDict):
|
|
|
846
877
|
accessScope: AccessScopeTypeDef
|
|
847
878
|
|
|
848
879
|
class AddonHealthTypeDef(TypedDict):
|
|
849
|
-
issues: NotRequired[
|
|
880
|
+
issues: NotRequired[List[AddonIssueTypeDef]]
|
|
850
881
|
|
|
851
882
|
class CreateAddonRequestRequestTypeDef(TypedDict):
|
|
852
883
|
clusterName: str
|
|
@@ -871,9 +902,9 @@ class UpdateAddonRequestRequestTypeDef(TypedDict):
|
|
|
871
902
|
|
|
872
903
|
class AddonVersionInfoTypeDef(TypedDict):
|
|
873
904
|
addonVersion: NotRequired[str]
|
|
874
|
-
architecture: NotRequired[
|
|
875
|
-
computeTypes: NotRequired[
|
|
876
|
-
compatibilities: NotRequired[
|
|
905
|
+
architecture: NotRequired[List[str]]
|
|
906
|
+
computeTypes: NotRequired[List[str]]
|
|
907
|
+
compatibilities: NotRequired[List[CompatibilityTypeDef]]
|
|
877
908
|
requiresConfiguration: NotRequired[bool]
|
|
878
909
|
requiresIamPermissions: NotRequired[bool]
|
|
879
910
|
|
|
@@ -889,45 +920,45 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
|
|
|
889
920
|
addonName: str
|
|
890
921
|
addonVersion: str
|
|
891
922
|
configurationSchema: str
|
|
892
|
-
podIdentityConfiguration:
|
|
923
|
+
podIdentityConfiguration: List[AddonPodIdentityConfigurationTypeDef]
|
|
893
924
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
894
925
|
|
|
895
926
|
class ListAccessEntriesResponseTypeDef(TypedDict):
|
|
896
|
-
accessEntries:
|
|
927
|
+
accessEntries: List[str]
|
|
897
928
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
898
929
|
nextToken: NotRequired[str]
|
|
899
930
|
|
|
900
931
|
class ListAccessPoliciesResponseTypeDef(TypedDict):
|
|
901
|
-
accessPolicies:
|
|
932
|
+
accessPolicies: List[AccessPolicyTypeDef]
|
|
902
933
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
903
934
|
nextToken: NotRequired[str]
|
|
904
935
|
|
|
905
936
|
class ListAddonsResponseTypeDef(TypedDict):
|
|
906
|
-
addons:
|
|
937
|
+
addons: List[str]
|
|
907
938
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
908
939
|
nextToken: NotRequired[str]
|
|
909
940
|
|
|
910
941
|
class ListClustersResponseTypeDef(TypedDict):
|
|
911
|
-
clusters:
|
|
942
|
+
clusters: List[str]
|
|
912
943
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
913
944
|
nextToken: NotRequired[str]
|
|
914
945
|
|
|
915
946
|
class ListFargateProfilesResponseTypeDef(TypedDict):
|
|
916
|
-
fargateProfileNames:
|
|
947
|
+
fargateProfileNames: List[str]
|
|
917
948
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
918
949
|
nextToken: NotRequired[str]
|
|
919
950
|
|
|
920
951
|
class ListNodegroupsResponseTypeDef(TypedDict):
|
|
921
|
-
nodegroups:
|
|
952
|
+
nodegroups: List[str]
|
|
922
953
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
923
954
|
nextToken: NotRequired[str]
|
|
924
955
|
|
|
925
956
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
926
|
-
tags:
|
|
957
|
+
tags: Dict[str, str]
|
|
927
958
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
928
959
|
|
|
929
960
|
class ListUpdatesResponseTypeDef(TypedDict):
|
|
930
|
-
updateIds:
|
|
961
|
+
updateIds: List[str]
|
|
931
962
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
932
963
|
nextToken: NotRequired[str]
|
|
933
964
|
|
|
@@ -942,7 +973,7 @@ class AssociateIdentityProviderConfigRequestRequestTypeDef(TypedDict):
|
|
|
942
973
|
clientRequestToken: NotRequired[str]
|
|
943
974
|
|
|
944
975
|
class NodegroupResourcesTypeDef(TypedDict):
|
|
945
|
-
autoScalingGroups: NotRequired[
|
|
976
|
+
autoScalingGroups: NotRequired[List[AutoScalingGroupTypeDef]]
|
|
946
977
|
remoteAccessSecurityGroup: NotRequired[str]
|
|
947
978
|
|
|
948
979
|
class StorageConfigRequestTypeDef(TypedDict):
|
|
@@ -956,10 +987,15 @@ class DeprecationDetailTypeDef(TypedDict):
|
|
|
956
987
|
replacedWith: NotRequired[str]
|
|
957
988
|
stopServingVersion: NotRequired[str]
|
|
958
989
|
startServingReplacementVersion: NotRequired[str]
|
|
959
|
-
clientStats: NotRequired[
|
|
990
|
+
clientStats: NotRequired[List[ClientStatTypeDef]]
|
|
960
991
|
|
|
961
992
|
class ClusterHealthTypeDef(TypedDict):
|
|
962
|
-
issues: NotRequired[
|
|
993
|
+
issues: NotRequired[List[ClusterIssueTypeDef]]
|
|
994
|
+
|
|
995
|
+
class DescribeClusterVersionsResponseTypeDef(TypedDict):
|
|
996
|
+
clusterVersions: List[ClusterVersionInformationTypeDef]
|
|
997
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
998
|
+
nextToken: NotRequired[str]
|
|
963
999
|
|
|
964
1000
|
class RegisterClusterRequestRequestTypeDef(TypedDict):
|
|
965
1001
|
name: str
|
|
@@ -973,7 +1009,7 @@ class OutpostConfigRequestTypeDef(TypedDict):
|
|
|
973
1009
|
controlPlanePlacement: NotRequired[ControlPlanePlacementRequestTypeDef]
|
|
974
1010
|
|
|
975
1011
|
class OutpostConfigResponseTypeDef(TypedDict):
|
|
976
|
-
outpostArns:
|
|
1012
|
+
outpostArns: List[str]
|
|
977
1013
|
controlPlaneInstanceType: str
|
|
978
1014
|
controlPlanePlacement: NotRequired[ControlPlanePlacementResponseTypeDef]
|
|
979
1015
|
|
|
@@ -999,8 +1035,8 @@ EksAnywhereSubscriptionTypeDef = TypedDict(
|
|
|
999
1035
|
"term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
|
|
1000
1036
|
"status": NotRequired[str],
|
|
1001
1037
|
"autoRenew": NotRequired[bool],
|
|
1002
|
-
"licenseArns": NotRequired[
|
|
1003
|
-
"tags": NotRequired[
|
|
1038
|
+
"licenseArns": NotRequired[List[str]],
|
|
1039
|
+
"tags": NotRequired[Dict[str, str]],
|
|
1004
1040
|
},
|
|
1005
1041
|
)
|
|
1006
1042
|
|
|
@@ -1085,6 +1121,14 @@ DescribeAddonVersionsRequestPaginateTypeDef = TypedDict(
|
|
|
1085
1121
|
},
|
|
1086
1122
|
)
|
|
1087
1123
|
|
|
1124
|
+
class DescribeClusterVersionsRequestPaginateTypeDef(TypedDict):
|
|
1125
|
+
clusterType: NotRequired[str]
|
|
1126
|
+
defaultOnly: NotRequired[bool]
|
|
1127
|
+
includeAll: NotRequired[bool]
|
|
1128
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
1129
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
1130
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1131
|
+
|
|
1088
1132
|
class ListAccessEntriesRequestPaginateTypeDef(TypedDict):
|
|
1089
1133
|
clusterName: str
|
|
1090
1134
|
associatedPolicyArn: NotRequired[str]
|
|
@@ -1144,7 +1188,7 @@ class DisassociateIdentityProviderConfigRequestRequestTypeDef(TypedDict):
|
|
|
1144
1188
|
clientRequestToken: NotRequired[str]
|
|
1145
1189
|
|
|
1146
1190
|
class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
|
|
1147
|
-
identityProviderConfigs:
|
|
1191
|
+
identityProviderConfigs: List[IdentityProviderConfigTypeDef]
|
|
1148
1192
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1149
1193
|
nextToken: NotRequired[str]
|
|
1150
1194
|
|
|
@@ -1160,7 +1204,7 @@ class KubernetesNetworkConfigResponseTypeDef(TypedDict):
|
|
|
1160
1204
|
elasticLoadBalancing: NotRequired[ElasticLoadBalancingTypeDef]
|
|
1161
1205
|
|
|
1162
1206
|
class EncryptionConfigOutputTypeDef(TypedDict):
|
|
1163
|
-
resources: NotRequired[
|
|
1207
|
+
resources: NotRequired[List[str]]
|
|
1164
1208
|
provider: NotRequired[ProviderTypeDef]
|
|
1165
1209
|
|
|
1166
1210
|
class EncryptionConfigTypeDef(TypedDict):
|
|
@@ -1168,7 +1212,7 @@ class EncryptionConfigTypeDef(TypedDict):
|
|
|
1168
1212
|
provider: NotRequired[ProviderTypeDef]
|
|
1169
1213
|
|
|
1170
1214
|
class FargateProfileHealthTypeDef(TypedDict):
|
|
1171
|
-
issues: NotRequired[
|
|
1215
|
+
issues: NotRequired[List[FargateProfileIssueTypeDef]]
|
|
1172
1216
|
|
|
1173
1217
|
FargateProfileSelectorUnionTypeDef = Union[
|
|
1174
1218
|
FargateProfileSelectorTypeDef, FargateProfileSelectorOutputTypeDef
|
|
@@ -1217,21 +1261,21 @@ ListInsightsRequestRequestTypeDef = TypedDict(
|
|
|
1217
1261
|
)
|
|
1218
1262
|
|
|
1219
1263
|
class NodegroupHealthTypeDef(TypedDict):
|
|
1220
|
-
issues: NotRequired[
|
|
1264
|
+
issues: NotRequired[List[IssueTypeDef]]
|
|
1221
1265
|
|
|
1222
1266
|
class ListPodIdentityAssociationsResponseTypeDef(TypedDict):
|
|
1223
|
-
associations:
|
|
1267
|
+
associations: List[PodIdentityAssociationSummaryTypeDef]
|
|
1224
1268
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1225
1269
|
nextToken: NotRequired[str]
|
|
1226
1270
|
|
|
1227
1271
|
class LoggingOutputTypeDef(TypedDict):
|
|
1228
|
-
clusterLogging: NotRequired[
|
|
1272
|
+
clusterLogging: NotRequired[List[LogSetupOutputTypeDef]]
|
|
1229
1273
|
|
|
1230
1274
|
LogSetupUnionTypeDef = Union[LogSetupTypeDef, LogSetupOutputTypeDef]
|
|
1231
1275
|
|
|
1232
1276
|
class RemoteNetworkConfigResponseTypeDef(TypedDict):
|
|
1233
|
-
remoteNodeNetworks: NotRequired[
|
|
1234
|
-
remotePodNetworks: NotRequired[
|
|
1277
|
+
remoteNodeNetworks: NotRequired[List[RemoteNodeNetworkOutputTypeDef]]
|
|
1278
|
+
remotePodNetworks: NotRequired[List[RemotePodNetworkOutputTypeDef]]
|
|
1235
1279
|
|
|
1236
1280
|
RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
|
|
1237
1281
|
RemotePodNetworkUnionTypeDef = Union[RemotePodNetworkTypeDef, RemotePodNetworkOutputTypeDef]
|
|
@@ -1241,9 +1285,9 @@ UpdateTypeDef = TypedDict(
|
|
|
1241
1285
|
"id": NotRequired[str],
|
|
1242
1286
|
"status": NotRequired[UpdateStatusType],
|
|
1243
1287
|
"type": NotRequired[UpdateTypeType],
|
|
1244
|
-
"params": NotRequired[
|
|
1288
|
+
"params": NotRequired[List[UpdateParamTypeDef]],
|
|
1245
1289
|
"createdAt": NotRequired[datetime],
|
|
1246
|
-
"errors": NotRequired[
|
|
1290
|
+
"errors": NotRequired[List[ErrorDetailTypeDef]],
|
|
1247
1291
|
},
|
|
1248
1292
|
)
|
|
1249
1293
|
|
|
@@ -1256,7 +1300,7 @@ class AssociateAccessPolicyResponseTypeDef(TypedDict):
|
|
|
1256
1300
|
class ListAssociatedAccessPoliciesResponseTypeDef(TypedDict):
|
|
1257
1301
|
clusterName: str
|
|
1258
1302
|
principalArn: str
|
|
1259
|
-
associatedAccessPolicies:
|
|
1303
|
+
associatedAccessPolicies: List[AssociatedAccessPolicyTypeDef]
|
|
1260
1304
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1261
1305
|
nextToken: NotRequired[str]
|
|
1262
1306
|
|
|
@@ -1270,19 +1314,19 @@ class AddonTypeDef(TypedDict):
|
|
|
1270
1314
|
createdAt: NotRequired[datetime]
|
|
1271
1315
|
modifiedAt: NotRequired[datetime]
|
|
1272
1316
|
serviceAccountRoleArn: NotRequired[str]
|
|
1273
|
-
tags: NotRequired[
|
|
1317
|
+
tags: NotRequired[Dict[str, str]]
|
|
1274
1318
|
publisher: NotRequired[str]
|
|
1275
1319
|
owner: NotRequired[str]
|
|
1276
1320
|
marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
|
|
1277
1321
|
configurationValues: NotRequired[str]
|
|
1278
|
-
podIdentityAssociations: NotRequired[
|
|
1322
|
+
podIdentityAssociations: NotRequired[List[str]]
|
|
1279
1323
|
|
|
1280
1324
|
AddonInfoTypeDef = TypedDict(
|
|
1281
1325
|
"AddonInfoTypeDef",
|
|
1282
1326
|
{
|
|
1283
1327
|
"addonName": NotRequired[str],
|
|
1284
1328
|
"type": NotRequired[str],
|
|
1285
|
-
"addonVersions": NotRequired[
|
|
1329
|
+
"addonVersions": NotRequired[List[AddonVersionInfoTypeDef]],
|
|
1286
1330
|
"publisher": NotRequired[str],
|
|
1287
1331
|
"owner": NotRequired[str],
|
|
1288
1332
|
"marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
|
|
@@ -1290,8 +1334,8 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1290
1334
|
)
|
|
1291
1335
|
|
|
1292
1336
|
class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
1293
|
-
deprecationDetails: NotRequired[
|
|
1294
|
-
addonCompatibilityDetails: NotRequired[
|
|
1337
|
+
deprecationDetails: NotRequired[List[DeprecationDetailTypeDef]]
|
|
1338
|
+
addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
|
|
1295
1339
|
|
|
1296
1340
|
class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
1297
1341
|
subscription: EksAnywhereSubscriptionTypeDef
|
|
@@ -1306,7 +1350,7 @@ class DescribeEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
|
1306
1350
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1307
1351
|
|
|
1308
1352
|
class ListEksAnywhereSubscriptionsResponseTypeDef(TypedDict):
|
|
1309
|
-
subscriptions:
|
|
1353
|
+
subscriptions: List[EksAnywhereSubscriptionTypeDef]
|
|
1310
1354
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1311
1355
|
nextToken: NotRequired[str]
|
|
1312
1356
|
|
|
@@ -1332,10 +1376,10 @@ class FargateProfileTypeDef(TypedDict):
|
|
|
1332
1376
|
clusterName: NotRequired[str]
|
|
1333
1377
|
createdAt: NotRequired[datetime]
|
|
1334
1378
|
podExecutionRoleArn: NotRequired[str]
|
|
1335
|
-
subnets: NotRequired[
|
|
1336
|
-
selectors: NotRequired[
|
|
1379
|
+
subnets: NotRequired[List[str]]
|
|
1380
|
+
selectors: NotRequired[List[FargateProfileSelectorOutputTypeDef]]
|
|
1337
1381
|
status: NotRequired[FargateProfileStatusType]
|
|
1338
|
-
tags: NotRequired[
|
|
1382
|
+
tags: NotRequired[Dict[str, str]]
|
|
1339
1383
|
health: NotRequired[FargateProfileHealthTypeDef]
|
|
1340
1384
|
|
|
1341
1385
|
class CreateFargateProfileRequestRequestTypeDef(TypedDict):
|
|
@@ -1352,7 +1396,7 @@ class DescribeIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
|
1352
1396
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1353
1397
|
|
|
1354
1398
|
class ListInsightsResponseTypeDef(TypedDict):
|
|
1355
|
-
insights:
|
|
1399
|
+
insights: List[InsightSummaryTypeDef]
|
|
1356
1400
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1357
1401
|
nextToken: NotRequired[str]
|
|
1358
1402
|
|
|
@@ -1367,20 +1411,20 @@ class NodegroupTypeDef(TypedDict):
|
|
|
1367
1411
|
status: NotRequired[NodegroupStatusType]
|
|
1368
1412
|
capacityType: NotRequired[CapacityTypesType]
|
|
1369
1413
|
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1370
|
-
instanceTypes: NotRequired[
|
|
1371
|
-
subnets: NotRequired[
|
|
1414
|
+
instanceTypes: NotRequired[List[str]]
|
|
1415
|
+
subnets: NotRequired[List[str]]
|
|
1372
1416
|
remoteAccess: NotRequired[RemoteAccessConfigOutputTypeDef]
|
|
1373
1417
|
amiType: NotRequired[AMITypesType]
|
|
1374
1418
|
nodeRole: NotRequired[str]
|
|
1375
|
-
labels: NotRequired[
|
|
1376
|
-
taints: NotRequired[
|
|
1419
|
+
labels: NotRequired[Dict[str, str]]
|
|
1420
|
+
taints: NotRequired[List[TaintTypeDef]]
|
|
1377
1421
|
resources: NotRequired[NodegroupResourcesTypeDef]
|
|
1378
1422
|
diskSize: NotRequired[int]
|
|
1379
1423
|
health: NotRequired[NodegroupHealthTypeDef]
|
|
1380
1424
|
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1381
1425
|
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1382
1426
|
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1383
|
-
tags: NotRequired[
|
|
1427
|
+
tags: NotRequired[Dict[str, str]]
|
|
1384
1428
|
|
|
1385
1429
|
class LoggingTypeDef(TypedDict):
|
|
1386
1430
|
clusterLogging: NotRequired[Sequence[LogSetupUnionTypeDef]]
|
|
@@ -1402,8 +1446,8 @@ ClusterTypeDef = TypedDict(
|
|
|
1402
1446
|
"certificateAuthority": NotRequired[CertificateTypeDef],
|
|
1403
1447
|
"clientRequestToken": NotRequired[str],
|
|
1404
1448
|
"platformVersion": NotRequired[str],
|
|
1405
|
-
"tags": NotRequired[
|
|
1406
|
-
"encryptionConfig": NotRequired[
|
|
1449
|
+
"tags": NotRequired[Dict[str, str]],
|
|
1450
|
+
"encryptionConfig": NotRequired[List[EncryptionConfigOutputTypeDef]],
|
|
1407
1451
|
"connectorConfig": NotRequired[ConnectorConfigResponseTypeDef],
|
|
1408
1452
|
"id": NotRequired[str],
|
|
1409
1453
|
"health": NotRequired[ClusterHealthTypeDef],
|
|
@@ -1427,7 +1471,7 @@ class AssociateEncryptionConfigResponseTypeDef(TypedDict):
|
|
|
1427
1471
|
|
|
1428
1472
|
class AssociateIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
1429
1473
|
update: UpdateTypeDef
|
|
1430
|
-
tags:
|
|
1474
|
+
tags: Dict[str, str]
|
|
1431
1475
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1432
1476
|
|
|
1433
1477
|
class DescribeUpdateResponseTypeDef(TypedDict):
|
|
@@ -1471,7 +1515,7 @@ class DescribeAddonResponseTypeDef(TypedDict):
|
|
|
1471
1515
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1472
1516
|
|
|
1473
1517
|
class DescribeAddonVersionsResponseTypeDef(TypedDict):
|
|
1474
|
-
addons:
|
|
1518
|
+
addons: List[AddonInfoTypeDef]
|
|
1475
1519
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1476
1520
|
nextToken: NotRequired[str]
|
|
1477
1521
|
|
|
@@ -1487,8 +1531,8 @@ InsightTypeDef = TypedDict(
|
|
|
1487
1531
|
"description": NotRequired[str],
|
|
1488
1532
|
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1489
1533
|
"recommendation": NotRequired[str],
|
|
1490
|
-
"additionalInfo": NotRequired[
|
|
1491
|
-
"resources": NotRequired[
|
|
1534
|
+
"additionalInfo": NotRequired[Dict[str, str]],
|
|
1535
|
+
"resources": NotRequired[List[InsightResourceDetailTypeDef]],
|
|
1492
1536
|
"categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
|
|
1493
1537
|
},
|
|
1494
1538
|
)
|
mypy_boto3_eks/version.py
CHANGED
mypy_boto3_eks/waiter.py
CHANGED
mypy_boto3_eks/waiter.pyi
CHANGED