mypy-boto3-eks 1.35.87__py3-none-any.whl → 1.36.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.
@@ -11,14 +11,14 @@ Usage::
11
11
  data: AccessConfigResponseTypeDef = ...
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
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 Mapping, Sequence, Union
21
+ from typing import Union
22
22
 
23
23
  from .literals import (
24
24
  AccessScopeTypeType,
@@ -49,6 +49,12 @@ from .literals import (
49
49
  UpdateTypeType,
50
50
  )
51
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
52
58
  if sys.version_info >= (3, 12):
53
59
  from typing import Literal, NotRequired, TypedDict
54
60
  else:
@@ -298,11 +304,11 @@ AccessEntryTypeDef = TypedDict(
298
304
  {
299
305
  "clusterName": NotRequired[str],
300
306
  "principalArn": NotRequired[str],
301
- "kubernetesGroups": NotRequired[list[str]],
307
+ "kubernetesGroups": NotRequired[List[str]],
302
308
  "accessEntryArn": NotRequired[str],
303
309
  "createdAt": NotRequired[datetime],
304
310
  "modifiedAt": NotRequired[datetime],
305
- "tags": NotRequired[dict[str, str]],
311
+ "tags": NotRequired[Dict[str, str]],
306
312
  "username": NotRequired[str],
307
313
  "type": NotRequired[str],
308
314
  },
@@ -316,7 +322,7 @@ AccessScopeOutputTypeDef = TypedDict(
316
322
  "AccessScopeOutputTypeDef",
317
323
  {
318
324
  "type": NotRequired[AccessScopeTypeType],
319
- "namespaces": NotRequired[list[str]],
325
+ "namespaces": NotRequired[List[str]],
320
326
  },
321
327
  )
322
328
  AccessScopeTypeDef = TypedDict(
@@ -329,12 +335,12 @@ AccessScopeTypeDef = TypedDict(
329
335
 
330
336
  class AddonCompatibilityDetailTypeDef(TypedDict):
331
337
  name: NotRequired[str]
332
- compatibleVersions: NotRequired[list[str]]
338
+ compatibleVersions: NotRequired[List[str]]
333
339
 
334
340
  class AddonIssueTypeDef(TypedDict):
335
341
  code: NotRequired[AddonIssueCodeType]
336
342
  message: NotRequired[str]
337
- resourceIds: NotRequired[list[str]]
343
+ resourceIds: NotRequired[List[str]]
338
344
 
339
345
  class MarketplaceInformationTypeDef(TypedDict):
340
346
  productId: NotRequired[str]
@@ -346,17 +352,17 @@ class AddonPodIdentityAssociationsTypeDef(TypedDict):
346
352
 
347
353
  class AddonPodIdentityConfigurationTypeDef(TypedDict):
348
354
  serviceAccount: NotRequired[str]
349
- recommendedManagedPolicies: NotRequired[list[str]]
355
+ recommendedManagedPolicies: NotRequired[List[str]]
350
356
 
351
357
  class CompatibilityTypeDef(TypedDict):
352
358
  clusterVersion: NotRequired[str]
353
- platformVersions: NotRequired[list[str]]
359
+ platformVersions: NotRequired[List[str]]
354
360
  defaultVersion: NotRequired[bool]
355
361
 
356
362
  class ResponseMetadataTypeDef(TypedDict):
357
363
  RequestId: str
358
364
  HTTPStatusCode: int
359
- HTTPHeaders: dict[str, str]
365
+ HTTPHeaders: Dict[str, str]
360
366
  RetryAttempts: int
361
367
  HostId: NotRequired[str]
362
368
 
@@ -387,11 +393,11 @@ class ClientStatTypeDef(TypedDict):
387
393
  class ClusterIssueTypeDef(TypedDict):
388
394
  code: NotRequired[ClusterIssueCodeType]
389
395
  message: NotRequired[str]
390
- resourceIds: NotRequired[list[str]]
396
+ resourceIds: NotRequired[List[str]]
391
397
 
392
398
  class ComputeConfigResponseTypeDef(TypedDict):
393
399
  enabled: NotRequired[bool]
394
- nodePools: NotRequired[list[str]]
400
+ nodePools: NotRequired[List[str]]
395
401
  nodeRoleArn: NotRequired[str]
396
402
 
397
403
  class ConnectorConfigResponseTypeDef(TypedDict):
@@ -405,13 +411,13 @@ class UpgradePolicyResponseTypeDef(TypedDict):
405
411
  supportType: NotRequired[SupportTypeType]
406
412
 
407
413
  class VpcConfigResponseTypeDef(TypedDict):
408
- subnetIds: NotRequired[list[str]]
409
- securityGroupIds: NotRequired[list[str]]
414
+ subnetIds: NotRequired[List[str]]
415
+ securityGroupIds: NotRequired[List[str]]
410
416
  clusterSecurityGroupId: NotRequired[str]
411
417
  vpcId: NotRequired[str]
412
418
  endpointPublicAccess: NotRequired[bool]
413
419
  endpointPrivateAccess: NotRequired[bool]
414
- publicAccessCidrs: NotRequired[list[str]]
420
+ publicAccessCidrs: NotRequired[List[str]]
415
421
 
416
422
  class ZonalShiftConfigResponseTypeDef(TypedDict):
417
423
  enabled: NotRequired[bool]
@@ -521,7 +527,7 @@ class PodIdentityAssociationTypeDef(TypedDict):
521
527
  roleArn: NotRequired[str]
522
528
  associationArn: NotRequired[str]
523
529
  associationId: NotRequired[str]
524
- tags: NotRequired[dict[str, str]]
530
+ tags: NotRequired[Dict[str, str]]
525
531
  createdAt: NotRequired[datetime]
526
532
  modifiedAt: NotRequired[datetime]
527
533
  ownerArn: NotRequired[str]
@@ -660,16 +666,16 @@ class ProviderTypeDef(TypedDict):
660
666
  class ErrorDetailTypeDef(TypedDict):
661
667
  errorCode: NotRequired[ErrorCodeType]
662
668
  errorMessage: NotRequired[str]
663
- resourceIds: NotRequired[list[str]]
669
+ resourceIds: NotRequired[List[str]]
664
670
 
665
671
  class FargateProfileIssueTypeDef(TypedDict):
666
672
  code: NotRequired[FargateProfileIssueCodeType]
667
673
  message: NotRequired[str]
668
- resourceIds: NotRequired[list[str]]
674
+ resourceIds: NotRequired[List[str]]
669
675
 
670
676
  class FargateProfileSelectorOutputTypeDef(TypedDict):
671
677
  namespace: NotRequired[str]
672
- labels: NotRequired[dict[str, str]]
678
+ labels: NotRequired[Dict[str, str]]
673
679
 
674
680
  class FargateProfileSelectorTypeDef(TypedDict):
675
681
  namespace: NotRequired[str]
@@ -685,8 +691,8 @@ class OidcIdentityProviderConfigTypeDef(TypedDict):
685
691
  usernamePrefix: NotRequired[str]
686
692
  groupsClaim: NotRequired[str]
687
693
  groupsPrefix: NotRequired[str]
688
- requiredClaims: NotRequired[dict[str, str]]
689
- tags: NotRequired[dict[str, str]]
694
+ requiredClaims: NotRequired[Dict[str, str]]
695
+ tags: NotRequired[Dict[str, str]]
690
696
  status: NotRequired[ConfigStatusType]
691
697
 
692
698
  class OIDCTypeDef(TypedDict):
@@ -704,7 +710,7 @@ class InsightsFilterTypeDef(TypedDict):
704
710
  class IssueTypeDef(TypedDict):
705
711
  code: NotRequired[NodegroupIssueCodeType]
706
712
  message: NotRequired[str]
707
- resourceIds: NotRequired[list[str]]
713
+ resourceIds: NotRequired[List[str]]
708
714
 
709
715
  class ListAccessEntriesRequestRequestTypeDef(TypedDict):
710
716
  clusterName: str
@@ -780,7 +786,7 @@ class ListUpdatesRequestRequestTypeDef(TypedDict):
780
786
  LogSetupOutputTypeDef = TypedDict(
781
787
  "LogSetupOutputTypeDef",
782
788
  {
783
- "types": NotRequired[list[LogTypeType]],
789
+ "types": NotRequired[List[LogTypeType]],
784
790
  "enabled": NotRequired[bool],
785
791
  },
786
792
  )
@@ -794,13 +800,13 @@ LogSetupTypeDef = TypedDict(
794
800
 
795
801
  class RemoteAccessConfigOutputTypeDef(TypedDict):
796
802
  ec2SshKey: NotRequired[str]
797
- sourceSecurityGroups: NotRequired[list[str]]
803
+ sourceSecurityGroups: NotRequired[List[str]]
798
804
 
799
805
  class RemoteNodeNetworkOutputTypeDef(TypedDict):
800
- cidrs: NotRequired[list[str]]
806
+ cidrs: NotRequired[List[str]]
801
807
 
802
808
  class RemotePodNetworkOutputTypeDef(TypedDict):
803
- cidrs: NotRequired[list[str]]
809
+ cidrs: NotRequired[List[str]]
804
810
 
805
811
  class RemoteNodeNetworkTypeDef(TypedDict):
806
812
  cidrs: NotRequired[Sequence[str]]
@@ -871,7 +877,7 @@ class AssociateAccessPolicyRequestRequestTypeDef(TypedDict):
871
877
  accessScope: AccessScopeTypeDef
872
878
 
873
879
  class AddonHealthTypeDef(TypedDict):
874
- issues: NotRequired[list[AddonIssueTypeDef]]
880
+ issues: NotRequired[List[AddonIssueTypeDef]]
875
881
 
876
882
  class CreateAddonRequestRequestTypeDef(TypedDict):
877
883
  clusterName: str
@@ -896,9 +902,9 @@ class UpdateAddonRequestRequestTypeDef(TypedDict):
896
902
 
897
903
  class AddonVersionInfoTypeDef(TypedDict):
898
904
  addonVersion: NotRequired[str]
899
- architecture: NotRequired[list[str]]
900
- computeTypes: NotRequired[list[str]]
901
- compatibilities: NotRequired[list[CompatibilityTypeDef]]
905
+ architecture: NotRequired[List[str]]
906
+ computeTypes: NotRequired[List[str]]
907
+ compatibilities: NotRequired[List[CompatibilityTypeDef]]
902
908
  requiresConfiguration: NotRequired[bool]
903
909
  requiresIamPermissions: NotRequired[bool]
904
910
 
@@ -914,45 +920,45 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
914
920
  addonName: str
915
921
  addonVersion: str
916
922
  configurationSchema: str
917
- podIdentityConfiguration: list[AddonPodIdentityConfigurationTypeDef]
923
+ podIdentityConfiguration: List[AddonPodIdentityConfigurationTypeDef]
918
924
  ResponseMetadata: ResponseMetadataTypeDef
919
925
 
920
926
  class ListAccessEntriesResponseTypeDef(TypedDict):
921
- accessEntries: list[str]
927
+ accessEntries: List[str]
922
928
  ResponseMetadata: ResponseMetadataTypeDef
923
929
  nextToken: NotRequired[str]
924
930
 
925
931
  class ListAccessPoliciesResponseTypeDef(TypedDict):
926
- accessPolicies: list[AccessPolicyTypeDef]
932
+ accessPolicies: List[AccessPolicyTypeDef]
927
933
  ResponseMetadata: ResponseMetadataTypeDef
928
934
  nextToken: NotRequired[str]
929
935
 
930
936
  class ListAddonsResponseTypeDef(TypedDict):
931
- addons: list[str]
937
+ addons: List[str]
932
938
  ResponseMetadata: ResponseMetadataTypeDef
933
939
  nextToken: NotRequired[str]
934
940
 
935
941
  class ListClustersResponseTypeDef(TypedDict):
936
- clusters: list[str]
942
+ clusters: List[str]
937
943
  ResponseMetadata: ResponseMetadataTypeDef
938
944
  nextToken: NotRequired[str]
939
945
 
940
946
  class ListFargateProfilesResponseTypeDef(TypedDict):
941
- fargateProfileNames: list[str]
947
+ fargateProfileNames: List[str]
942
948
  ResponseMetadata: ResponseMetadataTypeDef
943
949
  nextToken: NotRequired[str]
944
950
 
945
951
  class ListNodegroupsResponseTypeDef(TypedDict):
946
- nodegroups: list[str]
952
+ nodegroups: List[str]
947
953
  ResponseMetadata: ResponseMetadataTypeDef
948
954
  nextToken: NotRequired[str]
949
955
 
950
956
  class ListTagsForResourceResponseTypeDef(TypedDict):
951
- tags: dict[str, str]
957
+ tags: Dict[str, str]
952
958
  ResponseMetadata: ResponseMetadataTypeDef
953
959
 
954
960
  class ListUpdatesResponseTypeDef(TypedDict):
955
- updateIds: list[str]
961
+ updateIds: List[str]
956
962
  ResponseMetadata: ResponseMetadataTypeDef
957
963
  nextToken: NotRequired[str]
958
964
 
@@ -967,7 +973,7 @@ class AssociateIdentityProviderConfigRequestRequestTypeDef(TypedDict):
967
973
  clientRequestToken: NotRequired[str]
968
974
 
969
975
  class NodegroupResourcesTypeDef(TypedDict):
970
- autoScalingGroups: NotRequired[list[AutoScalingGroupTypeDef]]
976
+ autoScalingGroups: NotRequired[List[AutoScalingGroupTypeDef]]
971
977
  remoteAccessSecurityGroup: NotRequired[str]
972
978
 
973
979
  class StorageConfigRequestTypeDef(TypedDict):
@@ -981,13 +987,13 @@ class DeprecationDetailTypeDef(TypedDict):
981
987
  replacedWith: NotRequired[str]
982
988
  stopServingVersion: NotRequired[str]
983
989
  startServingReplacementVersion: NotRequired[str]
984
- clientStats: NotRequired[list[ClientStatTypeDef]]
990
+ clientStats: NotRequired[List[ClientStatTypeDef]]
985
991
 
986
992
  class ClusterHealthTypeDef(TypedDict):
987
- issues: NotRequired[list[ClusterIssueTypeDef]]
993
+ issues: NotRequired[List[ClusterIssueTypeDef]]
988
994
 
989
995
  class DescribeClusterVersionsResponseTypeDef(TypedDict):
990
- clusterVersions: list[ClusterVersionInformationTypeDef]
996
+ clusterVersions: List[ClusterVersionInformationTypeDef]
991
997
  ResponseMetadata: ResponseMetadataTypeDef
992
998
  nextToken: NotRequired[str]
993
999
 
@@ -1003,7 +1009,7 @@ class OutpostConfigRequestTypeDef(TypedDict):
1003
1009
  controlPlanePlacement: NotRequired[ControlPlanePlacementRequestTypeDef]
1004
1010
 
1005
1011
  class OutpostConfigResponseTypeDef(TypedDict):
1006
- outpostArns: list[str]
1012
+ outpostArns: List[str]
1007
1013
  controlPlaneInstanceType: str
1008
1014
  controlPlanePlacement: NotRequired[ControlPlanePlacementResponseTypeDef]
1009
1015
 
@@ -1029,8 +1035,8 @@ EksAnywhereSubscriptionTypeDef = TypedDict(
1029
1035
  "term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
1030
1036
  "status": NotRequired[str],
1031
1037
  "autoRenew": NotRequired[bool],
1032
- "licenseArns": NotRequired[list[str]],
1033
- "tags": NotRequired[dict[str, str]],
1038
+ "licenseArns": NotRequired[List[str]],
1039
+ "tags": NotRequired[Dict[str, str]],
1034
1040
  },
1035
1041
  )
1036
1042
 
@@ -1182,7 +1188,7 @@ class DisassociateIdentityProviderConfigRequestRequestTypeDef(TypedDict):
1182
1188
  clientRequestToken: NotRequired[str]
1183
1189
 
1184
1190
  class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
1185
- identityProviderConfigs: list[IdentityProviderConfigTypeDef]
1191
+ identityProviderConfigs: List[IdentityProviderConfigTypeDef]
1186
1192
  ResponseMetadata: ResponseMetadataTypeDef
1187
1193
  nextToken: NotRequired[str]
1188
1194
 
@@ -1198,7 +1204,7 @@ class KubernetesNetworkConfigResponseTypeDef(TypedDict):
1198
1204
  elasticLoadBalancing: NotRequired[ElasticLoadBalancingTypeDef]
1199
1205
 
1200
1206
  class EncryptionConfigOutputTypeDef(TypedDict):
1201
- resources: NotRequired[list[str]]
1207
+ resources: NotRequired[List[str]]
1202
1208
  provider: NotRequired[ProviderTypeDef]
1203
1209
 
1204
1210
  class EncryptionConfigTypeDef(TypedDict):
@@ -1206,7 +1212,7 @@ class EncryptionConfigTypeDef(TypedDict):
1206
1212
  provider: NotRequired[ProviderTypeDef]
1207
1213
 
1208
1214
  class FargateProfileHealthTypeDef(TypedDict):
1209
- issues: NotRequired[list[FargateProfileIssueTypeDef]]
1215
+ issues: NotRequired[List[FargateProfileIssueTypeDef]]
1210
1216
 
1211
1217
  FargateProfileSelectorUnionTypeDef = Union[
1212
1218
  FargateProfileSelectorTypeDef, FargateProfileSelectorOutputTypeDef
@@ -1255,21 +1261,21 @@ ListInsightsRequestRequestTypeDef = TypedDict(
1255
1261
  )
1256
1262
 
1257
1263
  class NodegroupHealthTypeDef(TypedDict):
1258
- issues: NotRequired[list[IssueTypeDef]]
1264
+ issues: NotRequired[List[IssueTypeDef]]
1259
1265
 
1260
1266
  class ListPodIdentityAssociationsResponseTypeDef(TypedDict):
1261
- associations: list[PodIdentityAssociationSummaryTypeDef]
1267
+ associations: List[PodIdentityAssociationSummaryTypeDef]
1262
1268
  ResponseMetadata: ResponseMetadataTypeDef
1263
1269
  nextToken: NotRequired[str]
1264
1270
 
1265
1271
  class LoggingOutputTypeDef(TypedDict):
1266
- clusterLogging: NotRequired[list[LogSetupOutputTypeDef]]
1272
+ clusterLogging: NotRequired[List[LogSetupOutputTypeDef]]
1267
1273
 
1268
1274
  LogSetupUnionTypeDef = Union[LogSetupTypeDef, LogSetupOutputTypeDef]
1269
1275
 
1270
1276
  class RemoteNetworkConfigResponseTypeDef(TypedDict):
1271
- remoteNodeNetworks: NotRequired[list[RemoteNodeNetworkOutputTypeDef]]
1272
- remotePodNetworks: NotRequired[list[RemotePodNetworkOutputTypeDef]]
1277
+ remoteNodeNetworks: NotRequired[List[RemoteNodeNetworkOutputTypeDef]]
1278
+ remotePodNetworks: NotRequired[List[RemotePodNetworkOutputTypeDef]]
1273
1279
 
1274
1280
  RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
1275
1281
  RemotePodNetworkUnionTypeDef = Union[RemotePodNetworkTypeDef, RemotePodNetworkOutputTypeDef]
@@ -1279,9 +1285,9 @@ UpdateTypeDef = TypedDict(
1279
1285
  "id": NotRequired[str],
1280
1286
  "status": NotRequired[UpdateStatusType],
1281
1287
  "type": NotRequired[UpdateTypeType],
1282
- "params": NotRequired[list[UpdateParamTypeDef]],
1288
+ "params": NotRequired[List[UpdateParamTypeDef]],
1283
1289
  "createdAt": NotRequired[datetime],
1284
- "errors": NotRequired[list[ErrorDetailTypeDef]],
1290
+ "errors": NotRequired[List[ErrorDetailTypeDef]],
1285
1291
  },
1286
1292
  )
1287
1293
 
@@ -1294,7 +1300,7 @@ class AssociateAccessPolicyResponseTypeDef(TypedDict):
1294
1300
  class ListAssociatedAccessPoliciesResponseTypeDef(TypedDict):
1295
1301
  clusterName: str
1296
1302
  principalArn: str
1297
- associatedAccessPolicies: list[AssociatedAccessPolicyTypeDef]
1303
+ associatedAccessPolicies: List[AssociatedAccessPolicyTypeDef]
1298
1304
  ResponseMetadata: ResponseMetadataTypeDef
1299
1305
  nextToken: NotRequired[str]
1300
1306
 
@@ -1308,19 +1314,19 @@ class AddonTypeDef(TypedDict):
1308
1314
  createdAt: NotRequired[datetime]
1309
1315
  modifiedAt: NotRequired[datetime]
1310
1316
  serviceAccountRoleArn: NotRequired[str]
1311
- tags: NotRequired[dict[str, str]]
1317
+ tags: NotRequired[Dict[str, str]]
1312
1318
  publisher: NotRequired[str]
1313
1319
  owner: NotRequired[str]
1314
1320
  marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
1315
1321
  configurationValues: NotRequired[str]
1316
- podIdentityAssociations: NotRequired[list[str]]
1322
+ podIdentityAssociations: NotRequired[List[str]]
1317
1323
 
1318
1324
  AddonInfoTypeDef = TypedDict(
1319
1325
  "AddonInfoTypeDef",
1320
1326
  {
1321
1327
  "addonName": NotRequired[str],
1322
1328
  "type": NotRequired[str],
1323
- "addonVersions": NotRequired[list[AddonVersionInfoTypeDef]],
1329
+ "addonVersions": NotRequired[List[AddonVersionInfoTypeDef]],
1324
1330
  "publisher": NotRequired[str],
1325
1331
  "owner": NotRequired[str],
1326
1332
  "marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
@@ -1328,8 +1334,8 @@ AddonInfoTypeDef = TypedDict(
1328
1334
  )
1329
1335
 
1330
1336
  class InsightCategorySpecificSummaryTypeDef(TypedDict):
1331
- deprecationDetails: NotRequired[list[DeprecationDetailTypeDef]]
1332
- addonCompatibilityDetails: NotRequired[list[AddonCompatibilityDetailTypeDef]]
1337
+ deprecationDetails: NotRequired[List[DeprecationDetailTypeDef]]
1338
+ addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
1333
1339
 
1334
1340
  class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
1335
1341
  subscription: EksAnywhereSubscriptionTypeDef
@@ -1344,7 +1350,7 @@ class DescribeEksAnywhereSubscriptionResponseTypeDef(TypedDict):
1344
1350
  ResponseMetadata: ResponseMetadataTypeDef
1345
1351
 
1346
1352
  class ListEksAnywhereSubscriptionsResponseTypeDef(TypedDict):
1347
- subscriptions: list[EksAnywhereSubscriptionTypeDef]
1353
+ subscriptions: List[EksAnywhereSubscriptionTypeDef]
1348
1354
  ResponseMetadata: ResponseMetadataTypeDef
1349
1355
  nextToken: NotRequired[str]
1350
1356
 
@@ -1370,10 +1376,10 @@ class FargateProfileTypeDef(TypedDict):
1370
1376
  clusterName: NotRequired[str]
1371
1377
  createdAt: NotRequired[datetime]
1372
1378
  podExecutionRoleArn: NotRequired[str]
1373
- subnets: NotRequired[list[str]]
1374
- selectors: NotRequired[list[FargateProfileSelectorOutputTypeDef]]
1379
+ subnets: NotRequired[List[str]]
1380
+ selectors: NotRequired[List[FargateProfileSelectorOutputTypeDef]]
1375
1381
  status: NotRequired[FargateProfileStatusType]
1376
- tags: NotRequired[dict[str, str]]
1382
+ tags: NotRequired[Dict[str, str]]
1377
1383
  health: NotRequired[FargateProfileHealthTypeDef]
1378
1384
 
1379
1385
  class CreateFargateProfileRequestRequestTypeDef(TypedDict):
@@ -1390,7 +1396,7 @@ class DescribeIdentityProviderConfigResponseTypeDef(TypedDict):
1390
1396
  ResponseMetadata: ResponseMetadataTypeDef
1391
1397
 
1392
1398
  class ListInsightsResponseTypeDef(TypedDict):
1393
- insights: list[InsightSummaryTypeDef]
1399
+ insights: List[InsightSummaryTypeDef]
1394
1400
  ResponseMetadata: ResponseMetadataTypeDef
1395
1401
  nextToken: NotRequired[str]
1396
1402
 
@@ -1405,20 +1411,20 @@ class NodegroupTypeDef(TypedDict):
1405
1411
  status: NotRequired[NodegroupStatusType]
1406
1412
  capacityType: NotRequired[CapacityTypesType]
1407
1413
  scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
1408
- instanceTypes: NotRequired[list[str]]
1409
- subnets: NotRequired[list[str]]
1414
+ instanceTypes: NotRequired[List[str]]
1415
+ subnets: NotRequired[List[str]]
1410
1416
  remoteAccess: NotRequired[RemoteAccessConfigOutputTypeDef]
1411
1417
  amiType: NotRequired[AMITypesType]
1412
1418
  nodeRole: NotRequired[str]
1413
- labels: NotRequired[dict[str, str]]
1414
- taints: NotRequired[list[TaintTypeDef]]
1419
+ labels: NotRequired[Dict[str, str]]
1420
+ taints: NotRequired[List[TaintTypeDef]]
1415
1421
  resources: NotRequired[NodegroupResourcesTypeDef]
1416
1422
  diskSize: NotRequired[int]
1417
1423
  health: NotRequired[NodegroupHealthTypeDef]
1418
1424
  updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1419
1425
  nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1420
1426
  launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
1421
- tags: NotRequired[dict[str, str]]
1427
+ tags: NotRequired[Dict[str, str]]
1422
1428
 
1423
1429
  class LoggingTypeDef(TypedDict):
1424
1430
  clusterLogging: NotRequired[Sequence[LogSetupUnionTypeDef]]
@@ -1440,8 +1446,8 @@ ClusterTypeDef = TypedDict(
1440
1446
  "certificateAuthority": NotRequired[CertificateTypeDef],
1441
1447
  "clientRequestToken": NotRequired[str],
1442
1448
  "platformVersion": NotRequired[str],
1443
- "tags": NotRequired[dict[str, str]],
1444
- "encryptionConfig": NotRequired[list[EncryptionConfigOutputTypeDef]],
1449
+ "tags": NotRequired[Dict[str, str]],
1450
+ "encryptionConfig": NotRequired[List[EncryptionConfigOutputTypeDef]],
1445
1451
  "connectorConfig": NotRequired[ConnectorConfigResponseTypeDef],
1446
1452
  "id": NotRequired[str],
1447
1453
  "health": NotRequired[ClusterHealthTypeDef],
@@ -1465,7 +1471,7 @@ class AssociateEncryptionConfigResponseTypeDef(TypedDict):
1465
1471
 
1466
1472
  class AssociateIdentityProviderConfigResponseTypeDef(TypedDict):
1467
1473
  update: UpdateTypeDef
1468
- tags: dict[str, str]
1474
+ tags: Dict[str, str]
1469
1475
  ResponseMetadata: ResponseMetadataTypeDef
1470
1476
 
1471
1477
  class DescribeUpdateResponseTypeDef(TypedDict):
@@ -1509,7 +1515,7 @@ class DescribeAddonResponseTypeDef(TypedDict):
1509
1515
  ResponseMetadata: ResponseMetadataTypeDef
1510
1516
 
1511
1517
  class DescribeAddonVersionsResponseTypeDef(TypedDict):
1512
- addons: list[AddonInfoTypeDef]
1518
+ addons: List[AddonInfoTypeDef]
1513
1519
  ResponseMetadata: ResponseMetadataTypeDef
1514
1520
  nextToken: NotRequired[str]
1515
1521
 
@@ -1525,8 +1531,8 @@ InsightTypeDef = TypedDict(
1525
1531
  "description": NotRequired[str],
1526
1532
  "insightStatus": NotRequired[InsightStatusTypeDef],
1527
1533
  "recommendation": NotRequired[str],
1528
- "additionalInfo": NotRequired[dict[str, str]],
1529
- "resources": NotRequired[list[InsightResourceDetailTypeDef]],
1534
+ "additionalInfo": NotRequired[Dict[str, str]],
1535
+ "resources": NotRequired[List[InsightResourceDetailTypeDef]],
1530
1536
  "categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
1531
1537
  },
1532
1538
  )
mypy_boto3_eks/version.py CHANGED
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Source of truth for version.
3
3
 
4
- Copyright 2024 Vlad Emelianov
4
+ Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.35.87"
7
+ __version__ = "1.36.0"
mypy_boto3_eks/waiter.py CHANGED
@@ -33,7 +33,7 @@ Usage::
33
33
  nodegroup_deleted_waiter: NodegroupDeletedWaiter = client.get_waiter("nodegroup_deleted")
34
34
  ```
35
35
 
36
- Copyright 2024 Vlad Emelianov
36
+ Copyright 2025 Vlad Emelianov
37
37
  """
38
38
 
39
39
  from __future__ import annotations
mypy_boto3_eks/waiter.pyi CHANGED
@@ -33,7 +33,7 @@ Usage::
33
33
  nodegroup_deleted_waiter: NodegroupDeletedWaiter = client.get_waiter("nodegroup_deleted")
34
34
  ```
35
35
 
36
- Copyright 2024 Vlad Emelianov
36
+ Copyright 2025 Vlad Emelianov
37
37
  """
38
38
 
39
39
  from __future__ import annotations
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 Vlad Emelianov
3
+ Copyright (c) 2025 Vlad Emelianov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,7 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: mypy-boto3-eks
3
- Version: 1.35.87
4
- Summary: Type annotations for boto3 EKS 1.35.87 service generated with mypy-boto3-builder 8.7.0
3
+ Version: 1.36.0
4
+ Summary: Type annotations for boto3 EKS 1.36.0 service generated with mypy-boto3-builder 8.8.0
5
5
  Home-page: https://github.com/youtype/mypy_boto3_builder
6
6
  Author: Vlad Emelianov
7
7
  Author-email: vlad.emelianov.nz@gmail.com
@@ -30,7 +30,19 @@ Classifier: Typing :: Stubs Only
30
30
  Requires-Python: >=3.8
31
31
  Description-Content-Type: text/markdown
32
32
  License-File: LICENSE
33
- Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
33
+ 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
+ Dynamic: project-url
43
+ Dynamic: requires-dist
44
+ Dynamic: requires-python
45
+ Dynamic: summary
34
46
 
35
47
  <a id="mypy-boto3-eks"></a>
36
48
 
@@ -43,7 +55,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
43
55
 
44
56
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
57
 
46
- Type annotations for [boto3 EKS 1.35.87](https://pypi.org/project/boto3/)
58
+ Type annotations for [boto3 EKS 1.36.0](https://pypi.org/project/boto3/)
47
59
  compatible with [VSCode](https://code.visualstudio.com/),
48
60
  [PyCharm](https://www.jetbrains.com/pycharm/),
49
61
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -52,7 +64,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
52
64
  [pyright](https://github.com/microsoft/pyright) and other tools.
53
65
 
54
66
  Generated with
55
- [mypy-boto3-builder 8.7.0](https://github.com/youtype/mypy_boto3_builder).
67
+ [mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
56
68
 
57
69
  More information can be found on
58
70
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -106,7 +118,7 @@ You can generate type annotations for `boto3` package locally with
106
118
  isolation.
107
119
 
108
120
  1. Run mypy-boto3-builder in your package root directory:
109
- `uvx --with 'boto3==1.35.87' mypy_boto3_builder`
121
+ `uvx --with 'boto3==1.36.0' mypy_boto3_builder`
110
122
  2. Select `boto3-stubs` AWS SDK.
111
123
  3. Add `EKS` service.
112
124
  4. Use provided commands to install generated packages.
@@ -0,0 +1,20 @@
1
+ mypy_boto3_eks/__init__.py,sha256=k7jkN0D8tXCu1bvv62OSH4NhHwI3RDgwBlaspPCYcME,4989
2
+ mypy_boto3_eks/__init__.pyi,sha256=JfGYjQk-PMQEDF3MivQZnkaUjb8bGz0WTnRmxJ16FO0,4988
3
+ mypy_boto3_eks/__main__.py,sha256=rxKWQ0rb7rCBfR74nWm-524UH5typ4qxhTMnsm-91Yc,964
4
+ mypy_boto3_eks/client.py,sha256=_jLpGc6bfoKHJkHb_Q_rrL7yRTJASw9TJOfSBMOrV-8,50148
5
+ mypy_boto3_eks/client.pyi,sha256=YwWm0ssmLaMN87P7hRaLRFtA1gphtKA5cchkaUWTHbw,50145
6
+ mypy_boto3_eks/literals.py,sha256=W0x8Foxc8jJVosI9Xgu26pNry3tnQ4DCHPMOaqdliQc,19149
7
+ mypy_boto3_eks/literals.pyi,sha256=dHL9taoIzFt_bBDlOHmmKzAQe34nlguorqWUrB9vmXQ,19147
8
+ mypy_boto3_eks/paginator.py,sha256=sqrVkVSPAy6pg7pXzN7d1ZwG-525xvX7NdefCnt2wYo,20481
9
+ mypy_boto3_eks/paginator.pyi,sha256=qDVRb1dRlk76424SW8DJwo1ofS3ZGKpCgbvBLVgOzgc,20438
10
+ mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_eks/type_defs.py,sha256=uMAL98f_oV00RfsB9RwLArlMKtXH5eW3JEnxtGhJ6qI,55801
12
+ mypy_boto3_eks/type_defs.pyi,sha256=9LmXuHzkJ--v7_fm8gbf8LmUDftpJRKPKENFJEphpHk,55575
13
+ mypy_boto3_eks/version.py,sha256=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
14
+ mypy_boto3_eks/waiter.py,sha256=BwunFxeaJV0nUTRMxDOuwfhDZ3A3X4Lap65Ia9CpH3U,8461
15
+ mypy_boto3_eks/waiter.pyi,sha256=6N164eEvaEs9QZQLAq2X740Xo0lp2zdkuEqlawaww4M,8444
16
+ mypy_boto3_eks-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ mypy_boto3_eks-1.36.0.dist-info/METADATA,sha256=iTNZh-tKdF3farY8QW6XZxZ-r6V70bPVGBBecuKLuwE,17873
18
+ mypy_boto3_eks-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
19
+ mypy_boto3_eks-1.36.0.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
+ mypy_boto3_eks-1.36.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (75.8.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,20 +0,0 @@
1
- mypy_boto3_eks/__init__.py,sha256=BJxWwZMf3_mckreWS9llc6DssHcP8954L9IRnQEUEN8,4989
2
- mypy_boto3_eks/__init__.pyi,sha256=lIDjDX7nwJ-PSzKE6Vtdv0r18BdRet8WLiw8Tm60Cpc,4988
3
- mypy_boto3_eks/__main__.py,sha256=LccrMk5OPdJY2plLnHmzgsobVYNd1cXpjHlR6TnqOrU,967
4
- mypy_boto3_eks/client.py,sha256=X8XFKNLjOMVtXMDn5eHhdWMK2RNhKzCVBUme1EghAuw,49961
5
- mypy_boto3_eks/client.pyi,sha256=Z1ITE0fqnmwOqHoae-8Uoa8Ssu56nV4BNPSqAJQBhh8,49958
6
- mypy_boto3_eks/literals.py,sha256=loKQUnVEMhwmbw0wJleTW7ukRgJlzUo6E-Qgkik-_ks,19158
7
- mypy_boto3_eks/literals.pyi,sha256=Q3ySKw4vYWhpuW6tUhiI1jGUv1quDDl_Nv-2Ln9roLQ,19156
8
- mypy_boto3_eks/paginator.py,sha256=6w5ztf948YrIHwoFIZkQNnbhVlDVwpNESVC-bu3MOwU,20481
9
- mypy_boto3_eks/paginator.pyi,sha256=QR-sFh3tKoBaFBIqzn7eCVnkAwcm_uXgzGNy0uW2sHc,20438
10
- mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_eks/type_defs.py,sha256=VU4TOVKZaUosgUm85xKD12WU52gxNxjRejJEQzW0fS8,55604
12
- mypy_boto3_eks/type_defs.pyi,sha256=8PdvAA2GkC0DGSoYBK_K-7UycaGx7sFWq3dZakDEUQ0,55378
13
- mypy_boto3_eks/version.py,sha256=llkYdzVL-lBS7MVa7Af7LmykMnhfk_q9S4EthMGyjco,93
14
- mypy_boto3_eks/waiter.py,sha256=b2JbfeXUPoIMzoIrQddfoXz5E_1_koI6cAKqs8PK6Do,8461
15
- mypy_boto3_eks/waiter.pyi,sha256=KmQ0V-iy-S1kj_l_SX5daw-KyIkqALGZQMzMYavWTC4,8444
16
- mypy_boto3_eks-1.35.87.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
- mypy_boto3_eks-1.35.87.dist-info/METADATA,sha256=aNTy7z4q1TrMj0HzDb8QsXUkKWIV4ooNfK-W9E8mWRs,17631
18
- mypy_boto3_eks-1.35.87.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
19
- mypy_boto3_eks-1.35.87.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
- mypy_boto3_eks-1.35.87.dist-info/RECORD,,