mypy-boto3-eks 1.37.22__py3-none-any.whl → 1.37.24__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 +14 -13
- mypy_boto3_eks/type_defs.pyi +13 -12
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.37.22.dist-info → mypy_boto3_eks-1.37.24.dist-info}/METADATA +4 -4
- {mypy_boto3_eks-1.37.22.dist-info → mypy_boto3_eks-1.37.24.dist-info}/RECORD +11 -11
- {mypy_boto3_eks-1.37.22.dist-info → mypy_boto3_eks-1.37.24.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.37.22.dist-info → mypy_boto3_eks-1.37.24.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_eks-1.37.22.dist-info → mypy_boto3_eks-1.37.24.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.37.
|
|
16
|
-
"Version: 1.37.
|
|
15
|
+
"Type annotations for boto3 EKS 1.37.24\n"
|
|
16
|
+
"Version: 1.37.24\n"
|
|
17
17
|
"Builder version: 8.10.1\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.37.
|
|
29
|
+
sys.stdout.write("1.37.24\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_eks/literals.py
CHANGED
|
@@ -283,6 +283,7 @@ UpdateParamTypeType = Literal[
|
|
|
283
283
|
"PodIdentityAssociations",
|
|
284
284
|
"PublicAccessCidrs",
|
|
285
285
|
"ReleaseVersion",
|
|
286
|
+
"RemoteNetworkConfig",
|
|
286
287
|
"ResolveConflicts",
|
|
287
288
|
"SecurityGroups",
|
|
288
289
|
"ServiceAccountRoleArn",
|
|
@@ -306,6 +307,7 @@ UpdateTypeType = Literal[
|
|
|
306
307
|
"DisassociateIdentityProviderConfig",
|
|
307
308
|
"EndpointAccessUpdate",
|
|
308
309
|
"LoggingUpdate",
|
|
310
|
+
"RemoteNetworkConfigUpdate",
|
|
309
311
|
"UpgradePolicyUpdate",
|
|
310
312
|
"VersionUpdate",
|
|
311
313
|
"VpcConfigUpdate",
|
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -281,6 +281,7 @@ UpdateParamTypeType = Literal[
|
|
|
281
281
|
"PodIdentityAssociations",
|
|
282
282
|
"PublicAccessCidrs",
|
|
283
283
|
"ReleaseVersion",
|
|
284
|
+
"RemoteNetworkConfig",
|
|
284
285
|
"ResolveConflicts",
|
|
285
286
|
"SecurityGroups",
|
|
286
287
|
"ServiceAccountRoleArn",
|
|
@@ -304,6 +305,7 @@ UpdateTypeType = Literal[
|
|
|
304
305
|
"DisassociateIdentityProviderConfig",
|
|
305
306
|
"EndpointAccessUpdate",
|
|
306
307
|
"LoggingUpdate",
|
|
308
|
+
"RemoteNetworkConfigUpdate",
|
|
307
309
|
"UpgradePolicyUpdate",
|
|
308
310
|
"VersionUpdate",
|
|
309
311
|
"VpcConfigUpdate",
|
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -1838,19 +1838,6 @@ class DescribeNodegroupResponseTypeDef(TypedDict):
|
|
|
1838
1838
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1839
1839
|
|
|
1840
1840
|
|
|
1841
|
-
class UpdateClusterConfigRequestTypeDef(TypedDict):
|
|
1842
|
-
name: str
|
|
1843
|
-
resourcesVpcConfig: NotRequired[VpcConfigRequestTypeDef]
|
|
1844
|
-
logging: NotRequired[LoggingUnionTypeDef]
|
|
1845
|
-
clientRequestToken: NotRequired[str]
|
|
1846
|
-
accessConfig: NotRequired[UpdateAccessConfigRequestTypeDef]
|
|
1847
|
-
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1848
|
-
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1849
|
-
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1850
|
-
kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
|
|
1851
|
-
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
1841
|
class CreateClusterResponseTypeDef(TypedDict):
|
|
1855
1842
|
cluster: ClusterTypeDef
|
|
1856
1843
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1896,6 +1883,20 @@ class CreateClusterRequestTypeDef(TypedDict):
|
|
|
1896
1883
|
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1897
1884
|
|
|
1898
1885
|
|
|
1886
|
+
class UpdateClusterConfigRequestTypeDef(TypedDict):
|
|
1887
|
+
name: str
|
|
1888
|
+
resourcesVpcConfig: NotRequired[VpcConfigRequestTypeDef]
|
|
1889
|
+
logging: NotRequired[LoggingUnionTypeDef]
|
|
1890
|
+
clientRequestToken: NotRequired[str]
|
|
1891
|
+
accessConfig: NotRequired[UpdateAccessConfigRequestTypeDef]
|
|
1892
|
+
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1893
|
+
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1894
|
+
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1895
|
+
kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
|
|
1896
|
+
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1897
|
+
remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
|
|
1898
|
+
|
|
1899
|
+
|
|
1899
1900
|
class DescribeInsightResponseTypeDef(TypedDict):
|
|
1900
1901
|
insight: InsightTypeDef
|
|
1901
1902
|
ResponseMetadata: ResponseMetadataTypeDef
|
mypy_boto3_eks/type_defs.pyi
CHANGED
|
@@ -1612,18 +1612,6 @@ class DescribeNodegroupResponseTypeDef(TypedDict):
|
|
|
1612
1612
|
nodegroup: NodegroupTypeDef
|
|
1613
1613
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1614
1614
|
|
|
1615
|
-
class UpdateClusterConfigRequestTypeDef(TypedDict):
|
|
1616
|
-
name: str
|
|
1617
|
-
resourcesVpcConfig: NotRequired[VpcConfigRequestTypeDef]
|
|
1618
|
-
logging: NotRequired[LoggingUnionTypeDef]
|
|
1619
|
-
clientRequestToken: NotRequired[str]
|
|
1620
|
-
accessConfig: NotRequired[UpdateAccessConfigRequestTypeDef]
|
|
1621
|
-
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1622
|
-
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1623
|
-
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1624
|
-
kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
|
|
1625
|
-
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1626
|
-
|
|
1627
1615
|
class CreateClusterResponseTypeDef(TypedDict):
|
|
1628
1616
|
cluster: ClusterTypeDef
|
|
1629
1617
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
@@ -1663,6 +1651,19 @@ class CreateClusterRequestTypeDef(TypedDict):
|
|
|
1663
1651
|
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1664
1652
|
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1665
1653
|
|
|
1654
|
+
class UpdateClusterConfigRequestTypeDef(TypedDict):
|
|
1655
|
+
name: str
|
|
1656
|
+
resourcesVpcConfig: NotRequired[VpcConfigRequestTypeDef]
|
|
1657
|
+
logging: NotRequired[LoggingUnionTypeDef]
|
|
1658
|
+
clientRequestToken: NotRequired[str]
|
|
1659
|
+
accessConfig: NotRequired[UpdateAccessConfigRequestTypeDef]
|
|
1660
|
+
upgradePolicy: NotRequired[UpgradePolicyRequestTypeDef]
|
|
1661
|
+
zonalShiftConfig: NotRequired[ZonalShiftConfigRequestTypeDef]
|
|
1662
|
+
computeConfig: NotRequired[ComputeConfigRequestTypeDef]
|
|
1663
|
+
kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
|
|
1664
|
+
storageConfig: NotRequired[StorageConfigRequestTypeDef]
|
|
1665
|
+
remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
|
|
1666
|
+
|
|
1666
1667
|
class DescribeInsightResponseTypeDef(TypedDict):
|
|
1667
1668
|
insight: InsightTypeDef
|
|
1668
1669
|
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.37.
|
|
4
|
-
Summary: Type annotations for boto3 EKS 1.37.
|
|
3
|
+
Version: 1.37.24
|
|
4
|
+
Summary: Type annotations for boto3 EKS 1.37.24 service generated with mypy-boto3-builder 8.10.1
|
|
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.37.
|
|
59
|
+
Type annotations for [boto3 EKS 1.37.24](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.37.
|
|
122
|
+
`uvx --with 'boto3==1.37.24' 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.
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
mypy_boto3_eks/__init__.py,sha256=2ny7DX2h2EqSXWmXoLROuwapCrk5WWG82Cytg9gBFoA,5066
|
|
2
2
|
mypy_boto3_eks/__init__.pyi,sha256=Vn_LcRXy2FU1PJjnQvnE8BMRwPFC8_X1P1UnZbFY2Zs,5065
|
|
3
|
-
mypy_boto3_eks/__main__.py,sha256=
|
|
3
|
+
mypy_boto3_eks/__main__.py,sha256=GL7abvyLgjoRBKOgZFc__513hTOVtDhqhDNWF5zS0FQ,968
|
|
4
4
|
mypy_boto3_eks/client.py,sha256=NqhtmiaelO6gPDGNJUkv8Ds8537TWfOPVk9nbImqpao,49426
|
|
5
5
|
mypy_boto3_eks/client.pyi,sha256=ycr-tlt3fZCCNh4th9TuOm7ZI2mYqaehpN7UaRl7_Qk,49423
|
|
6
|
-
mypy_boto3_eks/literals.py,sha256=
|
|
7
|
-
mypy_boto3_eks/literals.pyi,sha256=
|
|
6
|
+
mypy_boto3_eks/literals.py,sha256=vbS7Xc6K992K2w13IfdIzRYXv1xrut5eQ68oEynyyNc,19532
|
|
7
|
+
mypy_boto3_eks/literals.pyi,sha256=o4dvwrFPXWX5JfcPbl5aiBhT5ygMh4uAHw0ywfwcLok,19530
|
|
8
8
|
mypy_boto3_eks/paginator.py,sha256=3yFhQFg-bh-hJOlMggBZeCd-xonLBWmXnBG1HRNiDL4,20481
|
|
9
9
|
mypy_boto3_eks/paginator.pyi,sha256=cn674ie8pGurK1SRRoZERdTd56gF2t7NGEOYhzN8Vp4,20438
|
|
10
10
|
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_eks/type_defs.py,sha256=
|
|
12
|
-
mypy_boto3_eks/type_defs.pyi,sha256=
|
|
13
|
-
mypy_boto3_eks/version.py,sha256=
|
|
11
|
+
mypy_boto3_eks/type_defs.py,sha256=teuZ_EwYgTb3bWB_PYn0Ifg8EnoJkDFEeBwYSwVV0ik,56588
|
|
12
|
+
mypy_boto3_eks/type_defs.pyi,sha256=osb7YOf4H9h-EUZhJWLVRw9rVfRM-UtlmO0_IiMFvoY,56355
|
|
13
|
+
mypy_boto3_eks/version.py,sha256=r1UeUnTdeXkZoIoq1Vo1PHOJVohDxqd4shvM2Q0OrHI,93
|
|
14
14
|
mypy_boto3_eks/waiter.py,sha256=2vJjiTIw6nY3Kx4O2YIUk9MmTiHrf5ZZtPP8bOy_jd4,8664
|
|
15
15
|
mypy_boto3_eks/waiter.pyi,sha256=ZkIrAD-cdgf6kBhiCJShJLpjHyVyzZrxjBQ2yI3cVJ0,8647
|
|
16
|
-
mypy_boto3_eks-1.37.
|
|
17
|
-
mypy_boto3_eks-1.37.
|
|
18
|
-
mypy_boto3_eks-1.37.
|
|
19
|
-
mypy_boto3_eks-1.37.
|
|
20
|
-
mypy_boto3_eks-1.37.
|
|
16
|
+
mypy_boto3_eks-1.37.24.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_eks-1.37.24.dist-info/METADATA,sha256=8REEG-jS20E0qClyf62gCBecvbVUkDe0R61oNfhlhF0,18038
|
|
18
|
+
mypy_boto3_eks-1.37.24.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
19
|
+
mypy_boto3_eks-1.37.24.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
+
mypy_boto3_eks-1.37.24.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|