types-boto3-eks 1.35.81__py3-none-any.whl → 1.35.87__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- types_boto3_eks/__init__.py +4 -0
- types_boto3_eks/__init__.pyi +4 -0
- types_boto3_eks/__main__.py +8 -7
- types_boto3_eks/client.py +114 -78
- types_boto3_eks/client.pyi +114 -77
- types_boto3_eks/literals.py +7 -1
- types_boto3_eks/literals.pyi +7 -1
- types_boto3_eks/paginator.py +179 -87
- types_boto3_eks/paginator.pyi +164 -86
- types_boto3_eks/type_defs.py +167 -143
- types_boto3_eks/type_defs.pyi +161 -138
- types_boto3_eks/version.py +1 -1
- types_boto3_eks/waiter.py +29 -19
- types_boto3_eks/waiter.pyi +29 -19
- {types_boto3_eks-1.35.81.dist-info → types_boto3_eks-1.35.87.dist-info}/METADATA +9 -5
- types_boto3_eks-1.35.87.dist-info/RECORD +20 -0
- types_boto3_eks-1.35.81.dist-info/RECORD +0 -20
- {types_boto3_eks-1.35.81.dist-info → types_boto3_eks-1.35.87.dist-info}/LICENSE +0 -0
- {types_boto3_eks-1.35.81.dist-info → types_boto3_eks-1.35.87.dist-info}/WHEEL +0 -0
- {types_boto3_eks-1.35.81.dist-info → types_boto3_eks-1.35.87.dist-info}/top_level.txt +0 -0
types_boto3_eks/type_defs.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for eks service type definitions.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/type_defs/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -14,9 +14,11 @@ Usage::
|
|
|
14
14
|
Copyright 2024 Vlad Emelianov
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
17
19
|
import sys
|
|
18
20
|
from datetime import datetime
|
|
19
|
-
from typing import
|
|
21
|
+
from typing import Mapping, Sequence, Union
|
|
20
22
|
|
|
21
23
|
from .literals import (
|
|
22
24
|
AccessScopeTypeType,
|
|
@@ -27,6 +29,7 @@ from .literals import (
|
|
|
27
29
|
CapacityTypesType,
|
|
28
30
|
ClusterIssueCodeType,
|
|
29
31
|
ClusterStatusType,
|
|
32
|
+
ClusterVersionStatusType,
|
|
30
33
|
ConfigStatusType,
|
|
31
34
|
ConnectorConfigProviderType,
|
|
32
35
|
EksAnywhereSubscriptionStatusType,
|
|
@@ -57,6 +60,7 @@ __all__ = (
|
|
|
57
60
|
"AccessPolicyTypeDef",
|
|
58
61
|
"AccessScopeOutputTypeDef",
|
|
59
62
|
"AccessScopeTypeDef",
|
|
63
|
+
"AddonCompatibilityDetailTypeDef",
|
|
60
64
|
"AddonHealthTypeDef",
|
|
61
65
|
"AddonInfoTypeDef",
|
|
62
66
|
"AddonIssueTypeDef",
|
|
@@ -78,6 +82,7 @@ __all__ = (
|
|
|
78
82
|
"ClusterHealthTypeDef",
|
|
79
83
|
"ClusterIssueTypeDef",
|
|
80
84
|
"ClusterTypeDef",
|
|
85
|
+
"ClusterVersionInformationTypeDef",
|
|
81
86
|
"CompatibilityTypeDef",
|
|
82
87
|
"ComputeConfigRequestTypeDef",
|
|
83
88
|
"ComputeConfigResponseTypeDef",
|
|
@@ -120,30 +125,29 @@ __all__ = (
|
|
|
120
125
|
"DescribeAccessEntryResponseTypeDef",
|
|
121
126
|
"DescribeAddonConfigurationRequestRequestTypeDef",
|
|
122
127
|
"DescribeAddonConfigurationResponseTypeDef",
|
|
123
|
-
"DescribeAddonRequestAddonActiveWaitTypeDef",
|
|
124
|
-
"DescribeAddonRequestAddonDeletedWaitTypeDef",
|
|
125
128
|
"DescribeAddonRequestRequestTypeDef",
|
|
129
|
+
"DescribeAddonRequestWaitTypeDef",
|
|
126
130
|
"DescribeAddonResponseTypeDef",
|
|
127
|
-
"
|
|
131
|
+
"DescribeAddonVersionsRequestPaginateTypeDef",
|
|
128
132
|
"DescribeAddonVersionsRequestRequestTypeDef",
|
|
129
133
|
"DescribeAddonVersionsResponseTypeDef",
|
|
130
|
-
"DescribeClusterRequestClusterActiveWaitTypeDef",
|
|
131
|
-
"DescribeClusterRequestClusterDeletedWaitTypeDef",
|
|
132
134
|
"DescribeClusterRequestRequestTypeDef",
|
|
135
|
+
"DescribeClusterRequestWaitTypeDef",
|
|
133
136
|
"DescribeClusterResponseTypeDef",
|
|
137
|
+
"DescribeClusterVersionsRequestPaginateTypeDef",
|
|
138
|
+
"DescribeClusterVersionsRequestRequestTypeDef",
|
|
139
|
+
"DescribeClusterVersionsResponseTypeDef",
|
|
134
140
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
135
141
|
"DescribeEksAnywhereSubscriptionResponseTypeDef",
|
|
136
|
-
"DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef",
|
|
137
|
-
"DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef",
|
|
138
142
|
"DescribeFargateProfileRequestRequestTypeDef",
|
|
143
|
+
"DescribeFargateProfileRequestWaitTypeDef",
|
|
139
144
|
"DescribeFargateProfileResponseTypeDef",
|
|
140
145
|
"DescribeIdentityProviderConfigRequestRequestTypeDef",
|
|
141
146
|
"DescribeIdentityProviderConfigResponseTypeDef",
|
|
142
147
|
"DescribeInsightRequestRequestTypeDef",
|
|
143
148
|
"DescribeInsightResponseTypeDef",
|
|
144
|
-
"DescribeNodegroupRequestNodegroupActiveWaitTypeDef",
|
|
145
|
-
"DescribeNodegroupRequestNodegroupDeletedWaitTypeDef",
|
|
146
149
|
"DescribeNodegroupRequestRequestTypeDef",
|
|
150
|
+
"DescribeNodegroupRequestWaitTypeDef",
|
|
147
151
|
"DescribeNodegroupResponseTypeDef",
|
|
148
152
|
"DescribePodIdentityAssociationRequestRequestTypeDef",
|
|
149
153
|
"DescribePodIdentityAssociationResponseTypeDef",
|
|
@@ -178,42 +182,42 @@ __all__ = (
|
|
|
178
182
|
"KubernetesNetworkConfigRequestTypeDef",
|
|
179
183
|
"KubernetesNetworkConfigResponseTypeDef",
|
|
180
184
|
"LaunchTemplateSpecificationTypeDef",
|
|
181
|
-
"
|
|
185
|
+
"ListAccessEntriesRequestPaginateTypeDef",
|
|
182
186
|
"ListAccessEntriesRequestRequestTypeDef",
|
|
183
187
|
"ListAccessEntriesResponseTypeDef",
|
|
184
|
-
"
|
|
188
|
+
"ListAccessPoliciesRequestPaginateTypeDef",
|
|
185
189
|
"ListAccessPoliciesRequestRequestTypeDef",
|
|
186
190
|
"ListAccessPoliciesResponseTypeDef",
|
|
187
|
-
"
|
|
191
|
+
"ListAddonsRequestPaginateTypeDef",
|
|
188
192
|
"ListAddonsRequestRequestTypeDef",
|
|
189
193
|
"ListAddonsResponseTypeDef",
|
|
190
|
-
"
|
|
194
|
+
"ListAssociatedAccessPoliciesRequestPaginateTypeDef",
|
|
191
195
|
"ListAssociatedAccessPoliciesRequestRequestTypeDef",
|
|
192
196
|
"ListAssociatedAccessPoliciesResponseTypeDef",
|
|
193
|
-
"
|
|
197
|
+
"ListClustersRequestPaginateTypeDef",
|
|
194
198
|
"ListClustersRequestRequestTypeDef",
|
|
195
199
|
"ListClustersResponseTypeDef",
|
|
196
|
-
"
|
|
200
|
+
"ListEksAnywhereSubscriptionsRequestPaginateTypeDef",
|
|
197
201
|
"ListEksAnywhereSubscriptionsRequestRequestTypeDef",
|
|
198
202
|
"ListEksAnywhereSubscriptionsResponseTypeDef",
|
|
199
|
-
"
|
|
203
|
+
"ListFargateProfilesRequestPaginateTypeDef",
|
|
200
204
|
"ListFargateProfilesRequestRequestTypeDef",
|
|
201
205
|
"ListFargateProfilesResponseTypeDef",
|
|
202
|
-
"
|
|
206
|
+
"ListIdentityProviderConfigsRequestPaginateTypeDef",
|
|
203
207
|
"ListIdentityProviderConfigsRequestRequestTypeDef",
|
|
204
208
|
"ListIdentityProviderConfigsResponseTypeDef",
|
|
205
|
-
"
|
|
209
|
+
"ListInsightsRequestPaginateTypeDef",
|
|
206
210
|
"ListInsightsRequestRequestTypeDef",
|
|
207
211
|
"ListInsightsResponseTypeDef",
|
|
208
|
-
"
|
|
212
|
+
"ListNodegroupsRequestPaginateTypeDef",
|
|
209
213
|
"ListNodegroupsRequestRequestTypeDef",
|
|
210
214
|
"ListNodegroupsResponseTypeDef",
|
|
211
|
-
"
|
|
215
|
+
"ListPodIdentityAssociationsRequestPaginateTypeDef",
|
|
212
216
|
"ListPodIdentityAssociationsRequestRequestTypeDef",
|
|
213
217
|
"ListPodIdentityAssociationsResponseTypeDef",
|
|
214
218
|
"ListTagsForResourceRequestRequestTypeDef",
|
|
215
219
|
"ListTagsForResourceResponseTypeDef",
|
|
216
|
-
"
|
|
220
|
+
"ListUpdatesRequestPaginateTypeDef",
|
|
217
221
|
"ListUpdatesRequestRequestTypeDef",
|
|
218
222
|
"ListUpdatesResponseTypeDef",
|
|
219
223
|
"LogSetupOutputTypeDef",
|
|
@@ -294,11 +298,11 @@ AccessEntryTypeDef = TypedDict(
|
|
|
294
298
|
{
|
|
295
299
|
"clusterName": NotRequired[str],
|
|
296
300
|
"principalArn": NotRequired[str],
|
|
297
|
-
"kubernetesGroups": NotRequired[
|
|
301
|
+
"kubernetesGroups": NotRequired[list[str]],
|
|
298
302
|
"accessEntryArn": NotRequired[str],
|
|
299
303
|
"createdAt": NotRequired[datetime],
|
|
300
304
|
"modifiedAt": NotRequired[datetime],
|
|
301
|
-
"tags": NotRequired[
|
|
305
|
+
"tags": NotRequired[dict[str, str]],
|
|
302
306
|
"username": NotRequired[str],
|
|
303
307
|
"type": NotRequired[str],
|
|
304
308
|
},
|
|
@@ -312,7 +316,7 @@ AccessScopeOutputTypeDef = TypedDict(
|
|
|
312
316
|
"AccessScopeOutputTypeDef",
|
|
313
317
|
{
|
|
314
318
|
"type": NotRequired[AccessScopeTypeType],
|
|
315
|
-
"namespaces": NotRequired[
|
|
319
|
+
"namespaces": NotRequired[list[str]],
|
|
316
320
|
},
|
|
317
321
|
)
|
|
318
322
|
AccessScopeTypeDef = TypedDict(
|
|
@@ -323,10 +327,14 @@ AccessScopeTypeDef = TypedDict(
|
|
|
323
327
|
},
|
|
324
328
|
)
|
|
325
329
|
|
|
330
|
+
class AddonCompatibilityDetailTypeDef(TypedDict):
|
|
331
|
+
name: NotRequired[str]
|
|
332
|
+
compatibleVersions: NotRequired[list[str]]
|
|
333
|
+
|
|
326
334
|
class AddonIssueTypeDef(TypedDict):
|
|
327
335
|
code: NotRequired[AddonIssueCodeType]
|
|
328
336
|
message: NotRequired[str]
|
|
329
|
-
resourceIds: NotRequired[
|
|
337
|
+
resourceIds: NotRequired[list[str]]
|
|
330
338
|
|
|
331
339
|
class MarketplaceInformationTypeDef(TypedDict):
|
|
332
340
|
productId: NotRequired[str]
|
|
@@ -338,17 +346,17 @@ class AddonPodIdentityAssociationsTypeDef(TypedDict):
|
|
|
338
346
|
|
|
339
347
|
class AddonPodIdentityConfigurationTypeDef(TypedDict):
|
|
340
348
|
serviceAccount: NotRequired[str]
|
|
341
|
-
recommendedManagedPolicies: NotRequired[
|
|
349
|
+
recommendedManagedPolicies: NotRequired[list[str]]
|
|
342
350
|
|
|
343
351
|
class CompatibilityTypeDef(TypedDict):
|
|
344
352
|
clusterVersion: NotRequired[str]
|
|
345
|
-
platformVersions: NotRequired[
|
|
353
|
+
platformVersions: NotRequired[list[str]]
|
|
346
354
|
defaultVersion: NotRequired[bool]
|
|
347
355
|
|
|
348
356
|
class ResponseMetadataTypeDef(TypedDict):
|
|
349
357
|
RequestId: str
|
|
350
358
|
HTTPStatusCode: int
|
|
351
|
-
HTTPHeaders:
|
|
359
|
+
HTTPHeaders: dict[str, str]
|
|
352
360
|
RetryAttempts: int
|
|
353
361
|
HostId: NotRequired[str]
|
|
354
362
|
|
|
@@ -379,11 +387,11 @@ class ClientStatTypeDef(TypedDict):
|
|
|
379
387
|
class ClusterIssueTypeDef(TypedDict):
|
|
380
388
|
code: NotRequired[ClusterIssueCodeType]
|
|
381
389
|
message: NotRequired[str]
|
|
382
|
-
resourceIds: NotRequired[
|
|
390
|
+
resourceIds: NotRequired[list[str]]
|
|
383
391
|
|
|
384
392
|
class ComputeConfigResponseTypeDef(TypedDict):
|
|
385
393
|
enabled: NotRequired[bool]
|
|
386
|
-
nodePools: NotRequired[
|
|
394
|
+
nodePools: NotRequired[list[str]]
|
|
387
395
|
nodeRoleArn: NotRequired[str]
|
|
388
396
|
|
|
389
397
|
class ConnectorConfigResponseTypeDef(TypedDict):
|
|
@@ -397,17 +405,28 @@ class UpgradePolicyResponseTypeDef(TypedDict):
|
|
|
397
405
|
supportType: NotRequired[SupportTypeType]
|
|
398
406
|
|
|
399
407
|
class VpcConfigResponseTypeDef(TypedDict):
|
|
400
|
-
subnetIds: NotRequired[
|
|
401
|
-
securityGroupIds: NotRequired[
|
|
408
|
+
subnetIds: NotRequired[list[str]]
|
|
409
|
+
securityGroupIds: NotRequired[list[str]]
|
|
402
410
|
clusterSecurityGroupId: NotRequired[str]
|
|
403
411
|
vpcId: NotRequired[str]
|
|
404
412
|
endpointPublicAccess: NotRequired[bool]
|
|
405
413
|
endpointPrivateAccess: NotRequired[bool]
|
|
406
|
-
publicAccessCidrs: NotRequired[
|
|
414
|
+
publicAccessCidrs: NotRequired[list[str]]
|
|
407
415
|
|
|
408
416
|
class ZonalShiftConfigResponseTypeDef(TypedDict):
|
|
409
417
|
enabled: NotRequired[bool]
|
|
410
418
|
|
|
419
|
+
class ClusterVersionInformationTypeDef(TypedDict):
|
|
420
|
+
clusterVersion: NotRequired[str]
|
|
421
|
+
clusterType: NotRequired[str]
|
|
422
|
+
defaultPlatformVersion: NotRequired[str]
|
|
423
|
+
defaultVersion: NotRequired[bool]
|
|
424
|
+
releaseDate: NotRequired[datetime]
|
|
425
|
+
endOfStandardSupportDate: NotRequired[datetime]
|
|
426
|
+
endOfExtendedSupportDate: NotRequired[datetime]
|
|
427
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
428
|
+
kubernetesPatchVersion: NotRequired[str]
|
|
429
|
+
|
|
411
430
|
class ComputeConfigRequestTypeDef(TypedDict):
|
|
412
431
|
enabled: NotRequired[bool]
|
|
413
432
|
nodePools: NotRequired[Sequence[str]]
|
|
@@ -502,7 +521,7 @@ class PodIdentityAssociationTypeDef(TypedDict):
|
|
|
502
521
|
roleArn: NotRequired[str]
|
|
503
522
|
associationArn: NotRequired[str]
|
|
504
523
|
associationId: NotRequired[str]
|
|
505
|
-
tags: NotRequired[
|
|
524
|
+
tags: NotRequired[dict[str, str]]
|
|
506
525
|
createdAt: NotRequired[datetime]
|
|
507
526
|
modifiedAt: NotRequired[datetime]
|
|
508
527
|
ownerArn: NotRequired[str]
|
|
@@ -549,14 +568,14 @@ class DescribeAddonConfigurationRequestRequestTypeDef(TypedDict):
|
|
|
549
568
|
addonName: str
|
|
550
569
|
addonVersion: str
|
|
551
570
|
|
|
552
|
-
class WaiterConfigTypeDef(TypedDict):
|
|
553
|
-
Delay: NotRequired[int]
|
|
554
|
-
MaxAttempts: NotRequired[int]
|
|
555
|
-
|
|
556
571
|
class DescribeAddonRequestRequestTypeDef(TypedDict):
|
|
557
572
|
clusterName: str
|
|
558
573
|
addonName: str
|
|
559
574
|
|
|
575
|
+
class WaiterConfigTypeDef(TypedDict):
|
|
576
|
+
Delay: NotRequired[int]
|
|
577
|
+
MaxAttempts: NotRequired[int]
|
|
578
|
+
|
|
560
579
|
class PaginatorConfigTypeDef(TypedDict):
|
|
561
580
|
MaxItems: NotRequired[int]
|
|
562
581
|
PageSize: NotRequired[int]
|
|
@@ -578,6 +597,15 @@ DescribeAddonVersionsRequestRequestTypeDef = TypedDict(
|
|
|
578
597
|
class DescribeClusterRequestRequestTypeDef(TypedDict):
|
|
579
598
|
name: str
|
|
580
599
|
|
|
600
|
+
class DescribeClusterVersionsRequestRequestTypeDef(TypedDict):
|
|
601
|
+
clusterType: NotRequired[str]
|
|
602
|
+
maxResults: NotRequired[int]
|
|
603
|
+
nextToken: NotRequired[str]
|
|
604
|
+
defaultOnly: NotRequired[bool]
|
|
605
|
+
includeAll: NotRequired[bool]
|
|
606
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
607
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
608
|
+
|
|
581
609
|
DescribeEksAnywhereSubscriptionRequestRequestTypeDef = TypedDict(
|
|
582
610
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
583
611
|
{
|
|
@@ -632,16 +660,16 @@ class ProviderTypeDef(TypedDict):
|
|
|
632
660
|
class ErrorDetailTypeDef(TypedDict):
|
|
633
661
|
errorCode: NotRequired[ErrorCodeType]
|
|
634
662
|
errorMessage: NotRequired[str]
|
|
635
|
-
resourceIds: NotRequired[
|
|
663
|
+
resourceIds: NotRequired[list[str]]
|
|
636
664
|
|
|
637
665
|
class FargateProfileIssueTypeDef(TypedDict):
|
|
638
666
|
code: NotRequired[FargateProfileIssueCodeType]
|
|
639
667
|
message: NotRequired[str]
|
|
640
|
-
resourceIds: NotRequired[
|
|
668
|
+
resourceIds: NotRequired[list[str]]
|
|
641
669
|
|
|
642
670
|
class FargateProfileSelectorOutputTypeDef(TypedDict):
|
|
643
671
|
namespace: NotRequired[str]
|
|
644
|
-
labels: NotRequired[
|
|
672
|
+
labels: NotRequired[dict[str, str]]
|
|
645
673
|
|
|
646
674
|
class FargateProfileSelectorTypeDef(TypedDict):
|
|
647
675
|
namespace: NotRequired[str]
|
|
@@ -657,8 +685,8 @@ class OidcIdentityProviderConfigTypeDef(TypedDict):
|
|
|
657
685
|
usernamePrefix: NotRequired[str]
|
|
658
686
|
groupsClaim: NotRequired[str]
|
|
659
687
|
groupsPrefix: NotRequired[str]
|
|
660
|
-
requiredClaims: NotRequired[
|
|
661
|
-
tags: NotRequired[
|
|
688
|
+
requiredClaims: NotRequired[dict[str, str]]
|
|
689
|
+
tags: NotRequired[dict[str, str]]
|
|
662
690
|
status: NotRequired[ConfigStatusType]
|
|
663
691
|
|
|
664
692
|
class OIDCTypeDef(TypedDict):
|
|
@@ -676,7 +704,7 @@ class InsightsFilterTypeDef(TypedDict):
|
|
|
676
704
|
class IssueTypeDef(TypedDict):
|
|
677
705
|
code: NotRequired[NodegroupIssueCodeType]
|
|
678
706
|
message: NotRequired[str]
|
|
679
|
-
resourceIds: NotRequired[
|
|
707
|
+
resourceIds: NotRequired[list[str]]
|
|
680
708
|
|
|
681
709
|
class ListAccessEntriesRequestRequestTypeDef(TypedDict):
|
|
682
710
|
clusterName: str
|
|
@@ -752,7 +780,7 @@ class ListUpdatesRequestRequestTypeDef(TypedDict):
|
|
|
752
780
|
LogSetupOutputTypeDef = TypedDict(
|
|
753
781
|
"LogSetupOutputTypeDef",
|
|
754
782
|
{
|
|
755
|
-
"types": NotRequired[
|
|
783
|
+
"types": NotRequired[list[LogTypeType]],
|
|
756
784
|
"enabled": NotRequired[bool],
|
|
757
785
|
},
|
|
758
786
|
)
|
|
@@ -766,13 +794,13 @@ LogSetupTypeDef = TypedDict(
|
|
|
766
794
|
|
|
767
795
|
class RemoteAccessConfigOutputTypeDef(TypedDict):
|
|
768
796
|
ec2SshKey: NotRequired[str]
|
|
769
|
-
sourceSecurityGroups: NotRequired[
|
|
797
|
+
sourceSecurityGroups: NotRequired[list[str]]
|
|
770
798
|
|
|
771
799
|
class RemoteNodeNetworkOutputTypeDef(TypedDict):
|
|
772
|
-
cidrs: NotRequired[
|
|
800
|
+
cidrs: NotRequired[list[str]]
|
|
773
801
|
|
|
774
802
|
class RemotePodNetworkOutputTypeDef(TypedDict):
|
|
775
|
-
cidrs: NotRequired[
|
|
803
|
+
cidrs: NotRequired[list[str]]
|
|
776
804
|
|
|
777
805
|
class RemoteNodeNetworkTypeDef(TypedDict):
|
|
778
806
|
cidrs: NotRequired[Sequence[str]]
|
|
@@ -843,7 +871,7 @@ class AssociateAccessPolicyRequestRequestTypeDef(TypedDict):
|
|
|
843
871
|
accessScope: AccessScopeTypeDef
|
|
844
872
|
|
|
845
873
|
class AddonHealthTypeDef(TypedDict):
|
|
846
|
-
issues: NotRequired[
|
|
874
|
+
issues: NotRequired[list[AddonIssueTypeDef]]
|
|
847
875
|
|
|
848
876
|
class CreateAddonRequestRequestTypeDef(TypedDict):
|
|
849
877
|
clusterName: str
|
|
@@ -868,9 +896,9 @@ class UpdateAddonRequestRequestTypeDef(TypedDict):
|
|
|
868
896
|
|
|
869
897
|
class AddonVersionInfoTypeDef(TypedDict):
|
|
870
898
|
addonVersion: NotRequired[str]
|
|
871
|
-
architecture: NotRequired[
|
|
872
|
-
computeTypes: NotRequired[
|
|
873
|
-
compatibilities: NotRequired[
|
|
899
|
+
architecture: NotRequired[list[str]]
|
|
900
|
+
computeTypes: NotRequired[list[str]]
|
|
901
|
+
compatibilities: NotRequired[list[CompatibilityTypeDef]]
|
|
874
902
|
requiresConfiguration: NotRequired[bool]
|
|
875
903
|
requiresIamPermissions: NotRequired[bool]
|
|
876
904
|
|
|
@@ -886,45 +914,45 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
|
|
|
886
914
|
addonName: str
|
|
887
915
|
addonVersion: str
|
|
888
916
|
configurationSchema: str
|
|
889
|
-
podIdentityConfiguration:
|
|
917
|
+
podIdentityConfiguration: list[AddonPodIdentityConfigurationTypeDef]
|
|
890
918
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
891
919
|
|
|
892
920
|
class ListAccessEntriesResponseTypeDef(TypedDict):
|
|
893
|
-
accessEntries:
|
|
921
|
+
accessEntries: list[str]
|
|
894
922
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
895
923
|
nextToken: NotRequired[str]
|
|
896
924
|
|
|
897
925
|
class ListAccessPoliciesResponseTypeDef(TypedDict):
|
|
898
|
-
accessPolicies:
|
|
926
|
+
accessPolicies: list[AccessPolicyTypeDef]
|
|
899
927
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
900
928
|
nextToken: NotRequired[str]
|
|
901
929
|
|
|
902
930
|
class ListAddonsResponseTypeDef(TypedDict):
|
|
903
|
-
addons:
|
|
931
|
+
addons: list[str]
|
|
904
932
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
905
933
|
nextToken: NotRequired[str]
|
|
906
934
|
|
|
907
935
|
class ListClustersResponseTypeDef(TypedDict):
|
|
908
|
-
clusters:
|
|
936
|
+
clusters: list[str]
|
|
909
937
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
910
938
|
nextToken: NotRequired[str]
|
|
911
939
|
|
|
912
940
|
class ListFargateProfilesResponseTypeDef(TypedDict):
|
|
913
|
-
fargateProfileNames:
|
|
941
|
+
fargateProfileNames: list[str]
|
|
914
942
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
915
943
|
nextToken: NotRequired[str]
|
|
916
944
|
|
|
917
945
|
class ListNodegroupsResponseTypeDef(TypedDict):
|
|
918
|
-
nodegroups:
|
|
946
|
+
nodegroups: list[str]
|
|
919
947
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
920
948
|
nextToken: NotRequired[str]
|
|
921
949
|
|
|
922
950
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
923
|
-
tags:
|
|
951
|
+
tags: dict[str, str]
|
|
924
952
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
925
953
|
|
|
926
954
|
class ListUpdatesResponseTypeDef(TypedDict):
|
|
927
|
-
updateIds:
|
|
955
|
+
updateIds: list[str]
|
|
928
956
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
929
957
|
nextToken: NotRequired[str]
|
|
930
958
|
|
|
@@ -939,7 +967,7 @@ class AssociateIdentityProviderConfigRequestRequestTypeDef(TypedDict):
|
|
|
939
967
|
clientRequestToken: NotRequired[str]
|
|
940
968
|
|
|
941
969
|
class NodegroupResourcesTypeDef(TypedDict):
|
|
942
|
-
autoScalingGroups: NotRequired[
|
|
970
|
+
autoScalingGroups: NotRequired[list[AutoScalingGroupTypeDef]]
|
|
943
971
|
remoteAccessSecurityGroup: NotRequired[str]
|
|
944
972
|
|
|
945
973
|
class StorageConfigRequestTypeDef(TypedDict):
|
|
@@ -953,10 +981,15 @@ class DeprecationDetailTypeDef(TypedDict):
|
|
|
953
981
|
replacedWith: NotRequired[str]
|
|
954
982
|
stopServingVersion: NotRequired[str]
|
|
955
983
|
startServingReplacementVersion: NotRequired[str]
|
|
956
|
-
clientStats: NotRequired[
|
|
984
|
+
clientStats: NotRequired[list[ClientStatTypeDef]]
|
|
957
985
|
|
|
958
986
|
class ClusterHealthTypeDef(TypedDict):
|
|
959
|
-
issues: NotRequired[
|
|
987
|
+
issues: NotRequired[list[ClusterIssueTypeDef]]
|
|
988
|
+
|
|
989
|
+
class DescribeClusterVersionsResponseTypeDef(TypedDict):
|
|
990
|
+
clusterVersions: list[ClusterVersionInformationTypeDef]
|
|
991
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
992
|
+
nextToken: NotRequired[str]
|
|
960
993
|
|
|
961
994
|
class RegisterClusterRequestRequestTypeDef(TypedDict):
|
|
962
995
|
name: str
|
|
@@ -970,7 +1003,7 @@ class OutpostConfigRequestTypeDef(TypedDict):
|
|
|
970
1003
|
controlPlanePlacement: NotRequired[ControlPlanePlacementRequestTypeDef]
|
|
971
1004
|
|
|
972
1005
|
class OutpostConfigResponseTypeDef(TypedDict):
|
|
973
|
-
outpostArns:
|
|
1006
|
+
outpostArns: list[str]
|
|
974
1007
|
controlPlaneInstanceType: str
|
|
975
1008
|
controlPlanePlacement: NotRequired[ControlPlanePlacementResponseTypeDef]
|
|
976
1009
|
|
|
@@ -996,8 +1029,8 @@ EksAnywhereSubscriptionTypeDef = TypedDict(
|
|
|
996
1029
|
"term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
|
|
997
1030
|
"status": NotRequired[str],
|
|
998
1031
|
"autoRenew": NotRequired[bool],
|
|
999
|
-
"licenseArns": NotRequired[
|
|
1000
|
-
"tags": NotRequired[
|
|
1032
|
+
"licenseArns": NotRequired[list[str]],
|
|
1033
|
+
"tags": NotRequired[dict[str, str]],
|
|
1001
1034
|
},
|
|
1002
1035
|
)
|
|
1003
1036
|
|
|
@@ -1051,46 +1084,27 @@ class UpdatePodIdentityAssociationResponseTypeDef(TypedDict):
|
|
|
1051
1084
|
association: PodIdentityAssociationTypeDef
|
|
1052
1085
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1053
1086
|
|
|
1054
|
-
class
|
|
1055
|
-
clusterName: str
|
|
1056
|
-
addonName: str
|
|
1057
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1058
|
-
|
|
1059
|
-
class DescribeAddonRequestAddonDeletedWaitTypeDef(TypedDict):
|
|
1087
|
+
class DescribeAddonRequestWaitTypeDef(TypedDict):
|
|
1060
1088
|
clusterName: str
|
|
1061
1089
|
addonName: str
|
|
1062
1090
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1063
1091
|
|
|
1064
|
-
class
|
|
1092
|
+
class DescribeClusterRequestWaitTypeDef(TypedDict):
|
|
1065
1093
|
name: str
|
|
1066
1094
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1067
1095
|
|
|
1068
|
-
class
|
|
1069
|
-
name: str
|
|
1070
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1071
|
-
|
|
1072
|
-
class DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef(TypedDict):
|
|
1073
|
-
clusterName: str
|
|
1074
|
-
fargateProfileName: str
|
|
1075
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1076
|
-
|
|
1077
|
-
class DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef(TypedDict):
|
|
1096
|
+
class DescribeFargateProfileRequestWaitTypeDef(TypedDict):
|
|
1078
1097
|
clusterName: str
|
|
1079
1098
|
fargateProfileName: str
|
|
1080
1099
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1081
1100
|
|
|
1082
|
-
class
|
|
1101
|
+
class DescribeNodegroupRequestWaitTypeDef(TypedDict):
|
|
1083
1102
|
clusterName: str
|
|
1084
1103
|
nodegroupName: str
|
|
1085
1104
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1086
1105
|
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
nodegroupName: str
|
|
1090
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1091
|
-
|
|
1092
|
-
DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef = TypedDict(
|
|
1093
|
-
"DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef",
|
|
1106
|
+
DescribeAddonVersionsRequestPaginateTypeDef = TypedDict(
|
|
1107
|
+
"DescribeAddonVersionsRequestPaginateTypeDef",
|
|
1094
1108
|
{
|
|
1095
1109
|
"kubernetesVersion": NotRequired[str],
|
|
1096
1110
|
"addonName": NotRequired[str],
|
|
@@ -1101,50 +1115,58 @@ DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef = TypedDict(
|
|
|
1101
1115
|
},
|
|
1102
1116
|
)
|
|
1103
1117
|
|
|
1104
|
-
class
|
|
1118
|
+
class DescribeClusterVersionsRequestPaginateTypeDef(TypedDict):
|
|
1119
|
+
clusterType: NotRequired[str]
|
|
1120
|
+
defaultOnly: NotRequired[bool]
|
|
1121
|
+
includeAll: NotRequired[bool]
|
|
1122
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
1123
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
1124
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1125
|
+
|
|
1126
|
+
class ListAccessEntriesRequestPaginateTypeDef(TypedDict):
|
|
1105
1127
|
clusterName: str
|
|
1106
1128
|
associatedPolicyArn: NotRequired[str]
|
|
1107
1129
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1108
1130
|
|
|
1109
|
-
class
|
|
1131
|
+
class ListAccessPoliciesRequestPaginateTypeDef(TypedDict):
|
|
1110
1132
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1111
1133
|
|
|
1112
|
-
class
|
|
1134
|
+
class ListAddonsRequestPaginateTypeDef(TypedDict):
|
|
1113
1135
|
clusterName: str
|
|
1114
1136
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1115
1137
|
|
|
1116
|
-
class
|
|
1138
|
+
class ListAssociatedAccessPoliciesRequestPaginateTypeDef(TypedDict):
|
|
1117
1139
|
clusterName: str
|
|
1118
1140
|
principalArn: str
|
|
1119
1141
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1120
1142
|
|
|
1121
|
-
class
|
|
1143
|
+
class ListClustersRequestPaginateTypeDef(TypedDict):
|
|
1122
1144
|
include: NotRequired[Sequence[str]]
|
|
1123
1145
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1124
1146
|
|
|
1125
|
-
class
|
|
1147
|
+
class ListEksAnywhereSubscriptionsRequestPaginateTypeDef(TypedDict):
|
|
1126
1148
|
includeStatus: NotRequired[Sequence[EksAnywhereSubscriptionStatusType]]
|
|
1127
1149
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1128
1150
|
|
|
1129
|
-
class
|
|
1151
|
+
class ListFargateProfilesRequestPaginateTypeDef(TypedDict):
|
|
1130
1152
|
clusterName: str
|
|
1131
1153
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1132
1154
|
|
|
1133
|
-
class
|
|
1155
|
+
class ListIdentityProviderConfigsRequestPaginateTypeDef(TypedDict):
|
|
1134
1156
|
clusterName: str
|
|
1135
1157
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1136
1158
|
|
|
1137
|
-
class
|
|
1159
|
+
class ListNodegroupsRequestPaginateTypeDef(TypedDict):
|
|
1138
1160
|
clusterName: str
|
|
1139
1161
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1140
1162
|
|
|
1141
|
-
class
|
|
1163
|
+
class ListPodIdentityAssociationsRequestPaginateTypeDef(TypedDict):
|
|
1142
1164
|
clusterName: str
|
|
1143
1165
|
namespace: NotRequired[str]
|
|
1144
1166
|
serviceAccount: NotRequired[str]
|
|
1145
1167
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1146
1168
|
|
|
1147
|
-
class
|
|
1169
|
+
class ListUpdatesRequestPaginateTypeDef(TypedDict):
|
|
1148
1170
|
name: str
|
|
1149
1171
|
nodegroupName: NotRequired[str]
|
|
1150
1172
|
addonName: NotRequired[str]
|
|
@@ -1160,7 +1182,7 @@ class DisassociateIdentityProviderConfigRequestRequestTypeDef(TypedDict):
|
|
|
1160
1182
|
clientRequestToken: NotRequired[str]
|
|
1161
1183
|
|
|
1162
1184
|
class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
|
|
1163
|
-
identityProviderConfigs:
|
|
1185
|
+
identityProviderConfigs: list[IdentityProviderConfigTypeDef]
|
|
1164
1186
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1165
1187
|
nextToken: NotRequired[str]
|
|
1166
1188
|
|
|
@@ -1176,7 +1198,7 @@ class KubernetesNetworkConfigResponseTypeDef(TypedDict):
|
|
|
1176
1198
|
elasticLoadBalancing: NotRequired[ElasticLoadBalancingTypeDef]
|
|
1177
1199
|
|
|
1178
1200
|
class EncryptionConfigOutputTypeDef(TypedDict):
|
|
1179
|
-
resources: NotRequired[
|
|
1201
|
+
resources: NotRequired[list[str]]
|
|
1180
1202
|
provider: NotRequired[ProviderTypeDef]
|
|
1181
1203
|
|
|
1182
1204
|
class EncryptionConfigTypeDef(TypedDict):
|
|
@@ -1184,7 +1206,7 @@ class EncryptionConfigTypeDef(TypedDict):
|
|
|
1184
1206
|
provider: NotRequired[ProviderTypeDef]
|
|
1185
1207
|
|
|
1186
1208
|
class FargateProfileHealthTypeDef(TypedDict):
|
|
1187
|
-
issues: NotRequired[
|
|
1209
|
+
issues: NotRequired[list[FargateProfileIssueTypeDef]]
|
|
1188
1210
|
|
|
1189
1211
|
FargateProfileSelectorUnionTypeDef = Union[
|
|
1190
1212
|
FargateProfileSelectorTypeDef, FargateProfileSelectorOutputTypeDef
|
|
@@ -1214,8 +1236,8 @@ InsightSummaryTypeDef = TypedDict(
|
|
|
1214
1236
|
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1215
1237
|
},
|
|
1216
1238
|
)
|
|
1217
|
-
|
|
1218
|
-
"
|
|
1239
|
+
ListInsightsRequestPaginateTypeDef = TypedDict(
|
|
1240
|
+
"ListInsightsRequestPaginateTypeDef",
|
|
1219
1241
|
{
|
|
1220
1242
|
"clusterName": str,
|
|
1221
1243
|
"filter": NotRequired[InsightsFilterTypeDef],
|
|
@@ -1233,21 +1255,21 @@ ListInsightsRequestRequestTypeDef = TypedDict(
|
|
|
1233
1255
|
)
|
|
1234
1256
|
|
|
1235
1257
|
class NodegroupHealthTypeDef(TypedDict):
|
|
1236
|
-
issues: NotRequired[
|
|
1258
|
+
issues: NotRequired[list[IssueTypeDef]]
|
|
1237
1259
|
|
|
1238
1260
|
class ListPodIdentityAssociationsResponseTypeDef(TypedDict):
|
|
1239
|
-
associations:
|
|
1261
|
+
associations: list[PodIdentityAssociationSummaryTypeDef]
|
|
1240
1262
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1241
1263
|
nextToken: NotRequired[str]
|
|
1242
1264
|
|
|
1243
1265
|
class LoggingOutputTypeDef(TypedDict):
|
|
1244
|
-
clusterLogging: NotRequired[
|
|
1266
|
+
clusterLogging: NotRequired[list[LogSetupOutputTypeDef]]
|
|
1245
1267
|
|
|
1246
1268
|
LogSetupUnionTypeDef = Union[LogSetupTypeDef, LogSetupOutputTypeDef]
|
|
1247
1269
|
|
|
1248
1270
|
class RemoteNetworkConfigResponseTypeDef(TypedDict):
|
|
1249
|
-
remoteNodeNetworks: NotRequired[
|
|
1250
|
-
remotePodNetworks: NotRequired[
|
|
1271
|
+
remoteNodeNetworks: NotRequired[list[RemoteNodeNetworkOutputTypeDef]]
|
|
1272
|
+
remotePodNetworks: NotRequired[list[RemotePodNetworkOutputTypeDef]]
|
|
1251
1273
|
|
|
1252
1274
|
RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
|
|
1253
1275
|
RemotePodNetworkUnionTypeDef = Union[RemotePodNetworkTypeDef, RemotePodNetworkOutputTypeDef]
|
|
@@ -1257,9 +1279,9 @@ UpdateTypeDef = TypedDict(
|
|
|
1257
1279
|
"id": NotRequired[str],
|
|
1258
1280
|
"status": NotRequired[UpdateStatusType],
|
|
1259
1281
|
"type": NotRequired[UpdateTypeType],
|
|
1260
|
-
"params": NotRequired[
|
|
1282
|
+
"params": NotRequired[list[UpdateParamTypeDef]],
|
|
1261
1283
|
"createdAt": NotRequired[datetime],
|
|
1262
|
-
"errors": NotRequired[
|
|
1284
|
+
"errors": NotRequired[list[ErrorDetailTypeDef]],
|
|
1263
1285
|
},
|
|
1264
1286
|
)
|
|
1265
1287
|
|
|
@@ -1272,7 +1294,7 @@ class AssociateAccessPolicyResponseTypeDef(TypedDict):
|
|
|
1272
1294
|
class ListAssociatedAccessPoliciesResponseTypeDef(TypedDict):
|
|
1273
1295
|
clusterName: str
|
|
1274
1296
|
principalArn: str
|
|
1275
|
-
associatedAccessPolicies:
|
|
1297
|
+
associatedAccessPolicies: list[AssociatedAccessPolicyTypeDef]
|
|
1276
1298
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1277
1299
|
nextToken: NotRequired[str]
|
|
1278
1300
|
|
|
@@ -1286,19 +1308,19 @@ class AddonTypeDef(TypedDict):
|
|
|
1286
1308
|
createdAt: NotRequired[datetime]
|
|
1287
1309
|
modifiedAt: NotRequired[datetime]
|
|
1288
1310
|
serviceAccountRoleArn: NotRequired[str]
|
|
1289
|
-
tags: NotRequired[
|
|
1311
|
+
tags: NotRequired[dict[str, str]]
|
|
1290
1312
|
publisher: NotRequired[str]
|
|
1291
1313
|
owner: NotRequired[str]
|
|
1292
1314
|
marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
|
|
1293
1315
|
configurationValues: NotRequired[str]
|
|
1294
|
-
podIdentityAssociations: NotRequired[
|
|
1316
|
+
podIdentityAssociations: NotRequired[list[str]]
|
|
1295
1317
|
|
|
1296
1318
|
AddonInfoTypeDef = TypedDict(
|
|
1297
1319
|
"AddonInfoTypeDef",
|
|
1298
1320
|
{
|
|
1299
1321
|
"addonName": NotRequired[str],
|
|
1300
1322
|
"type": NotRequired[str],
|
|
1301
|
-
"addonVersions": NotRequired[
|
|
1323
|
+
"addonVersions": NotRequired[list[AddonVersionInfoTypeDef]],
|
|
1302
1324
|
"publisher": NotRequired[str],
|
|
1303
1325
|
"owner": NotRequired[str],
|
|
1304
1326
|
"marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
|
|
@@ -1306,7 +1328,8 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1306
1328
|
)
|
|
1307
1329
|
|
|
1308
1330
|
class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
1309
|
-
deprecationDetails: NotRequired[
|
|
1331
|
+
deprecationDetails: NotRequired[list[DeprecationDetailTypeDef]]
|
|
1332
|
+
addonCompatibilityDetails: NotRequired[list[AddonCompatibilityDetailTypeDef]]
|
|
1310
1333
|
|
|
1311
1334
|
class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
1312
1335
|
subscription: EksAnywhereSubscriptionTypeDef
|
|
@@ -1321,7 +1344,7 @@ class DescribeEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
|
1321
1344
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1322
1345
|
|
|
1323
1346
|
class ListEksAnywhereSubscriptionsResponseTypeDef(TypedDict):
|
|
1324
|
-
subscriptions:
|
|
1347
|
+
subscriptions: list[EksAnywhereSubscriptionTypeDef]
|
|
1325
1348
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1326
1349
|
nextToken: NotRequired[str]
|
|
1327
1350
|
|
|
@@ -1347,10 +1370,10 @@ class FargateProfileTypeDef(TypedDict):
|
|
|
1347
1370
|
clusterName: NotRequired[str]
|
|
1348
1371
|
createdAt: NotRequired[datetime]
|
|
1349
1372
|
podExecutionRoleArn: NotRequired[str]
|
|
1350
|
-
subnets: NotRequired[
|
|
1351
|
-
selectors: NotRequired[
|
|
1373
|
+
subnets: NotRequired[list[str]]
|
|
1374
|
+
selectors: NotRequired[list[FargateProfileSelectorOutputTypeDef]]
|
|
1352
1375
|
status: NotRequired[FargateProfileStatusType]
|
|
1353
|
-
tags: NotRequired[
|
|
1376
|
+
tags: NotRequired[dict[str, str]]
|
|
1354
1377
|
health: NotRequired[FargateProfileHealthTypeDef]
|
|
1355
1378
|
|
|
1356
1379
|
class CreateFargateProfileRequestRequestTypeDef(TypedDict):
|
|
@@ -1367,7 +1390,7 @@ class DescribeIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
|
1367
1390
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1368
1391
|
|
|
1369
1392
|
class ListInsightsResponseTypeDef(TypedDict):
|
|
1370
|
-
insights:
|
|
1393
|
+
insights: list[InsightSummaryTypeDef]
|
|
1371
1394
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1372
1395
|
nextToken: NotRequired[str]
|
|
1373
1396
|
|
|
@@ -1382,20 +1405,20 @@ class NodegroupTypeDef(TypedDict):
|
|
|
1382
1405
|
status: NotRequired[NodegroupStatusType]
|
|
1383
1406
|
capacityType: NotRequired[CapacityTypesType]
|
|
1384
1407
|
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1385
|
-
instanceTypes: NotRequired[
|
|
1386
|
-
subnets: NotRequired[
|
|
1408
|
+
instanceTypes: NotRequired[list[str]]
|
|
1409
|
+
subnets: NotRequired[list[str]]
|
|
1387
1410
|
remoteAccess: NotRequired[RemoteAccessConfigOutputTypeDef]
|
|
1388
1411
|
amiType: NotRequired[AMITypesType]
|
|
1389
1412
|
nodeRole: NotRequired[str]
|
|
1390
|
-
labels: NotRequired[
|
|
1391
|
-
taints: NotRequired[
|
|
1413
|
+
labels: NotRequired[dict[str, str]]
|
|
1414
|
+
taints: NotRequired[list[TaintTypeDef]]
|
|
1392
1415
|
resources: NotRequired[NodegroupResourcesTypeDef]
|
|
1393
1416
|
diskSize: NotRequired[int]
|
|
1394
1417
|
health: NotRequired[NodegroupHealthTypeDef]
|
|
1395
1418
|
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1396
1419
|
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1397
1420
|
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1398
|
-
tags: NotRequired[
|
|
1421
|
+
tags: NotRequired[dict[str, str]]
|
|
1399
1422
|
|
|
1400
1423
|
class LoggingTypeDef(TypedDict):
|
|
1401
1424
|
clusterLogging: NotRequired[Sequence[LogSetupUnionTypeDef]]
|
|
@@ -1417,8 +1440,8 @@ ClusterTypeDef = TypedDict(
|
|
|
1417
1440
|
"certificateAuthority": NotRequired[CertificateTypeDef],
|
|
1418
1441
|
"clientRequestToken": NotRequired[str],
|
|
1419
1442
|
"platformVersion": NotRequired[str],
|
|
1420
|
-
"tags": NotRequired[
|
|
1421
|
-
"encryptionConfig": NotRequired[
|
|
1443
|
+
"tags": NotRequired[dict[str, str]],
|
|
1444
|
+
"encryptionConfig": NotRequired[list[EncryptionConfigOutputTypeDef]],
|
|
1422
1445
|
"connectorConfig": NotRequired[ConnectorConfigResponseTypeDef],
|
|
1423
1446
|
"id": NotRequired[str],
|
|
1424
1447
|
"health": NotRequired[ClusterHealthTypeDef],
|
|
@@ -1442,7 +1465,7 @@ class AssociateEncryptionConfigResponseTypeDef(TypedDict):
|
|
|
1442
1465
|
|
|
1443
1466
|
class AssociateIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
1444
1467
|
update: UpdateTypeDef
|
|
1445
|
-
tags:
|
|
1468
|
+
tags: dict[str, str]
|
|
1446
1469
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1447
1470
|
|
|
1448
1471
|
class DescribeUpdateResponseTypeDef(TypedDict):
|
|
@@ -1486,7 +1509,7 @@ class DescribeAddonResponseTypeDef(TypedDict):
|
|
|
1486
1509
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1487
1510
|
|
|
1488
1511
|
class DescribeAddonVersionsResponseTypeDef(TypedDict):
|
|
1489
|
-
addons:
|
|
1512
|
+
addons: list[AddonInfoTypeDef]
|
|
1490
1513
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1491
1514
|
nextToken: NotRequired[str]
|
|
1492
1515
|
|
|
@@ -1502,8 +1525,8 @@ InsightTypeDef = TypedDict(
|
|
|
1502
1525
|
"description": NotRequired[str],
|
|
1503
1526
|
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1504
1527
|
"recommendation": NotRequired[str],
|
|
1505
|
-
"additionalInfo": NotRequired[
|
|
1506
|
-
"resources": NotRequired[
|
|
1528
|
+
"additionalInfo": NotRequired[dict[str, str]],
|
|
1529
|
+
"resources": NotRequired[list[InsightResourceDetailTypeDef]],
|
|
1507
1530
|
"categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
|
|
1508
1531
|
},
|
|
1509
1532
|
)
|