mypy-boto3-eks 1.34.118__py3-none-any.whl → 1.34.134__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 +1 -0
- mypy_boto3_eks/client.pyi +1 -0
- mypy_boto3_eks/literals.py +8 -3
- mypy_boto3_eks/literals.pyi +8 -3
- mypy_boto3_eks/type_defs.py +52 -33
- mypy_boto3_eks/type_defs.pyi +52 -33
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.34.118.dist-info → mypy_boto3_eks-1.34.134.dist-info}/METADATA +3 -3
- mypy_boto3_eks-1.34.134.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.34.118.dist-info → mypy_boto3_eks-1.34.134.dist-info}/WHEEL +1 -1
- mypy_boto3_eks-1.34.118.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.34.118.dist-info → mypy_boto3_eks-1.34.134.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.34.118.dist-info → mypy_boto3_eks-1.34.134.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/__main__.py
CHANGED
|
@@ -10,8 +10,8 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.EKS 1.34.
|
|
14
|
-
"Version: 1.34.
|
|
13
|
+
"Type annotations for boto3.EKS 1.34.134\n"
|
|
14
|
+
"Version: 1.34.134\n"
|
|
15
15
|
"Builder version: 7.24.0\n"
|
|
16
16
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks//\n"
|
|
17
17
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS\n"
|
|
@@ -24,7 +24,7 @@ def print_version() -> None:
|
|
|
24
24
|
"""
|
|
25
25
|
Print package version to stdout.
|
|
26
26
|
"""
|
|
27
|
-
print("1.34.
|
|
27
|
+
print("1.34.134")
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
def main() -> None:
|
mypy_boto3_eks/client.py
CHANGED
|
@@ -289,6 +289,7 @@ class EKSClient(BaseClient):
|
|
|
289
289
|
encryptionConfig: Sequence[EncryptionConfigUnionTypeDef] = ...,
|
|
290
290
|
outpostConfig: OutpostConfigRequestTypeDef = ...,
|
|
291
291
|
accessConfig: CreateAccessConfigRequestTypeDef = ...,
|
|
292
|
+
bootstrapSelfManagedAddons: bool = ...,
|
|
292
293
|
) -> CreateClusterResponseTypeDef:
|
|
293
294
|
"""
|
|
294
295
|
Creates an Amazon EKS control plane.
|
mypy_boto3_eks/client.pyi
CHANGED
|
@@ -286,6 +286,7 @@ class EKSClient(BaseClient):
|
|
|
286
286
|
encryptionConfig: Sequence[EncryptionConfigUnionTypeDef] = ...,
|
|
287
287
|
outpostConfig: OutpostConfigRequestTypeDef = ...,
|
|
288
288
|
accessConfig: CreateAccessConfigRequestTypeDef = ...,
|
|
289
|
+
bootstrapSelfManagedAddons: bool = ...,
|
|
289
290
|
) -> CreateClusterResponseTypeDef:
|
|
290
291
|
"""
|
|
291
292
|
Creates an Amazon EKS control plane.
|
mypy_boto3_eks/literals.py
CHANGED
|
@@ -42,6 +42,7 @@ __all__ = (
|
|
|
42
42
|
"ErrorCodeType",
|
|
43
43
|
"FargateProfileActiveWaiterName",
|
|
44
44
|
"FargateProfileDeletedWaiterName",
|
|
45
|
+
"FargateProfileIssueCodeType",
|
|
45
46
|
"FargateProfileStatusType",
|
|
46
47
|
"InsightStatusValueType",
|
|
47
48
|
"IpFamilyType",
|
|
@@ -174,6 +175,9 @@ ErrorCodeType = Literal[
|
|
|
174
175
|
]
|
|
175
176
|
FargateProfileActiveWaiterName = Literal["fargate_profile_active"]
|
|
176
177
|
FargateProfileDeletedWaiterName = Literal["fargate_profile_deleted"]
|
|
178
|
+
FargateProfileIssueCodeType = Literal[
|
|
179
|
+
"AccessDenied", "ClusterUnreachable", "InternalFailure", "PodExecutionRoleAlreadyInUse"
|
|
180
|
+
]
|
|
177
181
|
FargateProfileStatusType = Literal[
|
|
178
182
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DELETE_FAILED", "DELETING"
|
|
179
183
|
]
|
|
@@ -285,7 +289,6 @@ ServiceName = Literal[
|
|
|
285
289
|
"account",
|
|
286
290
|
"acm",
|
|
287
291
|
"acm-pca",
|
|
288
|
-
"alexaforbusiness",
|
|
289
292
|
"amp",
|
|
290
293
|
"amplify",
|
|
291
294
|
"amplifybackend",
|
|
@@ -300,11 +303,13 @@ ServiceName = Literal[
|
|
|
300
303
|
"appintegrations",
|
|
301
304
|
"application-autoscaling",
|
|
302
305
|
"application-insights",
|
|
306
|
+
"application-signals",
|
|
303
307
|
"applicationcostprofiler",
|
|
304
308
|
"appmesh",
|
|
305
309
|
"apprunner",
|
|
306
310
|
"appstream",
|
|
307
311
|
"appsync",
|
|
312
|
+
"apptest",
|
|
308
313
|
"arc-zonal-shift",
|
|
309
314
|
"artifact",
|
|
310
315
|
"athena",
|
|
@@ -314,7 +319,6 @@ ServiceName = Literal[
|
|
|
314
319
|
"b2bi",
|
|
315
320
|
"backup",
|
|
316
321
|
"backup-gateway",
|
|
317
|
-
"backupstorage",
|
|
318
322
|
"batch",
|
|
319
323
|
"bcm-data-exports",
|
|
320
324
|
"bedrock",
|
|
@@ -440,7 +444,6 @@ ServiceName = Literal[
|
|
|
440
444
|
"guardduty",
|
|
441
445
|
"health",
|
|
442
446
|
"healthlake",
|
|
443
|
-
"honeycode",
|
|
444
447
|
"iam",
|
|
445
448
|
"identitystore",
|
|
446
449
|
"imagebuilder",
|
|
@@ -551,6 +554,7 @@ ServiceName = Literal[
|
|
|
551
554
|
"payment-cryptography",
|
|
552
555
|
"payment-cryptography-data",
|
|
553
556
|
"pca-connector-ad",
|
|
557
|
+
"pca-connector-scep",
|
|
554
558
|
"personalize",
|
|
555
559
|
"personalize-events",
|
|
556
560
|
"personalize-runtime",
|
|
@@ -640,6 +644,7 @@ ServiceName = Literal[
|
|
|
640
644
|
"support-app",
|
|
641
645
|
"swf",
|
|
642
646
|
"synthetics",
|
|
647
|
+
"taxsettings",
|
|
643
648
|
"textract",
|
|
644
649
|
"timestream-influxdb",
|
|
645
650
|
"timestream-query",
|
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -42,6 +42,7 @@ __all__ = (
|
|
|
42
42
|
"ErrorCodeType",
|
|
43
43
|
"FargateProfileActiveWaiterName",
|
|
44
44
|
"FargateProfileDeletedWaiterName",
|
|
45
|
+
"FargateProfileIssueCodeType",
|
|
45
46
|
"FargateProfileStatusType",
|
|
46
47
|
"InsightStatusValueType",
|
|
47
48
|
"IpFamilyType",
|
|
@@ -174,6 +175,9 @@ ErrorCodeType = Literal[
|
|
|
174
175
|
]
|
|
175
176
|
FargateProfileActiveWaiterName = Literal["fargate_profile_active"]
|
|
176
177
|
FargateProfileDeletedWaiterName = Literal["fargate_profile_deleted"]
|
|
178
|
+
FargateProfileIssueCodeType = Literal[
|
|
179
|
+
"AccessDenied", "ClusterUnreachable", "InternalFailure", "PodExecutionRoleAlreadyInUse"
|
|
180
|
+
]
|
|
177
181
|
FargateProfileStatusType = Literal[
|
|
178
182
|
"ACTIVE", "CREATE_FAILED", "CREATING", "DELETE_FAILED", "DELETING"
|
|
179
183
|
]
|
|
@@ -285,7 +289,6 @@ ServiceName = Literal[
|
|
|
285
289
|
"account",
|
|
286
290
|
"acm",
|
|
287
291
|
"acm-pca",
|
|
288
|
-
"alexaforbusiness",
|
|
289
292
|
"amp",
|
|
290
293
|
"amplify",
|
|
291
294
|
"amplifybackend",
|
|
@@ -300,11 +303,13 @@ ServiceName = Literal[
|
|
|
300
303
|
"appintegrations",
|
|
301
304
|
"application-autoscaling",
|
|
302
305
|
"application-insights",
|
|
306
|
+
"application-signals",
|
|
303
307
|
"applicationcostprofiler",
|
|
304
308
|
"appmesh",
|
|
305
309
|
"apprunner",
|
|
306
310
|
"appstream",
|
|
307
311
|
"appsync",
|
|
312
|
+
"apptest",
|
|
308
313
|
"arc-zonal-shift",
|
|
309
314
|
"artifact",
|
|
310
315
|
"athena",
|
|
@@ -314,7 +319,6 @@ ServiceName = Literal[
|
|
|
314
319
|
"b2bi",
|
|
315
320
|
"backup",
|
|
316
321
|
"backup-gateway",
|
|
317
|
-
"backupstorage",
|
|
318
322
|
"batch",
|
|
319
323
|
"bcm-data-exports",
|
|
320
324
|
"bedrock",
|
|
@@ -440,7 +444,6 @@ ServiceName = Literal[
|
|
|
440
444
|
"guardduty",
|
|
441
445
|
"health",
|
|
442
446
|
"healthlake",
|
|
443
|
-
"honeycode",
|
|
444
447
|
"iam",
|
|
445
448
|
"identitystore",
|
|
446
449
|
"imagebuilder",
|
|
@@ -551,6 +554,7 @@ ServiceName = Literal[
|
|
|
551
554
|
"payment-cryptography",
|
|
552
555
|
"payment-cryptography-data",
|
|
553
556
|
"pca-connector-ad",
|
|
557
|
+
"pca-connector-scep",
|
|
554
558
|
"personalize",
|
|
555
559
|
"personalize-events",
|
|
556
560
|
"personalize-runtime",
|
|
@@ -640,6 +644,7 @@ ServiceName = Literal[
|
|
|
640
644
|
"support-app",
|
|
641
645
|
"swf",
|
|
642
646
|
"synthetics",
|
|
647
|
+
"taxsettings",
|
|
643
648
|
"textract",
|
|
644
649
|
"timestream-influxdb",
|
|
645
650
|
"timestream-query",
|
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -29,6 +29,7 @@ from .literals import (
|
|
|
29
29
|
ConnectorConfigProviderType,
|
|
30
30
|
EksAnywhereSubscriptionStatusType,
|
|
31
31
|
ErrorCodeType,
|
|
32
|
+
FargateProfileIssueCodeType,
|
|
32
33
|
FargateProfileStatusType,
|
|
33
34
|
InsightStatusValueType,
|
|
34
35
|
IpFamilyType,
|
|
@@ -116,6 +117,7 @@ __all__ = (
|
|
|
116
117
|
"DisassociateAccessPolicyRequestRequestTypeDef",
|
|
117
118
|
"ProviderTypeDef",
|
|
118
119
|
"ErrorDetailTypeDef",
|
|
120
|
+
"FargateProfileIssueTypeDef",
|
|
119
121
|
"FargateProfileSelectorOutputTypeDef",
|
|
120
122
|
"FargateProfileSelectorTypeDef",
|
|
121
123
|
"OidcIdentityProviderConfigTypeDef",
|
|
@@ -208,7 +210,7 @@ __all__ = (
|
|
|
208
210
|
"ListIdentityProviderConfigsResponseTypeDef",
|
|
209
211
|
"EncryptionConfigOutputTypeDef",
|
|
210
212
|
"EncryptionConfigTypeDef",
|
|
211
|
-
"
|
|
213
|
+
"FargateProfileHealthTypeDef",
|
|
212
214
|
"FargateProfileSelectorUnionTypeDef",
|
|
213
215
|
"IdentityProviderConfigResponseTypeDef",
|
|
214
216
|
"IdentityTypeDef",
|
|
@@ -234,9 +236,7 @@ __all__ = (
|
|
|
234
236
|
"UpdateEksAnywhereSubscriptionResponseTypeDef",
|
|
235
237
|
"UpdateNodegroupConfigRequestRequestTypeDef",
|
|
236
238
|
"EncryptionConfigUnionTypeDef",
|
|
237
|
-
"
|
|
238
|
-
"DeleteFargateProfileResponseTypeDef",
|
|
239
|
-
"DescribeFargateProfileResponseTypeDef",
|
|
239
|
+
"FargateProfileTypeDef",
|
|
240
240
|
"CreateFargateProfileRequestRequestTypeDef",
|
|
241
241
|
"DescribeIdentityProviderConfigResponseTypeDef",
|
|
242
242
|
"ListInsightsResponseTypeDef",
|
|
@@ -260,6 +260,9 @@ __all__ = (
|
|
|
260
260
|
"InsightTypeDef",
|
|
261
261
|
"AssociateEncryptionConfigRequestRequestTypeDef",
|
|
262
262
|
"CreateClusterRequestRequestTypeDef",
|
|
263
|
+
"CreateFargateProfileResponseTypeDef",
|
|
264
|
+
"DeleteFargateProfileResponseTypeDef",
|
|
265
|
+
"DescribeFargateProfileResponseTypeDef",
|
|
263
266
|
"CreateNodegroupResponseTypeDef",
|
|
264
267
|
"DeleteNodegroupResponseTypeDef",
|
|
265
268
|
"DescribeNodegroupResponseTypeDef",
|
|
@@ -744,6 +747,14 @@ ErrorDetailTypeDef = TypedDict(
|
|
|
744
747
|
"resourceIds": NotRequired[List[str]],
|
|
745
748
|
},
|
|
746
749
|
)
|
|
750
|
+
FargateProfileIssueTypeDef = TypedDict(
|
|
751
|
+
"FargateProfileIssueTypeDef",
|
|
752
|
+
{
|
|
753
|
+
"code": NotRequired[FargateProfileIssueCodeType],
|
|
754
|
+
"message": NotRequired[str],
|
|
755
|
+
"resourceIds": NotRequired[List[str]],
|
|
756
|
+
},
|
|
757
|
+
)
|
|
747
758
|
FargateProfileSelectorOutputTypeDef = TypedDict(
|
|
748
759
|
"FargateProfileSelectorOutputTypeDef",
|
|
749
760
|
{
|
|
@@ -1508,18 +1519,10 @@ EncryptionConfigTypeDef = TypedDict(
|
|
|
1508
1519
|
"provider": NotRequired[ProviderTypeDef],
|
|
1509
1520
|
},
|
|
1510
1521
|
)
|
|
1511
|
-
|
|
1512
|
-
"
|
|
1522
|
+
FargateProfileHealthTypeDef = TypedDict(
|
|
1523
|
+
"FargateProfileHealthTypeDef",
|
|
1513
1524
|
{
|
|
1514
|
-
"
|
|
1515
|
-
"fargateProfileArn": NotRequired[str],
|
|
1516
|
-
"clusterName": NotRequired[str],
|
|
1517
|
-
"createdAt": NotRequired[datetime],
|
|
1518
|
-
"podExecutionRoleArn": NotRequired[str],
|
|
1519
|
-
"subnets": NotRequired[List[str]],
|
|
1520
|
-
"selectors": NotRequired[List[FargateProfileSelectorOutputTypeDef]],
|
|
1521
|
-
"status": NotRequired[FargateProfileStatusType],
|
|
1522
|
-
"tags": NotRequired[Dict[str, str]],
|
|
1525
|
+
"issues": NotRequired[List[FargateProfileIssueTypeDef]],
|
|
1523
1526
|
},
|
|
1524
1527
|
)
|
|
1525
1528
|
FargateProfileSelectorUnionTypeDef = Union[
|
|
@@ -1718,25 +1721,19 @@ UpdateNodegroupConfigRequestRequestTypeDef = TypedDict(
|
|
|
1718
1721
|
},
|
|
1719
1722
|
)
|
|
1720
1723
|
EncryptionConfigUnionTypeDef = Union[EncryptionConfigTypeDef, EncryptionConfigOutputTypeDef]
|
|
1721
|
-
|
|
1722
|
-
"
|
|
1723
|
-
{
|
|
1724
|
-
"fargateProfile": FargateProfileTypeDef,
|
|
1725
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1726
|
-
},
|
|
1727
|
-
)
|
|
1728
|
-
DeleteFargateProfileResponseTypeDef = TypedDict(
|
|
1729
|
-
"DeleteFargateProfileResponseTypeDef",
|
|
1730
|
-
{
|
|
1731
|
-
"fargateProfile": FargateProfileTypeDef,
|
|
1732
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1733
|
-
},
|
|
1734
|
-
)
|
|
1735
|
-
DescribeFargateProfileResponseTypeDef = TypedDict(
|
|
1736
|
-
"DescribeFargateProfileResponseTypeDef",
|
|
1724
|
+
FargateProfileTypeDef = TypedDict(
|
|
1725
|
+
"FargateProfileTypeDef",
|
|
1737
1726
|
{
|
|
1738
|
-
"
|
|
1739
|
-
"
|
|
1727
|
+
"fargateProfileName": NotRequired[str],
|
|
1728
|
+
"fargateProfileArn": NotRequired[str],
|
|
1729
|
+
"clusterName": NotRequired[str],
|
|
1730
|
+
"createdAt": NotRequired[datetime],
|
|
1731
|
+
"podExecutionRoleArn": NotRequired[str],
|
|
1732
|
+
"subnets": NotRequired[List[str]],
|
|
1733
|
+
"selectors": NotRequired[List[FargateProfileSelectorOutputTypeDef]],
|
|
1734
|
+
"status": NotRequired[FargateProfileStatusType],
|
|
1735
|
+
"tags": NotRequired[Dict[str, str]],
|
|
1736
|
+
"health": NotRequired[FargateProfileHealthTypeDef],
|
|
1740
1737
|
},
|
|
1741
1738
|
)
|
|
1742
1739
|
CreateFargateProfileRequestRequestTypeDef = TypedDict(
|
|
@@ -1963,6 +1960,28 @@ CreateClusterRequestRequestTypeDef = TypedDict(
|
|
|
1963
1960
|
"encryptionConfig": NotRequired[Sequence[EncryptionConfigUnionTypeDef]],
|
|
1964
1961
|
"outpostConfig": NotRequired[OutpostConfigRequestTypeDef],
|
|
1965
1962
|
"accessConfig": NotRequired[CreateAccessConfigRequestTypeDef],
|
|
1963
|
+
"bootstrapSelfManagedAddons": NotRequired[bool],
|
|
1964
|
+
},
|
|
1965
|
+
)
|
|
1966
|
+
CreateFargateProfileResponseTypeDef = TypedDict(
|
|
1967
|
+
"CreateFargateProfileResponseTypeDef",
|
|
1968
|
+
{
|
|
1969
|
+
"fargateProfile": FargateProfileTypeDef,
|
|
1970
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1971
|
+
},
|
|
1972
|
+
)
|
|
1973
|
+
DeleteFargateProfileResponseTypeDef = TypedDict(
|
|
1974
|
+
"DeleteFargateProfileResponseTypeDef",
|
|
1975
|
+
{
|
|
1976
|
+
"fargateProfile": FargateProfileTypeDef,
|
|
1977
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1978
|
+
},
|
|
1979
|
+
)
|
|
1980
|
+
DescribeFargateProfileResponseTypeDef = TypedDict(
|
|
1981
|
+
"DescribeFargateProfileResponseTypeDef",
|
|
1982
|
+
{
|
|
1983
|
+
"fargateProfile": FargateProfileTypeDef,
|
|
1984
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1966
1985
|
},
|
|
1967
1986
|
)
|
|
1968
1987
|
CreateNodegroupResponseTypeDef = TypedDict(
|
mypy_boto3_eks/type_defs.pyi
CHANGED
|
@@ -29,6 +29,7 @@ from .literals import (
|
|
|
29
29
|
ConnectorConfigProviderType,
|
|
30
30
|
EksAnywhereSubscriptionStatusType,
|
|
31
31
|
ErrorCodeType,
|
|
32
|
+
FargateProfileIssueCodeType,
|
|
32
33
|
FargateProfileStatusType,
|
|
33
34
|
InsightStatusValueType,
|
|
34
35
|
IpFamilyType,
|
|
@@ -116,6 +117,7 @@ __all__ = (
|
|
|
116
117
|
"DisassociateAccessPolicyRequestRequestTypeDef",
|
|
117
118
|
"ProviderTypeDef",
|
|
118
119
|
"ErrorDetailTypeDef",
|
|
120
|
+
"FargateProfileIssueTypeDef",
|
|
119
121
|
"FargateProfileSelectorOutputTypeDef",
|
|
120
122
|
"FargateProfileSelectorTypeDef",
|
|
121
123
|
"OidcIdentityProviderConfigTypeDef",
|
|
@@ -208,7 +210,7 @@ __all__ = (
|
|
|
208
210
|
"ListIdentityProviderConfigsResponseTypeDef",
|
|
209
211
|
"EncryptionConfigOutputTypeDef",
|
|
210
212
|
"EncryptionConfigTypeDef",
|
|
211
|
-
"
|
|
213
|
+
"FargateProfileHealthTypeDef",
|
|
212
214
|
"FargateProfileSelectorUnionTypeDef",
|
|
213
215
|
"IdentityProviderConfigResponseTypeDef",
|
|
214
216
|
"IdentityTypeDef",
|
|
@@ -234,9 +236,7 @@ __all__ = (
|
|
|
234
236
|
"UpdateEksAnywhereSubscriptionResponseTypeDef",
|
|
235
237
|
"UpdateNodegroupConfigRequestRequestTypeDef",
|
|
236
238
|
"EncryptionConfigUnionTypeDef",
|
|
237
|
-
"
|
|
238
|
-
"DeleteFargateProfileResponseTypeDef",
|
|
239
|
-
"DescribeFargateProfileResponseTypeDef",
|
|
239
|
+
"FargateProfileTypeDef",
|
|
240
240
|
"CreateFargateProfileRequestRequestTypeDef",
|
|
241
241
|
"DescribeIdentityProviderConfigResponseTypeDef",
|
|
242
242
|
"ListInsightsResponseTypeDef",
|
|
@@ -260,6 +260,9 @@ __all__ = (
|
|
|
260
260
|
"InsightTypeDef",
|
|
261
261
|
"AssociateEncryptionConfigRequestRequestTypeDef",
|
|
262
262
|
"CreateClusterRequestRequestTypeDef",
|
|
263
|
+
"CreateFargateProfileResponseTypeDef",
|
|
264
|
+
"DeleteFargateProfileResponseTypeDef",
|
|
265
|
+
"DescribeFargateProfileResponseTypeDef",
|
|
263
266
|
"CreateNodegroupResponseTypeDef",
|
|
264
267
|
"DeleteNodegroupResponseTypeDef",
|
|
265
268
|
"DescribeNodegroupResponseTypeDef",
|
|
@@ -744,6 +747,14 @@ ErrorDetailTypeDef = TypedDict(
|
|
|
744
747
|
"resourceIds": NotRequired[List[str]],
|
|
745
748
|
},
|
|
746
749
|
)
|
|
750
|
+
FargateProfileIssueTypeDef = TypedDict(
|
|
751
|
+
"FargateProfileIssueTypeDef",
|
|
752
|
+
{
|
|
753
|
+
"code": NotRequired[FargateProfileIssueCodeType],
|
|
754
|
+
"message": NotRequired[str],
|
|
755
|
+
"resourceIds": NotRequired[List[str]],
|
|
756
|
+
},
|
|
757
|
+
)
|
|
747
758
|
FargateProfileSelectorOutputTypeDef = TypedDict(
|
|
748
759
|
"FargateProfileSelectorOutputTypeDef",
|
|
749
760
|
{
|
|
@@ -1508,18 +1519,10 @@ EncryptionConfigTypeDef = TypedDict(
|
|
|
1508
1519
|
"provider": NotRequired[ProviderTypeDef],
|
|
1509
1520
|
},
|
|
1510
1521
|
)
|
|
1511
|
-
|
|
1512
|
-
"
|
|
1522
|
+
FargateProfileHealthTypeDef = TypedDict(
|
|
1523
|
+
"FargateProfileHealthTypeDef",
|
|
1513
1524
|
{
|
|
1514
|
-
"
|
|
1515
|
-
"fargateProfileArn": NotRequired[str],
|
|
1516
|
-
"clusterName": NotRequired[str],
|
|
1517
|
-
"createdAt": NotRequired[datetime],
|
|
1518
|
-
"podExecutionRoleArn": NotRequired[str],
|
|
1519
|
-
"subnets": NotRequired[List[str]],
|
|
1520
|
-
"selectors": NotRequired[List[FargateProfileSelectorOutputTypeDef]],
|
|
1521
|
-
"status": NotRequired[FargateProfileStatusType],
|
|
1522
|
-
"tags": NotRequired[Dict[str, str]],
|
|
1525
|
+
"issues": NotRequired[List[FargateProfileIssueTypeDef]],
|
|
1523
1526
|
},
|
|
1524
1527
|
)
|
|
1525
1528
|
FargateProfileSelectorUnionTypeDef = Union[
|
|
@@ -1718,25 +1721,19 @@ UpdateNodegroupConfigRequestRequestTypeDef = TypedDict(
|
|
|
1718
1721
|
},
|
|
1719
1722
|
)
|
|
1720
1723
|
EncryptionConfigUnionTypeDef = Union[EncryptionConfigTypeDef, EncryptionConfigOutputTypeDef]
|
|
1721
|
-
|
|
1722
|
-
"
|
|
1723
|
-
{
|
|
1724
|
-
"fargateProfile": FargateProfileTypeDef,
|
|
1725
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1726
|
-
},
|
|
1727
|
-
)
|
|
1728
|
-
DeleteFargateProfileResponseTypeDef = TypedDict(
|
|
1729
|
-
"DeleteFargateProfileResponseTypeDef",
|
|
1730
|
-
{
|
|
1731
|
-
"fargateProfile": FargateProfileTypeDef,
|
|
1732
|
-
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1733
|
-
},
|
|
1734
|
-
)
|
|
1735
|
-
DescribeFargateProfileResponseTypeDef = TypedDict(
|
|
1736
|
-
"DescribeFargateProfileResponseTypeDef",
|
|
1724
|
+
FargateProfileTypeDef = TypedDict(
|
|
1725
|
+
"FargateProfileTypeDef",
|
|
1737
1726
|
{
|
|
1738
|
-
"
|
|
1739
|
-
"
|
|
1727
|
+
"fargateProfileName": NotRequired[str],
|
|
1728
|
+
"fargateProfileArn": NotRequired[str],
|
|
1729
|
+
"clusterName": NotRequired[str],
|
|
1730
|
+
"createdAt": NotRequired[datetime],
|
|
1731
|
+
"podExecutionRoleArn": NotRequired[str],
|
|
1732
|
+
"subnets": NotRequired[List[str]],
|
|
1733
|
+
"selectors": NotRequired[List[FargateProfileSelectorOutputTypeDef]],
|
|
1734
|
+
"status": NotRequired[FargateProfileStatusType],
|
|
1735
|
+
"tags": NotRequired[Dict[str, str]],
|
|
1736
|
+
"health": NotRequired[FargateProfileHealthTypeDef],
|
|
1740
1737
|
},
|
|
1741
1738
|
)
|
|
1742
1739
|
CreateFargateProfileRequestRequestTypeDef = TypedDict(
|
|
@@ -1963,6 +1960,28 @@ CreateClusterRequestRequestTypeDef = TypedDict(
|
|
|
1963
1960
|
"encryptionConfig": NotRequired[Sequence[EncryptionConfigUnionTypeDef]],
|
|
1964
1961
|
"outpostConfig": NotRequired[OutpostConfigRequestTypeDef],
|
|
1965
1962
|
"accessConfig": NotRequired[CreateAccessConfigRequestTypeDef],
|
|
1963
|
+
"bootstrapSelfManagedAddons": NotRequired[bool],
|
|
1964
|
+
},
|
|
1965
|
+
)
|
|
1966
|
+
CreateFargateProfileResponseTypeDef = TypedDict(
|
|
1967
|
+
"CreateFargateProfileResponseTypeDef",
|
|
1968
|
+
{
|
|
1969
|
+
"fargateProfile": FargateProfileTypeDef,
|
|
1970
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1971
|
+
},
|
|
1972
|
+
)
|
|
1973
|
+
DeleteFargateProfileResponseTypeDef = TypedDict(
|
|
1974
|
+
"DeleteFargateProfileResponseTypeDef",
|
|
1975
|
+
{
|
|
1976
|
+
"fargateProfile": FargateProfileTypeDef,
|
|
1977
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1978
|
+
},
|
|
1979
|
+
)
|
|
1980
|
+
DescribeFargateProfileResponseTypeDef = TypedDict(
|
|
1981
|
+
"DescribeFargateProfileResponseTypeDef",
|
|
1982
|
+
{
|
|
1983
|
+
"fargateProfile": FargateProfileTypeDef,
|
|
1984
|
+
"ResponseMetadata": ResponseMetadataTypeDef,
|
|
1966
1985
|
},
|
|
1967
1986
|
)
|
|
1968
1987
|
CreateNodegroupResponseTypeDef = TypedDict(
|
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.134
|
|
4
|
+
Summary: Type annotations for boto3.EKS 1.34.134 service generated with mypy-boto3-builder 7.24.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
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
|
43
43
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.EKS 1.34.
|
|
46
|
+
[boto3.EKS 1.34.134](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS)
|
|
47
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -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=HCyPVW6Yz9Wc1B_JvowhrXlGXTrbcyk4KSxNbDEA6lE,906
|
|
4
|
+
mypy_boto3_eks/client.py,sha256=k39Vg2GNXtvGl1g9J4eLCWxG0PAkf5VMIQGmilMLkhA,49455
|
|
5
|
+
mypy_boto3_eks/client.pyi,sha256=PqQvVOMNZPfst8_LWUZmaqQm7kaeF2CVnWV7dlFK9q4,49452
|
|
6
|
+
mypy_boto3_eks/literals.py,sha256=l0KSu18UlyofZ1eUdLFO4bX0NG7S0XNT60gTK397pI0,17967
|
|
7
|
+
mypy_boto3_eks/literals.pyi,sha256=l0KSu18UlyofZ1eUdLFO4bX0NG7S0XNT60gTK397pI0,17967
|
|
8
|
+
mypy_boto3_eks/paginator.py,sha256=ptf2OcGXBuVX_-zrJ2f29-J_erT3gw4pO2M8AXAj5_o,15318
|
|
9
|
+
mypy_boto3_eks/paginator.pyi,sha256=XcevxKQBwCxr_KwAaoPOUelzSTyi_2YyeWGx4No2aAU,15304
|
|
10
|
+
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_eks/type_defs.py,sha256=03l4YArdWBpjvTYkLqajFb6ruSRJWpfS5OWrovB5gyo,65357
|
|
12
|
+
mypy_boto3_eks/type_defs.pyi,sha256=03l4YArdWBpjvTYkLqajFb6ruSRJWpfS5OWrovB5gyo,65357
|
|
13
|
+
mypy_boto3_eks/version.py,sha256=8EuKS--tTK7tVeu_1fw9-A8oifTo3DSm_4r_ZBhqJU0,63
|
|
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.134.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_eks-1.34.134.dist-info/METADATA,sha256=vO9JMuO2d3Pxk3rZb2hz-kxW9TlPOdlATgmQFTGtkLQ,15627
|
|
18
|
+
mypy_boto3_eks-1.34.134.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
|
|
19
|
+
mypy_boto3_eks-1.34.134.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
+
mypy_boto3_eks-1.34.134.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
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=Sww1ccm3bKf2mnBhxi0RClGMXzVXNV6LCcXqKOFQFLM,906
|
|
4
|
-
mypy_boto3_eks/client.py,sha256=Qf_KhqeFt7a7ZucVLv3jgoNiKunqmN2FjYLXdVIjfLQ,49407
|
|
5
|
-
mypy_boto3_eks/client.pyi,sha256=tNxkr2e4YG0RtkCg7PCXncz7CXqPZN6hZwvrIqh3B94,49404
|
|
6
|
-
mypy_boto3_eks/literals.py,sha256=lxaE-AVPRHvlvpJLjBseSRx5GuOWR_rMjMi6FDHvL1o,17774
|
|
7
|
-
mypy_boto3_eks/literals.pyi,sha256=lxaE-AVPRHvlvpJLjBseSRx5GuOWR_rMjMi6FDHvL1o,17774
|
|
8
|
-
mypy_boto3_eks/paginator.py,sha256=ptf2OcGXBuVX_-zrJ2f29-J_erT3gw4pO2M8AXAj5_o,15318
|
|
9
|
-
mypy_boto3_eks/paginator.pyi,sha256=XcevxKQBwCxr_KwAaoPOUelzSTyi_2YyeWGx4No2aAU,15304
|
|
10
|
-
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_eks/type_defs.py,sha256=PCCqOcgYqgQ0m2tL0eLId9W6SzKIloTjstBonA2_28Q,64751
|
|
12
|
-
mypy_boto3_eks/type_defs.pyi,sha256=PCCqOcgYqgQ0m2tL0eLId9W6SzKIloTjstBonA2_28Q,64751
|
|
13
|
-
mypy_boto3_eks/version.py,sha256=tg6kh-Y3aRVHn3DBhkwYhwVQ-rBrKItN5o2nFw-nXck,63
|
|
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.118.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_eks-1.34.118.dist-info/METADATA,sha256=LkxcXiUm-O4BS_KF7ujHBvgm5jRgOrilkAvZuQdtZSQ,15627
|
|
18
|
-
mypy_boto3_eks-1.34.118.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
19
|
-
mypy_boto3_eks-1.34.118.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
-
mypy_boto3_eks-1.34.118.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|