mypy-boto3-eks 1.35.93__py3-none-any.whl → 1.36.6__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 +3 -3
- mypy_boto3_eks/literals.py +5 -2
- mypy_boto3_eks/literals.pyi +5 -2
- mypy_boto3_eks/type_defs.py +2 -0
- mypy_boto3_eks/type_defs.pyi +2 -0
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.35.93.dist-info → mypy_boto3_eks-1.36.6.dist-info}/METADATA +17 -5
- mypy_boto3_eks-1.36.6.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.35.93.dist-info → mypy_boto3_eks-1.36.6.dist-info}/WHEEL +1 -1
- mypy_boto3_eks-1.35.93.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.93.dist-info → mypy_boto3_eks-1.36.6.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.35.93.dist-info → mypy_boto3_eks-1.36.6.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ 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.
|
|
16
|
-
"Version: 1.
|
|
15
|
+
"Type annotations for boto3 EKS 1.36.6\n"
|
|
16
|
+
"Version: 1.36.6\n"
|
|
17
17
|
"Builder version: 8.8.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"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.
|
|
29
|
+
sys.stdout.write("1.36.6\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_eks/literals.py
CHANGED
|
@@ -69,6 +69,7 @@ __all__ = (
|
|
|
69
69
|
"NodegroupDeletedWaiterName",
|
|
70
70
|
"NodegroupIssueCodeType",
|
|
71
71
|
"NodegroupStatusType",
|
|
72
|
+
"NodegroupUpdateStrategiesType",
|
|
72
73
|
"PaginatorName",
|
|
73
74
|
"RegionName",
|
|
74
75
|
"ResolveConflictsType",
|
|
@@ -250,6 +251,7 @@ NodegroupIssueCodeType = Literal[
|
|
|
250
251
|
NodegroupStatusType = Literal[
|
|
251
252
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
|
|
252
253
|
]
|
|
254
|
+
NodegroupUpdateStrategiesType = Literal["DEFAULT", "MINIMAL"]
|
|
253
255
|
ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
|
|
254
256
|
SupportTypeType = Literal["EXTENDED", "STANDARD"]
|
|
255
257
|
TaintEffectType = Literal["NO_EXECUTE", "NO_SCHEDULE", "PREFER_NO_SCHEDULE"]
|
|
@@ -285,6 +287,7 @@ UpdateParamTypeType = Literal[
|
|
|
285
287
|
"Subnets",
|
|
286
288
|
"TaintsToAdd",
|
|
287
289
|
"TaintsToRemove",
|
|
290
|
+
"UpdateStrategy",
|
|
288
291
|
"UpgradePolicy",
|
|
289
292
|
"Version",
|
|
290
293
|
"ZonalShiftConfig",
|
|
@@ -488,8 +491,6 @@ ServiceName = Literal[
|
|
|
488
491
|
"iot",
|
|
489
492
|
"iot-data",
|
|
490
493
|
"iot-jobs-data",
|
|
491
|
-
"iot1click-devices",
|
|
492
|
-
"iot1click-projects",
|
|
493
494
|
"iotanalytics",
|
|
494
495
|
"iotdeviceadvisor",
|
|
495
496
|
"iotevents",
|
|
@@ -764,6 +765,7 @@ RegionName = Literal[
|
|
|
764
765
|
"ap-southeast-3",
|
|
765
766
|
"ap-southeast-4",
|
|
766
767
|
"ap-southeast-5",
|
|
768
|
+
"ap-southeast-7",
|
|
767
769
|
"ca-central-1",
|
|
768
770
|
"ca-west-1",
|
|
769
771
|
"eu-central-1",
|
|
@@ -777,6 +779,7 @@ RegionName = Literal[
|
|
|
777
779
|
"il-central-1",
|
|
778
780
|
"me-central-1",
|
|
779
781
|
"me-south-1",
|
|
782
|
+
"mx-central-1",
|
|
780
783
|
"sa-east-1",
|
|
781
784
|
"us-east-1",
|
|
782
785
|
"us-east-2",
|
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -68,6 +68,7 @@ __all__ = (
|
|
|
68
68
|
"NodegroupDeletedWaiterName",
|
|
69
69
|
"NodegroupIssueCodeType",
|
|
70
70
|
"NodegroupStatusType",
|
|
71
|
+
"NodegroupUpdateStrategiesType",
|
|
71
72
|
"PaginatorName",
|
|
72
73
|
"RegionName",
|
|
73
74
|
"ResolveConflictsType",
|
|
@@ -248,6 +249,7 @@ NodegroupIssueCodeType = Literal[
|
|
|
248
249
|
NodegroupStatusType = Literal[
|
|
249
250
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
|
|
250
251
|
]
|
|
252
|
+
NodegroupUpdateStrategiesType = Literal["DEFAULT", "MINIMAL"]
|
|
251
253
|
ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
|
|
252
254
|
SupportTypeType = Literal["EXTENDED", "STANDARD"]
|
|
253
255
|
TaintEffectType = Literal["NO_EXECUTE", "NO_SCHEDULE", "PREFER_NO_SCHEDULE"]
|
|
@@ -283,6 +285,7 @@ UpdateParamTypeType = Literal[
|
|
|
283
285
|
"Subnets",
|
|
284
286
|
"TaintsToAdd",
|
|
285
287
|
"TaintsToRemove",
|
|
288
|
+
"UpdateStrategy",
|
|
286
289
|
"UpgradePolicy",
|
|
287
290
|
"Version",
|
|
288
291
|
"ZonalShiftConfig",
|
|
@@ -486,8 +489,6 @@ ServiceName = Literal[
|
|
|
486
489
|
"iot",
|
|
487
490
|
"iot-data",
|
|
488
491
|
"iot-jobs-data",
|
|
489
|
-
"iot1click-devices",
|
|
490
|
-
"iot1click-projects",
|
|
491
492
|
"iotanalytics",
|
|
492
493
|
"iotdeviceadvisor",
|
|
493
494
|
"iotevents",
|
|
@@ -762,6 +763,7 @@ RegionName = Literal[
|
|
|
762
763
|
"ap-southeast-3",
|
|
763
764
|
"ap-southeast-4",
|
|
764
765
|
"ap-southeast-5",
|
|
766
|
+
"ap-southeast-7",
|
|
765
767
|
"ca-central-1",
|
|
766
768
|
"ca-west-1",
|
|
767
769
|
"eu-central-1",
|
|
@@ -775,6 +777,7 @@ RegionName = Literal[
|
|
|
775
777
|
"il-central-1",
|
|
776
778
|
"me-central-1",
|
|
777
779
|
"me-south-1",
|
|
780
|
+
"mx-central-1",
|
|
778
781
|
"sa-east-1",
|
|
779
782
|
"us-east-1",
|
|
780
783
|
"us-east-2",
|
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -41,6 +41,7 @@ from .literals import (
|
|
|
41
41
|
LogTypeType,
|
|
42
42
|
NodegroupIssueCodeType,
|
|
43
43
|
NodegroupStatusType,
|
|
44
|
+
NodegroupUpdateStrategiesType,
|
|
44
45
|
ResolveConflictsType,
|
|
45
46
|
SupportTypeType,
|
|
46
47
|
TaintEffectType,
|
|
@@ -540,6 +541,7 @@ class NodegroupScalingConfigTypeDef(TypedDict):
|
|
|
540
541
|
class NodegroupUpdateConfigTypeDef(TypedDict):
|
|
541
542
|
maxUnavailable: NotRequired[int]
|
|
542
543
|
maxUnavailablePercentage: NotRequired[int]
|
|
544
|
+
updateStrategy: NotRequired[NodegroupUpdateStrategiesType]
|
|
543
545
|
|
|
544
546
|
|
|
545
547
|
class RemoteAccessConfigTypeDef(TypedDict):
|
mypy_boto3_eks/type_defs.pyi
CHANGED
|
@@ -41,6 +41,7 @@ from .literals import (
|
|
|
41
41
|
LogTypeType,
|
|
42
42
|
NodegroupIssueCodeType,
|
|
43
43
|
NodegroupStatusType,
|
|
44
|
+
NodegroupUpdateStrategiesType,
|
|
44
45
|
ResolveConflictsType,
|
|
45
46
|
SupportTypeType,
|
|
46
47
|
TaintEffectType,
|
|
@@ -502,6 +503,7 @@ class NodegroupScalingConfigTypeDef(TypedDict):
|
|
|
502
503
|
class NodegroupUpdateConfigTypeDef(TypedDict):
|
|
503
504
|
maxUnavailable: NotRequired[int]
|
|
504
505
|
maxUnavailablePercentage: NotRequired[int]
|
|
506
|
+
updateStrategy: NotRequired[NodegroupUpdateStrategiesType]
|
|
505
507
|
|
|
506
508
|
class RemoteAccessConfigTypeDef(TypedDict):
|
|
507
509
|
ec2SshKey: NotRequired[str]
|
mypy_boto3_eks/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: mypy-boto3-eks
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 EKS 1.
|
|
3
|
+
Version: 1.36.6
|
|
4
|
+
Summary: Type annotations for boto3 EKS 1.36.6 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
|
|
@@ -31,6 +31,18 @@ Requires-Python: >=3.8
|
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
License-File: LICENSE
|
|
33
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; python_version < "3.12"
|
|
|
43
55
|
|
|
44
56
|

|
|
45
57
|
|
|
46
|
-
Type annotations for [boto3 EKS 1.
|
|
58
|
+
Type annotations for [boto3 EKS 1.36.6](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/),
|
|
@@ -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.
|
|
121
|
+
`uvx --with 'boto3==1.36.6' 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=heB1eXMItbHxnJyvM4-oqe41tc8v-jgP5PMA1UFd4fI,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=rPwsbkIaAkPTgnxlv7TZA4xwh1z-gtkyhMJnjLNNugw,19270
|
|
7
|
+
mypy_boto3_eks/literals.pyi,sha256=AIbMg3NevKTJXbW7EbkJ6ooJB_1iYPAF3hEmo9VcitY,19268
|
|
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=Od8mf3ElVNSYrJ7_4Ut-ySuSwWp_iqF6J14QY4Ozfrc,55899
|
|
12
|
+
mypy_boto3_eks/type_defs.pyi,sha256=RhKSjIMHLDkVPe1Z70qLK5Q7KbYRrgLOmA-R1bYd7sI,55673
|
|
13
|
+
mypy_boto3_eks/version.py,sha256=5Yl9WQzkiL2ZwWs1HLoOrpqzcPA_okolId-TlB_6aEg,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.6.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_eks-1.36.6.dist-info/METADATA,sha256=KwBUKy9ok-kVeF9lq1umUybry91nQkhYQOVKazIj13s,17873
|
|
18
|
+
mypy_boto3_eks-1.36.6.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
19
|
+
mypy_boto3_eks-1.36.6.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
+
mypy_boto3_eks-1.36.6.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
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=0kkUGcXta7cAsaI-uscvizbSTJwTZJZ15bxqjXT9IA4,967
|
|
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=y_4AULQajBbnYtJXaJJLjuVPDO_MsDWsxYQX3UsdBjI,19158
|
|
7
|
-
mypy_boto3_eks/literals.pyi,sha256=3vLzw3Jqyw2KuYdqHdRAvwEACbuZcB4ptswaIDfoiEY,19156
|
|
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=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,93
|
|
14
|
-
mypy_boto3_eks/waiter.py,sha256=BwunFxeaJV0nUTRMxDOuwfhDZ3A3X4Lap65Ia9CpH3U,8461
|
|
15
|
-
mypy_boto3_eks/waiter.pyi,sha256=6N164eEvaEs9QZQLAq2X740Xo0lp2zdkuEqlawaww4M,8444
|
|
16
|
-
mypy_boto3_eks-1.35.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_eks-1.35.93.dist-info/METADATA,sha256=ICGs_IdO-V1kipDy-9yDKKCHExk54gLZ0uIWx9VLxDc,17624
|
|
18
|
-
mypy_boto3_eks-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
19
|
-
mypy_boto3_eks-1.35.93.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
-
mypy_boto3_eks-1.35.93.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|