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/version.py
CHANGED
mypy_boto3_eks/waiter.py
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for eks service client waiters.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
5
7
|
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
@@ -34,9 +36,28 @@ Usage::
|
|
|
34
36
|
```
|
|
35
37
|
"""
|
|
36
38
|
|
|
39
|
+
from __future__ import annotations
|
|
40
|
+
|
|
41
|
+
import sys
|
|
42
|
+
|
|
37
43
|
from botocore.waiter import Waiter
|
|
38
44
|
|
|
39
|
-
from .type_defs import
|
|
45
|
+
from .type_defs import (
|
|
46
|
+
DescribeAddonRequestWaitExtraTypeDef,
|
|
47
|
+
DescribeAddonRequestWaitTypeDef,
|
|
48
|
+
DescribeClusterRequestWaitExtraTypeDef,
|
|
49
|
+
DescribeClusterRequestWaitTypeDef,
|
|
50
|
+
DescribeFargateProfileRequestWaitExtraTypeDef,
|
|
51
|
+
DescribeFargateProfileRequestWaitTypeDef,
|
|
52
|
+
DescribeNodegroupRequestWaitExtraTypeDef,
|
|
53
|
+
DescribeNodegroupRequestWaitTypeDef,
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
if sys.version_info >= (3, 12):
|
|
57
|
+
from typing import Unpack
|
|
58
|
+
else:
|
|
59
|
+
from typing_extensions import Unpack
|
|
60
|
+
|
|
40
61
|
|
|
41
62
|
__all__ = (
|
|
42
63
|
"AddonActiveWaiter",
|
|
@@ -52,115 +73,119 @@ __all__ = (
|
|
|
52
73
|
|
|
53
74
|
class AddonActiveWaiter(Waiter):
|
|
54
75
|
"""
|
|
55
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonActive)
|
|
76
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive)
|
|
56
77
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
57
78
|
"""
|
|
58
79
|
|
|
59
|
-
def wait(
|
|
60
|
-
self,
|
|
80
|
+
def wait( # type: ignore[override]
|
|
81
|
+
self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
|
|
61
82
|
) -> None:
|
|
62
83
|
"""
|
|
63
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonActive.wait)
|
|
84
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive.wait)
|
|
64
85
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
65
86
|
"""
|
|
66
87
|
|
|
67
88
|
|
|
68
89
|
class AddonDeletedWaiter(Waiter):
|
|
69
90
|
"""
|
|
70
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonDeleted)
|
|
91
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted)
|
|
71
92
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
72
93
|
"""
|
|
73
94
|
|
|
74
|
-
def wait(
|
|
75
|
-
self,
|
|
95
|
+
def wait( # type: ignore[override]
|
|
96
|
+
self, **kwargs: Unpack[DescribeAddonRequestWaitExtraTypeDef]
|
|
76
97
|
) -> None:
|
|
77
98
|
"""
|
|
78
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonDeleted.wait)
|
|
99
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted.wait)
|
|
79
100
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
80
101
|
"""
|
|
81
102
|
|
|
82
103
|
|
|
83
104
|
class ClusterActiveWaiter(Waiter):
|
|
84
105
|
"""
|
|
85
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterActive)
|
|
106
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive)
|
|
86
107
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
87
108
|
"""
|
|
88
109
|
|
|
89
|
-
def wait(
|
|
110
|
+
def wait( # type: ignore[override]
|
|
111
|
+
self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
|
|
112
|
+
) -> None:
|
|
90
113
|
"""
|
|
91
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterActive.wait)
|
|
114
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive.wait)
|
|
92
115
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
93
116
|
"""
|
|
94
117
|
|
|
95
118
|
|
|
96
119
|
class ClusterDeletedWaiter(Waiter):
|
|
97
120
|
"""
|
|
98
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterDeleted)
|
|
121
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted)
|
|
99
122
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
100
123
|
"""
|
|
101
124
|
|
|
102
|
-
def wait(
|
|
125
|
+
def wait( # type: ignore[override]
|
|
126
|
+
self, **kwargs: Unpack[DescribeClusterRequestWaitExtraTypeDef]
|
|
127
|
+
) -> None:
|
|
103
128
|
"""
|
|
104
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterDeleted.wait)
|
|
129
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted.wait)
|
|
105
130
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
106
131
|
"""
|
|
107
132
|
|
|
108
133
|
|
|
109
134
|
class FargateProfileActiveWaiter(Waiter):
|
|
110
135
|
"""
|
|
111
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileActive)
|
|
136
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive)
|
|
112
137
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofileactivewaiter)
|
|
113
138
|
"""
|
|
114
139
|
|
|
115
|
-
def wait(
|
|
116
|
-
self,
|
|
140
|
+
def wait( # type: ignore[override]
|
|
141
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
|
|
117
142
|
) -> None:
|
|
118
143
|
"""
|
|
119
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileActive.wait)
|
|
144
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive.wait)
|
|
120
145
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofileactivewaiter)
|
|
121
146
|
"""
|
|
122
147
|
|
|
123
148
|
|
|
124
149
|
class FargateProfileDeletedWaiter(Waiter):
|
|
125
150
|
"""
|
|
126
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileDeleted)
|
|
151
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted)
|
|
127
152
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofiledeletedwaiter)
|
|
128
153
|
"""
|
|
129
154
|
|
|
130
|
-
def wait(
|
|
131
|
-
self,
|
|
155
|
+
def wait( # type: ignore[override]
|
|
156
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestWaitExtraTypeDef]
|
|
132
157
|
) -> None:
|
|
133
158
|
"""
|
|
134
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileDeleted.wait)
|
|
159
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted.wait)
|
|
135
160
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofiledeletedwaiter)
|
|
136
161
|
"""
|
|
137
162
|
|
|
138
163
|
|
|
139
164
|
class NodegroupActiveWaiter(Waiter):
|
|
140
165
|
"""
|
|
141
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupActive)
|
|
166
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive)
|
|
142
167
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
143
168
|
"""
|
|
144
169
|
|
|
145
|
-
def wait(
|
|
146
|
-
self,
|
|
170
|
+
def wait( # type: ignore[override]
|
|
171
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
|
|
147
172
|
) -> None:
|
|
148
173
|
"""
|
|
149
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupActive.wait)
|
|
174
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive.wait)
|
|
150
175
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
151
176
|
"""
|
|
152
177
|
|
|
153
178
|
|
|
154
179
|
class NodegroupDeletedWaiter(Waiter):
|
|
155
180
|
"""
|
|
156
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupDeleted)
|
|
181
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted)
|
|
157
182
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
158
183
|
"""
|
|
159
184
|
|
|
160
|
-
def wait(
|
|
161
|
-
self,
|
|
185
|
+
def wait( # type: ignore[override]
|
|
186
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestWaitExtraTypeDef]
|
|
162
187
|
) -> None:
|
|
163
188
|
"""
|
|
164
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupDeleted.wait)
|
|
189
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted.wait)
|
|
165
190
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
166
191
|
"""
|
mypy_boto3_eks/waiter.pyi
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for eks service client waiters.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/)
|
|
5
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
5
7
|
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
@@ -34,9 +36,27 @@ Usage::
|
|
|
34
36
|
```
|
|
35
37
|
"""
|
|
36
38
|
|
|
39
|
+
from __future__ import annotations
|
|
40
|
+
|
|
41
|
+
import sys
|
|
42
|
+
|
|
37
43
|
from botocore.waiter import Waiter
|
|
38
44
|
|
|
39
|
-
from .type_defs import
|
|
45
|
+
from .type_defs import (
|
|
46
|
+
DescribeAddonRequestWaitExtraTypeDef,
|
|
47
|
+
DescribeAddonRequestWaitTypeDef,
|
|
48
|
+
DescribeClusterRequestWaitExtraTypeDef,
|
|
49
|
+
DescribeClusterRequestWaitTypeDef,
|
|
50
|
+
DescribeFargateProfileRequestWaitExtraTypeDef,
|
|
51
|
+
DescribeFargateProfileRequestWaitTypeDef,
|
|
52
|
+
DescribeNodegroupRequestWaitExtraTypeDef,
|
|
53
|
+
DescribeNodegroupRequestWaitTypeDef,
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
if sys.version_info >= (3, 12):
|
|
57
|
+
from typing import Unpack
|
|
58
|
+
else:
|
|
59
|
+
from typing_extensions import Unpack
|
|
40
60
|
|
|
41
61
|
__all__ = (
|
|
42
62
|
"AddonActiveWaiter",
|
|
@@ -51,108 +71,104 @@ __all__ = (
|
|
|
51
71
|
|
|
52
72
|
class AddonActiveWaiter(Waiter):
|
|
53
73
|
"""
|
|
54
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonActive)
|
|
74
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive)
|
|
55
75
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
56
76
|
"""
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
self, *, clusterName: str, addonName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
77
|
+
def wait( # type: ignore[override]
|
|
78
|
+
self, **kwargs: Unpack[DescribeAddonRequestWaitTypeDef]
|
|
60
79
|
) -> None:
|
|
61
80
|
"""
|
|
62
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonActive.wait)
|
|
81
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonActive.html#EKS.Waiter.AddonActive.wait)
|
|
63
82
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addonactivewaiter)
|
|
64
83
|
"""
|
|
65
84
|
|
|
66
85
|
class AddonDeletedWaiter(Waiter):
|
|
67
86
|
"""
|
|
68
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonDeleted)
|
|
87
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted)
|
|
69
88
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
70
89
|
"""
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
self, *, clusterName: str, addonName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
90
|
+
def wait( # type: ignore[override]
|
|
91
|
+
self, **kwargs: Unpack[DescribeAddonRequestWaitExtraTypeDef]
|
|
74
92
|
) -> None:
|
|
75
93
|
"""
|
|
76
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.AddonDeleted.wait)
|
|
94
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/AddonDeleted.html#EKS.Waiter.AddonDeleted.wait)
|
|
77
95
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#addondeletedwaiter)
|
|
78
96
|
"""
|
|
79
97
|
|
|
80
98
|
class ClusterActiveWaiter(Waiter):
|
|
81
99
|
"""
|
|
82
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterActive)
|
|
100
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive)
|
|
83
101
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
84
102
|
"""
|
|
85
|
-
|
|
86
|
-
|
|
103
|
+
def wait( # type: ignore[override]
|
|
104
|
+
self, **kwargs: Unpack[DescribeClusterRequestWaitTypeDef]
|
|
105
|
+
) -> None:
|
|
87
106
|
"""
|
|
88
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterActive.wait)
|
|
107
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterActive.html#EKS.Waiter.ClusterActive.wait)
|
|
89
108
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusteractivewaiter)
|
|
90
109
|
"""
|
|
91
110
|
|
|
92
111
|
class ClusterDeletedWaiter(Waiter):
|
|
93
112
|
"""
|
|
94
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterDeleted)
|
|
113
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted)
|
|
95
114
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
96
115
|
"""
|
|
97
|
-
|
|
98
|
-
|
|
116
|
+
def wait( # type: ignore[override]
|
|
117
|
+
self, **kwargs: Unpack[DescribeClusterRequestWaitExtraTypeDef]
|
|
118
|
+
) -> None:
|
|
99
119
|
"""
|
|
100
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.ClusterDeleted.wait)
|
|
120
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/ClusterDeleted.html#EKS.Waiter.ClusterDeleted.wait)
|
|
101
121
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#clusterdeletedwaiter)
|
|
102
122
|
"""
|
|
103
123
|
|
|
104
124
|
class FargateProfileActiveWaiter(Waiter):
|
|
105
125
|
"""
|
|
106
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileActive)
|
|
126
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive)
|
|
107
127
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofileactivewaiter)
|
|
108
128
|
"""
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
self, *, clusterName: str, fargateProfileName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
129
|
+
def wait( # type: ignore[override]
|
|
130
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestWaitTypeDef]
|
|
112
131
|
) -> None:
|
|
113
132
|
"""
|
|
114
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileActive.wait)
|
|
133
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileActive.html#EKS.Waiter.FargateProfileActive.wait)
|
|
115
134
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofileactivewaiter)
|
|
116
135
|
"""
|
|
117
136
|
|
|
118
137
|
class FargateProfileDeletedWaiter(Waiter):
|
|
119
138
|
"""
|
|
120
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileDeleted)
|
|
139
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted)
|
|
121
140
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofiledeletedwaiter)
|
|
122
141
|
"""
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
self, *, clusterName: str, fargateProfileName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
142
|
+
def wait( # type: ignore[override]
|
|
143
|
+
self, **kwargs: Unpack[DescribeFargateProfileRequestWaitExtraTypeDef]
|
|
126
144
|
) -> None:
|
|
127
145
|
"""
|
|
128
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.FargateProfileDeleted.wait)
|
|
146
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/FargateProfileDeleted.html#EKS.Waiter.FargateProfileDeleted.wait)
|
|
129
147
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#fargateprofiledeletedwaiter)
|
|
130
148
|
"""
|
|
131
149
|
|
|
132
150
|
class NodegroupActiveWaiter(Waiter):
|
|
133
151
|
"""
|
|
134
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupActive)
|
|
152
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive)
|
|
135
153
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
136
154
|
"""
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
self, *, clusterName: str, nodegroupName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
155
|
+
def wait( # type: ignore[override]
|
|
156
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestWaitTypeDef]
|
|
140
157
|
) -> None:
|
|
141
158
|
"""
|
|
142
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupActive.wait)
|
|
159
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupActive.html#EKS.Waiter.NodegroupActive.wait)
|
|
143
160
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupactivewaiter)
|
|
144
161
|
"""
|
|
145
162
|
|
|
146
163
|
class NodegroupDeletedWaiter(Waiter):
|
|
147
164
|
"""
|
|
148
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupDeleted)
|
|
165
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted)
|
|
149
166
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
150
167
|
"""
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
self, *, clusterName: str, nodegroupName: str, WaiterConfig: WaiterConfigTypeDef = ...
|
|
168
|
+
def wait( # type: ignore[override]
|
|
169
|
+
self, **kwargs: Unpack[DescribeNodegroupRequestWaitExtraTypeDef]
|
|
154
170
|
) -> None:
|
|
155
171
|
"""
|
|
156
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Waiter.NodegroupDeleted.wait)
|
|
172
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/waiter/NodegroupDeleted.html#EKS.Waiter.NodegroupDeleted.wait)
|
|
157
173
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/waiters/#nodegroupdeletedwaiter)
|
|
158
174
|
"""
|