mypy-boto3-eks 1.40.3__py3-none-any.whl → 1.40.14__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/literals.py +2 -0
- mypy_boto3_eks/literals.pyi +2 -0
- mypy_boto3_eks/type_defs.py +13 -0
- mypy_boto3_eks/type_defs.pyi +11 -0
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.40.3.dist-info → mypy_boto3_eks-1.40.14.dist-info}/METADATA +4 -4
- mypy_boto3_eks-1.40.14.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.40.3.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.40.3.dist-info → mypy_boto3_eks-1.40.14.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.40.3.dist-info → mypy_boto3_eks-1.40.14.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_eks-1.40.3.dist-info → mypy_boto3_eks-1.40.14.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.14\n"
|
|
16
|
+
"Version: 1.40.14\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.14\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_eks/literals.py
CHANGED
|
@@ -357,8 +357,10 @@ ServiceName = Literal[
|
|
|
357
357
|
"backup-gateway",
|
|
358
358
|
"backupsearch",
|
|
359
359
|
"batch",
|
|
360
|
+
"bcm-dashboards",
|
|
360
361
|
"bcm-data-exports",
|
|
361
362
|
"bcm-pricing-calculator",
|
|
363
|
+
"bcm-recommended-actions",
|
|
362
364
|
"bedrock",
|
|
363
365
|
"bedrock-agent",
|
|
364
366
|
"bedrock-agent-runtime",
|
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -355,8 +355,10 @@ ServiceName = Literal[
|
|
|
355
355
|
"backup-gateway",
|
|
356
356
|
"backupsearch",
|
|
357
357
|
"batch",
|
|
358
|
+
"bcm-dashboards",
|
|
358
359
|
"bcm-data-exports",
|
|
359
360
|
"bcm-pricing-calculator",
|
|
361
|
+
"bcm-recommended-actions",
|
|
360
362
|
"bedrock",
|
|
361
363
|
"bedrock-agent",
|
|
362
364
|
"bedrock-agent-runtime",
|
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -75,6 +75,8 @@ __all__ = (
|
|
|
75
75
|
"AddonHealthTypeDef",
|
|
76
76
|
"AddonInfoTypeDef",
|
|
77
77
|
"AddonIssueTypeDef",
|
|
78
|
+
"AddonNamespaceConfigRequestTypeDef",
|
|
79
|
+
"AddonNamespaceConfigResponseTypeDef",
|
|
78
80
|
"AddonPodIdentityAssociationsTypeDef",
|
|
79
81
|
"AddonPodIdentityConfigurationTypeDef",
|
|
80
82
|
"AddonTypeDef",
|
|
@@ -365,6 +367,14 @@ class MarketplaceInformationTypeDef(TypedDict):
|
|
|
365
367
|
productUrl: NotRequired[str]
|
|
366
368
|
|
|
367
369
|
|
|
370
|
+
class AddonNamespaceConfigRequestTypeDef(TypedDict):
|
|
371
|
+
namespace: NotRequired[str]
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
class AddonNamespaceConfigResponseTypeDef(TypedDict):
|
|
375
|
+
namespace: NotRequired[str]
|
|
376
|
+
|
|
377
|
+
|
|
368
378
|
class AddonPodIdentityAssociationsTypeDef(TypedDict):
|
|
369
379
|
serviceAccount: str
|
|
370
380
|
roleArn: str
|
|
@@ -1023,6 +1033,7 @@ class CreateAddonRequestTypeDef(TypedDict):
|
|
|
1023
1033
|
tags: NotRequired[Mapping[str, str]]
|
|
1024
1034
|
configurationValues: NotRequired[str]
|
|
1025
1035
|
podIdentityAssociations: NotRequired[Sequence[AddonPodIdentityAssociationsTypeDef]]
|
|
1036
|
+
namespaceConfig: NotRequired[AddonNamespaceConfigRequestTypeDef]
|
|
1026
1037
|
|
|
1027
1038
|
|
|
1028
1039
|
class UpdateAddonRequestTypeDef(TypedDict):
|
|
@@ -1540,6 +1551,7 @@ class AddonTypeDef(TypedDict):
|
|
|
1540
1551
|
marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
|
|
1541
1552
|
configurationValues: NotRequired[str]
|
|
1542
1553
|
podIdentityAssociations: NotRequired[List[str]]
|
|
1554
|
+
namespaceConfig: NotRequired[AddonNamespaceConfigResponseTypeDef]
|
|
1543
1555
|
|
|
1544
1556
|
|
|
1545
1557
|
AddonInfoTypeDef = TypedDict(
|
|
@@ -1551,6 +1563,7 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1551
1563
|
"publisher": NotRequired[str],
|
|
1552
1564
|
"owner": NotRequired[str],
|
|
1553
1565
|
"marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
|
|
1566
|
+
"defaultNamespace": NotRequired[str],
|
|
1554
1567
|
},
|
|
1555
1568
|
)
|
|
1556
1569
|
|
mypy_boto3_eks/type_defs.pyi
CHANGED
|
@@ -74,6 +74,8 @@ __all__ = (
|
|
|
74
74
|
"AddonHealthTypeDef",
|
|
75
75
|
"AddonInfoTypeDef",
|
|
76
76
|
"AddonIssueTypeDef",
|
|
77
|
+
"AddonNamespaceConfigRequestTypeDef",
|
|
78
|
+
"AddonNamespaceConfigResponseTypeDef",
|
|
77
79
|
"AddonPodIdentityAssociationsTypeDef",
|
|
78
80
|
"AddonPodIdentityConfigurationTypeDef",
|
|
79
81
|
"AddonTypeDef",
|
|
@@ -356,6 +358,12 @@ class MarketplaceInformationTypeDef(TypedDict):
|
|
|
356
358
|
productId: NotRequired[str]
|
|
357
359
|
productUrl: NotRequired[str]
|
|
358
360
|
|
|
361
|
+
class AddonNamespaceConfigRequestTypeDef(TypedDict):
|
|
362
|
+
namespace: NotRequired[str]
|
|
363
|
+
|
|
364
|
+
class AddonNamespaceConfigResponseTypeDef(TypedDict):
|
|
365
|
+
namespace: NotRequired[str]
|
|
366
|
+
|
|
359
367
|
class AddonPodIdentityAssociationsTypeDef(TypedDict):
|
|
360
368
|
serviceAccount: str
|
|
361
369
|
roleArn: str
|
|
@@ -914,6 +922,7 @@ class CreateAddonRequestTypeDef(TypedDict):
|
|
|
914
922
|
tags: NotRequired[Mapping[str, str]]
|
|
915
923
|
configurationValues: NotRequired[str]
|
|
916
924
|
podIdentityAssociations: NotRequired[Sequence[AddonPodIdentityAssociationsTypeDef]]
|
|
925
|
+
namespaceConfig: NotRequired[AddonNamespaceConfigRequestTypeDef]
|
|
917
926
|
|
|
918
927
|
class UpdateAddonRequestTypeDef(TypedDict):
|
|
919
928
|
clusterName: str
|
|
@@ -1354,6 +1363,7 @@ class AddonTypeDef(TypedDict):
|
|
|
1354
1363
|
marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
|
|
1355
1364
|
configurationValues: NotRequired[str]
|
|
1356
1365
|
podIdentityAssociations: NotRequired[List[str]]
|
|
1366
|
+
namespaceConfig: NotRequired[AddonNamespaceConfigResponseTypeDef]
|
|
1357
1367
|
|
|
1358
1368
|
AddonInfoTypeDef = TypedDict(
|
|
1359
1369
|
"AddonInfoTypeDef",
|
|
@@ -1364,6 +1374,7 @@ AddonInfoTypeDef = TypedDict(
|
|
|
1364
1374
|
"publisher": NotRequired[str],
|
|
1365
1375
|
"owner": NotRequired[str],
|
|
1366
1376
|
"marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
|
|
1377
|
+
"defaultNamespace": NotRequired[str],
|
|
1367
1378
|
},
|
|
1368
1379
|
)
|
|
1369
1380
|
|
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.14
|
|
4
|
+
Summary: Type annotations for boto3 EKS 1.40.14 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.14](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.14' 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=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,,
|
|
@@ -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=gzUwDbjvziMQjp0W11qxhJrqJ-rmbVJbSLwu5cvHGdk,965
|
|
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=3MHDV-By_elF3Y8VcAXZulRNEyLLaMhm6o86lucBxlI,19833
|
|
7
|
-
mypy_boto3_eks/literals.pyi,sha256=kcnqqxQiBO6Q6bXPAkburTfInvGnxdMaYK18UUaLyyg,19831
|
|
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=uflx_ia-Uw_xv6sbxyAe7Bp363NCxkH4MaMq-DQuFVY,56958
|
|
12
|
-
mypy_boto3_eks/type_defs.pyi,sha256=LsR7HOn1iW8FUiGxWvFGpNj8UZdAugPJB9Aef21Yx_Q,56725
|
|
13
|
-
mypy_boto3_eks/version.py,sha256=ZaA0naREa9WFnH-K5V-P-k3aAPEqNIuS6J9mLa1hDFk,92
|
|
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.3.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_eks-1.40.3.dist-info/METADATA,sha256=3QaWVav5XSSdaUoLVuFSV7Pf1kVk815HNcnkjsUyocU,18034
|
|
18
|
-
mypy_boto3_eks-1.40.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
mypy_boto3_eks-1.40.3.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
-
mypy_boto3_eks-1.40.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|