mypy-boto3-eks 1.35.86__py3-none-any.whl → 1.35.93__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 +5 -1
- mypy_boto3_eks/__init__.pyi +5 -1
- mypy_boto3_eks/__main__.py +5 -5
- mypy_boto3_eks/client.py +50 -20
- mypy_boto3_eks/client.pyi +50 -20
- mypy_boto3_eks/literals.py +6 -1
- mypy_boto3_eks/literals.pyi +6 -1
- mypy_boto3_eks/paginator.py +27 -1
- mypy_boto3_eks/paginator.pyi +24 -1
- mypy_boto3_eks/type_defs.py +125 -77
- mypy_boto3_eks/type_defs.pyi +121 -77
- mypy_boto3_eks/version.py +2 -2
- mypy_boto3_eks/waiter.py +1 -1
- mypy_boto3_eks/waiter.pyi +1 -1
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.35.93.dist-info}/LICENSE +1 -1
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.35.93.dist-info}/METADATA +10 -6
- mypy_boto3_eks-1.35.93.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.35.93.dist-info}/WHEEL +1 -1
- mypy_boto3_eks-1.35.86.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.35.86.dist-info → mypy_boto3_eks-1.35.93.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-eks
|
|
3
|
-
Version: 1.35.
|
|
4
|
-
Summary: Type annotations for boto3 EKS 1.35.
|
|
3
|
+
Version: 1.35.93
|
|
4
|
+
Summary: Type annotations for boto3 EKS 1.35.93 service generated with mypy-boto3-builder 8.8.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
|
|
@@ -30,7 +30,7 @@ Classifier: Typing :: Stubs Only
|
|
|
30
30
|
Requires-Python: >=3.8
|
|
31
31
|
Description-Content-Type: text/markdown
|
|
32
32
|
License-File: LICENSE
|
|
33
|
-
Requires-Dist: typing-extensions
|
|
33
|
+
Requires-Dist: typing-extensions; python_version < "3.12"
|
|
34
34
|
|
|
35
35
|
<a id="mypy-boto3-eks"></a>
|
|
36
36
|
|
|
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
|
|
|
43
43
|
|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
Type annotations for [boto3 EKS 1.35.
|
|
46
|
+
Type annotations for [boto3 EKS 1.35.93](https://pypi.org/project/boto3/)
|
|
47
47
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
48
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
49
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -52,7 +52,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated with
|
|
55
|
-
[mypy-boto3-builder 8.
|
|
55
|
+
[mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
|
|
56
56
|
|
|
57
57
|
More information can be found on
|
|
58
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -106,7 +106,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
106
106
|
isolation.
|
|
107
107
|
|
|
108
108
|
1. Run mypy-boto3-builder in your package root directory:
|
|
109
|
-
`uvx --with 'boto3==1.35.
|
|
109
|
+
`uvx --with 'boto3==1.35.93' mypy_boto3_builder`
|
|
110
110
|
2. Select `boto3-stubs` AWS SDK.
|
|
111
111
|
3. Add `EKS` service.
|
|
112
112
|
4. Use provided commands to install generated packages.
|
|
@@ -340,6 +340,7 @@ from boto3.session import Session
|
|
|
340
340
|
from mypy_boto3_eks import EKSClient
|
|
341
341
|
from mypy_boto3_eks.paginator import (
|
|
342
342
|
DescribeAddonVersionsPaginator,
|
|
343
|
+
DescribeClusterVersionsPaginator,
|
|
343
344
|
ListAccessEntriesPaginator,
|
|
344
345
|
ListAccessPoliciesPaginator,
|
|
345
346
|
ListAddonsPaginator,
|
|
@@ -361,6 +362,9 @@ client: EKSClient = Session().client("eks")
|
|
|
361
362
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator(
|
|
362
363
|
"describe_addon_versions"
|
|
363
364
|
)
|
|
365
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator(
|
|
366
|
+
"describe_cluster_versions"
|
|
367
|
+
)
|
|
364
368
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator(
|
|
365
369
|
"list_access_entries"
|
|
366
370
|
)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_eks/__init__.py,sha256=k7jkN0D8tXCu1bvv62OSH4NhHwI3RDgwBlaspPCYcME,4989
|
|
2
|
+
mypy_boto3_eks/__init__.pyi,sha256=JfGYjQk-PMQEDF3MivQZnkaUjb8bGz0WTnRmxJ16FO0,4988
|
|
3
|
+
mypy_boto3_eks/__main__.py,sha256=0kkUGcXta7cAsaI-uscvizbSTJwTZJZ15bxqjXT9IA4,967
|
|
4
|
+
mypy_boto3_eks/client.py,sha256=_jLpGc6bfoKHJkHb_Q_rrL7yRTJASw9TJOfSBMOrV-8,50148
|
|
5
|
+
mypy_boto3_eks/client.pyi,sha256=YwWm0ssmLaMN87P7hRaLRFtA1gphtKA5cchkaUWTHbw,50145
|
|
6
|
+
mypy_boto3_eks/literals.py,sha256=y_4AULQajBbnYtJXaJJLjuVPDO_MsDWsxYQX3UsdBjI,19158
|
|
7
|
+
mypy_boto3_eks/literals.pyi,sha256=3vLzw3Jqyw2KuYdqHdRAvwEACbuZcB4ptswaIDfoiEY,19156
|
|
8
|
+
mypy_boto3_eks/paginator.py,sha256=sqrVkVSPAy6pg7pXzN7d1ZwG-525xvX7NdefCnt2wYo,20481
|
|
9
|
+
mypy_boto3_eks/paginator.pyi,sha256=qDVRb1dRlk76424SW8DJwo1ofS3ZGKpCgbvBLVgOzgc,20438
|
|
10
|
+
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_eks/type_defs.py,sha256=uMAL98f_oV00RfsB9RwLArlMKtXH5eW3JEnxtGhJ6qI,55801
|
|
12
|
+
mypy_boto3_eks/type_defs.pyi,sha256=9LmXuHzkJ--v7_fm8gbf8LmUDftpJRKPKENFJEphpHk,55575
|
|
13
|
+
mypy_boto3_eks/version.py,sha256=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,93
|
|
14
|
+
mypy_boto3_eks/waiter.py,sha256=BwunFxeaJV0nUTRMxDOuwfhDZ3A3X4Lap65Ia9CpH3U,8461
|
|
15
|
+
mypy_boto3_eks/waiter.pyi,sha256=6N164eEvaEs9QZQLAq2X740Xo0lp2zdkuEqlawaww4M,8444
|
|
16
|
+
mypy_boto3_eks-1.35.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_eks-1.35.93.dist-info/METADATA,sha256=ICGs_IdO-V1kipDy-9yDKKCHExk54gLZ0uIWx9VLxDc,17624
|
|
18
|
+
mypy_boto3_eks-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
19
|
+
mypy_boto3_eks-1.35.93.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
+
mypy_boto3_eks-1.35.93.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_eks/__init__.py,sha256=jFVUXeLoad7MEcujD_IzbWsthXmaDeDIHTMXeiBEnus,4743
|
|
2
|
-
mypy_boto3_eks/__init__.pyi,sha256=FZEpmKxAATrcpUAICEJ3rOJMJADPR7MZWMgXZ2Fnk_g,4742
|
|
3
|
-
mypy_boto3_eks/__main__.py,sha256=dnbOCDFWY-VdIlShDLGw12bazazclgFUNvAO7db_ltI,967
|
|
4
|
-
mypy_boto3_eks/client.py,sha256=sjrGK-eUdGOxFQXQLP4KdaepUuG-nBq2h9GMf-uO0Ag,48753
|
|
5
|
-
mypy_boto3_eks/client.pyi,sha256=ejQE_kbDxQUAUuLXbcgTLhakWO0-rYwhlJGP-pfUgoI,48750
|
|
6
|
-
mypy_boto3_eks/literals.py,sha256=hQ_OHXR1GBzSDNTTPXQyfgik35emgoTKVNh9Gi0ZSPc,18883
|
|
7
|
-
mypy_boto3_eks/literals.pyi,sha256=NO3FczjuJbTT0uFmSc5lADevKpsoAFWDif5daHJtPFk,18881
|
|
8
|
-
mypy_boto3_eks/paginator.py,sha256=czW6iVnPyp1gDzICwGUzCWVprYnAgevn54UIWaZUdNU,18994
|
|
9
|
-
mypy_boto3_eks/paginator.pyi,sha256=WIGPNDTQvmr6tbMjooznD239-6_aOp073uwSHpNMxb4,18954
|
|
10
|
-
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_eks/type_defs.py,sha256=-2ejQY47jXlNE2UQem6vcM9i80Im3G22A_D0O323ubA,54085
|
|
12
|
-
mypy_boto3_eks/type_defs.pyi,sha256=nEB3BVXNRYE75yLe4Vf6ciO-kJVEnJHnlNnfmhfGyY8,53863
|
|
13
|
-
mypy_boto3_eks/version.py,sha256=R7ca4mwTpgac6S4rPbB0dyM2ChqlwVrwpVhiVVMCC_k,93
|
|
14
|
-
mypy_boto3_eks/waiter.py,sha256=b2JbfeXUPoIMzoIrQddfoXz5E_1_koI6cAKqs8PK6Do,8461
|
|
15
|
-
mypy_boto3_eks/waiter.pyi,sha256=KmQ0V-iy-S1kj_l_SX5daw-KyIkqALGZQMzMYavWTC4,8444
|
|
16
|
-
mypy_boto3_eks-1.35.86.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_eks-1.35.86.dist-info/METADATA,sha256=uB-ZjQyzcKNjWbsCI9gqvSM10x4C-JwgQgGTSlIvvgA,17465
|
|
18
|
-
mypy_boto3_eks-1.35.86.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
19
|
-
mypy_boto3_eks-1.35.86.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
-
mypy_boto3_eks-1.35.86.dist-info/RECORD,,
|
|
File without changes
|