mypy-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.
- mypy_boto3_eks/__init__.py +4 -0
- mypy_boto3_eks/__init__.pyi +4 -0
- mypy_boto3_eks/__main__.py +8 -7
- mypy_boto3_eks/client.py +114 -78
- mypy_boto3_eks/client.pyi +114 -77
- mypy_boto3_eks/literals.py +7 -1
- mypy_boto3_eks/literals.pyi +7 -1
- mypy_boto3_eks/paginator.py +179 -87
- mypy_boto3_eks/paginator.pyi +164 -86
- mypy_boto3_eks/type_defs.py +167 -143
- mypy_boto3_eks/type_defs.pyi +161 -138
- mypy_boto3_eks/version.py +1 -1
- mypy_boto3_eks/waiter.py +29 -19
- mypy_boto3_eks/waiter.pyi +29 -19
- {mypy_boto3_eks-1.35.81.dist-info → mypy_boto3_eks-1.35.87.dist-info}/METADATA +10 -6
- mypy_boto3_eks-1.35.87.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.35.81.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.81.dist-info → mypy_boto3_eks-1.35.87.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.35.81.dist-info → mypy_boto3_eks-1.35.87.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.35.81.dist-info → mypy_boto3_eks-1.35.87.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/type_defs.py
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/boto3_stubs_docs/mypy_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,
|
|
@@ -58,6 +61,7 @@ __all__ = (
|
|
|
58
61
|
"AccessPolicyTypeDef",
|
|
59
62
|
"AccessScopeOutputTypeDef",
|
|
60
63
|
"AccessScopeTypeDef",
|
|
64
|
+
"AddonCompatibilityDetailTypeDef",
|
|
61
65
|
"AddonHealthTypeDef",
|
|
62
66
|
"AddonInfoTypeDef",
|
|
63
67
|
"AddonIssueTypeDef",
|
|
@@ -79,6 +83,7 @@ __all__ = (
|
|
|
79
83
|
"ClusterHealthTypeDef",
|
|
80
84
|
"ClusterIssueTypeDef",
|
|
81
85
|
"ClusterTypeDef",
|
|
86
|
+
"ClusterVersionInformationTypeDef",
|
|
82
87
|
"CompatibilityTypeDef",
|
|
83
88
|
"ComputeConfigRequestTypeDef",
|
|
84
89
|
"ComputeConfigResponseTypeDef",
|
|
@@ -121,30 +126,29 @@ __all__ = (
|
|
|
121
126
|
"DescribeAccessEntryResponseTypeDef",
|
|
122
127
|
"DescribeAddonConfigurationRequestRequestTypeDef",
|
|
123
128
|
"DescribeAddonConfigurationResponseTypeDef",
|
|
124
|
-
"DescribeAddonRequestAddonActiveWaitTypeDef",
|
|
125
|
-
"DescribeAddonRequestAddonDeletedWaitTypeDef",
|
|
126
129
|
"DescribeAddonRequestRequestTypeDef",
|
|
130
|
+
"DescribeAddonRequestWaitTypeDef",
|
|
127
131
|
"DescribeAddonResponseTypeDef",
|
|
128
|
-
"
|
|
132
|
+
"DescribeAddonVersionsRequestPaginateTypeDef",
|
|
129
133
|
"DescribeAddonVersionsRequestRequestTypeDef",
|
|
130
134
|
"DescribeAddonVersionsResponseTypeDef",
|
|
131
|
-
"DescribeClusterRequestClusterActiveWaitTypeDef",
|
|
132
|
-
"DescribeClusterRequestClusterDeletedWaitTypeDef",
|
|
133
135
|
"DescribeClusterRequestRequestTypeDef",
|
|
136
|
+
"DescribeClusterRequestWaitTypeDef",
|
|
134
137
|
"DescribeClusterResponseTypeDef",
|
|
138
|
+
"DescribeClusterVersionsRequestPaginateTypeDef",
|
|
139
|
+
"DescribeClusterVersionsRequestRequestTypeDef",
|
|
140
|
+
"DescribeClusterVersionsResponseTypeDef",
|
|
135
141
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
136
142
|
"DescribeEksAnywhereSubscriptionResponseTypeDef",
|
|
137
|
-
"DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef",
|
|
138
|
-
"DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef",
|
|
139
143
|
"DescribeFargateProfileRequestRequestTypeDef",
|
|
144
|
+
"DescribeFargateProfileRequestWaitTypeDef",
|
|
140
145
|
"DescribeFargateProfileResponseTypeDef",
|
|
141
146
|
"DescribeIdentityProviderConfigRequestRequestTypeDef",
|
|
142
147
|
"DescribeIdentityProviderConfigResponseTypeDef",
|
|
143
148
|
"DescribeInsightRequestRequestTypeDef",
|
|
144
149
|
"DescribeInsightResponseTypeDef",
|
|
145
|
-
"DescribeNodegroupRequestNodegroupActiveWaitTypeDef",
|
|
146
|
-
"DescribeNodegroupRequestNodegroupDeletedWaitTypeDef",
|
|
147
150
|
"DescribeNodegroupRequestRequestTypeDef",
|
|
151
|
+
"DescribeNodegroupRequestWaitTypeDef",
|
|
148
152
|
"DescribeNodegroupResponseTypeDef",
|
|
149
153
|
"DescribePodIdentityAssociationRequestRequestTypeDef",
|
|
150
154
|
"DescribePodIdentityAssociationResponseTypeDef",
|
|
@@ -179,42 +183,42 @@ __all__ = (
|
|
|
179
183
|
"KubernetesNetworkConfigRequestTypeDef",
|
|
180
184
|
"KubernetesNetworkConfigResponseTypeDef",
|
|
181
185
|
"LaunchTemplateSpecificationTypeDef",
|
|
182
|
-
"
|
|
186
|
+
"ListAccessEntriesRequestPaginateTypeDef",
|
|
183
187
|
"ListAccessEntriesRequestRequestTypeDef",
|
|
184
188
|
"ListAccessEntriesResponseTypeDef",
|
|
185
|
-
"
|
|
189
|
+
"ListAccessPoliciesRequestPaginateTypeDef",
|
|
186
190
|
"ListAccessPoliciesRequestRequestTypeDef",
|
|
187
191
|
"ListAccessPoliciesResponseTypeDef",
|
|
188
|
-
"
|
|
192
|
+
"ListAddonsRequestPaginateTypeDef",
|
|
189
193
|
"ListAddonsRequestRequestTypeDef",
|
|
190
194
|
"ListAddonsResponseTypeDef",
|
|
191
|
-
"
|
|
195
|
+
"ListAssociatedAccessPoliciesRequestPaginateTypeDef",
|
|
192
196
|
"ListAssociatedAccessPoliciesRequestRequestTypeDef",
|
|
193
197
|
"ListAssociatedAccessPoliciesResponseTypeDef",
|
|
194
|
-
"
|
|
198
|
+
"ListClustersRequestPaginateTypeDef",
|
|
195
199
|
"ListClustersRequestRequestTypeDef",
|
|
196
200
|
"ListClustersResponseTypeDef",
|
|
197
|
-
"
|
|
201
|
+
"ListEksAnywhereSubscriptionsRequestPaginateTypeDef",
|
|
198
202
|
"ListEksAnywhereSubscriptionsRequestRequestTypeDef",
|
|
199
203
|
"ListEksAnywhereSubscriptionsResponseTypeDef",
|
|
200
|
-
"
|
|
204
|
+
"ListFargateProfilesRequestPaginateTypeDef",
|
|
201
205
|
"ListFargateProfilesRequestRequestTypeDef",
|
|
202
206
|
"ListFargateProfilesResponseTypeDef",
|
|
203
|
-
"
|
|
207
|
+
"ListIdentityProviderConfigsRequestPaginateTypeDef",
|
|
204
208
|
"ListIdentityProviderConfigsRequestRequestTypeDef",
|
|
205
209
|
"ListIdentityProviderConfigsResponseTypeDef",
|
|
206
|
-
"
|
|
210
|
+
"ListInsightsRequestPaginateTypeDef",
|
|
207
211
|
"ListInsightsRequestRequestTypeDef",
|
|
208
212
|
"ListInsightsResponseTypeDef",
|
|
209
|
-
"
|
|
213
|
+
"ListNodegroupsRequestPaginateTypeDef",
|
|
210
214
|
"ListNodegroupsRequestRequestTypeDef",
|
|
211
215
|
"ListNodegroupsResponseTypeDef",
|
|
212
|
-
"
|
|
216
|
+
"ListPodIdentityAssociationsRequestPaginateTypeDef",
|
|
213
217
|
"ListPodIdentityAssociationsRequestRequestTypeDef",
|
|
214
218
|
"ListPodIdentityAssociationsResponseTypeDef",
|
|
215
219
|
"ListTagsForResourceRequestRequestTypeDef",
|
|
216
220
|
"ListTagsForResourceResponseTypeDef",
|
|
217
|
-
"
|
|
221
|
+
"ListUpdatesRequestPaginateTypeDef",
|
|
218
222
|
"ListUpdatesRequestRequestTypeDef",
|
|
219
223
|
"ListUpdatesResponseTypeDef",
|
|
220
224
|
"LogSetupOutputTypeDef",
|
|
@@ -297,11 +301,11 @@ AccessEntryTypeDef = TypedDict(
|
|
|
297
301
|
{
|
|
298
302
|
"clusterName": NotRequired[str],
|
|
299
303
|
"principalArn": NotRequired[str],
|
|
300
|
-
"kubernetesGroups": NotRequired[
|
|
304
|
+
"kubernetesGroups": NotRequired[list[str]],
|
|
301
305
|
"accessEntryArn": NotRequired[str],
|
|
302
306
|
"createdAt": NotRequired[datetime],
|
|
303
307
|
"modifiedAt": NotRequired[datetime],
|
|
304
|
-
"tags": NotRequired[
|
|
308
|
+
"tags": NotRequired[dict[str, str]],
|
|
305
309
|
"username": NotRequired[str],
|
|
306
310
|
"type": NotRequired[str],
|
|
307
311
|
},
|
|
@@ -317,7 +321,7 @@ AccessScopeOutputTypeDef = TypedDict(
|
|
|
317
321
|
"AccessScopeOutputTypeDef",
|
|
318
322
|
{
|
|
319
323
|
"type": NotRequired[AccessScopeTypeType],
|
|
320
|
-
"namespaces": NotRequired[
|
|
324
|
+
"namespaces": NotRequired[list[str]],
|
|
321
325
|
},
|
|
322
326
|
)
|
|
323
327
|
AccessScopeTypeDef = TypedDict(
|
|
@@ -329,10 +333,15 @@ AccessScopeTypeDef = TypedDict(
|
|
|
329
333
|
)
|
|
330
334
|
|
|
331
335
|
|
|
336
|
+
class AddonCompatibilityDetailTypeDef(TypedDict):
|
|
337
|
+
name: NotRequired[str]
|
|
338
|
+
compatibleVersions: NotRequired[list[str]]
|
|
339
|
+
|
|
340
|
+
|
|
332
341
|
class AddonIssueTypeDef(TypedDict):
|
|
333
342
|
code: NotRequired[AddonIssueCodeType]
|
|
334
343
|
message: NotRequired[str]
|
|
335
|
-
resourceIds: NotRequired[
|
|
344
|
+
resourceIds: NotRequired[list[str]]
|
|
336
345
|
|
|
337
346
|
|
|
338
347
|
class MarketplaceInformationTypeDef(TypedDict):
|
|
@@ -347,19 +356,19 @@ class AddonPodIdentityAssociationsTypeDef(TypedDict):
|
|
|
347
356
|
|
|
348
357
|
class AddonPodIdentityConfigurationTypeDef(TypedDict):
|
|
349
358
|
serviceAccount: NotRequired[str]
|
|
350
|
-
recommendedManagedPolicies: NotRequired[
|
|
359
|
+
recommendedManagedPolicies: NotRequired[list[str]]
|
|
351
360
|
|
|
352
361
|
|
|
353
362
|
class CompatibilityTypeDef(TypedDict):
|
|
354
363
|
clusterVersion: NotRequired[str]
|
|
355
|
-
platformVersions: NotRequired[
|
|
364
|
+
platformVersions: NotRequired[list[str]]
|
|
356
365
|
defaultVersion: NotRequired[bool]
|
|
357
366
|
|
|
358
367
|
|
|
359
368
|
class ResponseMetadataTypeDef(TypedDict):
|
|
360
369
|
RequestId: str
|
|
361
370
|
HTTPStatusCode: int
|
|
362
|
-
HTTPHeaders:
|
|
371
|
+
HTTPHeaders: dict[str, str]
|
|
363
372
|
RetryAttempts: int
|
|
364
373
|
HostId: NotRequired[str]
|
|
365
374
|
|
|
@@ -396,12 +405,12 @@ class ClientStatTypeDef(TypedDict):
|
|
|
396
405
|
class ClusterIssueTypeDef(TypedDict):
|
|
397
406
|
code: NotRequired[ClusterIssueCodeType]
|
|
398
407
|
message: NotRequired[str]
|
|
399
|
-
resourceIds: NotRequired[
|
|
408
|
+
resourceIds: NotRequired[list[str]]
|
|
400
409
|
|
|
401
410
|
|
|
402
411
|
class ComputeConfigResponseTypeDef(TypedDict):
|
|
403
412
|
enabled: NotRequired[bool]
|
|
404
|
-
nodePools: NotRequired[
|
|
413
|
+
nodePools: NotRequired[list[str]]
|
|
405
414
|
nodeRoleArn: NotRequired[str]
|
|
406
415
|
|
|
407
416
|
|
|
@@ -418,19 +427,31 @@ class UpgradePolicyResponseTypeDef(TypedDict):
|
|
|
418
427
|
|
|
419
428
|
|
|
420
429
|
class VpcConfigResponseTypeDef(TypedDict):
|
|
421
|
-
subnetIds: NotRequired[
|
|
422
|
-
securityGroupIds: NotRequired[
|
|
430
|
+
subnetIds: NotRequired[list[str]]
|
|
431
|
+
securityGroupIds: NotRequired[list[str]]
|
|
423
432
|
clusterSecurityGroupId: NotRequired[str]
|
|
424
433
|
vpcId: NotRequired[str]
|
|
425
434
|
endpointPublicAccess: NotRequired[bool]
|
|
426
435
|
endpointPrivateAccess: NotRequired[bool]
|
|
427
|
-
publicAccessCidrs: NotRequired[
|
|
436
|
+
publicAccessCidrs: NotRequired[list[str]]
|
|
428
437
|
|
|
429
438
|
|
|
430
439
|
class ZonalShiftConfigResponseTypeDef(TypedDict):
|
|
431
440
|
enabled: NotRequired[bool]
|
|
432
441
|
|
|
433
442
|
|
|
443
|
+
class ClusterVersionInformationTypeDef(TypedDict):
|
|
444
|
+
clusterVersion: NotRequired[str]
|
|
445
|
+
clusterType: NotRequired[str]
|
|
446
|
+
defaultPlatformVersion: NotRequired[str]
|
|
447
|
+
defaultVersion: NotRequired[bool]
|
|
448
|
+
releaseDate: NotRequired[datetime]
|
|
449
|
+
endOfStandardSupportDate: NotRequired[datetime]
|
|
450
|
+
endOfExtendedSupportDate: NotRequired[datetime]
|
|
451
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
452
|
+
kubernetesPatchVersion: NotRequired[str]
|
|
453
|
+
|
|
454
|
+
|
|
434
455
|
class ComputeConfigRequestTypeDef(TypedDict):
|
|
435
456
|
enabled: NotRequired[bool]
|
|
436
457
|
nodePools: NotRequired[Sequence[str]]
|
|
@@ -542,7 +563,7 @@ class PodIdentityAssociationTypeDef(TypedDict):
|
|
|
542
563
|
roleArn: NotRequired[str]
|
|
543
564
|
associationArn: NotRequired[str]
|
|
544
565
|
associationId: NotRequired[str]
|
|
545
|
-
tags: NotRequired[
|
|
566
|
+
tags: NotRequired[dict[str, str]]
|
|
546
567
|
createdAt: NotRequired[datetime]
|
|
547
568
|
modifiedAt: NotRequired[datetime]
|
|
548
569
|
ownerArn: NotRequired[str]
|
|
@@ -600,16 +621,16 @@ class DescribeAddonConfigurationRequestRequestTypeDef(TypedDict):
|
|
|
600
621
|
addonVersion: str
|
|
601
622
|
|
|
602
623
|
|
|
603
|
-
class WaiterConfigTypeDef(TypedDict):
|
|
604
|
-
Delay: NotRequired[int]
|
|
605
|
-
MaxAttempts: NotRequired[int]
|
|
606
|
-
|
|
607
|
-
|
|
608
624
|
class DescribeAddonRequestRequestTypeDef(TypedDict):
|
|
609
625
|
clusterName: str
|
|
610
626
|
addonName: str
|
|
611
627
|
|
|
612
628
|
|
|
629
|
+
class WaiterConfigTypeDef(TypedDict):
|
|
630
|
+
Delay: NotRequired[int]
|
|
631
|
+
MaxAttempts: NotRequired[int]
|
|
632
|
+
|
|
633
|
+
|
|
613
634
|
class PaginatorConfigTypeDef(TypedDict):
|
|
614
635
|
MaxItems: NotRequired[int]
|
|
615
636
|
PageSize: NotRequired[int]
|
|
@@ -634,6 +655,16 @@ class DescribeClusterRequestRequestTypeDef(TypedDict):
|
|
|
634
655
|
name: str
|
|
635
656
|
|
|
636
657
|
|
|
658
|
+
class DescribeClusterVersionsRequestRequestTypeDef(TypedDict):
|
|
659
|
+
clusterType: NotRequired[str]
|
|
660
|
+
maxResults: NotRequired[int]
|
|
661
|
+
nextToken: NotRequired[str]
|
|
662
|
+
defaultOnly: NotRequired[bool]
|
|
663
|
+
includeAll: NotRequired[bool]
|
|
664
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
665
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
666
|
+
|
|
667
|
+
|
|
637
668
|
DescribeEksAnywhereSubscriptionRequestRequestTypeDef = TypedDict(
|
|
638
669
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
639
670
|
{
|
|
@@ -697,18 +728,18 @@ class ProviderTypeDef(TypedDict):
|
|
|
697
728
|
class ErrorDetailTypeDef(TypedDict):
|
|
698
729
|
errorCode: NotRequired[ErrorCodeType]
|
|
699
730
|
errorMessage: NotRequired[str]
|
|
700
|
-
resourceIds: NotRequired[
|
|
731
|
+
resourceIds: NotRequired[list[str]]
|
|
701
732
|
|
|
702
733
|
|
|
703
734
|
class FargateProfileIssueTypeDef(TypedDict):
|
|
704
735
|
code: NotRequired[FargateProfileIssueCodeType]
|
|
705
736
|
message: NotRequired[str]
|
|
706
|
-
resourceIds: NotRequired[
|
|
737
|
+
resourceIds: NotRequired[list[str]]
|
|
707
738
|
|
|
708
739
|
|
|
709
740
|
class FargateProfileSelectorOutputTypeDef(TypedDict):
|
|
710
741
|
namespace: NotRequired[str]
|
|
711
|
-
labels: NotRequired[
|
|
742
|
+
labels: NotRequired[dict[str, str]]
|
|
712
743
|
|
|
713
744
|
|
|
714
745
|
class FargateProfileSelectorTypeDef(TypedDict):
|
|
@@ -726,8 +757,8 @@ class OidcIdentityProviderConfigTypeDef(TypedDict):
|
|
|
726
757
|
usernamePrefix: NotRequired[str]
|
|
727
758
|
groupsClaim: NotRequired[str]
|
|
728
759
|
groupsPrefix: NotRequired[str]
|
|
729
|
-
requiredClaims: NotRequired[
|
|
730
|
-
tags: NotRequired[
|
|
760
|
+
requiredClaims: NotRequired[dict[str, str]]
|
|
761
|
+
tags: NotRequired[dict[str, str]]
|
|
731
762
|
status: NotRequired[ConfigStatusType]
|
|
732
763
|
|
|
733
764
|
|
|
@@ -749,7 +780,7 @@ class InsightsFilterTypeDef(TypedDict):
|
|
|
749
780
|
class IssueTypeDef(TypedDict):
|
|
750
781
|
code: NotRequired[NodegroupIssueCodeType]
|
|
751
782
|
message: NotRequired[str]
|
|
752
|
-
resourceIds: NotRequired[
|
|
783
|
+
resourceIds: NotRequired[list[str]]
|
|
753
784
|
|
|
754
785
|
|
|
755
786
|
class ListAccessEntriesRequestRequestTypeDef(TypedDict):
|
|
@@ -839,7 +870,7 @@ class ListUpdatesRequestRequestTypeDef(TypedDict):
|
|
|
839
870
|
LogSetupOutputTypeDef = TypedDict(
|
|
840
871
|
"LogSetupOutputTypeDef",
|
|
841
872
|
{
|
|
842
|
-
"types": NotRequired[
|
|
873
|
+
"types": NotRequired[list[LogTypeType]],
|
|
843
874
|
"enabled": NotRequired[bool],
|
|
844
875
|
},
|
|
845
876
|
)
|
|
@@ -854,15 +885,15 @@ LogSetupTypeDef = TypedDict(
|
|
|
854
885
|
|
|
855
886
|
class RemoteAccessConfigOutputTypeDef(TypedDict):
|
|
856
887
|
ec2SshKey: NotRequired[str]
|
|
857
|
-
sourceSecurityGroups: NotRequired[
|
|
888
|
+
sourceSecurityGroups: NotRequired[list[str]]
|
|
858
889
|
|
|
859
890
|
|
|
860
891
|
class RemoteNodeNetworkOutputTypeDef(TypedDict):
|
|
861
|
-
cidrs: NotRequired[
|
|
892
|
+
cidrs: NotRequired[list[str]]
|
|
862
893
|
|
|
863
894
|
|
|
864
895
|
class RemotePodNetworkOutputTypeDef(TypedDict):
|
|
865
|
-
cidrs: NotRequired[
|
|
896
|
+
cidrs: NotRequired[list[str]]
|
|
866
897
|
|
|
867
898
|
|
|
868
899
|
class RemoteNodeNetworkTypeDef(TypedDict):
|
|
@@ -947,7 +978,7 @@ class AssociateAccessPolicyRequestRequestTypeDef(TypedDict):
|
|
|
947
978
|
|
|
948
979
|
|
|
949
980
|
class AddonHealthTypeDef(TypedDict):
|
|
950
|
-
issues: NotRequired[
|
|
981
|
+
issues: NotRequired[list[AddonIssueTypeDef]]
|
|
951
982
|
|
|
952
983
|
|
|
953
984
|
class CreateAddonRequestRequestTypeDef(TypedDict):
|
|
@@ -975,9 +1006,9 @@ class UpdateAddonRequestRequestTypeDef(TypedDict):
|
|
|
975
1006
|
|
|
976
1007
|
class AddonVersionInfoTypeDef(TypedDict):
|
|
977
1008
|
addonVersion: NotRequired[str]
|
|
978
|
-
architecture: NotRequired[
|
|
979
|
-
computeTypes: NotRequired[
|
|
980
|
-
compatibilities: NotRequired[
|
|
1009
|
+
architecture: NotRequired[list[str]]
|
|
1010
|
+
computeTypes: NotRequired[list[str]]
|
|
1011
|
+
compatibilities: NotRequired[list[CompatibilityTypeDef]]
|
|
981
1012
|
requiresConfiguration: NotRequired[bool]
|
|
982
1013
|
requiresIamPermissions: NotRequired[bool]
|
|
983
1014
|
|
|
@@ -996,53 +1027,53 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
|
|
|
996
1027
|
addonName: str
|
|
997
1028
|
addonVersion: str
|
|
998
1029
|
configurationSchema: str
|
|
999
|
-
podIdentityConfiguration:
|
|
1030
|
+
podIdentityConfiguration: list[AddonPodIdentityConfigurationTypeDef]
|
|
1000
1031
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1001
1032
|
|
|
1002
1033
|
|
|
1003
1034
|
class ListAccessEntriesResponseTypeDef(TypedDict):
|
|
1004
|
-
accessEntries:
|
|
1035
|
+
accessEntries: list[str]
|
|
1005
1036
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1006
1037
|
nextToken: NotRequired[str]
|
|
1007
1038
|
|
|
1008
1039
|
|
|
1009
1040
|
class ListAccessPoliciesResponseTypeDef(TypedDict):
|
|
1010
|
-
accessPolicies:
|
|
1041
|
+
accessPolicies: list[AccessPolicyTypeDef]
|
|
1011
1042
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1012
1043
|
nextToken: NotRequired[str]
|
|
1013
1044
|
|
|
1014
1045
|
|
|
1015
1046
|
class ListAddonsResponseTypeDef(TypedDict):
|
|
1016
|
-
addons:
|
|
1047
|
+
addons: list[str]
|
|
1017
1048
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1018
1049
|
nextToken: NotRequired[str]
|
|
1019
1050
|
|
|
1020
1051
|
|
|
1021
1052
|
class ListClustersResponseTypeDef(TypedDict):
|
|
1022
|
-
clusters:
|
|
1053
|
+
clusters: list[str]
|
|
1023
1054
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1024
1055
|
nextToken: NotRequired[str]
|
|
1025
1056
|
|
|
1026
1057
|
|
|
1027
1058
|
class ListFargateProfilesResponseTypeDef(TypedDict):
|
|
1028
|
-
fargateProfileNames:
|
|
1059
|
+
fargateProfileNames: list[str]
|
|
1029
1060
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1030
1061
|
nextToken: NotRequired[str]
|
|
1031
1062
|
|
|
1032
1063
|
|
|
1033
1064
|
class ListNodegroupsResponseTypeDef(TypedDict):
|
|
1034
|
-
nodegroups:
|
|
1065
|
+
nodegroups: list[str]
|
|
1035
1066
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1036
1067
|
nextToken: NotRequired[str]
|
|
1037
1068
|
|
|
1038
1069
|
|
|
1039
1070
|
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
1040
|
-
tags:
|
|
1071
|
+
tags: dict[str, str]
|
|
1041
1072
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1042
1073
|
|
|
1043
1074
|
|
|
1044
1075
|
class ListUpdatesResponseTypeDef(TypedDict):
|
|
1045
|
-
updateIds:
|
|
1076
|
+
updateIds: list[str]
|
|
1046
1077
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1047
1078
|
nextToken: NotRequired[str]
|
|
1048
1079
|
|
|
@@ -1060,7 +1091,7 @@ class AssociateIdentityProviderConfigRequestRequestTypeDef(TypedDict):
|
|
|
1060
1091
|
|
|
1061
1092
|
|
|
1062
1093
|
class NodegroupResourcesTypeDef(TypedDict):
|
|
1063
|
-
autoScalingGroups: NotRequired[
|
|
1094
|
+
autoScalingGroups: NotRequired[list[AutoScalingGroupTypeDef]]
|
|
1064
1095
|
remoteAccessSecurityGroup: NotRequired[str]
|
|
1065
1096
|
|
|
1066
1097
|
|
|
@@ -1077,11 +1108,17 @@ class DeprecationDetailTypeDef(TypedDict):
|
|
|
1077
1108
|
replacedWith: NotRequired[str]
|
|
1078
1109
|
stopServingVersion: NotRequired[str]
|
|
1079
1110
|
startServingReplacementVersion: NotRequired[str]
|
|
1080
|
-
clientStats: NotRequired[
|
|
1111
|
+
clientStats: NotRequired[list[ClientStatTypeDef]]
|
|
1081
1112
|
|
|
1082
1113
|
|
|
1083
1114
|
class ClusterHealthTypeDef(TypedDict):
|
|
1084
|
-
issues: NotRequired[
|
|
1115
|
+
issues: NotRequired[list[ClusterIssueTypeDef]]
|
|
1116
|
+
|
|
1117
|
+
|
|
1118
|
+
class DescribeClusterVersionsResponseTypeDef(TypedDict):
|
|
1119
|
+
clusterVersions: list[ClusterVersionInformationTypeDef]
|
|
1120
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1121
|
+
nextToken: NotRequired[str]
|
|
1085
1122
|
|
|
1086
1123
|
|
|
1087
1124
|
class RegisterClusterRequestRequestTypeDef(TypedDict):
|
|
@@ -1098,7 +1135,7 @@ class OutpostConfigRequestTypeDef(TypedDict):
|
|
|
1098
1135
|
|
|
1099
1136
|
|
|
1100
1137
|
class OutpostConfigResponseTypeDef(TypedDict):
|
|
1101
|
-
outpostArns:
|
|
1138
|
+
outpostArns: list[str]
|
|
1102
1139
|
controlPlaneInstanceType: str
|
|
1103
1140
|
controlPlanePlacement: NotRequired[ControlPlanePlacementResponseTypeDef]
|
|
1104
1141
|
|
|
@@ -1126,8 +1163,8 @@ EksAnywhereSubscriptionTypeDef = TypedDict(
|
|
|
1126
1163
|
"term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
|
|
1127
1164
|
"status": NotRequired[str],
|
|
1128
1165
|
"autoRenew": NotRequired[bool],
|
|
1129
|
-
"licenseArns": NotRequired[
|
|
1130
|
-
"tags": NotRequired[
|
|
1166
|
+
"licenseArns": NotRequired[list[str]],
|
|
1167
|
+
"tags": NotRequired[dict[str, str]],
|
|
1131
1168
|
},
|
|
1132
1169
|
)
|
|
1133
1170
|
|
|
@@ -1189,54 +1226,31 @@ class UpdatePodIdentityAssociationResponseTypeDef(TypedDict):
|
|
|
1189
1226
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1190
1227
|
|
|
1191
1228
|
|
|
1192
|
-
class
|
|
1193
|
-
clusterName: str
|
|
1194
|
-
addonName: str
|
|
1195
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
class DescribeAddonRequestAddonDeletedWaitTypeDef(TypedDict):
|
|
1229
|
+
class DescribeAddonRequestWaitTypeDef(TypedDict):
|
|
1199
1230
|
clusterName: str
|
|
1200
1231
|
addonName: str
|
|
1201
1232
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1202
1233
|
|
|
1203
1234
|
|
|
1204
|
-
class
|
|
1205
|
-
name: str
|
|
1206
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
class DescribeClusterRequestClusterDeletedWaitTypeDef(TypedDict):
|
|
1235
|
+
class DescribeClusterRequestWaitTypeDef(TypedDict):
|
|
1210
1236
|
name: str
|
|
1211
1237
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1212
1238
|
|
|
1213
1239
|
|
|
1214
|
-
class
|
|
1215
|
-
clusterName: str
|
|
1216
|
-
fargateProfileName: str
|
|
1217
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
class DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef(TypedDict):
|
|
1240
|
+
class DescribeFargateProfileRequestWaitTypeDef(TypedDict):
|
|
1221
1241
|
clusterName: str
|
|
1222
1242
|
fargateProfileName: str
|
|
1223
1243
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1224
1244
|
|
|
1225
1245
|
|
|
1226
|
-
class
|
|
1227
|
-
clusterName: str
|
|
1228
|
-
nodegroupName: str
|
|
1229
|
-
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
class DescribeNodegroupRequestNodegroupDeletedWaitTypeDef(TypedDict):
|
|
1246
|
+
class DescribeNodegroupRequestWaitTypeDef(TypedDict):
|
|
1233
1247
|
clusterName: str
|
|
1234
1248
|
nodegroupName: str
|
|
1235
1249
|
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1236
1250
|
|
|
1237
1251
|
|
|
1238
|
-
|
|
1239
|
-
"
|
|
1252
|
+
DescribeAddonVersionsRequestPaginateTypeDef = TypedDict(
|
|
1253
|
+
"DescribeAddonVersionsRequestPaginateTypeDef",
|
|
1240
1254
|
{
|
|
1241
1255
|
"kubernetesVersion": NotRequired[str],
|
|
1242
1256
|
"addonName": NotRequired[str],
|
|
@@ -1248,60 +1262,69 @@ DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef = TypedDict(
|
|
|
1248
1262
|
)
|
|
1249
1263
|
|
|
1250
1264
|
|
|
1251
|
-
class
|
|
1265
|
+
class DescribeClusterVersionsRequestPaginateTypeDef(TypedDict):
|
|
1266
|
+
clusterType: NotRequired[str]
|
|
1267
|
+
defaultOnly: NotRequired[bool]
|
|
1268
|
+
includeAll: NotRequired[bool]
|
|
1269
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
1270
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
1271
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
class ListAccessEntriesRequestPaginateTypeDef(TypedDict):
|
|
1252
1275
|
clusterName: str
|
|
1253
1276
|
associatedPolicyArn: NotRequired[str]
|
|
1254
1277
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1255
1278
|
|
|
1256
1279
|
|
|
1257
|
-
class
|
|
1280
|
+
class ListAccessPoliciesRequestPaginateTypeDef(TypedDict):
|
|
1258
1281
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1259
1282
|
|
|
1260
1283
|
|
|
1261
|
-
class
|
|
1284
|
+
class ListAddonsRequestPaginateTypeDef(TypedDict):
|
|
1262
1285
|
clusterName: str
|
|
1263
1286
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1264
1287
|
|
|
1265
1288
|
|
|
1266
|
-
class
|
|
1289
|
+
class ListAssociatedAccessPoliciesRequestPaginateTypeDef(TypedDict):
|
|
1267
1290
|
clusterName: str
|
|
1268
1291
|
principalArn: str
|
|
1269
1292
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1270
1293
|
|
|
1271
1294
|
|
|
1272
|
-
class
|
|
1295
|
+
class ListClustersRequestPaginateTypeDef(TypedDict):
|
|
1273
1296
|
include: NotRequired[Sequence[str]]
|
|
1274
1297
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1275
1298
|
|
|
1276
1299
|
|
|
1277
|
-
class
|
|
1300
|
+
class ListEksAnywhereSubscriptionsRequestPaginateTypeDef(TypedDict):
|
|
1278
1301
|
includeStatus: NotRequired[Sequence[EksAnywhereSubscriptionStatusType]]
|
|
1279
1302
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1280
1303
|
|
|
1281
1304
|
|
|
1282
|
-
class
|
|
1305
|
+
class ListFargateProfilesRequestPaginateTypeDef(TypedDict):
|
|
1283
1306
|
clusterName: str
|
|
1284
1307
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1285
1308
|
|
|
1286
1309
|
|
|
1287
|
-
class
|
|
1310
|
+
class ListIdentityProviderConfigsRequestPaginateTypeDef(TypedDict):
|
|
1288
1311
|
clusterName: str
|
|
1289
1312
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1290
1313
|
|
|
1291
1314
|
|
|
1292
|
-
class
|
|
1315
|
+
class ListNodegroupsRequestPaginateTypeDef(TypedDict):
|
|
1293
1316
|
clusterName: str
|
|
1294
1317
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1295
1318
|
|
|
1296
1319
|
|
|
1297
|
-
class
|
|
1320
|
+
class ListPodIdentityAssociationsRequestPaginateTypeDef(TypedDict):
|
|
1298
1321
|
clusterName: str
|
|
1299
1322
|
namespace: NotRequired[str]
|
|
1300
1323
|
serviceAccount: NotRequired[str]
|
|
1301
1324
|
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1302
1325
|
|
|
1303
1326
|
|
|
1304
|
-
class
|
|
1327
|
+
class ListUpdatesRequestPaginateTypeDef(TypedDict):
|
|
1305
1328
|
name: str
|
|
1306
1329
|
nodegroupName: NotRequired[str]
|
|
1307
1330
|
addonName: NotRequired[str]
|
|
@@ -1320,7 +1343,7 @@ class DisassociateIdentityProviderConfigRequestRequestTypeDef(TypedDict):
|
|
|
1320
1343
|
|
|
1321
1344
|
|
|
1322
1345
|
class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
|
|
1323
|
-
identityProviderConfigs:
|
|
1346
|
+
identityProviderConfigs: list[IdentityProviderConfigTypeDef]
|
|
1324
1347
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1325
1348
|
nextToken: NotRequired[str]
|
|
1326
1349
|
|
|
@@ -1339,7 +1362,7 @@ class KubernetesNetworkConfigResponseTypeDef(TypedDict):
|
|
|
1339
1362
|
|
|
1340
1363
|
|
|
1341
1364
|
class EncryptionConfigOutputTypeDef(TypedDict):
|
|
1342
|
-
resources: NotRequired[
|
|
1365
|
+
resources: NotRequired[list[str]]
|
|
1343
1366
|
provider: NotRequired[ProviderTypeDef]
|
|
1344
1367
|
|
|
1345
1368
|
|
|
@@ -1349,7 +1372,7 @@ class EncryptionConfigTypeDef(TypedDict):
|
|
|
1349
1372
|
|
|
1350
1373
|
|
|
1351
1374
|
class FargateProfileHealthTypeDef(TypedDict):
|
|
1352
|
-
issues: NotRequired[
|
|
1375
|
+
issues: NotRequired[list[FargateProfileIssueTypeDef]]
|
|
1353
1376
|
|
|
1354
1377
|
|
|
1355
1378
|
FargateProfileSelectorUnionTypeDef = Union[
|
|
@@ -1384,8 +1407,8 @@ InsightSummaryTypeDef = TypedDict(
|
|
|
1384
1407
|
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1385
1408
|
},
|
|
1386
1409
|
)
|
|
1387
|
-
|
|
1388
|
-
"
|
|
1410
|
+
ListInsightsRequestPaginateTypeDef = TypedDict(
|
|
1411
|
+
"ListInsightsRequestPaginateTypeDef",
|
|
1389
1412
|
{
|
|
1390
1413
|
"clusterName": str,
|
|
1391
1414
|
"filter": NotRequired[InsightsFilterTypeDef],
|
|
@@ -1404,25 +1427,25 @@ ListInsightsRequestRequestTypeDef = TypedDict(
|
|
|
1404
1427
|
|
|
1405
1428
|
|
|
1406
1429
|
class NodegroupHealthTypeDef(TypedDict):
|
|
1407
|
-
issues: NotRequired[
|
|
1430
|
+
issues: NotRequired[list[IssueTypeDef]]
|
|
1408
1431
|
|
|
1409
1432
|
|
|
1410
1433
|
class ListPodIdentityAssociationsResponseTypeDef(TypedDict):
|
|
1411
|
-
associations:
|
|
1434
|
+
associations: list[PodIdentityAssociationSummaryTypeDef]
|
|
1412
1435
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1413
1436
|
nextToken: NotRequired[str]
|
|
1414
1437
|
|
|
1415
1438
|
|
|
1416
1439
|
class LoggingOutputTypeDef(TypedDict):
|
|
1417
|
-
clusterLogging: NotRequired[
|
|
1440
|
+
clusterLogging: NotRequired[list[LogSetupOutputTypeDef]]
|
|
1418
1441
|
|
|
1419
1442
|
|
|
1420
1443
|
LogSetupUnionTypeDef = Union[LogSetupTypeDef, LogSetupOutputTypeDef]
|
|
1421
1444
|
|
|
1422
1445
|
|
|
1423
1446
|
class RemoteNetworkConfigResponseTypeDef(TypedDict):
|
|
1424
|
-
remoteNodeNetworks: NotRequired[
|
|
1425
|
-
remotePodNetworks: NotRequired[
|
|
1447
|
+
remoteNodeNetworks: NotRequired[list[RemoteNodeNetworkOutputTypeDef]]
|
|
1448
|
+
remotePodNetworks: NotRequired[list[RemotePodNetworkOutputTypeDef]]
|
|
1426
1449
|
|
|
1427
1450
|
|
|
1428
1451
|
RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
|
|
@@ -1433,9 +1456,9 @@ UpdateTypeDef = TypedDict(
|
|
|
1433
1456
|
"id": NotRequired[str],
|
|
1434
1457
|
"status": NotRequired[UpdateStatusType],
|
|
1435
1458
|
"type": NotRequired[UpdateTypeType],
|
|
1436
|
-
"params": NotRequired[
|
|
1459
|
+
"params": NotRequired[list[UpdateParamTypeDef]],
|
|
1437
1460
|
"createdAt": NotRequired[datetime],
|
|
1438
|
-
"errors": NotRequired[
|
|
1461
|
+
"errors": NotRequired[list[ErrorDetailTypeDef]],
|
|
1439
1462
|
},
|
|
1440
1463
|
)
|
|
1441
1464
|
|
|
@@ -1450,7 +1473,7 @@ class AssociateAccessPolicyResponseTypeDef(TypedDict):
|
|
|
1450
1473
|
class ListAssociatedAccessPoliciesResponseTypeDef(TypedDict):
|
|
1451
1474
|
clusterName: str
|
|
1452
1475
|
principalArn: str
|
|
1453
|
-
associatedAccessPolicies:
|
|
1476
|
+
associatedAccessPolicies: list[AssociatedAccessPolicyTypeDef]
|
|
1454
1477
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1455
1478
|
nextToken: NotRequired[str]
|
|
1456
1479
|
|
|
@@ -1465,12 +1488,12 @@ class AddonTypeDef(TypedDict):
|
|
|
1465
1488
|
createdAt: NotRequired[datetime]
|
|
1466
1489
|
modifiedAt: NotRequired[datetime]
|
|
1467
1490
|
serviceAccountRoleArn: NotRequired[str]
|
|
1468
|
-
tags: NotRequired[
|
|
1491
|
+
tags: NotRequired[dict[str, str]]
|
|
1469
1492
|
publisher: NotRequired[str]
|
|
1470
1493
|
owner: NotRequired[str]
|
|
1471
1494
|
marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
|
|
1472
1495
|
configurationValues: NotRequired[str]
|
|
1473
|
-
podIdentityAssociations: NotRequired[
|
|
1496
|
+
podIdentityAssociations: NotRequired[list[str]]
|
|
1474
1497
|
|
|
1475
1498
|
|
|
1476
1499
|
AddonInfoTypeDef = TypedDict(
|
|
@@ -1478,7 +1501,7 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1478
1501
|
{
|
|
1479
1502
|
"addonName": NotRequired[str],
|
|
1480
1503
|
"type": NotRequired[str],
|
|
1481
|
-
"addonVersions": NotRequired[
|
|
1504
|
+
"addonVersions": NotRequired[list[AddonVersionInfoTypeDef]],
|
|
1482
1505
|
"publisher": NotRequired[str],
|
|
1483
1506
|
"owner": NotRequired[str],
|
|
1484
1507
|
"marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
|
|
@@ -1487,7 +1510,8 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1487
1510
|
|
|
1488
1511
|
|
|
1489
1512
|
class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
1490
|
-
deprecationDetails: NotRequired[
|
|
1513
|
+
deprecationDetails: NotRequired[list[DeprecationDetailTypeDef]]
|
|
1514
|
+
addonCompatibilityDetails: NotRequired[list[AddonCompatibilityDetailTypeDef]]
|
|
1491
1515
|
|
|
1492
1516
|
|
|
1493
1517
|
class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
@@ -1506,7 +1530,7 @@ class DescribeEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
|
1506
1530
|
|
|
1507
1531
|
|
|
1508
1532
|
class ListEksAnywhereSubscriptionsResponseTypeDef(TypedDict):
|
|
1509
|
-
subscriptions:
|
|
1533
|
+
subscriptions: list[EksAnywhereSubscriptionTypeDef]
|
|
1510
1534
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1511
1535
|
nextToken: NotRequired[str]
|
|
1512
1536
|
|
|
@@ -1536,10 +1560,10 @@ class FargateProfileTypeDef(TypedDict):
|
|
|
1536
1560
|
clusterName: NotRequired[str]
|
|
1537
1561
|
createdAt: NotRequired[datetime]
|
|
1538
1562
|
podExecutionRoleArn: NotRequired[str]
|
|
1539
|
-
subnets: NotRequired[
|
|
1540
|
-
selectors: NotRequired[
|
|
1563
|
+
subnets: NotRequired[list[str]]
|
|
1564
|
+
selectors: NotRequired[list[FargateProfileSelectorOutputTypeDef]]
|
|
1541
1565
|
status: NotRequired[FargateProfileStatusType]
|
|
1542
|
-
tags: NotRequired[
|
|
1566
|
+
tags: NotRequired[dict[str, str]]
|
|
1543
1567
|
health: NotRequired[FargateProfileHealthTypeDef]
|
|
1544
1568
|
|
|
1545
1569
|
|
|
@@ -1559,7 +1583,7 @@ class DescribeIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
|
1559
1583
|
|
|
1560
1584
|
|
|
1561
1585
|
class ListInsightsResponseTypeDef(TypedDict):
|
|
1562
|
-
insights:
|
|
1586
|
+
insights: list[InsightSummaryTypeDef]
|
|
1563
1587
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1564
1588
|
nextToken: NotRequired[str]
|
|
1565
1589
|
|
|
@@ -1575,20 +1599,20 @@ class NodegroupTypeDef(TypedDict):
|
|
|
1575
1599
|
status: NotRequired[NodegroupStatusType]
|
|
1576
1600
|
capacityType: NotRequired[CapacityTypesType]
|
|
1577
1601
|
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1578
|
-
instanceTypes: NotRequired[
|
|
1579
|
-
subnets: NotRequired[
|
|
1602
|
+
instanceTypes: NotRequired[list[str]]
|
|
1603
|
+
subnets: NotRequired[list[str]]
|
|
1580
1604
|
remoteAccess: NotRequired[RemoteAccessConfigOutputTypeDef]
|
|
1581
1605
|
amiType: NotRequired[AMITypesType]
|
|
1582
1606
|
nodeRole: NotRequired[str]
|
|
1583
|
-
labels: NotRequired[
|
|
1584
|
-
taints: NotRequired[
|
|
1607
|
+
labels: NotRequired[dict[str, str]]
|
|
1608
|
+
taints: NotRequired[list[TaintTypeDef]]
|
|
1585
1609
|
resources: NotRequired[NodegroupResourcesTypeDef]
|
|
1586
1610
|
diskSize: NotRequired[int]
|
|
1587
1611
|
health: NotRequired[NodegroupHealthTypeDef]
|
|
1588
1612
|
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1589
1613
|
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1590
1614
|
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1591
|
-
tags: NotRequired[
|
|
1615
|
+
tags: NotRequired[dict[str, str]]
|
|
1592
1616
|
|
|
1593
1617
|
|
|
1594
1618
|
class LoggingTypeDef(TypedDict):
|
|
@@ -1612,8 +1636,8 @@ ClusterTypeDef = TypedDict(
|
|
|
1612
1636
|
"certificateAuthority": NotRequired[CertificateTypeDef],
|
|
1613
1637
|
"clientRequestToken": NotRequired[str],
|
|
1614
1638
|
"platformVersion": NotRequired[str],
|
|
1615
|
-
"tags": NotRequired[
|
|
1616
|
-
"encryptionConfig": NotRequired[
|
|
1639
|
+
"tags": NotRequired[dict[str, str]],
|
|
1640
|
+
"encryptionConfig": NotRequired[list[EncryptionConfigOutputTypeDef]],
|
|
1617
1641
|
"connectorConfig": NotRequired[ConnectorConfigResponseTypeDef],
|
|
1618
1642
|
"id": NotRequired[str],
|
|
1619
1643
|
"health": NotRequired[ClusterHealthTypeDef],
|
|
@@ -1640,7 +1664,7 @@ class AssociateEncryptionConfigResponseTypeDef(TypedDict):
|
|
|
1640
1664
|
|
|
1641
1665
|
class AssociateIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
1642
1666
|
update: UpdateTypeDef
|
|
1643
|
-
tags:
|
|
1667
|
+
tags: dict[str, str]
|
|
1644
1668
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1645
1669
|
|
|
1646
1670
|
|
|
@@ -1695,7 +1719,7 @@ class DescribeAddonResponseTypeDef(TypedDict):
|
|
|
1695
1719
|
|
|
1696
1720
|
|
|
1697
1721
|
class DescribeAddonVersionsResponseTypeDef(TypedDict):
|
|
1698
|
-
addons:
|
|
1722
|
+
addons: list[AddonInfoTypeDef]
|
|
1699
1723
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1700
1724
|
nextToken: NotRequired[str]
|
|
1701
1725
|
|
|
@@ -1712,8 +1736,8 @@ InsightTypeDef = TypedDict(
|
|
|
1712
1736
|
"description": NotRequired[str],
|
|
1713
1737
|
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1714
1738
|
"recommendation": NotRequired[str],
|
|
1715
|
-
"additionalInfo": NotRequired[
|
|
1716
|
-
"resources": NotRequired[
|
|
1739
|
+
"additionalInfo": NotRequired[dict[str, str]],
|
|
1740
|
+
"resources": NotRequired[list[InsightResourceDetailTypeDef]],
|
|
1717
1741
|
"categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
|
|
1718
1742
|
},
|
|
1719
1743
|
)
|