mypy-boto3-eks 1.36.6__py3-none-any.whl → 1.37.0__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 +4 -3
- mypy_boto3_eks/literals.pyi +4 -3
- mypy_boto3_eks/paginator.py +2 -2
- mypy_boto3_eks/paginator.pyi +2 -2
- mypy_boto3_eks/type_defs.py +199 -160
- mypy_boto3_eks/type_defs.pyi +191 -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.6.dist-info → mypy_boto3_eks-1.37.0.dist-info}/METADATA +11 -8
- mypy_boto3_eks-1.37.0.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.36.6.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.36.6.dist-info → mypy_boto3_eks-1.37.0.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.36.6.dist-info → mypy_boto3_eks-1.37.0.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.36.6.dist-info → mypy_boto3_eks-1.37.0.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
|
|
@@ -80,6 +80,7 @@ __all__ = (
|
|
|
80
80
|
"UpdateParamTypeType",
|
|
81
81
|
"UpdateStatusType",
|
|
82
82
|
"UpdateTypeType",
|
|
83
|
+
"VersionStatusType",
|
|
83
84
|
"WaiterName",
|
|
84
85
|
)
|
|
85
86
|
|
|
@@ -308,6 +309,7 @@ UpdateTypeType = Literal[
|
|
|
308
309
|
"VpcConfigUpdate",
|
|
309
310
|
"ZonalShiftConfigUpdate",
|
|
310
311
|
]
|
|
312
|
+
VersionStatusType = Literal["EXTENDED_SUPPORT", "STANDARD_SUPPORT", "UNSUPPORTED"]
|
|
311
313
|
EKSServiceName = Literal["eks"]
|
|
312
314
|
ServiceName = Literal[
|
|
313
315
|
"accessanalyzer",
|
|
@@ -442,7 +444,6 @@ ServiceName = Literal[
|
|
|
442
444
|
"efs",
|
|
443
445
|
"eks",
|
|
444
446
|
"eks-auth",
|
|
445
|
-
"elastic-inference",
|
|
446
447
|
"elasticache",
|
|
447
448
|
"elasticbeanstalk",
|
|
448
449
|
"elastictranscoder",
|
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
|
|
@@ -79,6 +79,7 @@ __all__ = (
|
|
|
79
79
|
"UpdateParamTypeType",
|
|
80
80
|
"UpdateStatusType",
|
|
81
81
|
"UpdateTypeType",
|
|
82
|
+
"VersionStatusType",
|
|
82
83
|
"WaiterName",
|
|
83
84
|
)
|
|
84
85
|
|
|
@@ -306,6 +307,7 @@ UpdateTypeType = Literal[
|
|
|
306
307
|
"VpcConfigUpdate",
|
|
307
308
|
"ZonalShiftConfigUpdate",
|
|
308
309
|
]
|
|
310
|
+
VersionStatusType = Literal["EXTENDED_SUPPORT", "STANDARD_SUPPORT", "UNSUPPORTED"]
|
|
309
311
|
EKSServiceName = Literal["eks"]
|
|
310
312
|
ServiceName = Literal[
|
|
311
313
|
"accessanalyzer",
|
|
@@ -440,7 +442,6 @@ ServiceName = Literal[
|
|
|
440
442
|
"efs",
|
|
441
443
|
"eks",
|
|
442
444
|
"eks-auth",
|
|
443
|
-
"elastic-inference",
|
|
444
445
|
"elasticache",
|
|
445
446
|
"elasticbeanstalk",
|
|
446
447
|
"elastictranscoder",
|
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
|