mypy-boto3-eks 1.37.0__py3-none-any.whl → 1.37.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mypy_boto3_eks/__main__.py +4 -4
- mypy_boto3_eks/type_defs.py +41 -30
- mypy_boto3_eks/type_defs.pyi +38 -28
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.37.0.dist-info → mypy_boto3_eks-1.37.4.dist-info}/METADATA +5 -5
- {mypy_boto3_eks-1.37.0.dist-info → mypy_boto3_eks-1.37.4.dist-info}/RECORD +9 -9
- {mypy_boto3_eks-1.37.0.dist-info → mypy_boto3_eks-1.37.4.dist-info}/WHEEL +1 -1
- {mypy_boto3_eks-1.37.0.dist-info → mypy_boto3_eks-1.37.4.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.37.0.dist-info → mypy_boto3_eks-1.37.4.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/__main__.py
CHANGED
|
@@ -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.
|
|
16
|
-
"Version: 1.37.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 EKS 1.37.4\n"
|
|
16
|
+
"Version: 1.37.4\n"
|
|
17
|
+
"Builder version: 8.10.0\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.
|
|
29
|
+
sys.stdout.write("1.37.4\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -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
|
|
|
@@ -1163,25 +1173,6 @@ class CreateEksAnywhereSubscriptionRequestTypeDef(TypedDict):
|
|
|
1163
1173
|
tags: NotRequired[Mapping[str, str]]
|
|
1164
1174
|
|
|
1165
1175
|
|
|
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
1176
|
class UpdateNodegroupVersionRequestTypeDef(TypedDict):
|
|
1186
1177
|
clusterName: str
|
|
1187
1178
|
nodegroupName: str
|
|
@@ -1363,6 +1354,26 @@ class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
|
|
|
1363
1354
|
nextToken: NotRequired[str]
|
|
1364
1355
|
|
|
1365
1356
|
|
|
1357
|
+
EksAnywhereSubscriptionTypeDef = TypedDict(
|
|
1358
|
+
"EksAnywhereSubscriptionTypeDef",
|
|
1359
|
+
{
|
|
1360
|
+
"id": NotRequired[str],
|
|
1361
|
+
"arn": NotRequired[str],
|
|
1362
|
+
"createdAt": NotRequired[datetime],
|
|
1363
|
+
"effectiveDate": NotRequired[datetime],
|
|
1364
|
+
"expirationDate": NotRequired[datetime],
|
|
1365
|
+
"licenseQuantity": NotRequired[int],
|
|
1366
|
+
"licenseType": NotRequired[Literal["Cluster"]],
|
|
1367
|
+
"term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
|
|
1368
|
+
"status": NotRequired[str],
|
|
1369
|
+
"autoRenew": NotRequired[bool],
|
|
1370
|
+
"licenseArns": NotRequired[List[str]],
|
|
1371
|
+
"licenses": NotRequired[List[LicenseTypeDef]],
|
|
1372
|
+
"tags": NotRequired[Dict[str, str]],
|
|
1373
|
+
},
|
|
1374
|
+
)
|
|
1375
|
+
|
|
1376
|
+
|
|
1366
1377
|
class KubernetesNetworkConfigRequestTypeDef(TypedDict):
|
|
1367
1378
|
serviceIpv4Cidr: NotRequired[str]
|
|
1368
1379
|
ipFamily: NotRequired[IpFamilyType]
|
|
@@ -1540,6 +1551,17 @@ class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
|
1540
1551
|
addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
|
|
1541
1552
|
|
|
1542
1553
|
|
|
1554
|
+
class UpdateNodegroupConfigRequestTypeDef(TypedDict):
|
|
1555
|
+
clusterName: str
|
|
1556
|
+
nodegroupName: str
|
|
1557
|
+
labels: NotRequired[UpdateLabelsPayloadTypeDef]
|
|
1558
|
+
taints: NotRequired[UpdateTaintsPayloadTypeDef]
|
|
1559
|
+
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1560
|
+
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1561
|
+
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1562
|
+
clientRequestToken: NotRequired[str]
|
|
1563
|
+
|
|
1564
|
+
|
|
1543
1565
|
class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
1544
1566
|
subscription: EksAnywhereSubscriptionTypeDef
|
|
1545
1567
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1566,17 +1588,6 @@ class UpdateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
|
1566
1588
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1567
1589
|
|
|
1568
1590
|
|
|
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
1591
|
EncryptionConfigUnionTypeDef = Union[EncryptionConfigTypeDef, EncryptionConfigOutputTypeDef]
|
|
1581
1592
|
|
|
1582
1593
|
|
mypy_boto3_eks/type_defs.pyi
CHANGED
|
@@ -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
|
|
|
@@ -1029,24 +1038,6 @@ class CreateEksAnywhereSubscriptionRequestTypeDef(TypedDict):
|
|
|
1029
1038
|
clientRequestToken: NotRequired[str]
|
|
1030
1039
|
tags: NotRequired[Mapping[str, str]]
|
|
1031
1040
|
|
|
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
1041
|
class UpdateNodegroupVersionRequestTypeDef(TypedDict):
|
|
1051
1042
|
clusterName: str
|
|
1052
1043
|
nodegroupName: str
|
|
@@ -1198,6 +1189,25 @@ class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
|
|
|
1198
1189
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1199
1190
|
nextToken: NotRequired[str]
|
|
1200
1191
|
|
|
1192
|
+
EksAnywhereSubscriptionTypeDef = TypedDict(
|
|
1193
|
+
"EksAnywhereSubscriptionTypeDef",
|
|
1194
|
+
{
|
|
1195
|
+
"id": NotRequired[str],
|
|
1196
|
+
"arn": NotRequired[str],
|
|
1197
|
+
"createdAt": NotRequired[datetime],
|
|
1198
|
+
"effectiveDate": NotRequired[datetime],
|
|
1199
|
+
"expirationDate": NotRequired[datetime],
|
|
1200
|
+
"licenseQuantity": NotRequired[int],
|
|
1201
|
+
"licenseType": NotRequired[Literal["Cluster"]],
|
|
1202
|
+
"term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
|
|
1203
|
+
"status": NotRequired[str],
|
|
1204
|
+
"autoRenew": NotRequired[bool],
|
|
1205
|
+
"licenseArns": NotRequired[List[str]],
|
|
1206
|
+
"licenses": NotRequired[List[LicenseTypeDef]],
|
|
1207
|
+
"tags": NotRequired[Dict[str, str]],
|
|
1208
|
+
},
|
|
1209
|
+
)
|
|
1210
|
+
|
|
1201
1211
|
class KubernetesNetworkConfigRequestTypeDef(TypedDict):
|
|
1202
1212
|
serviceIpv4Cidr: NotRequired[str]
|
|
1203
1213
|
ipFamily: NotRequired[IpFamilyType]
|
|
@@ -1352,6 +1362,16 @@ class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
|
1352
1362
|
deprecationDetails: NotRequired[List[DeprecationDetailTypeDef]]
|
|
1353
1363
|
addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
|
|
1354
1364
|
|
|
1365
|
+
class UpdateNodegroupConfigRequestTypeDef(TypedDict):
|
|
1366
|
+
clusterName: str
|
|
1367
|
+
nodegroupName: str
|
|
1368
|
+
labels: NotRequired[UpdateLabelsPayloadTypeDef]
|
|
1369
|
+
taints: NotRequired[UpdateTaintsPayloadTypeDef]
|
|
1370
|
+
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1371
|
+
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1372
|
+
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1373
|
+
clientRequestToken: NotRequired[str]
|
|
1374
|
+
|
|
1355
1375
|
class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
1356
1376
|
subscription: EksAnywhereSubscriptionTypeDef
|
|
1357
1377
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1373,16 +1393,6 @@ class UpdateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
|
1373
1393
|
subscription: EksAnywhereSubscriptionTypeDef
|
|
1374
1394
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1375
1395
|
|
|
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
1396
|
EncryptionConfigUnionTypeDef = Union[EncryptionConfigTypeDef, EncryptionConfigOutputTypeDef]
|
|
1387
1397
|
|
|
1388
1398
|
class FargateProfileTypeDef(TypedDict):
|
mypy_boto3_eks/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: mypy-boto3-eks
|
|
3
|
-
Version: 1.37.
|
|
4
|
-
Summary: Type annotations for boto3 EKS 1.37.
|
|
3
|
+
Version: 1.37.4
|
|
4
|
+
Summary: Type annotations for boto3 EKS 1.37.4 service generated with mypy-boto3-builder 8.10.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
|
|
@@ -55,7 +55,7 @@ Dynamic: summary
|
|
|
55
55
|
|
|
56
56
|

|
|
57
57
|
|
|
58
|
-
Type annotations for [boto3 EKS 1.37.
|
|
58
|
+
Type annotations for [boto3 EKS 1.37.4](https://pypi.org/project/boto3/)
|
|
59
59
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
60
60
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
61
61
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -64,7 +64,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
64
64
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
65
65
|
|
|
66
66
|
Generated with
|
|
67
|
-
[mypy-boto3-builder 8.
|
|
67
|
+
[mypy-boto3-builder 8.10.0](https://github.com/youtype/mypy_boto3_builder).
|
|
68
68
|
|
|
69
69
|
More information can be found on
|
|
70
70
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -118,7 +118,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
118
118
|
isolation.
|
|
119
119
|
|
|
120
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.37.
|
|
121
|
+
`uvx --with 'boto3==1.37.4' mypy-boto3-builder`
|
|
122
122
|
2. Select `boto3-stubs` AWS SDK.
|
|
123
123
|
3. Add `EKS` service.
|
|
124
124
|
4. Use provided commands to install generated packages.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
mypy_boto3_eks/__init__.py,sha256=2ny7DX2h2EqSXWmXoLROuwapCrk5WWG82Cytg9gBFoA,5066
|
|
2
2
|
mypy_boto3_eks/__init__.pyi,sha256=Vn_LcRXy2FU1PJjnQvnE8BMRwPFC8_X1P1UnZbFY2Zs,5065
|
|
3
|
-
mypy_boto3_eks/__main__.py,sha256=
|
|
3
|
+
mypy_boto3_eks/__main__.py,sha256=c_piYtypyQbNRKWT_8MFHSttROatBxqZSR0LVMuLAvw,965
|
|
4
4
|
mypy_boto3_eks/client.py,sha256=kL2QY9zxfFYdjt_Dto7KB3Pj5mvBDnunFEmfiMUyz9o,49322
|
|
5
5
|
mypy_boto3_eks/client.pyi,sha256=NY2C7md3-7kOzmLsUIECQg3epBFoouhy7VY8TjxpajA,49319
|
|
6
6
|
mypy_boto3_eks/literals.py,sha256=6cADkTEbLaKTd3-2t5Nrqf_-EvkotkQXwIeJEPrMjec,19353
|
|
@@ -8,13 +8,13 @@ mypy_boto3_eks/literals.pyi,sha256=elX_x-UTaRozyaKVa8KYKTcyj458t99jPm8nP6bT1EM,1
|
|
|
8
8
|
mypy_boto3_eks/paginator.py,sha256=3yFhQFg-bh-hJOlMggBZeCd-xonLBWmXnBG1HRNiDL4,20481
|
|
9
9
|
mypy_boto3_eks/paginator.pyi,sha256=cn674ie8pGurK1SRRoZERdTd56gF2t7NGEOYhzN8Vp4,20438
|
|
10
10
|
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_eks/type_defs.py,sha256=
|
|
12
|
-
mypy_boto3_eks/type_defs.pyi,sha256=
|
|
13
|
-
mypy_boto3_eks/version.py,sha256=
|
|
11
|
+
mypy_boto3_eks/type_defs.py,sha256=ylSoU3yCBINRNV8OpaF7qO_IHgzjzD4gvgkKymGj9Uk,56487
|
|
12
|
+
mypy_boto3_eks/type_defs.pyi,sha256=sN9eYnYpaKPFhqjZHAPxWId0emVptUhsfVZSxYCwNlQ,56254
|
|
13
|
+
mypy_boto3_eks/version.py,sha256=AgOqqqWwbZpRq_Cqmsy8vIImG1TxMqrEhOqV35g8wHg,92
|
|
14
14
|
mypy_boto3_eks/waiter.py,sha256=2vJjiTIw6nY3Kx4O2YIUk9MmTiHrf5ZZtPP8bOy_jd4,8664
|
|
15
15
|
mypy_boto3_eks/waiter.pyi,sha256=ZkIrAD-cdgf6kBhiCJShJLpjHyVyzZrxjBQ2yI3cVJ0,8647
|
|
16
|
-
mypy_boto3_eks-1.37.
|
|
17
|
-
mypy_boto3_eks-1.37.
|
|
18
|
-
mypy_boto3_eks-1.37.
|
|
19
|
-
mypy_boto3_eks-1.37.
|
|
20
|
-
mypy_boto3_eks-1.37.
|
|
16
|
+
mypy_boto3_eks-1.37.4.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_eks-1.37.4.dist-info/METADATA,sha256=p7s9jIAjh8iaAooSyZekjUcPGaLgxwtVp1fmz2t0re8,18012
|
|
18
|
+
mypy_boto3_eks-1.37.4.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
|
19
|
+
mypy_boto3_eks-1.37.4.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
+
mypy_boto3_eks-1.37.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|