mypy-boto3-eks 1.35.0__py3-none-any.whl → 1.38.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 +9 -0
- mypy_boto3_eks/__init__.pyi +8 -0
- mypy_boto3_eks/__main__.py +11 -8
- mypy_boto3_eks/client.py +379 -436
- mypy_boto3_eks/client.pyi +378 -435
- mypy_boto3_eks/literals.py +61 -13
- mypy_boto3_eks/literals.pyi +59 -13
- mypy_boto3_eks/paginator.py +213 -117
- mypy_boto3_eks/paginator.pyi +197 -130
- mypy_boto3_eks/type_defs.py +1636 -1801
- mypy_boto3_eks/type_defs.pyi +1397 -1795
- mypy_boto3_eks/version.py +3 -1
- mypy_boto3_eks/waiter.py +57 -32
- mypy_boto3_eks/waiter.pyi +56 -40
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.38.0.dist-info}/METADATA +103 -29
- mypy_boto3_eks-1.38.0.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.38.0.dist-info}/WHEEL +1 -1
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.38.0.dist-info/licenses}/LICENSE +1 -1
- mypy_boto3_eks-1.35.0.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.38.0.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/__init__.py
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for eks service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -12,6 +16,7 @@ Usage::
|
|
|
12
16
|
ClusterActiveWaiter,
|
|
13
17
|
ClusterDeletedWaiter,
|
|
14
18
|
DescribeAddonVersionsPaginator,
|
|
19
|
+
DescribeClusterVersionsPaginator,
|
|
15
20
|
EKSClient,
|
|
16
21
|
FargateProfileActiveWaiter,
|
|
17
22
|
FargateProfileDeletedWaiter,
|
|
@@ -44,6 +49,7 @@ Usage::
|
|
|
44
49
|
nodegroup_deleted_waiter: NodegroupDeletedWaiter = client.get_waiter("nodegroup_deleted")
|
|
45
50
|
|
|
46
51
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
|
|
52
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
47
53
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
|
|
48
54
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
49
55
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
@@ -62,6 +68,7 @@ Usage::
|
|
|
62
68
|
from .client import EKSClient
|
|
63
69
|
from .paginator import (
|
|
64
70
|
DescribeAddonVersionsPaginator,
|
|
71
|
+
DescribeClusterVersionsPaginator,
|
|
65
72
|
ListAccessEntriesPaginator,
|
|
66
73
|
ListAccessPoliciesPaginator,
|
|
67
74
|
ListAddonsPaginator,
|
|
@@ -88,6 +95,7 @@ from .waiter import (
|
|
|
88
95
|
|
|
89
96
|
Client = EKSClient
|
|
90
97
|
|
|
98
|
+
|
|
91
99
|
__all__ = (
|
|
92
100
|
"AddonActiveWaiter",
|
|
93
101
|
"AddonDeletedWaiter",
|
|
@@ -95,6 +103,7 @@ __all__ = (
|
|
|
95
103
|
"ClusterActiveWaiter",
|
|
96
104
|
"ClusterDeletedWaiter",
|
|
97
105
|
"DescribeAddonVersionsPaginator",
|
|
106
|
+
"DescribeClusterVersionsPaginator",
|
|
98
107
|
"EKSClient",
|
|
99
108
|
"FargateProfileActiveWaiter",
|
|
100
109
|
"FargateProfileDeletedWaiter",
|
mypy_boto3_eks/__init__.pyi
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main interface for eks service.
|
|
3
3
|
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
4
8
|
Usage::
|
|
5
9
|
|
|
6
10
|
```python
|
|
@@ -12,6 +16,7 @@ Usage::
|
|
|
12
16
|
ClusterActiveWaiter,
|
|
13
17
|
ClusterDeletedWaiter,
|
|
14
18
|
DescribeAddonVersionsPaginator,
|
|
19
|
+
DescribeClusterVersionsPaginator,
|
|
15
20
|
EKSClient,
|
|
16
21
|
FargateProfileActiveWaiter,
|
|
17
22
|
FargateProfileDeletedWaiter,
|
|
@@ -44,6 +49,7 @@ Usage::
|
|
|
44
49
|
nodegroup_deleted_waiter: NodegroupDeletedWaiter = client.get_waiter("nodegroup_deleted")
|
|
45
50
|
|
|
46
51
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator("describe_addon_versions")
|
|
52
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator("describe_cluster_versions")
|
|
47
53
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator("list_access_entries")
|
|
48
54
|
list_access_policies_paginator: ListAccessPoliciesPaginator = client.get_paginator("list_access_policies")
|
|
49
55
|
list_addons_paginator: ListAddonsPaginator = client.get_paginator("list_addons")
|
|
@@ -62,6 +68,7 @@ Usage::
|
|
|
62
68
|
from .client import EKSClient
|
|
63
69
|
from .paginator import (
|
|
64
70
|
DescribeAddonVersionsPaginator,
|
|
71
|
+
DescribeClusterVersionsPaginator,
|
|
65
72
|
ListAccessEntriesPaginator,
|
|
66
73
|
ListAccessPoliciesPaginator,
|
|
67
74
|
ListAddonsPaginator,
|
|
@@ -95,6 +102,7 @@ __all__ = (
|
|
|
95
102
|
"ClusterActiveWaiter",
|
|
96
103
|
"ClusterDeletedWaiter",
|
|
97
104
|
"DescribeAddonVersionsPaginator",
|
|
105
|
+
"DescribeClusterVersionsPaginator",
|
|
98
106
|
"EKSClient",
|
|
99
107
|
"FargateProfileActiveWaiter",
|
|
100
108
|
"FargateProfileDeletedWaiter",
|
mypy_boto3_eks/__main__.py
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
|
+
|
|
4
|
+
Copyright 2025 Vlad Emelianov
|
|
3
5
|
"""
|
|
4
6
|
|
|
5
7
|
import sys
|
|
@@ -9,14 +11,14 @@ def print_info() -> None:
|
|
|
9
11
|
"""
|
|
10
12
|
Print package info to stdout.
|
|
11
13
|
"""
|
|
12
|
-
|
|
13
|
-
"Type annotations for boto3
|
|
14
|
-
"Version: 1.
|
|
15
|
-
"Builder version:
|
|
14
|
+
sys.stdout.write(
|
|
15
|
+
"Type annotations for boto3 EKS 1.38.0\n"
|
|
16
|
+
"Version: 1.38.0\n"
|
|
17
|
+
"Builder version: 8.10.1\n"
|
|
16
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks//\n"
|
|
17
|
-
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#
|
|
19
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#eks\n"
|
|
18
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
-
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
21
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
|
|
20
22
|
)
|
|
21
23
|
|
|
22
24
|
|
|
@@ -24,7 +26,7 @@ def print_version() -> None:
|
|
|
24
26
|
"""
|
|
25
27
|
Print package version to stdout.
|
|
26
28
|
"""
|
|
27
|
-
|
|
29
|
+
sys.stdout.write("1.38.0\n")
|
|
28
30
|
|
|
29
31
|
|
|
30
32
|
def main() -> None:
|
|
@@ -32,7 +34,8 @@ def main() -> None:
|
|
|
32
34
|
Main CLI entrypoint.
|
|
33
35
|
"""
|
|
34
36
|
if "--version" in sys.argv:
|
|
35
|
-
|
|
37
|
+
print_version()
|
|
38
|
+
return
|
|
36
39
|
print_info()
|
|
37
40
|
|
|
38
41
|
|