mypy-boto3-eks 1.34.3__tar.gz → 1.34.53__tar.gz
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-1.34.3 → mypy-boto3-eks-1.34.53}/LICENSE +1 -1
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/PKG-INFO +9 -7
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/README.md +4 -2
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks/__init__.py +4 -0
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks/__init__.pyi +4 -0
- mypy-boto3-eks-1.34.53/mypy_boto3_eks/__main__.py +40 -0
- mypy-boto3-eks-1.34.3/mypy_boto3_eks/client.pyi → mypy-boto3-eks-1.34.53/mypy_boto3_eks/client.py +60 -23
- mypy-boto3-eks-1.34.3/mypy_boto3_eks/client.py → mypy-boto3-eks-1.34.53/mypy_boto3_eks/client.pyi +57 -26
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks/literals.py +15 -1
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks/literals.pyi +15 -1
- mypy-boto3-eks-1.34.3/mypy_boto3_eks/paginator.pyi → mypy-boto3-eks-1.34.53/mypy_boto3_eks/paginator.py +42 -5
- mypy-boto3-eks-1.34.3/mypy_boto3_eks/paginator.py → mypy-boto3-eks-1.34.53/mypy_boto3_eks/paginator.pyi +27 -17
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks/type_defs.py +131 -1
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks/type_defs.pyi +131 -1
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks/version.py +1 -1
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks.egg-info/PKG-INFO +9 -7
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/setup.py +4 -7
- mypy-boto3-eks-1.34.3/mypy_boto3_eks/__main__.py +0 -39
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks/py.typed +0 -0
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks/waiter.py +0 -0
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks/waiter.pyi +0 -0
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks.egg-info/SOURCES.txt +0 -0
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks.egg-info/dependency_links.txt +0 -0
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks.egg-info/not-zip-safe +0 -0
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks.egg-info/requires.txt +0 -0
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/mypy_boto3_eks.egg-info/top_level.txt +0 -0
- {mypy-boto3-eks-1.34.3 → mypy-boto3-eks-1.34.53}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-eks
|
|
3
|
-
Version: 1.34.
|
|
4
|
-
Summary: Type annotations for boto3.EKS 1.34.
|
|
3
|
+
Version: 1.34.53
|
|
4
|
+
Summary: Type annotations for boto3.EKS 1.34.53 service generated with mypy-boto3-builder 7.23.2
|
|
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
|
|
@@ -17,7 +17,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
17
17
|
Classifier: Natural Language :: English
|
|
18
18
|
Classifier: Operating System :: OS Independent
|
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.8
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.9
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -26,10 +25,11 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.13
|
|
27
26
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
27
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
|
-
Classifier: Typing ::
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Classifier: Typing :: Stubs Only
|
|
29
|
+
Requires-Python: >=3.8
|
|
31
30
|
Description-Content-Type: text/markdown
|
|
32
31
|
License-File: LICENSE
|
|
32
|
+
Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
33
33
|
|
|
34
34
|
<a id="mypy-boto3-eks"></a>
|
|
35
35
|
|
|
@@ -43,7 +43,7 @@ License-File: LICENSE
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.EKS 1.34.
|
|
46
|
+
[boto3.EKS 1.34.53](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS)
|
|
47
47
|
service 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 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated by
|
|
55
|
-
[mypy-boto3-builder 7.
|
|
55
|
+
[mypy-boto3-builder 7.23.2](https://github.com/youtype/mypy_boto3_builder).
|
|
56
56
|
|
|
57
57
|
More information can be found on
|
|
58
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -293,6 +293,7 @@ from mypy_boto3_eks.paginator import (
|
|
|
293
293
|
ListEksAnywhereSubscriptionsPaginator,
|
|
294
294
|
ListFargateProfilesPaginator,
|
|
295
295
|
ListIdentityProviderConfigsPaginator,
|
|
296
|
+
ListInsightsPaginator,
|
|
296
297
|
ListNodegroupsPaginator,
|
|
297
298
|
ListPodIdentityAssociationsPaginator,
|
|
298
299
|
ListUpdatesPaginator,
|
|
@@ -325,6 +326,7 @@ list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_pagin
|
|
|
325
326
|
list_identity_provider_configs_paginator: ListIdentityProviderConfigsPaginator = (
|
|
326
327
|
client.get_paginator("list_identity_provider_configs")
|
|
327
328
|
)
|
|
329
|
+
list_insights_paginator: ListInsightsPaginator = client.get_paginator("list_insights")
|
|
328
330
|
list_nodegroups_paginator: ListNodegroupsPaginator = client.get_paginator("list_nodegroups")
|
|
329
331
|
list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = (
|
|
330
332
|
client.get_paginator("list_pod_identity_associations")
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|

|
|
11
11
|
|
|
12
12
|
Type annotations for
|
|
13
|
-
[boto3.EKS 1.34.
|
|
13
|
+
[boto3.EKS 1.34.53](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS)
|
|
14
14
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
15
15
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
16
16
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -19,7 +19,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
19
19
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
20
20
|
|
|
21
21
|
Generated by
|
|
22
|
-
[mypy-boto3-builder 7.
|
|
22
|
+
[mypy-boto3-builder 7.23.2](https://github.com/youtype/mypy_boto3_builder).
|
|
23
23
|
|
|
24
24
|
More information can be found on
|
|
25
25
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -260,6 +260,7 @@ from mypy_boto3_eks.paginator import (
|
|
|
260
260
|
ListEksAnywhereSubscriptionsPaginator,
|
|
261
261
|
ListFargateProfilesPaginator,
|
|
262
262
|
ListIdentityProviderConfigsPaginator,
|
|
263
|
+
ListInsightsPaginator,
|
|
263
264
|
ListNodegroupsPaginator,
|
|
264
265
|
ListPodIdentityAssociationsPaginator,
|
|
265
266
|
ListUpdatesPaginator,
|
|
@@ -292,6 +293,7 @@ list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_pagin
|
|
|
292
293
|
list_identity_provider_configs_paginator: ListIdentityProviderConfigsPaginator = (
|
|
293
294
|
client.get_paginator("list_identity_provider_configs")
|
|
294
295
|
)
|
|
296
|
+
list_insights_paginator: ListInsightsPaginator = client.get_paginator("list_insights")
|
|
295
297
|
list_nodegroups_paginator: ListNodegroupsPaginator = client.get_paginator("list_nodegroups")
|
|
296
298
|
list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = (
|
|
297
299
|
client.get_paginator("list_pod_identity_associations")
|
|
@@ -23,6 +23,7 @@ Usage::
|
|
|
23
23
|
ListEksAnywhereSubscriptionsPaginator,
|
|
24
24
|
ListFargateProfilesPaginator,
|
|
25
25
|
ListIdentityProviderConfigsPaginator,
|
|
26
|
+
ListInsightsPaginator,
|
|
26
27
|
ListNodegroupsPaginator,
|
|
27
28
|
ListPodIdentityAssociationsPaginator,
|
|
28
29
|
ListUpdatesPaginator,
|
|
@@ -51,6 +52,7 @@ Usage::
|
|
|
51
52
|
list_eks_anywhere_subscriptions_paginator: ListEksAnywhereSubscriptionsPaginator = client.get_paginator("list_eks_anywhere_subscriptions")
|
|
52
53
|
list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_paginator("list_fargate_profiles")
|
|
53
54
|
list_identity_provider_configs_paginator: ListIdentityProviderConfigsPaginator = client.get_paginator("list_identity_provider_configs")
|
|
55
|
+
list_insights_paginator: ListInsightsPaginator = client.get_paginator("list_insights")
|
|
54
56
|
list_nodegroups_paginator: ListNodegroupsPaginator = client.get_paginator("list_nodegroups")
|
|
55
57
|
list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
|
|
56
58
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
@@ -68,6 +70,7 @@ from .paginator import (
|
|
|
68
70
|
ListEksAnywhereSubscriptionsPaginator,
|
|
69
71
|
ListFargateProfilesPaginator,
|
|
70
72
|
ListIdentityProviderConfigsPaginator,
|
|
73
|
+
ListInsightsPaginator,
|
|
71
74
|
ListNodegroupsPaginator,
|
|
72
75
|
ListPodIdentityAssociationsPaginator,
|
|
73
76
|
ListUpdatesPaginator,
|
|
@@ -103,6 +106,7 @@ __all__ = (
|
|
|
103
106
|
"ListEksAnywhereSubscriptionsPaginator",
|
|
104
107
|
"ListFargateProfilesPaginator",
|
|
105
108
|
"ListIdentityProviderConfigsPaginator",
|
|
109
|
+
"ListInsightsPaginator",
|
|
106
110
|
"ListNodegroupsPaginator",
|
|
107
111
|
"ListPodIdentityAssociationsPaginator",
|
|
108
112
|
"ListUpdatesPaginator",
|
|
@@ -23,6 +23,7 @@ Usage::
|
|
|
23
23
|
ListEksAnywhereSubscriptionsPaginator,
|
|
24
24
|
ListFargateProfilesPaginator,
|
|
25
25
|
ListIdentityProviderConfigsPaginator,
|
|
26
|
+
ListInsightsPaginator,
|
|
26
27
|
ListNodegroupsPaginator,
|
|
27
28
|
ListPodIdentityAssociationsPaginator,
|
|
28
29
|
ListUpdatesPaginator,
|
|
@@ -51,6 +52,7 @@ Usage::
|
|
|
51
52
|
list_eks_anywhere_subscriptions_paginator: ListEksAnywhereSubscriptionsPaginator = client.get_paginator("list_eks_anywhere_subscriptions")
|
|
52
53
|
list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_paginator("list_fargate_profiles")
|
|
53
54
|
list_identity_provider_configs_paginator: ListIdentityProviderConfigsPaginator = client.get_paginator("list_identity_provider_configs")
|
|
55
|
+
list_insights_paginator: ListInsightsPaginator = client.get_paginator("list_insights")
|
|
54
56
|
list_nodegroups_paginator: ListNodegroupsPaginator = client.get_paginator("list_nodegroups")
|
|
55
57
|
list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = client.get_paginator("list_pod_identity_associations")
|
|
56
58
|
list_updates_paginator: ListUpdatesPaginator = client.get_paginator("list_updates")
|
|
@@ -68,6 +70,7 @@ from .paginator import (
|
|
|
68
70
|
ListEksAnywhereSubscriptionsPaginator,
|
|
69
71
|
ListFargateProfilesPaginator,
|
|
70
72
|
ListIdentityProviderConfigsPaginator,
|
|
73
|
+
ListInsightsPaginator,
|
|
71
74
|
ListNodegroupsPaginator,
|
|
72
75
|
ListPodIdentityAssociationsPaginator,
|
|
73
76
|
ListUpdatesPaginator,
|
|
@@ -103,6 +106,7 @@ __all__ = (
|
|
|
103
106
|
"ListEksAnywhereSubscriptionsPaginator",
|
|
104
107
|
"ListFargateProfilesPaginator",
|
|
105
108
|
"ListIdentityProviderConfigsPaginator",
|
|
109
|
+
"ListInsightsPaginator",
|
|
106
110
|
"ListNodegroupsPaginator",
|
|
107
111
|
"ListPodIdentityAssociationsPaginator",
|
|
108
112
|
"ListUpdatesPaginator",
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Main CLI entrypoint.
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
import sys
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def print_info() -> None:
|
|
9
|
+
"""
|
|
10
|
+
Print package info to stdout.
|
|
11
|
+
"""
|
|
12
|
+
print(
|
|
13
|
+
"Type annotations for boto3.EKS 1.34.53\n"
|
|
14
|
+
"Version: 1.34.53\n"
|
|
15
|
+
"Builder version: 7.23.2\n"
|
|
16
|
+
"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#EKS\n"
|
|
18
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def print_version() -> None:
|
|
24
|
+
"""
|
|
25
|
+
Print package version to stdout.
|
|
26
|
+
"""
|
|
27
|
+
print("1.34.53")
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def main() -> None:
|
|
31
|
+
"""
|
|
32
|
+
Main CLI entrypoint.
|
|
33
|
+
"""
|
|
34
|
+
if "--version" in sys.argv:
|
|
35
|
+
return print_version()
|
|
36
|
+
print_info()
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
if __name__ == "__main__":
|
|
40
|
+
main()
|
mypy-boto3-eks-1.34.3/mypy_boto3_eks/client.pyi → mypy-boto3-eks-1.34.53/mypy_boto3_eks/client.py
RENAMED
|
@@ -35,6 +35,7 @@ from .paginator import (
|
|
|
35
35
|
ListEksAnywhereSubscriptionsPaginator,
|
|
36
36
|
ListFargateProfilesPaginator,
|
|
37
37
|
ListIdentityProviderConfigsPaginator,
|
|
38
|
+
ListInsightsPaginator,
|
|
38
39
|
ListNodegroupsPaginator,
|
|
39
40
|
ListPodIdentityAssociationsPaginator,
|
|
40
41
|
ListUpdatesPaginator,
|
|
@@ -68,6 +69,7 @@ from .type_defs import (
|
|
|
68
69
|
DescribeEksAnywhereSubscriptionResponseTypeDef,
|
|
69
70
|
DescribeFargateProfileResponseTypeDef,
|
|
70
71
|
DescribeIdentityProviderConfigResponseTypeDef,
|
|
72
|
+
DescribeInsightResponseTypeDef,
|
|
71
73
|
DescribeNodegroupResponseTypeDef,
|
|
72
74
|
DescribePodIdentityAssociationResponseTypeDef,
|
|
73
75
|
DescribeUpdateResponseTypeDef,
|
|
@@ -76,6 +78,7 @@ from .type_defs import (
|
|
|
76
78
|
EncryptionConfigTypeDef,
|
|
77
79
|
FargateProfileSelectorTypeDef,
|
|
78
80
|
IdentityProviderConfigTypeDef,
|
|
81
|
+
InsightsFilterTypeDef,
|
|
79
82
|
KubernetesNetworkConfigRequestTypeDef,
|
|
80
83
|
LaunchTemplateSpecificationTypeDef,
|
|
81
84
|
ListAccessEntriesResponseTypeDef,
|
|
@@ -86,6 +89,7 @@ from .type_defs import (
|
|
|
86
89
|
ListEksAnywhereSubscriptionsResponseTypeDef,
|
|
87
90
|
ListFargateProfilesResponseTypeDef,
|
|
88
91
|
ListIdentityProviderConfigsResponseTypeDef,
|
|
92
|
+
ListInsightsResponseTypeDef,
|
|
89
93
|
ListNodegroupsResponseTypeDef,
|
|
90
94
|
ListPodIdentityAssociationsResponseTypeDef,
|
|
91
95
|
ListTagsForResourceResponseTypeDef,
|
|
@@ -129,6 +133,7 @@ else:
|
|
|
129
133
|
|
|
130
134
|
__all__ = ("EKSClient",)
|
|
131
135
|
|
|
136
|
+
|
|
132
137
|
class BotocoreClientError(Exception):
|
|
133
138
|
MSG_TEMPLATE: str
|
|
134
139
|
|
|
@@ -136,6 +141,7 @@ class BotocoreClientError(Exception):
|
|
|
136
141
|
self.response: Dict[str, Any]
|
|
137
142
|
self.operation_name: str
|
|
138
143
|
|
|
144
|
+
|
|
139
145
|
class Exceptions:
|
|
140
146
|
AccessDeniedException: Type[BotocoreClientError]
|
|
141
147
|
BadRequestException: Type[BotocoreClientError]
|
|
@@ -152,6 +158,7 @@ class Exceptions:
|
|
|
152
158
|
ServiceUnavailableException: Type[BotocoreClientError]
|
|
153
159
|
UnsupportedAvailabilityZoneException: Type[BotocoreClientError]
|
|
154
160
|
|
|
161
|
+
|
|
155
162
|
class EKSClient(BaseClient):
|
|
156
163
|
"""
|
|
157
164
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Client)
|
|
@@ -175,7 +182,7 @@ class EKSClient(BaseClient):
|
|
|
175
182
|
clusterName: str,
|
|
176
183
|
principalArn: str,
|
|
177
184
|
policyArn: str,
|
|
178
|
-
accessScope: AccessScopeTypeDef
|
|
185
|
+
accessScope: AccessScopeTypeDef,
|
|
179
186
|
) -> AssociateAccessPolicyResponseTypeDef:
|
|
180
187
|
"""
|
|
181
188
|
Associates an access policy and its scope to an access entry.
|
|
@@ -189,7 +196,7 @@ class EKSClient(BaseClient):
|
|
|
189
196
|
*,
|
|
190
197
|
clusterName: str,
|
|
191
198
|
encryptionConfig: Sequence[EncryptionConfigTypeDef],
|
|
192
|
-
clientRequestToken: str =
|
|
199
|
+
clientRequestToken: str = ...,
|
|
193
200
|
) -> AssociateEncryptionConfigResponseTypeDef:
|
|
194
201
|
"""
|
|
195
202
|
Associates an encryption configuration to an existing cluster.
|
|
@@ -204,7 +211,7 @@ class EKSClient(BaseClient):
|
|
|
204
211
|
clusterName: str,
|
|
205
212
|
oidc: OidcIdentityProviderConfigRequestTypeDef,
|
|
206
213
|
tags: Mapping[str, str] = ...,
|
|
207
|
-
clientRequestToken: str =
|
|
214
|
+
clientRequestToken: str = ...,
|
|
208
215
|
) -> AssociateIdentityProviderConfigResponseTypeDef:
|
|
209
216
|
"""
|
|
210
217
|
Associates an identity provider configuration to a cluster.
|
|
@@ -238,7 +245,7 @@ class EKSClient(BaseClient):
|
|
|
238
245
|
tags: Mapping[str, str] = ...,
|
|
239
246
|
clientRequestToken: str = ...,
|
|
240
247
|
username: str = ...,
|
|
241
|
-
type: str =
|
|
248
|
+
type: str = ...,
|
|
242
249
|
) -> CreateAccessEntryResponseTypeDef:
|
|
243
250
|
"""
|
|
244
251
|
Creates an access entry.
|
|
@@ -257,7 +264,7 @@ class EKSClient(BaseClient):
|
|
|
257
264
|
resolveConflicts: ResolveConflictsType = ...,
|
|
258
265
|
clientRequestToken: str = ...,
|
|
259
266
|
tags: Mapping[str, str] = ...,
|
|
260
|
-
configurationValues: str =
|
|
267
|
+
configurationValues: str = ...,
|
|
261
268
|
) -> CreateAddonResponseTypeDef:
|
|
262
269
|
"""
|
|
263
270
|
Creates an Amazon EKS add-on.
|
|
@@ -279,7 +286,7 @@ class EKSClient(BaseClient):
|
|
|
279
286
|
tags: Mapping[str, str] = ...,
|
|
280
287
|
encryptionConfig: Sequence[EncryptionConfigTypeDef] = ...,
|
|
281
288
|
outpostConfig: OutpostConfigRequestTypeDef = ...,
|
|
282
|
-
accessConfig: CreateAccessConfigRequestTypeDef =
|
|
289
|
+
accessConfig: CreateAccessConfigRequestTypeDef = ...,
|
|
283
290
|
) -> CreateClusterResponseTypeDef:
|
|
284
291
|
"""
|
|
285
292
|
Creates an Amazon EKS control plane.
|
|
@@ -297,7 +304,7 @@ class EKSClient(BaseClient):
|
|
|
297
304
|
licenseType: Literal["Cluster"] = ...,
|
|
298
305
|
autoRenew: bool = ...,
|
|
299
306
|
clientRequestToken: str = ...,
|
|
300
|
-
tags: Mapping[str, str] =
|
|
307
|
+
tags: Mapping[str, str] = ...,
|
|
301
308
|
) -> CreateEksAnywhereSubscriptionResponseTypeDef:
|
|
302
309
|
"""
|
|
303
310
|
Creates an EKS Anywhere subscription.
|
|
@@ -315,7 +322,7 @@ class EKSClient(BaseClient):
|
|
|
315
322
|
subnets: Sequence[str] = ...,
|
|
316
323
|
selectors: Sequence[FargateProfileSelectorTypeDef] = ...,
|
|
317
324
|
clientRequestToken: str = ...,
|
|
318
|
-
tags: Mapping[str, str] =
|
|
325
|
+
tags: Mapping[str, str] = ...,
|
|
319
326
|
) -> CreateFargateProfileResponseTypeDef:
|
|
320
327
|
"""
|
|
321
328
|
Creates an Fargate profile for your Amazon EKS cluster.
|
|
@@ -344,7 +351,7 @@ class EKSClient(BaseClient):
|
|
|
344
351
|
updateConfig: NodegroupUpdateConfigTypeDef = ...,
|
|
345
352
|
capacityType: CapacityTypesType = ...,
|
|
346
353
|
version: str = ...,
|
|
347
|
-
releaseVersion: str =
|
|
354
|
+
releaseVersion: str = ...,
|
|
348
355
|
) -> CreateNodegroupResponseTypeDef:
|
|
349
356
|
"""
|
|
350
357
|
Creates a managed node group for an Amazon EKS cluster.
|
|
@@ -361,7 +368,7 @@ class EKSClient(BaseClient):
|
|
|
361
368
|
serviceAccount: str,
|
|
362
369
|
roleArn: str,
|
|
363
370
|
clientRequestToken: str = ...,
|
|
364
|
-
tags: Mapping[str, str] =
|
|
371
|
+
tags: Mapping[str, str] = ...,
|
|
365
372
|
) -> CreatePodIdentityAssociationResponseTypeDef:
|
|
366
373
|
"""
|
|
367
374
|
Creates an EKS Pod Identity association between a service account in an Amazon
|
|
@@ -483,7 +490,7 @@ class EKSClient(BaseClient):
|
|
|
483
490
|
addonName: str = ...,
|
|
484
491
|
types: Sequence[str] = ...,
|
|
485
492
|
publishers: Sequence[str] = ...,
|
|
486
|
-
owners: Sequence[str] =
|
|
493
|
+
owners: Sequence[str] = ...,
|
|
487
494
|
) -> DescribeAddonVersionsResponseTypeDef:
|
|
488
495
|
"""
|
|
489
496
|
Describes the versions for an add-on.
|
|
@@ -530,6 +537,14 @@ class EKSClient(BaseClient):
|
|
|
530
537
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_identity_provider_config)
|
|
531
538
|
"""
|
|
532
539
|
|
|
540
|
+
def describe_insight(self, *, clusterName: str, id: str) -> DescribeInsightResponseTypeDef:
|
|
541
|
+
"""
|
|
542
|
+
Returns details about an insight that you specify using its ID.
|
|
543
|
+
|
|
544
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Client.describe_insight)
|
|
545
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_insight)
|
|
546
|
+
"""
|
|
547
|
+
|
|
533
548
|
def describe_nodegroup(
|
|
534
549
|
self, *, clusterName: str, nodegroupName: str
|
|
535
550
|
) -> DescribeNodegroupResponseTypeDef:
|
|
@@ -575,7 +590,7 @@ class EKSClient(BaseClient):
|
|
|
575
590
|
*,
|
|
576
591
|
clusterName: str,
|
|
577
592
|
identityProviderConfig: IdentityProviderConfigTypeDef,
|
|
578
|
-
clientRequestToken: str =
|
|
593
|
+
clientRequestToken: str = ...,
|
|
579
594
|
) -> DisassociateIdentityProviderConfigResponseTypeDef:
|
|
580
595
|
"""
|
|
581
596
|
Disassociates an identity provider configuration from a cluster.
|
|
@@ -604,7 +619,7 @@ class EKSClient(BaseClient):
|
|
|
604
619
|
clusterName: str,
|
|
605
620
|
associatedPolicyArn: str = ...,
|
|
606
621
|
maxResults: int = ...,
|
|
607
|
-
nextToken: str =
|
|
622
|
+
nextToken: str = ...,
|
|
608
623
|
) -> ListAccessEntriesResponseTypeDef:
|
|
609
624
|
"""
|
|
610
625
|
Lists the access entries for your cluster.
|
|
@@ -660,7 +675,7 @@ class EKSClient(BaseClient):
|
|
|
660
675
|
*,
|
|
661
676
|
maxResults: int = ...,
|
|
662
677
|
nextToken: str = ...,
|
|
663
|
-
includeStatus: Sequence[EksAnywhereSubscriptionStatusType] =
|
|
678
|
+
includeStatus: Sequence[EksAnywhereSubscriptionStatusType] = ...,
|
|
664
679
|
) -> ListEksAnywhereSubscriptionsResponseTypeDef:
|
|
665
680
|
"""
|
|
666
681
|
Displays the full description of the subscription.
|
|
@@ -691,6 +706,21 @@ class EKSClient(BaseClient):
|
|
|
691
706
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#list_identity_provider_configs)
|
|
692
707
|
"""
|
|
693
708
|
|
|
709
|
+
def list_insights(
|
|
710
|
+
self,
|
|
711
|
+
*,
|
|
712
|
+
clusterName: str,
|
|
713
|
+
filter: InsightsFilterTypeDef = ...,
|
|
714
|
+
maxResults: int = ...,
|
|
715
|
+
nextToken: str = ...,
|
|
716
|
+
) -> ListInsightsResponseTypeDef:
|
|
717
|
+
"""
|
|
718
|
+
Returns a list of all insights checked for against the specified cluster.
|
|
719
|
+
|
|
720
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Client.list_insights)
|
|
721
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#list_insights)
|
|
722
|
+
"""
|
|
723
|
+
|
|
694
724
|
def list_nodegroups(
|
|
695
725
|
self, *, clusterName: str, maxResults: int = ..., nextToken: str = ...
|
|
696
726
|
) -> ListNodegroupsResponseTypeDef:
|
|
@@ -710,7 +740,7 @@ class EKSClient(BaseClient):
|
|
|
710
740
|
namespace: str = ...,
|
|
711
741
|
serviceAccount: str = ...,
|
|
712
742
|
maxResults: int = ...,
|
|
713
|
-
nextToken: str =
|
|
743
|
+
nextToken: str = ...,
|
|
714
744
|
) -> ListPodIdentityAssociationsResponseTypeDef:
|
|
715
745
|
"""
|
|
716
746
|
List the EKS Pod Identity associations in a cluster.
|
|
@@ -734,7 +764,7 @@ class EKSClient(BaseClient):
|
|
|
734
764
|
nodegroupName: str = ...,
|
|
735
765
|
addonName: str = ...,
|
|
736
766
|
nextToken: str = ...,
|
|
737
|
-
maxResults: int =
|
|
767
|
+
maxResults: int = ...,
|
|
738
768
|
) -> ListUpdatesResponseTypeDef:
|
|
739
769
|
"""
|
|
740
770
|
Lists the updates associated with an Amazon EKS resource in your Amazon Web
|
|
@@ -751,7 +781,7 @@ class EKSClient(BaseClient):
|
|
|
751
781
|
name: str,
|
|
752
782
|
connectorConfig: ConnectorConfigRequestTypeDef,
|
|
753
783
|
clientRequestToken: str = ...,
|
|
754
|
-
tags: Mapping[str, str] =
|
|
784
|
+
tags: Mapping[str, str] = ...,
|
|
755
785
|
) -> RegisterClusterResponseTypeDef:
|
|
756
786
|
"""
|
|
757
787
|
Connects a Kubernetes cluster to the Amazon EKS control plane.
|
|
@@ -784,7 +814,7 @@ class EKSClient(BaseClient):
|
|
|
784
814
|
principalArn: str,
|
|
785
815
|
kubernetesGroups: Sequence[str] = ...,
|
|
786
816
|
clientRequestToken: str = ...,
|
|
787
|
-
username: str =
|
|
817
|
+
username: str = ...,
|
|
788
818
|
) -> UpdateAccessEntryResponseTypeDef:
|
|
789
819
|
"""
|
|
790
820
|
Updates an access entry.
|
|
@@ -802,7 +832,7 @@ class EKSClient(BaseClient):
|
|
|
802
832
|
serviceAccountRoleArn: str = ...,
|
|
803
833
|
resolveConflicts: ResolveConflictsType = ...,
|
|
804
834
|
clientRequestToken: str = ...,
|
|
805
|
-
configurationValues: str =
|
|
835
|
+
configurationValues: str = ...,
|
|
806
836
|
) -> UpdateAddonResponseTypeDef:
|
|
807
837
|
"""
|
|
808
838
|
Updates an Amazon EKS add-on.
|
|
@@ -818,7 +848,7 @@ class EKSClient(BaseClient):
|
|
|
818
848
|
resourcesVpcConfig: VpcConfigRequestTypeDef = ...,
|
|
819
849
|
logging: LoggingTypeDef = ...,
|
|
820
850
|
clientRequestToken: str = ...,
|
|
821
|
-
accessConfig: UpdateAccessConfigRequestTypeDef =
|
|
851
|
+
accessConfig: UpdateAccessConfigRequestTypeDef = ...,
|
|
822
852
|
) -> UpdateClusterConfigResponseTypeDef:
|
|
823
853
|
"""
|
|
824
854
|
Updates an Amazon EKS cluster configuration.
|
|
@@ -856,7 +886,7 @@ class EKSClient(BaseClient):
|
|
|
856
886
|
taints: UpdateTaintsPayloadTypeDef = ...,
|
|
857
887
|
scalingConfig: NodegroupScalingConfigTypeDef = ...,
|
|
858
888
|
updateConfig: NodegroupUpdateConfigTypeDef = ...,
|
|
859
|
-
clientRequestToken: str =
|
|
889
|
+
clientRequestToken: str = ...,
|
|
860
890
|
) -> UpdateNodegroupConfigResponseTypeDef:
|
|
861
891
|
"""
|
|
862
892
|
Updates an Amazon EKS managed node group configuration.
|
|
@@ -874,7 +904,7 @@ class EKSClient(BaseClient):
|
|
|
874
904
|
releaseVersion: str = ...,
|
|
875
905
|
launchTemplate: LaunchTemplateSpecificationTypeDef = ...,
|
|
876
906
|
force: bool = ...,
|
|
877
|
-
clientRequestToken: str =
|
|
907
|
+
clientRequestToken: str = ...,
|
|
878
908
|
) -> UpdateNodegroupVersionResponseTypeDef:
|
|
879
909
|
"""
|
|
880
910
|
Updates the Kubernetes version or AMI version of an Amazon EKS managed node
|
|
@@ -890,7 +920,7 @@ class EKSClient(BaseClient):
|
|
|
890
920
|
clusterName: str,
|
|
891
921
|
associationId: str,
|
|
892
922
|
roleArn: str = ...,
|
|
893
|
-
clientRequestToken: str =
|
|
923
|
+
clientRequestToken: str = ...,
|
|
894
924
|
) -> UpdatePodIdentityAssociationResponseTypeDef:
|
|
895
925
|
"""
|
|
896
926
|
Updates a EKS Pod Identity association.
|
|
@@ -976,6 +1006,13 @@ class EKSClient(BaseClient):
|
|
|
976
1006
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
977
1007
|
"""
|
|
978
1008
|
|
|
1009
|
+
@overload
|
|
1010
|
+
def get_paginator(self, operation_name: Literal["list_insights"]) -> ListInsightsPaginator:
|
|
1011
|
+
"""
|
|
1012
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS.Client.get_paginator)
|
|
1013
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#get_paginator)
|
|
1014
|
+
"""
|
|
1015
|
+
|
|
979
1016
|
@overload
|
|
980
1017
|
def get_paginator(self, operation_name: Literal["list_nodegroups"]) -> ListNodegroupsPaginator:
|
|
981
1018
|
"""
|