types-boto3-eks 1.40.59__py3-none-any.whl → 1.41.0__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/__main__.py +4 -4
- types_boto3_eks/client.py +21 -26
- types_boto3_eks/client.pyi +21 -26
- types_boto3_eks/literals.py +3 -7
- types_boto3_eks/literals.pyi +3 -7
- types_boto3_eks/type_defs.py +79 -84
- types_boto3_eks/type_defs.pyi +79 -84
- types_boto3_eks/version.py +1 -1
- {types_boto3_eks-1.40.59.dist-info → types_boto3_eks-1.41.0.dist-info}/METADATA +11 -25
- types_boto3_eks-1.41.0.dist-info/RECORD +20 -0
- types_boto3_eks-1.40.59.dist-info/RECORD +0 -20
- {types_boto3_eks-1.40.59.dist-info → types_boto3_eks-1.41.0.dist-info}/WHEEL +0 -0
- {types_boto3_eks-1.40.59.dist-info → types_boto3_eks-1.41.0.dist-info}/licenses/LICENSE +0 -0
- {types_boto3_eks-1.40.59.dist-info → types_boto3_eks-1.41.0.dist-info}/top_level.txt +0 -0
types_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
|
|
|
@@ -54,12 +55,6 @@ from .literals import (
|
|
|
54
55
|
VersionStatusType,
|
|
55
56
|
)
|
|
56
57
|
|
|
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
58
|
if sys.version_info >= (3, 12):
|
|
64
59
|
from typing import Literal, NotRequired, TypedDict
|
|
65
60
|
else:
|
|
@@ -325,11 +320,11 @@ AccessEntryTypeDef = TypedDict(
|
|
|
325
320
|
{
|
|
326
321
|
"clusterName": NotRequired[str],
|
|
327
322
|
"principalArn": NotRequired[str],
|
|
328
|
-
"kubernetesGroups": NotRequired[
|
|
323
|
+
"kubernetesGroups": NotRequired[list[str]],
|
|
329
324
|
"accessEntryArn": NotRequired[str],
|
|
330
325
|
"createdAt": NotRequired[datetime],
|
|
331
326
|
"modifiedAt": NotRequired[datetime],
|
|
332
|
-
"tags": NotRequired[
|
|
327
|
+
"tags": NotRequired[dict[str, str]],
|
|
333
328
|
"username": NotRequired[str],
|
|
334
329
|
"type": NotRequired[str],
|
|
335
330
|
},
|
|
@@ -343,7 +338,7 @@ AccessScopeOutputTypeDef = TypedDict(
|
|
|
343
338
|
"AccessScopeOutputTypeDef",
|
|
344
339
|
{
|
|
345
340
|
"type": NotRequired[AccessScopeTypeType],
|
|
346
|
-
"namespaces": NotRequired[
|
|
341
|
+
"namespaces": NotRequired[list[str]],
|
|
347
342
|
},
|
|
348
343
|
)
|
|
349
344
|
AccessScopeTypeDef = TypedDict(
|
|
@@ -356,12 +351,12 @@ AccessScopeTypeDef = TypedDict(
|
|
|
356
351
|
|
|
357
352
|
class AddonCompatibilityDetailTypeDef(TypedDict):
|
|
358
353
|
name: NotRequired[str]
|
|
359
|
-
compatibleVersions: NotRequired[
|
|
354
|
+
compatibleVersions: NotRequired[list[str]]
|
|
360
355
|
|
|
361
356
|
class AddonIssueTypeDef(TypedDict):
|
|
362
357
|
code: NotRequired[AddonIssueCodeType]
|
|
363
358
|
message: NotRequired[str]
|
|
364
|
-
resourceIds: NotRequired[
|
|
359
|
+
resourceIds: NotRequired[list[str]]
|
|
365
360
|
|
|
366
361
|
class MarketplaceInformationTypeDef(TypedDict):
|
|
367
362
|
productId: NotRequired[str]
|
|
@@ -379,17 +374,17 @@ class AddonPodIdentityAssociationsTypeDef(TypedDict):
|
|
|
379
374
|
|
|
380
375
|
class AddonPodIdentityConfigurationTypeDef(TypedDict):
|
|
381
376
|
serviceAccount: NotRequired[str]
|
|
382
|
-
recommendedManagedPolicies: NotRequired[
|
|
377
|
+
recommendedManagedPolicies: NotRequired[list[str]]
|
|
383
378
|
|
|
384
379
|
class CompatibilityTypeDef(TypedDict):
|
|
385
380
|
clusterVersion: NotRequired[str]
|
|
386
|
-
platformVersions: NotRequired[
|
|
381
|
+
platformVersions: NotRequired[list[str]]
|
|
387
382
|
defaultVersion: NotRequired[bool]
|
|
388
383
|
|
|
389
384
|
class ResponseMetadataTypeDef(TypedDict):
|
|
390
385
|
RequestId: str
|
|
391
386
|
HTTPStatusCode: int
|
|
392
|
-
HTTPHeaders:
|
|
387
|
+
HTTPHeaders: dict[str, str]
|
|
393
388
|
RetryAttempts: int
|
|
394
389
|
HostId: NotRequired[str]
|
|
395
390
|
|
|
@@ -420,11 +415,11 @@ class ClientStatTypeDef(TypedDict):
|
|
|
420
415
|
class ClusterIssueTypeDef(TypedDict):
|
|
421
416
|
code: NotRequired[ClusterIssueCodeType]
|
|
422
417
|
message: NotRequired[str]
|
|
423
|
-
resourceIds: NotRequired[
|
|
418
|
+
resourceIds: NotRequired[list[str]]
|
|
424
419
|
|
|
425
420
|
class ComputeConfigResponseTypeDef(TypedDict):
|
|
426
421
|
enabled: NotRequired[bool]
|
|
427
|
-
nodePools: NotRequired[
|
|
422
|
+
nodePools: NotRequired[list[str]]
|
|
428
423
|
nodeRoleArn: NotRequired[str]
|
|
429
424
|
|
|
430
425
|
class ConnectorConfigResponseTypeDef(TypedDict):
|
|
@@ -438,13 +433,13 @@ class UpgradePolicyResponseTypeDef(TypedDict):
|
|
|
438
433
|
supportType: NotRequired[SupportTypeType]
|
|
439
434
|
|
|
440
435
|
class VpcConfigResponseTypeDef(TypedDict):
|
|
441
|
-
subnetIds: NotRequired[
|
|
442
|
-
securityGroupIds: NotRequired[
|
|
436
|
+
subnetIds: NotRequired[list[str]]
|
|
437
|
+
securityGroupIds: NotRequired[list[str]]
|
|
443
438
|
clusterSecurityGroupId: NotRequired[str]
|
|
444
439
|
vpcId: NotRequired[str]
|
|
445
440
|
endpointPublicAccess: NotRequired[bool]
|
|
446
441
|
endpointPrivateAccess: NotRequired[bool]
|
|
447
|
-
publicAccessCidrs: NotRequired[
|
|
442
|
+
publicAccessCidrs: NotRequired[list[str]]
|
|
448
443
|
|
|
449
444
|
class ZonalShiftConfigResponseTypeDef(TypedDict):
|
|
450
445
|
enabled: NotRequired[bool]
|
|
@@ -551,7 +546,7 @@ class PodIdentityAssociationTypeDef(TypedDict):
|
|
|
551
546
|
roleArn: NotRequired[str]
|
|
552
547
|
associationArn: NotRequired[str]
|
|
553
548
|
associationId: NotRequired[str]
|
|
554
|
-
tags: NotRequired[
|
|
549
|
+
tags: NotRequired[dict[str, str]]
|
|
555
550
|
createdAt: NotRequired[datetime]
|
|
556
551
|
modifiedAt: NotRequired[datetime]
|
|
557
552
|
ownerArn: NotRequired[str]
|
|
@@ -705,16 +700,16 @@ class ProviderTypeDef(TypedDict):
|
|
|
705
700
|
class ErrorDetailTypeDef(TypedDict):
|
|
706
701
|
errorCode: NotRequired[ErrorCodeType]
|
|
707
702
|
errorMessage: NotRequired[str]
|
|
708
|
-
resourceIds: NotRequired[
|
|
703
|
+
resourceIds: NotRequired[list[str]]
|
|
709
704
|
|
|
710
705
|
class FargateProfileIssueTypeDef(TypedDict):
|
|
711
706
|
code: NotRequired[FargateProfileIssueCodeType]
|
|
712
707
|
message: NotRequired[str]
|
|
713
|
-
resourceIds: NotRequired[
|
|
708
|
+
resourceIds: NotRequired[list[str]]
|
|
714
709
|
|
|
715
710
|
class FargateProfileSelectorOutputTypeDef(TypedDict):
|
|
716
711
|
namespace: NotRequired[str]
|
|
717
|
-
labels: NotRequired[
|
|
712
|
+
labels: NotRequired[dict[str, str]]
|
|
718
713
|
|
|
719
714
|
class FargateProfileSelectorTypeDef(TypedDict):
|
|
720
715
|
namespace: NotRequired[str]
|
|
@@ -730,8 +725,8 @@ class OidcIdentityProviderConfigTypeDef(TypedDict):
|
|
|
730
725
|
usernamePrefix: NotRequired[str]
|
|
731
726
|
groupsClaim: NotRequired[str]
|
|
732
727
|
groupsPrefix: NotRequired[str]
|
|
733
|
-
requiredClaims: NotRequired[
|
|
734
|
-
tags: NotRequired[
|
|
728
|
+
requiredClaims: NotRequired[dict[str, str]]
|
|
729
|
+
tags: NotRequired[dict[str, str]]
|
|
735
730
|
status: NotRequired[ConfigStatusType]
|
|
736
731
|
|
|
737
732
|
class OIDCTypeDef(TypedDict):
|
|
@@ -749,7 +744,7 @@ class InsightsFilterTypeDef(TypedDict):
|
|
|
749
744
|
class IssueTypeDef(TypedDict):
|
|
750
745
|
code: NotRequired[NodegroupIssueCodeType]
|
|
751
746
|
message: NotRequired[str]
|
|
752
|
-
resourceIds: NotRequired[
|
|
747
|
+
resourceIds: NotRequired[list[str]]
|
|
753
748
|
|
|
754
749
|
class ListAccessEntriesRequestTypeDef(TypedDict):
|
|
755
750
|
clusterName: str
|
|
@@ -825,7 +820,7 @@ class ListUpdatesRequestTypeDef(TypedDict):
|
|
|
825
820
|
LogSetupOutputTypeDef = TypedDict(
|
|
826
821
|
"LogSetupOutputTypeDef",
|
|
827
822
|
{
|
|
828
|
-
"types": NotRequired[
|
|
823
|
+
"types": NotRequired[list[LogTypeType]],
|
|
829
824
|
"enabled": NotRequired[bool],
|
|
830
825
|
},
|
|
831
826
|
)
|
|
@@ -845,17 +840,17 @@ class NodeRepairConfigOverridesTypeDef(TypedDict):
|
|
|
845
840
|
|
|
846
841
|
class RemoteAccessConfigOutputTypeDef(TypedDict):
|
|
847
842
|
ec2SshKey: NotRequired[str]
|
|
848
|
-
sourceSecurityGroups: NotRequired[
|
|
843
|
+
sourceSecurityGroups: NotRequired[list[str]]
|
|
849
844
|
|
|
850
845
|
class RemoteAccessConfigTypeDef(TypedDict):
|
|
851
846
|
ec2SshKey: NotRequired[str]
|
|
852
847
|
sourceSecurityGroups: NotRequired[Sequence[str]]
|
|
853
848
|
|
|
854
849
|
class RemoteNodeNetworkOutputTypeDef(TypedDict):
|
|
855
|
-
cidrs: NotRequired[
|
|
850
|
+
cidrs: NotRequired[list[str]]
|
|
856
851
|
|
|
857
852
|
class RemotePodNetworkOutputTypeDef(TypedDict):
|
|
858
|
-
cidrs: NotRequired[
|
|
853
|
+
cidrs: NotRequired[list[str]]
|
|
859
854
|
|
|
860
855
|
class RemoteNodeNetworkTypeDef(TypedDict):
|
|
861
856
|
cidrs: NotRequired[Sequence[str]]
|
|
@@ -928,7 +923,7 @@ class AssociatedAccessPolicyTypeDef(TypedDict):
|
|
|
928
923
|
AccessScopeUnionTypeDef = Union[AccessScopeTypeDef, AccessScopeOutputTypeDef]
|
|
929
924
|
|
|
930
925
|
class AddonHealthTypeDef(TypedDict):
|
|
931
|
-
issues: NotRequired[
|
|
926
|
+
issues: NotRequired[list[AddonIssueTypeDef]]
|
|
932
927
|
|
|
933
928
|
class CreateAddonRequestTypeDef(TypedDict):
|
|
934
929
|
clusterName: str
|
|
@@ -954,9 +949,9 @@ class UpdateAddonRequestTypeDef(TypedDict):
|
|
|
954
949
|
|
|
955
950
|
class AddonVersionInfoTypeDef(TypedDict):
|
|
956
951
|
addonVersion: NotRequired[str]
|
|
957
|
-
architecture: NotRequired[
|
|
958
|
-
computeTypes: NotRequired[
|
|
959
|
-
compatibilities: NotRequired[
|
|
952
|
+
architecture: NotRequired[list[str]]
|
|
953
|
+
computeTypes: NotRequired[list[str]]
|
|
954
|
+
compatibilities: NotRequired[list[CompatibilityTypeDef]]
|
|
960
955
|
requiresConfiguration: NotRequired[bool]
|
|
961
956
|
requiresIamPermissions: NotRequired[bool]
|
|
962
957
|
|
|
@@ -972,7 +967,7 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
|
|
|
972
967
|
addonName: str
|
|
973
968
|
addonVersion: str
|
|
974
969
|
configurationSchema: str
|
|
975
|
-
podIdentityConfiguration:
|
|
970
|
+
podIdentityConfiguration: list[AddonPodIdentityConfigurationTypeDef]
|
|
976
971
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
977
972
|
|
|
978
973
|
class DescribeInsightsRefreshResponseTypeDef(TypedDict):
|
|
@@ -983,41 +978,41 @@ class DescribeInsightsRefreshResponseTypeDef(TypedDict):
|
|
|
983
978
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
984
979
|
|
|
985
980
|
class ListAccessEntriesResponseTypeDef(TypedDict):
|
|
986
|
-
accessEntries:
|
|
981
|
+
accessEntries: list[str]
|
|
987
982
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
988
983
|
nextToken: NotRequired[str]
|
|
989
984
|
|
|
990
985
|
class ListAccessPoliciesResponseTypeDef(TypedDict):
|
|
991
|
-
accessPolicies:
|
|
986
|
+
accessPolicies: list[AccessPolicyTypeDef]
|
|
992
987
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
993
988
|
nextToken: NotRequired[str]
|
|
994
989
|
|
|
995
990
|
class ListAddonsResponseTypeDef(TypedDict):
|
|
996
|
-
addons:
|
|
991
|
+
addons: list[str]
|
|
997
992
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
998
993
|
nextToken: NotRequired[str]
|
|
999
994
|
|
|
1000
995
|
class ListClustersResponseTypeDef(TypedDict):
|
|
1001
|
-
clusters:
|
|
996
|
+
clusters: list[str]
|
|
1002
997
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1003
998
|
nextToken: NotRequired[str]
|
|
1004
999
|
|
|
1005
1000
|
class ListFargateProfilesResponseTypeDef(TypedDict):
|
|
1006
|
-
fargateProfileNames:
|
|
1001
|
+
fargateProfileNames: list[str]
|
|
1007
1002
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1008
1003
|
nextToken: NotRequired[str]
|
|
1009
1004
|
|
|
1010
1005
|
class ListNodegroupsResponseTypeDef(TypedDict):
|
|
1011
|
-
nodegroups:
|
|
1006
|
+
nodegroups: list[str]
|
|
1012
1007
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1013
1008
|
nextToken: NotRequired[str]
|
|
1014
1009
|
|
|
1015
1010
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
1016
|
-
tags:
|
|
1011
|
+
tags: dict[str, str]
|
|
1017
1012
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1018
1013
|
|
|
1019
1014
|
class ListUpdatesResponseTypeDef(TypedDict):
|
|
1020
|
-
updateIds:
|
|
1015
|
+
updateIds: list[str]
|
|
1021
1016
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1022
1017
|
nextToken: NotRequired[str]
|
|
1023
1018
|
|
|
@@ -1037,7 +1032,7 @@ class AssociateIdentityProviderConfigRequestTypeDef(TypedDict):
|
|
|
1037
1032
|
clientRequestToken: NotRequired[str]
|
|
1038
1033
|
|
|
1039
1034
|
class NodegroupResourcesTypeDef(TypedDict):
|
|
1040
|
-
autoScalingGroups: NotRequired[
|
|
1035
|
+
autoScalingGroups: NotRequired[list[AutoScalingGroupTypeDef]]
|
|
1041
1036
|
remoteAccessSecurityGroup: NotRequired[str]
|
|
1042
1037
|
|
|
1043
1038
|
class StorageConfigRequestTypeDef(TypedDict):
|
|
@@ -1051,13 +1046,13 @@ class DeprecationDetailTypeDef(TypedDict):
|
|
|
1051
1046
|
replacedWith: NotRequired[str]
|
|
1052
1047
|
stopServingVersion: NotRequired[str]
|
|
1053
1048
|
startServingReplacementVersion: NotRequired[str]
|
|
1054
|
-
clientStats: NotRequired[
|
|
1049
|
+
clientStats: NotRequired[list[ClientStatTypeDef]]
|
|
1055
1050
|
|
|
1056
1051
|
class ClusterHealthTypeDef(TypedDict):
|
|
1057
|
-
issues: NotRequired[
|
|
1052
|
+
issues: NotRequired[list[ClusterIssueTypeDef]]
|
|
1058
1053
|
|
|
1059
1054
|
class DescribeClusterVersionsResponseTypeDef(TypedDict):
|
|
1060
|
-
clusterVersions:
|
|
1055
|
+
clusterVersions: list[ClusterVersionInformationTypeDef]
|
|
1061
1056
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1062
1057
|
nextToken: NotRequired[str]
|
|
1063
1058
|
|
|
@@ -1073,7 +1068,7 @@ class OutpostConfigRequestTypeDef(TypedDict):
|
|
|
1073
1068
|
controlPlanePlacement: NotRequired[ControlPlanePlacementRequestTypeDef]
|
|
1074
1069
|
|
|
1075
1070
|
class OutpostConfigResponseTypeDef(TypedDict):
|
|
1076
|
-
outpostArns:
|
|
1071
|
+
outpostArns: list[str]
|
|
1077
1072
|
controlPlaneInstanceType: str
|
|
1078
1073
|
controlPlanePlacement: NotRequired[ControlPlanePlacementResponseTypeDef]
|
|
1079
1074
|
|
|
@@ -1233,7 +1228,7 @@ class DisassociateIdentityProviderConfigRequestTypeDef(TypedDict):
|
|
|
1233
1228
|
clientRequestToken: NotRequired[str]
|
|
1234
1229
|
|
|
1235
1230
|
class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
|
|
1236
|
-
identityProviderConfigs:
|
|
1231
|
+
identityProviderConfigs: list[IdentityProviderConfigTypeDef]
|
|
1237
1232
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1238
1233
|
nextToken: NotRequired[str]
|
|
1239
1234
|
|
|
@@ -1250,9 +1245,9 @@ EksAnywhereSubscriptionTypeDef = TypedDict(
|
|
|
1250
1245
|
"term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
|
|
1251
1246
|
"status": NotRequired[str],
|
|
1252
1247
|
"autoRenew": NotRequired[bool],
|
|
1253
|
-
"licenseArns": NotRequired[
|
|
1254
|
-
"licenses": NotRequired[
|
|
1255
|
-
"tags": NotRequired[
|
|
1248
|
+
"licenseArns": NotRequired[list[str]],
|
|
1249
|
+
"licenses": NotRequired[list[LicenseTypeDef]],
|
|
1250
|
+
"tags": NotRequired[dict[str, str]],
|
|
1256
1251
|
},
|
|
1257
1252
|
)
|
|
1258
1253
|
|
|
@@ -1268,7 +1263,7 @@ class KubernetesNetworkConfigResponseTypeDef(TypedDict):
|
|
|
1268
1263
|
elasticLoadBalancing: NotRequired[ElasticLoadBalancingTypeDef]
|
|
1269
1264
|
|
|
1270
1265
|
class EncryptionConfigOutputTypeDef(TypedDict):
|
|
1271
|
-
resources: NotRequired[
|
|
1266
|
+
resources: NotRequired[list[str]]
|
|
1272
1267
|
provider: NotRequired[ProviderTypeDef]
|
|
1273
1268
|
|
|
1274
1269
|
class EncryptionConfigTypeDef(TypedDict):
|
|
@@ -1276,7 +1271,7 @@ class EncryptionConfigTypeDef(TypedDict):
|
|
|
1276
1271
|
provider: NotRequired[ProviderTypeDef]
|
|
1277
1272
|
|
|
1278
1273
|
class FargateProfileHealthTypeDef(TypedDict):
|
|
1279
|
-
issues: NotRequired[
|
|
1274
|
+
issues: NotRequired[list[FargateProfileIssueTypeDef]]
|
|
1280
1275
|
|
|
1281
1276
|
FargateProfileSelectorUnionTypeDef = Union[
|
|
1282
1277
|
FargateProfileSelectorTypeDef, FargateProfileSelectorOutputTypeDef
|
|
@@ -1325,15 +1320,15 @@ ListInsightsRequestTypeDef = TypedDict(
|
|
|
1325
1320
|
)
|
|
1326
1321
|
|
|
1327
1322
|
class NodegroupHealthTypeDef(TypedDict):
|
|
1328
|
-
issues: NotRequired[
|
|
1323
|
+
issues: NotRequired[list[IssueTypeDef]]
|
|
1329
1324
|
|
|
1330
1325
|
class ListPodIdentityAssociationsResponseTypeDef(TypedDict):
|
|
1331
|
-
associations:
|
|
1326
|
+
associations: list[PodIdentityAssociationSummaryTypeDef]
|
|
1332
1327
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1333
1328
|
nextToken: NotRequired[str]
|
|
1334
1329
|
|
|
1335
1330
|
class LoggingOutputTypeDef(TypedDict):
|
|
1336
|
-
clusterLogging: NotRequired[
|
|
1331
|
+
clusterLogging: NotRequired[list[LogSetupOutputTypeDef]]
|
|
1337
1332
|
|
|
1338
1333
|
class LoggingTypeDef(TypedDict):
|
|
1339
1334
|
clusterLogging: NotRequired[Sequence[LogSetupTypeDef]]
|
|
@@ -1344,7 +1339,7 @@ class NodeRepairConfigOutputTypeDef(TypedDict):
|
|
|
1344
1339
|
maxUnhealthyNodeThresholdPercentage: NotRequired[int]
|
|
1345
1340
|
maxParallelNodesRepairedCount: NotRequired[int]
|
|
1346
1341
|
maxParallelNodesRepairedPercentage: NotRequired[int]
|
|
1347
|
-
nodeRepairConfigOverrides: NotRequired[
|
|
1342
|
+
nodeRepairConfigOverrides: NotRequired[list[NodeRepairConfigOverridesTypeDef]]
|
|
1348
1343
|
|
|
1349
1344
|
class NodeRepairConfigTypeDef(TypedDict):
|
|
1350
1345
|
enabled: NotRequired[bool]
|
|
@@ -1357,8 +1352,8 @@ class NodeRepairConfigTypeDef(TypedDict):
|
|
|
1357
1352
|
RemoteAccessConfigUnionTypeDef = Union[RemoteAccessConfigTypeDef, RemoteAccessConfigOutputTypeDef]
|
|
1358
1353
|
|
|
1359
1354
|
class RemoteNetworkConfigResponseTypeDef(TypedDict):
|
|
1360
|
-
remoteNodeNetworks: NotRequired[
|
|
1361
|
-
remotePodNetworks: NotRequired[
|
|
1355
|
+
remoteNodeNetworks: NotRequired[list[RemoteNodeNetworkOutputTypeDef]]
|
|
1356
|
+
remotePodNetworks: NotRequired[list[RemotePodNetworkOutputTypeDef]]
|
|
1362
1357
|
|
|
1363
1358
|
RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
|
|
1364
1359
|
RemotePodNetworkUnionTypeDef = Union[RemotePodNetworkTypeDef, RemotePodNetworkOutputTypeDef]
|
|
@@ -1368,9 +1363,9 @@ UpdateTypeDef = TypedDict(
|
|
|
1368
1363
|
"id": NotRequired[str],
|
|
1369
1364
|
"status": NotRequired[UpdateStatusType],
|
|
1370
1365
|
"type": NotRequired[UpdateTypeType],
|
|
1371
|
-
"params": NotRequired[
|
|
1366
|
+
"params": NotRequired[list[UpdateParamTypeDef]],
|
|
1372
1367
|
"createdAt": NotRequired[datetime],
|
|
1373
|
-
"errors": NotRequired[
|
|
1368
|
+
"errors": NotRequired[list[ErrorDetailTypeDef]],
|
|
1374
1369
|
},
|
|
1375
1370
|
)
|
|
1376
1371
|
|
|
@@ -1383,7 +1378,7 @@ class AssociateAccessPolicyResponseTypeDef(TypedDict):
|
|
|
1383
1378
|
class ListAssociatedAccessPoliciesResponseTypeDef(TypedDict):
|
|
1384
1379
|
clusterName: str
|
|
1385
1380
|
principalArn: str
|
|
1386
|
-
associatedAccessPolicies:
|
|
1381
|
+
associatedAccessPolicies: list[AssociatedAccessPolicyTypeDef]
|
|
1387
1382
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1388
1383
|
nextToken: NotRequired[str]
|
|
1389
1384
|
|
|
@@ -1403,12 +1398,12 @@ class AddonTypeDef(TypedDict):
|
|
|
1403
1398
|
createdAt: NotRequired[datetime]
|
|
1404
1399
|
modifiedAt: NotRequired[datetime]
|
|
1405
1400
|
serviceAccountRoleArn: NotRequired[str]
|
|
1406
|
-
tags: NotRequired[
|
|
1401
|
+
tags: NotRequired[dict[str, str]]
|
|
1407
1402
|
publisher: NotRequired[str]
|
|
1408
1403
|
owner: NotRequired[str]
|
|
1409
1404
|
marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
|
|
1410
1405
|
configurationValues: NotRequired[str]
|
|
1411
|
-
podIdentityAssociations: NotRequired[
|
|
1406
|
+
podIdentityAssociations: NotRequired[list[str]]
|
|
1412
1407
|
namespaceConfig: NotRequired[AddonNamespaceConfigResponseTypeDef]
|
|
1413
1408
|
|
|
1414
1409
|
AddonInfoTypeDef = TypedDict(
|
|
@@ -1416,7 +1411,7 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1416
1411
|
{
|
|
1417
1412
|
"addonName": NotRequired[str],
|
|
1418
1413
|
"type": NotRequired[str],
|
|
1419
|
-
"addonVersions": NotRequired[
|
|
1414
|
+
"addonVersions": NotRequired[list[AddonVersionInfoTypeDef]],
|
|
1420
1415
|
"publisher": NotRequired[str],
|
|
1421
1416
|
"owner": NotRequired[str],
|
|
1422
1417
|
"marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
|
|
@@ -1425,8 +1420,8 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1425
1420
|
)
|
|
1426
1421
|
|
|
1427
1422
|
class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
1428
|
-
deprecationDetails: NotRequired[
|
|
1429
|
-
addonCompatibilityDetails: NotRequired[
|
|
1423
|
+
deprecationDetails: NotRequired[list[DeprecationDetailTypeDef]]
|
|
1424
|
+
addonCompatibilityDetails: NotRequired[list[AddonCompatibilityDetailTypeDef]]
|
|
1430
1425
|
|
|
1431
1426
|
class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
1432
1427
|
subscription: EksAnywhereSubscriptionTypeDef
|
|
@@ -1441,7 +1436,7 @@ class DescribeEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
|
1441
1436
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1442
1437
|
|
|
1443
1438
|
class ListEksAnywhereSubscriptionsResponseTypeDef(TypedDict):
|
|
1444
|
-
subscriptions:
|
|
1439
|
+
subscriptions: list[EksAnywhereSubscriptionTypeDef]
|
|
1445
1440
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1446
1441
|
nextToken: NotRequired[str]
|
|
1447
1442
|
|
|
@@ -1457,10 +1452,10 @@ class FargateProfileTypeDef(TypedDict):
|
|
|
1457
1452
|
clusterName: NotRequired[str]
|
|
1458
1453
|
createdAt: NotRequired[datetime]
|
|
1459
1454
|
podExecutionRoleArn: NotRequired[str]
|
|
1460
|
-
subnets: NotRequired[
|
|
1461
|
-
selectors: NotRequired[
|
|
1455
|
+
subnets: NotRequired[list[str]]
|
|
1456
|
+
selectors: NotRequired[list[FargateProfileSelectorOutputTypeDef]]
|
|
1462
1457
|
status: NotRequired[FargateProfileStatusType]
|
|
1463
|
-
tags: NotRequired[
|
|
1458
|
+
tags: NotRequired[dict[str, str]]
|
|
1464
1459
|
health: NotRequired[FargateProfileHealthTypeDef]
|
|
1465
1460
|
|
|
1466
1461
|
class CreateFargateProfileRequestTypeDef(TypedDict):
|
|
@@ -1477,7 +1472,7 @@ class DescribeIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
|
1477
1472
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1478
1473
|
|
|
1479
1474
|
class ListInsightsResponseTypeDef(TypedDict):
|
|
1480
|
-
insights:
|
|
1475
|
+
insights: list[InsightSummaryTypeDef]
|
|
1481
1476
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1482
1477
|
nextToken: NotRequired[str]
|
|
1483
1478
|
|
|
@@ -1494,20 +1489,20 @@ class NodegroupTypeDef(TypedDict):
|
|
|
1494
1489
|
status: NotRequired[NodegroupStatusType]
|
|
1495
1490
|
capacityType: NotRequired[CapacityTypesType]
|
|
1496
1491
|
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1497
|
-
instanceTypes: NotRequired[
|
|
1498
|
-
subnets: NotRequired[
|
|
1492
|
+
instanceTypes: NotRequired[list[str]]
|
|
1493
|
+
subnets: NotRequired[list[str]]
|
|
1499
1494
|
remoteAccess: NotRequired[RemoteAccessConfigOutputTypeDef]
|
|
1500
1495
|
amiType: NotRequired[AMITypesType]
|
|
1501
1496
|
nodeRole: NotRequired[str]
|
|
1502
|
-
labels: NotRequired[
|
|
1503
|
-
taints: NotRequired[
|
|
1497
|
+
labels: NotRequired[dict[str, str]]
|
|
1498
|
+
taints: NotRequired[list[TaintTypeDef]]
|
|
1504
1499
|
resources: NotRequired[NodegroupResourcesTypeDef]
|
|
1505
1500
|
diskSize: NotRequired[int]
|
|
1506
1501
|
health: NotRequired[NodegroupHealthTypeDef]
|
|
1507
1502
|
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1508
1503
|
nodeRepairConfig: NotRequired[NodeRepairConfigOutputTypeDef]
|
|
1509
1504
|
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1510
|
-
tags: NotRequired[
|
|
1505
|
+
tags: NotRequired[dict[str, str]]
|
|
1511
1506
|
|
|
1512
1507
|
NodeRepairConfigUnionTypeDef = Union[NodeRepairConfigTypeDef, NodeRepairConfigOutputTypeDef]
|
|
1513
1508
|
ClusterTypeDef = TypedDict(
|
|
@@ -1527,8 +1522,8 @@ ClusterTypeDef = TypedDict(
|
|
|
1527
1522
|
"certificateAuthority": NotRequired[CertificateTypeDef],
|
|
1528
1523
|
"clientRequestToken": NotRequired[str],
|
|
1529
1524
|
"platformVersion": NotRequired[str],
|
|
1530
|
-
"tags": NotRequired[
|
|
1531
|
-
"encryptionConfig": NotRequired[
|
|
1525
|
+
"tags": NotRequired[dict[str, str]],
|
|
1526
|
+
"encryptionConfig": NotRequired[list[EncryptionConfigOutputTypeDef]],
|
|
1532
1527
|
"connectorConfig": NotRequired[ConnectorConfigResponseTypeDef],
|
|
1533
1528
|
"id": NotRequired[str],
|
|
1534
1529
|
"health": NotRequired[ClusterHealthTypeDef],
|
|
@@ -1553,7 +1548,7 @@ class AssociateEncryptionConfigResponseTypeDef(TypedDict):
|
|
|
1553
1548
|
|
|
1554
1549
|
class AssociateIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
1555
1550
|
update: UpdateTypeDef
|
|
1556
|
-
tags:
|
|
1551
|
+
tags: dict[str, str]
|
|
1557
1552
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1558
1553
|
|
|
1559
1554
|
class DescribeUpdateResponseTypeDef(TypedDict):
|
|
@@ -1597,7 +1592,7 @@ class DescribeAddonResponseTypeDef(TypedDict):
|
|
|
1597
1592
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1598
1593
|
|
|
1599
1594
|
class DescribeAddonVersionsResponseTypeDef(TypedDict):
|
|
1600
|
-
addons:
|
|
1595
|
+
addons: list[AddonInfoTypeDef]
|
|
1601
1596
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1602
1597
|
nextToken: NotRequired[str]
|
|
1603
1598
|
|
|
@@ -1613,8 +1608,8 @@ InsightTypeDef = TypedDict(
|
|
|
1613
1608
|
"description": NotRequired[str],
|
|
1614
1609
|
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1615
1610
|
"recommendation": NotRequired[str],
|
|
1616
|
-
"additionalInfo": NotRequired[
|
|
1617
|
-
"resources": NotRequired[
|
|
1611
|
+
"additionalInfo": NotRequired[dict[str, str]],
|
|
1612
|
+
"resources": NotRequired[list[InsightResourceDetailTypeDef]],
|
|
1618
1613
|
"categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
|
|
1619
1614
|
},
|
|
1620
1615
|
)
|
types_boto3_eks/version.py
CHANGED
|
@@ -1,23 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-eks
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 EKS 1.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
License: MIT License
|
|
3
|
+
Version: 1.41.0
|
|
4
|
+
Summary: Type annotations for boto3 EKS 1.41.0 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/types_boto3_docs/types_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="types-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.0](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
|
[types-boto3](https://pypi.org/project/types-boto3/) 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.0' mypy-boto3-builder`
|
|
123
109
|
2. Select `boto3` AWS SDK.
|
|
124
110
|
3. Add `EKS` service.
|
|
125
111
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
types_boto3_eks/__init__.py,sha256=6GnlsLZ1rK6y5AdmXjWMAq1pJ9cdA5i0pLbPcC_Slio,5068
|
|
2
|
+
types_boto3_eks/__init__.pyi,sha256=ABEIqLpAfwj6RhXr6G83cGbvJ_JOleWaWXbG0STLXEY,5067
|
|
3
|
+
types_boto3_eks/__main__.py,sha256=Y1AzMtPJ2lSaeFpfZPWaA4jmaNiNUpeDezVxDEJnZTI,966
|
|
4
|
+
types_boto3_eks/client.py,sha256=_zsP4X06Ii749AlAjKsYncmxhkYPEfSWuNLLqcWozs4,50676
|
|
5
|
+
types_boto3_eks/client.pyi,sha256=4N4nZuJ2YaYkCdEPzIV968_xZT1NLb4Oc0YmTjF4oYA,50673
|
|
6
|
+
types_boto3_eks/literals.py,sha256=chXIb-pC_pgyzj68Rs645laDjVwziyoBEtqyqsSGlcc,19989
|
|
7
|
+
types_boto3_eks/literals.pyi,sha256=rYHSU04vBmECl4dMUb066BzT7F7BbwghtNUMVqGtF20,19987
|
|
8
|
+
types_boto3_eks/paginator.py,sha256=BSzPVWxeHYIdYz_JKpSAjLLJ0uSjKPgH1AAzER6YDzk,20512
|
|
9
|
+
types_boto3_eks/paginator.pyi,sha256=UjLxbcexpZgFNCHK3sIyzybMZxsjlSzeQsRIkFHZrQI,20469
|
|
10
|
+
types_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_eks/type_defs.py,sha256=uuxr23sZA9QGLYZhMW4SDb2nDkuGrPM6i0qxw-1rIYE,59128
|
|
12
|
+
types_boto3_eks/type_defs.pyi,sha256=ceWMoEDfYWnAwzAMUQSzH3oRjaJAQ65xG-6DpvddyKY,58887
|
|
13
|
+
types_boto3_eks/version.py,sha256=ZtEblsbAVbZWuGFYY23SYRu3T8sCoiDNfG49dV1XWUA,92
|
|
14
|
+
types_boto3_eks/waiter.py,sha256=b_evT5oWgk8wV9vrxkjnaQXX67HzbcojUR01GNC_j7M,8683
|
|
15
|
+
types_boto3_eks/waiter.pyi,sha256=SJSR65ZiFjOqI3QAdtrMqUiga0ofLI8JtyfdiUsyq3c,8666
|
|
16
|
+
types_boto3_eks-1.41.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
types_boto3_eks-1.41.0.dist-info/METADATA,sha256=1dNXcQh_jYDFeEijYK6vvJSjtEvQ3OFHbwF2lH88jZg,17733
|
|
18
|
+
types_boto3_eks-1.41.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
types_boto3_eks-1.41.0.dist-info/top_level.txt,sha256=ZLKgic1D7dd5TUGtlRhAq-FEsE6DYeQws3VEG7aRhp4,16
|
|
20
|
+
types_boto3_eks-1.41.0.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
types_boto3_eks/__init__.py,sha256=6GnlsLZ1rK6y5AdmXjWMAq1pJ9cdA5i0pLbPcC_Slio,5068
|
|
2
|
-
types_boto3_eks/__init__.pyi,sha256=ABEIqLpAfwj6RhXr6G83cGbvJ_JOleWaWXbG0STLXEY,5067
|
|
3
|
-
types_boto3_eks/__main__.py,sha256=Vr8d2kAU1drKErczFhC55ppfojITkmKZ1HLp0OrT5go,969
|
|
4
|
-
types_boto3_eks/client.py,sha256=QlsTUqbXOPtDzwVltWK2BlcBCc4c43g689BCmTW5zn0,50836
|
|
5
|
-
types_boto3_eks/client.pyi,sha256=3cmwjcVV3sueUrppEsSRqH6m0vX3C6ch5VrhCS3q7EA,50833
|
|
6
|
-
types_boto3_eks/literals.py,sha256=wDY9UYswVY8hrOfQaPtysSAWIIfWHYaD4eFFICkq-zM,20048
|
|
7
|
-
types_boto3_eks/literals.pyi,sha256=X-VWjLOznpQ_j8EcJkVvyn82W-DXprRV_0hWTY1lkjU,20046
|
|
8
|
-
types_boto3_eks/paginator.py,sha256=BSzPVWxeHYIdYz_JKpSAjLLJ0uSjKPgH1AAzER6YDzk,20512
|
|
9
|
-
types_boto3_eks/paginator.pyi,sha256=UjLxbcexpZgFNCHK3sIyzybMZxsjlSzeQsRIkFHZrQI,20469
|
|
10
|
-
types_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_eks/type_defs.py,sha256=_m3RnLIyO2y_x8N8zadNseEC_q-dqHZvpqMKTXOEjSM,59298
|
|
12
|
-
types_boto3_eks/type_defs.pyi,sha256=N8tRkA8P6gdIowv8WBdLNAtEPxDBBbfl0N0FKRuRpEM,59057
|
|
13
|
-
types_boto3_eks/version.py,sha256=XA2R_dkriHQcJS9kMNz6sK7ztyDIjWSHFcUN2P6VDKk,93
|
|
14
|
-
types_boto3_eks/waiter.py,sha256=b_evT5oWgk8wV9vrxkjnaQXX67HzbcojUR01GNC_j7M,8683
|
|
15
|
-
types_boto3_eks/waiter.pyi,sha256=SJSR65ZiFjOqI3QAdtrMqUiga0ofLI8JtyfdiUsyq3c,8666
|
|
16
|
-
types_boto3_eks-1.40.59.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
types_boto3_eks-1.40.59.dist-info/METADATA,sha256=1TX5h_mhmmOLCBc-qwbrPj9ua6pwitxoa7AkuM5mvfQ,18068
|
|
18
|
-
types_boto3_eks-1.40.59.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
types_boto3_eks-1.40.59.dist-info/top_level.txt,sha256=ZLKgic1D7dd5TUGtlRhAq-FEsE6DYeQws3VEG7aRhp4,16
|
|
20
|
-
types_boto3_eks-1.40.59.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|