mypy-boto3-eks 1.34.137__py3-none-any.whl → 1.34.149__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.
@@ -10,8 +10,8 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.EKS 1.34.137\n"
14
- "Version: 1.34.137\n"
13
+ "Type annotations for boto3.EKS 1.34.149\n"
14
+ "Version: 1.34.149\n"
15
15
  "Builder version: 7.25.0\n"
16
16
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks//\n"
17
17
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS\n"
@@ -24,7 +24,7 @@ def print_version() -> None:
24
24
  """
25
25
  Print package version to stdout.
26
26
  """
27
- print("1.34.137")
27
+ print("1.34.149")
28
28
 
29
29
 
30
30
  def main() -> None:
mypy_boto3_eks/client.py CHANGED
@@ -114,6 +114,7 @@ from .type_defs import (
114
114
  UpdateNodegroupVersionResponseTypeDef,
115
115
  UpdatePodIdentityAssociationResponseTypeDef,
116
116
  UpdateTaintsPayloadTypeDef,
117
+ UpgradePolicyRequestTypeDef,
117
118
  VpcConfigRequestTypeDef,
118
119
  )
119
120
  from .waiter import (
@@ -290,6 +291,7 @@ class EKSClient(BaseClient):
290
291
  outpostConfig: OutpostConfigRequestTypeDef = ...,
291
292
  accessConfig: CreateAccessConfigRequestTypeDef = ...,
292
293
  bootstrapSelfManagedAddons: bool = ...,
294
+ upgradePolicy: UpgradePolicyRequestTypeDef = ...,
293
295
  ) -> CreateClusterResponseTypeDef:
294
296
  """
295
297
  Creates an Amazon EKS control plane.
@@ -853,6 +855,7 @@ class EKSClient(BaseClient):
853
855
  logging: LoggingUnionTypeDef = ...,
854
856
  clientRequestToken: str = ...,
855
857
  accessConfig: UpdateAccessConfigRequestTypeDef = ...,
858
+ upgradePolicy: UpgradePolicyRequestTypeDef = ...,
856
859
  ) -> UpdateClusterConfigResponseTypeDef:
857
860
  """
858
861
  Updates an Amazon EKS cluster configuration.
mypy_boto3_eks/client.pyi CHANGED
@@ -114,6 +114,7 @@ from .type_defs import (
114
114
  UpdateNodegroupVersionResponseTypeDef,
115
115
  UpdatePodIdentityAssociationResponseTypeDef,
116
116
  UpdateTaintsPayloadTypeDef,
117
+ UpgradePolicyRequestTypeDef,
117
118
  VpcConfigRequestTypeDef,
118
119
  )
119
120
  from .waiter import (
@@ -287,6 +288,7 @@ class EKSClient(BaseClient):
287
288
  outpostConfig: OutpostConfigRequestTypeDef = ...,
288
289
  accessConfig: CreateAccessConfigRequestTypeDef = ...,
289
290
  bootstrapSelfManagedAddons: bool = ...,
291
+ upgradePolicy: UpgradePolicyRequestTypeDef = ...,
290
292
  ) -> CreateClusterResponseTypeDef:
291
293
  """
292
294
  Creates an Amazon EKS control plane.
@@ -850,6 +852,7 @@ class EKSClient(BaseClient):
850
852
  logging: LoggingUnionTypeDef = ...,
851
853
  clientRequestToken: str = ...,
852
854
  accessConfig: UpdateAccessConfigRequestTypeDef = ...,
855
+ upgradePolicy: UpgradePolicyRequestTypeDef = ...,
853
856
  ) -> UpdateClusterConfigResponseTypeDef:
854
857
  """
855
858
  Updates an Amazon EKS cluster configuration.
@@ -64,6 +64,7 @@ __all__ = (
64
64
  "NodegroupIssueCodeType",
65
65
  "NodegroupStatusType",
66
66
  "ResolveConflictsType",
67
+ "SupportTypeType",
67
68
  "TaintEffectType",
68
69
  "UpdateParamTypeType",
69
70
  "UpdateStatusType",
@@ -239,6 +240,7 @@ NodegroupStatusType = Literal[
239
240
  "ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
240
241
  ]
241
242
  ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
243
+ SupportTypeType = Literal["EXTENDED", "STANDARD"]
242
244
  TaintEffectType = Literal["NO_EXECUTE", "NO_SCHEDULE", "PREFER_NO_SCHEDULE"]
243
245
  UpdateParamTypeType = Literal[
244
246
  "AddonVersion",
@@ -268,6 +270,7 @@ UpdateParamTypeType = Literal[
268
270
  "Subnets",
269
271
  "TaintsToAdd",
270
272
  "TaintsToRemove",
273
+ "UpgradePolicy",
271
274
  "Version",
272
275
  ]
273
276
  UpdateStatusType = Literal["Cancelled", "Failed", "InProgress", "Successful"]
@@ -280,6 +283,7 @@ UpdateTypeType = Literal[
280
283
  "DisassociateIdentityProviderConfig",
281
284
  "EndpointAccessUpdate",
282
285
  "LoggingUpdate",
286
+ "UpgradePolicyUpdate",
283
287
  "VersionUpdate",
284
288
  "VpcConfigUpdate",
285
289
  ]
@@ -530,7 +534,6 @@ ServiceName = Literal[
530
534
  "migrationhub-config",
531
535
  "migrationhuborchestrator",
532
536
  "migrationhubstrategy",
533
- "mobile",
534
537
  "mq",
535
538
  "mturk",
536
539
  "mwaa",
@@ -568,6 +571,7 @@ ServiceName = Literal[
568
571
  "pricing",
569
572
  "privatenetworks",
570
573
  "proton",
574
+ "qapps",
571
575
  "qbusiness",
572
576
  "qconnect",
573
577
  "qldb",
@@ -64,6 +64,7 @@ __all__ = (
64
64
  "NodegroupIssueCodeType",
65
65
  "NodegroupStatusType",
66
66
  "ResolveConflictsType",
67
+ "SupportTypeType",
67
68
  "TaintEffectType",
68
69
  "UpdateParamTypeType",
69
70
  "UpdateStatusType",
@@ -239,6 +240,7 @@ NodegroupStatusType = Literal[
239
240
  "ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
240
241
  ]
241
242
  ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
243
+ SupportTypeType = Literal["EXTENDED", "STANDARD"]
242
244
  TaintEffectType = Literal["NO_EXECUTE", "NO_SCHEDULE", "PREFER_NO_SCHEDULE"]
243
245
  UpdateParamTypeType = Literal[
244
246
  "AddonVersion",
@@ -268,6 +270,7 @@ UpdateParamTypeType = Literal[
268
270
  "Subnets",
269
271
  "TaintsToAdd",
270
272
  "TaintsToRemove",
273
+ "UpgradePolicy",
271
274
  "Version",
272
275
  ]
273
276
  UpdateStatusType = Literal["Cancelled", "Failed", "InProgress", "Successful"]
@@ -280,6 +283,7 @@ UpdateTypeType = Literal[
280
283
  "DisassociateIdentityProviderConfig",
281
284
  "EndpointAccessUpdate",
282
285
  "LoggingUpdate",
286
+ "UpgradePolicyUpdate",
283
287
  "VersionUpdate",
284
288
  "VpcConfigUpdate",
285
289
  ]
@@ -530,7 +534,6 @@ ServiceName = Literal[
530
534
  "migrationhub-config",
531
535
  "migrationhuborchestrator",
532
536
  "migrationhubstrategy",
533
- "mobile",
534
537
  "mq",
535
538
  "mturk",
536
539
  "mwaa",
@@ -568,6 +571,7 @@ ServiceName = Literal[
568
571
  "pricing",
569
572
  "privatenetworks",
570
573
  "proton",
574
+ "qapps",
571
575
  "qbusiness",
572
576
  "qconnect",
573
577
  "qldb",
@@ -37,6 +37,7 @@ from .literals import (
37
37
  NodegroupIssueCodeType,
38
38
  NodegroupStatusType,
39
39
  ResolveConflictsType,
40
+ SupportTypeType,
40
41
  TaintEffectType,
41
42
  UpdateParamTypeType,
42
43
  UpdateStatusType,
@@ -76,6 +77,7 @@ __all__ = (
76
77
  "ClusterIssueTypeDef",
77
78
  "ConnectorConfigResponseTypeDef",
78
79
  "KubernetesNetworkConfigResponseTypeDef",
80
+ "UpgradePolicyResponseTypeDef",
79
81
  "VpcConfigResponseTypeDef",
80
82
  "ConnectorConfigRequestTypeDef",
81
83
  "ControlPlanePlacementRequestTypeDef",
@@ -83,6 +85,7 @@ __all__ = (
83
85
  "CreateAccessConfigRequestTypeDef",
84
86
  "CreateAccessEntryRequestRequestTypeDef",
85
87
  "KubernetesNetworkConfigRequestTypeDef",
88
+ "UpgradePolicyRequestTypeDef",
86
89
  "VpcConfigRequestTypeDef",
87
90
  "EksAnywhereSubscriptionTermTypeDef",
88
91
  "LaunchTemplateSpecificationTypeDef",
@@ -429,6 +432,12 @@ KubernetesNetworkConfigResponseTypeDef = TypedDict(
429
432
  "ipFamily": NotRequired[IpFamilyType],
430
433
  },
431
434
  )
435
+ UpgradePolicyResponseTypeDef = TypedDict(
436
+ "UpgradePolicyResponseTypeDef",
437
+ {
438
+ "supportType": NotRequired[SupportTypeType],
439
+ },
440
+ )
432
441
  VpcConfigResponseTypeDef = TypedDict(
433
442
  "VpcConfigResponseTypeDef",
434
443
  {
@@ -486,6 +495,12 @@ KubernetesNetworkConfigRequestTypeDef = TypedDict(
486
495
  "ipFamily": NotRequired[IpFamilyType],
487
496
  },
488
497
  )
498
+ UpgradePolicyRequestTypeDef = TypedDict(
499
+ "UpgradePolicyRequestTypeDef",
500
+ {
501
+ "supportType": NotRequired[SupportTypeType],
502
+ },
503
+ )
489
504
  VpcConfigRequestTypeDef = TypedDict(
490
505
  "VpcConfigRequestTypeDef",
491
506
  {
@@ -1815,6 +1830,7 @@ ClusterTypeDef = TypedDict(
1815
1830
  "health": NotRequired[ClusterHealthTypeDef],
1816
1831
  "outpostConfig": NotRequired[OutpostConfigResponseTypeDef],
1817
1832
  "accessConfig": NotRequired[AccessConfigResponseTypeDef],
1833
+ "upgradePolicy": NotRequired[UpgradePolicyResponseTypeDef],
1818
1834
  },
1819
1835
  )
1820
1836
  LoggingUnionTypeDef = Union[LoggingTypeDef, LoggingOutputTypeDef]
@@ -1826,6 +1842,7 @@ UpdateClusterConfigRequestRequestTypeDef = TypedDict(
1826
1842
  "logging": NotRequired[LoggingTypeDef],
1827
1843
  "clientRequestToken": NotRequired[str],
1828
1844
  "accessConfig": NotRequired[UpdateAccessConfigRequestTypeDef],
1845
+ "upgradePolicy": NotRequired[UpgradePolicyRequestTypeDef],
1829
1846
  },
1830
1847
  )
1831
1848
  AssociateEncryptionConfigResponseTypeDef = TypedDict(
@@ -1961,6 +1978,7 @@ CreateClusterRequestRequestTypeDef = TypedDict(
1961
1978
  "outpostConfig": NotRequired[OutpostConfigRequestTypeDef],
1962
1979
  "accessConfig": NotRequired[CreateAccessConfigRequestTypeDef],
1963
1980
  "bootstrapSelfManagedAddons": NotRequired[bool],
1981
+ "upgradePolicy": NotRequired[UpgradePolicyRequestTypeDef],
1964
1982
  },
1965
1983
  )
1966
1984
  CreateFargateProfileResponseTypeDef = TypedDict(
@@ -37,6 +37,7 @@ from .literals import (
37
37
  NodegroupIssueCodeType,
38
38
  NodegroupStatusType,
39
39
  ResolveConflictsType,
40
+ SupportTypeType,
40
41
  TaintEffectType,
41
42
  UpdateParamTypeType,
42
43
  UpdateStatusType,
@@ -76,6 +77,7 @@ __all__ = (
76
77
  "ClusterIssueTypeDef",
77
78
  "ConnectorConfigResponseTypeDef",
78
79
  "KubernetesNetworkConfigResponseTypeDef",
80
+ "UpgradePolicyResponseTypeDef",
79
81
  "VpcConfigResponseTypeDef",
80
82
  "ConnectorConfigRequestTypeDef",
81
83
  "ControlPlanePlacementRequestTypeDef",
@@ -83,6 +85,7 @@ __all__ = (
83
85
  "CreateAccessConfigRequestTypeDef",
84
86
  "CreateAccessEntryRequestRequestTypeDef",
85
87
  "KubernetesNetworkConfigRequestTypeDef",
88
+ "UpgradePolicyRequestTypeDef",
86
89
  "VpcConfigRequestTypeDef",
87
90
  "EksAnywhereSubscriptionTermTypeDef",
88
91
  "LaunchTemplateSpecificationTypeDef",
@@ -429,6 +432,12 @@ KubernetesNetworkConfigResponseTypeDef = TypedDict(
429
432
  "ipFamily": NotRequired[IpFamilyType],
430
433
  },
431
434
  )
435
+ UpgradePolicyResponseTypeDef = TypedDict(
436
+ "UpgradePolicyResponseTypeDef",
437
+ {
438
+ "supportType": NotRequired[SupportTypeType],
439
+ },
440
+ )
432
441
  VpcConfigResponseTypeDef = TypedDict(
433
442
  "VpcConfigResponseTypeDef",
434
443
  {
@@ -486,6 +495,12 @@ KubernetesNetworkConfigRequestTypeDef = TypedDict(
486
495
  "ipFamily": NotRequired[IpFamilyType],
487
496
  },
488
497
  )
498
+ UpgradePolicyRequestTypeDef = TypedDict(
499
+ "UpgradePolicyRequestTypeDef",
500
+ {
501
+ "supportType": NotRequired[SupportTypeType],
502
+ },
503
+ )
489
504
  VpcConfigRequestTypeDef = TypedDict(
490
505
  "VpcConfigRequestTypeDef",
491
506
  {
@@ -1815,6 +1830,7 @@ ClusterTypeDef = TypedDict(
1815
1830
  "health": NotRequired[ClusterHealthTypeDef],
1816
1831
  "outpostConfig": NotRequired[OutpostConfigResponseTypeDef],
1817
1832
  "accessConfig": NotRequired[AccessConfigResponseTypeDef],
1833
+ "upgradePolicy": NotRequired[UpgradePolicyResponseTypeDef],
1818
1834
  },
1819
1835
  )
1820
1836
  LoggingUnionTypeDef = Union[LoggingTypeDef, LoggingOutputTypeDef]
@@ -1826,6 +1842,7 @@ UpdateClusterConfigRequestRequestTypeDef = TypedDict(
1826
1842
  "logging": NotRequired[LoggingTypeDef],
1827
1843
  "clientRequestToken": NotRequired[str],
1828
1844
  "accessConfig": NotRequired[UpdateAccessConfigRequestTypeDef],
1845
+ "upgradePolicy": NotRequired[UpgradePolicyRequestTypeDef],
1829
1846
  },
1830
1847
  )
1831
1848
  AssociateEncryptionConfigResponseTypeDef = TypedDict(
@@ -1961,6 +1978,7 @@ CreateClusterRequestRequestTypeDef = TypedDict(
1961
1978
  "outpostConfig": NotRequired[OutpostConfigRequestTypeDef],
1962
1979
  "accessConfig": NotRequired[CreateAccessConfigRequestTypeDef],
1963
1980
  "bootstrapSelfManagedAddons": NotRequired[bool],
1981
+ "upgradePolicy": NotRequired[UpgradePolicyRequestTypeDef],
1964
1982
  },
1965
1983
  )
1966
1984
  CreateFargateProfileResponseTypeDef = TypedDict(
mypy_boto3_eks/version.py CHANGED
@@ -2,4 +2,4 @@
2
2
  Source of truth for version.
3
3
  """
4
4
 
5
- __version__ = "1.34.137"
5
+ __version__ = "1.34.149"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-eks
3
- Version: 1.34.137
4
- Summary: Type annotations for boto3.EKS 1.34.137 service generated with mypy-boto3-builder 7.25.0
3
+ Version: 1.34.149
4
+ Summary: Type annotations for boto3.EKS 1.34.149 service generated with mypy-boto3-builder 7.25.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
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
43
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
44
 
45
45
  Type annotations for
46
- [boto3.EKS 1.34.137](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS)
46
+ [boto3.EKS 1.34.149](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS)
47
47
  service compatible with [VSCode](https://code.visualstudio.com/),
48
48
  [PyCharm](https://www.jetbrains.com/pycharm/),
49
49
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -0,0 +1,20 @@
1
+ mypy_boto3_eks/__init__.py,sha256=E0bo5I6kWoDlOCMzx0dtxdOWp03U82Zv5m7lkQCqFaw,4711
2
+ mypy_boto3_eks/__init__.pyi,sha256=E0bo5I6kWoDlOCMzx0dtxdOWp03U82Zv5m7lkQCqFaw,4711
3
+ mypy_boto3_eks/__main__.py,sha256=HYjnur9ZsenZe2Qg-j2Z_m_vbSkwo-PokKkcn9vIun4,906
4
+ mypy_boto3_eks/client.py,sha256=YeDAB77sjnIrK378ZdoYXwwwd4r-ziN2ukUaj6OG4Hw,49604
5
+ mypy_boto3_eks/client.pyi,sha256=astjZIOIwsevlLHC5frD8BpuL5_03jBsAIXR60Hhqek,49601
6
+ mypy_boto3_eks/literals.py,sha256=xbKUDSKvpprsWqaAnZuWv0mfsVRASPRWIvcWxuSe0wE,18105
7
+ mypy_boto3_eks/literals.pyi,sha256=xbKUDSKvpprsWqaAnZuWv0mfsVRASPRWIvcWxuSe0wE,18105
8
+ mypy_boto3_eks/paginator.py,sha256=ptf2OcGXBuVX_-zrJ2f29-J_erT3gw4pO2M8AXAj5_o,15318
9
+ mypy_boto3_eks/paginator.pyi,sha256=XcevxKQBwCxr_KwAaoPOUelzSTyi_2YyeWGx4No2aAU,15304
10
+ mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_eks/type_defs.py,sha256=C3j3FSPIeT45P22WyqP3Yf4ioaXcKDuEQzP8G1LnygY,65941
12
+ mypy_boto3_eks/type_defs.pyi,sha256=C3j3FSPIeT45P22WyqP3Yf4ioaXcKDuEQzP8G1LnygY,65941
13
+ mypy_boto3_eks/version.py,sha256=NUmmMGfJVHUb9ZScdC6G3ugfXqDiAY3D1TxNRkf-Zj8,63
14
+ mypy_boto3_eks/waiter.py,sha256=l2bUEk99tON1KtebRkH1naSDvzdKHt_IMvGnQW6qxR8,7687
15
+ mypy_boto3_eks/waiter.pyi,sha256=JCEUhwc2KS5UvHUoRYmySgrbIRGtXdDznPK37A-_yAI,7679
16
+ mypy_boto3_eks-1.34.149.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
+ mypy_boto3_eks-1.34.149.dist-info/METADATA,sha256=xxzVDu3qX3H8zvM2q4_oA8LaicClrLkfQ2iAQH-IrGI,15627
18
+ mypy_boto3_eks-1.34.149.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
19
+ mypy_boto3_eks-1.34.149.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
+ mypy_boto3_eks-1.34.149.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.2.0)
2
+ Generator: setuptools (71.1.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=E0bo5I6kWoDlOCMzx0dtxdOWp03U82Zv5m7lkQCqFaw,4711
2
- mypy_boto3_eks/__init__.pyi,sha256=E0bo5I6kWoDlOCMzx0dtxdOWp03U82Zv5m7lkQCqFaw,4711
3
- mypy_boto3_eks/__main__.py,sha256=UFPORkuL6lcb7vUUmkLXFDVcqSSZJ9LsztXiWN9JCh4,906
4
- mypy_boto3_eks/client.py,sha256=k39Vg2GNXtvGl1g9J4eLCWxG0PAkf5VMIQGmilMLkhA,49455
5
- mypy_boto3_eks/client.pyi,sha256=PqQvVOMNZPfst8_LWUZmaqQm7kaeF2CVnWV7dlFK9q4,49452
6
- mypy_boto3_eks/literals.py,sha256=yJ4OQC3ewTukB1xQgDszal0fNgiqKVYE_hrd-KME9RM,17985
7
- mypy_boto3_eks/literals.pyi,sha256=yJ4OQC3ewTukB1xQgDszal0fNgiqKVYE_hrd-KME9RM,17985
8
- mypy_boto3_eks/paginator.py,sha256=ptf2OcGXBuVX_-zrJ2f29-J_erT3gw4pO2M8AXAj5_o,15318
9
- mypy_boto3_eks/paginator.pyi,sha256=XcevxKQBwCxr_KwAaoPOUelzSTyi_2YyeWGx4No2aAU,15304
10
- mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_eks/type_defs.py,sha256=03l4YArdWBpjvTYkLqajFb6ruSRJWpfS5OWrovB5gyo,65357
12
- mypy_boto3_eks/type_defs.pyi,sha256=03l4YArdWBpjvTYkLqajFb6ruSRJWpfS5OWrovB5gyo,65357
13
- mypy_boto3_eks/version.py,sha256=JcmeSya0J_TNt44PjVB9DQ5zDxojFX29r2qaApaxTe4,63
14
- mypy_boto3_eks/waiter.py,sha256=l2bUEk99tON1KtebRkH1naSDvzdKHt_IMvGnQW6qxR8,7687
15
- mypy_boto3_eks/waiter.pyi,sha256=JCEUhwc2KS5UvHUoRYmySgrbIRGtXdDznPK37A-_yAI,7679
16
- mypy_boto3_eks-1.34.137.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
- mypy_boto3_eks-1.34.137.dist-info/METADATA,sha256=ezQWC3ROiz10AAQryPI49uE40CUL8IgIped85EX7IWo,15627
18
- mypy_boto3_eks-1.34.137.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
19
- mypy_boto3_eks-1.34.137.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
- mypy_boto3_eks-1.34.137.dist-info/RECORD,,