mypy-boto3-eks 1.35.0__py3-none-any.whl → 1.38.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mypy_boto3_eks/__init__.py +9 -0
- mypy_boto3_eks/__init__.pyi +8 -0
- mypy_boto3_eks/__main__.py +11 -8
- mypy_boto3_eks/client.py +379 -436
- mypy_boto3_eks/client.pyi +378 -435
- mypy_boto3_eks/literals.py +61 -13
- mypy_boto3_eks/literals.pyi +59 -13
- mypy_boto3_eks/paginator.py +213 -117
- mypy_boto3_eks/paginator.pyi +197 -130
- mypy_boto3_eks/type_defs.py +1636 -1801
- mypy_boto3_eks/type_defs.pyi +1397 -1795
- mypy_boto3_eks/version.py +3 -1
- mypy_boto3_eks/waiter.py +57 -32
- mypy_boto3_eks/waiter.pyi +56 -40
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.38.0.dist-info}/METADATA +103 -29
- mypy_boto3_eks-1.38.0.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.38.0.dist-info}/WHEEL +1 -1
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.38.0.dist-info/licenses}/LICENSE +1 -1
- mypy_boto3_eks-1.35.0.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.0.dist-info → mypy_boto3_eks-1.38.0.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/type_defs.pyi
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
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
|
+
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
5
7
|
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
@@ -12,9 +14,11 @@ Usage::
|
|
|
12
14
|
```
|
|
13
15
|
"""
|
|
14
16
|
|
|
17
|
+
from __future__ import annotations
|
|
18
|
+
|
|
15
19
|
import sys
|
|
16
20
|
from datetime import datetime
|
|
17
|
-
from typing import
|
|
21
|
+
from typing import Union
|
|
18
22
|
|
|
19
23
|
from .literals import (
|
|
20
24
|
AccessScopeTypeType,
|
|
@@ -25,6 +29,7 @@ from .literals import (
|
|
|
25
29
|
CapacityTypesType,
|
|
26
30
|
ClusterIssueCodeType,
|
|
27
31
|
ClusterStatusType,
|
|
32
|
+
ClusterVersionStatusType,
|
|
28
33
|
ConfigStatusType,
|
|
29
34
|
ConnectorConfigProviderType,
|
|
30
35
|
EksAnywhereSubscriptionStatusType,
|
|
@@ -36,254 +41,273 @@ from .literals import (
|
|
|
36
41
|
LogTypeType,
|
|
37
42
|
NodegroupIssueCodeType,
|
|
38
43
|
NodegroupStatusType,
|
|
44
|
+
NodegroupUpdateStrategiesType,
|
|
39
45
|
ResolveConflictsType,
|
|
40
46
|
SupportTypeType,
|
|
41
47
|
TaintEffectType,
|
|
42
48
|
UpdateParamTypeType,
|
|
43
49
|
UpdateStatusType,
|
|
44
50
|
UpdateTypeType,
|
|
51
|
+
VersionStatusType,
|
|
45
52
|
)
|
|
46
53
|
|
|
47
|
-
if sys.version_info >= (3,
|
|
48
|
-
from
|
|
49
|
-
|
|
50
|
-
from
|
|
51
|
-
if sys.version_info >= (3, 12):
|
|
52
|
-
from typing import NotRequired
|
|
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
|
|
53
58
|
else:
|
|
54
|
-
from
|
|
59
|
+
from typing import Dict, List, Mapping, Sequence
|
|
55
60
|
if sys.version_info >= (3, 12):
|
|
56
|
-
from typing import TypedDict
|
|
61
|
+
from typing import Literal, NotRequired, TypedDict
|
|
57
62
|
else:
|
|
58
|
-
from typing_extensions import TypedDict
|
|
63
|
+
from typing_extensions import Literal, NotRequired, TypedDict
|
|
59
64
|
|
|
60
65
|
__all__ = (
|
|
61
66
|
"AccessConfigResponseTypeDef",
|
|
62
67
|
"AccessEntryTypeDef",
|
|
63
68
|
"AccessPolicyTypeDef",
|
|
64
|
-
"AccessScopeExtraOutputTypeDef",
|
|
65
69
|
"AccessScopeOutputTypeDef",
|
|
66
70
|
"AccessScopeTypeDef",
|
|
71
|
+
"AccessScopeUnionTypeDef",
|
|
72
|
+
"AddonCompatibilityDetailTypeDef",
|
|
73
|
+
"AddonHealthTypeDef",
|
|
74
|
+
"AddonInfoTypeDef",
|
|
67
75
|
"AddonIssueTypeDef",
|
|
68
|
-
"MarketplaceInformationTypeDef",
|
|
69
76
|
"AddonPodIdentityAssociationsTypeDef",
|
|
70
77
|
"AddonPodIdentityConfigurationTypeDef",
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
78
|
+
"AddonTypeDef",
|
|
79
|
+
"AddonVersionInfoTypeDef",
|
|
80
|
+
"AssociateAccessPolicyRequestTypeDef",
|
|
81
|
+
"AssociateAccessPolicyResponseTypeDef",
|
|
82
|
+
"AssociateEncryptionConfigRequestTypeDef",
|
|
83
|
+
"AssociateEncryptionConfigResponseTypeDef",
|
|
84
|
+
"AssociateIdentityProviderConfigRequestTypeDef",
|
|
85
|
+
"AssociateIdentityProviderConfigResponseTypeDef",
|
|
86
|
+
"AssociatedAccessPolicyTypeDef",
|
|
74
87
|
"AutoScalingGroupTypeDef",
|
|
88
|
+
"BlockStorageTypeDef",
|
|
75
89
|
"CertificateTypeDef",
|
|
76
90
|
"ClientStatTypeDef",
|
|
91
|
+
"ClusterHealthTypeDef",
|
|
77
92
|
"ClusterIssueTypeDef",
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
93
|
+
"ClusterTypeDef",
|
|
94
|
+
"ClusterVersionInformationTypeDef",
|
|
95
|
+
"CompatibilityTypeDef",
|
|
96
|
+
"ComputeConfigRequestTypeDef",
|
|
97
|
+
"ComputeConfigResponseTypeDef",
|
|
82
98
|
"ConnectorConfigRequestTypeDef",
|
|
99
|
+
"ConnectorConfigResponseTypeDef",
|
|
83
100
|
"ControlPlanePlacementRequestTypeDef",
|
|
84
101
|
"ControlPlanePlacementResponseTypeDef",
|
|
85
102
|
"CreateAccessConfigRequestTypeDef",
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
103
|
+
"CreateAccessEntryRequestTypeDef",
|
|
104
|
+
"CreateAccessEntryResponseTypeDef",
|
|
105
|
+
"CreateAddonRequestTypeDef",
|
|
106
|
+
"CreateAddonResponseTypeDef",
|
|
107
|
+
"CreateClusterRequestTypeDef",
|
|
108
|
+
"CreateClusterResponseTypeDef",
|
|
109
|
+
"CreateEksAnywhereSubscriptionRequestTypeDef",
|
|
110
|
+
"CreateEksAnywhereSubscriptionResponseTypeDef",
|
|
111
|
+
"CreateFargateProfileRequestTypeDef",
|
|
112
|
+
"CreateFargateProfileResponseTypeDef",
|
|
113
|
+
"CreateNodegroupRequestTypeDef",
|
|
114
|
+
"CreateNodegroupResponseTypeDef",
|
|
115
|
+
"CreatePodIdentityAssociationRequestTypeDef",
|
|
116
|
+
"CreatePodIdentityAssociationResponseTypeDef",
|
|
117
|
+
"DeleteAccessEntryRequestTypeDef",
|
|
118
|
+
"DeleteAddonRequestTypeDef",
|
|
119
|
+
"DeleteAddonResponseTypeDef",
|
|
120
|
+
"DeleteClusterRequestTypeDef",
|
|
121
|
+
"DeleteClusterResponseTypeDef",
|
|
122
|
+
"DeleteEksAnywhereSubscriptionRequestTypeDef",
|
|
123
|
+
"DeleteEksAnywhereSubscriptionResponseTypeDef",
|
|
124
|
+
"DeleteFargateProfileRequestTypeDef",
|
|
125
|
+
"DeleteFargateProfileResponseTypeDef",
|
|
126
|
+
"DeleteNodegroupRequestTypeDef",
|
|
127
|
+
"DeleteNodegroupResponseTypeDef",
|
|
128
|
+
"DeletePodIdentityAssociationRequestTypeDef",
|
|
129
|
+
"DeletePodIdentityAssociationResponseTypeDef",
|
|
130
|
+
"DeprecationDetailTypeDef",
|
|
131
|
+
"DeregisterClusterRequestTypeDef",
|
|
132
|
+
"DeregisterClusterResponseTypeDef",
|
|
133
|
+
"DescribeAccessEntryRequestTypeDef",
|
|
134
|
+
"DescribeAccessEntryResponseTypeDef",
|
|
135
|
+
"DescribeAddonConfigurationRequestTypeDef",
|
|
136
|
+
"DescribeAddonConfigurationResponseTypeDef",
|
|
137
|
+
"DescribeAddonRequestTypeDef",
|
|
138
|
+
"DescribeAddonRequestWaitExtraTypeDef",
|
|
139
|
+
"DescribeAddonRequestWaitTypeDef",
|
|
140
|
+
"DescribeAddonResponseTypeDef",
|
|
141
|
+
"DescribeAddonVersionsRequestPaginateTypeDef",
|
|
142
|
+
"DescribeAddonVersionsRequestTypeDef",
|
|
143
|
+
"DescribeAddonVersionsResponseTypeDef",
|
|
144
|
+
"DescribeClusterRequestTypeDef",
|
|
145
|
+
"DescribeClusterRequestWaitExtraTypeDef",
|
|
146
|
+
"DescribeClusterRequestWaitTypeDef",
|
|
147
|
+
"DescribeClusterResponseTypeDef",
|
|
148
|
+
"DescribeClusterVersionsRequestPaginateTypeDef",
|
|
149
|
+
"DescribeClusterVersionsRequestTypeDef",
|
|
150
|
+
"DescribeClusterVersionsResponseTypeDef",
|
|
151
|
+
"DescribeEksAnywhereSubscriptionRequestTypeDef",
|
|
152
|
+
"DescribeEksAnywhereSubscriptionResponseTypeDef",
|
|
153
|
+
"DescribeFargateProfileRequestTypeDef",
|
|
154
|
+
"DescribeFargateProfileRequestWaitExtraTypeDef",
|
|
155
|
+
"DescribeFargateProfileRequestWaitTypeDef",
|
|
156
|
+
"DescribeFargateProfileResponseTypeDef",
|
|
157
|
+
"DescribeIdentityProviderConfigRequestTypeDef",
|
|
158
|
+
"DescribeIdentityProviderConfigResponseTypeDef",
|
|
159
|
+
"DescribeInsightRequestTypeDef",
|
|
160
|
+
"DescribeInsightResponseTypeDef",
|
|
161
|
+
"DescribeNodegroupRequestTypeDef",
|
|
162
|
+
"DescribeNodegroupRequestWaitExtraTypeDef",
|
|
163
|
+
"DescribeNodegroupRequestWaitTypeDef",
|
|
164
|
+
"DescribeNodegroupResponseTypeDef",
|
|
165
|
+
"DescribePodIdentityAssociationRequestTypeDef",
|
|
166
|
+
"DescribePodIdentityAssociationResponseTypeDef",
|
|
167
|
+
"DescribeUpdateRequestTypeDef",
|
|
168
|
+
"DescribeUpdateResponseTypeDef",
|
|
169
|
+
"DisassociateAccessPolicyRequestTypeDef",
|
|
170
|
+
"DisassociateIdentityProviderConfigRequestTypeDef",
|
|
171
|
+
"DisassociateIdentityProviderConfigResponseTypeDef",
|
|
90
172
|
"EksAnywhereSubscriptionTermTypeDef",
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"CreatePodIdentityAssociationRequestRequestTypeDef",
|
|
97
|
-
"PodIdentityAssociationTypeDef",
|
|
98
|
-
"DeleteAccessEntryRequestRequestTypeDef",
|
|
99
|
-
"DeleteAddonRequestRequestTypeDef",
|
|
100
|
-
"DeleteClusterRequestRequestTypeDef",
|
|
101
|
-
"DeleteEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
102
|
-
"DeleteFargateProfileRequestRequestTypeDef",
|
|
103
|
-
"DeleteNodegroupRequestRequestTypeDef",
|
|
104
|
-
"DeletePodIdentityAssociationRequestRequestTypeDef",
|
|
105
|
-
"DeregisterClusterRequestRequestTypeDef",
|
|
106
|
-
"DescribeAccessEntryRequestRequestTypeDef",
|
|
107
|
-
"DescribeAddonConfigurationRequestRequestTypeDef",
|
|
108
|
-
"WaiterConfigTypeDef",
|
|
109
|
-
"DescribeAddonRequestRequestTypeDef",
|
|
110
|
-
"PaginatorConfigTypeDef",
|
|
111
|
-
"DescribeAddonVersionsRequestRequestTypeDef",
|
|
112
|
-
"DescribeClusterRequestRequestTypeDef",
|
|
113
|
-
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
114
|
-
"DescribeFargateProfileRequestRequestTypeDef",
|
|
115
|
-
"IdentityProviderConfigTypeDef",
|
|
116
|
-
"DescribeInsightRequestRequestTypeDef",
|
|
117
|
-
"DescribeNodegroupRequestRequestTypeDef",
|
|
118
|
-
"DescribePodIdentityAssociationRequestRequestTypeDef",
|
|
119
|
-
"DescribeUpdateRequestRequestTypeDef",
|
|
120
|
-
"DisassociateAccessPolicyRequestRequestTypeDef",
|
|
121
|
-
"ProviderTypeDef",
|
|
173
|
+
"EksAnywhereSubscriptionTypeDef",
|
|
174
|
+
"ElasticLoadBalancingTypeDef",
|
|
175
|
+
"EncryptionConfigOutputTypeDef",
|
|
176
|
+
"EncryptionConfigTypeDef",
|
|
177
|
+
"EncryptionConfigUnionTypeDef",
|
|
122
178
|
"ErrorDetailTypeDef",
|
|
179
|
+
"FargateProfileHealthTypeDef",
|
|
123
180
|
"FargateProfileIssueTypeDef",
|
|
124
181
|
"FargateProfileSelectorOutputTypeDef",
|
|
125
182
|
"FargateProfileSelectorTypeDef",
|
|
126
|
-
"
|
|
127
|
-
"
|
|
183
|
+
"FargateProfileSelectorUnionTypeDef",
|
|
184
|
+
"FargateProfileTypeDef",
|
|
185
|
+
"IdentityProviderConfigResponseTypeDef",
|
|
186
|
+
"IdentityProviderConfigTypeDef",
|
|
187
|
+
"IdentityTypeDef",
|
|
188
|
+
"InsightCategorySpecificSummaryTypeDef",
|
|
189
|
+
"InsightResourceDetailTypeDef",
|
|
128
190
|
"InsightStatusTypeDef",
|
|
191
|
+
"InsightSummaryTypeDef",
|
|
192
|
+
"InsightTypeDef",
|
|
129
193
|
"InsightsFilterTypeDef",
|
|
130
194
|
"IssueTypeDef",
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"ListFargateProfilesRequestRequestTypeDef",
|
|
138
|
-
"ListIdentityProviderConfigsRequestRequestTypeDef",
|
|
139
|
-
"ListNodegroupsRequestRequestTypeDef",
|
|
140
|
-
"ListPodIdentityAssociationsRequestRequestTypeDef",
|
|
141
|
-
"PodIdentityAssociationSummaryTypeDef",
|
|
142
|
-
"ListTagsForResourceRequestRequestTypeDef",
|
|
143
|
-
"ListUpdatesRequestRequestTypeDef",
|
|
144
|
-
"LogSetupOutputTypeDef",
|
|
145
|
-
"LogSetupTypeDef",
|
|
146
|
-
"RemoteAccessConfigOutputTypeDef",
|
|
147
|
-
"TagResourceRequestRequestTypeDef",
|
|
148
|
-
"UntagResourceRequestRequestTypeDef",
|
|
149
|
-
"UpdateAccessConfigRequestTypeDef",
|
|
150
|
-
"UpdateAccessEntryRequestRequestTypeDef",
|
|
151
|
-
"UpdateClusterVersionRequestRequestTypeDef",
|
|
152
|
-
"UpdateEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
153
|
-
"UpdateLabelsPayloadTypeDef",
|
|
154
|
-
"UpdateParamTypeDef",
|
|
155
|
-
"UpdatePodIdentityAssociationRequestRequestTypeDef",
|
|
156
|
-
"AssociatedAccessPolicyTypeDef",
|
|
157
|
-
"AccessScopeUnionTypeDef",
|
|
158
|
-
"AssociateAccessPolicyRequestRequestTypeDef",
|
|
159
|
-
"AddonHealthTypeDef",
|
|
160
|
-
"CreateAddonRequestRequestTypeDef",
|
|
161
|
-
"UpdateAddonRequestRequestTypeDef",
|
|
162
|
-
"AddonVersionInfoTypeDef",
|
|
163
|
-
"CreateAccessEntryResponseTypeDef",
|
|
164
|
-
"DescribeAccessEntryResponseTypeDef",
|
|
165
|
-
"DescribeAddonConfigurationResponseTypeDef",
|
|
195
|
+
"KubernetesNetworkConfigRequestTypeDef",
|
|
196
|
+
"KubernetesNetworkConfigResponseTypeDef",
|
|
197
|
+
"LaunchTemplateSpecificationTypeDef",
|
|
198
|
+
"LicenseTypeDef",
|
|
199
|
+
"ListAccessEntriesRequestPaginateTypeDef",
|
|
200
|
+
"ListAccessEntriesRequestTypeDef",
|
|
166
201
|
"ListAccessEntriesResponseTypeDef",
|
|
202
|
+
"ListAccessPoliciesRequestPaginateTypeDef",
|
|
203
|
+
"ListAccessPoliciesRequestTypeDef",
|
|
167
204
|
"ListAccessPoliciesResponseTypeDef",
|
|
205
|
+
"ListAddonsRequestPaginateTypeDef",
|
|
206
|
+
"ListAddonsRequestTypeDef",
|
|
168
207
|
"ListAddonsResponseTypeDef",
|
|
208
|
+
"ListAssociatedAccessPoliciesRequestPaginateTypeDef",
|
|
209
|
+
"ListAssociatedAccessPoliciesRequestTypeDef",
|
|
210
|
+
"ListAssociatedAccessPoliciesResponseTypeDef",
|
|
211
|
+
"ListClustersRequestPaginateTypeDef",
|
|
212
|
+
"ListClustersRequestTypeDef",
|
|
169
213
|
"ListClustersResponseTypeDef",
|
|
214
|
+
"ListEksAnywhereSubscriptionsRequestPaginateTypeDef",
|
|
215
|
+
"ListEksAnywhereSubscriptionsRequestTypeDef",
|
|
216
|
+
"ListEksAnywhereSubscriptionsResponseTypeDef",
|
|
217
|
+
"ListFargateProfilesRequestPaginateTypeDef",
|
|
218
|
+
"ListFargateProfilesRequestTypeDef",
|
|
170
219
|
"ListFargateProfilesResponseTypeDef",
|
|
220
|
+
"ListIdentityProviderConfigsRequestPaginateTypeDef",
|
|
221
|
+
"ListIdentityProviderConfigsRequestTypeDef",
|
|
222
|
+
"ListIdentityProviderConfigsResponseTypeDef",
|
|
223
|
+
"ListInsightsRequestPaginateTypeDef",
|
|
224
|
+
"ListInsightsRequestTypeDef",
|
|
225
|
+
"ListInsightsResponseTypeDef",
|
|
226
|
+
"ListNodegroupsRequestPaginateTypeDef",
|
|
227
|
+
"ListNodegroupsRequestTypeDef",
|
|
171
228
|
"ListNodegroupsResponseTypeDef",
|
|
229
|
+
"ListPodIdentityAssociationsRequestPaginateTypeDef",
|
|
230
|
+
"ListPodIdentityAssociationsRequestTypeDef",
|
|
231
|
+
"ListPodIdentityAssociationsResponseTypeDef",
|
|
232
|
+
"ListTagsForResourceRequestTypeDef",
|
|
172
233
|
"ListTagsForResourceResponseTypeDef",
|
|
234
|
+
"ListUpdatesRequestPaginateTypeDef",
|
|
235
|
+
"ListUpdatesRequestTypeDef",
|
|
173
236
|
"ListUpdatesResponseTypeDef",
|
|
174
|
-
"
|
|
175
|
-
"
|
|
237
|
+
"LogSetupOutputTypeDef",
|
|
238
|
+
"LogSetupTypeDef",
|
|
239
|
+
"LoggingOutputTypeDef",
|
|
240
|
+
"LoggingTypeDef",
|
|
241
|
+
"LoggingUnionTypeDef",
|
|
242
|
+
"MarketplaceInformationTypeDef",
|
|
243
|
+
"NodeRepairConfigTypeDef",
|
|
244
|
+
"NodegroupHealthTypeDef",
|
|
176
245
|
"NodegroupResourcesTypeDef",
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
246
|
+
"NodegroupScalingConfigTypeDef",
|
|
247
|
+
"NodegroupTypeDef",
|
|
248
|
+
"NodegroupUpdateConfigTypeDef",
|
|
249
|
+
"OIDCTypeDef",
|
|
250
|
+
"OidcIdentityProviderConfigRequestTypeDef",
|
|
251
|
+
"OidcIdentityProviderConfigTypeDef",
|
|
180
252
|
"OutpostConfigRequestTypeDef",
|
|
181
253
|
"OutpostConfigResponseTypeDef",
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
"UpdatePodIdentityAssociationResponseTypeDef",
|
|
191
|
-
"DescribeAddonRequestAddonActiveWaitTypeDef",
|
|
192
|
-
"DescribeAddonRequestAddonDeletedWaitTypeDef",
|
|
193
|
-
"DescribeClusterRequestClusterActiveWaitTypeDef",
|
|
194
|
-
"DescribeClusterRequestClusterDeletedWaitTypeDef",
|
|
195
|
-
"DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef",
|
|
196
|
-
"DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef",
|
|
197
|
-
"DescribeNodegroupRequestNodegroupActiveWaitTypeDef",
|
|
198
|
-
"DescribeNodegroupRequestNodegroupDeletedWaitTypeDef",
|
|
199
|
-
"DescribeAddonVersionsRequestDescribeAddonVersionsPaginateTypeDef",
|
|
200
|
-
"ListAccessEntriesRequestListAccessEntriesPaginateTypeDef",
|
|
201
|
-
"ListAccessPoliciesRequestListAccessPoliciesPaginateTypeDef",
|
|
202
|
-
"ListAddonsRequestListAddonsPaginateTypeDef",
|
|
203
|
-
"ListAssociatedAccessPoliciesRequestListAssociatedAccessPoliciesPaginateTypeDef",
|
|
204
|
-
"ListClustersRequestListClustersPaginateTypeDef",
|
|
205
|
-
"ListEksAnywhereSubscriptionsRequestListEksAnywhereSubscriptionsPaginateTypeDef",
|
|
206
|
-
"ListFargateProfilesRequestListFargateProfilesPaginateTypeDef",
|
|
207
|
-
"ListIdentityProviderConfigsRequestListIdentityProviderConfigsPaginateTypeDef",
|
|
208
|
-
"ListNodegroupsRequestListNodegroupsPaginateTypeDef",
|
|
209
|
-
"ListPodIdentityAssociationsRequestListPodIdentityAssociationsPaginateTypeDef",
|
|
210
|
-
"ListUpdatesRequestListUpdatesPaginateTypeDef",
|
|
211
|
-
"DescribeIdentityProviderConfigRequestRequestTypeDef",
|
|
212
|
-
"DisassociateIdentityProviderConfigRequestRequestTypeDef",
|
|
213
|
-
"ListIdentityProviderConfigsResponseTypeDef",
|
|
214
|
-
"EncryptionConfigOutputTypeDef",
|
|
215
|
-
"EncryptionConfigTypeDef",
|
|
216
|
-
"FargateProfileHealthTypeDef",
|
|
217
|
-
"FargateProfileSelectorUnionTypeDef",
|
|
218
|
-
"IdentityProviderConfigResponseTypeDef",
|
|
219
|
-
"IdentityTypeDef",
|
|
220
|
-
"InsightResourceDetailTypeDef",
|
|
221
|
-
"InsightSummaryTypeDef",
|
|
222
|
-
"ListInsightsRequestListInsightsPaginateTypeDef",
|
|
223
|
-
"ListInsightsRequestRequestTypeDef",
|
|
224
|
-
"NodegroupHealthTypeDef",
|
|
225
|
-
"ListPodIdentityAssociationsResponseTypeDef",
|
|
226
|
-
"LoggingOutputTypeDef",
|
|
227
|
-
"LoggingTypeDef",
|
|
254
|
+
"PaginatorConfigTypeDef",
|
|
255
|
+
"PodIdentityAssociationSummaryTypeDef",
|
|
256
|
+
"PodIdentityAssociationTypeDef",
|
|
257
|
+
"ProviderTypeDef",
|
|
258
|
+
"RegisterClusterRequestTypeDef",
|
|
259
|
+
"RegisterClusterResponseTypeDef",
|
|
260
|
+
"RemoteAccessConfigOutputTypeDef",
|
|
261
|
+
"RemoteAccessConfigTypeDef",
|
|
228
262
|
"RemoteAccessConfigUnionTypeDef",
|
|
229
|
-
"
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
"
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
"ClusterTypeDef",
|
|
248
|
-
"LoggingUnionTypeDef",
|
|
249
|
-
"UpdateClusterConfigRequestRequestTypeDef",
|
|
250
|
-
"AssociateEncryptionConfigResponseTypeDef",
|
|
251
|
-
"AssociateIdentityProviderConfigResponseTypeDef",
|
|
252
|
-
"DescribeUpdateResponseTypeDef",
|
|
253
|
-
"DisassociateIdentityProviderConfigResponseTypeDef",
|
|
263
|
+
"RemoteNetworkConfigRequestTypeDef",
|
|
264
|
+
"RemoteNetworkConfigResponseTypeDef",
|
|
265
|
+
"RemoteNodeNetworkOutputTypeDef",
|
|
266
|
+
"RemoteNodeNetworkTypeDef",
|
|
267
|
+
"RemoteNodeNetworkUnionTypeDef",
|
|
268
|
+
"RemotePodNetworkOutputTypeDef",
|
|
269
|
+
"RemotePodNetworkTypeDef",
|
|
270
|
+
"RemotePodNetworkUnionTypeDef",
|
|
271
|
+
"ResponseMetadataTypeDef",
|
|
272
|
+
"StorageConfigRequestTypeDef",
|
|
273
|
+
"StorageConfigResponseTypeDef",
|
|
274
|
+
"TagResourceRequestTypeDef",
|
|
275
|
+
"TaintTypeDef",
|
|
276
|
+
"UntagResourceRequestTypeDef",
|
|
277
|
+
"UpdateAccessConfigRequestTypeDef",
|
|
278
|
+
"UpdateAccessEntryRequestTypeDef",
|
|
279
|
+
"UpdateAccessEntryResponseTypeDef",
|
|
280
|
+
"UpdateAddonRequestTypeDef",
|
|
254
281
|
"UpdateAddonResponseTypeDef",
|
|
282
|
+
"UpdateClusterConfigRequestTypeDef",
|
|
255
283
|
"UpdateClusterConfigResponseTypeDef",
|
|
284
|
+
"UpdateClusterVersionRequestTypeDef",
|
|
256
285
|
"UpdateClusterVersionResponseTypeDef",
|
|
286
|
+
"UpdateEksAnywhereSubscriptionRequestTypeDef",
|
|
287
|
+
"UpdateEksAnywhereSubscriptionResponseTypeDef",
|
|
288
|
+
"UpdateLabelsPayloadTypeDef",
|
|
289
|
+
"UpdateNodegroupConfigRequestTypeDef",
|
|
257
290
|
"UpdateNodegroupConfigResponseTypeDef",
|
|
291
|
+
"UpdateNodegroupVersionRequestTypeDef",
|
|
258
292
|
"UpdateNodegroupVersionResponseTypeDef",
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
-
"
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
-
"
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
"
|
|
269
|
-
"
|
|
270
|
-
"
|
|
271
|
-
"DescribeNodegroupResponseTypeDef",
|
|
272
|
-
"CreateClusterResponseTypeDef",
|
|
273
|
-
"DeleteClusterResponseTypeDef",
|
|
274
|
-
"DeregisterClusterResponseTypeDef",
|
|
275
|
-
"DescribeClusterResponseTypeDef",
|
|
276
|
-
"RegisterClusterResponseTypeDef",
|
|
277
|
-
"DescribeInsightResponseTypeDef",
|
|
293
|
+
"UpdateParamTypeDef",
|
|
294
|
+
"UpdatePodIdentityAssociationRequestTypeDef",
|
|
295
|
+
"UpdatePodIdentityAssociationResponseTypeDef",
|
|
296
|
+
"UpdateTaintsPayloadTypeDef",
|
|
297
|
+
"UpdateTypeDef",
|
|
298
|
+
"UpgradePolicyRequestTypeDef",
|
|
299
|
+
"UpgradePolicyResponseTypeDef",
|
|
300
|
+
"VpcConfigRequestTypeDef",
|
|
301
|
+
"VpcConfigResponseTypeDef",
|
|
302
|
+
"WaiterConfigTypeDef",
|
|
303
|
+
"ZonalShiftConfigRequestTypeDef",
|
|
304
|
+
"ZonalShiftConfigResponseTypeDef",
|
|
278
305
|
)
|
|
279
306
|
|
|
280
|
-
AccessConfigResponseTypeDef
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
"authenticationMode": NotRequired[AuthenticationModeType],
|
|
285
|
-
},
|
|
286
|
-
)
|
|
307
|
+
class AccessConfigResponseTypeDef(TypedDict):
|
|
308
|
+
bootstrapClusterCreatorAdminPermissions: NotRequired[bool]
|
|
309
|
+
authenticationMode: NotRequired[AuthenticationModeType]
|
|
310
|
+
|
|
287
311
|
AccessEntryTypeDef = TypedDict(
|
|
288
312
|
"AccessEntryTypeDef",
|
|
289
313
|
{
|
|
@@ -298,20 +322,11 @@ AccessEntryTypeDef = TypedDict(
|
|
|
298
322
|
"type": NotRequired[str],
|
|
299
323
|
},
|
|
300
324
|
)
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
},
|
|
307
|
-
)
|
|
308
|
-
AccessScopeExtraOutputTypeDef = TypedDict(
|
|
309
|
-
"AccessScopeExtraOutputTypeDef",
|
|
310
|
-
{
|
|
311
|
-
"type": NotRequired[AccessScopeTypeType],
|
|
312
|
-
"namespaces": NotRequired[List[str]],
|
|
313
|
-
},
|
|
314
|
-
)
|
|
325
|
+
|
|
326
|
+
class AccessPolicyTypeDef(TypedDict):
|
|
327
|
+
name: NotRequired[str]
|
|
328
|
+
arn: NotRequired[str]
|
|
329
|
+
|
|
315
330
|
AccessScopeOutputTypeDef = TypedDict(
|
|
316
331
|
"AccessScopeOutputTypeDef",
|
|
317
332
|
{
|
|
@@ -326,198 +341,157 @@ AccessScopeTypeDef = TypedDict(
|
|
|
326
341
|
"namespaces": NotRequired[Sequence[str]],
|
|
327
342
|
},
|
|
328
343
|
)
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
344
|
+
|
|
345
|
+
class AddonCompatibilityDetailTypeDef(TypedDict):
|
|
346
|
+
name: NotRequired[str]
|
|
347
|
+
compatibleVersions: NotRequired[List[str]]
|
|
348
|
+
|
|
349
|
+
class AddonIssueTypeDef(TypedDict):
|
|
350
|
+
code: NotRequired[AddonIssueCodeType]
|
|
351
|
+
message: NotRequired[str]
|
|
352
|
+
resourceIds: NotRequired[List[str]]
|
|
353
|
+
|
|
354
|
+
class MarketplaceInformationTypeDef(TypedDict):
|
|
355
|
+
productId: NotRequired[str]
|
|
356
|
+
productUrl: NotRequired[str]
|
|
357
|
+
|
|
358
|
+
class AddonPodIdentityAssociationsTypeDef(TypedDict):
|
|
359
|
+
serviceAccount: str
|
|
360
|
+
roleArn: str
|
|
361
|
+
|
|
362
|
+
class AddonPodIdentityConfigurationTypeDef(TypedDict):
|
|
363
|
+
serviceAccount: NotRequired[str]
|
|
364
|
+
recommendedManagedPolicies: NotRequired[List[str]]
|
|
365
|
+
|
|
366
|
+
class CompatibilityTypeDef(TypedDict):
|
|
367
|
+
clusterVersion: NotRequired[str]
|
|
368
|
+
platformVersions: NotRequired[List[str]]
|
|
369
|
+
defaultVersion: NotRequired[bool]
|
|
370
|
+
|
|
371
|
+
class ResponseMetadataTypeDef(TypedDict):
|
|
372
|
+
RequestId: str
|
|
373
|
+
HTTPStatusCode: int
|
|
374
|
+
HTTPHeaders: Dict[str, str]
|
|
375
|
+
RetryAttempts: int
|
|
376
|
+
HostId: NotRequired[str]
|
|
377
|
+
|
|
378
|
+
class OidcIdentityProviderConfigRequestTypeDef(TypedDict):
|
|
379
|
+
identityProviderConfigName: str
|
|
380
|
+
issuerUrl: str
|
|
381
|
+
clientId: str
|
|
382
|
+
usernameClaim: NotRequired[str]
|
|
383
|
+
usernamePrefix: NotRequired[str]
|
|
384
|
+
groupsClaim: NotRequired[str]
|
|
385
|
+
groupsPrefix: NotRequired[str]
|
|
386
|
+
requiredClaims: NotRequired[Mapping[str, str]]
|
|
387
|
+
|
|
388
|
+
class AutoScalingGroupTypeDef(TypedDict):
|
|
389
|
+
name: NotRequired[str]
|
|
390
|
+
|
|
391
|
+
class BlockStorageTypeDef(TypedDict):
|
|
392
|
+
enabled: NotRequired[bool]
|
|
393
|
+
|
|
394
|
+
class CertificateTypeDef(TypedDict):
|
|
395
|
+
data: NotRequired[str]
|
|
396
|
+
|
|
397
|
+
class ClientStatTypeDef(TypedDict):
|
|
398
|
+
userAgent: NotRequired[str]
|
|
399
|
+
numberOfRequestsLast30Days: NotRequired[int]
|
|
400
|
+
lastRequestTime: NotRequired[datetime]
|
|
401
|
+
|
|
402
|
+
class ClusterIssueTypeDef(TypedDict):
|
|
403
|
+
code: NotRequired[ClusterIssueCodeType]
|
|
404
|
+
message: NotRequired[str]
|
|
405
|
+
resourceIds: NotRequired[List[str]]
|
|
406
|
+
|
|
407
|
+
class ComputeConfigResponseTypeDef(TypedDict):
|
|
408
|
+
enabled: NotRequired[bool]
|
|
409
|
+
nodePools: NotRequired[List[str]]
|
|
410
|
+
nodeRoleArn: NotRequired[str]
|
|
411
|
+
|
|
412
|
+
class ConnectorConfigResponseTypeDef(TypedDict):
|
|
413
|
+
activationId: NotRequired[str]
|
|
414
|
+
activationCode: NotRequired[str]
|
|
415
|
+
activationExpiry: NotRequired[datetime]
|
|
416
|
+
provider: NotRequired[str]
|
|
417
|
+
roleArn: NotRequired[str]
|
|
418
|
+
|
|
419
|
+
class UpgradePolicyResponseTypeDef(TypedDict):
|
|
420
|
+
supportType: NotRequired[SupportTypeType]
|
|
421
|
+
|
|
422
|
+
class VpcConfigResponseTypeDef(TypedDict):
|
|
423
|
+
subnetIds: NotRequired[List[str]]
|
|
424
|
+
securityGroupIds: NotRequired[List[str]]
|
|
425
|
+
clusterSecurityGroupId: NotRequired[str]
|
|
426
|
+
vpcId: NotRequired[str]
|
|
427
|
+
endpointPublicAccess: NotRequired[bool]
|
|
428
|
+
endpointPrivateAccess: NotRequired[bool]
|
|
429
|
+
publicAccessCidrs: NotRequired[List[str]]
|
|
430
|
+
|
|
431
|
+
class ZonalShiftConfigResponseTypeDef(TypedDict):
|
|
432
|
+
enabled: NotRequired[bool]
|
|
433
|
+
|
|
434
|
+
class ClusterVersionInformationTypeDef(TypedDict):
|
|
435
|
+
clusterVersion: NotRequired[str]
|
|
436
|
+
clusterType: NotRequired[str]
|
|
437
|
+
defaultPlatformVersion: NotRequired[str]
|
|
438
|
+
defaultVersion: NotRequired[bool]
|
|
439
|
+
releaseDate: NotRequired[datetime]
|
|
440
|
+
endOfStandardSupportDate: NotRequired[datetime]
|
|
441
|
+
endOfExtendedSupportDate: NotRequired[datetime]
|
|
442
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
443
|
+
versionStatus: NotRequired[VersionStatusType]
|
|
444
|
+
kubernetesPatchVersion: NotRequired[str]
|
|
445
|
+
|
|
446
|
+
class ComputeConfigRequestTypeDef(TypedDict):
|
|
447
|
+
enabled: NotRequired[bool]
|
|
448
|
+
nodePools: NotRequired[Sequence[str]]
|
|
449
|
+
nodeRoleArn: NotRequired[str]
|
|
450
|
+
|
|
451
|
+
class ConnectorConfigRequestTypeDef(TypedDict):
|
|
452
|
+
roleArn: str
|
|
453
|
+
provider: ConnectorConfigProviderType
|
|
454
|
+
|
|
455
|
+
class ControlPlanePlacementRequestTypeDef(TypedDict):
|
|
456
|
+
groupName: NotRequired[str]
|
|
457
|
+
|
|
458
|
+
class ControlPlanePlacementResponseTypeDef(TypedDict):
|
|
459
|
+
groupName: NotRequired[str]
|
|
460
|
+
|
|
461
|
+
class CreateAccessConfigRequestTypeDef(TypedDict):
|
|
462
|
+
bootstrapClusterCreatorAdminPermissions: NotRequired[bool]
|
|
463
|
+
authenticationMode: NotRequired[AuthenticationModeType]
|
|
464
|
+
|
|
465
|
+
CreateAccessEntryRequestTypeDef = TypedDict(
|
|
466
|
+
"CreateAccessEntryRequestTypeDef",
|
|
339
467
|
{
|
|
340
|
-
"
|
|
341
|
-
"
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
"serviceAccount": str,
|
|
348
|
-
"roleArn": str,
|
|
349
|
-
},
|
|
350
|
-
)
|
|
351
|
-
AddonPodIdentityConfigurationTypeDef = TypedDict(
|
|
352
|
-
"AddonPodIdentityConfigurationTypeDef",
|
|
353
|
-
{
|
|
354
|
-
"serviceAccount": NotRequired[str],
|
|
355
|
-
"recommendedManagedPolicies": NotRequired[List[str]],
|
|
356
|
-
},
|
|
357
|
-
)
|
|
358
|
-
CompatibilityTypeDef = TypedDict(
|
|
359
|
-
"CompatibilityTypeDef",
|
|
360
|
-
{
|
|
361
|
-
"clusterVersion": NotRequired[str],
|
|
362
|
-
"platformVersions": NotRequired[List[str]],
|
|
363
|
-
"defaultVersion": NotRequired[bool],
|
|
364
|
-
},
|
|
365
|
-
)
|
|
366
|
-
ResponseMetadataTypeDef = TypedDict(
|
|
367
|
-
"ResponseMetadataTypeDef",
|
|
368
|
-
{
|
|
369
|
-
"RequestId": str,
|
|
370
|
-
"HTTPStatusCode": int,
|
|
371
|
-
"HTTPHeaders": Dict[str, str],
|
|
372
|
-
"RetryAttempts": int,
|
|
373
|
-
"HostId": NotRequired[str],
|
|
374
|
-
},
|
|
375
|
-
)
|
|
376
|
-
OidcIdentityProviderConfigRequestTypeDef = TypedDict(
|
|
377
|
-
"OidcIdentityProviderConfigRequestTypeDef",
|
|
378
|
-
{
|
|
379
|
-
"identityProviderConfigName": str,
|
|
380
|
-
"issuerUrl": str,
|
|
381
|
-
"clientId": str,
|
|
382
|
-
"usernameClaim": NotRequired[str],
|
|
383
|
-
"usernamePrefix": NotRequired[str],
|
|
384
|
-
"groupsClaim": NotRequired[str],
|
|
385
|
-
"groupsPrefix": NotRequired[str],
|
|
386
|
-
"requiredClaims": NotRequired[Mapping[str, str]],
|
|
387
|
-
},
|
|
388
|
-
)
|
|
389
|
-
AutoScalingGroupTypeDef = TypedDict(
|
|
390
|
-
"AutoScalingGroupTypeDef",
|
|
391
|
-
{
|
|
392
|
-
"name": NotRequired[str],
|
|
393
|
-
},
|
|
394
|
-
)
|
|
395
|
-
CertificateTypeDef = TypedDict(
|
|
396
|
-
"CertificateTypeDef",
|
|
397
|
-
{
|
|
398
|
-
"data": NotRequired[str],
|
|
399
|
-
},
|
|
400
|
-
)
|
|
401
|
-
ClientStatTypeDef = TypedDict(
|
|
402
|
-
"ClientStatTypeDef",
|
|
403
|
-
{
|
|
404
|
-
"userAgent": NotRequired[str],
|
|
405
|
-
"numberOfRequestsLast30Days": NotRequired[int],
|
|
406
|
-
"lastRequestTime": NotRequired[datetime],
|
|
407
|
-
},
|
|
408
|
-
)
|
|
409
|
-
ClusterIssueTypeDef = TypedDict(
|
|
410
|
-
"ClusterIssueTypeDef",
|
|
411
|
-
{
|
|
412
|
-
"code": NotRequired[ClusterIssueCodeType],
|
|
413
|
-
"message": NotRequired[str],
|
|
414
|
-
"resourceIds": NotRequired[List[str]],
|
|
415
|
-
},
|
|
416
|
-
)
|
|
417
|
-
ConnectorConfigResponseTypeDef = TypedDict(
|
|
418
|
-
"ConnectorConfigResponseTypeDef",
|
|
419
|
-
{
|
|
420
|
-
"activationId": NotRequired[str],
|
|
421
|
-
"activationCode": NotRequired[str],
|
|
422
|
-
"activationExpiry": NotRequired[datetime],
|
|
423
|
-
"provider": NotRequired[str],
|
|
424
|
-
"roleArn": NotRequired[str],
|
|
425
|
-
},
|
|
426
|
-
)
|
|
427
|
-
KubernetesNetworkConfigResponseTypeDef = TypedDict(
|
|
428
|
-
"KubernetesNetworkConfigResponseTypeDef",
|
|
429
|
-
{
|
|
430
|
-
"serviceIpv4Cidr": NotRequired[str],
|
|
431
|
-
"serviceIpv6Cidr": NotRequired[str],
|
|
432
|
-
"ipFamily": NotRequired[IpFamilyType],
|
|
433
|
-
},
|
|
434
|
-
)
|
|
435
|
-
UpgradePolicyResponseTypeDef = TypedDict(
|
|
436
|
-
"UpgradePolicyResponseTypeDef",
|
|
437
|
-
{
|
|
438
|
-
"supportType": NotRequired[SupportTypeType],
|
|
439
|
-
},
|
|
440
|
-
)
|
|
441
|
-
VpcConfigResponseTypeDef = TypedDict(
|
|
442
|
-
"VpcConfigResponseTypeDef",
|
|
443
|
-
{
|
|
444
|
-
"subnetIds": NotRequired[List[str]],
|
|
445
|
-
"securityGroupIds": NotRequired[List[str]],
|
|
446
|
-
"clusterSecurityGroupId": NotRequired[str],
|
|
447
|
-
"vpcId": NotRequired[str],
|
|
448
|
-
"endpointPublicAccess": NotRequired[bool],
|
|
449
|
-
"endpointPrivateAccess": NotRequired[bool],
|
|
450
|
-
"publicAccessCidrs": NotRequired[List[str]],
|
|
451
|
-
},
|
|
452
|
-
)
|
|
453
|
-
ConnectorConfigRequestTypeDef = TypedDict(
|
|
454
|
-
"ConnectorConfigRequestTypeDef",
|
|
455
|
-
{
|
|
456
|
-
"roleArn": str,
|
|
457
|
-
"provider": ConnectorConfigProviderType,
|
|
458
|
-
},
|
|
459
|
-
)
|
|
460
|
-
ControlPlanePlacementRequestTypeDef = TypedDict(
|
|
461
|
-
"ControlPlanePlacementRequestTypeDef",
|
|
462
|
-
{
|
|
463
|
-
"groupName": NotRequired[str],
|
|
464
|
-
},
|
|
465
|
-
)
|
|
466
|
-
ControlPlanePlacementResponseTypeDef = TypedDict(
|
|
467
|
-
"ControlPlanePlacementResponseTypeDef",
|
|
468
|
-
{
|
|
469
|
-
"groupName": NotRequired[str],
|
|
470
|
-
},
|
|
471
|
-
)
|
|
472
|
-
CreateAccessConfigRequestTypeDef = TypedDict(
|
|
473
|
-
"CreateAccessConfigRequestTypeDef",
|
|
474
|
-
{
|
|
475
|
-
"bootstrapClusterCreatorAdminPermissions": NotRequired[bool],
|
|
476
|
-
"authenticationMode": NotRequired[AuthenticationModeType],
|
|
477
|
-
},
|
|
478
|
-
)
|
|
479
|
-
CreateAccessEntryRequestRequestTypeDef = TypedDict(
|
|
480
|
-
"CreateAccessEntryRequestRequestTypeDef",
|
|
481
|
-
{
|
|
482
|
-
"clusterName": str,
|
|
483
|
-
"principalArn": str,
|
|
484
|
-
"kubernetesGroups": NotRequired[Sequence[str]],
|
|
485
|
-
"tags": NotRequired[Mapping[str, str]],
|
|
486
|
-
"clientRequestToken": NotRequired[str],
|
|
487
|
-
"username": NotRequired[str],
|
|
488
|
-
"type": NotRequired[str],
|
|
489
|
-
},
|
|
490
|
-
)
|
|
491
|
-
KubernetesNetworkConfigRequestTypeDef = TypedDict(
|
|
492
|
-
"KubernetesNetworkConfigRequestTypeDef",
|
|
493
|
-
{
|
|
494
|
-
"serviceIpv4Cidr": NotRequired[str],
|
|
495
|
-
"ipFamily": NotRequired[IpFamilyType],
|
|
496
|
-
},
|
|
497
|
-
)
|
|
498
|
-
UpgradePolicyRequestTypeDef = TypedDict(
|
|
499
|
-
"UpgradePolicyRequestTypeDef",
|
|
500
|
-
{
|
|
501
|
-
"supportType": NotRequired[SupportTypeType],
|
|
502
|
-
},
|
|
503
|
-
)
|
|
504
|
-
VpcConfigRequestTypeDef = TypedDict(
|
|
505
|
-
"VpcConfigRequestTypeDef",
|
|
506
|
-
{
|
|
507
|
-
"subnetIds": NotRequired[Sequence[str]],
|
|
508
|
-
"securityGroupIds": NotRequired[Sequence[str]],
|
|
509
|
-
"endpointPublicAccess": NotRequired[bool],
|
|
510
|
-
"endpointPrivateAccess": NotRequired[bool],
|
|
511
|
-
"publicAccessCidrs": NotRequired[Sequence[str]],
|
|
512
|
-
},
|
|
513
|
-
)
|
|
514
|
-
EksAnywhereSubscriptionTermTypeDef = TypedDict(
|
|
515
|
-
"EksAnywhereSubscriptionTermTypeDef",
|
|
516
|
-
{
|
|
517
|
-
"duration": NotRequired[int],
|
|
518
|
-
"unit": NotRequired[Literal["MONTHS"]],
|
|
468
|
+
"clusterName": str,
|
|
469
|
+
"principalArn": str,
|
|
470
|
+
"kubernetesGroups": NotRequired[Sequence[str]],
|
|
471
|
+
"tags": NotRequired[Mapping[str, str]],
|
|
472
|
+
"clientRequestToken": NotRequired[str],
|
|
473
|
+
"username": NotRequired[str],
|
|
474
|
+
"type": NotRequired[str],
|
|
519
475
|
},
|
|
520
476
|
)
|
|
477
|
+
|
|
478
|
+
class UpgradePolicyRequestTypeDef(TypedDict):
|
|
479
|
+
supportType: NotRequired[SupportTypeType]
|
|
480
|
+
|
|
481
|
+
class VpcConfigRequestTypeDef(TypedDict):
|
|
482
|
+
subnetIds: NotRequired[Sequence[str]]
|
|
483
|
+
securityGroupIds: NotRequired[Sequence[str]]
|
|
484
|
+
endpointPublicAccess: NotRequired[bool]
|
|
485
|
+
endpointPrivateAccess: NotRequired[bool]
|
|
486
|
+
publicAccessCidrs: NotRequired[Sequence[str]]
|
|
487
|
+
|
|
488
|
+
class ZonalShiftConfigRequestTypeDef(TypedDict):
|
|
489
|
+
enabled: NotRequired[bool]
|
|
490
|
+
|
|
491
|
+
class EksAnywhereSubscriptionTermTypeDef(TypedDict):
|
|
492
|
+
duration: NotRequired[int]
|
|
493
|
+
unit: NotRequired[Literal["MONTHS"]]
|
|
494
|
+
|
|
521
495
|
LaunchTemplateSpecificationTypeDef = TypedDict(
|
|
522
496
|
"LaunchTemplateSpecificationTypeDef",
|
|
523
497
|
{
|
|
@@ -526,1043 +500,752 @@ LaunchTemplateSpecificationTypeDef = TypedDict(
|
|
|
526
500
|
"id": NotRequired[str],
|
|
527
501
|
},
|
|
528
502
|
)
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
)
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
"ownerArn": NotRequired[str],
|
|
583
|
-
},
|
|
584
|
-
)
|
|
585
|
-
DeleteAccessEntryRequestRequestTypeDef = TypedDict(
|
|
586
|
-
"DeleteAccessEntryRequestRequestTypeDef",
|
|
587
|
-
{
|
|
588
|
-
"clusterName": str,
|
|
589
|
-
"principalArn": str,
|
|
590
|
-
},
|
|
591
|
-
)
|
|
592
|
-
DeleteAddonRequestRequestTypeDef = TypedDict(
|
|
593
|
-
"DeleteAddonRequestRequestTypeDef",
|
|
594
|
-
{
|
|
595
|
-
"clusterName": str,
|
|
596
|
-
"addonName": str,
|
|
597
|
-
"preserve": NotRequired[bool],
|
|
598
|
-
},
|
|
599
|
-
)
|
|
600
|
-
DeleteClusterRequestRequestTypeDef = TypedDict(
|
|
601
|
-
"DeleteClusterRequestRequestTypeDef",
|
|
602
|
-
{
|
|
603
|
-
"name": str,
|
|
604
|
-
},
|
|
605
|
-
)
|
|
606
|
-
DeleteEksAnywhereSubscriptionRequestRequestTypeDef = TypedDict(
|
|
607
|
-
"DeleteEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
608
|
-
{
|
|
609
|
-
"id": str,
|
|
610
|
-
},
|
|
611
|
-
)
|
|
612
|
-
DeleteFargateProfileRequestRequestTypeDef = TypedDict(
|
|
613
|
-
"DeleteFargateProfileRequestRequestTypeDef",
|
|
614
|
-
{
|
|
615
|
-
"clusterName": str,
|
|
616
|
-
"fargateProfileName": str,
|
|
617
|
-
},
|
|
618
|
-
)
|
|
619
|
-
DeleteNodegroupRequestRequestTypeDef = TypedDict(
|
|
620
|
-
"DeleteNodegroupRequestRequestTypeDef",
|
|
621
|
-
{
|
|
622
|
-
"clusterName": str,
|
|
623
|
-
"nodegroupName": str,
|
|
624
|
-
},
|
|
625
|
-
)
|
|
626
|
-
DeletePodIdentityAssociationRequestRequestTypeDef = TypedDict(
|
|
627
|
-
"DeletePodIdentityAssociationRequestRequestTypeDef",
|
|
628
|
-
{
|
|
629
|
-
"clusterName": str,
|
|
630
|
-
"associationId": str,
|
|
631
|
-
},
|
|
632
|
-
)
|
|
633
|
-
DeregisterClusterRequestRequestTypeDef = TypedDict(
|
|
634
|
-
"DeregisterClusterRequestRequestTypeDef",
|
|
635
|
-
{
|
|
636
|
-
"name": str,
|
|
637
|
-
},
|
|
638
|
-
)
|
|
639
|
-
DescribeAccessEntryRequestRequestTypeDef = TypedDict(
|
|
640
|
-
"DescribeAccessEntryRequestRequestTypeDef",
|
|
641
|
-
{
|
|
642
|
-
"clusterName": str,
|
|
643
|
-
"principalArn": str,
|
|
644
|
-
},
|
|
645
|
-
)
|
|
646
|
-
DescribeAddonConfigurationRequestRequestTypeDef = TypedDict(
|
|
647
|
-
"DescribeAddonConfigurationRequestRequestTypeDef",
|
|
648
|
-
{
|
|
649
|
-
"addonName": str,
|
|
650
|
-
"addonVersion": str,
|
|
651
|
-
},
|
|
652
|
-
)
|
|
653
|
-
WaiterConfigTypeDef = TypedDict(
|
|
654
|
-
"WaiterConfigTypeDef",
|
|
655
|
-
{
|
|
656
|
-
"Delay": NotRequired[int],
|
|
657
|
-
"MaxAttempts": NotRequired[int],
|
|
658
|
-
},
|
|
659
|
-
)
|
|
660
|
-
DescribeAddonRequestRequestTypeDef = TypedDict(
|
|
661
|
-
"DescribeAddonRequestRequestTypeDef",
|
|
662
|
-
{
|
|
663
|
-
"clusterName": str,
|
|
664
|
-
"addonName": str,
|
|
665
|
-
},
|
|
666
|
-
)
|
|
667
|
-
PaginatorConfigTypeDef = TypedDict(
|
|
668
|
-
"PaginatorConfigTypeDef",
|
|
669
|
-
{
|
|
670
|
-
"MaxItems": NotRequired[int],
|
|
671
|
-
"PageSize": NotRequired[int],
|
|
672
|
-
"StartingToken": NotRequired[str],
|
|
673
|
-
},
|
|
674
|
-
)
|
|
675
|
-
DescribeAddonVersionsRequestRequestTypeDef = TypedDict(
|
|
676
|
-
"DescribeAddonVersionsRequestRequestTypeDef",
|
|
677
|
-
{
|
|
678
|
-
"kubernetesVersion": NotRequired[str],
|
|
679
|
-
"maxResults": NotRequired[int],
|
|
680
|
-
"nextToken": NotRequired[str],
|
|
681
|
-
"addonName": NotRequired[str],
|
|
682
|
-
"types": NotRequired[Sequence[str]],
|
|
683
|
-
"publishers": NotRequired[Sequence[str]],
|
|
684
|
-
"owners": NotRequired[Sequence[str]],
|
|
685
|
-
},
|
|
686
|
-
)
|
|
687
|
-
DescribeClusterRequestRequestTypeDef = TypedDict(
|
|
688
|
-
"DescribeClusterRequestRequestTypeDef",
|
|
689
|
-
{
|
|
690
|
-
"name": str,
|
|
691
|
-
},
|
|
692
|
-
)
|
|
693
|
-
DescribeEksAnywhereSubscriptionRequestRequestTypeDef = TypedDict(
|
|
694
|
-
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
695
|
-
{
|
|
696
|
-
"id": str,
|
|
697
|
-
},
|
|
698
|
-
)
|
|
699
|
-
DescribeFargateProfileRequestRequestTypeDef = TypedDict(
|
|
700
|
-
"DescribeFargateProfileRequestRequestTypeDef",
|
|
701
|
-
{
|
|
702
|
-
"clusterName": str,
|
|
703
|
-
"fargateProfileName": str,
|
|
704
|
-
},
|
|
705
|
-
)
|
|
706
|
-
IdentityProviderConfigTypeDef = TypedDict(
|
|
707
|
-
"IdentityProviderConfigTypeDef",
|
|
708
|
-
{
|
|
709
|
-
"type": str,
|
|
710
|
-
"name": str,
|
|
711
|
-
},
|
|
712
|
-
)
|
|
713
|
-
DescribeInsightRequestRequestTypeDef = TypedDict(
|
|
714
|
-
"DescribeInsightRequestRequestTypeDef",
|
|
715
|
-
{
|
|
716
|
-
"clusterName": str,
|
|
717
|
-
"id": str,
|
|
718
|
-
},
|
|
719
|
-
)
|
|
720
|
-
DescribeNodegroupRequestRequestTypeDef = TypedDict(
|
|
721
|
-
"DescribeNodegroupRequestRequestTypeDef",
|
|
722
|
-
{
|
|
723
|
-
"clusterName": str,
|
|
724
|
-
"nodegroupName": str,
|
|
725
|
-
},
|
|
726
|
-
)
|
|
727
|
-
DescribePodIdentityAssociationRequestRequestTypeDef = TypedDict(
|
|
728
|
-
"DescribePodIdentityAssociationRequestRequestTypeDef",
|
|
729
|
-
{
|
|
730
|
-
"clusterName": str,
|
|
731
|
-
"associationId": str,
|
|
732
|
-
},
|
|
733
|
-
)
|
|
734
|
-
DescribeUpdateRequestRequestTypeDef = TypedDict(
|
|
735
|
-
"DescribeUpdateRequestRequestTypeDef",
|
|
736
|
-
{
|
|
737
|
-
"name": str,
|
|
738
|
-
"updateId": str,
|
|
739
|
-
"nodegroupName": NotRequired[str],
|
|
740
|
-
"addonName": NotRequired[str],
|
|
741
|
-
},
|
|
742
|
-
)
|
|
743
|
-
DisassociateAccessPolicyRequestRequestTypeDef = TypedDict(
|
|
744
|
-
"DisassociateAccessPolicyRequestRequestTypeDef",
|
|
745
|
-
{
|
|
746
|
-
"clusterName": str,
|
|
747
|
-
"principalArn": str,
|
|
748
|
-
"policyArn": str,
|
|
749
|
-
},
|
|
750
|
-
)
|
|
751
|
-
ProviderTypeDef = TypedDict(
|
|
752
|
-
"ProviderTypeDef",
|
|
753
|
-
{
|
|
754
|
-
"keyArn": NotRequired[str],
|
|
755
|
-
},
|
|
756
|
-
)
|
|
757
|
-
ErrorDetailTypeDef = TypedDict(
|
|
758
|
-
"ErrorDetailTypeDef",
|
|
759
|
-
{
|
|
760
|
-
"errorCode": NotRequired[ErrorCodeType],
|
|
761
|
-
"errorMessage": NotRequired[str],
|
|
762
|
-
"resourceIds": NotRequired[List[str]],
|
|
763
|
-
},
|
|
764
|
-
)
|
|
765
|
-
FargateProfileIssueTypeDef = TypedDict(
|
|
766
|
-
"FargateProfileIssueTypeDef",
|
|
767
|
-
{
|
|
768
|
-
"code": NotRequired[FargateProfileIssueCodeType],
|
|
769
|
-
"message": NotRequired[str],
|
|
770
|
-
"resourceIds": NotRequired[List[str]],
|
|
771
|
-
},
|
|
772
|
-
)
|
|
773
|
-
FargateProfileSelectorOutputTypeDef = TypedDict(
|
|
774
|
-
"FargateProfileSelectorOutputTypeDef",
|
|
775
|
-
{
|
|
776
|
-
"namespace": NotRequired[str],
|
|
777
|
-
"labels": NotRequired[Dict[str, str]],
|
|
778
|
-
},
|
|
779
|
-
)
|
|
780
|
-
FargateProfileSelectorTypeDef = TypedDict(
|
|
781
|
-
"FargateProfileSelectorTypeDef",
|
|
782
|
-
{
|
|
783
|
-
"namespace": NotRequired[str],
|
|
784
|
-
"labels": NotRequired[Mapping[str, str]],
|
|
785
|
-
},
|
|
786
|
-
)
|
|
787
|
-
OidcIdentityProviderConfigTypeDef = TypedDict(
|
|
788
|
-
"OidcIdentityProviderConfigTypeDef",
|
|
789
|
-
{
|
|
790
|
-
"identityProviderConfigName": NotRequired[str],
|
|
791
|
-
"identityProviderConfigArn": NotRequired[str],
|
|
792
|
-
"clusterName": NotRequired[str],
|
|
793
|
-
"issuerUrl": NotRequired[str],
|
|
794
|
-
"clientId": NotRequired[str],
|
|
795
|
-
"usernameClaim": NotRequired[str],
|
|
796
|
-
"usernamePrefix": NotRequired[str],
|
|
797
|
-
"groupsClaim": NotRequired[str],
|
|
798
|
-
"groupsPrefix": NotRequired[str],
|
|
799
|
-
"requiredClaims": NotRequired[Dict[str, str]],
|
|
800
|
-
"tags": NotRequired[Dict[str, str]],
|
|
801
|
-
"status": NotRequired[ConfigStatusType],
|
|
802
|
-
},
|
|
803
|
-
)
|
|
804
|
-
OIDCTypeDef = TypedDict(
|
|
805
|
-
"OIDCTypeDef",
|
|
806
|
-
{
|
|
807
|
-
"issuer": NotRequired[str],
|
|
808
|
-
},
|
|
809
|
-
)
|
|
810
|
-
InsightStatusTypeDef = TypedDict(
|
|
811
|
-
"InsightStatusTypeDef",
|
|
812
|
-
{
|
|
813
|
-
"status": NotRequired[InsightStatusValueType],
|
|
814
|
-
"reason": NotRequired[str],
|
|
815
|
-
},
|
|
816
|
-
)
|
|
817
|
-
InsightsFilterTypeDef = TypedDict(
|
|
818
|
-
"InsightsFilterTypeDef",
|
|
819
|
-
{
|
|
820
|
-
"categories": NotRequired[Sequence[Literal["UPGRADE_READINESS"]]],
|
|
821
|
-
"kubernetesVersions": NotRequired[Sequence[str]],
|
|
822
|
-
"statuses": NotRequired[Sequence[InsightStatusValueType]],
|
|
823
|
-
},
|
|
824
|
-
)
|
|
825
|
-
IssueTypeDef = TypedDict(
|
|
826
|
-
"IssueTypeDef",
|
|
827
|
-
{
|
|
828
|
-
"code": NotRequired[NodegroupIssueCodeType],
|
|
829
|
-
"message": NotRequired[str],
|
|
830
|
-
"resourceIds": NotRequired[List[str]],
|
|
831
|
-
},
|
|
832
|
-
)
|
|
833
|
-
ListAccessEntriesRequestRequestTypeDef = TypedDict(
|
|
834
|
-
"ListAccessEntriesRequestRequestTypeDef",
|
|
835
|
-
{
|
|
836
|
-
"clusterName": str,
|
|
837
|
-
"associatedPolicyArn": NotRequired[str],
|
|
838
|
-
"maxResults": NotRequired[int],
|
|
839
|
-
"nextToken": NotRequired[str],
|
|
840
|
-
},
|
|
841
|
-
)
|
|
842
|
-
ListAccessPoliciesRequestRequestTypeDef = TypedDict(
|
|
843
|
-
"ListAccessPoliciesRequestRequestTypeDef",
|
|
844
|
-
{
|
|
845
|
-
"maxResults": NotRequired[int],
|
|
846
|
-
"nextToken": NotRequired[str],
|
|
847
|
-
},
|
|
848
|
-
)
|
|
849
|
-
ListAddonsRequestRequestTypeDef = TypedDict(
|
|
850
|
-
"ListAddonsRequestRequestTypeDef",
|
|
851
|
-
{
|
|
852
|
-
"clusterName": str,
|
|
853
|
-
"maxResults": NotRequired[int],
|
|
854
|
-
"nextToken": NotRequired[str],
|
|
855
|
-
},
|
|
856
|
-
)
|
|
857
|
-
ListAssociatedAccessPoliciesRequestRequestTypeDef = TypedDict(
|
|
858
|
-
"ListAssociatedAccessPoliciesRequestRequestTypeDef",
|
|
859
|
-
{
|
|
860
|
-
"clusterName": str,
|
|
861
|
-
"principalArn": str,
|
|
862
|
-
"maxResults": NotRequired[int],
|
|
863
|
-
"nextToken": NotRequired[str],
|
|
864
|
-
},
|
|
865
|
-
)
|
|
866
|
-
ListClustersRequestRequestTypeDef = TypedDict(
|
|
867
|
-
"ListClustersRequestRequestTypeDef",
|
|
868
|
-
{
|
|
869
|
-
"maxResults": NotRequired[int],
|
|
870
|
-
"nextToken": NotRequired[str],
|
|
871
|
-
"include": NotRequired[Sequence[str]],
|
|
872
|
-
},
|
|
873
|
-
)
|
|
874
|
-
ListEksAnywhereSubscriptionsRequestRequestTypeDef = TypedDict(
|
|
875
|
-
"ListEksAnywhereSubscriptionsRequestRequestTypeDef",
|
|
876
|
-
{
|
|
877
|
-
"maxResults": NotRequired[int],
|
|
878
|
-
"nextToken": NotRequired[str],
|
|
879
|
-
"includeStatus": NotRequired[Sequence[EksAnywhereSubscriptionStatusType]],
|
|
880
|
-
},
|
|
881
|
-
)
|
|
882
|
-
ListFargateProfilesRequestRequestTypeDef = TypedDict(
|
|
883
|
-
"ListFargateProfilesRequestRequestTypeDef",
|
|
884
|
-
{
|
|
885
|
-
"clusterName": str,
|
|
886
|
-
"maxResults": NotRequired[int],
|
|
887
|
-
"nextToken": NotRequired[str],
|
|
888
|
-
},
|
|
889
|
-
)
|
|
890
|
-
ListIdentityProviderConfigsRequestRequestTypeDef = TypedDict(
|
|
891
|
-
"ListIdentityProviderConfigsRequestRequestTypeDef",
|
|
892
|
-
{
|
|
893
|
-
"clusterName": str,
|
|
894
|
-
"maxResults": NotRequired[int],
|
|
895
|
-
"nextToken": NotRequired[str],
|
|
896
|
-
},
|
|
897
|
-
)
|
|
898
|
-
ListNodegroupsRequestRequestTypeDef = TypedDict(
|
|
899
|
-
"ListNodegroupsRequestRequestTypeDef",
|
|
900
|
-
{
|
|
901
|
-
"clusterName": str,
|
|
902
|
-
"maxResults": NotRequired[int],
|
|
903
|
-
"nextToken": NotRequired[str],
|
|
904
|
-
},
|
|
905
|
-
)
|
|
906
|
-
ListPodIdentityAssociationsRequestRequestTypeDef = TypedDict(
|
|
907
|
-
"ListPodIdentityAssociationsRequestRequestTypeDef",
|
|
908
|
-
{
|
|
909
|
-
"clusterName": str,
|
|
910
|
-
"namespace": NotRequired[str],
|
|
911
|
-
"serviceAccount": NotRequired[str],
|
|
912
|
-
"maxResults": NotRequired[int],
|
|
913
|
-
"nextToken": NotRequired[str],
|
|
914
|
-
},
|
|
915
|
-
)
|
|
916
|
-
PodIdentityAssociationSummaryTypeDef = TypedDict(
|
|
917
|
-
"PodIdentityAssociationSummaryTypeDef",
|
|
918
|
-
{
|
|
919
|
-
"clusterName": NotRequired[str],
|
|
920
|
-
"namespace": NotRequired[str],
|
|
921
|
-
"serviceAccount": NotRequired[str],
|
|
922
|
-
"associationArn": NotRequired[str],
|
|
923
|
-
"associationId": NotRequired[str],
|
|
924
|
-
"ownerArn": NotRequired[str],
|
|
925
|
-
},
|
|
926
|
-
)
|
|
927
|
-
ListTagsForResourceRequestRequestTypeDef = TypedDict(
|
|
928
|
-
"ListTagsForResourceRequestRequestTypeDef",
|
|
929
|
-
{
|
|
930
|
-
"resourceArn": str,
|
|
931
|
-
},
|
|
932
|
-
)
|
|
933
|
-
ListUpdatesRequestRequestTypeDef = TypedDict(
|
|
934
|
-
"ListUpdatesRequestRequestTypeDef",
|
|
935
|
-
{
|
|
936
|
-
"name": str,
|
|
937
|
-
"nodegroupName": NotRequired[str],
|
|
938
|
-
"addonName": NotRequired[str],
|
|
939
|
-
"nextToken": NotRequired[str],
|
|
940
|
-
"maxResults": NotRequired[int],
|
|
941
|
-
},
|
|
942
|
-
)
|
|
943
|
-
LogSetupOutputTypeDef = TypedDict(
|
|
944
|
-
"LogSetupOutputTypeDef",
|
|
945
|
-
{
|
|
946
|
-
"types": NotRequired[List[LogTypeType]],
|
|
947
|
-
"enabled": NotRequired[bool],
|
|
948
|
-
},
|
|
949
|
-
)
|
|
950
|
-
LogSetupTypeDef = TypedDict(
|
|
951
|
-
"LogSetupTypeDef",
|
|
952
|
-
{
|
|
953
|
-
"types": NotRequired[Sequence[LogTypeType]],
|
|
954
|
-
"enabled": NotRequired[bool],
|
|
955
|
-
},
|
|
956
|
-
)
|
|
957
|
-
RemoteAccessConfigOutputTypeDef = TypedDict(
|
|
958
|
-
"RemoteAccessConfigOutputTypeDef",
|
|
959
|
-
{
|
|
960
|
-
"ec2SshKey": NotRequired[str],
|
|
961
|
-
"sourceSecurityGroups": NotRequired[List[str]],
|
|
962
|
-
},
|
|
963
|
-
)
|
|
964
|
-
TagResourceRequestRequestTypeDef = TypedDict(
|
|
965
|
-
"TagResourceRequestRequestTypeDef",
|
|
966
|
-
{
|
|
967
|
-
"resourceArn": str,
|
|
968
|
-
"tags": Mapping[str, str],
|
|
969
|
-
},
|
|
970
|
-
)
|
|
971
|
-
UntagResourceRequestRequestTypeDef = TypedDict(
|
|
972
|
-
"UntagResourceRequestRequestTypeDef",
|
|
973
|
-
{
|
|
974
|
-
"resourceArn": str,
|
|
975
|
-
"tagKeys": Sequence[str],
|
|
976
|
-
},
|
|
977
|
-
)
|
|
978
|
-
UpdateAccessConfigRequestTypeDef = TypedDict(
|
|
979
|
-
"UpdateAccessConfigRequestTypeDef",
|
|
980
|
-
{
|
|
981
|
-
"authenticationMode": NotRequired[AuthenticationModeType],
|
|
982
|
-
},
|
|
983
|
-
)
|
|
984
|
-
UpdateAccessEntryRequestRequestTypeDef = TypedDict(
|
|
985
|
-
"UpdateAccessEntryRequestRequestTypeDef",
|
|
986
|
-
{
|
|
987
|
-
"clusterName": str,
|
|
988
|
-
"principalArn": str,
|
|
989
|
-
"kubernetesGroups": NotRequired[Sequence[str]],
|
|
990
|
-
"clientRequestToken": NotRequired[str],
|
|
991
|
-
"username": NotRequired[str],
|
|
992
|
-
},
|
|
993
|
-
)
|
|
994
|
-
UpdateClusterVersionRequestRequestTypeDef = TypedDict(
|
|
995
|
-
"UpdateClusterVersionRequestRequestTypeDef",
|
|
996
|
-
{
|
|
997
|
-
"name": str,
|
|
998
|
-
"version": str,
|
|
999
|
-
"clientRequestToken": NotRequired[str],
|
|
1000
|
-
},
|
|
1001
|
-
)
|
|
1002
|
-
UpdateEksAnywhereSubscriptionRequestRequestTypeDef = TypedDict(
|
|
1003
|
-
"UpdateEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
1004
|
-
{
|
|
1005
|
-
"id": str,
|
|
1006
|
-
"autoRenew": bool,
|
|
1007
|
-
"clientRequestToken": NotRequired[str],
|
|
1008
|
-
},
|
|
1009
|
-
)
|
|
1010
|
-
UpdateLabelsPayloadTypeDef = TypedDict(
|
|
1011
|
-
"UpdateLabelsPayloadTypeDef",
|
|
1012
|
-
{
|
|
1013
|
-
"addOrUpdateLabels": NotRequired[Mapping[str, str]],
|
|
1014
|
-
"removeLabels": NotRequired[Sequence[str]],
|
|
1015
|
-
},
|
|
1016
|
-
)
|
|
1017
|
-
UpdateParamTypeDef = TypedDict(
|
|
1018
|
-
"UpdateParamTypeDef",
|
|
1019
|
-
{
|
|
1020
|
-
"type": NotRequired[UpdateParamTypeType],
|
|
1021
|
-
"value": NotRequired[str],
|
|
1022
|
-
},
|
|
1023
|
-
)
|
|
1024
|
-
UpdatePodIdentityAssociationRequestRequestTypeDef = TypedDict(
|
|
1025
|
-
"UpdatePodIdentityAssociationRequestRequestTypeDef",
|
|
1026
|
-
{
|
|
1027
|
-
"clusterName": str,
|
|
1028
|
-
"associationId": str,
|
|
1029
|
-
"roleArn": NotRequired[str],
|
|
1030
|
-
"clientRequestToken": NotRequired[str],
|
|
1031
|
-
},
|
|
1032
|
-
)
|
|
1033
|
-
AssociatedAccessPolicyTypeDef = TypedDict(
|
|
1034
|
-
"AssociatedAccessPolicyTypeDef",
|
|
1035
|
-
{
|
|
1036
|
-
"policyArn": NotRequired[str],
|
|
1037
|
-
"accessScope": NotRequired[AccessScopeOutputTypeDef],
|
|
1038
|
-
"associatedAt": NotRequired[datetime],
|
|
1039
|
-
"modifiedAt": NotRequired[datetime],
|
|
1040
|
-
},
|
|
1041
|
-
)
|
|
1042
|
-
AccessScopeUnionTypeDef = Union[AccessScopeTypeDef, AccessScopeExtraOutputTypeDef]
|
|
1043
|
-
AssociateAccessPolicyRequestRequestTypeDef = TypedDict(
|
|
1044
|
-
"AssociateAccessPolicyRequestRequestTypeDef",
|
|
1045
|
-
{
|
|
1046
|
-
"clusterName": str,
|
|
1047
|
-
"principalArn": str,
|
|
1048
|
-
"policyArn": str,
|
|
1049
|
-
"accessScope": AccessScopeTypeDef,
|
|
1050
|
-
},
|
|
1051
|
-
)
|
|
1052
|
-
AddonHealthTypeDef = TypedDict(
|
|
1053
|
-
"AddonHealthTypeDef",
|
|
1054
|
-
{
|
|
1055
|
-
"issues": NotRequired[List[AddonIssueTypeDef]],
|
|
1056
|
-
},
|
|
1057
|
-
)
|
|
1058
|
-
CreateAddonRequestRequestTypeDef = TypedDict(
|
|
1059
|
-
"CreateAddonRequestRequestTypeDef",
|
|
1060
|
-
{
|
|
1061
|
-
"clusterName": str,
|
|
1062
|
-
"addonName": str,
|
|
1063
|
-
"addonVersion": NotRequired[str],
|
|
1064
|
-
"serviceAccountRoleArn": NotRequired[str],
|
|
1065
|
-
"resolveConflicts": NotRequired[ResolveConflictsType],
|
|
1066
|
-
"clientRequestToken": NotRequired[str],
|
|
1067
|
-
"tags": NotRequired[Mapping[str, str]],
|
|
1068
|
-
"configurationValues": NotRequired[str],
|
|
1069
|
-
"podIdentityAssociations": NotRequired[Sequence[AddonPodIdentityAssociationsTypeDef]],
|
|
1070
|
-
},
|
|
1071
|
-
)
|
|
1072
|
-
UpdateAddonRequestRequestTypeDef = TypedDict(
|
|
1073
|
-
"UpdateAddonRequestRequestTypeDef",
|
|
1074
|
-
{
|
|
1075
|
-
"clusterName": str,
|
|
1076
|
-
"addonName": str,
|
|
1077
|
-
"addonVersion": NotRequired[str],
|
|
1078
|
-
"serviceAccountRoleArn": NotRequired[str],
|
|
1079
|
-
"resolveConflicts": NotRequired[ResolveConflictsType],
|
|
1080
|
-
"clientRequestToken": NotRequired[str],
|
|
1081
|
-
"configurationValues": NotRequired[str],
|
|
1082
|
-
"podIdentityAssociations": NotRequired[Sequence[AddonPodIdentityAssociationsTypeDef]],
|
|
1083
|
-
},
|
|
1084
|
-
)
|
|
1085
|
-
AddonVersionInfoTypeDef = TypedDict(
|
|
1086
|
-
"AddonVersionInfoTypeDef",
|
|
1087
|
-
{
|
|
1088
|
-
"addonVersion": NotRequired[str],
|
|
1089
|
-
"architecture": NotRequired[List[str]],
|
|
1090
|
-
"compatibilities": NotRequired[List[CompatibilityTypeDef]],
|
|
1091
|
-
"requiresConfiguration": NotRequired[bool],
|
|
1092
|
-
"requiresIamPermissions": NotRequired[bool],
|
|
1093
|
-
},
|
|
1094
|
-
)
|
|
1095
|
-
CreateAccessEntryResponseTypeDef = TypedDict(
|
|
1096
|
-
"CreateAccessEntryResponseTypeDef",
|
|
1097
|
-
{
|
|
1098
|
-
"accessEntry": AccessEntryTypeDef,
|
|
1099
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1100
|
-
},
|
|
1101
|
-
)
|
|
1102
|
-
DescribeAccessEntryResponseTypeDef = TypedDict(
|
|
1103
|
-
"DescribeAccessEntryResponseTypeDef",
|
|
1104
|
-
{
|
|
1105
|
-
"accessEntry": AccessEntryTypeDef,
|
|
1106
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1107
|
-
},
|
|
1108
|
-
)
|
|
1109
|
-
DescribeAddonConfigurationResponseTypeDef = TypedDict(
|
|
1110
|
-
"DescribeAddonConfigurationResponseTypeDef",
|
|
1111
|
-
{
|
|
1112
|
-
"addonName": str,
|
|
1113
|
-
"addonVersion": str,
|
|
1114
|
-
"configurationSchema": str,
|
|
1115
|
-
"podIdentityConfiguration": List[AddonPodIdentityConfigurationTypeDef],
|
|
1116
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1117
|
-
},
|
|
1118
|
-
)
|
|
1119
|
-
ListAccessEntriesResponseTypeDef = TypedDict(
|
|
1120
|
-
"ListAccessEntriesResponseTypeDef",
|
|
1121
|
-
{
|
|
1122
|
-
"accessEntries": List[str],
|
|
1123
|
-
"nextToken": str,
|
|
1124
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1125
|
-
},
|
|
1126
|
-
)
|
|
1127
|
-
ListAccessPoliciesResponseTypeDef = TypedDict(
|
|
1128
|
-
"ListAccessPoliciesResponseTypeDef",
|
|
1129
|
-
{
|
|
1130
|
-
"accessPolicies": List[AccessPolicyTypeDef],
|
|
1131
|
-
"nextToken": str,
|
|
1132
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1133
|
-
},
|
|
1134
|
-
)
|
|
1135
|
-
ListAddonsResponseTypeDef = TypedDict(
|
|
1136
|
-
"ListAddonsResponseTypeDef",
|
|
1137
|
-
{
|
|
1138
|
-
"addons": List[str],
|
|
1139
|
-
"nextToken": str,
|
|
1140
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1141
|
-
},
|
|
1142
|
-
)
|
|
1143
|
-
ListClustersResponseTypeDef = TypedDict(
|
|
1144
|
-
"ListClustersResponseTypeDef",
|
|
1145
|
-
{
|
|
1146
|
-
"clusters": List[str],
|
|
1147
|
-
"nextToken": str,
|
|
1148
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1149
|
-
},
|
|
1150
|
-
)
|
|
1151
|
-
ListFargateProfilesResponseTypeDef = TypedDict(
|
|
1152
|
-
"ListFargateProfilesResponseTypeDef",
|
|
1153
|
-
{
|
|
1154
|
-
"fargateProfileNames": List[str],
|
|
1155
|
-
"nextToken": str,
|
|
1156
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1157
|
-
},
|
|
1158
|
-
)
|
|
1159
|
-
ListNodegroupsResponseTypeDef = TypedDict(
|
|
1160
|
-
"ListNodegroupsResponseTypeDef",
|
|
1161
|
-
{
|
|
1162
|
-
"nodegroups": List[str],
|
|
1163
|
-
"nextToken": str,
|
|
1164
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1165
|
-
},
|
|
1166
|
-
)
|
|
1167
|
-
ListTagsForResourceResponseTypeDef = TypedDict(
|
|
1168
|
-
"ListTagsForResourceResponseTypeDef",
|
|
1169
|
-
{
|
|
1170
|
-
"tags": Dict[str, str],
|
|
1171
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1172
|
-
},
|
|
1173
|
-
)
|
|
1174
|
-
ListUpdatesResponseTypeDef = TypedDict(
|
|
1175
|
-
"ListUpdatesResponseTypeDef",
|
|
1176
|
-
{
|
|
1177
|
-
"updateIds": List[str],
|
|
1178
|
-
"nextToken": str,
|
|
1179
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1180
|
-
},
|
|
1181
|
-
)
|
|
1182
|
-
UpdateAccessEntryResponseTypeDef = TypedDict(
|
|
1183
|
-
"UpdateAccessEntryResponseTypeDef",
|
|
1184
|
-
{
|
|
1185
|
-
"accessEntry": AccessEntryTypeDef,
|
|
1186
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1187
|
-
},
|
|
1188
|
-
)
|
|
1189
|
-
AssociateIdentityProviderConfigRequestRequestTypeDef = TypedDict(
|
|
1190
|
-
"AssociateIdentityProviderConfigRequestRequestTypeDef",
|
|
1191
|
-
{
|
|
1192
|
-
"clusterName": str,
|
|
1193
|
-
"oidc": OidcIdentityProviderConfigRequestTypeDef,
|
|
1194
|
-
"tags": NotRequired[Mapping[str, str]],
|
|
1195
|
-
"clientRequestToken": NotRequired[str],
|
|
1196
|
-
},
|
|
1197
|
-
)
|
|
1198
|
-
NodegroupResourcesTypeDef = TypedDict(
|
|
1199
|
-
"NodegroupResourcesTypeDef",
|
|
1200
|
-
{
|
|
1201
|
-
"autoScalingGroups": NotRequired[List[AutoScalingGroupTypeDef]],
|
|
1202
|
-
"remoteAccessSecurityGroup": NotRequired[str],
|
|
1203
|
-
},
|
|
1204
|
-
)
|
|
1205
|
-
DeprecationDetailTypeDef = TypedDict(
|
|
1206
|
-
"DeprecationDetailTypeDef",
|
|
1207
|
-
{
|
|
1208
|
-
"usage": NotRequired[str],
|
|
1209
|
-
"replacedWith": NotRequired[str],
|
|
1210
|
-
"stopServingVersion": NotRequired[str],
|
|
1211
|
-
"startServingReplacementVersion": NotRequired[str],
|
|
1212
|
-
"clientStats": NotRequired[List[ClientStatTypeDef]],
|
|
1213
|
-
},
|
|
1214
|
-
)
|
|
1215
|
-
ClusterHealthTypeDef = TypedDict(
|
|
1216
|
-
"ClusterHealthTypeDef",
|
|
1217
|
-
{
|
|
1218
|
-
"issues": NotRequired[List[ClusterIssueTypeDef]],
|
|
1219
|
-
},
|
|
1220
|
-
)
|
|
1221
|
-
RegisterClusterRequestRequestTypeDef = TypedDict(
|
|
1222
|
-
"RegisterClusterRequestRequestTypeDef",
|
|
1223
|
-
{
|
|
1224
|
-
"name": str,
|
|
1225
|
-
"connectorConfig": ConnectorConfigRequestTypeDef,
|
|
1226
|
-
"clientRequestToken": NotRequired[str],
|
|
1227
|
-
"tags": NotRequired[Mapping[str, str]],
|
|
1228
|
-
},
|
|
1229
|
-
)
|
|
1230
|
-
OutpostConfigRequestTypeDef = TypedDict(
|
|
1231
|
-
"OutpostConfigRequestTypeDef",
|
|
1232
|
-
{
|
|
1233
|
-
"outpostArns": Sequence[str],
|
|
1234
|
-
"controlPlaneInstanceType": str,
|
|
1235
|
-
"controlPlanePlacement": NotRequired[ControlPlanePlacementRequestTypeDef],
|
|
1236
|
-
},
|
|
1237
|
-
)
|
|
1238
|
-
OutpostConfigResponseTypeDef = TypedDict(
|
|
1239
|
-
"OutpostConfigResponseTypeDef",
|
|
1240
|
-
{
|
|
1241
|
-
"outpostArns": List[str],
|
|
1242
|
-
"controlPlaneInstanceType": str,
|
|
1243
|
-
"controlPlanePlacement": NotRequired[ControlPlanePlacementResponseTypeDef],
|
|
1244
|
-
},
|
|
1245
|
-
)
|
|
1246
|
-
CreateEksAnywhereSubscriptionRequestRequestTypeDef = TypedDict(
|
|
1247
|
-
"CreateEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
1248
|
-
{
|
|
1249
|
-
"name": str,
|
|
1250
|
-
"term": EksAnywhereSubscriptionTermTypeDef,
|
|
1251
|
-
"licenseQuantity": NotRequired[int],
|
|
1252
|
-
"licenseType": NotRequired[Literal["Cluster"]],
|
|
1253
|
-
"autoRenew": NotRequired[bool],
|
|
1254
|
-
"clientRequestToken": NotRequired[str],
|
|
1255
|
-
"tags": NotRequired[Mapping[str, str]],
|
|
1256
|
-
},
|
|
1257
|
-
)
|
|
1258
|
-
EksAnywhereSubscriptionTypeDef = TypedDict(
|
|
1259
|
-
"EksAnywhereSubscriptionTypeDef",
|
|
1260
|
-
{
|
|
1261
|
-
"id": NotRequired[str],
|
|
1262
|
-
"arn": NotRequired[str],
|
|
1263
|
-
"createdAt": NotRequired[datetime],
|
|
1264
|
-
"effectiveDate": NotRequired[datetime],
|
|
1265
|
-
"expirationDate": NotRequired[datetime],
|
|
1266
|
-
"licenseQuantity": NotRequired[int],
|
|
1267
|
-
"licenseType": NotRequired[Literal["Cluster"]],
|
|
1268
|
-
"term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
|
|
1269
|
-
"status": NotRequired[str],
|
|
1270
|
-
"autoRenew": NotRequired[bool],
|
|
1271
|
-
"licenseArns": NotRequired[List[str]],
|
|
1272
|
-
"tags": NotRequired[Dict[str, str]],
|
|
1273
|
-
},
|
|
1274
|
-
)
|
|
1275
|
-
UpdateNodegroupVersionRequestRequestTypeDef = TypedDict(
|
|
1276
|
-
"UpdateNodegroupVersionRequestRequestTypeDef",
|
|
1277
|
-
{
|
|
1278
|
-
"clusterName": str,
|
|
1279
|
-
"nodegroupName": str,
|
|
1280
|
-
"version": NotRequired[str],
|
|
1281
|
-
"releaseVersion": NotRequired[str],
|
|
1282
|
-
"launchTemplate": NotRequired[LaunchTemplateSpecificationTypeDef],
|
|
1283
|
-
"force": NotRequired[bool],
|
|
1284
|
-
"clientRequestToken": NotRequired[str],
|
|
1285
|
-
},
|
|
1286
|
-
)
|
|
1287
|
-
CreateNodegroupRequestRequestTypeDef = TypedDict(
|
|
1288
|
-
"CreateNodegroupRequestRequestTypeDef",
|
|
1289
|
-
{
|
|
1290
|
-
"clusterName": str,
|
|
1291
|
-
"nodegroupName": str,
|
|
1292
|
-
"subnets": Sequence[str],
|
|
1293
|
-
"nodeRole": str,
|
|
1294
|
-
"scalingConfig": NotRequired[NodegroupScalingConfigTypeDef],
|
|
1295
|
-
"diskSize": NotRequired[int],
|
|
1296
|
-
"instanceTypes": NotRequired[Sequence[str]],
|
|
1297
|
-
"amiType": NotRequired[AMITypesType],
|
|
1298
|
-
"remoteAccess": NotRequired[RemoteAccessConfigTypeDef],
|
|
1299
|
-
"labels": NotRequired[Mapping[str, str]],
|
|
1300
|
-
"taints": NotRequired[Sequence[TaintTypeDef]],
|
|
1301
|
-
"tags": NotRequired[Mapping[str, str]],
|
|
1302
|
-
"clientRequestToken": NotRequired[str],
|
|
1303
|
-
"launchTemplate": NotRequired[LaunchTemplateSpecificationTypeDef],
|
|
1304
|
-
"updateConfig": NotRequired[NodegroupUpdateConfigTypeDef],
|
|
1305
|
-
"capacityType": NotRequired[CapacityTypesType],
|
|
1306
|
-
"version": NotRequired[str],
|
|
1307
|
-
"releaseVersion": NotRequired[str],
|
|
1308
|
-
},
|
|
1309
|
-
)
|
|
1310
|
-
UpdateTaintsPayloadTypeDef = TypedDict(
|
|
1311
|
-
"UpdateTaintsPayloadTypeDef",
|
|
1312
|
-
{
|
|
1313
|
-
"addOrUpdateTaints": NotRequired[Sequence[TaintTypeDef]],
|
|
1314
|
-
"removeTaints": NotRequired[Sequence[TaintTypeDef]],
|
|
1315
|
-
},
|
|
1316
|
-
)
|
|
1317
|
-
CreatePodIdentityAssociationResponseTypeDef = TypedDict(
|
|
1318
|
-
"CreatePodIdentityAssociationResponseTypeDef",
|
|
1319
|
-
{
|
|
1320
|
-
"association": PodIdentityAssociationTypeDef,
|
|
1321
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1322
|
-
},
|
|
1323
|
-
)
|
|
1324
|
-
DeletePodIdentityAssociationResponseTypeDef = TypedDict(
|
|
1325
|
-
"DeletePodIdentityAssociationResponseTypeDef",
|
|
1326
|
-
{
|
|
1327
|
-
"association": PodIdentityAssociationTypeDef,
|
|
1328
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1329
|
-
},
|
|
1330
|
-
)
|
|
1331
|
-
DescribePodIdentityAssociationResponseTypeDef = TypedDict(
|
|
1332
|
-
"DescribePodIdentityAssociationResponseTypeDef",
|
|
1333
|
-
{
|
|
1334
|
-
"association": PodIdentityAssociationTypeDef,
|
|
1335
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1336
|
-
},
|
|
1337
|
-
)
|
|
1338
|
-
UpdatePodIdentityAssociationResponseTypeDef = TypedDict(
|
|
1339
|
-
"UpdatePodIdentityAssociationResponseTypeDef",
|
|
1340
|
-
{
|
|
1341
|
-
"association": PodIdentityAssociationTypeDef,
|
|
1342
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1343
|
-
},
|
|
1344
|
-
)
|
|
1345
|
-
DescribeAddonRequestAddonActiveWaitTypeDef = TypedDict(
|
|
1346
|
-
"DescribeAddonRequestAddonActiveWaitTypeDef",
|
|
1347
|
-
{
|
|
1348
|
-
"clusterName": str,
|
|
1349
|
-
"addonName": str,
|
|
1350
|
-
"WaiterConfig": NotRequired[WaiterConfigTypeDef],
|
|
1351
|
-
},
|
|
1352
|
-
)
|
|
1353
|
-
DescribeAddonRequestAddonDeletedWaitTypeDef = TypedDict(
|
|
1354
|
-
"DescribeAddonRequestAddonDeletedWaitTypeDef",
|
|
1355
|
-
{
|
|
1356
|
-
"clusterName": str,
|
|
1357
|
-
"addonName": str,
|
|
1358
|
-
"WaiterConfig": NotRequired[WaiterConfigTypeDef],
|
|
1359
|
-
},
|
|
1360
|
-
)
|
|
1361
|
-
DescribeClusterRequestClusterActiveWaitTypeDef = TypedDict(
|
|
1362
|
-
"DescribeClusterRequestClusterActiveWaitTypeDef",
|
|
1363
|
-
{
|
|
1364
|
-
"name": str,
|
|
1365
|
-
"WaiterConfig": NotRequired[WaiterConfigTypeDef],
|
|
1366
|
-
},
|
|
1367
|
-
)
|
|
1368
|
-
DescribeClusterRequestClusterDeletedWaitTypeDef = TypedDict(
|
|
1369
|
-
"DescribeClusterRequestClusterDeletedWaitTypeDef",
|
|
1370
|
-
{
|
|
1371
|
-
"name": str,
|
|
1372
|
-
"WaiterConfig": NotRequired[WaiterConfigTypeDef],
|
|
1373
|
-
},
|
|
1374
|
-
)
|
|
1375
|
-
DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef = TypedDict(
|
|
1376
|
-
"DescribeFargateProfileRequestFargateProfileActiveWaitTypeDef",
|
|
1377
|
-
{
|
|
1378
|
-
"clusterName": str,
|
|
1379
|
-
"fargateProfileName": str,
|
|
1380
|
-
"WaiterConfig": NotRequired[WaiterConfigTypeDef],
|
|
1381
|
-
},
|
|
1382
|
-
)
|
|
1383
|
-
DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef = TypedDict(
|
|
1384
|
-
"DescribeFargateProfileRequestFargateProfileDeletedWaitTypeDef",
|
|
1385
|
-
{
|
|
1386
|
-
"clusterName": str,
|
|
1387
|
-
"fargateProfileName": str,
|
|
1388
|
-
"WaiterConfig": NotRequired[WaiterConfigTypeDef],
|
|
1389
|
-
},
|
|
1390
|
-
)
|
|
1391
|
-
DescribeNodegroupRequestNodegroupActiveWaitTypeDef = TypedDict(
|
|
1392
|
-
"DescribeNodegroupRequestNodegroupActiveWaitTypeDef",
|
|
1393
|
-
{
|
|
1394
|
-
"clusterName": str,
|
|
1395
|
-
"nodegroupName": str,
|
|
1396
|
-
"WaiterConfig": NotRequired[WaiterConfigTypeDef],
|
|
1397
|
-
},
|
|
1398
|
-
)
|
|
1399
|
-
DescribeNodegroupRequestNodegroupDeletedWaitTypeDef = TypedDict(
|
|
1400
|
-
"DescribeNodegroupRequestNodegroupDeletedWaitTypeDef",
|
|
503
|
+
|
|
504
|
+
class NodeRepairConfigTypeDef(TypedDict):
|
|
505
|
+
enabled: NotRequired[bool]
|
|
506
|
+
|
|
507
|
+
class NodegroupScalingConfigTypeDef(TypedDict):
|
|
508
|
+
minSize: NotRequired[int]
|
|
509
|
+
maxSize: NotRequired[int]
|
|
510
|
+
desiredSize: NotRequired[int]
|
|
511
|
+
|
|
512
|
+
class NodegroupUpdateConfigTypeDef(TypedDict):
|
|
513
|
+
maxUnavailable: NotRequired[int]
|
|
514
|
+
maxUnavailablePercentage: NotRequired[int]
|
|
515
|
+
updateStrategy: NotRequired[NodegroupUpdateStrategiesType]
|
|
516
|
+
|
|
517
|
+
class TaintTypeDef(TypedDict):
|
|
518
|
+
key: NotRequired[str]
|
|
519
|
+
value: NotRequired[str]
|
|
520
|
+
effect: NotRequired[TaintEffectType]
|
|
521
|
+
|
|
522
|
+
class CreatePodIdentityAssociationRequestTypeDef(TypedDict):
|
|
523
|
+
clusterName: str
|
|
524
|
+
namespace: str
|
|
525
|
+
serviceAccount: str
|
|
526
|
+
roleArn: str
|
|
527
|
+
clientRequestToken: NotRequired[str]
|
|
528
|
+
tags: NotRequired[Mapping[str, str]]
|
|
529
|
+
|
|
530
|
+
class PodIdentityAssociationTypeDef(TypedDict):
|
|
531
|
+
clusterName: NotRequired[str]
|
|
532
|
+
namespace: NotRequired[str]
|
|
533
|
+
serviceAccount: NotRequired[str]
|
|
534
|
+
roleArn: NotRequired[str]
|
|
535
|
+
associationArn: NotRequired[str]
|
|
536
|
+
associationId: NotRequired[str]
|
|
537
|
+
tags: NotRequired[Dict[str, str]]
|
|
538
|
+
createdAt: NotRequired[datetime]
|
|
539
|
+
modifiedAt: NotRequired[datetime]
|
|
540
|
+
ownerArn: NotRequired[str]
|
|
541
|
+
|
|
542
|
+
class DeleteAccessEntryRequestTypeDef(TypedDict):
|
|
543
|
+
clusterName: str
|
|
544
|
+
principalArn: str
|
|
545
|
+
|
|
546
|
+
class DeleteAddonRequestTypeDef(TypedDict):
|
|
547
|
+
clusterName: str
|
|
548
|
+
addonName: str
|
|
549
|
+
preserve: NotRequired[bool]
|
|
550
|
+
|
|
551
|
+
class DeleteClusterRequestTypeDef(TypedDict):
|
|
552
|
+
name: str
|
|
553
|
+
|
|
554
|
+
DeleteEksAnywhereSubscriptionRequestTypeDef = TypedDict(
|
|
555
|
+
"DeleteEksAnywhereSubscriptionRequestTypeDef",
|
|
1401
556
|
{
|
|
1402
|
-
"
|
|
1403
|
-
"nodegroupName": str,
|
|
1404
|
-
"WaiterConfig": NotRequired[WaiterConfigTypeDef],
|
|
557
|
+
"id": str,
|
|
1405
558
|
},
|
|
1406
559
|
)
|
|
1407
|
-
|
|
1408
|
-
|
|
560
|
+
|
|
561
|
+
class DeleteFargateProfileRequestTypeDef(TypedDict):
|
|
562
|
+
clusterName: str
|
|
563
|
+
fargateProfileName: str
|
|
564
|
+
|
|
565
|
+
class DeleteNodegroupRequestTypeDef(TypedDict):
|
|
566
|
+
clusterName: str
|
|
567
|
+
nodegroupName: str
|
|
568
|
+
|
|
569
|
+
class DeletePodIdentityAssociationRequestTypeDef(TypedDict):
|
|
570
|
+
clusterName: str
|
|
571
|
+
associationId: str
|
|
572
|
+
|
|
573
|
+
class DeregisterClusterRequestTypeDef(TypedDict):
|
|
574
|
+
name: str
|
|
575
|
+
|
|
576
|
+
class DescribeAccessEntryRequestTypeDef(TypedDict):
|
|
577
|
+
clusterName: str
|
|
578
|
+
principalArn: str
|
|
579
|
+
|
|
580
|
+
class DescribeAddonConfigurationRequestTypeDef(TypedDict):
|
|
581
|
+
addonName: str
|
|
582
|
+
addonVersion: str
|
|
583
|
+
|
|
584
|
+
class DescribeAddonRequestTypeDef(TypedDict):
|
|
585
|
+
clusterName: str
|
|
586
|
+
addonName: str
|
|
587
|
+
|
|
588
|
+
class WaiterConfigTypeDef(TypedDict):
|
|
589
|
+
Delay: NotRequired[int]
|
|
590
|
+
MaxAttempts: NotRequired[int]
|
|
591
|
+
|
|
592
|
+
class PaginatorConfigTypeDef(TypedDict):
|
|
593
|
+
MaxItems: NotRequired[int]
|
|
594
|
+
PageSize: NotRequired[int]
|
|
595
|
+
StartingToken: NotRequired[str]
|
|
596
|
+
|
|
597
|
+
DescribeAddonVersionsRequestTypeDef = TypedDict(
|
|
598
|
+
"DescribeAddonVersionsRequestTypeDef",
|
|
1409
599
|
{
|
|
1410
600
|
"kubernetesVersion": NotRequired[str],
|
|
601
|
+
"maxResults": NotRequired[int],
|
|
602
|
+
"nextToken": NotRequired[str],
|
|
1411
603
|
"addonName": NotRequired[str],
|
|
1412
604
|
"types": NotRequired[Sequence[str]],
|
|
1413
605
|
"publishers": NotRequired[Sequence[str]],
|
|
1414
606
|
"owners": NotRequired[Sequence[str]],
|
|
1415
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1416
607
|
},
|
|
1417
608
|
)
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
609
|
+
|
|
610
|
+
class DescribeClusterRequestTypeDef(TypedDict):
|
|
611
|
+
name: str
|
|
612
|
+
|
|
613
|
+
class DescribeClusterVersionsRequestTypeDef(TypedDict):
|
|
614
|
+
clusterType: NotRequired[str]
|
|
615
|
+
maxResults: NotRequired[int]
|
|
616
|
+
nextToken: NotRequired[str]
|
|
617
|
+
defaultOnly: NotRequired[bool]
|
|
618
|
+
includeAll: NotRequired[bool]
|
|
619
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
620
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
621
|
+
versionStatus: NotRequired[VersionStatusType]
|
|
622
|
+
|
|
623
|
+
DescribeEksAnywhereSubscriptionRequestTypeDef = TypedDict(
|
|
624
|
+
"DescribeEksAnywhereSubscriptionRequestTypeDef",
|
|
1428
625
|
{
|
|
1429
|
-
"
|
|
626
|
+
"id": str,
|
|
1430
627
|
},
|
|
1431
628
|
)
|
|
1432
|
-
|
|
1433
|
-
|
|
629
|
+
|
|
630
|
+
class DescribeFargateProfileRequestTypeDef(TypedDict):
|
|
631
|
+
clusterName: str
|
|
632
|
+
fargateProfileName: str
|
|
633
|
+
|
|
634
|
+
IdentityProviderConfigTypeDef = TypedDict(
|
|
635
|
+
"IdentityProviderConfigTypeDef",
|
|
1434
636
|
{
|
|
1435
|
-
"
|
|
1436
|
-
"
|
|
637
|
+
"type": str,
|
|
638
|
+
"name": str,
|
|
1437
639
|
},
|
|
1438
640
|
)
|
|
1439
|
-
|
|
1440
|
-
"
|
|
641
|
+
DescribeInsightRequestTypeDef = TypedDict(
|
|
642
|
+
"DescribeInsightRequestTypeDef",
|
|
1441
643
|
{
|
|
1442
644
|
"clusterName": str,
|
|
1443
|
-
"
|
|
1444
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1445
|
-
},
|
|
1446
|
-
)
|
|
1447
|
-
ListClustersRequestListClustersPaginateTypeDef = TypedDict(
|
|
1448
|
-
"ListClustersRequestListClustersPaginateTypeDef",
|
|
1449
|
-
{
|
|
1450
|
-
"include": NotRequired[Sequence[str]],
|
|
1451
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
645
|
+
"id": str,
|
|
1452
646
|
},
|
|
1453
647
|
)
|
|
1454
|
-
|
|
1455
|
-
|
|
648
|
+
|
|
649
|
+
class DescribeNodegroupRequestTypeDef(TypedDict):
|
|
650
|
+
clusterName: str
|
|
651
|
+
nodegroupName: str
|
|
652
|
+
|
|
653
|
+
class DescribePodIdentityAssociationRequestTypeDef(TypedDict):
|
|
654
|
+
clusterName: str
|
|
655
|
+
associationId: str
|
|
656
|
+
|
|
657
|
+
class DescribeUpdateRequestTypeDef(TypedDict):
|
|
658
|
+
name: str
|
|
659
|
+
updateId: str
|
|
660
|
+
nodegroupName: NotRequired[str]
|
|
661
|
+
addonName: NotRequired[str]
|
|
662
|
+
|
|
663
|
+
class DisassociateAccessPolicyRequestTypeDef(TypedDict):
|
|
664
|
+
clusterName: str
|
|
665
|
+
principalArn: str
|
|
666
|
+
policyArn: str
|
|
667
|
+
|
|
668
|
+
LicenseTypeDef = TypedDict(
|
|
669
|
+
"LicenseTypeDef",
|
|
1456
670
|
{
|
|
1457
|
-
"
|
|
1458
|
-
"
|
|
671
|
+
"id": NotRequired[str],
|
|
672
|
+
"token": NotRequired[str],
|
|
1459
673
|
},
|
|
1460
674
|
)
|
|
1461
|
-
|
|
1462
|
-
|
|
675
|
+
|
|
676
|
+
class ElasticLoadBalancingTypeDef(TypedDict):
|
|
677
|
+
enabled: NotRequired[bool]
|
|
678
|
+
|
|
679
|
+
class ProviderTypeDef(TypedDict):
|
|
680
|
+
keyArn: NotRequired[str]
|
|
681
|
+
|
|
682
|
+
class ErrorDetailTypeDef(TypedDict):
|
|
683
|
+
errorCode: NotRequired[ErrorCodeType]
|
|
684
|
+
errorMessage: NotRequired[str]
|
|
685
|
+
resourceIds: NotRequired[List[str]]
|
|
686
|
+
|
|
687
|
+
class FargateProfileIssueTypeDef(TypedDict):
|
|
688
|
+
code: NotRequired[FargateProfileIssueCodeType]
|
|
689
|
+
message: NotRequired[str]
|
|
690
|
+
resourceIds: NotRequired[List[str]]
|
|
691
|
+
|
|
692
|
+
class FargateProfileSelectorOutputTypeDef(TypedDict):
|
|
693
|
+
namespace: NotRequired[str]
|
|
694
|
+
labels: NotRequired[Dict[str, str]]
|
|
695
|
+
|
|
696
|
+
class FargateProfileSelectorTypeDef(TypedDict):
|
|
697
|
+
namespace: NotRequired[str]
|
|
698
|
+
labels: NotRequired[Mapping[str, str]]
|
|
699
|
+
|
|
700
|
+
class OidcIdentityProviderConfigTypeDef(TypedDict):
|
|
701
|
+
identityProviderConfigName: NotRequired[str]
|
|
702
|
+
identityProviderConfigArn: NotRequired[str]
|
|
703
|
+
clusterName: NotRequired[str]
|
|
704
|
+
issuerUrl: NotRequired[str]
|
|
705
|
+
clientId: NotRequired[str]
|
|
706
|
+
usernameClaim: NotRequired[str]
|
|
707
|
+
usernamePrefix: NotRequired[str]
|
|
708
|
+
groupsClaim: NotRequired[str]
|
|
709
|
+
groupsPrefix: NotRequired[str]
|
|
710
|
+
requiredClaims: NotRequired[Dict[str, str]]
|
|
711
|
+
tags: NotRequired[Dict[str, str]]
|
|
712
|
+
status: NotRequired[ConfigStatusType]
|
|
713
|
+
|
|
714
|
+
class OIDCTypeDef(TypedDict):
|
|
715
|
+
issuer: NotRequired[str]
|
|
716
|
+
|
|
717
|
+
class InsightStatusTypeDef(TypedDict):
|
|
718
|
+
status: NotRequired[InsightStatusValueType]
|
|
719
|
+
reason: NotRequired[str]
|
|
720
|
+
|
|
721
|
+
class InsightsFilterTypeDef(TypedDict):
|
|
722
|
+
categories: NotRequired[Sequence[Literal["UPGRADE_READINESS"]]]
|
|
723
|
+
kubernetesVersions: NotRequired[Sequence[str]]
|
|
724
|
+
statuses: NotRequired[Sequence[InsightStatusValueType]]
|
|
725
|
+
|
|
726
|
+
class IssueTypeDef(TypedDict):
|
|
727
|
+
code: NotRequired[NodegroupIssueCodeType]
|
|
728
|
+
message: NotRequired[str]
|
|
729
|
+
resourceIds: NotRequired[List[str]]
|
|
730
|
+
|
|
731
|
+
class ListAccessEntriesRequestTypeDef(TypedDict):
|
|
732
|
+
clusterName: str
|
|
733
|
+
associatedPolicyArn: NotRequired[str]
|
|
734
|
+
maxResults: NotRequired[int]
|
|
735
|
+
nextToken: NotRequired[str]
|
|
736
|
+
|
|
737
|
+
class ListAccessPoliciesRequestTypeDef(TypedDict):
|
|
738
|
+
maxResults: NotRequired[int]
|
|
739
|
+
nextToken: NotRequired[str]
|
|
740
|
+
|
|
741
|
+
class ListAddonsRequestTypeDef(TypedDict):
|
|
742
|
+
clusterName: str
|
|
743
|
+
maxResults: NotRequired[int]
|
|
744
|
+
nextToken: NotRequired[str]
|
|
745
|
+
|
|
746
|
+
class ListAssociatedAccessPoliciesRequestTypeDef(TypedDict):
|
|
747
|
+
clusterName: str
|
|
748
|
+
principalArn: str
|
|
749
|
+
maxResults: NotRequired[int]
|
|
750
|
+
nextToken: NotRequired[str]
|
|
751
|
+
|
|
752
|
+
class ListClustersRequestTypeDef(TypedDict):
|
|
753
|
+
maxResults: NotRequired[int]
|
|
754
|
+
nextToken: NotRequired[str]
|
|
755
|
+
include: NotRequired[Sequence[str]]
|
|
756
|
+
|
|
757
|
+
class ListEksAnywhereSubscriptionsRequestTypeDef(TypedDict):
|
|
758
|
+
maxResults: NotRequired[int]
|
|
759
|
+
nextToken: NotRequired[str]
|
|
760
|
+
includeStatus: NotRequired[Sequence[EksAnywhereSubscriptionStatusType]]
|
|
761
|
+
|
|
762
|
+
class ListFargateProfilesRequestTypeDef(TypedDict):
|
|
763
|
+
clusterName: str
|
|
764
|
+
maxResults: NotRequired[int]
|
|
765
|
+
nextToken: NotRequired[str]
|
|
766
|
+
|
|
767
|
+
class ListIdentityProviderConfigsRequestTypeDef(TypedDict):
|
|
768
|
+
clusterName: str
|
|
769
|
+
maxResults: NotRequired[int]
|
|
770
|
+
nextToken: NotRequired[str]
|
|
771
|
+
|
|
772
|
+
class ListNodegroupsRequestTypeDef(TypedDict):
|
|
773
|
+
clusterName: str
|
|
774
|
+
maxResults: NotRequired[int]
|
|
775
|
+
nextToken: NotRequired[str]
|
|
776
|
+
|
|
777
|
+
class ListPodIdentityAssociationsRequestTypeDef(TypedDict):
|
|
778
|
+
clusterName: str
|
|
779
|
+
namespace: NotRequired[str]
|
|
780
|
+
serviceAccount: NotRequired[str]
|
|
781
|
+
maxResults: NotRequired[int]
|
|
782
|
+
nextToken: NotRequired[str]
|
|
783
|
+
|
|
784
|
+
class PodIdentityAssociationSummaryTypeDef(TypedDict):
|
|
785
|
+
clusterName: NotRequired[str]
|
|
786
|
+
namespace: NotRequired[str]
|
|
787
|
+
serviceAccount: NotRequired[str]
|
|
788
|
+
associationArn: NotRequired[str]
|
|
789
|
+
associationId: NotRequired[str]
|
|
790
|
+
ownerArn: NotRequired[str]
|
|
791
|
+
|
|
792
|
+
class ListTagsForResourceRequestTypeDef(TypedDict):
|
|
793
|
+
resourceArn: str
|
|
794
|
+
|
|
795
|
+
class ListUpdatesRequestTypeDef(TypedDict):
|
|
796
|
+
name: str
|
|
797
|
+
nodegroupName: NotRequired[str]
|
|
798
|
+
addonName: NotRequired[str]
|
|
799
|
+
nextToken: NotRequired[str]
|
|
800
|
+
maxResults: NotRequired[int]
|
|
801
|
+
|
|
802
|
+
LogSetupOutputTypeDef = TypedDict(
|
|
803
|
+
"LogSetupOutputTypeDef",
|
|
1463
804
|
{
|
|
1464
|
-
"
|
|
1465
|
-
"
|
|
805
|
+
"types": NotRequired[List[LogTypeType]],
|
|
806
|
+
"enabled": NotRequired[bool],
|
|
1466
807
|
},
|
|
1467
808
|
)
|
|
1468
|
-
|
|
1469
|
-
"
|
|
809
|
+
LogSetupTypeDef = TypedDict(
|
|
810
|
+
"LogSetupTypeDef",
|
|
1470
811
|
{
|
|
1471
|
-
"
|
|
1472
|
-
"
|
|
812
|
+
"types": NotRequired[Sequence[LogTypeType]],
|
|
813
|
+
"enabled": NotRequired[bool],
|
|
1473
814
|
},
|
|
1474
815
|
)
|
|
1475
|
-
|
|
1476
|
-
|
|
816
|
+
|
|
817
|
+
class RemoteAccessConfigOutputTypeDef(TypedDict):
|
|
818
|
+
ec2SshKey: NotRequired[str]
|
|
819
|
+
sourceSecurityGroups: NotRequired[List[str]]
|
|
820
|
+
|
|
821
|
+
class RemoteAccessConfigTypeDef(TypedDict):
|
|
822
|
+
ec2SshKey: NotRequired[str]
|
|
823
|
+
sourceSecurityGroups: NotRequired[Sequence[str]]
|
|
824
|
+
|
|
825
|
+
class RemoteNodeNetworkOutputTypeDef(TypedDict):
|
|
826
|
+
cidrs: NotRequired[List[str]]
|
|
827
|
+
|
|
828
|
+
class RemotePodNetworkOutputTypeDef(TypedDict):
|
|
829
|
+
cidrs: NotRequired[List[str]]
|
|
830
|
+
|
|
831
|
+
class RemoteNodeNetworkTypeDef(TypedDict):
|
|
832
|
+
cidrs: NotRequired[Sequence[str]]
|
|
833
|
+
|
|
834
|
+
class RemotePodNetworkTypeDef(TypedDict):
|
|
835
|
+
cidrs: NotRequired[Sequence[str]]
|
|
836
|
+
|
|
837
|
+
class TagResourceRequestTypeDef(TypedDict):
|
|
838
|
+
resourceArn: str
|
|
839
|
+
tags: Mapping[str, str]
|
|
840
|
+
|
|
841
|
+
class UntagResourceRequestTypeDef(TypedDict):
|
|
842
|
+
resourceArn: str
|
|
843
|
+
tagKeys: Sequence[str]
|
|
844
|
+
|
|
845
|
+
class UpdateAccessConfigRequestTypeDef(TypedDict):
|
|
846
|
+
authenticationMode: NotRequired[AuthenticationModeType]
|
|
847
|
+
|
|
848
|
+
class UpdateAccessEntryRequestTypeDef(TypedDict):
|
|
849
|
+
clusterName: str
|
|
850
|
+
principalArn: str
|
|
851
|
+
kubernetesGroups: NotRequired[Sequence[str]]
|
|
852
|
+
clientRequestToken: NotRequired[str]
|
|
853
|
+
username: NotRequired[str]
|
|
854
|
+
|
|
855
|
+
class UpdateClusterVersionRequestTypeDef(TypedDict):
|
|
856
|
+
name: str
|
|
857
|
+
version: str
|
|
858
|
+
clientRequestToken: NotRequired[str]
|
|
859
|
+
force: NotRequired[bool]
|
|
860
|
+
|
|
861
|
+
UpdateEksAnywhereSubscriptionRequestTypeDef = TypedDict(
|
|
862
|
+
"UpdateEksAnywhereSubscriptionRequestTypeDef",
|
|
1477
863
|
{
|
|
1478
|
-
"
|
|
1479
|
-
"
|
|
864
|
+
"id": str,
|
|
865
|
+
"autoRenew": bool,
|
|
866
|
+
"clientRequestToken": NotRequired[str],
|
|
1480
867
|
},
|
|
1481
868
|
)
|
|
1482
|
-
|
|
1483
|
-
|
|
869
|
+
|
|
870
|
+
class UpdateLabelsPayloadTypeDef(TypedDict):
|
|
871
|
+
addOrUpdateLabels: NotRequired[Mapping[str, str]]
|
|
872
|
+
removeLabels: NotRequired[Sequence[str]]
|
|
873
|
+
|
|
874
|
+
UpdateParamTypeDef = TypedDict(
|
|
875
|
+
"UpdateParamTypeDef",
|
|
1484
876
|
{
|
|
1485
|
-
"
|
|
1486
|
-
"
|
|
1487
|
-
"serviceAccount": NotRequired[str],
|
|
1488
|
-
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
877
|
+
"type": NotRequired[UpdateParamTypeType],
|
|
878
|
+
"value": NotRequired[str],
|
|
1489
879
|
},
|
|
1490
880
|
)
|
|
1491
|
-
|
|
1492
|
-
|
|
881
|
+
|
|
882
|
+
class UpdatePodIdentityAssociationRequestTypeDef(TypedDict):
|
|
883
|
+
clusterName: str
|
|
884
|
+
associationId: str
|
|
885
|
+
roleArn: NotRequired[str]
|
|
886
|
+
clientRequestToken: NotRequired[str]
|
|
887
|
+
|
|
888
|
+
class AssociatedAccessPolicyTypeDef(TypedDict):
|
|
889
|
+
policyArn: NotRequired[str]
|
|
890
|
+
accessScope: NotRequired[AccessScopeOutputTypeDef]
|
|
891
|
+
associatedAt: NotRequired[datetime]
|
|
892
|
+
modifiedAt: NotRequired[datetime]
|
|
893
|
+
|
|
894
|
+
AccessScopeUnionTypeDef = Union[AccessScopeTypeDef, AccessScopeOutputTypeDef]
|
|
895
|
+
|
|
896
|
+
class AddonHealthTypeDef(TypedDict):
|
|
897
|
+
issues: NotRequired[List[AddonIssueTypeDef]]
|
|
898
|
+
|
|
899
|
+
class CreateAddonRequestTypeDef(TypedDict):
|
|
900
|
+
clusterName: str
|
|
901
|
+
addonName: str
|
|
902
|
+
addonVersion: NotRequired[str]
|
|
903
|
+
serviceAccountRoleArn: NotRequired[str]
|
|
904
|
+
resolveConflicts: NotRequired[ResolveConflictsType]
|
|
905
|
+
clientRequestToken: NotRequired[str]
|
|
906
|
+
tags: NotRequired[Mapping[str, str]]
|
|
907
|
+
configurationValues: NotRequired[str]
|
|
908
|
+
podIdentityAssociations: NotRequired[Sequence[AddonPodIdentityAssociationsTypeDef]]
|
|
909
|
+
|
|
910
|
+
class UpdateAddonRequestTypeDef(TypedDict):
|
|
911
|
+
clusterName: str
|
|
912
|
+
addonName: str
|
|
913
|
+
addonVersion: NotRequired[str]
|
|
914
|
+
serviceAccountRoleArn: NotRequired[str]
|
|
915
|
+
resolveConflicts: NotRequired[ResolveConflictsType]
|
|
916
|
+
clientRequestToken: NotRequired[str]
|
|
917
|
+
configurationValues: NotRequired[str]
|
|
918
|
+
podIdentityAssociations: NotRequired[Sequence[AddonPodIdentityAssociationsTypeDef]]
|
|
919
|
+
|
|
920
|
+
class AddonVersionInfoTypeDef(TypedDict):
|
|
921
|
+
addonVersion: NotRequired[str]
|
|
922
|
+
architecture: NotRequired[List[str]]
|
|
923
|
+
computeTypes: NotRequired[List[str]]
|
|
924
|
+
compatibilities: NotRequired[List[CompatibilityTypeDef]]
|
|
925
|
+
requiresConfiguration: NotRequired[bool]
|
|
926
|
+
requiresIamPermissions: NotRequired[bool]
|
|
927
|
+
|
|
928
|
+
class CreateAccessEntryResponseTypeDef(TypedDict):
|
|
929
|
+
accessEntry: AccessEntryTypeDef
|
|
930
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
931
|
+
|
|
932
|
+
class DescribeAccessEntryResponseTypeDef(TypedDict):
|
|
933
|
+
accessEntry: AccessEntryTypeDef
|
|
934
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
935
|
+
|
|
936
|
+
class DescribeAddonConfigurationResponseTypeDef(TypedDict):
|
|
937
|
+
addonName: str
|
|
938
|
+
addonVersion: str
|
|
939
|
+
configurationSchema: str
|
|
940
|
+
podIdentityConfiguration: List[AddonPodIdentityConfigurationTypeDef]
|
|
941
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
942
|
+
|
|
943
|
+
class ListAccessEntriesResponseTypeDef(TypedDict):
|
|
944
|
+
accessEntries: List[str]
|
|
945
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
946
|
+
nextToken: NotRequired[str]
|
|
947
|
+
|
|
948
|
+
class ListAccessPoliciesResponseTypeDef(TypedDict):
|
|
949
|
+
accessPolicies: List[AccessPolicyTypeDef]
|
|
950
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
951
|
+
nextToken: NotRequired[str]
|
|
952
|
+
|
|
953
|
+
class ListAddonsResponseTypeDef(TypedDict):
|
|
954
|
+
addons: List[str]
|
|
955
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
956
|
+
nextToken: NotRequired[str]
|
|
957
|
+
|
|
958
|
+
class ListClustersResponseTypeDef(TypedDict):
|
|
959
|
+
clusters: List[str]
|
|
960
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
961
|
+
nextToken: NotRequired[str]
|
|
962
|
+
|
|
963
|
+
class ListFargateProfilesResponseTypeDef(TypedDict):
|
|
964
|
+
fargateProfileNames: List[str]
|
|
965
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
966
|
+
nextToken: NotRequired[str]
|
|
967
|
+
|
|
968
|
+
class ListNodegroupsResponseTypeDef(TypedDict):
|
|
969
|
+
nodegroups: List[str]
|
|
970
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
971
|
+
nextToken: NotRequired[str]
|
|
972
|
+
|
|
973
|
+
class ListTagsForResourceResponseTypeDef(TypedDict):
|
|
974
|
+
tags: Dict[str, str]
|
|
975
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
976
|
+
|
|
977
|
+
class ListUpdatesResponseTypeDef(TypedDict):
|
|
978
|
+
updateIds: List[str]
|
|
979
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
980
|
+
nextToken: NotRequired[str]
|
|
981
|
+
|
|
982
|
+
class UpdateAccessEntryResponseTypeDef(TypedDict):
|
|
983
|
+
accessEntry: AccessEntryTypeDef
|
|
984
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
985
|
+
|
|
986
|
+
class AssociateIdentityProviderConfigRequestTypeDef(TypedDict):
|
|
987
|
+
clusterName: str
|
|
988
|
+
oidc: OidcIdentityProviderConfigRequestTypeDef
|
|
989
|
+
tags: NotRequired[Mapping[str, str]]
|
|
990
|
+
clientRequestToken: NotRequired[str]
|
|
991
|
+
|
|
992
|
+
class NodegroupResourcesTypeDef(TypedDict):
|
|
993
|
+
autoScalingGroups: NotRequired[List[AutoScalingGroupTypeDef]]
|
|
994
|
+
remoteAccessSecurityGroup: NotRequired[str]
|
|
995
|
+
|
|
996
|
+
class StorageConfigRequestTypeDef(TypedDict):
|
|
997
|
+
blockStorage: NotRequired[BlockStorageTypeDef]
|
|
998
|
+
|
|
999
|
+
class StorageConfigResponseTypeDef(TypedDict):
|
|
1000
|
+
blockStorage: NotRequired[BlockStorageTypeDef]
|
|
1001
|
+
|
|
1002
|
+
class DeprecationDetailTypeDef(TypedDict):
|
|
1003
|
+
usage: NotRequired[str]
|
|
1004
|
+
replacedWith: NotRequired[str]
|
|
1005
|
+
stopServingVersion: NotRequired[str]
|
|
1006
|
+
startServingReplacementVersion: NotRequired[str]
|
|
1007
|
+
clientStats: NotRequired[List[ClientStatTypeDef]]
|
|
1008
|
+
|
|
1009
|
+
class ClusterHealthTypeDef(TypedDict):
|
|
1010
|
+
issues: NotRequired[List[ClusterIssueTypeDef]]
|
|
1011
|
+
|
|
1012
|
+
class DescribeClusterVersionsResponseTypeDef(TypedDict):
|
|
1013
|
+
clusterVersions: List[ClusterVersionInformationTypeDef]
|
|
1014
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1015
|
+
nextToken: NotRequired[str]
|
|
1016
|
+
|
|
1017
|
+
class RegisterClusterRequestTypeDef(TypedDict):
|
|
1018
|
+
name: str
|
|
1019
|
+
connectorConfig: ConnectorConfigRequestTypeDef
|
|
1020
|
+
clientRequestToken: NotRequired[str]
|
|
1021
|
+
tags: NotRequired[Mapping[str, str]]
|
|
1022
|
+
|
|
1023
|
+
class OutpostConfigRequestTypeDef(TypedDict):
|
|
1024
|
+
outpostArns: Sequence[str]
|
|
1025
|
+
controlPlaneInstanceType: str
|
|
1026
|
+
controlPlanePlacement: NotRequired[ControlPlanePlacementRequestTypeDef]
|
|
1027
|
+
|
|
1028
|
+
class OutpostConfigResponseTypeDef(TypedDict):
|
|
1029
|
+
outpostArns: List[str]
|
|
1030
|
+
controlPlaneInstanceType: str
|
|
1031
|
+
controlPlanePlacement: NotRequired[ControlPlanePlacementResponseTypeDef]
|
|
1032
|
+
|
|
1033
|
+
class CreateEksAnywhereSubscriptionRequestTypeDef(TypedDict):
|
|
1034
|
+
name: str
|
|
1035
|
+
term: EksAnywhereSubscriptionTermTypeDef
|
|
1036
|
+
licenseQuantity: NotRequired[int]
|
|
1037
|
+
licenseType: NotRequired[Literal["Cluster"]]
|
|
1038
|
+
autoRenew: NotRequired[bool]
|
|
1039
|
+
clientRequestToken: NotRequired[str]
|
|
1040
|
+
tags: NotRequired[Mapping[str, str]]
|
|
1041
|
+
|
|
1042
|
+
class UpdateNodegroupVersionRequestTypeDef(TypedDict):
|
|
1043
|
+
clusterName: str
|
|
1044
|
+
nodegroupName: str
|
|
1045
|
+
version: NotRequired[str]
|
|
1046
|
+
releaseVersion: NotRequired[str]
|
|
1047
|
+
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1048
|
+
force: NotRequired[bool]
|
|
1049
|
+
clientRequestToken: NotRequired[str]
|
|
1050
|
+
|
|
1051
|
+
class UpdateTaintsPayloadTypeDef(TypedDict):
|
|
1052
|
+
addOrUpdateTaints: NotRequired[Sequence[TaintTypeDef]]
|
|
1053
|
+
removeTaints: NotRequired[Sequence[TaintTypeDef]]
|
|
1054
|
+
|
|
1055
|
+
class CreatePodIdentityAssociationResponseTypeDef(TypedDict):
|
|
1056
|
+
association: PodIdentityAssociationTypeDef
|
|
1057
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1058
|
+
|
|
1059
|
+
class DeletePodIdentityAssociationResponseTypeDef(TypedDict):
|
|
1060
|
+
association: PodIdentityAssociationTypeDef
|
|
1061
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1062
|
+
|
|
1063
|
+
class DescribePodIdentityAssociationResponseTypeDef(TypedDict):
|
|
1064
|
+
association: PodIdentityAssociationTypeDef
|
|
1065
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1066
|
+
|
|
1067
|
+
class UpdatePodIdentityAssociationResponseTypeDef(TypedDict):
|
|
1068
|
+
association: PodIdentityAssociationTypeDef
|
|
1069
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1070
|
+
|
|
1071
|
+
class DescribeAddonRequestWaitExtraTypeDef(TypedDict):
|
|
1072
|
+
clusterName: str
|
|
1073
|
+
addonName: str
|
|
1074
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1075
|
+
|
|
1076
|
+
class DescribeAddonRequestWaitTypeDef(TypedDict):
|
|
1077
|
+
clusterName: str
|
|
1078
|
+
addonName: str
|
|
1079
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1080
|
+
|
|
1081
|
+
class DescribeClusterRequestWaitExtraTypeDef(TypedDict):
|
|
1082
|
+
name: str
|
|
1083
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1084
|
+
|
|
1085
|
+
class DescribeClusterRequestWaitTypeDef(TypedDict):
|
|
1086
|
+
name: str
|
|
1087
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1088
|
+
|
|
1089
|
+
class DescribeFargateProfileRequestWaitExtraTypeDef(TypedDict):
|
|
1090
|
+
clusterName: str
|
|
1091
|
+
fargateProfileName: str
|
|
1092
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1093
|
+
|
|
1094
|
+
class DescribeFargateProfileRequestWaitTypeDef(TypedDict):
|
|
1095
|
+
clusterName: str
|
|
1096
|
+
fargateProfileName: str
|
|
1097
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1098
|
+
|
|
1099
|
+
class DescribeNodegroupRequestWaitExtraTypeDef(TypedDict):
|
|
1100
|
+
clusterName: str
|
|
1101
|
+
nodegroupName: str
|
|
1102
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1103
|
+
|
|
1104
|
+
class DescribeNodegroupRequestWaitTypeDef(TypedDict):
|
|
1105
|
+
clusterName: str
|
|
1106
|
+
nodegroupName: str
|
|
1107
|
+
WaiterConfig: NotRequired[WaiterConfigTypeDef]
|
|
1108
|
+
|
|
1109
|
+
DescribeAddonVersionsRequestPaginateTypeDef = TypedDict(
|
|
1110
|
+
"DescribeAddonVersionsRequestPaginateTypeDef",
|
|
1493
1111
|
{
|
|
1494
|
-
"
|
|
1495
|
-
"nodegroupName": NotRequired[str],
|
|
1112
|
+
"kubernetesVersion": NotRequired[str],
|
|
1496
1113
|
"addonName": NotRequired[str],
|
|
1114
|
+
"types": NotRequired[Sequence[str]],
|
|
1115
|
+
"publishers": NotRequired[Sequence[str]],
|
|
1116
|
+
"owners": NotRequired[Sequence[str]],
|
|
1497
1117
|
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1498
1118
|
},
|
|
1499
1119
|
)
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
)
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1120
|
+
|
|
1121
|
+
class DescribeClusterVersionsRequestPaginateTypeDef(TypedDict):
|
|
1122
|
+
clusterType: NotRequired[str]
|
|
1123
|
+
defaultOnly: NotRequired[bool]
|
|
1124
|
+
includeAll: NotRequired[bool]
|
|
1125
|
+
clusterVersions: NotRequired[Sequence[str]]
|
|
1126
|
+
status: NotRequired[ClusterVersionStatusType]
|
|
1127
|
+
versionStatus: NotRequired[VersionStatusType]
|
|
1128
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1129
|
+
|
|
1130
|
+
class ListAccessEntriesRequestPaginateTypeDef(TypedDict):
|
|
1131
|
+
clusterName: str
|
|
1132
|
+
associatedPolicyArn: NotRequired[str]
|
|
1133
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1134
|
+
|
|
1135
|
+
class ListAccessPoliciesRequestPaginateTypeDef(TypedDict):
|
|
1136
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1137
|
+
|
|
1138
|
+
class ListAddonsRequestPaginateTypeDef(TypedDict):
|
|
1139
|
+
clusterName: str
|
|
1140
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1141
|
+
|
|
1142
|
+
class ListAssociatedAccessPoliciesRequestPaginateTypeDef(TypedDict):
|
|
1143
|
+
clusterName: str
|
|
1144
|
+
principalArn: str
|
|
1145
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1146
|
+
|
|
1147
|
+
class ListClustersRequestPaginateTypeDef(TypedDict):
|
|
1148
|
+
include: NotRequired[Sequence[str]]
|
|
1149
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1150
|
+
|
|
1151
|
+
class ListEksAnywhereSubscriptionsRequestPaginateTypeDef(TypedDict):
|
|
1152
|
+
includeStatus: NotRequired[Sequence[EksAnywhereSubscriptionStatusType]]
|
|
1153
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1154
|
+
|
|
1155
|
+
class ListFargateProfilesRequestPaginateTypeDef(TypedDict):
|
|
1156
|
+
clusterName: str
|
|
1157
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1158
|
+
|
|
1159
|
+
class ListIdentityProviderConfigsRequestPaginateTypeDef(TypedDict):
|
|
1160
|
+
clusterName: str
|
|
1161
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1162
|
+
|
|
1163
|
+
class ListNodegroupsRequestPaginateTypeDef(TypedDict):
|
|
1164
|
+
clusterName: str
|
|
1165
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1166
|
+
|
|
1167
|
+
class ListPodIdentityAssociationsRequestPaginateTypeDef(TypedDict):
|
|
1168
|
+
clusterName: str
|
|
1169
|
+
namespace: NotRequired[str]
|
|
1170
|
+
serviceAccount: NotRequired[str]
|
|
1171
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1172
|
+
|
|
1173
|
+
class ListUpdatesRequestPaginateTypeDef(TypedDict):
|
|
1174
|
+
name: str
|
|
1175
|
+
nodegroupName: NotRequired[str]
|
|
1176
|
+
addonName: NotRequired[str]
|
|
1177
|
+
PaginationConfig: NotRequired[PaginatorConfigTypeDef]
|
|
1178
|
+
|
|
1179
|
+
class DescribeIdentityProviderConfigRequestTypeDef(TypedDict):
|
|
1180
|
+
clusterName: str
|
|
1181
|
+
identityProviderConfig: IdentityProviderConfigTypeDef
|
|
1182
|
+
|
|
1183
|
+
class DisassociateIdentityProviderConfigRequestTypeDef(TypedDict):
|
|
1184
|
+
clusterName: str
|
|
1185
|
+
identityProviderConfig: IdentityProviderConfigTypeDef
|
|
1186
|
+
clientRequestToken: NotRequired[str]
|
|
1187
|
+
|
|
1188
|
+
class ListIdentityProviderConfigsResponseTypeDef(TypedDict):
|
|
1189
|
+
identityProviderConfigs: List[IdentityProviderConfigTypeDef]
|
|
1190
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1191
|
+
nextToken: NotRequired[str]
|
|
1192
|
+
|
|
1193
|
+
EksAnywhereSubscriptionTypeDef = TypedDict(
|
|
1194
|
+
"EksAnywhereSubscriptionTypeDef",
|
|
1539
1195
|
{
|
|
1540
|
-
"
|
|
1196
|
+
"id": NotRequired[str],
|
|
1197
|
+
"arn": NotRequired[str],
|
|
1198
|
+
"createdAt": NotRequired[datetime],
|
|
1199
|
+
"effectiveDate": NotRequired[datetime],
|
|
1200
|
+
"expirationDate": NotRequired[datetime],
|
|
1201
|
+
"licenseQuantity": NotRequired[int],
|
|
1202
|
+
"licenseType": NotRequired[Literal["Cluster"]],
|
|
1203
|
+
"term": NotRequired[EksAnywhereSubscriptionTermTypeDef],
|
|
1204
|
+
"status": NotRequired[str],
|
|
1205
|
+
"autoRenew": NotRequired[bool],
|
|
1206
|
+
"licenseArns": NotRequired[List[str]],
|
|
1207
|
+
"licenses": NotRequired[List[LicenseTypeDef]],
|
|
1208
|
+
"tags": NotRequired[Dict[str, str]],
|
|
1541
1209
|
},
|
|
1542
1210
|
)
|
|
1211
|
+
|
|
1212
|
+
class KubernetesNetworkConfigRequestTypeDef(TypedDict):
|
|
1213
|
+
serviceIpv4Cidr: NotRequired[str]
|
|
1214
|
+
ipFamily: NotRequired[IpFamilyType]
|
|
1215
|
+
elasticLoadBalancing: NotRequired[ElasticLoadBalancingTypeDef]
|
|
1216
|
+
|
|
1217
|
+
class KubernetesNetworkConfigResponseTypeDef(TypedDict):
|
|
1218
|
+
serviceIpv4Cidr: NotRequired[str]
|
|
1219
|
+
serviceIpv6Cidr: NotRequired[str]
|
|
1220
|
+
ipFamily: NotRequired[IpFamilyType]
|
|
1221
|
+
elasticLoadBalancing: NotRequired[ElasticLoadBalancingTypeDef]
|
|
1222
|
+
|
|
1223
|
+
class EncryptionConfigOutputTypeDef(TypedDict):
|
|
1224
|
+
resources: NotRequired[List[str]]
|
|
1225
|
+
provider: NotRequired[ProviderTypeDef]
|
|
1226
|
+
|
|
1227
|
+
class EncryptionConfigTypeDef(TypedDict):
|
|
1228
|
+
resources: NotRequired[Sequence[str]]
|
|
1229
|
+
provider: NotRequired[ProviderTypeDef]
|
|
1230
|
+
|
|
1231
|
+
class FargateProfileHealthTypeDef(TypedDict):
|
|
1232
|
+
issues: NotRequired[List[FargateProfileIssueTypeDef]]
|
|
1233
|
+
|
|
1543
1234
|
FargateProfileSelectorUnionTypeDef = Union[
|
|
1544
1235
|
FargateProfileSelectorTypeDef, FargateProfileSelectorOutputTypeDef
|
|
1545
1236
|
]
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
InsightResourceDetailTypeDef = TypedDict(
|
|
1559
|
-
"InsightResourceDetailTypeDef",
|
|
1560
|
-
{
|
|
1561
|
-
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1562
|
-
"kubernetesResourceUri": NotRequired[str],
|
|
1563
|
-
"arn": NotRequired[str],
|
|
1564
|
-
},
|
|
1565
|
-
)
|
|
1237
|
+
|
|
1238
|
+
class IdentityProviderConfigResponseTypeDef(TypedDict):
|
|
1239
|
+
oidc: NotRequired[OidcIdentityProviderConfigTypeDef]
|
|
1240
|
+
|
|
1241
|
+
class IdentityTypeDef(TypedDict):
|
|
1242
|
+
oidc: NotRequired[OIDCTypeDef]
|
|
1243
|
+
|
|
1244
|
+
class InsightResourceDetailTypeDef(TypedDict):
|
|
1245
|
+
insightStatus: NotRequired[InsightStatusTypeDef]
|
|
1246
|
+
kubernetesResourceUri: NotRequired[str]
|
|
1247
|
+
arn: NotRequired[str]
|
|
1248
|
+
|
|
1566
1249
|
InsightSummaryTypeDef = TypedDict(
|
|
1567
1250
|
"InsightSummaryTypeDef",
|
|
1568
1251
|
{
|
|
@@ -1576,16 +1259,16 @@ InsightSummaryTypeDef = TypedDict(
|
|
|
1576
1259
|
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1577
1260
|
},
|
|
1578
1261
|
)
|
|
1579
|
-
|
|
1580
|
-
"
|
|
1262
|
+
ListInsightsRequestPaginateTypeDef = TypedDict(
|
|
1263
|
+
"ListInsightsRequestPaginateTypeDef",
|
|
1581
1264
|
{
|
|
1582
1265
|
"clusterName": str,
|
|
1583
1266
|
"filter": NotRequired[InsightsFilterTypeDef],
|
|
1584
1267
|
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1585
1268
|
},
|
|
1586
1269
|
)
|
|
1587
|
-
|
|
1588
|
-
"
|
|
1270
|
+
ListInsightsRequestTypeDef = TypedDict(
|
|
1271
|
+
"ListInsightsRequestTypeDef",
|
|
1589
1272
|
{
|
|
1590
1273
|
"clusterName": str,
|
|
1591
1274
|
"filter": NotRequired[InsightsFilterTypeDef],
|
|
@@ -1593,33 +1276,29 @@ ListInsightsRequestRequestTypeDef = TypedDict(
|
|
|
1593
1276
|
"nextToken": NotRequired[str],
|
|
1594
1277
|
},
|
|
1595
1278
|
)
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
"LoggingOutputTypeDef",
|
|
1612
|
-
{
|
|
1613
|
-
"clusterLogging": NotRequired[List[LogSetupOutputTypeDef]],
|
|
1614
|
-
},
|
|
1615
|
-
)
|
|
1616
|
-
LoggingTypeDef = TypedDict(
|
|
1617
|
-
"LoggingTypeDef",
|
|
1618
|
-
{
|
|
1619
|
-
"clusterLogging": NotRequired[Sequence[LogSetupTypeDef]],
|
|
1620
|
-
},
|
|
1621
|
-
)
|
|
1279
|
+
|
|
1280
|
+
class NodegroupHealthTypeDef(TypedDict):
|
|
1281
|
+
issues: NotRequired[List[IssueTypeDef]]
|
|
1282
|
+
|
|
1283
|
+
class ListPodIdentityAssociationsResponseTypeDef(TypedDict):
|
|
1284
|
+
associations: List[PodIdentityAssociationSummaryTypeDef]
|
|
1285
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1286
|
+
nextToken: NotRequired[str]
|
|
1287
|
+
|
|
1288
|
+
class LoggingOutputTypeDef(TypedDict):
|
|
1289
|
+
clusterLogging: NotRequired[List[LogSetupOutputTypeDef]]
|
|
1290
|
+
|
|
1291
|
+
class LoggingTypeDef(TypedDict):
|
|
1292
|
+
clusterLogging: NotRequired[Sequence[LogSetupTypeDef]]
|
|
1293
|
+
|
|
1622
1294
|
RemoteAccessConfigUnionTypeDef = Union[RemoteAccessConfigTypeDef, RemoteAccessConfigOutputTypeDef]
|
|
1295
|
+
|
|
1296
|
+
class RemoteNetworkConfigResponseTypeDef(TypedDict):
|
|
1297
|
+
remoteNodeNetworks: NotRequired[List[RemoteNodeNetworkOutputTypeDef]]
|
|
1298
|
+
remotePodNetworks: NotRequired[List[RemotePodNetworkOutputTypeDef]]
|
|
1299
|
+
|
|
1300
|
+
RemoteNodeNetworkUnionTypeDef = Union[RemoteNodeNetworkTypeDef, RemoteNodeNetworkOutputTypeDef]
|
|
1301
|
+
RemotePodNetworkUnionTypeDef = Union[RemotePodNetworkTypeDef, RemotePodNetworkOutputTypeDef]
|
|
1623
1302
|
UpdateTypeDef = TypedDict(
|
|
1624
1303
|
"UpdateTypeDef",
|
|
1625
1304
|
{
|
|
@@ -1631,45 +1310,43 @@ UpdateTypeDef = TypedDict(
|
|
|
1631
1310
|
"errors": NotRequired[List[ErrorDetailTypeDef]],
|
|
1632
1311
|
},
|
|
1633
1312
|
)
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
},
|
|
1672
|
-
)
|
|
1313
|
+
|
|
1314
|
+
class AssociateAccessPolicyResponseTypeDef(TypedDict):
|
|
1315
|
+
clusterName: str
|
|
1316
|
+
principalArn: str
|
|
1317
|
+
associatedAccessPolicy: AssociatedAccessPolicyTypeDef
|
|
1318
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1319
|
+
|
|
1320
|
+
class ListAssociatedAccessPoliciesResponseTypeDef(TypedDict):
|
|
1321
|
+
clusterName: str
|
|
1322
|
+
principalArn: str
|
|
1323
|
+
associatedAccessPolicies: List[AssociatedAccessPolicyTypeDef]
|
|
1324
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1325
|
+
nextToken: NotRequired[str]
|
|
1326
|
+
|
|
1327
|
+
class AssociateAccessPolicyRequestTypeDef(TypedDict):
|
|
1328
|
+
clusterName: str
|
|
1329
|
+
principalArn: str
|
|
1330
|
+
policyArn: str
|
|
1331
|
+
accessScope: AccessScopeUnionTypeDef
|
|
1332
|
+
|
|
1333
|
+
class AddonTypeDef(TypedDict):
|
|
1334
|
+
addonName: NotRequired[str]
|
|
1335
|
+
clusterName: NotRequired[str]
|
|
1336
|
+
status: NotRequired[AddonStatusType]
|
|
1337
|
+
addonVersion: NotRequired[str]
|
|
1338
|
+
health: NotRequired[AddonHealthTypeDef]
|
|
1339
|
+
addonArn: NotRequired[str]
|
|
1340
|
+
createdAt: NotRequired[datetime]
|
|
1341
|
+
modifiedAt: NotRequired[datetime]
|
|
1342
|
+
serviceAccountRoleArn: NotRequired[str]
|
|
1343
|
+
tags: NotRequired[Dict[str, str]]
|
|
1344
|
+
publisher: NotRequired[str]
|
|
1345
|
+
owner: NotRequired[str]
|
|
1346
|
+
marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
|
|
1347
|
+
configurationValues: NotRequired[str]
|
|
1348
|
+
podIdentityAssociations: NotRequired[List[str]]
|
|
1349
|
+
|
|
1673
1350
|
AddonInfoTypeDef = TypedDict(
|
|
1674
1351
|
"AddonInfoTypeDef",
|
|
1675
1352
|
{
|
|
@@ -1681,131 +1358,123 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1681
1358
|
"marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
|
|
1682
1359
|
},
|
|
1683
1360
|
)
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
)
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
)
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
ListEksAnywhereSubscriptionsResponseTypeDef
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
"UpdateEksAnywhereSubscriptionResponseTypeDef",
|
|
1721
|
-
{
|
|
1722
|
-
"subscription": EksAnywhereSubscriptionTypeDef,
|
|
1723
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1724
|
-
},
|
|
1725
|
-
)
|
|
1726
|
-
UpdateNodegroupConfigRequestRequestTypeDef = TypedDict(
|
|
1727
|
-
"UpdateNodegroupConfigRequestRequestTypeDef",
|
|
1728
|
-
{
|
|
1729
|
-
"clusterName": str,
|
|
1730
|
-
"nodegroupName": str,
|
|
1731
|
-
"labels": NotRequired[UpdateLabelsPayloadTypeDef],
|
|
1732
|
-
"taints": NotRequired[UpdateTaintsPayloadTypeDef],
|
|
1733
|
-
"scalingConfig": NotRequired[NodegroupScalingConfigTypeDef],
|
|
1734
|
-
"updateConfig": NotRequired[NodegroupUpdateConfigTypeDef],
|
|
1735
|
-
"clientRequestToken": NotRequired[str],
|
|
1736
|
-
},
|
|
1737
|
-
)
|
|
1361
|
+
|
|
1362
|
+
class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
1363
|
+
deprecationDetails: NotRequired[List[DeprecationDetailTypeDef]]
|
|
1364
|
+
addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
|
|
1365
|
+
|
|
1366
|
+
class UpdateNodegroupConfigRequestTypeDef(TypedDict):
|
|
1367
|
+
clusterName: str
|
|
1368
|
+
nodegroupName: str
|
|
1369
|
+
labels: NotRequired[UpdateLabelsPayloadTypeDef]
|
|
1370
|
+
taints: NotRequired[UpdateTaintsPayloadTypeDef]
|
|
1371
|
+
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1372
|
+
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1373
|
+
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1374
|
+
clientRequestToken: NotRequired[str]
|
|
1375
|
+
|
|
1376
|
+
class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
1377
|
+
subscription: EksAnywhereSubscriptionTypeDef
|
|
1378
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1379
|
+
|
|
1380
|
+
class DeleteEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
1381
|
+
subscription: EksAnywhereSubscriptionTypeDef
|
|
1382
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1383
|
+
|
|
1384
|
+
class DescribeEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
1385
|
+
subscription: EksAnywhereSubscriptionTypeDef
|
|
1386
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1387
|
+
|
|
1388
|
+
class ListEksAnywhereSubscriptionsResponseTypeDef(TypedDict):
|
|
1389
|
+
subscriptions: List[EksAnywhereSubscriptionTypeDef]
|
|
1390
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1391
|
+
nextToken: NotRequired[str]
|
|
1392
|
+
|
|
1393
|
+
class UpdateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
1394
|
+
subscription: EksAnywhereSubscriptionTypeDef
|
|
1395
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1396
|
+
|
|
1738
1397
|
EncryptionConfigUnionTypeDef = Union[EncryptionConfigTypeDef, EncryptionConfigOutputTypeDef]
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
)
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1398
|
+
|
|
1399
|
+
class FargateProfileTypeDef(TypedDict):
|
|
1400
|
+
fargateProfileName: NotRequired[str]
|
|
1401
|
+
fargateProfileArn: NotRequired[str]
|
|
1402
|
+
clusterName: NotRequired[str]
|
|
1403
|
+
createdAt: NotRequired[datetime]
|
|
1404
|
+
podExecutionRoleArn: NotRequired[str]
|
|
1405
|
+
subnets: NotRequired[List[str]]
|
|
1406
|
+
selectors: NotRequired[List[FargateProfileSelectorOutputTypeDef]]
|
|
1407
|
+
status: NotRequired[FargateProfileStatusType]
|
|
1408
|
+
tags: NotRequired[Dict[str, str]]
|
|
1409
|
+
health: NotRequired[FargateProfileHealthTypeDef]
|
|
1410
|
+
|
|
1411
|
+
class CreateFargateProfileRequestTypeDef(TypedDict):
|
|
1412
|
+
fargateProfileName: str
|
|
1413
|
+
clusterName: str
|
|
1414
|
+
podExecutionRoleArn: str
|
|
1415
|
+
subnets: NotRequired[Sequence[str]]
|
|
1416
|
+
selectors: NotRequired[Sequence[FargateProfileSelectorUnionTypeDef]]
|
|
1417
|
+
clientRequestToken: NotRequired[str]
|
|
1418
|
+
tags: NotRequired[Mapping[str, str]]
|
|
1419
|
+
|
|
1420
|
+
class DescribeIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
1421
|
+
identityProviderConfig: IdentityProviderConfigResponseTypeDef
|
|
1422
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1423
|
+
|
|
1424
|
+
class ListInsightsResponseTypeDef(TypedDict):
|
|
1425
|
+
insights: List[InsightSummaryTypeDef]
|
|
1426
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1427
|
+
nextToken: NotRequired[str]
|
|
1428
|
+
|
|
1429
|
+
class NodegroupTypeDef(TypedDict):
|
|
1430
|
+
nodegroupName: NotRequired[str]
|
|
1431
|
+
nodegroupArn: NotRequired[str]
|
|
1432
|
+
clusterName: NotRequired[str]
|
|
1433
|
+
version: NotRequired[str]
|
|
1434
|
+
releaseVersion: NotRequired[str]
|
|
1435
|
+
createdAt: NotRequired[datetime]
|
|
1436
|
+
modifiedAt: NotRequired[datetime]
|
|
1437
|
+
status: NotRequired[NodegroupStatusType]
|
|
1438
|
+
capacityType: NotRequired[CapacityTypesType]
|
|
1439
|
+
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1440
|
+
instanceTypes: NotRequired[List[str]]
|
|
1441
|
+
subnets: NotRequired[List[str]]
|
|
1442
|
+
remoteAccess: NotRequired[RemoteAccessConfigOutputTypeDef]
|
|
1443
|
+
amiType: NotRequired[AMITypesType]
|
|
1444
|
+
nodeRole: NotRequired[str]
|
|
1445
|
+
labels: NotRequired[Dict[str, str]]
|
|
1446
|
+
taints: NotRequired[List[TaintTypeDef]]
|
|
1447
|
+
resources: NotRequired[NodegroupResourcesTypeDef]
|
|
1448
|
+
diskSize: NotRequired[int]
|
|
1449
|
+
health: NotRequired[NodegroupHealthTypeDef]
|
|
1450
|
+
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1451
|
+
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1452
|
+
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1453
|
+
tags: NotRequired[Dict[str, str]]
|
|
1454
|
+
|
|
1455
|
+
LoggingUnionTypeDef = Union[LoggingTypeDef, LoggingOutputTypeDef]
|
|
1456
|
+
|
|
1457
|
+
class CreateNodegroupRequestTypeDef(TypedDict):
|
|
1458
|
+
clusterName: str
|
|
1459
|
+
nodegroupName: str
|
|
1460
|
+
subnets: Sequence[str]
|
|
1461
|
+
nodeRole: str
|
|
1462
|
+
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1463
|
+
diskSize: NotRequired[int]
|
|
1464
|
+
instanceTypes: NotRequired[Sequence[str]]
|
|
1465
|
+
amiType: NotRequired[AMITypesType]
|
|
1466
|
+
remoteAccess: NotRequired[RemoteAccessConfigUnionTypeDef]
|
|
1467
|
+
labels: NotRequired[Mapping[str, str]]
|
|
1468
|
+
taints: NotRequired[Sequence[TaintTypeDef]]
|
|
1469
|
+
tags: NotRequired[Mapping[str, str]]
|
|
1470
|
+
clientRequestToken: NotRequired[str]
|
|
1471
|
+
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1472
|
+
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1473
|
+
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1474
|
+
capacityType: NotRequired[CapacityTypesType]
|
|
1475
|
+
version: NotRequired[str]
|
|
1476
|
+
releaseVersion: NotRequired[str]
|
|
1477
|
+
|
|
1809
1478
|
ClusterTypeDef = TypedDict(
|
|
1810
1479
|
"ClusterTypeDef",
|
|
1811
1480
|
{
|
|
@@ -1831,113 +1500,71 @@ ClusterTypeDef = TypedDict(
|
|
|
1831
1500
|
"outpostConfig": NotRequired[OutpostConfigResponseTypeDef],
|
|
1832
1501
|
"accessConfig": NotRequired[AccessConfigResponseTypeDef],
|
|
1833
1502
|
"upgradePolicy": NotRequired[UpgradePolicyResponseTypeDef],
|
|
1503
|
+
"zonalShiftConfig": NotRequired[ZonalShiftConfigResponseTypeDef],
|
|
1504
|
+
"remoteNetworkConfig": NotRequired[RemoteNetworkConfigResponseTypeDef],
|
|
1505
|
+
"computeConfig": NotRequired[ComputeConfigResponseTypeDef],
|
|
1506
|
+
"storageConfig": NotRequired[StorageConfigResponseTypeDef],
|
|
1834
1507
|
},
|
|
1835
1508
|
)
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
)
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
)
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
)
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1896
|
-
},
|
|
1897
|
-
)
|
|
1898
|
-
UpdateNodegroupConfigResponseTypeDef = TypedDict(
|
|
1899
|
-
"UpdateNodegroupConfigResponseTypeDef",
|
|
1900
|
-
{
|
|
1901
|
-
"update": UpdateTypeDef,
|
|
1902
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1903
|
-
},
|
|
1904
|
-
)
|
|
1905
|
-
UpdateNodegroupVersionResponseTypeDef = TypedDict(
|
|
1906
|
-
"UpdateNodegroupVersionResponseTypeDef",
|
|
1907
|
-
{
|
|
1908
|
-
"update": UpdateTypeDef,
|
|
1909
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1910
|
-
},
|
|
1911
|
-
)
|
|
1912
|
-
CreateAddonResponseTypeDef = TypedDict(
|
|
1913
|
-
"CreateAddonResponseTypeDef",
|
|
1914
|
-
{
|
|
1915
|
-
"addon": AddonTypeDef,
|
|
1916
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1917
|
-
},
|
|
1918
|
-
)
|
|
1919
|
-
DeleteAddonResponseTypeDef = TypedDict(
|
|
1920
|
-
"DeleteAddonResponseTypeDef",
|
|
1921
|
-
{
|
|
1922
|
-
"addon": AddonTypeDef,
|
|
1923
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1924
|
-
},
|
|
1925
|
-
)
|
|
1926
|
-
DescribeAddonResponseTypeDef = TypedDict(
|
|
1927
|
-
"DescribeAddonResponseTypeDef",
|
|
1928
|
-
{
|
|
1929
|
-
"addon": AddonTypeDef,
|
|
1930
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1931
|
-
},
|
|
1932
|
-
)
|
|
1933
|
-
DescribeAddonVersionsResponseTypeDef = TypedDict(
|
|
1934
|
-
"DescribeAddonVersionsResponseTypeDef",
|
|
1935
|
-
{
|
|
1936
|
-
"addons": List[AddonInfoTypeDef],
|
|
1937
|
-
"nextToken": str,
|
|
1938
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1939
|
-
},
|
|
1940
|
-
)
|
|
1509
|
+
|
|
1510
|
+
class RemoteNetworkConfigRequestTypeDef(TypedDict):
|
|
1511
|
+
remoteNodeNetworks: NotRequired[Sequence[RemoteNodeNetworkUnionTypeDef]]
|
|
1512
|
+
remotePodNetworks: NotRequired[Sequence[RemotePodNetworkUnionTypeDef]]
|
|
1513
|
+
|
|
1514
|
+
class AssociateEncryptionConfigResponseTypeDef(TypedDict):
|
|
1515
|
+
update: UpdateTypeDef
|
|
1516
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1517
|
+
|
|
1518
|
+
class AssociateIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
1519
|
+
update: UpdateTypeDef
|
|
1520
|
+
tags: Dict[str, str]
|
|
1521
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1522
|
+
|
|
1523
|
+
class DescribeUpdateResponseTypeDef(TypedDict):
|
|
1524
|
+
update: UpdateTypeDef
|
|
1525
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1526
|
+
|
|
1527
|
+
class DisassociateIdentityProviderConfigResponseTypeDef(TypedDict):
|
|
1528
|
+
update: UpdateTypeDef
|
|
1529
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1530
|
+
|
|
1531
|
+
class UpdateAddonResponseTypeDef(TypedDict):
|
|
1532
|
+
update: UpdateTypeDef
|
|
1533
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1534
|
+
|
|
1535
|
+
class UpdateClusterConfigResponseTypeDef(TypedDict):
|
|
1536
|
+
update: UpdateTypeDef
|
|
1537
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1538
|
+
|
|
1539
|
+
class UpdateClusterVersionResponseTypeDef(TypedDict):
|
|
1540
|
+
update: UpdateTypeDef
|
|
1541
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1542
|
+
|
|
1543
|
+
class UpdateNodegroupConfigResponseTypeDef(TypedDict):
|
|
1544
|
+
update: UpdateTypeDef
|
|
1545
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1546
|
+
|
|
1547
|
+
class UpdateNodegroupVersionResponseTypeDef(TypedDict):
|
|
1548
|
+
update: UpdateTypeDef
|
|
1549
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1550
|
+
|
|
1551
|
+
class CreateAddonResponseTypeDef(TypedDict):
|
|
1552
|
+
addon: AddonTypeDef
|
|
1553
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1554
|
+
|
|
1555
|
+
class DeleteAddonResponseTypeDef(TypedDict):
|
|
1556
|
+
addon: AddonTypeDef
|
|
1557
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1558
|
+
|
|
1559
|
+
class DescribeAddonResponseTypeDef(TypedDict):
|
|
1560
|
+
addon: AddonTypeDef
|
|
1561
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1562
|
+
|
|
1563
|
+
class DescribeAddonVersionsResponseTypeDef(TypedDict):
|
|
1564
|
+
addons: List[AddonInfoTypeDef]
|
|
1565
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1566
|
+
nextToken: NotRequired[str]
|
|
1567
|
+
|
|
1941
1568
|
InsightTypeDef = TypedDict(
|
|
1942
1569
|
"InsightTypeDef",
|
|
1943
1570
|
{
|
|
@@ -1955,113 +1582,88 @@ InsightTypeDef = TypedDict(
|
|
|
1955
1582
|
"categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
|
|
1956
1583
|
},
|
|
1957
1584
|
)
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
)
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
"cluster": ClusterTypeDef,
|
|
2044
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2045
|
-
},
|
|
2046
|
-
)
|
|
2047
|
-
DescribeClusterResponseTypeDef = TypedDict(
|
|
2048
|
-
"DescribeClusterResponseTypeDef",
|
|
2049
|
-
{
|
|
2050
|
-
"cluster": ClusterTypeDef,
|
|
2051
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2052
|
-
},
|
|
2053
|
-
)
|
|
2054
|
-
RegisterClusterResponseTypeDef = TypedDict(
|
|
2055
|
-
"RegisterClusterResponseTypeDef",
|
|
2056
|
-
{
|
|
2057
|
-
"cluster": ClusterTypeDef,
|
|
2058
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2059
|
-
},
|
|
2060
|
-
)
|
|
2061
|
-
DescribeInsightResponseTypeDef = TypedDict(
|
|
2062
|
-
"DescribeInsightResponseTypeDef",
|
|
2063
|
-
{
|
|
2064
|
-
"insight": InsightTypeDef,
|
|
2065
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
2066
|
-
},
|
|
2067
|
-
)
|
|
1585
|
+
|
|
1586
|
+
class AssociateEncryptionConfigRequestTypeDef(TypedDict):
|
|
1587
|
+
clusterName: str
|
|
1588
|
+
encryptionConfig: Sequence[EncryptionConfigUnionTypeDef]
|
|
1589
|
+
clientRequestToken: NotRequired[str]
|
|
1590
|
+
|
|
1591
|
+
class CreateFargateProfileResponseTypeDef(TypedDict):
|
|
1592
|
+
fargateProfile: FargateProfileTypeDef
|
|
1593
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1594
|
+
|
|
1595
|
+
class DeleteFargateProfileResponseTypeDef(TypedDict):
|
|
1596
|
+
fargateProfile: FargateProfileTypeDef
|
|
1597
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1598
|
+
|
|
1599
|
+
class DescribeFargateProfileResponseTypeDef(TypedDict):
|
|
1600
|
+
fargateProfile: FargateProfileTypeDef
|
|
1601
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1602
|
+
|
|
1603
|
+
class CreateNodegroupResponseTypeDef(TypedDict):
|
|
1604
|
+
nodegroup: NodegroupTypeDef
|
|
1605
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1606
|
+
|
|
1607
|
+
class DeleteNodegroupResponseTypeDef(TypedDict):
|
|
1608
|
+
nodegroup: NodegroupTypeDef
|
|
1609
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1610
|
+
|
|
1611
|
+
class DescribeNodegroupResponseTypeDef(TypedDict):
|
|
1612
|
+
nodegroup: NodegroupTypeDef
|
|
1613
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1614
|
+
|
|
1615
|
+
class CreateClusterResponseTypeDef(TypedDict):
|
|
1616
|
+
cluster: ClusterTypeDef
|
|
1617
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1618
|
+
|
|
1619
|
+
class DeleteClusterResponseTypeDef(TypedDict):
|
|
1620
|
+
cluster: ClusterTypeDef
|
|
1621
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1622
|
+
|
|
1623
|
+
class DeregisterClusterResponseTypeDef(TypedDict):
|
|
1624
|
+
cluster: ClusterTypeDef
|
|
1625
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1626
|
+
|
|
1627
|
+
class DescribeClusterResponseTypeDef(TypedDict):
|
|
1628
|
+
cluster: ClusterTypeDef
|
|
1629
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1630
|
+
|
|
1631
|
+
class RegisterClusterResponseTypeDef(TypedDict):
|
|
1632
|
+
cluster: ClusterTypeDef
|
|
1633
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1634
|
+
|
|
1635
|
+
class CreateClusterRequestTypeDef(TypedDict):
|
|
1636
|
+
name: str
|
|
1637
|
+
roleArn: str
|
|
1638
|
+
resourcesVpcConfig: VpcConfigRequestTypeDef
|
|
1639
|
+
version: NotRequired[str]
|
|
1640
|
+
kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
|
|
1641
|
+
logging: NotRequired[LoggingUnionTypeDef]
|
|
1642
|
+
clientRequestToken: NotRequired[str]
|
|
1643
|
+
tags: NotRequired[Mapping[str, str]]
|
|
1644
|
+
encryptionConfig: NotRequired[Sequence[EncryptionConfigUnionTypeDef]]
|
|
1645
|
+
outpostConfig: NotRequired[OutpostConfigRequestTypeDef]
|
|
1646
|
+
accessConfig: NotRequired[CreateAccessConfigRequestTypeDef]
|
|
1647
|
+
bootstrapSelfManagedAddons: NotRequired[bool]
|
|
1648
|
+
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1649
|
+
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1650
|
+
remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
|
|
1651
|
+
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1652
|
+
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1653
|
+
|
|
1654
|
+
class UpdateClusterConfigRequestTypeDef(TypedDict):
|
|
1655
|
+
name: str
|
|
1656
|
+
resourcesVpcConfig: NotRequired[VpcConfigRequestTypeDef]
|
|
1657
|
+
logging: NotRequired[LoggingUnionTypeDef]
|
|
1658
|
+
clientRequestToken: NotRequired[str]
|
|
1659
|
+
accessConfig: NotRequired[UpdateAccessConfigRequestTypeDef]
|
|
1660
|
+
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1661
|
+
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1662
|
+
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1663
|
+
kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
|
|
1664
|
+
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1665
|
+
remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
|
|
1666
|
+
|
|
1667
|
+
class DescribeInsightResponseTypeDef(TypedDict):
|
|
1668
|
+
insight: InsightTypeDef
|
|
1669
|
+
ResponseMetadata: ResponseMetadataTypeDef
|