mypy-boto3-eks 1.35.86__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 +8 -2
- mypy_boto3_eks/__init__.pyi +8 -2
- mypy_boto3_eks/__main__.py +5 -5
- mypy_boto3_eks/client.py +163 -135
- mypy_boto3_eks/client.pyi +163 -135
- mypy_boto3_eks/literals.py +22 -6
- mypy_boto3_eks/literals.pyi +22 -6
- mypy_boto3_eks/paginator.py +28 -2
- mypy_boto3_eks/paginator.pyi +25 -2
- mypy_boto3_eks/type_defs.py +374 -272
- mypy_boto3_eks/type_defs.pyi +358 -267
- mypy_boto3_eks/version.py +2 -2
- mypy_boto3_eks/waiter.py +10 -6
- mypy_boto3_eks/waiter.pyi +10 -6
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.38.0.dist-info}/METADATA +30 -10
- mypy_boto3_eks-1.38.0.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.38.0.dist-info}/WHEEL +1 -1
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.38.0.dist-info/licenses}/LICENSE +1 -1
- mypy_boto3_eks-1.35.86.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.38.0.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for eks service type definitions.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/type_defs/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -10,15 +12,13 @@ Usage::
|
|
|
10
12
|
|
|
11
13
|
data: AccessConfigResponseTypeDef = ...
|
|
12
14
|
```
|
|
13
|
-
|
|
14
|
-
Copyright 2024 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
from __future__ import annotations
|
|
18
18
|
|
|
19
19
|
import sys
|
|
20
20
|
from datetime import datetime
|
|
21
|
-
from typing import
|
|
21
|
+
from typing import Union
|
|
22
22
|
|
|
23
23
|
from .literals import (
|
|
24
24
|
AccessScopeTypeType,
|
|
@@ -29,6 +29,7 @@ from .literals import (
|
|
|
29
29
|
CapacityTypesType,
|
|
30
30
|
ClusterIssueCodeType,
|
|
31
31
|
ClusterStatusType,
|
|
32
|
+
ClusterVersionStatusType,
|
|
32
33
|
ConfigStatusType,
|
|
33
34
|
ConnectorConfigProviderType,
|
|
34
35
|
EksAnywhereSubscriptionStatusType,
|
|
@@ -40,14 +41,22 @@ from .literals import (
|
|
|
40
41
|
LogTypeType,
|
|
41
42
|
NodegroupIssueCodeType,
|
|
42
43
|
NodegroupStatusType,
|
|
44
|
+
NodegroupUpdateStrategiesType,
|
|
43
45
|
ResolveConflictsType,
|
|
44
46
|
SupportTypeType,
|
|
45
47
|
TaintEffectType,
|
|
46
48
|
UpdateParamTypeType,
|
|
47
49
|
UpdateStatusType,
|
|
48
50
|
UpdateTypeType,
|
|
51
|
+
VersionStatusType,
|
|
49
52
|
)
|
|
50
53
|
|
|
54
|
+
if sys.version_info >= (3, 9):
|
|
55
|
+
from builtins import dict as Dict
|
|
56
|
+
from builtins import list as List
|
|
57
|
+
from collections.abc import Mapping, Sequence
|
|
58
|
+
else:
|
|
59
|
+
from typing import Dict, List, Mapping, Sequence
|
|
51
60
|
if sys.version_info >= (3, 12):
|
|
52
61
|
from typing import Literal, NotRequired, TypedDict
|
|
53
62
|
else:
|
|
@@ -60,6 +69,7 @@ __all__ = (
|
|
|
60
69
|
"AccessPolicyTypeDef",
|
|
61
70
|
"AccessScopeOutputTypeDef",
|
|
62
71
|
"AccessScopeTypeDef",
|
|
72
|
+
"AccessScopeUnionTypeDef",
|
|
63
73
|
"AddonCompatibilityDetailTypeDef",
|
|
64
74
|
"AddonHealthTypeDef",
|
|
65
75
|
"AddonInfoTypeDef",
|
|
@@ -68,11 +78,11 @@ __all__ = (
|
|
|
68
78
|
"AddonPodIdentityConfigurationTypeDef",
|
|
69
79
|
"AddonTypeDef",
|
|
70
80
|
"AddonVersionInfoTypeDef",
|
|
71
|
-
"
|
|
81
|
+
"AssociateAccessPolicyRequestTypeDef",
|
|
72
82
|
"AssociateAccessPolicyResponseTypeDef",
|
|
73
|
-
"
|
|
83
|
+
"AssociateEncryptionConfigRequestTypeDef",
|
|
74
84
|
"AssociateEncryptionConfigResponseTypeDef",
|
|
75
|
-
"
|
|
85
|
+
"AssociateIdentityProviderConfigRequestTypeDef",
|
|
76
86
|
"AssociateIdentityProviderConfigResponseTypeDef",
|
|
77
87
|
"AssociatedAccessPolicyTypeDef",
|
|
78
88
|
"AutoScalingGroupTypeDef",
|
|
@@ -82,6 +92,7 @@ __all__ = (
|
|
|
82
92
|
"ClusterHealthTypeDef",
|
|
83
93
|
"ClusterIssueTypeDef",
|
|
84
94
|
"ClusterTypeDef",
|
|
95
|
+
"ClusterVersionInformationTypeDef",
|
|
85
96
|
"CompatibilityTypeDef",
|
|
86
97
|
"ComputeConfigRequestTypeDef",
|
|
87
98
|
"ComputeConfigResponseTypeDef",
|
|
@@ -90,67 +101,74 @@ __all__ = (
|
|
|
90
101
|
"ControlPlanePlacementRequestTypeDef",
|
|
91
102
|
"ControlPlanePlacementResponseTypeDef",
|
|
92
103
|
"CreateAccessConfigRequestTypeDef",
|
|
93
|
-
"
|
|
104
|
+
"CreateAccessEntryRequestTypeDef",
|
|
94
105
|
"CreateAccessEntryResponseTypeDef",
|
|
95
|
-
"
|
|
106
|
+
"CreateAddonRequestTypeDef",
|
|
96
107
|
"CreateAddonResponseTypeDef",
|
|
97
|
-
"
|
|
108
|
+
"CreateClusterRequestTypeDef",
|
|
98
109
|
"CreateClusterResponseTypeDef",
|
|
99
|
-
"
|
|
110
|
+
"CreateEksAnywhereSubscriptionRequestTypeDef",
|
|
100
111
|
"CreateEksAnywhereSubscriptionResponseTypeDef",
|
|
101
|
-
"
|
|
112
|
+
"CreateFargateProfileRequestTypeDef",
|
|
102
113
|
"CreateFargateProfileResponseTypeDef",
|
|
103
|
-
"
|
|
114
|
+
"CreateNodegroupRequestTypeDef",
|
|
104
115
|
"CreateNodegroupResponseTypeDef",
|
|
105
|
-
"
|
|
116
|
+
"CreatePodIdentityAssociationRequestTypeDef",
|
|
106
117
|
"CreatePodIdentityAssociationResponseTypeDef",
|
|
107
|
-
"
|
|
108
|
-
"
|
|
118
|
+
"DeleteAccessEntryRequestTypeDef",
|
|
119
|
+
"DeleteAddonRequestTypeDef",
|
|
109
120
|
"DeleteAddonResponseTypeDef",
|
|
110
|
-
"
|
|
121
|
+
"DeleteClusterRequestTypeDef",
|
|
111
122
|
"DeleteClusterResponseTypeDef",
|
|
112
|
-
"
|
|
123
|
+
"DeleteEksAnywhereSubscriptionRequestTypeDef",
|
|
113
124
|
"DeleteEksAnywhereSubscriptionResponseTypeDef",
|
|
114
|
-
"
|
|
125
|
+
"DeleteFargateProfileRequestTypeDef",
|
|
115
126
|
"DeleteFargateProfileResponseTypeDef",
|
|
116
|
-
"
|
|
127
|
+
"DeleteNodegroupRequestTypeDef",
|
|
117
128
|
"DeleteNodegroupResponseTypeDef",
|
|
118
|
-
"
|
|
129
|
+
"DeletePodIdentityAssociationRequestTypeDef",
|
|
119
130
|
"DeletePodIdentityAssociationResponseTypeDef",
|
|
120
131
|
"DeprecationDetailTypeDef",
|
|
121
|
-
"
|
|
132
|
+
"DeregisterClusterRequestTypeDef",
|
|
122
133
|
"DeregisterClusterResponseTypeDef",
|
|
123
|
-
"
|
|
134
|
+
"DescribeAccessEntryRequestTypeDef",
|
|
124
135
|
"DescribeAccessEntryResponseTypeDef",
|
|
125
|
-
"
|
|
136
|
+
"DescribeAddonConfigurationRequestTypeDef",
|
|
126
137
|
"DescribeAddonConfigurationResponseTypeDef",
|
|
127
|
-
"
|
|
138
|
+
"DescribeAddonRequestTypeDef",
|
|
139
|
+
"DescribeAddonRequestWaitExtraTypeDef",
|
|
128
140
|
"DescribeAddonRequestWaitTypeDef",
|
|
129
141
|
"DescribeAddonResponseTypeDef",
|
|
130
142
|
"DescribeAddonVersionsRequestPaginateTypeDef",
|
|
131
|
-
"
|
|
143
|
+
"DescribeAddonVersionsRequestTypeDef",
|
|
132
144
|
"DescribeAddonVersionsResponseTypeDef",
|
|
133
|
-
"
|
|
145
|
+
"DescribeClusterRequestTypeDef",
|
|
146
|
+
"DescribeClusterRequestWaitExtraTypeDef",
|
|
134
147
|
"DescribeClusterRequestWaitTypeDef",
|
|
135
148
|
"DescribeClusterResponseTypeDef",
|
|
136
|
-
"
|
|
149
|
+
"DescribeClusterVersionsRequestPaginateTypeDef",
|
|
150
|
+
"DescribeClusterVersionsRequestTypeDef",
|
|
151
|
+
"DescribeClusterVersionsResponseTypeDef",
|
|
152
|
+
"DescribeEksAnywhereSubscriptionRequestTypeDef",
|
|
137
153
|
"DescribeEksAnywhereSubscriptionResponseTypeDef",
|
|
138
|
-
"
|
|
154
|
+
"DescribeFargateProfileRequestTypeDef",
|
|
155
|
+
"DescribeFargateProfileRequestWaitExtraTypeDef",
|
|
139
156
|
"DescribeFargateProfileRequestWaitTypeDef",
|
|
140
157
|
"DescribeFargateProfileResponseTypeDef",
|
|
141
|
-
"
|
|
158
|
+
"DescribeIdentityProviderConfigRequestTypeDef",
|
|
142
159
|
"DescribeIdentityProviderConfigResponseTypeDef",
|
|
143
|
-
"
|
|
160
|
+
"DescribeInsightRequestTypeDef",
|
|
144
161
|
"DescribeInsightResponseTypeDef",
|
|
145
|
-
"
|
|
162
|
+
"DescribeNodegroupRequestTypeDef",
|
|
163
|
+
"DescribeNodegroupRequestWaitExtraTypeDef",
|
|
146
164
|
"DescribeNodegroupRequestWaitTypeDef",
|
|
147
165
|
"DescribeNodegroupResponseTypeDef",
|
|
148
|
-
"
|
|
166
|
+
"DescribePodIdentityAssociationRequestTypeDef",
|
|
149
167
|
"DescribePodIdentityAssociationResponseTypeDef",
|
|
150
|
-
"
|
|
168
|
+
"DescribeUpdateRequestTypeDef",
|
|
151
169
|
"DescribeUpdateResponseTypeDef",
|
|
152
|
-
"
|
|
153
|
-
"
|
|
170
|
+
"DisassociateAccessPolicyRequestTypeDef",
|
|
171
|
+
"DisassociateIdentityProviderConfigRequestTypeDef",
|
|
154
172
|
"DisassociateIdentityProviderConfigResponseTypeDef",
|
|
155
173
|
"EksAnywhereSubscriptionTermTypeDef",
|
|
156
174
|
"EksAnywhereSubscriptionTypeDef",
|
|
@@ -178,49 +196,50 @@ __all__ = (
|
|
|
178
196
|
"KubernetesNetworkConfigRequestTypeDef",
|
|
179
197
|
"KubernetesNetworkConfigResponseTypeDef",
|
|
180
198
|
"LaunchTemplateSpecificationTypeDef",
|
|
199
|
+
"LicenseTypeDef",
|
|
181
200
|
"ListAccessEntriesRequestPaginateTypeDef",
|
|
182
|
-
"
|
|
201
|
+
"ListAccessEntriesRequestTypeDef",
|
|
183
202
|
"ListAccessEntriesResponseTypeDef",
|
|
184
203
|
"ListAccessPoliciesRequestPaginateTypeDef",
|
|
185
|
-
"
|
|
204
|
+
"ListAccessPoliciesRequestTypeDef",
|
|
186
205
|
"ListAccessPoliciesResponseTypeDef",
|
|
187
206
|
"ListAddonsRequestPaginateTypeDef",
|
|
188
|
-
"
|
|
207
|
+
"ListAddonsRequestTypeDef",
|
|
189
208
|
"ListAddonsResponseTypeDef",
|
|
190
209
|
"ListAssociatedAccessPoliciesRequestPaginateTypeDef",
|
|
191
|
-
"
|
|
210
|
+
"ListAssociatedAccessPoliciesRequestTypeDef",
|
|
192
211
|
"ListAssociatedAccessPoliciesResponseTypeDef",
|
|
193
212
|
"ListClustersRequestPaginateTypeDef",
|
|
194
|
-
"
|
|
213
|
+
"ListClustersRequestTypeDef",
|
|
195
214
|
"ListClustersResponseTypeDef",
|
|
196
215
|
"ListEksAnywhereSubscriptionsRequestPaginateTypeDef",
|
|
197
|
-
"
|
|
216
|
+
"ListEksAnywhereSubscriptionsRequestTypeDef",
|
|
198
217
|
"ListEksAnywhereSubscriptionsResponseTypeDef",
|
|
199
218
|
"ListFargateProfilesRequestPaginateTypeDef",
|
|
200
|
-
"
|
|
219
|
+
"ListFargateProfilesRequestTypeDef",
|
|
201
220
|
"ListFargateProfilesResponseTypeDef",
|
|
202
221
|
"ListIdentityProviderConfigsRequestPaginateTypeDef",
|
|
203
|
-
"
|
|
222
|
+
"ListIdentityProviderConfigsRequestTypeDef",
|
|
204
223
|
"ListIdentityProviderConfigsResponseTypeDef",
|
|
205
224
|
"ListInsightsRequestPaginateTypeDef",
|
|
206
|
-
"
|
|
225
|
+
"ListInsightsRequestTypeDef",
|
|
207
226
|
"ListInsightsResponseTypeDef",
|
|
208
227
|
"ListNodegroupsRequestPaginateTypeDef",
|
|
209
|
-
"
|
|
228
|
+
"ListNodegroupsRequestTypeDef",
|
|
210
229
|
"ListNodegroupsResponseTypeDef",
|
|
211
230
|
"ListPodIdentityAssociationsRequestPaginateTypeDef",
|
|
212
|
-
"
|
|
231
|
+
"ListPodIdentityAssociationsRequestTypeDef",
|
|
213
232
|
"ListPodIdentityAssociationsResponseTypeDef",
|
|
214
|
-
"
|
|
233
|
+
"ListTagsForResourceRequestTypeDef",
|
|
215
234
|
"ListTagsForResourceResponseTypeDef",
|
|
216
235
|
"ListUpdatesRequestPaginateTypeDef",
|
|
217
|
-
"
|
|
236
|
+
"ListUpdatesRequestTypeDef",
|
|
218
237
|
"ListUpdatesResponseTypeDef",
|
|
219
238
|
"LogSetupOutputTypeDef",
|
|
220
239
|
"LogSetupTypeDef",
|
|
221
|
-
"LogSetupUnionTypeDef",
|
|
222
240
|
"LoggingOutputTypeDef",
|
|
223
241
|
"LoggingTypeDef",
|
|
242
|
+
"LoggingUnionTypeDef",
|
|
224
243
|
"MarketplaceInformationTypeDef",
|
|
225
244
|
"NodeRepairConfigTypeDef",
|
|
226
245
|
"NodegroupHealthTypeDef",
|
|
@@ -237,10 +256,11 @@ __all__ = (
|
|
|
237
256
|
"PodIdentityAssociationSummaryTypeDef",
|
|
238
257
|
"PodIdentityAssociationTypeDef",
|
|
239
258
|
"ProviderTypeDef",
|
|
240
|
-
"
|
|
259
|
+
"RegisterClusterRequestTypeDef",
|
|
241
260
|
"RegisterClusterResponseTypeDef",
|
|
242
261
|
"RemoteAccessConfigOutputTypeDef",
|
|
243
262
|
"RemoteAccessConfigTypeDef",
|
|
263
|
+
"RemoteAccessConfigUnionTypeDef",
|
|
244
264
|
"RemoteNetworkConfigRequestTypeDef",
|
|
245
265
|
"RemoteNetworkConfigResponseTypeDef",
|
|
246
266
|
"RemoteNodeNetworkOutputTypeDef",
|
|
@@ -252,27 +272,27 @@ __all__ = (
|
|
|
252
272
|
"ResponseMetadataTypeDef",
|
|
253
273
|
"StorageConfigRequestTypeDef",
|
|
254
274
|
"StorageConfigResponseTypeDef",
|
|
255
|
-
"
|
|
275
|
+
"TagResourceRequestTypeDef",
|
|
256
276
|
"TaintTypeDef",
|
|
257
|
-
"
|
|
277
|
+
"UntagResourceRequestTypeDef",
|
|
258
278
|
"UpdateAccessConfigRequestTypeDef",
|
|
259
|
-
"
|
|
279
|
+
"UpdateAccessEntryRequestTypeDef",
|
|
260
280
|
"UpdateAccessEntryResponseTypeDef",
|
|
261
|
-
"
|
|
281
|
+
"UpdateAddonRequestTypeDef",
|
|
262
282
|
"UpdateAddonResponseTypeDef",
|
|
263
|
-
"
|
|
283
|
+
"UpdateClusterConfigRequestTypeDef",
|
|
264
284
|
"UpdateClusterConfigResponseTypeDef",
|
|
265
|
-
"
|
|
285
|
+
"UpdateClusterVersionRequestTypeDef",
|
|
266
286
|
"UpdateClusterVersionResponseTypeDef",
|
|
267
|
-
"
|
|
287
|
+
"UpdateEksAnywhereSubscriptionRequestTypeDef",
|
|
268
288
|
"UpdateEksAnywhereSubscriptionResponseTypeDef",
|
|
269
289
|
"UpdateLabelsPayloadTypeDef",
|
|
270
|
-
"
|
|
290
|
+
"UpdateNodegroupConfigRequestTypeDef",
|
|
271
291
|
"UpdateNodegroupConfigResponseTypeDef",
|
|
272
|
-
"
|
|
292
|
+
"UpdateNodegroupVersionRequestTypeDef",
|
|
273
293
|
"UpdateNodegroupVersionResponseTypeDef",
|
|
274
294
|
"UpdateParamTypeDef",
|
|
275
|
-
"
|
|
295
|
+
"UpdatePodIdentityAssociationRequestTypeDef",
|
|
276
296
|
"UpdatePodIdentityAssociationResponseTypeDef",
|
|
277
297
|
"UpdateTaintsPayloadTypeDef",
|
|
278
298
|
"UpdateTypeDef",
|
|
@@ -296,11 +316,11 @@ AccessEntryTypeDef = TypedDict(
|
|
|
296
316
|
{
|
|
297
317
|
"clusterName": NotRequired[str],
|
|
298
318
|
"principalArn": NotRequired[str],
|
|
299
|
-
"kubernetesGroups": NotRequired[
|
|
319
|
+
"kubernetesGroups": NotRequired[List[str]],
|
|
300
320
|
"accessEntryArn": NotRequired[str],
|
|
301
321
|
"createdAt": NotRequired[datetime],
|
|
302
322
|
"modifiedAt": NotRequired[datetime],
|
|
303
|
-
"tags": NotRequired[
|
|
323
|
+
"tags": NotRequired[Dict[str, str]],
|
|
304
324
|
"username": NotRequired[str],
|
|
305
325
|
"type": NotRequired[str],
|
|
306
326
|
},
|
|
@@ -316,7 +336,7 @@ AccessScopeOutputTypeDef = TypedDict(
|
|
|
316
336
|
"AccessScopeOutputTypeDef",
|
|
317
337
|
{
|
|
318
338
|
"type": NotRequired[AccessScopeTypeType],
|
|
319
|
-
"namespaces": NotRequired[
|
|
339
|
+
"namespaces": NotRequired[List[str]],
|
|
320
340
|
},
|
|
321
341
|
)
|
|
322
342
|
AccessScopeTypeDef = TypedDict(
|
|
@@ -330,13 +350,13 @@ AccessScopeTypeDef = TypedDict(
|
|
|
330
350
|
|
|
331
351
|
class AddonCompatibilityDetailTypeDef(TypedDict):
|
|
332
352
|
name: NotRequired[str]
|
|
333
|
-
compatibleVersions: NotRequired[
|
|
353
|
+
compatibleVersions: NotRequired[List[str]]
|
|
334
354
|
|
|
335
355
|
|
|
336
356
|
class AddonIssueTypeDef(TypedDict):
|
|
337
357
|
code: NotRequired[AddonIssueCodeType]
|
|
338
358
|
message: NotRequired[str]
|
|
339
|
-
resourceIds: NotRequired[
|
|
359
|
+
resourceIds: NotRequired[List[str]]
|
|
340
360
|
|
|
341
361
|
|
|
342
362
|
class MarketplaceInformationTypeDef(TypedDict):
|
|
@@ -351,19 +371,19 @@ class AddonPodIdentityAssociationsTypeDef(TypedDict):
|
|
|
351
371
|
|
|
352
372
|
class AddonPodIdentityConfigurationTypeDef(TypedDict):
|
|
353
373
|
serviceAccount: NotRequired[str]
|
|
354
|
-
recommendedManagedPolicies: NotRequired[
|
|
374
|
+
recommendedManagedPolicies: NotRequired[List[str]]
|
|
355
375
|
|
|
356
376
|
|
|
357
377
|
class CompatibilityTypeDef(TypedDict):
|
|
358
378
|
clusterVersion: NotRequired[str]
|
|
359
|
-
platformVersions: NotRequired[
|
|
379
|
+
platformVersions: NotRequired[List[str]]
|
|
360
380
|
defaultVersion: NotRequired[bool]
|
|
361
381
|
|
|
362
382
|
|
|
363
383
|
class ResponseMetadataTypeDef(TypedDict):
|
|
364
384
|
RequestId: str
|
|
365
385
|
HTTPStatusCode: int
|
|
366
|
-
HTTPHeaders:
|
|
386
|
+
HTTPHeaders: Dict[str, str]
|
|
367
387
|
RetryAttempts: int
|
|
368
388
|
HostId: NotRequired[str]
|
|
369
389
|
|
|
@@ -400,12 +420,12 @@ class ClientStatTypeDef(TypedDict):
|
|
|
400
420
|
class ClusterIssueTypeDef(TypedDict):
|
|
401
421
|
code: NotRequired[ClusterIssueCodeType]
|
|
402
422
|
message: NotRequired[str]
|
|
403
|
-
resourceIds: NotRequired[
|
|
423
|
+
resourceIds: NotRequired[List[str]]
|
|
404
424
|
|
|
405
425
|
|
|
406
426
|
class ComputeConfigResponseTypeDef(TypedDict):
|
|
407
427
|
enabled: NotRequired[bool]
|
|
408
|
-
nodePools: NotRequired[
|
|
428
|
+
nodePools: NotRequired[List[str]]
|
|
409
429
|
nodeRoleArn: NotRequired[str]
|
|
410
430
|
|
|
411
431
|
|
|
@@ -422,19 +442,32 @@ class UpgradePolicyResponseTypeDef(TypedDict):
|
|
|
422
442
|
|
|
423
443
|
|
|
424
444
|
class VpcConfigResponseTypeDef(TypedDict):
|
|
425
|
-
subnetIds: NotRequired[
|
|
426
|
-
securityGroupIds: NotRequired[
|
|
445
|
+
subnetIds: NotRequired[List[str]]
|
|
446
|
+
securityGroupIds: NotRequired[List[str]]
|
|
427
447
|
clusterSecurityGroupId: NotRequired[str]
|
|
428
448
|
vpcId: NotRequired[str]
|
|
429
449
|
endpointPublicAccess: NotRequired[bool]
|
|
430
450
|
endpointPrivateAccess: NotRequired[bool]
|
|
431
|
-
publicAccessCidrs: NotRequired[
|
|
451
|
+
publicAccessCidrs: NotRequired[List[str]]
|
|
432
452
|
|
|
433
453
|
|
|
434
454
|
class ZonalShiftConfigResponseTypeDef(TypedDict):
|
|
435
455
|
enabled: NotRequired[bool]
|
|
436
456
|
|
|
437
457
|
|
|
458
|
+
class ClusterVersionInformationTypeDef(TypedDict):
|
|
459
|
+
clusterVersion: NotRequired[str]
|
|
460
|
+
clusterType: NotRequired[str]
|
|
461
|
+
defaultPlatformVersion: NotRequired[str]
|
|
462
|
+
defaultVersion: NotRequired[bool]
|
|
463
|
+
releaseDate: NotRequired[datetime]
|
|
464
|
+
endOfStandardSupportDate: NotRequired[datetime]
|
|
465
|
+
endOfExtendedSupportDate: NotRequired[datetime]
|
|
466
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
467
|
+
versionStatus: NotRequired[VersionStatusType]
|
|
468
|
+
kubernetesPatchVersion: NotRequired[str]
|
|
469
|
+
|
|
470
|
+
|
|
438
471
|
class ComputeConfigRequestTypeDef(TypedDict):
|
|
439
472
|
enabled: NotRequired[bool]
|
|
440
473
|
nodePools: NotRequired[Sequence[str]]
|
|
@@ -459,8 +492,8 @@ class CreateAccessConfigRequestTypeDef(TypedDict):
|
|
|
459
492
|
authenticationMode: NotRequired[AuthenticationModeType]
|
|
460
493
|
|
|
461
494
|
|
|
462
|
-
|
|
463
|
-
"
|
|
495
|
+
CreateAccessEntryRequestTypeDef = TypedDict(
|
|
496
|
+
"CreateAccessEntryRequestTypeDef",
|
|
464
497
|
{
|
|
465
498
|
"clusterName": str,
|
|
466
499
|
"principalArn": str,
|
|
@@ -517,11 +550,7 @@ class NodegroupScalingConfigTypeDef(TypedDict):
|
|
|
517
550
|
class NodegroupUpdateConfigTypeDef(TypedDict):
|
|
518
551
|
maxUnavailable: NotRequired[int]
|
|
519
552
|
maxUnavailablePercentage: NotRequired[int]
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
class RemoteAccessConfigTypeDef(TypedDict):
|
|
523
|
-
ec2SshKey: NotRequired[str]
|
|
524
|
-
sourceSecurityGroups: NotRequired[Sequence[str]]
|
|
553
|
+
updateStrategy: NotRequired[NodegroupUpdateStrategiesType]
|
|
525
554
|
|
|
526
555
|
|
|
527
556
|
class TaintTypeDef(TypedDict):
|
|
@@ -530,7 +559,7 @@ class TaintTypeDef(TypedDict):
|
|
|
530
559
|
effect: NotRequired[TaintEffectType]
|
|
531
560
|
|
|
532
561
|
|
|
533
|
-
class
|
|
562
|
+
class CreatePodIdentityAssociationRequestTypeDef(TypedDict):
|
|
534
563
|
clusterName: str
|
|
535
564
|
namespace: str
|
|
536
565
|
serviceAccount: str
|
|
@@ -546,65 +575,65 @@ class PodIdentityAssociationTypeDef(TypedDict):
|
|
|
546
575
|
roleArn: NotRequired[str]
|
|
547
576
|
associationArn: NotRequired[str]
|
|
548
577
|
associationId: NotRequired[str]
|
|
549
|
-
tags: NotRequired[
|
|
578
|
+
tags: NotRequired[Dict[str, str]]
|
|
550
579
|
createdAt: NotRequired[datetime]
|
|
551
580
|
modifiedAt: NotRequired[datetime]
|
|
552
581
|
ownerArn: NotRequired[str]
|
|
553
582
|
|
|
554
583
|
|
|
555
|
-
class
|
|
584
|
+
class DeleteAccessEntryRequestTypeDef(TypedDict):
|
|
556
585
|
clusterName: str
|
|
557
586
|
principalArn: str
|
|
558
587
|
|
|
559
588
|
|
|
560
|
-
class
|
|
589
|
+
class DeleteAddonRequestTypeDef(TypedDict):
|
|
561
590
|
clusterName: str
|
|
562
591
|
addonName: str
|
|
563
592
|
preserve: NotRequired[bool]
|
|
564
593
|
|
|
565
594
|
|
|
566
|
-
class
|
|
595
|
+
class DeleteClusterRequestTypeDef(TypedDict):
|
|
567
596
|
name: str
|
|
568
597
|
|
|
569
598
|
|
|
570
|
-
|
|
571
|
-
"
|
|
599
|
+
DeleteEksAnywhereSubscriptionRequestTypeDef = TypedDict(
|
|
600
|
+
"DeleteEksAnywhereSubscriptionRequestTypeDef",
|
|
572
601
|
{
|
|
573
602
|
"id": str,
|
|
574
603
|
},
|
|
575
604
|
)
|
|
576
605
|
|
|
577
606
|
|
|
578
|
-
class
|
|
607
|
+
class DeleteFargateProfileRequestTypeDef(TypedDict):
|
|
579
608
|
clusterName: str
|
|
580
609
|
fargateProfileName: str
|
|
581
610
|
|
|
582
611
|
|
|
583
|
-
class
|
|
612
|
+
class DeleteNodegroupRequestTypeDef(TypedDict):
|
|
584
613
|
clusterName: str
|
|
585
614
|
nodegroupName: str
|
|
586
615
|
|
|
587
616
|
|
|
588
|
-
class
|
|
617
|
+
class DeletePodIdentityAssociationRequestTypeDef(TypedDict):
|
|
589
618
|
clusterName: str
|
|
590
619
|
associationId: str
|
|
591
620
|
|
|
592
621
|
|
|
593
|
-
class
|
|
622
|
+
class DeregisterClusterRequestTypeDef(TypedDict):
|
|
594
623
|
name: str
|
|
595
624
|
|
|
596
625
|
|
|
597
|
-
class
|
|
626
|
+
class DescribeAccessEntryRequestTypeDef(TypedDict):
|
|
598
627
|
clusterName: str
|
|
599
628
|
principalArn: str
|
|
600
629
|
|
|
601
630
|
|
|
602
|
-
class
|
|
631
|
+
class DescribeAddonConfigurationRequestTypeDef(TypedDict):
|
|
603
632
|
addonName: str
|
|
604
633
|
addonVersion: str
|
|
605
634
|
|
|
606
635
|
|
|
607
|
-
class
|
|
636
|
+
class DescribeAddonRequestTypeDef(TypedDict):
|
|
608
637
|
clusterName: str
|
|
609
638
|
addonName: str
|
|
610
639
|
|
|
@@ -620,8 +649,8 @@ class PaginatorConfigTypeDef(TypedDict):
|
|
|
620
649
|
StartingToken: NotRequired[str]
|
|
621
650
|
|
|
622
651
|
|
|
623
|
-
|
|
624
|
-
"
|
|
652
|
+
DescribeAddonVersionsRequestTypeDef = TypedDict(
|
|
653
|
+
"DescribeAddonVersionsRequestTypeDef",
|
|
625
654
|
{
|
|
626
655
|
"kubernetesVersion": NotRequired[str],
|
|
627
656
|
"maxResults": NotRequired[int],
|
|
@@ -634,19 +663,30 @@ DescribeAddonVersionsRequestRequestTypeDef = TypedDict(
|
|
|
634
663
|
)
|
|
635
664
|
|
|
636
665
|
|
|
637
|
-
class
|
|
666
|
+
class DescribeClusterRequestTypeDef(TypedDict):
|
|
638
667
|
name: str
|
|
639
668
|
|
|
640
669
|
|
|
641
|
-
|
|
642
|
-
|
|
670
|
+
class DescribeClusterVersionsRequestTypeDef(TypedDict):
|
|
671
|
+
clusterType: NotRequired[str]
|
|
672
|
+
maxResults: NotRequired[int]
|
|
673
|
+
nextToken: NotRequired[str]
|
|
674
|
+
defaultOnly: NotRequired[bool]
|
|
675
|
+
includeAll: NotRequired[bool]
|
|
676
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
677
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
678
|
+
versionStatus: NotRequired[VersionStatusType]
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
DescribeEksAnywhereSubscriptionRequestTypeDef = TypedDict(
|
|
682
|
+
"DescribeEksAnywhereSubscriptionRequestTypeDef",
|
|
643
683
|
{
|
|
644
684
|
"id": str,
|
|
645
685
|
},
|
|
646
686
|
)
|
|
647
687
|
|
|
648
688
|
|
|
649
|
-
class
|
|
689
|
+
class DescribeFargateProfileRequestTypeDef(TypedDict):
|
|
650
690
|
clusterName: str
|
|
651
691
|
fargateProfileName: str
|
|
652
692
|
|
|
@@ -658,8 +698,8 @@ IdentityProviderConfigTypeDef = TypedDict(
|
|
|
658
698
|
"name": str,
|
|
659
699
|
},
|
|
660
700
|
)
|
|
661
|
-
|
|
662
|
-
"
|
|
701
|
+
DescribeInsightRequestTypeDef = TypedDict(
|
|
702
|
+
"DescribeInsightRequestTypeDef",
|
|
663
703
|
{
|
|
664
704
|
"clusterName": str,
|
|
665
705
|
"id": str,
|
|
@@ -667,29 +707,38 @@ DescribeInsightRequestRequestTypeDef = TypedDict(
|
|
|
667
707
|
)
|
|
668
708
|
|
|
669
709
|
|
|
670
|
-
class
|
|
710
|
+
class DescribeNodegroupRequestTypeDef(TypedDict):
|
|
671
711
|
clusterName: str
|
|
672
712
|
nodegroupName: str
|
|
673
713
|
|
|
674
714
|
|
|
675
|
-
class
|
|
715
|
+
class DescribePodIdentityAssociationRequestTypeDef(TypedDict):
|
|
676
716
|
clusterName: str
|
|
677
717
|
associationId: str
|
|
678
718
|
|
|
679
719
|
|
|
680
|
-
class
|
|
720
|
+
class DescribeUpdateRequestTypeDef(TypedDict):
|
|
681
721
|
name: str
|
|
682
722
|
updateId: str
|
|
683
723
|
nodegroupName: NotRequired[str]
|
|
684
724
|
addonName: NotRequired[str]
|
|
685
725
|
|
|
686
726
|
|
|
687
|
-
class
|
|
727
|
+
class DisassociateAccessPolicyRequestTypeDef(TypedDict):
|
|
688
728
|
clusterName: str
|
|
689
729
|
principalArn: str
|
|
690
730
|
policyArn: str
|
|
691
731
|
|
|
692
732
|
|
|
733
|
+
LicenseTypeDef = TypedDict(
|
|
734
|
+
"LicenseTypeDef",
|
|
735
|
+
{
|
|
736
|
+
"id": NotRequired[str],
|
|
737
|
+
"token": NotRequired[str],
|
|
738
|
+
},
|
|
739
|
+
)
|
|
740
|
+
|
|
741
|
+
|
|
693
742
|
class ElasticLoadBalancingTypeDef(TypedDict):
|
|
694
743
|
enabled: NotRequired[bool]
|
|
695
744
|
|
|
@@ -701,18 +750,18 @@ class ProviderTypeDef(TypedDict):
|
|
|
701
750
|
class ErrorDetailTypeDef(TypedDict):
|
|
702
751
|
errorCode: NotRequired[ErrorCodeType]
|
|
703
752
|
errorMessage: NotRequired[str]
|
|
704
|
-
resourceIds: NotRequired[
|
|
753
|
+
resourceIds: NotRequired[List[str]]
|
|
705
754
|
|
|
706
755
|
|
|
707
756
|
class FargateProfileIssueTypeDef(TypedDict):
|
|
708
757
|
code: NotRequired[FargateProfileIssueCodeType]
|
|
709
758
|
message: NotRequired[str]
|
|
710
|
-
resourceIds: NotRequired[
|
|
759
|
+
resourceIds: NotRequired[List[str]]
|
|
711
760
|
|
|
712
761
|
|
|
713
762
|
class FargateProfileSelectorOutputTypeDef(TypedDict):
|
|
714
763
|
namespace: NotRequired[str]
|
|
715
|
-
labels: NotRequired[
|
|
764
|
+
labels: NotRequired[Dict[str, str]]
|
|
716
765
|
|
|
717
766
|
|
|
718
767
|
class FargateProfileSelectorTypeDef(TypedDict):
|
|
@@ -730,8 +779,8 @@ class OidcIdentityProviderConfigTypeDef(TypedDict):
|
|
|
730
779
|
usernamePrefix: NotRequired[str]
|
|
731
780
|
groupsClaim: NotRequired[str]
|
|
732
781
|
groupsPrefix: NotRequired[str]
|
|
733
|
-
requiredClaims: NotRequired[
|
|
734
|
-
tags: NotRequired[
|
|
782
|
+
requiredClaims: NotRequired[Dict[str, str]]
|
|
783
|
+
tags: NotRequired[Dict[str, str]]
|
|
735
784
|
status: NotRequired[ConfigStatusType]
|
|
736
785
|
|
|
737
786
|
|
|
@@ -753,65 +802,65 @@ class InsightsFilterTypeDef(TypedDict):
|
|
|
753
802
|
class IssueTypeDef(TypedDict):
|
|
754
803
|
code: NotRequired[NodegroupIssueCodeType]
|
|
755
804
|
message: NotRequired[str]
|
|
756
|
-
resourceIds: NotRequired[
|
|
805
|
+
resourceIds: NotRequired[List[str]]
|
|
757
806
|
|
|
758
807
|
|
|
759
|
-
class
|
|
808
|
+
class ListAccessEntriesRequestTypeDef(TypedDict):
|
|
760
809
|
clusterName: str
|
|
761
810
|
associatedPolicyArn: NotRequired[str]
|
|
762
811
|
maxResults: NotRequired[int]
|
|
763
812
|
nextToken: NotRequired[str]
|
|
764
813
|
|
|
765
814
|
|
|
766
|
-
class
|
|
815
|
+
class ListAccessPoliciesRequestTypeDef(TypedDict):
|
|
767
816
|
maxResults: NotRequired[int]
|
|
768
817
|
nextToken: NotRequired[str]
|
|
769
818
|
|
|
770
819
|
|
|
771
|
-
class
|
|
820
|
+
class ListAddonsRequestTypeDef(TypedDict):
|
|
772
821
|
clusterName: str
|
|
773
822
|
maxResults: NotRequired[int]
|
|
774
823
|
nextToken: NotRequired[str]
|
|
775
824
|
|
|
776
825
|
|
|
777
|
-
class
|
|
826
|
+
class ListAssociatedAccessPoliciesRequestTypeDef(TypedDict):
|
|
778
827
|
clusterName: str
|
|
779
828
|
principalArn: str
|
|
780
829
|
maxResults: NotRequired[int]
|
|
781
830
|
nextToken: NotRequired[str]
|
|
782
831
|
|
|
783
832
|
|
|
784
|
-
class
|
|
833
|
+
class ListClustersRequestTypeDef(TypedDict):
|
|
785
834
|
maxResults: NotRequired[int]
|
|
786
835
|
nextToken: NotRequired[str]
|
|
787
836
|
include: NotRequired[Sequence[str]]
|
|
788
837
|
|
|
789
838
|
|
|
790
|
-
class
|
|
839
|
+
class ListEksAnywhereSubscriptionsRequestTypeDef(TypedDict):
|
|
791
840
|
maxResults: NotRequired[int]
|
|
792
841
|
nextToken: NotRequired[str]
|
|
793
842
|
includeStatus: NotRequired[Sequence[EksAnywhereSubscriptionStatusType]]
|
|
794
843
|
|
|
795
844
|
|
|
796
|
-
class
|
|
845
|
+
class ListFargateProfilesRequestTypeDef(TypedDict):
|
|
797
846
|
clusterName: str
|
|
798
847
|
maxResults: NotRequired[int]
|
|
799
848
|
nextToken: NotRequired[str]
|
|
800
849
|
|
|
801
850
|
|
|
802
|
-
class
|
|
851
|
+
class ListIdentityProviderConfigsRequestTypeDef(TypedDict):
|
|
803
852
|
clusterName: str
|
|
804
853
|
maxResults: NotRequired[int]
|
|
805
854
|
nextToken: NotRequired[str]
|
|
806
855
|
|
|
807
856
|
|
|
808
|
-
class
|
|
857
|
+
class ListNodegroupsRequestTypeDef(TypedDict):
|
|
809
858
|
clusterName: str
|
|
810
859
|
maxResults: NotRequired[int]
|
|
811
860
|
nextToken: NotRequired[str]
|
|
812
861
|
|
|
813
862
|
|
|
814
|
-
class
|
|
863
|
+
class ListPodIdentityAssociationsRequestTypeDef(TypedDict):
|
|
815
864
|
clusterName: str
|
|
816
865
|
namespace: NotRequired[str]
|
|
817
866
|
serviceAccount: NotRequired[str]
|
|
@@ -828,11 +877,11 @@ class PodIdentityAssociationSummaryTypeDef(TypedDict):
|
|
|
828
877
|
ownerArn: NotRequired[str]
|
|
829
878
|
|
|
830
879
|
|
|
831
|
-
class
|
|
880
|
+
class ListTagsForResourceRequestTypeDef(TypedDict):
|
|
832
881
|
resourceArn: str
|
|
833
882
|
|
|
834
883
|
|
|
835
|
-
class
|
|
884
|
+
class ListUpdatesRequestTypeDef(TypedDict):
|
|
836
885
|
name: str
|
|
837
886
|
nodegroupName: NotRequired[str]
|
|
838
887
|
addonName: NotRequired[str]
|
|
@@ -843,7 +892,7 @@ class ListUpdatesRequestRequestTypeDef(TypedDict):
|
|
|
843
892
|
LogSetupOutputTypeDef = TypedDict(
|
|
844
893
|
"LogSetupOutputTypeDef",
|
|
845
894
|
{
|
|
846
|
-
"types": NotRequired[
|
|
895
|
+
"types": NotRequired[List[LogTypeType]],
|
|
847
896
|
"enabled": NotRequired[bool],
|
|
848
897
|
},
|
|
849
898
|
)
|
|
@@ -858,15 +907,20 @@ LogSetupTypeDef = TypedDict(
|
|
|
858
907
|
|
|
859
908
|
class RemoteAccessConfigOutputTypeDef(TypedDict):
|
|
860
909
|
ec2SshKey: NotRequired[str]
|
|
861
|
-
sourceSecurityGroups: NotRequired[
|
|
910
|
+
sourceSecurityGroups: NotRequired[List[str]]
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
class RemoteAccessConfigTypeDef(TypedDict):
|
|
914
|
+
ec2SshKey: NotRequired[str]
|
|
915
|
+
sourceSecurityGroups: NotRequired[Sequence[str]]
|
|
862
916
|
|
|
863
917
|
|
|
864
918
|
class RemoteNodeNetworkOutputTypeDef(TypedDict):
|
|
865
|
-
cidrs: NotRequired[
|
|
919
|
+
cidrs: NotRequired[List[str]]
|
|
866
920
|
|
|
867
921
|
|
|
868
922
|
class RemotePodNetworkOutputTypeDef(TypedDict):
|
|
869
|
-
cidrs: NotRequired[
|
|
923
|
+
cidrs: NotRequired[List[str]]
|
|
870
924
|
|
|
871
925
|
|
|
872
926
|
class RemoteNodeNetworkTypeDef(TypedDict):
|
|
@@ -877,12 +931,12 @@ class RemotePodNetworkTypeDef(TypedDict):
|
|
|
877
931
|
cidrs: NotRequired[Sequence[str]]
|
|
878
932
|
|
|
879
933
|
|
|
880
|
-
class
|
|
934
|
+
class TagResourceRequestTypeDef(TypedDict):
|
|
881
935
|
resourceArn: str
|
|
882
936
|
tags: Mapping[str, str]
|
|
883
937
|
|
|
884
938
|
|
|
885
|
-
class
|
|
939
|
+
class UntagResourceRequestTypeDef(TypedDict):
|
|
886
940
|
resourceArn: str
|
|
887
941
|
tagKeys: Sequence[str]
|
|
888
942
|
|
|
@@ -891,7 +945,7 @@ class UpdateAccessConfigRequestTypeDef(TypedDict):
|
|
|
891
945
|
authenticationMode: NotRequired[AuthenticationModeType]
|
|
892
946
|
|
|
893
947
|
|
|
894
|
-
class
|
|
948
|
+
class UpdateAccessEntryRequestTypeDef(TypedDict):
|
|
895
949
|
clusterName: str
|
|
896
950
|
principalArn: str
|
|
897
951
|
kubernetesGroups: NotRequired[Sequence[str]]
|
|
@@ -899,14 +953,15 @@ class UpdateAccessEntryRequestRequestTypeDef(TypedDict):
|
|
|
899
953
|
username: NotRequired[str]
|
|
900
954
|
|
|
901
955
|
|
|
902
|
-
class
|
|
956
|
+
class UpdateClusterVersionRequestTypeDef(TypedDict):
|
|
903
957
|
name: str
|
|
904
958
|
version: str
|
|
905
959
|
clientRequestToken: NotRequired[str]
|
|
960
|
+
force: NotRequired[bool]
|
|
906
961
|
|
|
907
962
|
|
|
908
|
-
|
|
909
|
-
"
|
|
963
|
+
UpdateEksAnywhereSubscriptionRequestTypeDef = TypedDict(
|
|
964
|
+
"UpdateEksAnywhereSubscriptionRequestTypeDef",
|
|
910
965
|
{
|
|
911
966
|
"id": str,
|
|
912
967
|
"autoRenew": bool,
|
|
@@ -929,7 +984,7 @@ UpdateParamTypeDef = TypedDict(
|
|
|
929
984
|
)
|
|
930
985
|
|
|
931
986
|
|
|
932
|
-
class
|
|
987
|
+
class UpdatePodIdentityAssociationRequestTypeDef(TypedDict):
|
|
933
988
|
clusterName: str
|
|
934
989
|
associationId: str
|
|
935
990
|
roleArn: NotRequired[str]
|
|
@@ -943,18 +998,14 @@ class AssociatedAccessPolicyTypeDef(TypedDict):
|
|
|
943
998
|
modifiedAt: NotRequired[datetime]
|
|
944
999
|
|
|
945
1000
|
|
|
946
|
-
|
|
947
|
-
clusterName: str
|
|
948
|
-
principalArn: str
|
|
949
|
-
policyArn: str
|
|
950
|
-
accessScope: AccessScopeTypeDef
|
|
1001
|
+
AccessScopeUnionTypeDef = Union[AccessScopeTypeDef, AccessScopeOutputTypeDef]
|
|
951
1002
|
|
|
952
1003
|
|
|
953
1004
|
class AddonHealthTypeDef(TypedDict):
|
|
954
|
-
issues: NotRequired[
|
|
1005
|
+
issues: NotRequired[List[AddonIssueTypeDef]]
|
|
955
1006
|
|
|
956
1007
|
|
|
957
|
-
class
|
|
1008
|
+
class CreateAddonRequestTypeDef(TypedDict):
|
|
958
1009
|
clusterName: str
|
|
959
1010
|
addonName: str
|
|
960
1011
|
addonVersion: NotRequired[str]
|
|
@@ -966,7 +1017,7 @@ class CreateAddonRequestRequestTypeDef(TypedDict):
|
|
|
966
1017
|
podIdentityAssociations: NotRequired[Sequence[AddonPodIdentityAssociationsTypeDef]]
|
|
967
1018
|
|
|
968
1019
|
|
|
969
|
-
class
|
|
1020
|
+
class UpdateAddonRequestTypeDef(TypedDict):
|
|
970
1021
|
clusterName: str
|
|
971
1022
|
addonName: str
|
|
972
1023
|
addonVersion: NotRequired[str]
|
|
@@ -979,9 +1030,9 @@ class UpdateAddonRequestRequestTypeDef(TypedDict):
|
|
|
979
1030
|
|
|
980
1031
|
class AddonVersionInfoTypeDef(TypedDict):
|
|
981
1032
|
addonVersion: NotRequired[str]
|
|
982
|
-
architecture: NotRequired[
|
|
983
|
-
computeTypes: NotRequired[
|
|
984
|
-
compatibilities: NotRequired[
|
|
1033
|
+
architecture: NotRequired[List[str]]
|
|
1034
|
+
computeTypes: NotRequired[List[str]]
|
|
1035
|
+
compatibilities: NotRequired[List[CompatibilityTypeDef]]
|
|
985
1036
|
requiresConfiguration: NotRequired[bool]
|
|
986
1037
|
requiresIamPermissions: NotRequired[bool]
|
|
987
1038
|
|
|
@@ -1000,53 +1051,53 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
|
|
|
1000
1051
|
addonName: str
|
|
1001
1052
|
addonVersion: str
|
|
1002
1053
|
configurationSchema: str
|
|
1003
|
-
podIdentityConfiguration:
|
|
1054
|
+
podIdentityConfiguration: List[AddonPodIdentityConfigurationTypeDef]
|
|
1004
1055
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1005
1056
|
|
|
1006
1057
|
|
|
1007
1058
|
class ListAccessEntriesResponseTypeDef(TypedDict):
|
|
1008
|
-
accessEntries:
|
|
1059
|
+
accessEntries: List[str]
|
|
1009
1060
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1010
1061
|
nextToken: NotRequired[str]
|
|
1011
1062
|
|
|
1012
1063
|
|
|
1013
1064
|
class ListAccessPoliciesResponseTypeDef(TypedDict):
|
|
1014
|
-
accessPolicies:
|
|
1065
|
+
accessPolicies: List[AccessPolicyTypeDef]
|
|
1015
1066
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1016
1067
|
nextToken: NotRequired[str]
|
|
1017
1068
|
|
|
1018
1069
|
|
|
1019
1070
|
class ListAddonsResponseTypeDef(TypedDict):
|
|
1020
|
-
addons:
|
|
1071
|
+
addons: List[str]
|
|
1021
1072
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1022
1073
|
nextToken: NotRequired[str]
|
|
1023
1074
|
|
|
1024
1075
|
|
|
1025
1076
|
class ListClustersResponseTypeDef(TypedDict):
|
|
1026
|
-
clusters:
|
|
1077
|
+
clusters: List[str]
|
|
1027
1078
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1028
1079
|
nextToken: NotRequired[str]
|
|
1029
1080
|
|
|
1030
1081
|
|
|
1031
1082
|
class ListFargateProfilesResponseTypeDef(TypedDict):
|
|
1032
|
-
fargateProfileNames:
|
|
1083
|
+
fargateProfileNames: List[str]
|
|
1033
1084
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1034
1085
|
nextToken: NotRequired[str]
|
|
1035
1086
|
|
|
1036
1087
|
|
|
1037
1088
|
class ListNodegroupsResponseTypeDef(TypedDict):
|
|
1038
|
-
nodegroups:
|
|
1089
|
+
nodegroups: List[str]
|
|
1039
1090
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1040
1091
|
nextToken: NotRequired[str]
|
|
1041
1092
|
|
|
1042
1093
|
|
|
1043
1094
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
1044
|
-
tags:
|
|
1095
|
+
tags: Dict[str, str]
|
|
1045
1096
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1046
1097
|
|
|
1047
1098
|
|
|
1048
1099
|
class ListUpdatesResponseTypeDef(TypedDict):
|
|
1049
|
-
updateIds:
|
|
1100
|
+
updateIds: List[str]
|
|
1050
1101
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1051
1102
|
nextToken: NotRequired[str]
|
|
1052
1103
|
|
|
@@ -1056,7 +1107,7 @@ class UpdateAccessEntryResponseTypeDef(TypedDict):
|
|
|
1056
1107
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1057
1108
|
|
|
1058
1109
|
|
|
1059
|
-
class
|
|
1110
|
+
class AssociateIdentityProviderConfigRequestTypeDef(TypedDict):
|
|
1060
1111
|
clusterName: str
|
|
1061
1112
|
oidc: OidcIdentityProviderConfigRequestTypeDef
|
|
1062
1113
|
tags: NotRequired[Mapping[str, str]]
|
|
@@ -1064,7 +1115,7 @@ class AssociateIdentityProviderConfigRequestRequestTypeDef(TypedDict):
|
|
|
1064
1115
|
|
|
1065
1116
|
|
|
1066
1117
|
class NodegroupResourcesTypeDef(TypedDict):
|
|
1067
|
-
autoScalingGroups: NotRequired[
|
|
1118
|
+
autoScalingGroups: NotRequired[List[AutoScalingGroupTypeDef]]
|
|
1068
1119
|
remoteAccessSecurityGroup: NotRequired[str]
|
|
1069
1120
|
|
|
1070
1121
|
|
|
@@ -1081,14 +1132,20 @@ class DeprecationDetailTypeDef(TypedDict):
|
|
|
1081
1132
|
replacedWith: NotRequired[str]
|
|
1082
1133
|
stopServingVersion: NotRequired[str]
|
|
1083
1134
|
startServingReplacementVersion: NotRequired[str]
|
|
1084
|
-
clientStats: NotRequired[
|
|
1135
|
+
clientStats: NotRequired[List[ClientStatTypeDef]]
|
|
1085
1136
|
|
|
1086
1137
|
|
|
1087
1138
|
class ClusterHealthTypeDef(TypedDict):
|
|
1088
|
-
issues: NotRequired[
|
|
1139
|
+
issues: NotRequired[List[ClusterIssueTypeDef]]
|
|
1140
|
+
|
|
1141
|
+
|
|
1142
|
+
class DescribeClusterVersionsResponseTypeDef(TypedDict):
|
|
1143
|
+
clusterVersions: List[ClusterVersionInformationTypeDef]
|
|
1144
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1145
|
+
nextToken: NotRequired[str]
|
|
1089
1146
|
|
|
1090
1147
|
|
|
1091
|
-
class
|
|
1148
|
+
class RegisterClusterRequestTypeDef(TypedDict):
|
|
1092
1149
|
name: str
|
|
1093
1150
|
connectorConfig: ConnectorConfigRequestTypeDef
|
|
1094
1151
|
clientRequestToken: NotRequired[str]
|
|
@@ -1102,12 +1159,12 @@ class OutpostConfigRequestTypeDef(TypedDict):
|
|
|
1102
1159
|
|
|
1103
1160
|
|
|
1104
1161
|
class OutpostConfigResponseTypeDef(TypedDict):
|
|
1105
|
-
outpostArns:
|
|
1162
|
+
outpostArns: List[str]
|
|
1106
1163
|
controlPlaneInstanceType: str
|
|
1107
1164
|
controlPlanePlacement: NotRequired[ControlPlanePlacementResponseTypeDef]
|
|
1108
1165
|
|
|
1109
1166
|
|
|
1110
|
-
class
|
|
1167
|
+
class CreateEksAnywhereSubscriptionRequestTypeDef(TypedDict):
|
|
1111
1168
|
name: str
|
|
1112
1169
|
term: EksAnywhereSubscriptionTermTypeDef
|
|
1113
1170
|
licenseQuantity: NotRequired[int]
|
|
@@ -1117,26 +1174,7 @@ class CreateEksAnywhereSubscriptionRequestRequestTypeDef(TypedDict):
|
|
|
1117
1174
|
tags: NotRequired[Mapping[str, str]]
|
|
1118
1175
|
|
|
1119
1176
|
|
|
1120
|
-
|
|
1121
|
-
"EksAnywhereSubscriptionTypeDef",
|
|
1122
|
-
{
|
|
1123
|
-
"id": NotRequired[str],
|
|
1124
|
-
"arn": NotRequired[str],
|
|
1125
|
-
"createdAt": NotRequired[datetime],
|
|
1126
|
-
"effectiveDate": NotRequired[datetime],
|
|
1127
|
-
"expirationDate": NotRequired[datetime],
|
|
1128
|
-
"licenseQuantity": NotRequired[int],
|
|
1129
|
-
"licenseType": NotRequired[Literal["Cluster"]],
|
|
1130
|
-
"term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
|
|
1131
|
-
"status": NotRequired[str],
|
|
1132
|
-
"autoRenew": NotRequired[bool],
|
|
1133
|
-
"licenseArns": NotRequired[list[str]],
|
|
1134
|
-
"tags": NotRequired[dict[str, str]],
|
|
1135
|
-
},
|
|
1136
|
-
)
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
class UpdateNodegroupVersionRequestRequestTypeDef(TypedDict):
|
|
1177
|
+
class UpdateNodegroupVersionRequestTypeDef(TypedDict):
|
|
1140
1178
|
clusterName: str
|
|
1141
1179
|
nodegroupName: str
|
|
1142
1180
|
version: NotRequired[str]
|
|
@@ -1146,28 +1184,6 @@ class UpdateNodegroupVersionRequestRequestTypeDef(TypedDict):
|
|
|
1146
1184
|
clientRequestToken: NotRequired[str]
|
|
1147
1185
|
|
|
1148
1186
|
|
|
1149
|
-
class CreateNodegroupRequestRequestTypeDef(TypedDict):
|
|
1150
|
-
clusterName: str
|
|
1151
|
-
nodegroupName: str
|
|
1152
|
-
subnets: Sequence[str]
|
|
1153
|
-
nodeRole: str
|
|
1154
|
-
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1155
|
-
diskSize: NotRequired[int]
|
|
1156
|
-
instanceTypes: NotRequired[Sequence[str]]
|
|
1157
|
-
amiType: NotRequired[AMITypesType]
|
|
1158
|
-
remoteAccess: NotRequired[RemoteAccessConfigTypeDef]
|
|
1159
|
-
labels: NotRequired[Mapping[str, str]]
|
|
1160
|
-
taints: NotRequired[Sequence[TaintTypeDef]]
|
|
1161
|
-
tags: NotRequired[Mapping[str, str]]
|
|
1162
|
-
clientRequestToken: NotRequired[str]
|
|
1163
|
-
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1164
|
-
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1165
|
-
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1166
|
-
capacityType: NotRequired[CapacityTypesType]
|
|
1167
|
-
version: NotRequired[str]
|
|
1168
|
-
releaseVersion: NotRequired[str]
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
1187
|
class UpdateTaintsPayloadTypeDef(TypedDict):
|
|
1172
1188
|
addOrUpdateTaints: NotRequired[Sequence[TaintTypeDef]]
|
|
1173
1189
|
removeTaints: NotRequired[Sequence[TaintTypeDef]]
|
|
@@ -1193,23 +1209,46 @@ class UpdatePodIdentityAssociationResponseTypeDef(TypedDict):
|
|
|
1193
1209
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1194
1210
|
|
|
1195
1211
|
|
|
1212
|
+
class DescribeAddonRequestWaitExtraTypeDef(TypedDict):
|
|
1213
|
+
clusterName: str
|
|
1214
|
+
addonName: str
|
|
1215
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1216
|
+
|
|
1217
|
+
|
|
1196
1218
|
class DescribeAddonRequestWaitTypeDef(TypedDict):
|
|
1197
1219
|
clusterName: str
|
|
1198
1220
|
addonName: str
|
|
1199
1221
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1200
1222
|
|
|
1201
1223
|
|
|
1224
|
+
class DescribeClusterRequestWaitExtraTypeDef(TypedDict):
|
|
1225
|
+
name: str
|
|
1226
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1227
|
+
|
|
1228
|
+
|
|
1202
1229
|
class DescribeClusterRequestWaitTypeDef(TypedDict):
|
|
1203
1230
|
name: str
|
|
1204
1231
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1205
1232
|
|
|
1206
1233
|
|
|
1234
|
+
class DescribeFargateProfileRequestWaitExtraTypeDef(TypedDict):
|
|
1235
|
+
clusterName: str
|
|
1236
|
+
fargateProfileName: str
|
|
1237
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1238
|
+
|
|
1239
|
+
|
|
1207
1240
|
class DescribeFargateProfileRequestWaitTypeDef(TypedDict):
|
|
1208
1241
|
clusterName: str
|
|
1209
1242
|
fargateProfileName: str
|
|
1210
1243
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1211
1244
|
|
|
1212
1245
|
|
|
1246
|
+
class DescribeNodegroupRequestWaitExtraTypeDef(TypedDict):
|
|
1247
|
+
clusterName: str
|
|
1248
|
+
nodegroupName: str
|
|
1249
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1250
|
+
|
|
1251
|
+
|
|
1213
1252
|
class DescribeNodegroupRequestWaitTypeDef(TypedDict):
|
|
1214
1253
|
clusterName: str
|
|
1215
1254
|
nodegroupName: str
|
|
@@ -1229,6 +1268,16 @@ DescribeAddonVersionsRequestPaginateTypeDef = TypedDict(
|
|
|
1229
1268
|
)
|
|
1230
1269
|
|
|
1231
1270
|
|
|
1271
|
+
class DescribeClusterVersionsRequestPaginateTypeDef(TypedDict):
|
|
1272
|
+
clusterType: NotRequired[str]
|
|
1273
|
+
defaultOnly: NotRequired[bool]
|
|
1274
|
+
includeAll: NotRequired[bool]
|
|
1275
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
1276
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
1277
|
+
versionStatus: NotRequired[VersionStatusType]
|
|
1278
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1279
|
+
|
|
1280
|
+
|
|
1232
1281
|
class ListAccessEntriesRequestPaginateTypeDef(TypedDict):
|
|
1233
1282
|
clusterName: str
|
|
1234
1283
|
associatedPolicyArn: NotRequired[str]
|
|
@@ -1289,23 +1338,43 @@ class ListUpdatesRequestPaginateTypeDef(TypedDict):
|
|
|
1289
1338
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1290
1339
|
|
|
1291
1340
|
|
|
1292
|
-
class
|
|
1341
|
+
class DescribeIdentityProviderConfigRequestTypeDef(TypedDict):
|
|
1293
1342
|
clusterName: str
|
|
1294
1343
|
identityProviderConfig: IdentityProviderConfigTypeDef
|
|
1295
1344
|
|
|
1296
1345
|
|
|
1297
|
-
class
|
|
1346
|
+
class DisassociateIdentityProviderConfigRequestTypeDef(TypedDict):
|
|
1298
1347
|
clusterName: str
|
|
1299
1348
|
identityProviderConfig: IdentityProviderConfigTypeDef
|
|
1300
1349
|
clientRequestToken: NotRequired[str]
|
|
1301
1350
|
|
|
1302
1351
|
|
|
1303
1352
|
class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
|
|
1304
|
-
identityProviderConfigs:
|
|
1353
|
+
identityProviderConfigs: List[IdentityProviderConfigTypeDef]
|
|
1305
1354
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1306
1355
|
nextToken: NotRequired[str]
|
|
1307
1356
|
|
|
1308
1357
|
|
|
1358
|
+
EksAnywhereSubscriptionTypeDef = TypedDict(
|
|
1359
|
+
"EksAnywhereSubscriptionTypeDef",
|
|
1360
|
+
{
|
|
1361
|
+
"id": NotRequired[str],
|
|
1362
|
+
"arn": NotRequired[str],
|
|
1363
|
+
"createdAt": NotRequired[datetime],
|
|
1364
|
+
"effectiveDate": NotRequired[datetime],
|
|
1365
|
+
"expirationDate": NotRequired[datetime],
|
|
1366
|
+
"licenseQuantity": NotRequired[int],
|
|
1367
|
+
"licenseType": NotRequired[Literal["Cluster"]],
|
|
1368
|
+
"term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
|
|
1369
|
+
"status": NotRequired[str],
|
|
1370
|
+
"autoRenew": NotRequired[bool],
|
|
1371
|
+
"licenseArns": NotRequired[List[str]],
|
|
1372
|
+
"licenses": NotRequired[List[LicenseTypeDef]],
|
|
1373
|
+
"tags": NotRequired[Dict[str, str]],
|
|
1374
|
+
},
|
|
1375
|
+
)
|
|
1376
|
+
|
|
1377
|
+
|
|
1309
1378
|
class KubernetesNetworkConfigRequestTypeDef(TypedDict):
|
|
1310
1379
|
serviceIpv4Cidr: NotRequired[str]
|
|
1311
1380
|
ipFamily: NotRequired[IpFamilyType]
|
|
@@ -1320,7 +1389,7 @@ class KubernetesNetworkConfigResponseTypeDef(TypedDict):
|
|
|
1320
1389
|
|
|
1321
1390
|
|
|
1322
1391
|
class EncryptionConfigOutputTypeDef(TypedDict):
|
|
1323
|
-
resources: NotRequired[
|
|
1392
|
+
resources: NotRequired[List[str]]
|
|
1324
1393
|
provider: NotRequired[ProviderTypeDef]
|
|
1325
1394
|
|
|
1326
1395
|
|
|
@@ -1330,7 +1399,7 @@ class EncryptionConfigTypeDef(TypedDict):
|
|
|
1330
1399
|
|
|
1331
1400
|
|
|
1332
1401
|
class FargateProfileHealthTypeDef(TypedDict):
|
|
1333
|
-
issues: NotRequired[
|
|
1402
|
+
issues: NotRequired[List[FargateProfileIssueTypeDef]]
|
|
1334
1403
|
|
|
1335
1404
|
|
|
1336
1405
|
FargateProfileSelectorUnionTypeDef = Union[
|
|
@@ -1373,8 +1442,8 @@ ListInsightsRequestPaginateTypeDef = TypedDict(
|
|
|
1373
1442
|
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1374
1443
|
},
|
|
1375
1444
|
)
|
|
1376
|
-
|
|
1377
|
-
"
|
|
1445
|
+
ListInsightsRequestTypeDef = TypedDict(
|
|
1446
|
+
"ListInsightsRequestTypeDef",
|
|
1378
1447
|
{
|
|
1379
1448
|
"clusterName": str,
|
|
1380
1449
|
"filter": NotRequired[InsightsFilterTypeDef],
|
|
@@ -1385,25 +1454,29 @@ ListInsightsRequestRequestTypeDef = TypedDict(
|
|
|
1385
1454
|
|
|
1386
1455
|
|
|
1387
1456
|
class NodegroupHealthTypeDef(TypedDict):
|
|
1388
|
-
issues: NotRequired[
|
|
1457
|
+
issues: NotRequired[List[IssueTypeDef]]
|
|
1389
1458
|
|
|
1390
1459
|
|
|
1391
1460
|
class ListPodIdentityAssociationsResponseTypeDef(TypedDict):
|
|
1392
|
-
associations:
|
|
1461
|
+
associations: List[PodIdentityAssociationSummaryTypeDef]
|
|
1393
1462
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1394
1463
|
nextToken: NotRequired[str]
|
|
1395
1464
|
|
|
1396
1465
|
|
|
1397
1466
|
class LoggingOutputTypeDef(TypedDict):
|
|
1398
|
-
clusterLogging: NotRequired[
|
|
1467
|
+
clusterLogging: NotRequired[List[LogSetupOutputTypeDef]]
|
|
1468
|
+
|
|
1399
1469
|
|
|
1470
|
+
class LoggingTypeDef(TypedDict):
|
|
1471
|
+
clusterLogging: NotRequired[Sequence[LogSetupTypeDef]]
|
|
1400
1472
|
|
|
1401
|
-
|
|
1473
|
+
|
|
1474
|
+
RemoteAccessConfigUnionTypeDef = Union[RemoteAccessConfigTypeDef, RemoteAccessConfigOutputTypeDef]
|
|
1402
1475
|
|
|
1403
1476
|
|
|
1404
1477
|
class RemoteNetworkConfigResponseTypeDef(TypedDict):
|
|
1405
|
-
remoteNodeNetworks: NotRequired[
|
|
1406
|
-
remotePodNetworks: NotRequired[
|
|
1478
|
+
remoteNodeNetworks: NotRequired[List[RemoteNodeNetworkOutputTypeDef]]
|
|
1479
|
+
remotePodNetworks: NotRequired[List[RemotePodNetworkOutputTypeDef]]
|
|
1407
1480
|
|
|
1408
1481
|
|
|
1409
1482
|
RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
|
|
@@ -1414,9 +1487,9 @@ UpdateTypeDef = TypedDict(
|
|
|
1414
1487
|
"id": NotRequired[str],
|
|
1415
1488
|
"status": NotRequired[UpdateStatusType],
|
|
1416
1489
|
"type": NotRequired[UpdateTypeType],
|
|
1417
|
-
"params": NotRequired[
|
|
1490
|
+
"params": NotRequired[List[UpdateParamTypeDef]],
|
|
1418
1491
|
"createdAt": NotRequired[datetime],
|
|
1419
|
-
"errors": NotRequired[
|
|
1492
|
+
"errors": NotRequired[List[ErrorDetailTypeDef]],
|
|
1420
1493
|
},
|
|
1421
1494
|
)
|
|
1422
1495
|
|
|
@@ -1431,11 +1504,18 @@ class AssociateAccessPolicyResponseTypeDef(TypedDict):
|
|
|
1431
1504
|
class ListAssociatedAccessPoliciesResponseTypeDef(TypedDict):
|
|
1432
1505
|
clusterName: str
|
|
1433
1506
|
principalArn: str
|
|
1434
|
-
associatedAccessPolicies:
|
|
1507
|
+
associatedAccessPolicies: List[AssociatedAccessPolicyTypeDef]
|
|
1435
1508
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1436
1509
|
nextToken: NotRequired[str]
|
|
1437
1510
|
|
|
1438
1511
|
|
|
1512
|
+
class AssociateAccessPolicyRequestTypeDef(TypedDict):
|
|
1513
|
+
clusterName: str
|
|
1514
|
+
principalArn: str
|
|
1515
|
+
policyArn: str
|
|
1516
|
+
accessScope: AccessScopeUnionTypeDef
|
|
1517
|
+
|
|
1518
|
+
|
|
1439
1519
|
class AddonTypeDef(TypedDict):
|
|
1440
1520
|
addonName: NotRequired[str]
|
|
1441
1521
|
clusterName: NotRequired[str]
|
|
@@ -1446,12 +1526,12 @@ class AddonTypeDef(TypedDict):
|
|
|
1446
1526
|
createdAt: NotRequired[datetime]
|
|
1447
1527
|
modifiedAt: NotRequired[datetime]
|
|
1448
1528
|
serviceAccountRoleArn: NotRequired[str]
|
|
1449
|
-
tags: NotRequired[
|
|
1529
|
+
tags: NotRequired[Dict[str, str]]
|
|
1450
1530
|
publisher: NotRequired[str]
|
|
1451
1531
|
owner: NotRequired[str]
|
|
1452
1532
|
marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
|
|
1453
1533
|
configurationValues: NotRequired[str]
|
|
1454
|
-
podIdentityAssociations: NotRequired[
|
|
1534
|
+
podIdentityAssociations: NotRequired[List[str]]
|
|
1455
1535
|
|
|
1456
1536
|
|
|
1457
1537
|
AddonInfoTypeDef = TypedDict(
|
|
@@ -1459,7 +1539,7 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1459
1539
|
{
|
|
1460
1540
|
"addonName": NotRequired[str],
|
|
1461
1541
|
"type": NotRequired[str],
|
|
1462
|
-
"addonVersions": NotRequired[
|
|
1542
|
+
"addonVersions": NotRequired[List[AddonVersionInfoTypeDef]],
|
|
1463
1543
|
"publisher": NotRequired[str],
|
|
1464
1544
|
"owner": NotRequired[str],
|
|
1465
1545
|
"marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
|
|
@@ -1468,8 +1548,19 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1468
1548
|
|
|
1469
1549
|
|
|
1470
1550
|
class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
1471
|
-
deprecationDetails: NotRequired[
|
|
1472
|
-
addonCompatibilityDetails: NotRequired[
|
|
1551
|
+
deprecationDetails: NotRequired[List[DeprecationDetailTypeDef]]
|
|
1552
|
+
addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
|
|
1553
|
+
|
|
1554
|
+
|
|
1555
|
+
class UpdateNodegroupConfigRequestTypeDef(TypedDict):
|
|
1556
|
+
clusterName: str
|
|
1557
|
+
nodegroupName: str
|
|
1558
|
+
labels: NotRequired[UpdateLabelsPayloadTypeDef]
|
|
1559
|
+
taints: NotRequired[UpdateTaintsPayloadTypeDef]
|
|
1560
|
+
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1561
|
+
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1562
|
+
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1563
|
+
clientRequestToken: NotRequired[str]
|
|
1473
1564
|
|
|
1474
1565
|
|
|
1475
1566
|
class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
@@ -1488,7 +1579,7 @@ class DescribeEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
|
1488
1579
|
|
|
1489
1580
|
|
|
1490
1581
|
class ListEksAnywhereSubscriptionsResponseTypeDef(TypedDict):
|
|
1491
|
-
subscriptions:
|
|
1582
|
+
subscriptions: List[EksAnywhereSubscriptionTypeDef]
|
|
1492
1583
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1493
1584
|
nextToken: NotRequired[str]
|
|
1494
1585
|
|
|
@@ -1498,17 +1589,6 @@ class UpdateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
|
1498
1589
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1499
1590
|
|
|
1500
1591
|
|
|
1501
|
-
class UpdateNodegroupConfigRequestRequestTypeDef(TypedDict):
|
|
1502
|
-
clusterName: str
|
|
1503
|
-
nodegroupName: str
|
|
1504
|
-
labels: NotRequired[UpdateLabelsPayloadTypeDef]
|
|
1505
|
-
taints: NotRequired[UpdateTaintsPayloadTypeDef]
|
|
1506
|
-
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1507
|
-
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1508
|
-
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1509
|
-
clientRequestToken: NotRequired[str]
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
1592
|
EncryptionConfigUnionTypeDef = Union[EncryptionConfigTypeDef, EncryptionConfigOutputTypeDef]
|
|
1513
1593
|
|
|
1514
1594
|
|
|
@@ -1518,14 +1598,14 @@ class FargateProfileTypeDef(TypedDict):
|
|
|
1518
1598
|
clusterName: NotRequired[str]
|
|
1519
1599
|
createdAt: NotRequired[datetime]
|
|
1520
1600
|
podExecutionRoleArn: NotRequired[str]
|
|
1521
|
-
subnets: NotRequired[
|
|
1522
|
-
selectors: NotRequired[
|
|
1601
|
+
subnets: NotRequired[List[str]]
|
|
1602
|
+
selectors: NotRequired[List[FargateProfileSelectorOutputTypeDef]]
|
|
1523
1603
|
status: NotRequired[FargateProfileStatusType]
|
|
1524
|
-
tags: NotRequired[
|
|
1604
|
+
tags: NotRequired[Dict[str, str]]
|
|
1525
1605
|
health: NotRequired[FargateProfileHealthTypeDef]
|
|
1526
1606
|
|
|
1527
1607
|
|
|
1528
|
-
class
|
|
1608
|
+
class CreateFargateProfileRequestTypeDef(TypedDict):
|
|
1529
1609
|
fargateProfileName: str
|
|
1530
1610
|
clusterName: str
|
|
1531
1611
|
podExecutionRoleArn: str
|
|
@@ -1541,7 +1621,7 @@ class DescribeIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
|
1541
1621
|
|
|
1542
1622
|
|
|
1543
1623
|
class ListInsightsResponseTypeDef(TypedDict):
|
|
1544
|
-
insights:
|
|
1624
|
+
insights: List[InsightSummaryTypeDef]
|
|
1545
1625
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1546
1626
|
nextToken: NotRequired[str]
|
|
1547
1627
|
|
|
@@ -1557,24 +1637,45 @@ class NodegroupTypeDef(TypedDict):
|
|
|
1557
1637
|
status: NotRequired[NodegroupStatusType]
|
|
1558
1638
|
capacityType: NotRequired[CapacityTypesType]
|
|
1559
1639
|
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1560
|
-
instanceTypes: NotRequired[
|
|
1561
|
-
subnets: NotRequired[
|
|
1640
|
+
instanceTypes: NotRequired[List[str]]
|
|
1641
|
+
subnets: NotRequired[List[str]]
|
|
1562
1642
|
remoteAccess: NotRequired[RemoteAccessConfigOutputTypeDef]
|
|
1563
1643
|
amiType: NotRequired[AMITypesType]
|
|
1564
1644
|
nodeRole: NotRequired[str]
|
|
1565
|
-
labels: NotRequired[
|
|
1566
|
-
taints: NotRequired[
|
|
1645
|
+
labels: NotRequired[Dict[str, str]]
|
|
1646
|
+
taints: NotRequired[List[TaintTypeDef]]
|
|
1567
1647
|
resources: NotRequired[NodegroupResourcesTypeDef]
|
|
1568
1648
|
diskSize: NotRequired[int]
|
|
1569
1649
|
health: NotRequired[NodegroupHealthTypeDef]
|
|
1570
1650
|
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1571
1651
|
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1572
1652
|
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1573
|
-
tags: NotRequired[
|
|
1653
|
+
tags: NotRequired[Dict[str, str]]
|
|
1574
1654
|
|
|
1575
1655
|
|
|
1576
|
-
|
|
1577
|
-
|
|
1656
|
+
LoggingUnionTypeDef = Union[LoggingTypeDef, LoggingOutputTypeDef]
|
|
1657
|
+
|
|
1658
|
+
|
|
1659
|
+
class CreateNodegroupRequestTypeDef(TypedDict):
|
|
1660
|
+
clusterName: str
|
|
1661
|
+
nodegroupName: str
|
|
1662
|
+
subnets: Sequence[str]
|
|
1663
|
+
nodeRole: str
|
|
1664
|
+
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1665
|
+
diskSize: NotRequired[int]
|
|
1666
|
+
instanceTypes: NotRequired[Sequence[str]]
|
|
1667
|
+
amiType: NotRequired[AMITypesType]
|
|
1668
|
+
remoteAccess: NotRequired[RemoteAccessConfigUnionTypeDef]
|
|
1669
|
+
labels: NotRequired[Mapping[str, str]]
|
|
1670
|
+
taints: NotRequired[Sequence[TaintTypeDef]]
|
|
1671
|
+
tags: NotRequired[Mapping[str, str]]
|
|
1672
|
+
clientRequestToken: NotRequired[str]
|
|
1673
|
+
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1674
|
+
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1675
|
+
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1676
|
+
capacityType: NotRequired[CapacityTypesType]
|
|
1677
|
+
version: NotRequired[str]
|
|
1678
|
+
releaseVersion: NotRequired[str]
|
|
1578
1679
|
|
|
1579
1680
|
|
|
1580
1681
|
ClusterTypeDef = TypedDict(
|
|
@@ -1594,8 +1695,8 @@ ClusterTypeDef = TypedDict(
|
|
|
1594
1695
|
"certificateAuthority": NotRequired[CertificateTypeDef],
|
|
1595
1696
|
"clientRequestToken": NotRequired[str],
|
|
1596
1697
|
"platformVersion": NotRequired[str],
|
|
1597
|
-
"tags": NotRequired[
|
|
1598
|
-
"encryptionConfig": NotRequired[
|
|
1698
|
+
"tags": NotRequired[Dict[str, str]],
|
|
1699
|
+
"encryptionConfig": NotRequired[List[EncryptionConfigOutputTypeDef]],
|
|
1599
1700
|
"connectorConfig": NotRequired[ConnectorConfigResponseTypeDef],
|
|
1600
1701
|
"id": NotRequired[str],
|
|
1601
1702
|
"health": NotRequired[ClusterHealthTypeDef],
|
|
@@ -1622,7 +1723,7 @@ class AssociateEncryptionConfigResponseTypeDef(TypedDict):
|
|
|
1622
1723
|
|
|
1623
1724
|
class AssociateIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
1624
1725
|
update: UpdateTypeDef
|
|
1625
|
-
tags:
|
|
1726
|
+
tags: Dict[str, str]
|
|
1626
1727
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1627
1728
|
|
|
1628
1729
|
|
|
@@ -1677,7 +1778,7 @@ class DescribeAddonResponseTypeDef(TypedDict):
|
|
|
1677
1778
|
|
|
1678
1779
|
|
|
1679
1780
|
class DescribeAddonVersionsResponseTypeDef(TypedDict):
|
|
1680
|
-
addons:
|
|
1781
|
+
addons: List[AddonInfoTypeDef]
|
|
1681
1782
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1682
1783
|
nextToken: NotRequired[str]
|
|
1683
1784
|
|
|
@@ -1694,14 +1795,14 @@ InsightTypeDef = TypedDict(
|
|
|
1694
1795
|
"description": NotRequired[str],
|
|
1695
1796
|
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1696
1797
|
"recommendation": NotRequired[str],
|
|
1697
|
-
"additionalInfo": NotRequired[
|
|
1698
|
-
"resources": NotRequired[
|
|
1798
|
+
"additionalInfo": NotRequired[Dict[str, str]],
|
|
1799
|
+
"resources": NotRequired[List[InsightResourceDetailTypeDef]],
|
|
1699
1800
|
"categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
|
|
1700
1801
|
},
|
|
1701
1802
|
)
|
|
1702
1803
|
|
|
1703
1804
|
|
|
1704
|
-
class
|
|
1805
|
+
class AssociateEncryptionConfigRequestTypeDef(TypedDict):
|
|
1705
1806
|
clusterName: str
|
|
1706
1807
|
encryptionConfig: Sequence[EncryptionConfigUnionTypeDef]
|
|
1707
1808
|
clientRequestToken: NotRequired[str]
|
|
@@ -1737,19 +1838,6 @@ class DescribeNodegroupResponseTypeDef(TypedDict):
|
|
|
1737
1838
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1738
1839
|
|
|
1739
1840
|
|
|
1740
|
-
class UpdateClusterConfigRequestRequestTypeDef(TypedDict):
|
|
1741
|
-
name: str
|
|
1742
|
-
resourcesVpcConfig: NotRequired[VpcConfigRequestTypeDef]
|
|
1743
|
-
logging: NotRequired[LoggingTypeDef]
|
|
1744
|
-
clientRequestToken: NotRequired[str]
|
|
1745
|
-
accessConfig: NotRequired[UpdateAccessConfigRequestTypeDef]
|
|
1746
|
-
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1747
|
-
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1748
|
-
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1749
|
-
kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
|
|
1750
|
-
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
1841
|
class CreateClusterResponseTypeDef(TypedDict):
|
|
1754
1842
|
cluster: ClusterTypeDef
|
|
1755
1843
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1775,16 +1863,16 @@ class RegisterClusterResponseTypeDef(TypedDict):
|
|
|
1775
1863
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1776
1864
|
|
|
1777
1865
|
|
|
1778
|
-
class
|
|
1866
|
+
class CreateClusterRequestTypeDef(TypedDict):
|
|
1779
1867
|
name: str
|
|
1780
1868
|
roleArn: str
|
|
1781
1869
|
resourcesVpcConfig: VpcConfigRequestTypeDef
|
|
1782
1870
|
version: NotRequired[str]
|
|
1783
1871
|
kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
|
|
1784
|
-
logging: NotRequired[
|
|
1872
|
+
logging: NotRequired[LoggingUnionTypeDef]
|
|
1785
1873
|
clientRequestToken: NotRequired[str]
|
|
1786
1874
|
tags: NotRequired[Mapping[str, str]]
|
|
1787
|
-
encryptionConfig: NotRequired[Sequence[
|
|
1875
|
+
encryptionConfig: NotRequired[Sequence[EncryptionConfigUnionTypeDef]]
|
|
1788
1876
|
outpostConfig: NotRequired[OutpostConfigRequestTypeDef]
|
|
1789
1877
|
accessConfig: NotRequired[CreateAccessConfigRequestTypeDef]
|
|
1790
1878
|
bootstrapSelfManagedAddons: NotRequired[bool]
|
|
@@ -1795,6 +1883,20 @@ class CreateClusterRequestRequestTypeDef(TypedDict):
|
|
|
1795
1883
|
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1796
1884
|
|
|
1797
1885
|
|
|
1886
|
+
class UpdateClusterConfigRequestTypeDef(TypedDict):
|
|
1887
|
+
name: str
|
|
1888
|
+
resourcesVpcConfig: NotRequired[VpcConfigRequestTypeDef]
|
|
1889
|
+
logging: NotRequired[LoggingUnionTypeDef]
|
|
1890
|
+
clientRequestToken: NotRequired[str]
|
|
1891
|
+
accessConfig: NotRequired[UpdateAccessConfigRequestTypeDef]
|
|
1892
|
+
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1893
|
+
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1894
|
+
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1895
|
+
kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
|
|
1896
|
+
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1897
|
+
remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
|
|
1898
|
+
|
|
1899
|
+
|
|
1798
1900
|
class DescribeInsightResponseTypeDef(TypedDict):
|
|
1799
1901
|
insight: InsightTypeDef
|
|
1800
1902
|
ResponseMetadata: ResponseMetadataTypeDef
|