mypy-boto3-eks 1.34.3__py3-none-any.whl → 1.34.53__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mypy_boto3_eks/__init__.py +4 -0
- mypy_boto3_eks/__init__.pyi +4 -0
- mypy_boto3_eks/__main__.py +8 -7
- mypy_boto3_eks/client.py +57 -23
- mypy_boto3_eks/client.pyi +57 -23
- mypy_boto3_eks/literals.py +15 -1
- mypy_boto3_eks/literals.pyi +15 -1
- mypy_boto3_eks/paginator.py +29 -5
- mypy_boto3_eks/paginator.pyi +28 -5
- mypy_boto3_eks/type_defs.py +131 -1
- mypy_boto3_eks/type_defs.pyi +131 -1
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.34.3.dist-info → mypy_boto3_eks-1.34.53.dist-info}/LICENSE +1 -1
- {mypy_boto3_eks-1.34.3.dist-info → mypy_boto3_eks-1.34.53.dist-info}/METADATA +8 -7
- mypy_boto3_eks-1.34.53.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.34.3.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.34.3.dist-info → mypy_boto3_eks-1.34.53.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.34.3.dist-info → mypy_boto3_eks-1.34.53.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -29,6 +29,7 @@ from .literals import (
|
|
|
29
29
|
EksAnywhereSubscriptionStatusType,
|
|
30
30
|
ErrorCodeType,
|
|
31
31
|
FargateProfileStatusType,
|
|
32
|
+
InsightStatusValueType,
|
|
32
33
|
IpFamilyType,
|
|
33
34
|
LogTypeType,
|
|
34
35
|
NodegroupIssueCodeType,
|
|
@@ -67,6 +68,7 @@ __all__ = (
|
|
|
67
68
|
"OidcIdentityProviderConfigRequestTypeDef",
|
|
68
69
|
"AutoScalingGroupTypeDef",
|
|
69
70
|
"CertificateTypeDef",
|
|
71
|
+
"ClientStatTypeDef",
|
|
70
72
|
"ClusterIssueTypeDef",
|
|
71
73
|
"ConnectorConfigResponseTypeDef",
|
|
72
74
|
"KubernetesNetworkConfigResponseTypeDef",
|
|
@@ -106,6 +108,7 @@ __all__ = (
|
|
|
106
108
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
107
109
|
"DescribeFargateProfileRequestRequestTypeDef",
|
|
108
110
|
"IdentityProviderConfigTypeDef",
|
|
111
|
+
"DescribeInsightRequestRequestTypeDef",
|
|
109
112
|
"DescribeNodegroupRequestRequestTypeDef",
|
|
110
113
|
"DescribePodIdentityAssociationRequestRequestTypeDef",
|
|
111
114
|
"DescribeUpdateRequestRequestTypeDef",
|
|
@@ -114,6 +117,8 @@ __all__ = (
|
|
|
114
117
|
"ErrorDetailTypeDef",
|
|
115
118
|
"OidcIdentityProviderConfigTypeDef",
|
|
116
119
|
"OIDCTypeDef",
|
|
120
|
+
"InsightStatusTypeDef",
|
|
121
|
+
"InsightsFilterTypeDef",
|
|
117
122
|
"IssueTypeDef",
|
|
118
123
|
"ListAccessEntriesRequestRequestTypeDef",
|
|
119
124
|
"ListAccessPoliciesRequestRequestTypeDef",
|
|
@@ -158,6 +163,7 @@ __all__ = (
|
|
|
158
163
|
"UpdateAccessEntryResponseTypeDef",
|
|
159
164
|
"AssociateIdentityProviderConfigRequestRequestTypeDef",
|
|
160
165
|
"NodegroupResourcesTypeDef",
|
|
166
|
+
"DeprecationDetailTypeDef",
|
|
161
167
|
"ClusterHealthTypeDef",
|
|
162
168
|
"RegisterClusterRequestRequestTypeDef",
|
|
163
169
|
"OutpostConfigRequestTypeDef",
|
|
@@ -199,6 +205,10 @@ __all__ = (
|
|
|
199
205
|
"EncryptionConfigTypeDef",
|
|
200
206
|
"IdentityProviderConfigResponseTypeDef",
|
|
201
207
|
"IdentityTypeDef",
|
|
208
|
+
"InsightResourceDetailTypeDef",
|
|
209
|
+
"InsightSummaryTypeDef",
|
|
210
|
+
"ListInsightsRequestListInsightsPaginateTypeDef",
|
|
211
|
+
"ListInsightsRequestRequestTypeDef",
|
|
202
212
|
"NodegroupHealthTypeDef",
|
|
203
213
|
"ListPodIdentityAssociationsResponseTypeDef",
|
|
204
214
|
"LoggingTypeDef",
|
|
@@ -208,6 +218,7 @@ __all__ = (
|
|
|
208
218
|
"ListAssociatedAccessPoliciesResponseTypeDef",
|
|
209
219
|
"AddonTypeDef",
|
|
210
220
|
"AddonInfoTypeDef",
|
|
221
|
+
"InsightCategorySpecificSummaryTypeDef",
|
|
211
222
|
"CreateEksAnywhereSubscriptionResponseTypeDef",
|
|
212
223
|
"DeleteEksAnywhereSubscriptionResponseTypeDef",
|
|
213
224
|
"DescribeEksAnywhereSubscriptionResponseTypeDef",
|
|
@@ -219,6 +230,7 @@ __all__ = (
|
|
|
219
230
|
"UpdateNodegroupConfigRequestRequestTypeDef",
|
|
220
231
|
"AssociateEncryptionConfigRequestRequestTypeDef",
|
|
221
232
|
"DescribeIdentityProviderConfigResponseTypeDef",
|
|
233
|
+
"ListInsightsResponseTypeDef",
|
|
222
234
|
"NodegroupTypeDef",
|
|
223
235
|
"ClusterTypeDef",
|
|
224
236
|
"CreateClusterRequestRequestTypeDef",
|
|
@@ -236,6 +248,7 @@ __all__ = (
|
|
|
236
248
|
"DeleteAddonResponseTypeDef",
|
|
237
249
|
"DescribeAddonResponseTypeDef",
|
|
238
250
|
"DescribeAddonVersionsResponseTypeDef",
|
|
251
|
+
"InsightTypeDef",
|
|
239
252
|
"CreateNodegroupResponseTypeDef",
|
|
240
253
|
"DeleteNodegroupResponseTypeDef",
|
|
241
254
|
"DescribeNodegroupResponseTypeDef",
|
|
@@ -244,6 +257,7 @@ __all__ = (
|
|
|
244
257
|
"DeregisterClusterResponseTypeDef",
|
|
245
258
|
"DescribeClusterResponseTypeDef",
|
|
246
259
|
"RegisterClusterResponseTypeDef",
|
|
260
|
+
"DescribeInsightResponseTypeDef",
|
|
247
261
|
)
|
|
248
262
|
|
|
249
263
|
AccessConfigResponseTypeDef = TypedDict(
|
|
@@ -315,10 +329,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
315
329
|
"ResponseMetadataTypeDef",
|
|
316
330
|
{
|
|
317
331
|
"RequestId": str,
|
|
318
|
-
"HostId": str,
|
|
319
332
|
"HTTPStatusCode": int,
|
|
320
333
|
"HTTPHeaders": Dict[str, str],
|
|
321
334
|
"RetryAttempts": int,
|
|
335
|
+
"HostId": NotRequired[str],
|
|
322
336
|
},
|
|
323
337
|
)
|
|
324
338
|
OidcIdentityProviderConfigRequestTypeDef = TypedDict(
|
|
@@ -346,6 +360,14 @@ CertificateTypeDef = TypedDict(
|
|
|
346
360
|
"data": NotRequired[str],
|
|
347
361
|
},
|
|
348
362
|
)
|
|
363
|
+
ClientStatTypeDef = TypedDict(
|
|
364
|
+
"ClientStatTypeDef",
|
|
365
|
+
{
|
|
366
|
+
"userAgent": NotRequired[str],
|
|
367
|
+
"numberOfRequestsLast30Days": NotRequired[int],
|
|
368
|
+
"lastRequestTime": NotRequired[datetime],
|
|
369
|
+
},
|
|
370
|
+
)
|
|
349
371
|
ClusterIssueTypeDef = TypedDict(
|
|
350
372
|
"ClusterIssueTypeDef",
|
|
351
373
|
{
|
|
@@ -657,6 +679,13 @@ IdentityProviderConfigTypeDef = TypedDict(
|
|
|
657
679
|
"name": str,
|
|
658
680
|
},
|
|
659
681
|
)
|
|
682
|
+
DescribeInsightRequestRequestTypeDef = TypedDict(
|
|
683
|
+
"DescribeInsightRequestRequestTypeDef",
|
|
684
|
+
{
|
|
685
|
+
"clusterName": str,
|
|
686
|
+
"id": str,
|
|
687
|
+
},
|
|
688
|
+
)
|
|
660
689
|
DescribeNodegroupRequestRequestTypeDef = TypedDict(
|
|
661
690
|
"DescribeNodegroupRequestRequestTypeDef",
|
|
662
691
|
{
|
|
@@ -725,6 +754,21 @@ OIDCTypeDef = TypedDict(
|
|
|
725
754
|
"issuer": NotRequired[str],
|
|
726
755
|
},
|
|
727
756
|
)
|
|
757
|
+
InsightStatusTypeDef = TypedDict(
|
|
758
|
+
"InsightStatusTypeDef",
|
|
759
|
+
{
|
|
760
|
+
"status": NotRequired[InsightStatusValueType],
|
|
761
|
+
"reason": NotRequired[str],
|
|
762
|
+
},
|
|
763
|
+
)
|
|
764
|
+
InsightsFilterTypeDef = TypedDict(
|
|
765
|
+
"InsightsFilterTypeDef",
|
|
766
|
+
{
|
|
767
|
+
"categories": NotRequired[Sequence[Literal["UPGRADE_READINESS"]]],
|
|
768
|
+
"kubernetesVersions": NotRequired[Sequence[str]],
|
|
769
|
+
"statuses": NotRequired[Sequence[InsightStatusValueType]],
|
|
770
|
+
},
|
|
771
|
+
)
|
|
728
772
|
IssueTypeDef = TypedDict(
|
|
729
773
|
"IssueTypeDef",
|
|
730
774
|
{
|
|
@@ -1081,6 +1125,16 @@ NodegroupResourcesTypeDef = TypedDict(
|
|
|
1081
1125
|
"remoteAccessSecurityGroup": NotRequired[str],
|
|
1082
1126
|
},
|
|
1083
1127
|
)
|
|
1128
|
+
DeprecationDetailTypeDef = TypedDict(
|
|
1129
|
+
"DeprecationDetailTypeDef",
|
|
1130
|
+
{
|
|
1131
|
+
"usage": NotRequired[str],
|
|
1132
|
+
"replacedWith": NotRequired[str],
|
|
1133
|
+
"stopServingVersion": NotRequired[str],
|
|
1134
|
+
"startServingReplacementVersion": NotRequired[str],
|
|
1135
|
+
"clientStats": NotRequired[List[ClientStatTypeDef]],
|
|
1136
|
+
},
|
|
1137
|
+
)
|
|
1084
1138
|
ClusterHealthTypeDef = TypedDict(
|
|
1085
1139
|
"ClusterHealthTypeDef",
|
|
1086
1140
|
{
|
|
@@ -1434,6 +1488,44 @@ IdentityTypeDef = TypedDict(
|
|
|
1434
1488
|
"oidc": NotRequired[OIDCTypeDef],
|
|
1435
1489
|
},
|
|
1436
1490
|
)
|
|
1491
|
+
InsightResourceDetailTypeDef = TypedDict(
|
|
1492
|
+
"InsightResourceDetailTypeDef",
|
|
1493
|
+
{
|
|
1494
|
+
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1495
|
+
"kubernetesResourceUri": NotRequired[str],
|
|
1496
|
+
"arn": NotRequired[str],
|
|
1497
|
+
},
|
|
1498
|
+
)
|
|
1499
|
+
InsightSummaryTypeDef = TypedDict(
|
|
1500
|
+
"InsightSummaryTypeDef",
|
|
1501
|
+
{
|
|
1502
|
+
"id": NotRequired[str],
|
|
1503
|
+
"name": NotRequired[str],
|
|
1504
|
+
"category": NotRequired[Literal["UPGRADE_READINESS"]],
|
|
1505
|
+
"kubernetesVersion": NotRequired[str],
|
|
1506
|
+
"lastRefreshTime": NotRequired[datetime],
|
|
1507
|
+
"lastTransitionTime": NotRequired[datetime],
|
|
1508
|
+
"description": NotRequired[str],
|
|
1509
|
+
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1510
|
+
},
|
|
1511
|
+
)
|
|
1512
|
+
ListInsightsRequestListInsightsPaginateTypeDef = TypedDict(
|
|
1513
|
+
"ListInsightsRequestListInsightsPaginateTypeDef",
|
|
1514
|
+
{
|
|
1515
|
+
"clusterName": str,
|
|
1516
|
+
"filter": NotRequired[InsightsFilterTypeDef],
|
|
1517
|
+
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1518
|
+
},
|
|
1519
|
+
)
|
|
1520
|
+
ListInsightsRequestRequestTypeDef = TypedDict(
|
|
1521
|
+
"ListInsightsRequestRequestTypeDef",
|
|
1522
|
+
{
|
|
1523
|
+
"clusterName": str,
|
|
1524
|
+
"filter": NotRequired[InsightsFilterTypeDef],
|
|
1525
|
+
"maxResults": NotRequired[int],
|
|
1526
|
+
"nextToken": NotRequired[str],
|
|
1527
|
+
},
|
|
1528
|
+
)
|
|
1437
1529
|
NodegroupHealthTypeDef = TypedDict(
|
|
1438
1530
|
"NodegroupHealthTypeDef",
|
|
1439
1531
|
{
|
|
@@ -1524,6 +1616,12 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1524
1616
|
"marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
|
|
1525
1617
|
},
|
|
1526
1618
|
)
|
|
1619
|
+
InsightCategorySpecificSummaryTypeDef = TypedDict(
|
|
1620
|
+
"InsightCategorySpecificSummaryTypeDef",
|
|
1621
|
+
{
|
|
1622
|
+
"deprecationDetails": NotRequired[List[DeprecationDetailTypeDef]],
|
|
1623
|
+
},
|
|
1624
|
+
)
|
|
1527
1625
|
CreateEksAnywhereSubscriptionResponseTypeDef = TypedDict(
|
|
1528
1626
|
"CreateEksAnywhereSubscriptionResponseTypeDef",
|
|
1529
1627
|
{
|
|
@@ -1608,6 +1706,14 @@ DescribeIdentityProviderConfigResponseTypeDef = TypedDict(
|
|
|
1608
1706
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1609
1707
|
},
|
|
1610
1708
|
)
|
|
1709
|
+
ListInsightsResponseTypeDef = TypedDict(
|
|
1710
|
+
"ListInsightsResponseTypeDef",
|
|
1711
|
+
{
|
|
1712
|
+
"insights": List[InsightSummaryTypeDef],
|
|
1713
|
+
"nextToken": str,
|
|
1714
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1715
|
+
},
|
|
1716
|
+
)
|
|
1611
1717
|
NodegroupTypeDef = TypedDict(
|
|
1612
1718
|
"NodegroupTypeDef",
|
|
1613
1719
|
{
|
|
@@ -1781,6 +1887,23 @@ DescribeAddonVersionsResponseTypeDef = TypedDict(
|
|
|
1781
1887
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1782
1888
|
},
|
|
1783
1889
|
)
|
|
1890
|
+
InsightTypeDef = TypedDict(
|
|
1891
|
+
"InsightTypeDef",
|
|
1892
|
+
{
|
|
1893
|
+
"id": NotRequired[str],
|
|
1894
|
+
"name": NotRequired[str],
|
|
1895
|
+
"category": NotRequired[Literal["UPGRADE_READINESS"]],
|
|
1896
|
+
"kubernetesVersion": NotRequired[str],
|
|
1897
|
+
"lastRefreshTime": NotRequired[datetime],
|
|
1898
|
+
"lastTransitionTime": NotRequired[datetime],
|
|
1899
|
+
"description": NotRequired[str],
|
|
1900
|
+
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1901
|
+
"recommendation": NotRequired[str],
|
|
1902
|
+
"additionalInfo": NotRequired[Dict[str, str]],
|
|
1903
|
+
"resources": NotRequired[List[InsightResourceDetailTypeDef]],
|
|
1904
|
+
"categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
|
|
1905
|
+
},
|
|
1906
|
+
)
|
|
1784
1907
|
CreateNodegroupResponseTypeDef = TypedDict(
|
|
1785
1908
|
"CreateNodegroupResponseTypeDef",
|
|
1786
1909
|
{
|
|
@@ -1837,3 +1960,10 @@ RegisterClusterResponseTypeDef = TypedDict(
|
|
|
1837
1960
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1838
1961
|
},
|
|
1839
1962
|
)
|
|
1963
|
+
DescribeInsightResponseTypeDef = TypedDict(
|
|
1964
|
+
"DescribeInsightResponseTypeDef",
|
|
1965
|
+
{
|
|
1966
|
+
"insight": InsightTypeDef,
|
|
1967
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1968
|
+
},
|
|
1969
|
+
)
|
mypy_boto3_eks/type_defs.pyi
CHANGED
|
@@ -29,6 +29,7 @@ from .literals import (
|
|
|
29
29
|
EksAnywhereSubscriptionStatusType,
|
|
30
30
|
ErrorCodeType,
|
|
31
31
|
FargateProfileStatusType,
|
|
32
|
+
InsightStatusValueType,
|
|
32
33
|
IpFamilyType,
|
|
33
34
|
LogTypeType,
|
|
34
35
|
NodegroupIssueCodeType,
|
|
@@ -67,6 +68,7 @@ __all__ = (
|
|
|
67
68
|
"OidcIdentityProviderConfigRequestTypeDef",
|
|
68
69
|
"AutoScalingGroupTypeDef",
|
|
69
70
|
"CertificateTypeDef",
|
|
71
|
+
"ClientStatTypeDef",
|
|
70
72
|
"ClusterIssueTypeDef",
|
|
71
73
|
"ConnectorConfigResponseTypeDef",
|
|
72
74
|
"KubernetesNetworkConfigResponseTypeDef",
|
|
@@ -106,6 +108,7 @@ __all__ = (
|
|
|
106
108
|
"DescribeEksAnywhereSubscriptionRequestRequestTypeDef",
|
|
107
109
|
"DescribeFargateProfileRequestRequestTypeDef",
|
|
108
110
|
"IdentityProviderConfigTypeDef",
|
|
111
|
+
"DescribeInsightRequestRequestTypeDef",
|
|
109
112
|
"DescribeNodegroupRequestRequestTypeDef",
|
|
110
113
|
"DescribePodIdentityAssociationRequestRequestTypeDef",
|
|
111
114
|
"DescribeUpdateRequestRequestTypeDef",
|
|
@@ -114,6 +117,8 @@ __all__ = (
|
|
|
114
117
|
"ErrorDetailTypeDef",
|
|
115
118
|
"OidcIdentityProviderConfigTypeDef",
|
|
116
119
|
"OIDCTypeDef",
|
|
120
|
+
"InsightStatusTypeDef",
|
|
121
|
+
"InsightsFilterTypeDef",
|
|
117
122
|
"IssueTypeDef",
|
|
118
123
|
"ListAccessEntriesRequestRequestTypeDef",
|
|
119
124
|
"ListAccessPoliciesRequestRequestTypeDef",
|
|
@@ -158,6 +163,7 @@ __all__ = (
|
|
|
158
163
|
"UpdateAccessEntryResponseTypeDef",
|
|
159
164
|
"AssociateIdentityProviderConfigRequestRequestTypeDef",
|
|
160
165
|
"NodegroupResourcesTypeDef",
|
|
166
|
+
"DeprecationDetailTypeDef",
|
|
161
167
|
"ClusterHealthTypeDef",
|
|
162
168
|
"RegisterClusterRequestRequestTypeDef",
|
|
163
169
|
"OutpostConfigRequestTypeDef",
|
|
@@ -199,6 +205,10 @@ __all__ = (
|
|
|
199
205
|
"EncryptionConfigTypeDef",
|
|
200
206
|
"IdentityProviderConfigResponseTypeDef",
|
|
201
207
|
"IdentityTypeDef",
|
|
208
|
+
"InsightResourceDetailTypeDef",
|
|
209
|
+
"InsightSummaryTypeDef",
|
|
210
|
+
"ListInsightsRequestListInsightsPaginateTypeDef",
|
|
211
|
+
"ListInsightsRequestRequestTypeDef",
|
|
202
212
|
"NodegroupHealthTypeDef",
|
|
203
213
|
"ListPodIdentityAssociationsResponseTypeDef",
|
|
204
214
|
"LoggingTypeDef",
|
|
@@ -208,6 +218,7 @@ __all__ = (
|
|
|
208
218
|
"ListAssociatedAccessPoliciesResponseTypeDef",
|
|
209
219
|
"AddonTypeDef",
|
|
210
220
|
"AddonInfoTypeDef",
|
|
221
|
+
"InsightCategorySpecificSummaryTypeDef",
|
|
211
222
|
"CreateEksAnywhereSubscriptionResponseTypeDef",
|
|
212
223
|
"DeleteEksAnywhereSubscriptionResponseTypeDef",
|
|
213
224
|
"DescribeEksAnywhereSubscriptionResponseTypeDef",
|
|
@@ -219,6 +230,7 @@ __all__ = (
|
|
|
219
230
|
"UpdateNodegroupConfigRequestRequestTypeDef",
|
|
220
231
|
"AssociateEncryptionConfigRequestRequestTypeDef",
|
|
221
232
|
"DescribeIdentityProviderConfigResponseTypeDef",
|
|
233
|
+
"ListInsightsResponseTypeDef",
|
|
222
234
|
"NodegroupTypeDef",
|
|
223
235
|
"ClusterTypeDef",
|
|
224
236
|
"CreateClusterRequestRequestTypeDef",
|
|
@@ -236,6 +248,7 @@ __all__ = (
|
|
|
236
248
|
"DeleteAddonResponseTypeDef",
|
|
237
249
|
"DescribeAddonResponseTypeDef",
|
|
238
250
|
"DescribeAddonVersionsResponseTypeDef",
|
|
251
|
+
"InsightTypeDef",
|
|
239
252
|
"CreateNodegroupResponseTypeDef",
|
|
240
253
|
"DeleteNodegroupResponseTypeDef",
|
|
241
254
|
"DescribeNodegroupResponseTypeDef",
|
|
@@ -244,6 +257,7 @@ __all__ = (
|
|
|
244
257
|
"DeregisterClusterResponseTypeDef",
|
|
245
258
|
"DescribeClusterResponseTypeDef",
|
|
246
259
|
"RegisterClusterResponseTypeDef",
|
|
260
|
+
"DescribeInsightResponseTypeDef",
|
|
247
261
|
)
|
|
248
262
|
|
|
249
263
|
AccessConfigResponseTypeDef = TypedDict(
|
|
@@ -315,10 +329,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
315
329
|
"ResponseMetadataTypeDef",
|
|
316
330
|
{
|
|
317
331
|
"RequestId": str,
|
|
318
|
-
"HostId": str,
|
|
319
332
|
"HTTPStatusCode": int,
|
|
320
333
|
"HTTPHeaders": Dict[str, str],
|
|
321
334
|
"RetryAttempts": int,
|
|
335
|
+
"HostId": NotRequired[str],
|
|
322
336
|
},
|
|
323
337
|
)
|
|
324
338
|
OidcIdentityProviderConfigRequestTypeDef = TypedDict(
|
|
@@ -346,6 +360,14 @@ CertificateTypeDef = TypedDict(
|
|
|
346
360
|
"data": NotRequired[str],
|
|
347
361
|
},
|
|
348
362
|
)
|
|
363
|
+
ClientStatTypeDef = TypedDict(
|
|
364
|
+
"ClientStatTypeDef",
|
|
365
|
+
{
|
|
366
|
+
"userAgent": NotRequired[str],
|
|
367
|
+
"numberOfRequestsLast30Days": NotRequired[int],
|
|
368
|
+
"lastRequestTime": NotRequired[datetime],
|
|
369
|
+
},
|
|
370
|
+
)
|
|
349
371
|
ClusterIssueTypeDef = TypedDict(
|
|
350
372
|
"ClusterIssueTypeDef",
|
|
351
373
|
{
|
|
@@ -657,6 +679,13 @@ IdentityProviderConfigTypeDef = TypedDict(
|
|
|
657
679
|
"name": str,
|
|
658
680
|
},
|
|
659
681
|
)
|
|
682
|
+
DescribeInsightRequestRequestTypeDef = TypedDict(
|
|
683
|
+
"DescribeInsightRequestRequestTypeDef",
|
|
684
|
+
{
|
|
685
|
+
"clusterName": str,
|
|
686
|
+
"id": str,
|
|
687
|
+
},
|
|
688
|
+
)
|
|
660
689
|
DescribeNodegroupRequestRequestTypeDef = TypedDict(
|
|
661
690
|
"DescribeNodegroupRequestRequestTypeDef",
|
|
662
691
|
{
|
|
@@ -725,6 +754,21 @@ OIDCTypeDef = TypedDict(
|
|
|
725
754
|
"issuer": NotRequired[str],
|
|
726
755
|
},
|
|
727
756
|
)
|
|
757
|
+
InsightStatusTypeDef = TypedDict(
|
|
758
|
+
"InsightStatusTypeDef",
|
|
759
|
+
{
|
|
760
|
+
"status": NotRequired[InsightStatusValueType],
|
|
761
|
+
"reason": NotRequired[str],
|
|
762
|
+
},
|
|
763
|
+
)
|
|
764
|
+
InsightsFilterTypeDef = TypedDict(
|
|
765
|
+
"InsightsFilterTypeDef",
|
|
766
|
+
{
|
|
767
|
+
"categories": NotRequired[Sequence[Literal["UPGRADE_READINESS"]]],
|
|
768
|
+
"kubernetesVersions": NotRequired[Sequence[str]],
|
|
769
|
+
"statuses": NotRequired[Sequence[InsightStatusValueType]],
|
|
770
|
+
},
|
|
771
|
+
)
|
|
728
772
|
IssueTypeDef = TypedDict(
|
|
729
773
|
"IssueTypeDef",
|
|
730
774
|
{
|
|
@@ -1081,6 +1125,16 @@ NodegroupResourcesTypeDef = TypedDict(
|
|
|
1081
1125
|
"remoteAccessSecurityGroup": NotRequired[str],
|
|
1082
1126
|
},
|
|
1083
1127
|
)
|
|
1128
|
+
DeprecationDetailTypeDef = TypedDict(
|
|
1129
|
+
"DeprecationDetailTypeDef",
|
|
1130
|
+
{
|
|
1131
|
+
"usage": NotRequired[str],
|
|
1132
|
+
"replacedWith": NotRequired[str],
|
|
1133
|
+
"stopServingVersion": NotRequired[str],
|
|
1134
|
+
"startServingReplacementVersion": NotRequired[str],
|
|
1135
|
+
"clientStats": NotRequired[List[ClientStatTypeDef]],
|
|
1136
|
+
},
|
|
1137
|
+
)
|
|
1084
1138
|
ClusterHealthTypeDef = TypedDict(
|
|
1085
1139
|
"ClusterHealthTypeDef",
|
|
1086
1140
|
{
|
|
@@ -1434,6 +1488,44 @@ IdentityTypeDef = TypedDict(
|
|
|
1434
1488
|
"oidc": NotRequired[OIDCTypeDef],
|
|
1435
1489
|
},
|
|
1436
1490
|
)
|
|
1491
|
+
InsightResourceDetailTypeDef = TypedDict(
|
|
1492
|
+
"InsightResourceDetailTypeDef",
|
|
1493
|
+
{
|
|
1494
|
+
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1495
|
+
"kubernetesResourceUri": NotRequired[str],
|
|
1496
|
+
"arn": NotRequired[str],
|
|
1497
|
+
},
|
|
1498
|
+
)
|
|
1499
|
+
InsightSummaryTypeDef = TypedDict(
|
|
1500
|
+
"InsightSummaryTypeDef",
|
|
1501
|
+
{
|
|
1502
|
+
"id": NotRequired[str],
|
|
1503
|
+
"name": NotRequired[str],
|
|
1504
|
+
"category": NotRequired[Literal["UPGRADE_READINESS"]],
|
|
1505
|
+
"kubernetesVersion": NotRequired[str],
|
|
1506
|
+
"lastRefreshTime": NotRequired[datetime],
|
|
1507
|
+
"lastTransitionTime": NotRequired[datetime],
|
|
1508
|
+
"description": NotRequired[str],
|
|
1509
|
+
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1510
|
+
},
|
|
1511
|
+
)
|
|
1512
|
+
ListInsightsRequestListInsightsPaginateTypeDef = TypedDict(
|
|
1513
|
+
"ListInsightsRequestListInsightsPaginateTypeDef",
|
|
1514
|
+
{
|
|
1515
|
+
"clusterName": str,
|
|
1516
|
+
"filter": NotRequired[InsightsFilterTypeDef],
|
|
1517
|
+
"PaginationConfig": NotRequired[PaginatorConfigTypeDef],
|
|
1518
|
+
},
|
|
1519
|
+
)
|
|
1520
|
+
ListInsightsRequestRequestTypeDef = TypedDict(
|
|
1521
|
+
"ListInsightsRequestRequestTypeDef",
|
|
1522
|
+
{
|
|
1523
|
+
"clusterName": str,
|
|
1524
|
+
"filter": NotRequired[InsightsFilterTypeDef],
|
|
1525
|
+
"maxResults": NotRequired[int],
|
|
1526
|
+
"nextToken": NotRequired[str],
|
|
1527
|
+
},
|
|
1528
|
+
)
|
|
1437
1529
|
NodegroupHealthTypeDef = TypedDict(
|
|
1438
1530
|
"NodegroupHealthTypeDef",
|
|
1439
1531
|
{
|
|
@@ -1524,6 +1616,12 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1524
1616
|
"marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
|
|
1525
1617
|
},
|
|
1526
1618
|
)
|
|
1619
|
+
InsightCategorySpecificSummaryTypeDef = TypedDict(
|
|
1620
|
+
"InsightCategorySpecificSummaryTypeDef",
|
|
1621
|
+
{
|
|
1622
|
+
"deprecationDetails": NotRequired[List[DeprecationDetailTypeDef]],
|
|
1623
|
+
},
|
|
1624
|
+
)
|
|
1527
1625
|
CreateEksAnywhereSubscriptionResponseTypeDef = TypedDict(
|
|
1528
1626
|
"CreateEksAnywhereSubscriptionResponseTypeDef",
|
|
1529
1627
|
{
|
|
@@ -1608,6 +1706,14 @@ DescribeIdentityProviderConfigResponseTypeDef = TypedDict(
|
|
|
1608
1706
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1609
1707
|
},
|
|
1610
1708
|
)
|
|
1709
|
+
ListInsightsResponseTypeDef = TypedDict(
|
|
1710
|
+
"ListInsightsResponseTypeDef",
|
|
1711
|
+
{
|
|
1712
|
+
"insights": List[InsightSummaryTypeDef],
|
|
1713
|
+
"nextToken": str,
|
|
1714
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1715
|
+
},
|
|
1716
|
+
)
|
|
1611
1717
|
NodegroupTypeDef = TypedDict(
|
|
1612
1718
|
"NodegroupTypeDef",
|
|
1613
1719
|
{
|
|
@@ -1781,6 +1887,23 @@ DescribeAddonVersionsResponseTypeDef = TypedDict(
|
|
|
1781
1887
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1782
1888
|
},
|
|
1783
1889
|
)
|
|
1890
|
+
InsightTypeDef = TypedDict(
|
|
1891
|
+
"InsightTypeDef",
|
|
1892
|
+
{
|
|
1893
|
+
"id": NotRequired[str],
|
|
1894
|
+
"name": NotRequired[str],
|
|
1895
|
+
"category": NotRequired[Literal["UPGRADE_READINESS"]],
|
|
1896
|
+
"kubernetesVersion": NotRequired[str],
|
|
1897
|
+
"lastRefreshTime": NotRequired[datetime],
|
|
1898
|
+
"lastTransitionTime": NotRequired[datetime],
|
|
1899
|
+
"description": NotRequired[str],
|
|
1900
|
+
"insightStatus": NotRequired[InsightStatusTypeDef],
|
|
1901
|
+
"recommendation": NotRequired[str],
|
|
1902
|
+
"additionalInfo": NotRequired[Dict[str, str]],
|
|
1903
|
+
"resources": NotRequired[List[InsightResourceDetailTypeDef]],
|
|
1904
|
+
"categorySpecificSummary": NotRequired[InsightCategorySpecificSummaryTypeDef],
|
|
1905
|
+
},
|
|
1906
|
+
)
|
|
1784
1907
|
CreateNodegroupResponseTypeDef = TypedDict(
|
|
1785
1908
|
"CreateNodegroupResponseTypeDef",
|
|
1786
1909
|
{
|
|
@@ -1837,3 +1960,10 @@ RegisterClusterResponseTypeDef = TypedDict(
|
|
|
1837
1960
|
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1838
1961
|
},
|
|
1839
1962
|
)
|
|
1963
|
+
DescribeInsightResponseTypeDef = TypedDict(
|
|
1964
|
+
"DescribeInsightResponseTypeDef",
|
|
1965
|
+
{
|
|
1966
|
+
"insight": InsightTypeDef,
|
|
1967
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1968
|
+
},
|
|
1969
|
+
)
|
mypy_boto3_eks/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-eks
|
|
3
|
-
Version: 1.34.
|
|
4
|
-
Summary: Type annotations for boto3.EKS 1.34.
|
|
3
|
+
Version: 1.34.53
|
|
4
|
+
Summary: Type annotations for boto3.EKS 1.34.53 service generated with mypy-boto3-builder 7.23.2
|
|
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
|
|
@@ -17,7 +17,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
17
17
|
Classifier: Natural Language :: English
|
|
18
18
|
Classifier: Operating System :: OS Independent
|
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.8
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.9
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -26,8 +25,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.13
|
|
27
26
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
27
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
|
-
Classifier: Typing ::
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Classifier: Typing :: Stubs Only
|
|
29
|
+
Requires-Python: >=3.8
|
|
31
30
|
Description-Content-Type: text/markdown
|
|
32
31
|
License-File: LICENSE
|
|
33
32
|
Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
@@ -44,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
|
44
43
|

|
|
45
44
|
|
|
46
45
|
Type annotations for
|
|
47
|
-
[boto3.EKS 1.34.
|
|
46
|
+
[boto3.EKS 1.34.53](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS)
|
|
48
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
49
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
50
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -53,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
53
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
54
53
|
|
|
55
54
|
Generated by
|
|
56
|
-
[mypy-boto3-builder 7.
|
|
55
|
+
[mypy-boto3-builder 7.23.2](https://github.com/youtype/mypy_boto3_builder).
|
|
57
56
|
|
|
58
57
|
More information can be found on
|
|
59
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -294,6 +293,7 @@ from mypy_boto3_eks.paginator import (
|
|
|
294
293
|
ListEksAnywhereSubscriptionsPaginator,
|
|
295
294
|
ListFargateProfilesPaginator,
|
|
296
295
|
ListIdentityProviderConfigsPaginator,
|
|
296
|
+
ListInsightsPaginator,
|
|
297
297
|
ListNodegroupsPaginator,
|
|
298
298
|
ListPodIdentityAssociationsPaginator,
|
|
299
299
|
ListUpdatesPaginator,
|
|
@@ -326,6 +326,7 @@ list_fargate_profiles_paginator: ListFargateProfilesPaginator = client.get_pagin
|
|
|
326
326
|
list_identity_provider_configs_paginator: ListIdentityProviderConfigsPaginator = (
|
|
327
327
|
client.get_paginator("list_identity_provider_configs")
|
|
328
328
|
)
|
|
329
|
+
list_insights_paginator: ListInsightsPaginator = client.get_paginator("list_insights")
|
|
329
330
|
list_nodegroups_paginator: ListNodegroupsPaginator = client.get_paginator("list_nodegroups")
|
|
330
331
|
list_pod_identity_associations_paginator: ListPodIdentityAssociationsPaginator = (
|
|
331
332
|
client.get_paginator("list_pod_identity_associations")
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_eks/__init__.py,sha256=E0bo5I6kWoDlOCMzx0dtxdOWp03U82Zv5m7lkQCqFaw,4711
|
|
2
|
+
mypy_boto3_eks/__init__.pyi,sha256=E0bo5I6kWoDlOCMzx0dtxdOWp03U82Zv5m7lkQCqFaw,4711
|
|
3
|
+
mypy_boto3_eks/__main__.py,sha256=QJc4ImywRfPr85rPCX3n_qOzEuIjGtTmkwLUVWsuR1A,903
|
|
4
|
+
mypy_boto3_eks/client.py,sha256=FMo1XNnE5_2M8Cydjl-SLeXPy7ukdZSkaKIC1Dnf4qE,49134
|
|
5
|
+
mypy_boto3_eks/client.pyi,sha256=yPpILaOkgYdOQJJIXuE-pSRqK2BbScEeYMnFCl1mV6w,49131
|
|
6
|
+
mypy_boto3_eks/literals.py,sha256=iAqR19DA5iaezK889sGsfQn-LZ1CFnsiU-ii5ww11r8,17496
|
|
7
|
+
mypy_boto3_eks/literals.pyi,sha256=iAqR19DA5iaezK889sGsfQn-LZ1CFnsiU-ii5ww11r8,17496
|
|
8
|
+
mypy_boto3_eks/paginator.py,sha256=bk48EmEtJU-979VnAzVvf2pmuzskNvyChmPmCO6Dxxs,15336
|
|
9
|
+
mypy_boto3_eks/paginator.pyi,sha256=ZIMweU-6DWq0IOcL16gLTKQtILtPYSJexmHxWffuwbs,15322
|
|
10
|
+
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_eks/type_defs.py,sha256=wGAQk-X6uZZcB6MPzmPuGUu4fs6YVdb307aeSwMdEag,62636
|
|
12
|
+
mypy_boto3_eks/type_defs.pyi,sha256=wGAQk-X6uZZcB6MPzmPuGUu4fs6YVdb307aeSwMdEag,62636
|
|
13
|
+
mypy_boto3_eks/version.py,sha256=NwiAkwIupkrOwAQ9WkqA9EDob49YukQwfHwGKuPdEgs,62
|
|
14
|
+
mypy_boto3_eks/waiter.py,sha256=l2bUEk99tON1KtebRkH1naSDvzdKHt_IMvGnQW6qxR8,7687
|
|
15
|
+
mypy_boto3_eks/waiter.pyi,sha256=JCEUhwc2KS5UvHUoRYmySgrbIRGtXdDznPK37A-_yAI,7679
|
|
16
|
+
mypy_boto3_eks-1.34.53.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_eks-1.34.53.dist-info/METADATA,sha256=am-AGEwYZe1b7FPpwqLU5JzMH9RCWV8vpY4pJNs1PSQ,15624
|
|
18
|
+
mypy_boto3_eks-1.34.53.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
19
|
+
mypy_boto3_eks-1.34.53.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
+
mypy_boto3_eks-1.34.53.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_eks/__init__.py,sha256=luGS_FQZB6vhN4UjQRfT3faGivTUP4hTbfyjEn0-XIY,4533
|
|
2
|
-
mypy_boto3_eks/__init__.pyi,sha256=luGS_FQZB6vhN4UjQRfT3faGivTUP4hTbfyjEn0-XIY,4533
|
|
3
|
-
mypy_boto3_eks/__main__.py,sha256=fthKDBDvrGzPMf3cinMIM-syc_UdLRn4iQoeebuHAGI,889
|
|
4
|
-
mypy_boto3_eks/client.py,sha256=El0G_WNGqL6jqumH6EP4_iJr9TLOQ6oJrFfV-ialmpk,47526
|
|
5
|
-
mypy_boto3_eks/client.pyi,sha256=6AwhSURWBJkCtU31vJKOEa9dMtBjNeuFYh0QYbEqHkg,47523
|
|
6
|
-
mypy_boto3_eks/literals.py,sha256=hTUwFeQRN_3bQGfUoHQODQVeWEgpiWEsnmms1i3FSH4,17059
|
|
7
|
-
mypy_boto3_eks/literals.pyi,sha256=hTUwFeQRN_3bQGfUoHQODQVeWEgpiWEsnmms1i3FSH4,17059
|
|
8
|
-
mypy_boto3_eks/paginator.py,sha256=cnsvr35bCLXvNlU9v4Qyg4ivDCG28ingvbUtuzM3big,14251
|
|
9
|
-
mypy_boto3_eks/paginator.pyi,sha256=IwM-lUJvr05WlyPJ5Zi1P6Zz85I-ZgEt_dhb39WpeFc,14238
|
|
10
|
-
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_eks/type_defs.py,sha256=Y6F9hdBLkdpEHZrelA4lko3LjfBDyj1B874PCwzXJVo,58460
|
|
12
|
-
mypy_boto3_eks/type_defs.pyi,sha256=Y6F9hdBLkdpEHZrelA4lko3LjfBDyj1B874PCwzXJVo,58460
|
|
13
|
-
mypy_boto3_eks/version.py,sha256=0AnLmLZREOL135H7jdjxKIJDQcjd_jm97_mGb_7FjaM,61
|
|
14
|
-
mypy_boto3_eks/waiter.py,sha256=l2bUEk99tON1KtebRkH1naSDvzdKHt_IMvGnQW6qxR8,7687
|
|
15
|
-
mypy_boto3_eks/waiter.pyi,sha256=JCEUhwc2KS5UvHUoRYmySgrbIRGtXdDznPK37A-_yAI,7679
|
|
16
|
-
mypy_boto3_eks-1.34.3.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
17
|
-
mypy_boto3_eks-1.34.3.dist-info/METADATA,sha256=LuUMGGvi7Iol_VwwzlUsuzbnUSPBMRy0-Ecb9yDdJx0,15552
|
|
18
|
-
mypy_boto3_eks-1.34.3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
19
|
-
mypy_boto3_eks-1.34.3.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
-
mypy_boto3_eks-1.34.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|