types-boto3-eks 1.35.81__py3-none-any.whl → 1.35.87__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.
- types_boto3_eks/__init__.py +4 -0
- types_boto3_eks/__init__.pyi +4 -0
- types_boto3_eks/__main__.py +8 -7
- types_boto3_eks/client.py +114 -78
- types_boto3_eks/client.pyi +114 -77
- types_boto3_eks/literals.py +7 -1
- types_boto3_eks/literals.pyi +7 -1
- types_boto3_eks/paginator.py +179 -87
- types_boto3_eks/paginator.pyi +164 -86
- types_boto3_eks/type_defs.py +167 -143
- types_boto3_eks/type_defs.pyi +161 -138
- types_boto3_eks/version.py +1 -1
- types_boto3_eks/waiter.py +29 -19
- types_boto3_eks/waiter.pyi +29 -19
- {types_boto3_eks-1.35.81.dist-info → types_boto3_eks-1.35.87.dist-info}/METADATA +9 -5
- types_boto3_eks-1.35.87.dist-info/RECORD +20 -0
- types_boto3_eks-1.35.81.dist-info/RECORD +0 -20
- {types_boto3_eks-1.35.81.dist-info → types_boto3_eks-1.35.87.dist-info}/LICENSE +0 -0
- {types_boto3_eks-1.35.81.dist-info → types_boto3_eks-1.35.87.dist-info}/WHEEL +0 -0
- {types_boto3_eks-1.35.81.dist-info → types_boto3_eks-1.35.87.dist-info}/top_level.txt +0 -0
types_boto3_eks/version.py
CHANGED
types_boto3_eks/waiter.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for eks service client waiters.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -36,19 +36,17 @@ Usage::
|
|
|
36
36
|
Copyright 2024 Vlad Emelianov
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
|
+
from __future__ import annotations
|
|
40
|
+
|
|
39
41
|
import sys
|
|
40
42
|
|
|
41
43
|
from botocore.waiter import Waiter
|
|
42
44
|
|
|
43
45
|
from .type_defs import (
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef,
|
|
49
|
-
DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef,
|
|
50
|
-
DescribeNodegroupRequestNodegroupActiveWaitTypeDef,
|
|
51
|
-
DescribeNodegroupRequestNodegroupDeletedWaitTypeDef,
|
|
46
|
+
DescribeAddonRequestWaitTypeDef,
|
|
47
|
+
DescribeClusterRequestWaitTypeDef,
|
|
48
|
+
DescribeFargateProfileRequestWaitTypeDef,
|
|
49
|
+
DescribeNodegroupRequestWaitTypeDef,
|
|
52
50
|
)
|
|
53
51
|
|
|
54
52
|
if sys.version_info >= (3, 12):
|
|
@@ -75,7 +73,9 @@ class AddonActiveWaiter(Waiter):
|
|
|
75
73
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addonactivewaiter)
|
|
76
74
|
"""
|
|
77
75
|
|
|
78
|
-
def wait(
|
|
76
|
+
def wait( # type: ignore[override]
|
|
77
|
+
self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
|
|
78
|
+
) -> None:
|
|
79
79
|
"""
|
|
80
80
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive.wait)
|
|
81
81
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addonactivewaiter)
|
|
@@ -88,7 +88,9 @@ class AddonDeletedWaiter(Waiter):
|
|
|
88
88
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addondeletedwaiter)
|
|
89
89
|
"""
|
|
90
90
|
|
|
91
|
-
def wait(
|
|
91
|
+
def wait( # type: ignore[override]
|
|
92
|
+
self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
|
|
93
|
+
) -> None:
|
|
92
94
|
"""
|
|
93
95
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted.wait)
|
|
94
96
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addondeletedwaiter)
|
|
@@ -101,7 +103,9 @@ class ClusterActiveWaiter(Waiter):
|
|
|
101
103
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusteractivewaiter)
|
|
102
104
|
"""
|
|
103
105
|
|
|
104
|
-
def wait(
|
|
106
|
+
def wait( # type: ignore[override]
|
|
107
|
+
self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
|
|
108
|
+
) -> None:
|
|
105
109
|
"""
|
|
106
110
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive.wait)
|
|
107
111
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusteractivewaiter)
|
|
@@ -114,7 +118,9 @@ class ClusterDeletedWaiter(Waiter):
|
|
|
114
118
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
115
119
|
"""
|
|
116
120
|
|
|
117
|
-
def wait(
|
|
121
|
+
def wait( # type: ignore[override]
|
|
122
|
+
self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
|
|
123
|
+
) -> None:
|
|
118
124
|
"""
|
|
119
125
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted.wait)
|
|
120
126
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
@@ -127,8 +133,8 @@ class FargateProfileActiveWaiter(Waiter):
|
|
|
127
133
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#fargateprofileactivewaiter)
|
|
128
134
|
"""
|
|
129
135
|
|
|
130
|
-
def wait(
|
|
131
|
-
self, **kwargs: Unpack[
|
|
136
|
+
def wait( # type: ignore[override]
|
|
137
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
|
|
132
138
|
) -> None:
|
|
133
139
|
"""
|
|
134
140
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive.wait)
|
|
@@ -142,8 +148,8 @@ class FargateProfileDeletedWaiter(Waiter):
|
|
|
142
148
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#fargateprofiledeletedwaiter)
|
|
143
149
|
"""
|
|
144
150
|
|
|
145
|
-
def wait(
|
|
146
|
-
self, **kwargs: Unpack[
|
|
151
|
+
def wait( # type: ignore[override]
|
|
152
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
|
|
147
153
|
) -> None:
|
|
148
154
|
"""
|
|
149
155
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted.wait)
|
|
@@ -157,7 +163,9 @@ class NodegroupActiveWaiter(Waiter):
|
|
|
157
163
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
158
164
|
"""
|
|
159
165
|
|
|
160
|
-
def wait(
|
|
166
|
+
def wait( # type: ignore[override]
|
|
167
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
|
|
168
|
+
) -> None:
|
|
161
169
|
"""
|
|
162
170
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive.wait)
|
|
163
171
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
@@ -170,7 +178,9 @@ class NodegroupDeletedWaiter(Waiter):
|
|
|
170
178
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
171
179
|
"""
|
|
172
180
|
|
|
173
|
-
def wait(
|
|
181
|
+
def wait( # type: ignore[override]
|
|
182
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
|
|
183
|
+
) -> None:
|
|
174
184
|
"""
|
|
175
185
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted.wait)
|
|
176
186
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
types_boto3_eks/waiter.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for eks service client waiters.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -36,19 +36,17 @@ Usage::
|
|
|
36
36
|
Copyright 2024 Vlad Emelianov
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
|
+
from __future__ import annotations
|
|
40
|
+
|
|
39
41
|
import sys
|
|
40
42
|
|
|
41
43
|
from botocore.waiter import Waiter
|
|
42
44
|
|
|
43
45
|
from .type_defs import (
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef,
|
|
49
|
-
DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef,
|
|
50
|
-
DescribeNodegroupRequestNodegroupActiveWaitTypeDef,
|
|
51
|
-
DescribeNodegroupRequestNodegroupDeletedWaitTypeDef,
|
|
46
|
+
DescribeAddonRequestWaitTypeDef,
|
|
47
|
+
DescribeClusterRequestWaitTypeDef,
|
|
48
|
+
DescribeFargateProfileRequestWaitTypeDef,
|
|
49
|
+
DescribeNodegroupRequestWaitTypeDef,
|
|
52
50
|
)
|
|
53
51
|
|
|
54
52
|
if sys.version_info >= (3, 12):
|
|
@@ -72,7 +70,9 @@ class AddonActiveWaiter(Waiter):
|
|
|
72
70
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive)
|
|
73
71
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addonactivewaiter)
|
|
74
72
|
"""
|
|
75
|
-
def wait(
|
|
73
|
+
def wait( # type: ignore[override]
|
|
74
|
+
self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
|
|
75
|
+
) -> None:
|
|
76
76
|
"""
|
|
77
77
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive.wait)
|
|
78
78
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addonactivewaiter)
|
|
@@ -83,7 +83,9 @@ class AddonDeletedWaiter(Waiter):
|
|
|
83
83
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted)
|
|
84
84
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addondeletedwaiter)
|
|
85
85
|
"""
|
|
86
|
-
def wait(
|
|
86
|
+
def wait( # type: ignore[override]
|
|
87
|
+
self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
|
|
88
|
+
) -> None:
|
|
87
89
|
"""
|
|
88
90
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted.wait)
|
|
89
91
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#addondeletedwaiter)
|
|
@@ -94,7 +96,9 @@ class ClusterActiveWaiter(Waiter):
|
|
|
94
96
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive)
|
|
95
97
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusteractivewaiter)
|
|
96
98
|
"""
|
|
97
|
-
def wait(
|
|
99
|
+
def wait( # type: ignore[override]
|
|
100
|
+
self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
|
|
101
|
+
) -> None:
|
|
98
102
|
"""
|
|
99
103
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive.wait)
|
|
100
104
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusteractivewaiter)
|
|
@@ -105,7 +109,9 @@ class ClusterDeletedWaiter(Waiter):
|
|
|
105
109
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted)
|
|
106
110
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
107
111
|
"""
|
|
108
|
-
def wait(
|
|
112
|
+
def wait( # type: ignore[override]
|
|
113
|
+
self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
|
|
114
|
+
) -> None:
|
|
109
115
|
"""
|
|
110
116
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted.wait)
|
|
111
117
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
@@ -116,8 +122,8 @@ class FargateProfileActiveWaiter(Waiter):
|
|
|
116
122
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive)
|
|
117
123
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#fargateprofileactivewaiter)
|
|
118
124
|
"""
|
|
119
|
-
def wait(
|
|
120
|
-
self, **kwargs: Unpack[
|
|
125
|
+
def wait( # type: ignore[override]
|
|
126
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
|
|
121
127
|
) -> None:
|
|
122
128
|
"""
|
|
123
129
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive.wait)
|
|
@@ -129,8 +135,8 @@ class FargateProfileDeletedWaiter(Waiter):
|
|
|
129
135
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted)
|
|
130
136
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#fargateprofiledeletedwaiter)
|
|
131
137
|
"""
|
|
132
|
-
def wait(
|
|
133
|
-
self, **kwargs: Unpack[
|
|
138
|
+
def wait( # type: ignore[override]
|
|
139
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
|
|
134
140
|
) -> None:
|
|
135
141
|
"""
|
|
136
142
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted.wait)
|
|
@@ -142,7 +148,9 @@ class NodegroupActiveWaiter(Waiter):
|
|
|
142
148
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive)
|
|
143
149
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
144
150
|
"""
|
|
145
|
-
def wait(
|
|
151
|
+
def wait( # type: ignore[override]
|
|
152
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
|
|
153
|
+
) -> None:
|
|
146
154
|
"""
|
|
147
155
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive.wait)
|
|
148
156
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
@@ -153,7 +161,9 @@ class NodegroupDeletedWaiter(Waiter):
|
|
|
153
161
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted)
|
|
154
162
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
155
163
|
"""
|
|
156
|
-
def wait(
|
|
164
|
+
def wait( # type: ignore[override]
|
|
165
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
|
|
166
|
+
) -> None:
|
|
157
167
|
"""
|
|
158
168
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted.wait)
|
|
159
169
|
[Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: types-boto3-eks
|
|
3
|
-
Version: 1.35.
|
|
4
|
-
Summary: Type annotations for boto3 EKS 1.35.
|
|
3
|
+
Version: 1.35.87
|
|
4
|
+
Summary: Type annotations for boto3 EKS 1.35.87 service generated with mypy-boto3-builder 8.7.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
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
43
43
|
|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
Type annotations for [boto3 EKS 1.35.
|
|
46
|
+
Type annotations for [boto3 EKS 1.35.87](https://pypi.org/project/boto3/)
|
|
47
47
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +52,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated with
|
|
55
|
-
[mypy-boto3-builder 8.
|
|
55
|
+
[mypy-boto3-builder 8.7.0](https://github.com/youtype/mypy_boto3_builder).
|
|
56
56
|
|
|
57
57
|
More information can be found on
|
|
58
58
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -106,7 +106,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
106
106
|
isolation.
|
|
107
107
|
|
|
108
108
|
1. Run mypy-boto3-builder in your package root directory:
|
|
109
|
-
`uvx --with 'boto3==1.35.
|
|
109
|
+
`uvx --with 'boto3==1.35.87' mypy_boto3_builder`
|
|
110
110
|
2. Select `boto3` AWS SDK.
|
|
111
111
|
3. Add `EKS` service.
|
|
112
112
|
4. Use provided commands to install generated packages.
|
|
@@ -341,6 +341,7 @@ from boto3.session import Session
|
|
|
341
341
|
from types_boto3_eks import EKSClient
|
|
342
342
|
from types_boto3_eks.paginator import (
|
|
343
343
|
DescribeAddonVersionsPaginator,
|
|
344
|
+
DescribeClusterVersionsPaginator,
|
|
344
345
|
ListAccessEntriesPaginator,
|
|
345
346
|
ListAccessPoliciesPaginator,
|
|
346
347
|
ListAddonsPaginator,
|
|
@@ -362,6 +363,9 @@ client: EKSClient = Session().client("eks")
|
|
|
362
363
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator(
|
|
363
364
|
"describe_addon_versions"
|
|
364
365
|
)
|
|
366
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator(
|
|
367
|
+
"describe_cluster_versions"
|
|
368
|
+
)
|
|
365
369
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator(
|
|
366
370
|
"list_access_entries"
|
|
367
371
|
)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
types_boto3_eks/__init__.py,sha256=e07tv9kdbnEcM5XxHTiKhgsPhzdyz0ZOvWGmZfSGxY0,4990
|
|
2
|
+
types_boto3_eks/__init__.pyi,sha256=ZJI2VlfEm5QK1K5ubcCxyvYCN3U6fR4Wz1sAytfs1_k,4989
|
|
3
|
+
types_boto3_eks/__main__.py,sha256=QDLE8laK42Kl74vGj_bjbOqx9QFjvEdRiLvAXW1jUWk,968
|
|
4
|
+
types_boto3_eks/client.py,sha256=oRbYX61p-R7yvMi0t-GWWW5BEbtJd8_OKn_DVv1rUwE,50046
|
|
5
|
+
types_boto3_eks/client.pyi,sha256=RDHUZ7NP4Tozbu2rhxdFlzwTmzrovbV1IEkW0tDDbyg,50043
|
|
6
|
+
types_boto3_eks/literals.py,sha256=--AYkQuS8A00jXIPrGqx6I_nrc3sgi7rdXlZ-lnIBow,19160
|
|
7
|
+
types_boto3_eks/literals.pyi,sha256=nRFJKcNiM9YTRiig8rMDH4lEk_5q6A5C_DizvfRgbCI,19158
|
|
8
|
+
types_boto3_eks/paginator.py,sha256=n6Cg29feBwvq1lZTq1_vHwt9TUwyjS5jvlm_oYpOQUA,20512
|
|
9
|
+
types_boto3_eks/paginator.pyi,sha256=KcJi56fwspwz_Zik3hJ0eR-Z_1sVQfRzcRISfUaq_Fc,20469
|
|
10
|
+
types_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_eks/type_defs.py,sha256=ybd5AlXNGUPLJsEk5blhV2F87mvP1kS49dEuVPGhgI8,55606
|
|
12
|
+
types_boto3_eks/type_defs.pyi,sha256=2kKjV2zbdKudhvt43B7f8jFwOtJqegnmwWm3QwMJs-g,55380
|
|
13
|
+
types_boto3_eks/version.py,sha256=llkYdzVL-lBS7MVa7Af7LmykMnhfk_q9S4EthMGyjco,93
|
|
14
|
+
types_boto3_eks/waiter.py,sha256=erpkLRTNWP-4lKabqHbPX4QeudOdXd1IAcn-mHG88a4,8480
|
|
15
|
+
types_boto3_eks/waiter.pyi,sha256=timHXPuRYObG5yPUmvuGuy4xNYRBLt2XqXHK7AWJSxE,8463
|
|
16
|
+
types_boto3_eks-1.35.87.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
types_boto3_eks-1.35.87.dist-info/METADATA,sha256=yiW9aMtiWho0hcz-ABFTv1hig4KPmbfRoW9h7_uvqC0,17661
|
|
18
|
+
types_boto3_eks-1.35.87.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
19
|
+
types_boto3_eks-1.35.87.dist-info/top_level.txt,sha256=ZLKgic1D7dd5TUGtlRhAq-FEsE6DYeQws3VEG7aRhp4,16
|
|
20
|
+
types_boto3_eks-1.35.87.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
types_boto3_eks/__init__.py,sha256=SmC93edEdUadznWdF8mLCazlD24F2BV1hRVSplPto0A,4744
|
|
2
|
-
types_boto3_eks/__init__.pyi,sha256=Pjk7LgEl2-h-GrRHSIs7LtLb-2QAe4TYfU4TRbAxFYA,4743
|
|
3
|
-
types_boto3_eks/__main__.py,sha256=9-9TQquNt0xGJWArwZaFbwQvBCIRrJY7ELHCCWj035I,934
|
|
4
|
-
types_boto3_eks/client.py,sha256=q4XHnw3RB3_Y4L8NwgF3Cxq7VHxiz2oUbqEc5sc_fQE,47951
|
|
5
|
-
types_boto3_eks/client.pyi,sha256=5sHAMEkAZMnFmpt5i7Jd8FJ6CPzMeb2DYfd7a1X7AE0,47947
|
|
6
|
-
types_boto3_eks/literals.py,sha256=iSd9LMCwkvzX0IxdLyGv1zNQ01U7TmHiV721ccAu8xw,18870
|
|
7
|
-
types_boto3_eks/literals.pyi,sha256=Y21xWphrkQQlL_x1Cd6Pl9HtLf6m_HLTJthV9O4PP-g,18868
|
|
8
|
-
types_boto3_eks/paginator.py,sha256=dp4DqsqkA8PWVq3hhFTs2t15w_NXSaeEwGrTZTBZbCc,16693
|
|
9
|
-
types_boto3_eks/paginator.pyi,sha256=Z1xA134bDE4_SEPMaAEXxE2NBablx8l4QbkIe5i3DWk,16664
|
|
10
|
-
types_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_eks/type_defs.py,sha256=Lx3ladvjDan9xggxW6hd72r4UvOK2gWxy10ptoEcQB0,55331
|
|
12
|
-
types_boto3_eks/type_defs.pyi,sha256=Cu-Gc5ilsQphHA-CTtUPADd9S1dcYDbg9oYHVXmzE1o,55106
|
|
13
|
-
types_boto3_eks/version.py,sha256=43YQ076woionZM0aB5UwdorEF0QPSwqFdL8sU1y7tgU,93
|
|
14
|
-
types_boto3_eks/waiter.py,sha256=0Rng0PIZ4ndd-_ATeNAjPQ9e_tNVShPEMAKEDnM_KHA,8564
|
|
15
|
-
types_boto3_eks/waiter.pyi,sha256=my2xn08iZ0aiMdFmToDCdjXnQSovfA5MU9cp2jceu1w,8547
|
|
16
|
-
types_boto3_eks-1.35.81.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
types_boto3_eks-1.35.81.dist-info/METADATA,sha256=MrgooYJ_ZGf2WvoM7D0A1DXwpOLWn3vBO0Gyj1yAc58,17495
|
|
18
|
-
types_boto3_eks-1.35.81.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
19
|
-
types_boto3_eks-1.35.81.dist-info/top_level.txt,sha256=ZLKgic1D7dd5TUGtlRhAq-FEsE6DYeQws3VEG7aRhp4,16
|
|
20
|
-
types_boto3_eks-1.35.81.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|