mypy-boto3-eks 1.40.14__py3-none-any.whl → 1.40.36__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/__main__.py +3 -3
- mypy_boto3_eks/client.py +25 -0
- mypy_boto3_eks/client.pyi +25 -0
- mypy_boto3_eks/literals.py +7 -13
- mypy_boto3_eks/literals.pyi +7 -13
- mypy_boto3_eks/type_defs.py +94 -41
- mypy_boto3_eks/type_defs.pyi +84 -37
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.40.14.dist-info → mypy_boto3_eks-1.40.36.dist-info}/METADATA +4 -4
- mypy_boto3_eks-1.40.36.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.40.14.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.40.14.dist-info → mypy_boto3_eks-1.40.36.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.40.14.dist-info → mypy_boto3_eks-1.40.36.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_eks-1.40.14.dist-info → mypy_boto3_eks-1.40.36.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 EKS 1.40.
|
|
16
|
-
"Version: 1.40.
|
|
15
|
+
"Type annotations for boto3 EKS 1.40.36\n"
|
|
16
|
+
"Version: 1.40.36\n"
|
|
17
17
|
"Builder version: 8.11.0\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#eks\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.40.
|
|
29
|
+
sys.stdout.write("1.40.36\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_eks/client.py
CHANGED
|
@@ -97,6 +97,8 @@ from .type_defs import (
|
|
|
97
97
|
DescribeIdentityProviderConfigResponseTypeDef,
|
|
98
98
|
DescribeInsightRequestTypeDef,
|
|
99
99
|
DescribeInsightResponseTypeDef,
|
|
100
|
+
DescribeInsightsRefreshRequestTypeDef,
|
|
101
|
+
DescribeInsightsRefreshResponseTypeDef,
|
|
100
102
|
DescribeNodegroupRequestTypeDef,
|
|
101
103
|
DescribeNodegroupResponseTypeDef,
|
|
102
104
|
DescribePodIdentityAssociationRequestTypeDef,
|
|
@@ -134,6 +136,8 @@ from .type_defs import (
|
|
|
134
136
|
ListUpdatesResponseTypeDef,
|
|
135
137
|
RegisterClusterRequestTypeDef,
|
|
136
138
|
RegisterClusterResponseTypeDef,
|
|
139
|
+
StartInsightsRefreshRequestTypeDef,
|
|
140
|
+
StartInsightsRefreshResponseTypeDef,
|
|
137
141
|
TagResourceRequestTypeDef,
|
|
138
142
|
UntagResourceRequestTypeDef,
|
|
139
143
|
UpdateAccessEntryRequestTypeDef,
|
|
@@ -514,6 +518,16 @@ class EKSClient(BaseClient):
|
|
|
514
518
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_insight)
|
|
515
519
|
"""
|
|
516
520
|
|
|
521
|
+
def describe_insights_refresh(
|
|
522
|
+
self, **kwargs: Unpack[DescribeInsightsRefreshRequestTypeDef]
|
|
523
|
+
) -> DescribeInsightsRefreshResponseTypeDef:
|
|
524
|
+
"""
|
|
525
|
+
Returns the status of the latest on-demand cluster insights refresh operation.
|
|
526
|
+
|
|
527
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_insights_refresh.html)
|
|
528
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_insights_refresh)
|
|
529
|
+
"""
|
|
530
|
+
|
|
517
531
|
def describe_nodegroup(
|
|
518
532
|
self, **kwargs: Unpack[DescribeNodegroupRequestTypeDef]
|
|
519
533
|
) -> DescribeNodegroupResponseTypeDef:
|
|
@@ -706,6 +720,17 @@ class EKSClient(BaseClient):
|
|
|
706
720
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#register_cluster)
|
|
707
721
|
"""
|
|
708
722
|
|
|
723
|
+
def start_insights_refresh(
|
|
724
|
+
self, **kwargs: Unpack[StartInsightsRefreshRequestTypeDef]
|
|
725
|
+
) -> StartInsightsRefreshResponseTypeDef:
|
|
726
|
+
"""
|
|
727
|
+
Initiates an on-demand refresh operation for cluster insights, getting the
|
|
728
|
+
latest analysis outside of the standard refresh schedule.
|
|
729
|
+
|
|
730
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/start_insights_refresh.html)
|
|
731
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#start_insights_refresh)
|
|
732
|
+
"""
|
|
733
|
+
|
|
709
734
|
def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> Dict[str, Any]:
|
|
710
735
|
"""
|
|
711
736
|
Associates the specified tags to an Amazon EKS resource with the specified
|
mypy_boto3_eks/client.pyi
CHANGED
|
@@ -97,6 +97,8 @@ from .type_defs import (
|
|
|
97
97
|
DescribeIdentityProviderConfigResponseTypeDef,
|
|
98
98
|
DescribeInsightRequestTypeDef,
|
|
99
99
|
DescribeInsightResponseTypeDef,
|
|
100
|
+
DescribeInsightsRefreshRequestTypeDef,
|
|
101
|
+
DescribeInsightsRefreshResponseTypeDef,
|
|
100
102
|
DescribeNodegroupRequestTypeDef,
|
|
101
103
|
DescribeNodegroupResponseTypeDef,
|
|
102
104
|
DescribePodIdentityAssociationRequestTypeDef,
|
|
@@ -134,6 +136,8 @@ from .type_defs import (
|
|
|
134
136
|
ListUpdatesResponseTypeDef,
|
|
135
137
|
RegisterClusterRequestTypeDef,
|
|
136
138
|
RegisterClusterResponseTypeDef,
|
|
139
|
+
StartInsightsRefreshRequestTypeDef,
|
|
140
|
+
StartInsightsRefreshResponseTypeDef,
|
|
137
141
|
TagResourceRequestTypeDef,
|
|
138
142
|
UntagResourceRequestTypeDef,
|
|
139
143
|
UpdateAccessEntryRequestTypeDef,
|
|
@@ -511,6 +515,16 @@ class EKSClient(BaseClient):
|
|
|
511
515
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_insight)
|
|
512
516
|
"""
|
|
513
517
|
|
|
518
|
+
def describe_insights_refresh(
|
|
519
|
+
self, **kwargs: Unpack[DescribeInsightsRefreshRequestTypeDef]
|
|
520
|
+
) -> DescribeInsightsRefreshResponseTypeDef:
|
|
521
|
+
"""
|
|
522
|
+
Returns the status of the latest on-demand cluster insights refresh operation.
|
|
523
|
+
|
|
524
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/describe_insights_refresh.html)
|
|
525
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#describe_insights_refresh)
|
|
526
|
+
"""
|
|
527
|
+
|
|
514
528
|
def describe_nodegroup(
|
|
515
529
|
self, **kwargs: Unpack[DescribeNodegroupRequestTypeDef]
|
|
516
530
|
) -> DescribeNodegroupResponseTypeDef:
|
|
@@ -703,6 +717,17 @@ class EKSClient(BaseClient):
|
|
|
703
717
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#register_cluster)
|
|
704
718
|
"""
|
|
705
719
|
|
|
720
|
+
def start_insights_refresh(
|
|
721
|
+
self, **kwargs: Unpack[StartInsightsRefreshRequestTypeDef]
|
|
722
|
+
) -> StartInsightsRefreshResponseTypeDef:
|
|
723
|
+
"""
|
|
724
|
+
Initiates an on-demand refresh operation for cluster insights, getting the
|
|
725
|
+
latest analysis outside of the standard refresh schedule.
|
|
726
|
+
|
|
727
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks/client/start_insights_refresh.html)
|
|
728
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks/client/#start_insights_refresh)
|
|
729
|
+
"""
|
|
730
|
+
|
|
706
731
|
def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> Dict[str, Any]:
|
|
707
732
|
"""
|
|
708
733
|
Associates the specified tags to an Amazon EKS resource with the specified
|
mypy_boto3_eks/literals.py
CHANGED
|
@@ -51,6 +51,7 @@ __all__ = (
|
|
|
51
51
|
"FargateProfileIssueCodeType",
|
|
52
52
|
"FargateProfileStatusType",
|
|
53
53
|
"InsightStatusValueType",
|
|
54
|
+
"InsightsRefreshStatusType",
|
|
54
55
|
"IpFamilyType",
|
|
55
56
|
"ListAccessEntriesPaginatorName",
|
|
56
57
|
"ListAccessPoliciesPaginatorName",
|
|
@@ -72,6 +73,7 @@ __all__ = (
|
|
|
72
73
|
"NodegroupUpdateStrategiesType",
|
|
73
74
|
"PaginatorName",
|
|
74
75
|
"RegionName",
|
|
76
|
+
"RepairActionType",
|
|
75
77
|
"ResolveConflictsType",
|
|
76
78
|
"ResourceServiceName",
|
|
77
79
|
"ServiceName",
|
|
@@ -198,6 +200,7 @@ FargateProfileStatusType = Literal[
|
|
|
198
200
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DELETE_FAILED", "DELETING"
|
|
199
201
|
]
|
|
200
202
|
InsightStatusValueType = Literal["ERROR", "PASSING", "UNKNOWN", "WARNING"]
|
|
203
|
+
InsightsRefreshStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS"]
|
|
201
204
|
IpFamilyType = Literal["ipv4", "ipv6"]
|
|
202
205
|
ListAccessEntriesPaginatorName = Literal["list_access_entries"]
|
|
203
206
|
ListAccessPoliciesPaginatorName = Literal["list_access_policies"]
|
|
@@ -256,6 +259,7 @@ NodegroupStatusType = Literal[
|
|
|
256
259
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
|
|
257
260
|
]
|
|
258
261
|
NodegroupUpdateStrategiesType = Literal["DEFAULT", "MINIMAL"]
|
|
262
|
+
RepairActionType = Literal["NoAction", "Reboot", "Replace"]
|
|
259
263
|
ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
|
|
260
264
|
SupportTypeType = Literal["EXTENDED", "STANDARD"]
|
|
261
265
|
TaintEffectType = Literal["NO_EXECUTE", "NO_SCHEDULE", "PREFER_NO_SCHEDULE"]
|
|
@@ -280,6 +284,7 @@ UpdateParamTypeType = Literal[
|
|
|
280
284
|
"MaxUnavailable",
|
|
281
285
|
"MaxUnavailablePercentage",
|
|
282
286
|
"MinSize",
|
|
287
|
+
"NodeRepairConfig",
|
|
283
288
|
"NodeRepairEnabled",
|
|
284
289
|
"PlatformVersion",
|
|
285
290
|
"PodIdentityAssociations",
|
|
@@ -602,8 +607,6 @@ ServiceName = Literal[
|
|
|
602
607
|
"omics",
|
|
603
608
|
"opensearch",
|
|
604
609
|
"opensearchserverless",
|
|
605
|
-
"opsworks",
|
|
606
|
-
"opsworkscm",
|
|
607
610
|
"organizations",
|
|
608
611
|
"osis",
|
|
609
612
|
"outposts",
|
|
@@ -685,7 +688,6 @@ ServiceName = Literal[
|
|
|
685
688
|
"shield",
|
|
686
689
|
"signer",
|
|
687
690
|
"simspaceweaver",
|
|
688
|
-
"sms",
|
|
689
691
|
"snow-device-management",
|
|
690
692
|
"snowball",
|
|
691
693
|
"sns",
|
|
@@ -736,16 +738,7 @@ ServiceName = Literal[
|
|
|
736
738
|
"xray",
|
|
737
739
|
]
|
|
738
740
|
ResourceServiceName = Literal[
|
|
739
|
-
"cloudformation",
|
|
740
|
-
"cloudwatch",
|
|
741
|
-
"dynamodb",
|
|
742
|
-
"ec2",
|
|
743
|
-
"glacier",
|
|
744
|
-
"iam",
|
|
745
|
-
"opsworks",
|
|
746
|
-
"s3",
|
|
747
|
-
"sns",
|
|
748
|
-
"sqs",
|
|
741
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
749
742
|
]
|
|
750
743
|
PaginatorName = Literal[
|
|
751
744
|
"describe_addon_versions",
|
|
@@ -787,6 +780,7 @@ RegionName = Literal[
|
|
|
787
780
|
"ap-southeast-3",
|
|
788
781
|
"ap-southeast-4",
|
|
789
782
|
"ap-southeast-5",
|
|
783
|
+
"ap-southeast-6",
|
|
790
784
|
"ap-southeast-7",
|
|
791
785
|
"ca-central-1",
|
|
792
786
|
"ca-west-1",
|
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -50,6 +50,7 @@ __all__ = (
|
|
|
50
50
|
"FargateProfileIssueCodeType",
|
|
51
51
|
"FargateProfileStatusType",
|
|
52
52
|
"InsightStatusValueType",
|
|
53
|
+
"InsightsRefreshStatusType",
|
|
53
54
|
"IpFamilyType",
|
|
54
55
|
"ListAccessEntriesPaginatorName",
|
|
55
56
|
"ListAccessPoliciesPaginatorName",
|
|
@@ -71,6 +72,7 @@ __all__ = (
|
|
|
71
72
|
"NodegroupUpdateStrategiesType",
|
|
72
73
|
"PaginatorName",
|
|
73
74
|
"RegionName",
|
|
75
|
+
"RepairActionType",
|
|
74
76
|
"ResolveConflictsType",
|
|
75
77
|
"ResourceServiceName",
|
|
76
78
|
"ServiceName",
|
|
@@ -196,6 +198,7 @@ FargateProfileStatusType = Literal[
|
|
|
196
198
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DELETE_FAILED", "DELETING"
|
|
197
199
|
]
|
|
198
200
|
InsightStatusValueType = Literal["ERROR", "PASSING", "UNKNOWN", "WARNING"]
|
|
201
|
+
InsightsRefreshStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS"]
|
|
199
202
|
IpFamilyType = Literal["ipv4", "ipv6"]
|
|
200
203
|
ListAccessEntriesPaginatorName = Literal["list_access_entries"]
|
|
201
204
|
ListAccessPoliciesPaginatorName = Literal["list_access_policies"]
|
|
@@ -254,6 +257,7 @@ NodegroupStatusType = Literal[
|
|
|
254
257
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
|
|
255
258
|
]
|
|
256
259
|
NodegroupUpdateStrategiesType = Literal["DEFAULT", "MINIMAL"]
|
|
260
|
+
RepairActionType = Literal["NoAction", "Reboot", "Replace"]
|
|
257
261
|
ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
|
|
258
262
|
SupportTypeType = Literal["EXTENDED", "STANDARD"]
|
|
259
263
|
TaintEffectType = Literal["NO_EXECUTE", "NO_SCHEDULE", "PREFER_NO_SCHEDULE"]
|
|
@@ -278,6 +282,7 @@ UpdateParamTypeType = Literal[
|
|
|
278
282
|
"MaxUnavailable",
|
|
279
283
|
"MaxUnavailablePercentage",
|
|
280
284
|
"MinSize",
|
|
285
|
+
"NodeRepairConfig",
|
|
281
286
|
"NodeRepairEnabled",
|
|
282
287
|
"PlatformVersion",
|
|
283
288
|
"PodIdentityAssociations",
|
|
@@ -600,8 +605,6 @@ ServiceName = Literal[
|
|
|
600
605
|
"omics",
|
|
601
606
|
"opensearch",
|
|
602
607
|
"opensearchserverless",
|
|
603
|
-
"opsworks",
|
|
604
|
-
"opsworkscm",
|
|
605
608
|
"organizations",
|
|
606
609
|
"osis",
|
|
607
610
|
"outposts",
|
|
@@ -683,7 +686,6 @@ ServiceName = Literal[
|
|
|
683
686
|
"shield",
|
|
684
687
|
"signer",
|
|
685
688
|
"simspaceweaver",
|
|
686
|
-
"sms",
|
|
687
689
|
"snow-device-management",
|
|
688
690
|
"snowball",
|
|
689
691
|
"sns",
|
|
@@ -734,16 +736,7 @@ ServiceName = Literal[
|
|
|
734
736
|
"xray",
|
|
735
737
|
]
|
|
736
738
|
ResourceServiceName = Literal[
|
|
737
|
-
"cloudformation",
|
|
738
|
-
"cloudwatch",
|
|
739
|
-
"dynamodb",
|
|
740
|
-
"ec2",
|
|
741
|
-
"glacier",
|
|
742
|
-
"iam",
|
|
743
|
-
"opsworks",
|
|
744
|
-
"s3",
|
|
745
|
-
"sns",
|
|
746
|
-
"sqs",
|
|
739
|
+
"cloudformation", "cloudwatch", "dynamodb", "ec2", "glacier", "iam", "s3", "sns", "sqs"
|
|
747
740
|
]
|
|
748
741
|
PaginatorName = Literal[
|
|
749
742
|
"describe_addon_versions",
|
|
@@ -785,6 +778,7 @@ RegionName = Literal[
|
|
|
785
778
|
"ap-southeast-3",
|
|
786
779
|
"ap-southeast-4",
|
|
787
780
|
"ap-southeast-5",
|
|
781
|
+
"ap-southeast-6",
|
|
788
782
|
"ap-southeast-7",
|
|
789
783
|
"ca-central-1",
|
|
790
784
|
"ca-west-1",
|
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -37,12 +37,14 @@ from .literals import (
|
|
|
37
37
|
ErrorCodeType,
|
|
38
38
|
FargateProfileIssueCodeType,
|
|
39
39
|
FargateProfileStatusType,
|
|
40
|
+
InsightsRefreshStatusType,
|
|
40
41
|
InsightStatusValueType,
|
|
41
42
|
IpFamilyType,
|
|
42
43
|
LogTypeType,
|
|
43
44
|
NodegroupIssueCodeType,
|
|
44
45
|
NodegroupStatusType,
|
|
45
46
|
NodegroupUpdateStrategiesType,
|
|
47
|
+
RepairActionType,
|
|
46
48
|
ResolveConflictsType,
|
|
47
49
|
SupportTypeType,
|
|
48
50
|
TaintEffectType,
|
|
@@ -162,6 +164,8 @@ __all__ = (
|
|
|
162
164
|
"DescribeIdentityProviderConfigResponseTypeDef",
|
|
163
165
|
"DescribeInsightRequestTypeDef",
|
|
164
166
|
"DescribeInsightResponseTypeDef",
|
|
167
|
+
"DescribeInsightsRefreshRequestTypeDef",
|
|
168
|
+
"DescribeInsightsRefreshResponseTypeDef",
|
|
165
169
|
"DescribeNodegroupRequestTypeDef",
|
|
166
170
|
"DescribeNodegroupRequestWaitExtraTypeDef",
|
|
167
171
|
"DescribeNodegroupRequestWaitTypeDef",
|
|
@@ -244,7 +248,10 @@ __all__ = (
|
|
|
244
248
|
"LoggingTypeDef",
|
|
245
249
|
"LoggingUnionTypeDef",
|
|
246
250
|
"MarketplaceInformationTypeDef",
|
|
251
|
+
"NodeRepairConfigOutputTypeDef",
|
|
252
|
+
"NodeRepairConfigOverridesTypeDef",
|
|
247
253
|
"NodeRepairConfigTypeDef",
|
|
254
|
+
"NodeRepairConfigUnionTypeDef",
|
|
248
255
|
"NodegroupHealthTypeDef",
|
|
249
256
|
"NodegroupResourcesTypeDef",
|
|
250
257
|
"NodegroupScalingConfigTypeDef",
|
|
@@ -273,6 +280,8 @@ __all__ = (
|
|
|
273
280
|
"RemotePodNetworkTypeDef",
|
|
274
281
|
"RemotePodNetworkUnionTypeDef",
|
|
275
282
|
"ResponseMetadataTypeDef",
|
|
283
|
+
"StartInsightsRefreshRequestTypeDef",
|
|
284
|
+
"StartInsightsRefreshResponseTypeDef",
|
|
276
285
|
"StorageConfigRequestTypeDef",
|
|
277
286
|
"StorageConfigResponseTypeDef",
|
|
278
287
|
"TagResourceRequestTypeDef",
|
|
@@ -548,10 +557,6 @@ LaunchTemplateSpecificationTypeDef = TypedDict(
|
|
|
548
557
|
)
|
|
549
558
|
|
|
550
559
|
|
|
551
|
-
class NodeRepairConfigTypeDef(TypedDict):
|
|
552
|
-
enabled: NotRequired[bool]
|
|
553
|
-
|
|
554
|
-
|
|
555
560
|
class NodegroupScalingConfigTypeDef(TypedDict):
|
|
556
561
|
minSize: NotRequired[int]
|
|
557
562
|
maxSize: NotRequired[int]
|
|
@@ -723,6 +728,10 @@ DescribeInsightRequestTypeDef = TypedDict(
|
|
|
723
728
|
)
|
|
724
729
|
|
|
725
730
|
|
|
731
|
+
class DescribeInsightsRefreshRequestTypeDef(TypedDict):
|
|
732
|
+
clusterName: str
|
|
733
|
+
|
|
734
|
+
|
|
726
735
|
class DescribeNodegroupRequestTypeDef(TypedDict):
|
|
727
736
|
clusterName: str
|
|
728
737
|
nodegroupName: str
|
|
@@ -921,6 +930,13 @@ LogSetupTypeDef = TypedDict(
|
|
|
921
930
|
)
|
|
922
931
|
|
|
923
932
|
|
|
933
|
+
class NodeRepairConfigOverridesTypeDef(TypedDict):
|
|
934
|
+
nodeMonitoringCondition: NotRequired[str]
|
|
935
|
+
nodeUnhealthyReason: NotRequired[str]
|
|
936
|
+
minRepairWaitTimeMins: NotRequired[int]
|
|
937
|
+
repairAction: NotRequired[RepairActionType]
|
|
938
|
+
|
|
939
|
+
|
|
924
940
|
class RemoteAccessConfigOutputTypeDef(TypedDict):
|
|
925
941
|
ec2SshKey: NotRequired[str]
|
|
926
942
|
sourceSecurityGroups: NotRequired[List[str]]
|
|
@@ -947,6 +963,10 @@ class RemotePodNetworkTypeDef(TypedDict):
|
|
|
947
963
|
cidrs: NotRequired[Sequence[str]]
|
|
948
964
|
|
|
949
965
|
|
|
966
|
+
class StartInsightsRefreshRequestTypeDef(TypedDict):
|
|
967
|
+
clusterName: str
|
|
968
|
+
|
|
969
|
+
|
|
950
970
|
class TagResourceRequestTypeDef(TypedDict):
|
|
951
971
|
resourceArn: str
|
|
952
972
|
tags: Mapping[str, str]
|
|
@@ -1074,6 +1094,14 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
|
|
|
1074
1094
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1075
1095
|
|
|
1076
1096
|
|
|
1097
|
+
class DescribeInsightsRefreshResponseTypeDef(TypedDict):
|
|
1098
|
+
message: str
|
|
1099
|
+
status: InsightsRefreshStatusType
|
|
1100
|
+
startedAt: datetime
|
|
1101
|
+
endedAt: datetime
|
|
1102
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1103
|
+
|
|
1104
|
+
|
|
1077
1105
|
class ListAccessEntriesResponseTypeDef(TypedDict):
|
|
1078
1106
|
accessEntries: List[str]
|
|
1079
1107
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1121,6 +1149,12 @@ class ListUpdatesResponseTypeDef(TypedDict):
|
|
|
1121
1149
|
nextToken: NotRequired[str]
|
|
1122
1150
|
|
|
1123
1151
|
|
|
1152
|
+
class StartInsightsRefreshResponseTypeDef(TypedDict):
|
|
1153
|
+
message: str
|
|
1154
|
+
status: InsightsRefreshStatusType
|
|
1155
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1156
|
+
|
|
1157
|
+
|
|
1124
1158
|
class UpdateAccessEntryResponseTypeDef(TypedDict):
|
|
1125
1159
|
accessEntry: AccessEntryTypeDef
|
|
1126
1160
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1490,6 +1524,24 @@ class LoggingTypeDef(TypedDict):
|
|
|
1490
1524
|
clusterLogging: NotRequired[Sequence[LogSetupTypeDef]]
|
|
1491
1525
|
|
|
1492
1526
|
|
|
1527
|
+
class NodeRepairConfigOutputTypeDef(TypedDict):
|
|
1528
|
+
enabled: NotRequired[bool]
|
|
1529
|
+
maxUnhealthyNodeThresholdCount: NotRequired[int]
|
|
1530
|
+
maxUnhealthyNodeThresholdPercentage: NotRequired[int]
|
|
1531
|
+
maxParallelNodesRepairedCount: NotRequired[int]
|
|
1532
|
+
maxParallelNodesRepairedPercentage: NotRequired[int]
|
|
1533
|
+
nodeRepairConfigOverrides: NotRequired[List[NodeRepairConfigOverridesTypeDef]]
|
|
1534
|
+
|
|
1535
|
+
|
|
1536
|
+
class NodeRepairConfigTypeDef(TypedDict):
|
|
1537
|
+
enabled: NotRequired[bool]
|
|
1538
|
+
maxUnhealthyNodeThresholdCount: NotRequired[int]
|
|
1539
|
+
maxUnhealthyNodeThresholdPercentage: NotRequired[int]
|
|
1540
|
+
maxParallelNodesRepairedCount: NotRequired[int]
|
|
1541
|
+
maxParallelNodesRepairedPercentage: NotRequired[int]
|
|
1542
|
+
nodeRepairConfigOverrides: NotRequired[Sequence[NodeRepairConfigOverridesTypeDef]]
|
|
1543
|
+
|
|
1544
|
+
|
|
1493
1545
|
RemoteAccessConfigUnionTypeDef = Union[RemoteAccessConfigTypeDef, RemoteAccessConfigOutputTypeDef]
|
|
1494
1546
|
|
|
1495
1547
|
|
|
@@ -1573,17 +1625,6 @@ class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
|
1573
1625
|
addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
|
|
1574
1626
|
|
|
1575
1627
|
|
|
1576
|
-
class UpdateNodegroupConfigRequestTypeDef(TypedDict):
|
|
1577
|
-
clusterName: str
|
|
1578
|
-
nodegroupName: str
|
|
1579
|
-
labels: NotRequired[UpdateLabelsPayloadTypeDef]
|
|
1580
|
-
taints: NotRequired[UpdateTaintsPayloadTypeDef]
|
|
1581
|
-
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1582
|
-
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1583
|
-
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1584
|
-
clientRequestToken: NotRequired[str]
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
1628
|
class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
1588
1629
|
subscription: EksAnywhereSubscriptionTypeDef
|
|
1589
1630
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1647,6 +1688,9 @@ class ListInsightsResponseTypeDef(TypedDict):
|
|
|
1647
1688
|
nextToken: NotRequired[str]
|
|
1648
1689
|
|
|
1649
1690
|
|
|
1691
|
+
LoggingUnionTypeDef = Union[LoggingTypeDef, LoggingOutputTypeDef]
|
|
1692
|
+
|
|
1693
|
+
|
|
1650
1694
|
class NodegroupTypeDef(TypedDict):
|
|
1651
1695
|
nodegroupName: NotRequired[str]
|
|
1652
1696
|
nodegroupArn: NotRequired[str]
|
|
@@ -1669,36 +1713,12 @@ class NodegroupTypeDef(TypedDict):
|
|
|
1669
1713
|
diskSize: NotRequired[int]
|
|
1670
1714
|
health: NotRequired[NodegroupHealthTypeDef]
|
|
1671
1715
|
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1672
|
-
nodeRepairConfig: NotRequired[
|
|
1716
|
+
nodeRepairConfig: NotRequired[NodeRepairConfigOutputTypeDef]
|
|
1673
1717
|
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1674
1718
|
tags: NotRequired[Dict[str, str]]
|
|
1675
1719
|
|
|
1676
1720
|
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
class CreateNodegroupRequestTypeDef(TypedDict):
|
|
1681
|
-
clusterName: str
|
|
1682
|
-
nodegroupName: str
|
|
1683
|
-
subnets: Sequence[str]
|
|
1684
|
-
nodeRole: str
|
|
1685
|
-
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1686
|
-
diskSize: NotRequired[int]
|
|
1687
|
-
instanceTypes: NotRequired[Sequence[str]]
|
|
1688
|
-
amiType: NotRequired[AMITypesType]
|
|
1689
|
-
remoteAccess: NotRequired[RemoteAccessConfigUnionTypeDef]
|
|
1690
|
-
labels: NotRequired[Mapping[str, str]]
|
|
1691
|
-
taints: NotRequired[Sequence[TaintTypeDef]]
|
|
1692
|
-
tags: NotRequired[Mapping[str, str]]
|
|
1693
|
-
clientRequestToken: NotRequired[str]
|
|
1694
|
-
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1695
|
-
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1696
|
-
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1697
|
-
capacityType: NotRequired[CapacityTypesType]
|
|
1698
|
-
version: NotRequired[str]
|
|
1699
|
-
releaseVersion: NotRequired[str]
|
|
1700
|
-
|
|
1701
|
-
|
|
1721
|
+
NodeRepairConfigUnionTypeDef = Union[NodeRepairConfigTypeDef, NodeRepairConfigOutputTypeDef]
|
|
1702
1722
|
ClusterTypeDef = TypedDict(
|
|
1703
1723
|
"ClusterTypeDef",
|
|
1704
1724
|
{
|
|
@@ -1860,6 +1880,39 @@ class DescribeNodegroupResponseTypeDef(TypedDict):
|
|
|
1860
1880
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1861
1881
|
|
|
1862
1882
|
|
|
1883
|
+
class CreateNodegroupRequestTypeDef(TypedDict):
|
|
1884
|
+
clusterName: str
|
|
1885
|
+
nodegroupName: str
|
|
1886
|
+
subnets: Sequence[str]
|
|
1887
|
+
nodeRole: str
|
|
1888
|
+
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1889
|
+
diskSize: NotRequired[int]
|
|
1890
|
+
instanceTypes: NotRequired[Sequence[str]]
|
|
1891
|
+
amiType: NotRequired[AMITypesType]
|
|
1892
|
+
remoteAccess: NotRequired[RemoteAccessConfigUnionTypeDef]
|
|
1893
|
+
labels: NotRequired[Mapping[str, str]]
|
|
1894
|
+
taints: NotRequired[Sequence[TaintTypeDef]]
|
|
1895
|
+
tags: NotRequired[Mapping[str, str]]
|
|
1896
|
+
clientRequestToken: NotRequired[str]
|
|
1897
|
+
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1898
|
+
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1899
|
+
nodeRepairConfig: NotRequired[NodeRepairConfigUnionTypeDef]
|
|
1900
|
+
capacityType: NotRequired[CapacityTypesType]
|
|
1901
|
+
version: NotRequired[str]
|
|
1902
|
+
releaseVersion: NotRequired[str]
|
|
1903
|
+
|
|
1904
|
+
|
|
1905
|
+
class UpdateNodegroupConfigRequestTypeDef(TypedDict):
|
|
1906
|
+
clusterName: str
|
|
1907
|
+
nodegroupName: str
|
|
1908
|
+
labels: NotRequired[UpdateLabelsPayloadTypeDef]
|
|
1909
|
+
taints: NotRequired[UpdateTaintsPayloadTypeDef]
|
|
1910
|
+
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1911
|
+
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1912
|
+
nodeRepairConfig: NotRequired[NodeRepairConfigUnionTypeDef]
|
|
1913
|
+
clientRequestToken: NotRequired[str]
|
|
1914
|
+
|
|
1915
|
+
|
|
1863
1916
|
class CreateClusterResponseTypeDef(TypedDict):
|
|
1864
1917
|
cluster: ClusterTypeDef
|
|
1865
1918
|
ResponseMetadata: ResponseMetadataTypeDef
|
mypy_boto3_eks/type_defs.pyi
CHANGED
|
@@ -37,12 +37,14 @@ from .literals import (
|
|
|
37
37
|
ErrorCodeType,
|
|
38
38
|
FargateProfileIssueCodeType,
|
|
39
39
|
FargateProfileStatusType,
|
|
40
|
+
InsightsRefreshStatusType,
|
|
40
41
|
InsightStatusValueType,
|
|
41
42
|
IpFamilyType,
|
|
42
43
|
LogTypeType,
|
|
43
44
|
NodegroupIssueCodeType,
|
|
44
45
|
NodegroupStatusType,
|
|
45
46
|
NodegroupUpdateStrategiesType,
|
|
47
|
+
RepairActionType,
|
|
46
48
|
ResolveConflictsType,
|
|
47
49
|
SupportTypeType,
|
|
48
50
|
TaintEffectType,
|
|
@@ -161,6 +163,8 @@ __all__ = (
|
|
|
161
163
|
"DescribeIdentityProviderConfigResponseTypeDef",
|
|
162
164
|
"DescribeInsightRequestTypeDef",
|
|
163
165
|
"DescribeInsightResponseTypeDef",
|
|
166
|
+
"DescribeInsightsRefreshRequestTypeDef",
|
|
167
|
+
"DescribeInsightsRefreshResponseTypeDef",
|
|
164
168
|
"DescribeNodegroupRequestTypeDef",
|
|
165
169
|
"DescribeNodegroupRequestWaitExtraTypeDef",
|
|
166
170
|
"DescribeNodegroupRequestWaitTypeDef",
|
|
@@ -243,7 +247,10 @@ __all__ = (
|
|
|
243
247
|
"LoggingTypeDef",
|
|
244
248
|
"LoggingUnionTypeDef",
|
|
245
249
|
"MarketplaceInformationTypeDef",
|
|
250
|
+
"NodeRepairConfigOutputTypeDef",
|
|
251
|
+
"NodeRepairConfigOverridesTypeDef",
|
|
246
252
|
"NodeRepairConfigTypeDef",
|
|
253
|
+
"NodeRepairConfigUnionTypeDef",
|
|
247
254
|
"NodegroupHealthTypeDef",
|
|
248
255
|
"NodegroupResourcesTypeDef",
|
|
249
256
|
"NodegroupScalingConfigTypeDef",
|
|
@@ -272,6 +279,8 @@ __all__ = (
|
|
|
272
279
|
"RemotePodNetworkTypeDef",
|
|
273
280
|
"RemotePodNetworkUnionTypeDef",
|
|
274
281
|
"ResponseMetadataTypeDef",
|
|
282
|
+
"StartInsightsRefreshRequestTypeDef",
|
|
283
|
+
"StartInsightsRefreshResponseTypeDef",
|
|
275
284
|
"StorageConfigRequestTypeDef",
|
|
276
285
|
"StorageConfigResponseTypeDef",
|
|
277
286
|
"TagResourceRequestTypeDef",
|
|
@@ -510,9 +519,6 @@ LaunchTemplateSpecificationTypeDef = TypedDict(
|
|
|
510
519
|
},
|
|
511
520
|
)
|
|
512
521
|
|
|
513
|
-
class NodeRepairConfigTypeDef(TypedDict):
|
|
514
|
-
enabled: NotRequired[bool]
|
|
515
|
-
|
|
516
522
|
class NodegroupScalingConfigTypeDef(TypedDict):
|
|
517
523
|
minSize: NotRequired[int]
|
|
518
524
|
maxSize: NotRequired[int]
|
|
@@ -660,6 +666,9 @@ DescribeInsightRequestTypeDef = TypedDict(
|
|
|
660
666
|
},
|
|
661
667
|
)
|
|
662
668
|
|
|
669
|
+
class DescribeInsightsRefreshRequestTypeDef(TypedDict):
|
|
670
|
+
clusterName: str
|
|
671
|
+
|
|
663
672
|
class DescribeNodegroupRequestTypeDef(TypedDict):
|
|
664
673
|
clusterName: str
|
|
665
674
|
nodegroupName: str
|
|
@@ -828,6 +837,12 @@ LogSetupTypeDef = TypedDict(
|
|
|
828
837
|
},
|
|
829
838
|
)
|
|
830
839
|
|
|
840
|
+
class NodeRepairConfigOverridesTypeDef(TypedDict):
|
|
841
|
+
nodeMonitoringCondition: NotRequired[str]
|
|
842
|
+
nodeUnhealthyReason: NotRequired[str]
|
|
843
|
+
minRepairWaitTimeMins: NotRequired[int]
|
|
844
|
+
repairAction: NotRequired[RepairActionType]
|
|
845
|
+
|
|
831
846
|
class RemoteAccessConfigOutputTypeDef(TypedDict):
|
|
832
847
|
ec2SshKey: NotRequired[str]
|
|
833
848
|
sourceSecurityGroups: NotRequired[List[str]]
|
|
@@ -848,6 +863,9 @@ class RemoteNodeNetworkTypeDef(TypedDict):
|
|
|
848
863
|
class RemotePodNetworkTypeDef(TypedDict):
|
|
849
864
|
cidrs: NotRequired[Sequence[str]]
|
|
850
865
|
|
|
866
|
+
class StartInsightsRefreshRequestTypeDef(TypedDict):
|
|
867
|
+
clusterName: str
|
|
868
|
+
|
|
851
869
|
class TagResourceRequestTypeDef(TypedDict):
|
|
852
870
|
resourceArn: str
|
|
853
871
|
tags: Mapping[str, str]
|
|
@@ -957,6 +975,13 @@ class DescribeAddonConfigurationResponseTypeDef(TypedDict):
|
|
|
957
975
|
podIdentityConfiguration: List[AddonPodIdentityConfigurationTypeDef]
|
|
958
976
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
959
977
|
|
|
978
|
+
class DescribeInsightsRefreshResponseTypeDef(TypedDict):
|
|
979
|
+
message: str
|
|
980
|
+
status: InsightsRefreshStatusType
|
|
981
|
+
startedAt: datetime
|
|
982
|
+
endedAt: datetime
|
|
983
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
984
|
+
|
|
960
985
|
class ListAccessEntriesResponseTypeDef(TypedDict):
|
|
961
986
|
accessEntries: List[str]
|
|
962
987
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -996,6 +1021,11 @@ class ListUpdatesResponseTypeDef(TypedDict):
|
|
|
996
1021
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
997
1022
|
nextToken: NotRequired[str]
|
|
998
1023
|
|
|
1024
|
+
class StartInsightsRefreshResponseTypeDef(TypedDict):
|
|
1025
|
+
message: str
|
|
1026
|
+
status: InsightsRefreshStatusType
|
|
1027
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1028
|
+
|
|
999
1029
|
class UpdateAccessEntryResponseTypeDef(TypedDict):
|
|
1000
1030
|
accessEntry: AccessEntryTypeDef
|
|
1001
1031
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1308,6 +1338,22 @@ class LoggingOutputTypeDef(TypedDict):
|
|
|
1308
1338
|
class LoggingTypeDef(TypedDict):
|
|
1309
1339
|
clusterLogging: NotRequired[Sequence[LogSetupTypeDef]]
|
|
1310
1340
|
|
|
1341
|
+
class NodeRepairConfigOutputTypeDef(TypedDict):
|
|
1342
|
+
enabled: NotRequired[bool]
|
|
1343
|
+
maxUnhealthyNodeThresholdCount: NotRequired[int]
|
|
1344
|
+
maxUnhealthyNodeThresholdPercentage: NotRequired[int]
|
|
1345
|
+
maxParallelNodesRepairedCount: NotRequired[int]
|
|
1346
|
+
maxParallelNodesRepairedPercentage: NotRequired[int]
|
|
1347
|
+
nodeRepairConfigOverrides: NotRequired[List[NodeRepairConfigOverridesTypeDef]]
|
|
1348
|
+
|
|
1349
|
+
class NodeRepairConfigTypeDef(TypedDict):
|
|
1350
|
+
enabled: NotRequired[bool]
|
|
1351
|
+
maxUnhealthyNodeThresholdCount: NotRequired[int]
|
|
1352
|
+
maxUnhealthyNodeThresholdPercentage: NotRequired[int]
|
|
1353
|
+
maxParallelNodesRepairedCount: NotRequired[int]
|
|
1354
|
+
maxParallelNodesRepairedPercentage: NotRequired[int]
|
|
1355
|
+
nodeRepairConfigOverrides: NotRequired[Sequence[NodeRepairConfigOverridesTypeDef]]
|
|
1356
|
+
|
|
1311
1357
|
RemoteAccessConfigUnionTypeDef = Union[RemoteAccessConfigTypeDef, RemoteAccessConfigOutputTypeDef]
|
|
1312
1358
|
|
|
1313
1359
|
class RemoteNetworkConfigResponseTypeDef(TypedDict):
|
|
@@ -1382,16 +1428,6 @@ class InsightCategorySpecificSummaryTypeDef(TypedDict):
|
|
|
1382
1428
|
deprecationDetails: NotRequired[List[DeprecationDetailTypeDef]]
|
|
1383
1429
|
addonCompatibilityDetails: NotRequired[List[AddonCompatibilityDetailTypeDef]]
|
|
1384
1430
|
|
|
1385
|
-
class UpdateNodegroupConfigRequestTypeDef(TypedDict):
|
|
1386
|
-
clusterName: str
|
|
1387
|
-
nodegroupName: str
|
|
1388
|
-
labels: NotRequired[UpdateLabelsPayloadTypeDef]
|
|
1389
|
-
taints: NotRequired[UpdateTaintsPayloadTypeDef]
|
|
1390
|
-
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1391
|
-
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1392
|
-
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1393
|
-
clientRequestToken: NotRequired[str]
|
|
1394
|
-
|
|
1395
1431
|
class CreateEksAnywhereSubscriptionResponseTypeDef(TypedDict):
|
|
1396
1432
|
subscription: EksAnywhereSubscriptionTypeDef
|
|
1397
1433
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1445,6 +1481,8 @@ class ListInsightsResponseTypeDef(TypedDict):
|
|
|
1445
1481
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1446
1482
|
nextToken: NotRequired[str]
|
|
1447
1483
|
|
|
1484
|
+
LoggingUnionTypeDef = Union[LoggingTypeDef, LoggingOutputTypeDef]
|
|
1485
|
+
|
|
1448
1486
|
class NodegroupTypeDef(TypedDict):
|
|
1449
1487
|
nodegroupName: NotRequired[str]
|
|
1450
1488
|
nodegroupArn: NotRequired[str]
|
|
@@ -1467,33 +1505,11 @@ class NodegroupTypeDef(TypedDict):
|
|
|
1467
1505
|
diskSize: NotRequired[int]
|
|
1468
1506
|
health: NotRequired[NodegroupHealthTypeDef]
|
|
1469
1507
|
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1470
|
-
nodeRepairConfig: NotRequired[
|
|
1508
|
+
nodeRepairConfig: NotRequired[NodeRepairConfigOutputTypeDef]
|
|
1471
1509
|
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1472
1510
|
tags: NotRequired[Dict[str, str]]
|
|
1473
1511
|
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
class CreateNodegroupRequestTypeDef(TypedDict):
|
|
1477
|
-
clusterName: str
|
|
1478
|
-
nodegroupName: str
|
|
1479
|
-
subnets: Sequence[str]
|
|
1480
|
-
nodeRole: str
|
|
1481
|
-
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1482
|
-
diskSize: NotRequired[int]
|
|
1483
|
-
instanceTypes: NotRequired[Sequence[str]]
|
|
1484
|
-
amiType: NotRequired[AMITypesType]
|
|
1485
|
-
remoteAccess: NotRequired[RemoteAccessConfigUnionTypeDef]
|
|
1486
|
-
labels: NotRequired[Mapping[str, str]]
|
|
1487
|
-
taints: NotRequired[Sequence[TaintTypeDef]]
|
|
1488
|
-
tags: NotRequired[Mapping[str, str]]
|
|
1489
|
-
clientRequestToken: NotRequired[str]
|
|
1490
|
-
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1491
|
-
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1492
|
-
nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
|
|
1493
|
-
capacityType: NotRequired[CapacityTypesType]
|
|
1494
|
-
version: NotRequired[str]
|
|
1495
|
-
releaseVersion: NotRequired[str]
|
|
1496
|
-
|
|
1512
|
+
NodeRepairConfigUnionTypeDef = Union[NodeRepairConfigTypeDef, NodeRepairConfigOutputTypeDef]
|
|
1497
1513
|
ClusterTypeDef = TypedDict(
|
|
1498
1514
|
"ClusterTypeDef",
|
|
1499
1515
|
{
|
|
@@ -1632,6 +1648,37 @@ class DescribeNodegroupResponseTypeDef(TypedDict):
|
|
|
1632
1648
|
nodegroup: NodegroupTypeDef
|
|
1633
1649
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1634
1650
|
|
|
1651
|
+
class CreateNodegroupRequestTypeDef(TypedDict):
|
|
1652
|
+
clusterName: str
|
|
1653
|
+
nodegroupName: str
|
|
1654
|
+
subnets: Sequence[str]
|
|
1655
|
+
nodeRole: str
|
|
1656
|
+
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1657
|
+
diskSize: NotRequired[int]
|
|
1658
|
+
instanceTypes: NotRequired[Sequence[str]]
|
|
1659
|
+
amiType: NotRequired[AMITypesType]
|
|
1660
|
+
remoteAccess: NotRequired[RemoteAccessConfigUnionTypeDef]
|
|
1661
|
+
labels: NotRequired[Mapping[str, str]]
|
|
1662
|
+
taints: NotRequired[Sequence[TaintTypeDef]]
|
|
1663
|
+
tags: NotRequired[Mapping[str, str]]
|
|
1664
|
+
clientRequestToken: NotRequired[str]
|
|
1665
|
+
launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
|
|
1666
|
+
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1667
|
+
nodeRepairConfig: NotRequired[NodeRepairConfigUnionTypeDef]
|
|
1668
|
+
capacityType: NotRequired[CapacityTypesType]
|
|
1669
|
+
version: NotRequired[str]
|
|
1670
|
+
releaseVersion: NotRequired[str]
|
|
1671
|
+
|
|
1672
|
+
class UpdateNodegroupConfigRequestTypeDef(TypedDict):
|
|
1673
|
+
clusterName: str
|
|
1674
|
+
nodegroupName: str
|
|
1675
|
+
labels: NotRequired[UpdateLabelsPayloadTypeDef]
|
|
1676
|
+
taints: NotRequired[UpdateTaintsPayloadTypeDef]
|
|
1677
|
+
scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
|
|
1678
|
+
updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
|
|
1679
|
+
nodeRepairConfig: NotRequired[NodeRepairConfigUnionTypeDef]
|
|
1680
|
+
clientRequestToken: NotRequired[str]
|
|
1681
|
+
|
|
1635
1682
|
class CreateClusterResponseTypeDef(TypedDict):
|
|
1636
1683
|
cluster: ClusterTypeDef
|
|
1637
1684
|
ResponseMetadata: ResponseMetadataTypeDef
|
mypy_boto3_eks/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-eks
|
|
3
|
-
Version: 1.40.
|
|
4
|
-
Summary: Type annotations for boto3 EKS 1.40.
|
|
3
|
+
Version: 1.40.36
|
|
4
|
+
Summary: Type annotations for boto3 EKS 1.40.36 service generated with mypy-boto3-builder 8.11.0
|
|
5
5
|
Home-page: https://github.com/youtype/mypy_boto3_builder
|
|
6
6
|
Author: Vlad Emelianov
|
|
7
7
|
Author-email: vlad.emelianov.nz@gmail.com
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 EKS 1.40.
|
|
59
|
+
Type annotations for [boto3 EKS 1.40.36](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.40.
|
|
122
|
+
`uvx --with 'boto3==1.40.36' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
124
|
3. Add `EKS` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_eks/__init__.py,sha256=2ny7DX2h2EqSXWmXoLROuwapCrk5WWG82Cytg9gBFoA,5066
|
|
2
|
+
mypy_boto3_eks/__init__.pyi,sha256=Vn_LcRXy2FU1PJjnQvnE8BMRwPFC8_X1P1UnZbFY2Zs,5065
|
|
3
|
+
mypy_boto3_eks/__main__.py,sha256=ji3U_65jnlXkhd_IQNiXM9l_Fe6HkYzx6RJN1lOL09M,968
|
|
4
|
+
mypy_boto3_eks/client.py,sha256=6f3T0PMpvadHJc5d8LoI4sMtASANaHTzG2fqdrBJNb8,50749
|
|
5
|
+
mypy_boto3_eks/client.pyi,sha256=oL5qRC4OThaaPUq2trSllIo7scPxJacfiDk1DEkRmpg,50746
|
|
6
|
+
mypy_boto3_eks/literals.py,sha256=OBHcZUWv1l7SsGL4LChIqEwEDxxoHsfivIHKuDyEthA,20029
|
|
7
|
+
mypy_boto3_eks/literals.pyi,sha256=SfyOe7gxftuKG9hNqUjNK4oaNjrzUFrF5jxGQFaQsKg,20027
|
|
8
|
+
mypy_boto3_eks/paginator.py,sha256=3yFhQFg-bh-hJOlMggBZeCd-xonLBWmXnBG1HRNiDL4,20481
|
|
9
|
+
mypy_boto3_eks/paginator.pyi,sha256=cn674ie8pGurK1SRRoZERdTd56gF2t7NGEOYhzN8Vp4,20438
|
|
10
|
+
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_eks/type_defs.py,sha256=SR-ZaM1UmTas6m0vpAmkruVbZxSuDLi8obTpF9ZfffE,59296
|
|
12
|
+
mypy_boto3_eks/type_defs.pyi,sha256=3Gu1zqMOdVvltEse5S-9K3Dgrkmb2M_tS8X-D9zaByg,59055
|
|
13
|
+
mypy_boto3_eks/version.py,sha256=tZbymmhpDSxa7yg5AfR7IujmfyZoomyL0AF1adNrwUI,93
|
|
14
|
+
mypy_boto3_eks/waiter.py,sha256=2vJjiTIw6nY3Kx4O2YIUk9MmTiHrf5ZZtPP8bOy_jd4,8664
|
|
15
|
+
mypy_boto3_eks/waiter.pyi,sha256=ZkIrAD-cdgf6kBhiCJShJLpjHyVyzZrxjBQ2yI3cVJ0,8647
|
|
16
|
+
mypy_boto3_eks-1.40.36.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_eks-1.40.36.dist-info/METADATA,sha256=v1PFRgffkYeqrFxfb3h4a-QnHhaGSAomN8vfBl_EKls,18038
|
|
18
|
+
mypy_boto3_eks-1.40.36.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
mypy_boto3_eks-1.40.36.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
+
mypy_boto3_eks-1.40.36.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_eks/__init__.py,sha256=2ny7DX2h2EqSXWmXoLROuwapCrk5WWG82Cytg9gBFoA,5066
|
|
2
|
-
mypy_boto3_eks/__init__.pyi,sha256=Vn_LcRXy2FU1PJjnQvnE8BMRwPFC8_X1P1UnZbFY2Zs,5065
|
|
3
|
-
mypy_boto3_eks/__main__.py,sha256=MmYfnjiYghjit6xfr0ZKQ6VEcZ9qeyK9JoMX1Xj8MqQ,968
|
|
4
|
-
mypy_boto3_eks/client.py,sha256=NqhtmiaelO6gPDGNJUkv8Ds8537TWfOPVk9nbImqpao,49426
|
|
5
|
-
mypy_boto3_eks/client.pyi,sha256=ycr-tlt3fZCCNh4th9TuOm7ZI2mYqaehpN7UaRl7_Qk,49423
|
|
6
|
-
mypy_boto3_eks/literals.py,sha256=W6GTOsNZ6r5Tw8STrHbOBLHfK3vEEJae9nKwKrrzvpk,19886
|
|
7
|
-
mypy_boto3_eks/literals.pyi,sha256=5SFZoPbyh1zUBvFqh7BRB7I-H8YhBbk-GUsQYRUuO2o,19884
|
|
8
|
-
mypy_boto3_eks/paginator.py,sha256=3yFhQFg-bh-hJOlMggBZeCd-xonLBWmXnBG1HRNiDL4,20481
|
|
9
|
-
mypy_boto3_eks/paginator.pyi,sha256=cn674ie8pGurK1SRRoZERdTd56gF2t7NGEOYhzN8Vp4,20438
|
|
10
|
-
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_eks/type_defs.py,sha256=WSIG1OJrtpCkgMt8kEdE3draWBdkPh-Eleu5kwrS7gw,57403
|
|
12
|
-
mypy_boto3_eks/type_defs.pyi,sha256=1Ur5bmt8RjOAWP6bY-3VuCybKvafsmvXiJp1YeOuFXw,57168
|
|
13
|
-
mypy_boto3_eks/version.py,sha256=yx4TXfA7frT22svKZb5oIUbOh_laGJb51_7cJeePnRs,93
|
|
14
|
-
mypy_boto3_eks/waiter.py,sha256=2vJjiTIw6nY3Kx4O2YIUk9MmTiHrf5ZZtPP8bOy_jd4,8664
|
|
15
|
-
mypy_boto3_eks/waiter.pyi,sha256=ZkIrAD-cdgf6kBhiCJShJLpjHyVyzZrxjBQ2yI3cVJ0,8647
|
|
16
|
-
mypy_boto3_eks-1.40.14.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_eks-1.40.14.dist-info/METADATA,sha256=F74o5IS80TiSCbNl_RNG4VBWqe1kipefWzWHelqLkAE,18038
|
|
18
|
-
mypy_boto3_eks-1.40.14.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
mypy_boto3_eks-1.40.14.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
-
mypy_boto3_eks-1.40.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|