mypy-boto3-eks 1.37.0__py3-none-any.whl → 1.37.20__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.
@@ -12,9 +12,9 @@ def print_info() -> None:
12
12
  Print package info to stdout.
13
13
  """
14
14
  sys.stdout.write(
15
- "Type annotations for boto3 EKS 1.37.0\n"
16
- "Version: 1.37.0\n"
17
- "Builder version: 8.9.2\n"
15
+ "Type annotations for boto3 EKS 1.37.20\n"
16
+ "Version: 1.37.20\n"
17
+ "Builder version: 8.10.1\n"
18
18
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks//\n"
19
19
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#eks\n"
20
20
  "Other services: https://pypi.org/project/boto3-stubs/\n"
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- sys.stdout.write("1.37.0\n")
29
+ sys.stdout.write("1.37.20\n")
30
30
 
31
31
 
32
32
  def main() -> None:
mypy_boto3_eks/client.py CHANGED
@@ -186,6 +186,7 @@ class Exceptions(BaseClientExceptions):
186
186
  ClientException: Type[BotocoreClientError]
187
187
  InvalidParameterException: Type[BotocoreClientError]
188
188
  InvalidRequestException: Type[BotocoreClientError]
189
+ InvalidStateException: Type[BotocoreClientError]
189
190
  NotFoundException: Type[BotocoreClientError]
190
191
  ResourceInUseException: Type[BotocoreClientError]
191
192
  ResourceLimitExceededException: Type[BotocoreClientError]
@@ -193,6 +194,7 @@ class Exceptions(BaseClientExceptions):
193
194
  ResourcePropagationDelayException: Type[BotocoreClientError]
194
195
  ServerException: Type[BotocoreClientError]
195
196
  ServiceUnavailableException: Type[BotocoreClientError]
197
+ ThrottlingException: Type[BotocoreClientError]
196
198
  UnsupportedAvailabilityZoneException: Type[BotocoreClientError]
197
199
 
198
200
 
mypy_boto3_eks/client.pyi CHANGED
@@ -184,6 +184,7 @@ class Exceptions(BaseClientExceptions):
184
184
  ClientException: Type[BotocoreClientError]
185
185
  InvalidParameterException: Type[BotocoreClientError]
186
186
  InvalidRequestException: Type[BotocoreClientError]
187
+ InvalidStateException: Type[BotocoreClientError]
187
188
  NotFoundException: Type[BotocoreClientError]
188
189
  ResourceInUseException: Type[BotocoreClientError]
189
190
  ResourceLimitExceededException: Type[BotocoreClientError]
@@ -191,6 +192,7 @@ class Exceptions(BaseClientExceptions):
191
192
  ResourcePropagationDelayException: Type[BotocoreClientError]
192
193
  ServerException: Type[BotocoreClientError]
193
194
  ServiceUnavailableException: Type[BotocoreClientError]
195
+ ThrottlingException: Type[BotocoreClientError]
194
196
  UnsupportedAvailabilityZoneException: Type[BotocoreClientError]
195
197
 
196
198
  class EKSClient(BaseClient):
@@ -467,6 +467,7 @@ ServiceName = Literal[
467
467
  "freetier",
468
468
  "fsx",
469
469
  "gamelift",
470
+ "gameliftstreams",
470
471
  "geo-maps",
471
472
  "geo-places",
472
473
  "geo-routes",
@@ -492,6 +493,7 @@ ServiceName = Literal[
492
493
  "iot",
493
494
  "iot-data",
494
495
  "iot-jobs-data",
496
+ "iot-managed-integrations",
495
497
  "iotanalytics",
496
498
  "iotdeviceadvisor",
497
499
  "iotevents",
@@ -465,6 +465,7 @@ ServiceName = Literal[
465
465
  "freetier",
466
466
  "fsx",
467
467
  "gamelift",
468
+ "gameliftstreams",
468
469
  "geo-maps",
469
470
  "geo-places",
470
471
  "geo-routes",
@@ -490,6 +491,7 @@ ServiceName = Literal[
490
491
  "iot",
491
492
  "iot-data",
492
493
  "iot-jobs-data",
494
+ "iot-managed-integrations",
493
495
  "iotanalytics",
494
496
  "iotdeviceadvisor",
495
497
  "iotevents",
@@ -196,6 +196,7 @@ __all__ = (
196
196
  "KubernetesNetworkConfigRequestTypeDef",
197
197
  "KubernetesNetworkConfigResponseTypeDef",
198
198
  "LaunchTemplateSpecificationTypeDef",
199
+ "LicenseTypeDef",
199
200
  "ListAccessEntriesRequestPaginateTypeDef",
200
201
  "ListAccessEntriesRequestTypeDef",
201
202
  "ListAccessEntriesResponseTypeDef",
@@ -729,6 +730,15 @@ class DisassociateAccessPolicyRequestTypeDef(TypedDict):
729
730
  policyArn: str
730
731
 
731
732
 
733
+ LicenseTypeDef = TypedDict(
734
+ "LicenseTypeDef",
735
+ {
736
+ "id": NotRequired[str],
737
+ "token": NotRequired[str],
738
+ },
739
+ )
740
+
741
+
732
742
  class ElasticLoadBalancingTypeDef(TypedDict):
733
743
  enabled: NotRequired[bool]
734
744
 
@@ -947,6 +957,7 @@ class UpdateClusterVersionRequestTypeDef(TypedDict):
947
957
  name: str
948
958
  version: str
949
959
  clientRequestToken: NotRequired[str]
960
+ force: NotRequired[bool]
950
961
 
951
962
 
952
963
  UpdateEksAnywhereSubscriptionRequestTypeDef = TypedDict(
@@ -1163,25 +1174,6 @@ class CreateEksAnywhereSubscriptionRequestTypeDef(TypedDict):
1163
1174
  tags: NotRequired[Mapping[str, str]]
1164
1175
 
1165
1176
 
1166
- EksAnywhereSubscriptionTypeDef = TypedDict(
1167
- "EksAnywhereSubscriptionTypeDef",
1168
- {
1169
- "id": NotRequired[str],
1170
- "arn": NotRequired[str],
1171
- "createdAt": NotRequired[datetime],
1172
- "effectiveDate": NotRequired[datetime],
1173
- "expirationDate": NotRequired[datetime],
1174
- "licenseQuantity": NotRequired[int],
1175
- "licenseType": NotRequired[Literal["Cluster"]],
1176
- "term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
1177
- "status": NotRequired[str],
1178
- "autoRenew": NotRequired[bool],
1179
- "licenseArns": NotRequired[List[str]],
1180
- "tags": NotRequired[Dict[str, str]],
1181
- },
1182
- )
1183
-
1184
-
1185
1177
  class UpdateNodegroupVersionRequestTypeDef(TypedDict):
1186
1178
  clusterName: str
1187
1179
  nodegroupName: str
@@ -1363,6 +1355,26 @@ class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
1363
1355
  nextToken: NotRequired[str]
1364
1356
 
1365
1357
 
1358
+ EksAnywhereSubscriptionTypeDef = TypedDict(
1359
+ "EksAnywhereSubscriptionTypeDef",
1360
+ {
1361
+ "id": NotRequired[str],
1362
+ "arn": NotRequired[str],
1363
+ "createdAt": NotRequired[datetime],
1364
+ "effectiveDate": NotRequired[datetime],
1365
+ "expirationDate": NotRequired[datetime],
1366
+ "licenseQuantity": NotRequired[int],
1367
+ "licenseType": NotRequired[Literal["Cluster"]],
1368
+ "term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
1369
+ "status": NotRequired[str],
1370
+ "autoRenew": NotRequired[bool],
1371
+ "licenseArns": NotRequired[List[str]],
1372
+ "licenses": NotRequired[List[LicenseTypeDef]],
1373
+ "tags": NotRequired[Dict[str, str]],
1374
+ },
1375
+ )
1376
+
1377
+
1366
1378
  class KubernetesNetworkConfigRequestTypeDef(TypedDict):
1367
1379
  serviceIpv4Cidr: NotRequired[str]
1368
1380
  ipFamily: NotRequired[IpFamilyType]
@@ -1540,6 +1552,17 @@ class InsightCategorySpecificSummaryTypeDef(TypedDict):
1540
1552
  addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
1541
1553
 
1542
1554
 
1555
+ class UpdateNodegroupConfigRequestTypeDef(TypedDict):
1556
+ clusterName: str
1557
+ nodegroupName: str
1558
+ labels: NotRequired[UpdateLabelsPayloadTypeDef]
1559
+ taints: NotRequired[UpdateTaintsPayloadTypeDef]
1560
+ scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
1561
+ updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1562
+ nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1563
+ clientRequestToken: NotRequired[str]
1564
+
1565
+
1543
1566
  class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
1544
1567
  subscription: EksAnywhereSubscriptionTypeDef
1545
1568
  ResponseMetadata: ResponseMetadataTypeDef
@@ -1566,17 +1589,6 @@ class UpdateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
1566
1589
  ResponseMetadata: ResponseMetadataTypeDef
1567
1590
 
1568
1591
 
1569
- class UpdateNodegroupConfigRequestTypeDef(TypedDict):
1570
- clusterName: str
1571
- nodegroupName: str
1572
- labels: NotRequired[UpdateLabelsPayloadTypeDef]
1573
- taints: NotRequired[UpdateTaintsPayloadTypeDef]
1574
- scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
1575
- updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1576
- nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1577
- clientRequestToken: NotRequired[str]
1578
-
1579
-
1580
1592
  EncryptionConfigUnionTypeDef = Union[EncryptionConfigTypeDef, EncryptionConfigOutputTypeDef]
1581
1593
 
1582
1594
 
@@ -195,6 +195,7 @@ __all__ = (
195
195
  "KubernetesNetworkConfigRequestTypeDef",
196
196
  "KubernetesNetworkConfigResponseTypeDef",
197
197
  "LaunchTemplateSpecificationTypeDef",
198
+ "LicenseTypeDef",
198
199
  "ListAccessEntriesRequestPaginateTypeDef",
199
200
  "ListAccessEntriesRequestTypeDef",
200
201
  "ListAccessEntriesResponseTypeDef",
@@ -664,6 +665,14 @@ class DisassociateAccessPolicyRequestTypeDef(TypedDict):
664
665
  principalArn: str
665
666
  policyArn: str
666
667
 
668
+ LicenseTypeDef = TypedDict(
669
+ "LicenseTypeDef",
670
+ {
671
+ "id": NotRequired[str],
672
+ "token": NotRequired[str],
673
+ },
674
+ )
675
+
667
676
  class ElasticLoadBalancingTypeDef(TypedDict):
668
677
  enabled: NotRequired[bool]
669
678
 
@@ -847,6 +856,7 @@ class UpdateClusterVersionRequestTypeDef(TypedDict):
847
856
  name: str
848
857
  version: str
849
858
  clientRequestToken: NotRequired[str]
859
+ force: NotRequired[bool]
850
860
 
851
861
  UpdateEksAnywhereSubscriptionRequestTypeDef = TypedDict(
852
862
  "UpdateEksAnywhereSubscriptionRequestTypeDef",
@@ -1029,24 +1039,6 @@ class CreateEksAnywhereSubscriptionRequestTypeDef(TypedDict):
1029
1039
  clientRequestToken: NotRequired[str]
1030
1040
  tags: NotRequired[Mapping[str, str]]
1031
1041
 
1032
- EksAnywhereSubscriptionTypeDef = TypedDict(
1033
- "EksAnywhereSubscriptionTypeDef",
1034
- {
1035
- "id": NotRequired[str],
1036
- "arn": NotRequired[str],
1037
- "createdAt": NotRequired[datetime],
1038
- "effectiveDate": NotRequired[datetime],
1039
- "expirationDate": NotRequired[datetime],
1040
- "licenseQuantity": NotRequired[int],
1041
- "licenseType": NotRequired[Literal["Cluster"]],
1042
- "term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
1043
- "status": NotRequired[str],
1044
- "autoRenew": NotRequired[bool],
1045
- "licenseArns": NotRequired[List[str]],
1046
- "tags": NotRequired[Dict[str, str]],
1047
- },
1048
- )
1049
-
1050
1042
  class UpdateNodegroupVersionRequestTypeDef(TypedDict):
1051
1043
  clusterName: str
1052
1044
  nodegroupName: str
@@ -1198,6 +1190,25 @@ class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
1198
1190
  ResponseMetadata: ResponseMetadataTypeDef
1199
1191
  nextToken: NotRequired[str]
1200
1192
 
1193
+ EksAnywhereSubscriptionTypeDef = TypedDict(
1194
+ "EksAnywhereSubscriptionTypeDef",
1195
+ {
1196
+ "id": NotRequired[str],
1197
+ "arn": NotRequired[str],
1198
+ "createdAt": NotRequired[datetime],
1199
+ "effectiveDate": NotRequired[datetime],
1200
+ "expirationDate": NotRequired[datetime],
1201
+ "licenseQuantity": NotRequired[int],
1202
+ "licenseType": NotRequired[Literal["Cluster"]],
1203
+ "term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
1204
+ "status": NotRequired[str],
1205
+ "autoRenew": NotRequired[bool],
1206
+ "licenseArns": NotRequired[List[str]],
1207
+ "licenses": NotRequired[List[LicenseTypeDef]],
1208
+ "tags": NotRequired[Dict[str, str]],
1209
+ },
1210
+ )
1211
+
1201
1212
  class KubernetesNetworkConfigRequestTypeDef(TypedDict):
1202
1213
  serviceIpv4Cidr: NotRequired[str]
1203
1214
  ipFamily: NotRequired[IpFamilyType]
@@ -1352,6 +1363,16 @@ class InsightCategorySpecificSummaryTypeDef(TypedDict):
1352
1363
  deprecationDetails: NotRequired[List[DeprecationDetailTypeDef]]
1353
1364
  addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
1354
1365
 
1366
+ class UpdateNodegroupConfigRequestTypeDef(TypedDict):
1367
+ clusterName: str
1368
+ nodegroupName: str
1369
+ labels: NotRequired[UpdateLabelsPayloadTypeDef]
1370
+ taints: NotRequired[UpdateTaintsPayloadTypeDef]
1371
+ scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
1372
+ updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1373
+ nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1374
+ clientRequestToken: NotRequired[str]
1375
+
1355
1376
  class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
1356
1377
  subscription: EksAnywhereSubscriptionTypeDef
1357
1378
  ResponseMetadata: ResponseMetadataTypeDef
@@ -1373,16 +1394,6 @@ class UpdateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
1373
1394
  subscription: EksAnywhereSubscriptionTypeDef
1374
1395
  ResponseMetadata: ResponseMetadataTypeDef
1375
1396
 
1376
- class UpdateNodegroupConfigRequestTypeDef(TypedDict):
1377
- clusterName: str
1378
- nodegroupName: str
1379
- labels: NotRequired[UpdateLabelsPayloadTypeDef]
1380
- taints: NotRequired[UpdateTaintsPayloadTypeDef]
1381
- scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
1382
- updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1383
- nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1384
- clientRequestToken: NotRequired[str]
1385
-
1386
1397
  EncryptionConfigUnionTypeDef = Union[EncryptionConfigTypeDef, EncryptionConfigOutputTypeDef]
1387
1398
 
1388
1399
  class FargateProfileTypeDef(TypedDict):
mypy_boto3_eks/version.py CHANGED
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.37.0"
7
+ __version__ = "1.37.20"
@@ -1,7 +1,7 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: mypy-boto3-eks
3
- Version: 1.37.0
4
- Summary: Type annotations for boto3 EKS 1.37.0 service generated with mypy-boto3-builder 8.9.2
3
+ Version: 1.37.20
4
+ Summary: Type annotations for boto3 EKS 1.37.20 service generated with mypy-boto3-builder 8.10.1
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
@@ -39,6 +39,7 @@ Dynamic: description-content-type
39
39
  Dynamic: home-page
40
40
  Dynamic: keywords
41
41
  Dynamic: license
42
+ Dynamic: license-file
42
43
  Dynamic: project-url
43
44
  Dynamic: requires-dist
44
45
  Dynamic: requires-python
@@ -55,7 +56,7 @@ Dynamic: summary
55
56
 
56
57
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
57
58
 
58
- Type annotations for [boto3 EKS 1.37.0](https://pypi.org/project/boto3/)
59
+ Type annotations for [boto3 EKS 1.37.20](https://pypi.org/project/boto3/)
59
60
  compatible with [VSCode](https://code.visualstudio.com/),
60
61
  [PyCharm](https://www.jetbrains.com/pycharm/),
61
62
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -64,7 +65,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
64
65
  [pyright](https://github.com/microsoft/pyright) and other tools.
65
66
 
66
67
  Generated with
67
- [mypy-boto3-builder 8.9.2](https://github.com/youtype/mypy_boto3_builder).
68
+ [mypy-boto3-builder 8.10.1](https://github.com/youtype/mypy_boto3_builder).
68
69
 
69
70
  More information can be found on
70
71
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -118,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
118
119
  isolation.
119
120
 
120
121
  1. Run mypy-boto3-builder in your package root directory:
121
- `uvx --with 'boto3==1.37.0' mypy-boto3-builder`
122
+ `uvx --with 'boto3==1.37.20' mypy-boto3-builder`
122
123
  2. Select `boto3-stubs` AWS SDK.
123
124
  3. Add `EKS` service.
124
125
  4. Use provided commands to install generated packages.
@@ -0,0 +1,20 @@
1
+ mypy_boto3_eks/__init__.py,sha256=2ny7DX2h2EqSXWmXoLROuwapCrk5WWG82Cytg9gBFoA,5066
2
+ mypy_boto3_eks/__init__.pyi,sha256=Vn_LcRXy2FU1PJjnQvnE8BMRwPFC8_X1P1UnZbFY2Zs,5065
3
+ mypy_boto3_eks/__main__.py,sha256=pQMjso1G15T6gOYSfZmkqZdwHkpJq5g1J8vdBvCVRMs,968
4
+ mypy_boto3_eks/client.py,sha256=NqhtmiaelO6gPDGNJUkv8Ds8537TWfOPVk9nbImqpao,49426
5
+ mypy_boto3_eks/client.pyi,sha256=ycr-tlt3fZCCNh4th9TuOm7ZI2mYqaehpN7UaRl7_Qk,49423
6
+ mypy_boto3_eks/literals.py,sha256=mbdKloHHiT0mWJ1OTOO7Ezsll1JfjqheV3Xk4ULNmwQ,19408
7
+ mypy_boto3_eks/literals.pyi,sha256=tt7h8d_aq9ho8HBBH4zZPuHVLJT3u6e5d-DmLpAqfuI,19406
8
+ mypy_boto3_eks/paginator.py,sha256=3yFhQFg-bh-hJOlMggBZeCd-xonLBWmXnBG1HRNiDL4,20481
9
+ mypy_boto3_eks/paginator.pyi,sha256=cn674ie8pGurK1SRRoZERdTd56gF2t7NGEOYhzN8Vp4,20438
10
+ mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_eks/type_defs.py,sha256=ZA8D3qJIy8bof5gOb0urHUqe94BigIx9fKmRUOdpS7U,56516
12
+ mypy_boto3_eks/type_defs.pyi,sha256=sLEMobYj3MkFGNydOXWMruqd14CA2lvrNtG1GLFtsF8,56283
13
+ mypy_boto3_eks/version.py,sha256=lqzgPP69AiXzogdT1NOaWjzEgx3Uc_ynn79kNP73bOo,93
14
+ mypy_boto3_eks/waiter.py,sha256=2vJjiTIw6nY3Kx4O2YIUk9MmTiHrf5ZZtPP8bOy_jd4,8664
15
+ mypy_boto3_eks/waiter.pyi,sha256=ZkIrAD-cdgf6kBhiCJShJLpjHyVyzZrxjBQ2yI3cVJ0,8647
16
+ mypy_boto3_eks-1.37.20.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ mypy_boto3_eks-1.37.20.dist-info/METADATA,sha256=sYfg_s5YZ6x4rBWFdmiUwnGxe58WNtZbzgzoIeoFadQ,18038
18
+ mypy_boto3_eks-1.37.20.dist-info/WHEEL,sha256=DK49LOLCYiurdXXOXwGJm6U4DkHkg4lcxjhqwRa0CP4,91
19
+ mypy_boto3_eks-1.37.20.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
+ mypy_boto3_eks-1.37.20.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (78.0.2)
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=2ny7DX2h2EqSXWmXoLROuwapCrk5WWG82Cytg9gBFoA,5066
2
- mypy_boto3_eks/__init__.pyi,sha256=Vn_LcRXy2FU1PJjnQvnE8BMRwPFC8_X1P1UnZbFY2Zs,5065
3
- mypy_boto3_eks/__main__.py,sha256=ZaDHQrFISRWdJj2oYofIMVJLnazBuXf0lj-QzCOFQms,964
4
- mypy_boto3_eks/client.py,sha256=kL2QY9zxfFYdjt_Dto7KB3Pj5mvBDnunFEmfiMUyz9o,49322
5
- mypy_boto3_eks/client.pyi,sha256=NY2C7md3-7kOzmLsUIECQg3epBFoouhy7VY8TjxpajA,49319
6
- mypy_boto3_eks/literals.py,sha256=6cADkTEbLaKTd3-2t5Nrqf_-EvkotkQXwIeJEPrMjec,19353
7
- mypy_boto3_eks/literals.pyi,sha256=elX_x-UTaRozyaKVa8KYKTcyj458t99jPm8nP6bT1EM,19351
8
- mypy_boto3_eks/paginator.py,sha256=3yFhQFg-bh-hJOlMggBZeCd-xonLBWmXnBG1HRNiDL4,20481
9
- mypy_boto3_eks/paginator.pyi,sha256=cn674ie8pGurK1SRRoZERdTd56gF2t7NGEOYhzN8Vp4,20438
10
- mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_eks/type_defs.py,sha256=y1HXrWF3c7dwHusg7dgn7TK1yUsSkIeZeSw6sXQc8Xc,56276
12
- mypy_boto3_eks/type_defs.pyi,sha256=W1vRAAWXe1_4V31oheNKxtZ91NdDEk9ts3ntr8JZN-c,56044
13
- mypy_boto3_eks/version.py,sha256=7dplwNyKC_M1NmYn8gNT0u-MAPuLyVgQc5Z98LiK1wM,92
14
- mypy_boto3_eks/waiter.py,sha256=2vJjiTIw6nY3Kx4O2YIUk9MmTiHrf5ZZtPP8bOy_jd4,8664
15
- mypy_boto3_eks/waiter.pyi,sha256=ZkIrAD-cdgf6kBhiCJShJLpjHyVyzZrxjBQ2yI3cVJ0,8647
16
- mypy_boto3_eks-1.37.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
- mypy_boto3_eks-1.37.0.dist-info/METADATA,sha256=Sig7cql5MqCshEf-yzaml_jAvtLJ07djhYx3Cko77Gs,18010
18
- mypy_boto3_eks-1.37.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
19
- mypy_boto3_eks-1.37.0.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
- mypy_boto3_eks-1.37.0.dist-info/RECORD,,