mypy-boto3-eks 1.36.0__py3-none-any.whl → 1.36.16__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/__init__.py +4 -2
- mypy_boto3_eks/__init__.pyi +4 -2
- mypy_boto3_eks/__main__.py +4 -4
- mypy_boto3_eks/client.py +116 -120
- mypy_boto3_eks/client.pyi +116 -120
- mypy_boto3_eks/literals.py +7 -2
- mypy_boto3_eks/literals.pyi +7 -2
- mypy_boto3_eks/paginator.py +2 -2
- mypy_boto3_eks/paginator.pyi +2 -2
- mypy_boto3_eks/type_defs.py +201 -160
- mypy_boto3_eks/type_defs.pyi +193 -158
- mypy_boto3_eks/version.py +1 -1
- mypy_boto3_eks/waiter.py +10 -6
- mypy_boto3_eks/waiter.pyi +10 -6
- {mypy_boto3_eks-1.36.0.dist-info → mypy_boto3_eks-1.36.16.dist-info}/METADATA +6 -6
- mypy_boto3_eks-1.36.16.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.36.0.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.36.0.dist-info → mypy_boto3_eks-1.36.16.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.36.0.dist-info → mypy_boto3_eks-1.36.16.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.36.0.dist-info → mypy_boto3_eks-1.36.16.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/literals.py
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for eks service literal definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/literals/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,8 +12,6 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
data: AMITypesType = "AL2023_ARM_64_STANDARD"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -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",
|
|
@@ -79,6 +80,7 @@ __all__ = (
|
|
|
79
80
|
"UpdateParamTypeType",
|
|
80
81
|
"UpdateStatusType",
|
|
81
82
|
"UpdateTypeType",
|
|
83
|
+
"VersionStatusType",
|
|
82
84
|
"WaiterName",
|
|
83
85
|
)
|
|
84
86
|
|
|
@@ -250,6 +252,7 @@ NodegroupIssueCodeType = Literal[
|
|
|
250
252
|
NodegroupStatusType = Literal[
|
|
251
253
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
|
|
252
254
|
]
|
|
255
|
+
NodegroupUpdateStrategiesType = Literal["DEFAULT", "MINIMAL"]
|
|
253
256
|
ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
|
|
254
257
|
SupportTypeType = Literal["EXTENDED", "STANDARD"]
|
|
255
258
|
TaintEffectType = Literal["NO_EXECUTE", "NO_SCHEDULE", "PREFER_NO_SCHEDULE"]
|
|
@@ -285,6 +288,7 @@ UpdateParamTypeType = Literal[
|
|
|
285
288
|
"Subnets",
|
|
286
289
|
"TaintsToAdd",
|
|
287
290
|
"TaintsToRemove",
|
|
291
|
+
"UpdateStrategy",
|
|
288
292
|
"UpgradePolicy",
|
|
289
293
|
"Version",
|
|
290
294
|
"ZonalShiftConfig",
|
|
@@ -305,6 +309,7 @@ UpdateTypeType = Literal[
|
|
|
305
309
|
"VpcConfigUpdate",
|
|
306
310
|
"ZonalShiftConfigUpdate",
|
|
307
311
|
]
|
|
312
|
+
VersionStatusType = Literal["EXTENDED_SUPPORT", "STANDARD_SUPPORT", "UNSUPPORTED"]
|
|
308
313
|
EKSServiceName = Literal["eks"]
|
|
309
314
|
ServiceName = Literal[
|
|
310
315
|
"accessanalyzer",
|
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for eks service literal definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/literals/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,8 +12,6 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
data: AMITypesType = "AL2023_ARM_64_STANDARD"
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2025 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
import sys
|
|
@@ -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",
|
|
@@ -78,6 +79,7 @@ __all__ = (
|
|
|
78
79
|
"UpdateParamTypeType",
|
|
79
80
|
"UpdateStatusType",
|
|
80
81
|
"UpdateTypeType",
|
|
82
|
+
"VersionStatusType",
|
|
81
83
|
"WaiterName",
|
|
82
84
|
)
|
|
83
85
|
|
|
@@ -248,6 +250,7 @@ NodegroupIssueCodeType = Literal[
|
|
|
248
250
|
NodegroupStatusType = Literal[
|
|
249
251
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
|
|
250
252
|
]
|
|
253
|
+
NodegroupUpdateStrategiesType = Literal["DEFAULT", "MINIMAL"]
|
|
251
254
|
ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
|
|
252
255
|
SupportTypeType = Literal["EXTENDED", "STANDARD"]
|
|
253
256
|
TaintEffectType = Literal["NO_EXECUTE", "NO_SCHEDULE", "PREFER_NO_SCHEDULE"]
|
|
@@ -283,6 +286,7 @@ UpdateParamTypeType = Literal[
|
|
|
283
286
|
"Subnets",
|
|
284
287
|
"TaintsToAdd",
|
|
285
288
|
"TaintsToRemove",
|
|
289
|
+
"UpdateStrategy",
|
|
286
290
|
"UpgradePolicy",
|
|
287
291
|
"Version",
|
|
288
292
|
"ZonalShiftConfig",
|
|
@@ -303,6 +307,7 @@ UpdateTypeType = Literal[
|
|
|
303
307
|
"VpcConfigUpdate",
|
|
304
308
|
"ZonalShiftConfigUpdate",
|
|
305
309
|
]
|
|
310
|
+
VersionStatusType = Literal["EXTENDED_SUPPORT", "STANDARD_SUPPORT", "UNSUPPORTED"]
|
|
306
311
|
EKSServiceName = Literal["eks"]
|
|
307
312
|
ServiceName = Literal[
|
|
308
313
|
"accessanalyzer",
|
mypy_boto3_eks/paginator.py
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for eks service client paginators.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -44,8 +46,6 @@ Usage::
|
|
|
44
46
|
list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
|
|
45
47
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
46
48
|
```
|
|
47
|
-
|
|
48
|
-
Copyright 2025 Vlad Emelianov
|
|
49
49
|
"""
|
|
50
50
|
|
|
51
51
|
from __future__ import annotations
|
mypy_boto3_eks/paginator.pyi
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for eks service client paginators.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/paginators/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -44,8 +46,6 @@ Usage::
|
|
|
44
46
|
list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
|
|
45
47
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
46
48
|
```
|
|
47
|
-
|
|
48
|
-
Copyright 2025 Vlad Emelianov
|
|
49
49
|
"""
|
|
50
50
|
|
|
51
51
|
from __future__ import annotations
|