mypy-boto3-eks 1.40.59__py3-none-any.whl → 1.41.2__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/__main__.py +4 -4
- mypy_boto3_eks/client.py +21 -26
- mypy_boto3_eks/client.pyi +21 -26
- mypy_boto3_eks/literals.py +9 -7
- mypy_boto3_eks/literals.pyi +9 -7
- mypy_boto3_eks/type_defs.py +88 -84
- mypy_boto3_eks/type_defs.pyi +87 -84
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.40.59.dist-info → mypy_boto3_eks-1.41.2.dist-info}/METADATA +11 -25
- mypy_boto3_eks-1.41.2.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.40.59.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.40.59.dist-info → mypy_boto3_eks-1.41.2.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.40.59.dist-info → mypy_boto3_eks-1.41.2.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_eks-1.40.59.dist-info → mypy_boto3_eks-1.41.2.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/type_defs.pyi
CHANGED
|
@@ -17,6 +17,7 @@ Usage::
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
|
+
from collections.abc import Mapping, Sequence
|
|
20
21
|
from datetime import datetime
|
|
21
22
|
from typing import Union
|
|
22
23
|
|
|
@@ -44,6 +45,7 @@ from .literals import (
|
|
|
44
45
|
NodegroupIssueCodeType,
|
|
45
46
|
NodegroupStatusType,
|
|
46
47
|
NodegroupUpdateStrategiesType,
|
|
48
|
+
ProvisionedControlPlaneTierType,
|
|
47
49
|
RepairActionType,
|
|
48
50
|
ResolveConflictsType,
|
|
49
51
|
SupportTypeType,
|
|
@@ -54,12 +56,6 @@ from .literals import (
|
|
|
54
56
|
VersionStatusType,
|
|
55
57
|
)
|
|
56
58
|
|
|
57
|
-
if sys.version_info >= (3, 9):
|
|
58
|
-
from builtins import dict as Dict
|
|
59
|
-
from builtins import list as List
|
|
60
|
-
from collections.abc import Mapping, Sequence
|
|
61
|
-
else:
|
|
62
|
-
from typing import Dict, List, Mapping, Sequence
|
|
63
59
|
if sys.version_info >= (3, 12):
|
|
64
60
|
from typing import Literal, NotRequired, TypedDict
|
|
65
61
|
else:
|
|
@@ -104,6 +100,7 @@ __all__ = (
|
|
|
104
100
|
"ConnectorConfigResponseTypeDef",
|
|
105
101
|
"ControlPlanePlacementRequestTypeDef",
|
|
106
102
|
"ControlPlanePlacementResponseTypeDef",
|
|
103
|
+
"ControlPlaneScalingConfigTypeDef",
|
|
107
104
|
"CreateAccessConfigRequestTypeDef",
|
|
108
105
|
"CreateAccessEntryRequestTypeDef",
|
|
109
106
|
"CreateAccessEntryResponseTypeDef",
|
|
@@ -325,11 +322,11 @@ AccessEntryTypeDef = TypedDict(
|
|
|
325
322
|
{
|
|
326
323
|
"clusterName": NotRequired[str],
|
|
327
324
|
"principalArn": NotRequired[str],
|
|
328
|
-
"kubernetesGroups": NotRequired[
|
|
325
|
+
"kubernetesGroups": NotRequired[list[str]],
|
|
329
326
|
"accessEntryArn": NotRequired[str],
|
|
330
327
|
"createdAt": NotRequired[datetime],
|
|
331
328
|
"modifiedAt": NotRequired[datetime],
|
|
332
|
-
"tags": NotRequired[
|
|
329
|
+
"tags": NotRequired[dict[str, str]],
|
|
333
330
|
"username": NotRequired[str],
|
|
334
331
|
"type": NotRequired[str],
|
|
335
332
|
},
|
|
@@ -343,7 +340,7 @@ AccessScopeOutputTypeDef = TypedDict(
|
|
|
343
340
|
"AccessScopeOutputTypeDef",
|
|
344
341
|
{
|
|
345
342
|
"type": NotRequired[AccessScopeTypeType],
|
|
346
|
-
"namespaces": NotRequired[
|
|
343
|
+
"namespaces": NotRequired[list[str]],
|
|
347
344
|
},
|
|
348
345
|
)
|
|
349
346
|
AccessScopeTypeDef = TypedDict(
|
|
@@ -356,12 +353,12 @@ AccessScopeTypeDef = TypedDict(
|
|
|
356
353
|
|
|
357
354
|
class AddonCompatibilityDetailTypeDef(TypedDict):
|
|
358
355
|
name: NotRequired[str]
|
|
359
|
-
compatibleVersions: NotRequired[
|
|
356
|
+
compatibleVersions: NotRequired[list[str]]
|
|
360
357
|
|
|
361
358
|
class AddonIssueTypeDef(TypedDict):
|
|
362
359
|
code: NotRequired[AddonIssueCodeType]
|
|
363
360
|
message: NotRequired[str]
|
|
364
|
-
resourceIds: NotRequired[
|
|
361
|
+
resourceIds: NotRequired[list[str]]
|
|
365
362
|
|
|
366
363
|
class MarketplaceInformationTypeDef(TypedDict):
|
|
367
364
|
productId: NotRequired[str]
|
|
@@ -379,17 +376,17 @@ class AddonPodIdentityAssociationsTypeDef(TypedDict):
|
|
|
379
376
|
|
|
380
377
|
class AddonPodIdentityConfigurationTypeDef(TypedDict):
|
|
381
378
|
serviceAccount: NotRequired[str]
|
|
382
|
-
recommendedManagedPolicies: NotRequired[
|
|
379
|
+
recommendedManagedPolicies: NotRequired[list[str]]
|
|
383
380
|
|
|
384
381
|
class CompatibilityTypeDef(TypedDict):
|
|
385
382
|
clusterVersion: NotRequired[str]
|
|
386
|
-
platformVersions: NotRequired[
|
|
383
|
+
platformVersions: NotRequired[list[str]]
|
|
387
384
|
defaultVersion: NotRequired[bool]
|
|
388
385
|
|
|
389
386
|
class ResponseMetadataTypeDef(TypedDict):
|
|
390
387
|
RequestId: str
|
|
391
388
|
HTTPStatusCode: int
|
|
392
|
-
HTTPHeaders:
|
|
389
|
+
HTTPHeaders: dict[str, str]
|
|
393
390
|
RetryAttempts: int
|
|
394
391
|
HostId: NotRequired[str]
|
|
395
392
|
|
|
@@ -420,11 +417,11 @@ class ClientStatTypeDef(TypedDict):
|
|
|
420
417
|
class ClusterIssueTypeDef(TypedDict):
|
|
421
418
|
code: NotRequired[ClusterIssueCodeType]
|
|
422
419
|
message: NotRequired[str]
|
|
423
|
-
resourceIds: NotRequired[
|
|
420
|
+
resourceIds: NotRequired[list[str]]
|
|
424
421
|
|
|
425
422
|
class ComputeConfigResponseTypeDef(TypedDict):
|
|
426
423
|
enabled: NotRequired[bool]
|
|
427
|
-
nodePools: NotRequired[
|
|
424
|
+
nodePools: NotRequired[list[str]]
|
|
428
425
|
nodeRoleArn: NotRequired[str]
|
|
429
426
|
|
|
430
427
|
class ConnectorConfigResponseTypeDef(TypedDict):
|
|
@@ -434,17 +431,20 @@ class ConnectorConfigResponseTypeDef(TypedDict):
|
|
|
434
431
|
provider: NotRequired[str]
|
|
435
432
|
roleArn: NotRequired[str]
|
|
436
433
|
|
|
434
|
+
class ControlPlaneScalingConfigTypeDef(TypedDict):
|
|
435
|
+
tier: NotRequired[ProvisionedControlPlaneTierType]
|
|
436
|
+
|
|
437
437
|
class UpgradePolicyResponseTypeDef(TypedDict):
|
|
438
438
|
supportType: NotRequired[SupportTypeType]
|
|
439
439
|
|
|
440
440
|
class VpcConfigResponseTypeDef(TypedDict):
|
|
441
|
-
subnetIds: NotRequired[
|
|
442
|
-
securityGroupIds: NotRequired[
|
|
441
|
+
subnetIds: NotRequired[list[str]]
|
|
442
|
+
securityGroupIds: NotRequired[list[str]]
|
|
443
443
|
clusterSecurityGroupId: NotRequired[str]
|
|
444
444
|
vpcId: NotRequired[str]
|
|
445
445
|
endpointPublicAccess: NotRequired[bool]
|
|
446
446
|
endpointPrivateAccess: NotRequired[bool]
|
|
447
|
-
publicAccessCidrs: NotRequired[
|
|
447
|
+
publicAccessCidrs: NotRequired[list[str]]
|
|
448
448
|
|
|
449
449
|
class ZonalShiftConfigResponseTypeDef(TypedDict):
|
|
450
450
|
enabled: NotRequired[bool]
|
|
@@ -551,7 +551,7 @@ class PodIdentityAssociationTypeDef(TypedDict):
|
|
|
551
551
|
roleArn: NotRequired[str]
|
|
552
552
|
associationArn: NotRequired[str]
|
|
553
553
|
associationId: NotRequired[str]
|
|
554
|
-
tags: NotRequired[
|
|
554
|
+
tags: NotRequired[dict[str, str]]
|
|
555
555
|
createdAt: NotRequired[datetime]
|
|
556
556
|
modifiedAt: NotRequired[datetime]
|
|
557
557
|
ownerArn: NotRequired[str]
|
|
@@ -705,16 +705,16 @@ class ProviderTypeDef(TypedDict):
|
|
|
705
705
|
class ErrorDetailTypeDef(TypedDict):
|
|
706
706
|
errorCode: NotRequired[ErrorCodeType]
|
|
707
707
|
errorMessage: NotRequired[str]
|
|
708
|
-
resourceIds: NotRequired[
|
|
708
|
+
resourceIds: NotRequired[list[str]]
|
|
709
709
|
|
|
710
710
|
class FargateProfileIssueTypeDef(TypedDict):
|
|
711
711
|
code: NotRequired[FargateProfileIssueCodeType]
|
|
712
712
|
message: NotRequired[str]
|
|
713
|
-
resourceIds: NotRequired[
|
|
713
|
+
resourceIds: NotRequired[list[str]]
|
|
714
714
|
|
|
715
715
|
class FargateProfileSelectorOutputTypeDef(TypedDict):
|
|
716
716
|
namespace: NotRequired[str]
|
|
717
|
-
labels: NotRequired[
|
|
717
|
+
labels: NotRequired[dict[str, str]]
|
|
718
718
|
|
|
719
719
|
class FargateProfileSelectorTypeDef(TypedDict):
|
|
720
720
|
namespace: NotRequired[str]
|
|
@@ -730,8 +730,8 @@ class OidcIdentityProviderConfigTypeDef(TypedDict):
|
|
|
730
730
|
usernamePrefix: NotRequired[str]
|
|
731
731
|
groupsClaim: NotRequired[str]
|
|
732
732
|
groupsPrefix: NotRequired[str]
|
|
733
|
-
requiredClaims: NotRequired[
|
|
734
|
-
tags: NotRequired[
|
|
733
|
+
requiredClaims: NotRequired[dict[str, str]]
|
|
734
|
+
tags: NotRequired[dict[str, str]]
|
|
735
735
|
status: NotRequired[ConfigStatusType]
|
|
736
736
|
|
|
737
737
|
class OIDCTypeDef(TypedDict):
|
|
@@ -749,7 +749,7 @@ class InsightsFilterTypeDef(TypedDict):
|
|
|
749
749
|
class IssueTypeDef(TypedDict):
|
|
750
750
|
code: NotRequired[NodegroupIssueCodeType]
|
|
751
751
|
message: NotRequired[str]
|
|
752
|
-
resourceIds: NotRequired[
|
|
752
|
+
resourceIds: NotRequired[list[str]]
|
|
753
753
|
|
|
754
754
|
class ListAccessEntriesRequestTypeDef(TypedDict):
|
|
755
755
|
clusterName: str
|
|
@@ -825,7 +825,7 @@ class ListUpdatesRequestTypeDef(TypedDict):
|
|
|
825
825
|
LogSetupOutputTypeDef = TypedDict(
|
|
826
826
|
"LogSetupOutputTypeDef",
|
|
827
827
|
{
|
|
828
|
-
"types": NotRequired[
|
|
828
|
+
"types": NotRequired[list[LogTypeType]],
|
|
829
829
|
"enabled": NotRequired[bool],
|
|
830
830
|
},
|
|
831
831
|
)
|
|
@@ -845,17 +845,17 @@ class NodeRepairConfigOverridesTypeDef(TypedDict):
|
|
|
845
845
|
|
|
846
846
|
class RemoteAccessConfigOutputTypeDef(TypedDict):
|
|
847
847
|
ec2SshKey: NotRequired[str]
|
|
848
|
-
sourceSecurityGroups: NotRequired[
|
|
848
|
+
sourceSecurityGroups: NotRequired[list[str]]
|
|
849
849
|
|
|
850
850
|
class RemoteAccessConfigTypeDef(TypedDict):
|
|
851
851
|
ec2SshKey: NotRequired[str]
|
|
852
852
|
sourceSecurityGroups: NotRequired[Sequence[str]]
|
|
853
853
|
|
|
854
854
|
class RemoteNodeNetworkOutputTypeDef(TypedDict):
|
|
855
|
-
cidrs: NotRequired[
|
|
855
|
+
cidrs: NotRequired[list[str]]
|
|
856
856
|
|
|
857
857
|
class RemotePodNetworkOutputTypeDef(TypedDict):
|
|
858
|
-
cidrs: NotRequired[
|
|
858
|
+
cidrs: NotRequired[list[str]]
|
|
859
859
|
|
|
860
860
|
class RemoteNodeNetworkTypeDef(TypedDict):
|
|
861
861
|
cidrs: NotRequired[Sequence[str]]
|
|
@@ -928,7 +928,7 @@ class AssociatedAccessPolicyTypeDef(TypedDict):
|
|
|
928
928
|
AccessScopeUnionTypeDef = Union[AccessScopeTypeDef, AccessScopeOutputTypeDef]
|
|
929
929
|
|
|
930
930
|
class AddonHealthTypeDef(TypedDict):
|
|
931
|
-
issues: NotRequired[
|
|
931
|
+
issues: NotRequired[list[AddonIssueTypeDef]]
|
|
932
932
|
|
|
933
933
|
class CreateAddonRequestTypeDef(TypedDict):
|
|
934
934
|
clusterName: str
|
|
@@ -954,9 +954,9 @@ class UpdateAddonRequestTypeDef(TypedDict):
|
|
|
954
954
|
|
|
955
955
|
class AddonVersionInfoTypeDef(TypedDict):
|
|
956
956
|
addonVersion: NotRequired[str]
|
|
957
|
-
architecture: NotRequired[
|
|
958
|
-
computeTypes: NotRequired[
|
|
959
|
-
compatibilities: NotRequired[
|
|
957
|
+
architecture: NotRequired[list[str]]
|
|
958
|
+
computeTypes: NotRequired[list[str]]
|
|
959
|
+
compatibilities: NotRequired[list[CompatibilityTypeDef]]
|
|
960
960
|
requiresConfiguration: NotRequired[bool]
|
|
961
961
|
requiresIamPermissions: NotRequired[bool]
|
|
962
962
|
|
|
@@ -972,7 +972,7 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
|
|
|
972
972
|
addonName: str
|
|
973
973
|
addonVersion: str
|
|
974
974
|
configurationSchema: str
|
|
975
|
-
podIdentityConfiguration:
|
|
975
|
+
podIdentityConfiguration: list[AddonPodIdentityConfigurationTypeDef]
|
|
976
976
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
977
977
|
|
|
978
978
|
class DescribeInsightsRefreshResponseTypeDef(TypedDict):
|
|
@@ -983,41 +983,41 @@ class DescribeInsightsRefreshResponseTypeDef(TypedDict):
|
|
|
983
983
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
984
984
|
|
|
985
985
|
class ListAccessEntriesResponseTypeDef(TypedDict):
|
|
986
|
-
accessEntries:
|
|
986
|
+
accessEntries: list[str]
|
|
987
987
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
988
988
|
nextToken: NotRequired[str]
|
|
989
989
|
|
|
990
990
|
class ListAccessPoliciesResponseTypeDef(TypedDict):
|
|
991
|
-
accessPolicies:
|
|
991
|
+
accessPolicies: list[AccessPolicyTypeDef]
|
|
992
992
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
993
993
|
nextToken: NotRequired[str]
|
|
994
994
|
|
|
995
995
|
class ListAddonsResponseTypeDef(TypedDict):
|
|
996
|
-
addons:
|
|
996
|
+
addons: list[str]
|
|
997
997
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
998
998
|
nextToken: NotRequired[str]
|
|
999
999
|
|
|
1000
1000
|
class ListClustersResponseTypeDef(TypedDict):
|
|
1001
|
-
clusters:
|
|
1001
|
+
clusters: list[str]
|
|
1002
1002
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1003
1003
|
nextToken: NotRequired[str]
|
|
1004
1004
|
|
|
1005
1005
|
class ListFargateProfilesResponseTypeDef(TypedDict):
|
|
1006
|
-
fargateProfileNames:
|
|
1006
|
+
fargateProfileNames: list[str]
|
|
1007
1007
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1008
1008
|
nextToken: NotRequired[str]
|
|
1009
1009
|
|
|
1010
1010
|
class ListNodegroupsResponseTypeDef(TypedDict):
|
|
1011
|
-
nodegroups:
|
|
1011
|
+
nodegroups: list[str]
|
|
1012
1012
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1013
1013
|
nextToken: NotRequired[str]
|
|
1014
1014
|
|
|
1015
1015
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
1016
|
-
tags:
|
|
1016
|
+
tags: dict[str, str]
|
|
1017
1017
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1018
1018
|
|
|
1019
1019
|
class ListUpdatesResponseTypeDef(TypedDict):
|
|
1020
|
-
updateIds:
|
|
1020
|
+
updateIds: list[str]
|
|
1021
1021
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1022
1022
|
nextToken: NotRequired[str]
|
|
1023
1023
|
|
|
@@ -1037,7 +1037,7 @@ class AssociateIdentityProviderConfigRequestTypeDef(TypedDict):
|
|
|
1037
1037
|
clientRequestToken: NotRequired[str]
|
|
1038
1038
|
|
|
1039
1039
|
class NodegroupResourcesTypeDef(TypedDict):
|
|
1040
|
-
autoScalingGroups: NotRequired[
|
|
1040
|
+
autoScalingGroups: NotRequired[list[AutoScalingGroupTypeDef]]
|
|
1041
1041
|
remoteAccessSecurityGroup: NotRequired[str]
|
|
1042
1042
|
|
|
1043
1043
|
class StorageConfigRequestTypeDef(TypedDict):
|
|
@@ -1051,13 +1051,13 @@ class DeprecationDetailTypeDef(TypedDict):
|
|
|
1051
1051
|
replacedWith: NotRequired[str]
|
|
1052
1052
|
stopServingVersion: NotRequired[str]
|
|
1053
1053
|
startServingReplacementVersion: NotRequired[str]
|
|
1054
|
-
clientStats: NotRequired[
|
|
1054
|
+
clientStats: NotRequired[list[ClientStatTypeDef]]
|
|
1055
1055
|
|
|
1056
1056
|
class ClusterHealthTypeDef(TypedDict):
|
|
1057
|
-
issues: NotRequired[
|
|
1057
|
+
issues: NotRequired[list[ClusterIssueTypeDef]]
|
|
1058
1058
|
|
|
1059
1059
|
class DescribeClusterVersionsResponseTypeDef(TypedDict):
|
|
1060
|
-
clusterVersions:
|
|
1060
|
+
clusterVersions: list[ClusterVersionInformationTypeDef]
|
|
1061
1061
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1062
1062
|
nextToken: NotRequired[str]
|
|
1063
1063
|
|
|
@@ -1073,7 +1073,7 @@ class OutpostConfigRequestTypeDef(TypedDict):
|
|
|
1073
1073
|
controlPlanePlacement: NotRequired[ControlPlanePlacementRequestTypeDef]
|
|
1074
1074
|
|
|
1075
1075
|
class OutpostConfigResponseTypeDef(TypedDict):
|
|
1076
|
-
outpostArns:
|
|
1076
|
+
outpostArns: list[str]
|
|
1077
1077
|
controlPlaneInstanceType: str
|
|
1078
1078
|
controlPlanePlacement: NotRequired[ControlPlanePlacementResponseTypeDef]
|
|
1079
1079
|
|
|
@@ -1233,7 +1233,7 @@ class DisassociateIdentityProviderConfigRequestTypeDef(TypedDict):
|
|
|
1233
1233
|
clientRequestToken: NotRequired[str]
|
|
1234
1234
|
|
|
1235
1235
|
class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
|
|
1236
|
-
identityProviderConfigs:
|
|
1236
|
+
identityProviderConfigs: list[IdentityProviderConfigTypeDef]
|
|
1237
1237
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1238
1238
|
nextToken: NotRequired[str]
|
|
1239
1239
|
|
|
@@ -1250,9 +1250,9 @@ EksAnywhereSubscriptionTypeDef = TypedDict(
|
|
|
1250
1250
|
"term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
|
|
1251
1251
|
"status": NotRequired[str],
|
|
1252
1252
|
"autoRenew": NotRequired[bool],
|
|
1253
|
-
"licenseArns": NotRequired[
|
|
1254
|
-
"licenses": NotRequired[
|
|
1255
|
-
"tags": NotRequired[
|
|
1253
|
+
"licenseArns": NotRequired[list[str]],
|
|
1254
|
+
"licenses": NotRequired[list[LicenseTypeDef]],
|
|
1255
|
+
"tags": NotRequired[dict[str, str]],
|
|
1256
1256
|
},
|
|
1257
1257
|
)
|
|
1258
1258
|
|
|
@@ -1268,7 +1268,7 @@ class KubernetesNetworkConfigResponseTypeDef(TypedDict):
|
|
|
1268
1268
|
elasticLoadBalancing: NotRequired[ElasticLoadBalancingTypeDef]
|
|
1269
1269
|
|
|
1270
1270
|
class EncryptionConfigOutputTypeDef(TypedDict):
|
|
1271
|
-
resources: NotRequired[
|
|
1271
|
+
resources: NotRequired[list[str]]
|
|
1272
1272
|
provider: NotRequired[ProviderTypeDef]
|
|
1273
1273
|
|
|
1274
1274
|
class EncryptionConfigTypeDef(TypedDict):
|
|
@@ -1276,7 +1276,7 @@ class EncryptionConfigTypeDef(TypedDict):
|
|
|
1276
1276
|
provider: NotRequired[ProviderTypeDef]
|
|
1277
1277
|
|
|
1278
1278
|
class FargateProfileHealthTypeDef(TypedDict):
|
|
1279
|
-
issues: NotRequired[
|
|
1279
|
+
issues: NotRequired[list[FargateProfileIssueTypeDef]]
|
|
1280
1280
|
|
|
1281
1281
|
FargateProfileSelectorUnionTypeDef = Union[
|
|
1282
1282
|
FargateProfileSelectorTypeDef, FargateProfileSelectorOutputTypeDef
|
|
@@ -1325,15 +1325,15 @@ ListInsightsRequestTypeDef = TypedDict(
|
|
|
1325
1325
|
)
|
|
1326
1326
|
|
|
1327
1327
|
class NodegroupHealthTypeDef(TypedDict):
|
|
1328
|
-
issues: NotRequired[
|
|
1328
|
+
issues: NotRequired[list[IssueTypeDef]]
|
|
1329
1329
|
|
|
1330
1330
|
class ListPodIdentityAssociationsResponseTypeDef(TypedDict):
|
|
1331
|
-
associations:
|
|
1331
|
+
associations: list[PodIdentityAssociationSummaryTypeDef]
|
|
1332
1332
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1333
1333
|
nextToken: NotRequired[str]
|
|
1334
1334
|
|
|
1335
1335
|
class LoggingOutputTypeDef(TypedDict):
|
|
1336
|
-
clusterLogging: NotRequired[
|
|
1336
|
+
clusterLogging: NotRequired[list[LogSetupOutputTypeDef]]
|
|
1337
1337
|
|
|
1338
1338
|
class LoggingTypeDef(TypedDict):
|
|
1339
1339
|
clusterLogging: NotRequired[Sequence[LogSetupTypeDef]]
|
|
@@ -1344,7 +1344,7 @@ class NodeRepairConfigOutputTypeDef(TypedDict):
|
|
|
1344
1344
|
maxUnhealthyNodeThresholdPercentage: NotRequired[int]
|
|
1345
1345
|
maxParallelNodesRepairedCount: NotRequired[int]
|
|
1346
1346
|
maxParallelNodesRepairedPercentage: NotRequired[int]
|
|
1347
|
-
nodeRepairConfigOverrides: NotRequired[
|
|
1347
|
+
nodeRepairConfigOverrides: NotRequired[list[NodeRepairConfigOverridesTypeDef]]
|
|
1348
1348
|
|
|
1349
1349
|
class NodeRepairConfigTypeDef(TypedDict):
|
|
1350
1350
|
enabled: NotRequired[bool]
|
|
@@ -1357,8 +1357,8 @@ class NodeRepairConfigTypeDef(TypedDict):
|
|
|
1357
1357
|
RemoteAccessConfigUnionTypeDef = Union[RemoteAccessConfigTypeDef, RemoteAccessConfigOutputTypeDef]
|
|
1358
1358
|
|
|
1359
1359
|
class RemoteNetworkConfigResponseTypeDef(TypedDict):
|
|
1360
|
-
remoteNodeNetworks: NotRequired[
|
|
1361
|
-
remotePodNetworks: NotRequired[
|
|
1360
|
+
remoteNodeNetworks: NotRequired[list[RemoteNodeNetworkOutputTypeDef]]
|
|
1361
|
+
remotePodNetworks: NotRequired[list[RemotePodNetworkOutputTypeDef]]
|
|
1362
1362
|
|
|
1363
1363
|
RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
|
|
1364
1364
|
RemotePodNetworkUnionTypeDef = Union[RemotePodNetworkTypeDef, RemotePodNetworkOutputTypeDef]
|
|
@@ -1368,9 +1368,9 @@ UpdateTypeDef = TypedDict(
|
|
|
1368
1368
|
"id": NotRequired[str],
|
|
1369
1369
|
"status": NotRequired[UpdateStatusType],
|
|
1370
1370
|
"type": NotRequired[UpdateTypeType],
|
|
1371
|
-
"params": NotRequired[
|
|
1371
|
+
"params": NotRequired[list[UpdateParamTypeDef]],
|
|
1372
1372
|
"createdAt": NotRequired[datetime],
|
|
1373
|
-
"errors": NotRequired[
|
|
1373
|
+
"errors": NotRequired[list[ErrorDetailTypeDef]],
|
|
1374
1374
|
},
|
|
1375
1375
|
)
|
|
1376
1376
|
|
|
@@ -1383,7 +1383,7 @@ class AssociateAccessPolicyResponseTypeDef(TypedDict):
|
|
|
1383
1383
|
class ListAssociatedAccessPoliciesResponseTypeDef(TypedDict):
|
|
1384
1384
|
clusterName: str
|
|
1385
1385
|
principalArn: str
|
|
1386
|
-
associatedAccessPolicies:
|
|
1386
|
+
associatedAccessPolicies: list[AssociatedAccessPolicyTypeDef]
|
|
1387
1387
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1388
1388
|
nextToken: NotRequired[str]
|
|
1389
1389
|
|
|
@@ -1403,12 +1403,12 @@ class AddonTypeDef(TypedDict):
|
|
|
1403
1403
|
createdAt: NotRequired[datetime]
|
|
1404
1404
|
modifiedAt: NotRequired[datetime]
|
|
1405
1405
|
serviceAccountRoleArn: NotRequired[str]
|
|
1406
|
-
tags: NotRequired[
|
|
1406
|
+
tags: NotRequired[dict[str, str]]
|
|
1407
1407
|
publisher: NotRequired[str]
|
|
1408
1408
|
owner: NotRequired[str]
|
|
1409
1409
|
marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
|
|
1410
1410
|
configurationValues: NotRequired[str]
|
|
1411
|
-
podIdentityAssociations: NotRequired[
|
|
1411
|
+
podIdentityAssociations: NotRequired[list[str]]
|
|
1412
1412
|
namespaceConfig: NotRequired[AddonNamespaceConfigResponseTypeDef]
|
|
1413
1413
|
|
|
1414
1414
|
AddonInfoTypeDef = TypedDict(
|
|
@@ -1416,7 +1416,7 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1416
1416
|
{
|
|
1417
1417
|
"addonName": NotRequired[str],
|
|
1418
1418
|
"type": NotRequired[str],
|
|
1419
|
-
"addonVersions": NotRequired[
|
|
1419
|
+
"addonVersions": NotRequired[list[AddonVersionInfoTypeDef]],
|
|
1420
1420
|
"publisher": NotRequired[str],
|
|
1421
1421
|
"owner": NotRequired[str],
|
|
1422
1422
|
"marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
|
|
@@ -1425,8 +1425,8 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1425
1425
|
)
|
|
1426
1426
|
|
|
1427
1427
|
class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
1428
|
-
deprecationDetails: NotRequired[
|
|
1429
|
-
addonCompatibilityDetails: NotRequired[
|
|
1428
|
+
deprecationDetails: NotRequired[list[DeprecationDetailTypeDef]]
|
|
1429
|
+
addonCompatibilityDetails: NotRequired[list[AddonCompatibilityDetailTypeDef]]
|
|
1430
1430
|
|
|
1431
1431
|
class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
1432
1432
|
subscription: EksAnywhereSubscriptionTypeDef
|
|
@@ -1441,7 +1441,7 @@ class DescribeEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
|
1441
1441
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1442
1442
|
|
|
1443
1443
|
class ListEksAnywhereSubscriptionsResponseTypeDef(TypedDict):
|
|
1444
|
-
subscriptions:
|
|
1444
|
+
subscriptions: list[EksAnywhereSubscriptionTypeDef]
|
|
1445
1445
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1446
1446
|
nextToken: NotRequired[str]
|
|
1447
1447
|
|
|
@@ -1457,10 +1457,10 @@ class FargateProfileTypeDef(TypedDict):
|
|
|
1457
1457
|
clusterName: NotRequired[str]
|
|
1458
1458
|
createdAt: NotRequired[datetime]
|
|
1459
1459
|
podExecutionRoleArn: NotRequired[str]
|
|
1460
|
-
subnets: NotRequired[
|
|
1461
|
-
selectors: NotRequired[
|
|
1460
|
+
subnets: NotRequired[list[str]]
|
|
1461
|
+
selectors: NotRequired[list[FargateProfileSelectorOutputTypeDef]]
|
|
1462
1462
|
status: NotRequired[FargateProfileStatusType]
|
|
1463
|
-
tags: NotRequired[
|
|
1463
|
+
tags: NotRequired[dict[str, str]]
|
|
1464
1464
|
health: NotRequired[FargateProfileHealthTypeDef]
|
|
1465
1465
|
|
|
1466
1466
|
class CreateFargateProfileRequestTypeDef(TypedDict):
|
|
@@ -1477,7 +1477,7 @@ class DescribeIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
|
1477
1477
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1478
1478
|
|
|
1479
1479
|
class ListInsightsResponseTypeDef(TypedDict):
|
|
1480
|
-
insights:
|
|
1480
|
+
insights: list[InsightSummaryTypeDef]
|
|
1481
1481
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1482
1482
|
nextToken: NotRequired[str]
|
|
1483
1483
|
|
|
@@ -1494,20 +1494,20 @@ class NodegroupTypeDef(TypedDict):
|
|
|
1494
1494
|
status: NotRequired[NodegroupStatusType]
|
|
1495
1495
|
capacityType: NotRequired[CapacityTypesType]
|
|
1496
1496
|
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1497
|
-
instanceTypes: NotRequired[
|
|
1498
|
-
subnets: NotRequired[
|
|
1497
|
+
instanceTypes: NotRequired[list[str]]
|
|
1498
|
+
subnets: NotRequired[list[str]]
|
|
1499
1499
|
remoteAccess: NotRequired[RemoteAccessConfigOutputTypeDef]
|
|
1500
1500
|
amiType: NotRequired[AMITypesType]
|
|
1501
1501
|
nodeRole: NotRequired[str]
|
|
1502
|
-
labels: NotRequired[
|
|
1503
|
-
taints: NotRequired[
|
|
1502
|
+
labels: NotRequired[dict[str, str]]
|
|
1503
|
+
taints: NotRequired[list[TaintTypeDef]]
|
|
1504
1504
|
resources: NotRequired[NodegroupResourcesTypeDef]
|
|
1505
1505
|
diskSize: NotRequired[int]
|
|
1506
1506
|
health: NotRequired[NodegroupHealthTypeDef]
|
|
1507
1507
|
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1508
1508
|
nodeRepairConfig: NotRequired[NodeRepairConfigOutputTypeDef]
|
|
1509
1509
|
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1510
|
-
tags: NotRequired[
|
|
1510
|
+
tags: NotRequired[dict[str, str]]
|
|
1511
1511
|
|
|
1512
1512
|
NodeRepairConfigUnionTypeDef = Union[NodeRepairConfigTypeDef, NodeRepairConfigOutputTypeDef]
|
|
1513
1513
|
ClusterTypeDef = TypedDict(
|
|
@@ -1527,8 +1527,8 @@ ClusterTypeDef = TypedDict(
|
|
|
1527
1527
|
"certificateAuthority": NotRequired[CertificateTypeDef],
|
|
1528
1528
|
"clientRequestToken": NotRequired[str],
|
|
1529
1529
|
"platformVersion": NotRequired[str],
|
|
1530
|
-
"tags": NotRequired[
|
|
1531
|
-
"encryptionConfig": NotRequired[
|
|
1530
|
+
"tags": NotRequired[dict[str, str]],
|
|
1531
|
+
"encryptionConfig": NotRequired[list[EncryptionConfigOutputTypeDef]],
|
|
1532
1532
|
"connectorConfig": NotRequired[ConnectorConfigResponseTypeDef],
|
|
1533
1533
|
"id": NotRequired[str],
|
|
1534
1534
|
"health": NotRequired[ClusterHealthTypeDef],
|
|
@@ -1540,6 +1540,7 @@ ClusterTypeDef = TypedDict(
|
|
|
1540
1540
|
"computeConfig": NotRequired[ComputeConfigResponseTypeDef],
|
|
1541
1541
|
"storageConfig": NotRequired[StorageConfigResponseTypeDef],
|
|
1542
1542
|
"deletionProtection": NotRequired[bool],
|
|
1543
|
+
"controlPlaneScalingConfig": NotRequired[ControlPlaneScalingConfigTypeDef],
|
|
1543
1544
|
},
|
|
1544
1545
|
)
|
|
1545
1546
|
|
|
@@ -1553,7 +1554,7 @@ class AssociateEncryptionConfigResponseTypeDef(TypedDict):
|
|
|
1553
1554
|
|
|
1554
1555
|
class AssociateIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
1555
1556
|
update: UpdateTypeDef
|
|
1556
|
-
tags:
|
|
1557
|
+
tags: dict[str, str]
|
|
1557
1558
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1558
1559
|
|
|
1559
1560
|
class DescribeUpdateResponseTypeDef(TypedDict):
|
|
@@ -1597,7 +1598,7 @@ class DescribeAddonResponseTypeDef(TypedDict):
|
|
|
1597
1598
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1598
1599
|
|
|
1599
1600
|
class DescribeAddonVersionsResponseTypeDef(TypedDict):
|
|
1600
|
-
addons:
|
|
1601
|
+
addons: list[AddonInfoTypeDef]
|
|
1601
1602
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1602
1603
|
nextToken: NotRequired[str]
|
|
1603
1604
|
|
|
@@ -1613,8 +1614,8 @@ InsightTypeDef = TypedDict(
|
|
|
1613
1614
|
"description": NotRequired[str],
|
|
1614
1615
|
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1615
1616
|
"recommendation": NotRequired[str],
|
|
1616
|
-
"additionalInfo": NotRequired[
|
|
1617
|
-
"resources": NotRequired[
|
|
1617
|
+
"additionalInfo": NotRequired[dict[str, str]],
|
|
1618
|
+
"resources": NotRequired[list[InsightResourceDetailTypeDef]],
|
|
1618
1619
|
"categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
|
|
1619
1620
|
},
|
|
1620
1621
|
)
|
|
@@ -1718,6 +1719,7 @@ class CreateClusterRequestTypeDef(TypedDict):
|
|
|
1718
1719
|
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1719
1720
|
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1720
1721
|
deletionProtection: NotRequired[bool]
|
|
1722
|
+
controlPlaneScalingConfig: NotRequired[ControlPlaneScalingConfigTypeDef]
|
|
1721
1723
|
|
|
1722
1724
|
class UpdateClusterConfigRequestTypeDef(TypedDict):
|
|
1723
1725
|
name: str
|
|
@@ -1732,6 +1734,7 @@ class UpdateClusterConfigRequestTypeDef(TypedDict):
|
|
|
1732
1734
|
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1733
1735
|
remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
|
|
1734
1736
|
deletionProtection: NotRequired[bool]
|
|
1737
|
+
controlPlaneScalingConfig: NotRequired[ControlPlaneScalingConfigTypeDef]
|
|
1735
1738
|
|
|
1736
1739
|
class DescribeInsightResponseTypeDef(TypedDict):
|
|
1737
1740
|
insight: InsightTypeDef
|
mypy_boto3_eks/version.py
CHANGED
|
@@ -1,23 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-eks
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 EKS 1.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
License: MIT License
|
|
3
|
+
Version: 1.41.2
|
|
4
|
+
Summary: Type annotations for boto3 EKS 1.41.2 service generated with mypy-boto3-builder 8.12.0
|
|
5
|
+
Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
|
|
9
8
|
Project-URL: Documentation, https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/
|
|
10
9
|
Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
|
|
11
10
|
Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
|
|
12
|
-
Keywords: boto3
|
|
11
|
+
Keywords: boto3,eks,boto3-stubs,type-annotations,mypy,typeshed,autocomplete
|
|
12
|
+
Platform: any
|
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Environment :: Console
|
|
16
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
17
16
|
Classifier: Natural Language :: English
|
|
18
17
|
Classifier: Operating System :: OS Independent
|
|
19
18
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
21
19
|
Classifier: Programming Language :: Python :: 3.9
|
|
22
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
23
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -27,23 +25,11 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
27
25
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
26
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
27
|
Classifier: Typing :: Stubs Only
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Requires-Python: >=3.9
|
|
31
29
|
Description-Content-Type: text/markdown
|
|
32
30
|
License-File: LICENSE
|
|
33
31
|
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
|
-
Dynamic: author
|
|
35
|
-
Dynamic: author-email
|
|
36
|
-
Dynamic: classifier
|
|
37
|
-
Dynamic: description
|
|
38
|
-
Dynamic: description-content-type
|
|
39
|
-
Dynamic: home-page
|
|
40
|
-
Dynamic: keywords
|
|
41
|
-
Dynamic: license
|
|
42
32
|
Dynamic: license-file
|
|
43
|
-
Dynamic: project-url
|
|
44
|
-
Dynamic: requires-dist
|
|
45
|
-
Dynamic: requires-python
|
|
46
|
-
Dynamic: summary
|
|
47
33
|
|
|
48
34
|
<a id="mypy-boto3-eks"></a>
|
|
49
35
|
|
|
@@ -56,7 +42,7 @@ Dynamic: summary
|
|
|
56
42
|
|
|
57
43
|

|
|
58
44
|
|
|
59
|
-
Type annotations for [boto3 EKS 1.
|
|
45
|
+
Type annotations for [boto3 EKS 1.41.2](https://pypi.org/project/boto3/)
|
|
60
46
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
47
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
48
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +51,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
65
51
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
52
|
|
|
67
53
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
54
|
+
[mypy-boto3-builder 8.12.0](https://github.com/youtype/mypy_boto3_builder).
|
|
69
55
|
|
|
70
56
|
More information can be found on
|
|
71
57
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -119,7 +105,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
105
|
isolation.
|
|
120
106
|
|
|
121
107
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.
|
|
108
|
+
`uvx --with 'boto3==1.41.2' mypy-boto3-builder`
|
|
123
109
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
110
|
3. Add `EKS` service.
|
|
125
111
|
4. Use provided commands to install generated packages.
|