types-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.
- types_boto3_eks/__init__.py +5 -1
- types_boto3_eks/__init__.pyi +5 -1
- types_boto3_eks/__main__.py +5 -5
- types_boto3_eks/client.py +50 -20
- types_boto3_eks/client.pyi +50 -20
- types_boto3_eks/literals.py +6 -1
- types_boto3_eks/literals.pyi +6 -1
- types_boto3_eks/paginator.py +27 -1
- types_boto3_eks/paginator.pyi +24 -1
- types_boto3_eks/type_defs.py +125 -77
- types_boto3_eks/type_defs.pyi +121 -77
- types_boto3_eks/version.py +2 -2
- types_boto3_eks/waiter.py +1 -1
- types_boto3_eks/waiter.pyi +1 -1
- {types_boto3_eks-1.35.86.dist-info → types_boto3_eks-1.35.93.dist-info}/LICENSE +1 -1
- {types_boto3_eks-1.35.86.dist-info → types_boto3_eks-1.35.93.dist-info}/METADATA +10 -6
- types_boto3_eks-1.35.93.dist-info/RECORD +20 -0
- {types_boto3_eks-1.35.86.dist-info → types_boto3_eks-1.35.93.dist-info}/WHEEL +1 -1
- types_boto3_eks-1.35.86.dist-info/RECORD +0 -20
- {types_boto3_eks-1.35.86.dist-info → types_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: types-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="types-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
|
[types-boto3](https://pypi.org/project/types-boto3/) 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` AWS SDK.
|
|
111
111
|
3. Add `EKS` service.
|
|
112
112
|
4. Use provided commands to install generated packages.
|
|
@@ -341,6 +341,7 @@ from boto3.session import Session
|
|
|
341
341
|
from types_boto3_eks import EKSClient
|
|
342
342
|
from types_boto3_eks.paginator import (
|
|
343
343
|
DescribeAddonVersionsPaginator,
|
|
344
|
+
DescribeClusterVersionsPaginator,
|
|
344
345
|
ListAccessEntriesPaginator,
|
|
345
346
|
ListAccessPoliciesPaginator,
|
|
346
347
|
ListAddonsPaginator,
|
|
@@ -362,6 +363,9 @@ client: EKSClient = Session().client("eks")
|
|
|
362
363
|
describe_addon_versions_paginator: DescribeAddonVersionsPaginator = client.get_paginator(
|
|
363
364
|
"describe_addon_versions"
|
|
364
365
|
)
|
|
366
|
+
describe_cluster_versions_paginator: DescribeClusterVersionsPaginator = client.get_paginator(
|
|
367
|
+
"describe_cluster_versions"
|
|
368
|
+
)
|
|
365
369
|
list_access_entries_paginator: ListAccessEntriesPaginator = client.get_paginator(
|
|
366
370
|
"list_access_entries"
|
|
367
371
|
)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
types_boto3_eks/__init__.py,sha256=RLafSpnBQiUXJmUQF9rSOQw51GcMCU46GgK28Ncjw9g,4990
|
|
2
|
+
types_boto3_eks/__init__.pyi,sha256=dPrZg83yRE3H0SORPj418cNy0qff_KxR0l8sk6nn8I8,4989
|
|
3
|
+
types_boto3_eks/__main__.py,sha256=V1heeGIdEF4kigtSMoskba3Zko2j8NNsPr7aCtrOoMQ,968
|
|
4
|
+
types_boto3_eks/client.py,sha256=YPAGPwYWj9W-B3Th6SPMfIlu7eYWbOoLe9RZQZSPnis,50233
|
|
5
|
+
types_boto3_eks/client.pyi,sha256=g5_IHW-8PPxEWVWclgeGIMjJd4NoDTNFWVJckMhUzjo,50230
|
|
6
|
+
types_boto3_eks/literals.py,sha256=bgWeZzmZUjW6shwq2SZzVxKc0pCfAzIDAMin9K6k_c4,19160
|
|
7
|
+
types_boto3_eks/literals.pyi,sha256=L9C_-RZJYehSxjHCt0QwZ0O0sYjCpmYTwVGwykBKrrg,19158
|
|
8
|
+
types_boto3_eks/paginator.py,sha256=EvGghCRKBR_dsHFRedrbnal1R-XOk3iwFSddWHPayPc,20512
|
|
9
|
+
types_boto3_eks/paginator.pyi,sha256=ZifN6He7887-eL3AFH8GXc13B8stFRtLpV5Tfo9Ipho,20469
|
|
10
|
+
types_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_eks/type_defs.py,sha256=4mhgXpX3WMKP1aAC1rChEAJBZaOotoUQu6jipA32PBA,55803
|
|
12
|
+
types_boto3_eks/type_defs.pyi,sha256=cOEy_PmhcMEmuJ9SwiJmkZ1vkZKcZIsbWlfwB53z--8,55577
|
|
13
|
+
types_boto3_eks/version.py,sha256=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,93
|
|
14
|
+
types_boto3_eks/waiter.py,sha256=CT1ywKpsBSX3Vo8u-cM43H14ZGrQ1XU220jHsCTegbQ,8480
|
|
15
|
+
types_boto3_eks/waiter.pyi,sha256=yeU81noOFsQvNsjhBLVET5qGlnEJh-Y6VAd01BSTscc,8463
|
|
16
|
+
types_boto3_eks-1.35.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
types_boto3_eks-1.35.93.dist-info/METADATA,sha256=HiTgwiO3flw0SyNQRmRdEZhypbVw5y4bOu-WgoGHc04,17654
|
|
18
|
+
types_boto3_eks-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
|
|
19
|
+
types_boto3_eks-1.35.93.dist-info/top_level.txt,sha256=ZLKgic1D7dd5TUGtlRhAq-FEsE6DYeQws3VEG7aRhp4,16
|
|
20
|
+
types_boto3_eks-1.35.93.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
types_boto3_eks/__init__.py,sha256=SmC93edEdUadznWdF8mLCazlD24F2BV1hRVSplPto0A,4744
|
|
2
|
-
types_boto3_eks/__init__.pyi,sha256=Pjk7LgEl2-h-GrRHSIs7LtLb-2QAe4TYfU4TRbAxFYA,4743
|
|
3
|
-
types_boto3_eks/__main__.py,sha256=avxMBUMo0mk1fBnOn8BSKa5VeLXnnuVSwASmiH0YHxo,968
|
|
4
|
-
types_boto3_eks/client.py,sha256=2MEjYNBQXD7W01kM_6_oJSfIK3kP2MGsldkjOWn2QiM,48836
|
|
5
|
-
types_boto3_eks/client.pyi,sha256=zBBvXmhgSzP9V9jGbOW4wLCnkdOho8SEyQRe9Y4aG7w,48833
|
|
6
|
-
types_boto3_eks/literals.py,sha256=TN5aDXn2Dp2NnVPkPZwRoqkBlnx6gShkFjdSYIUZJfo,18885
|
|
7
|
-
types_boto3_eks/literals.pyi,sha256=p_2esFslNckRksgtwBJtoTRmL5OmWzGhQ2q40QLpwg4,18883
|
|
8
|
-
types_boto3_eks/paginator.py,sha256=YPryo-86UGN9aXwMNwulR5BQ1yJn7PRLMxCPjzTrfVc,19023
|
|
9
|
-
types_boto3_eks/paginator.pyi,sha256=OXEGq_q9OpG3ffmFeEydxy3TQWVZ3gGQv78okxb0_gI,18983
|
|
10
|
-
types_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
types_boto3_eks/type_defs.py,sha256=tGiRDs_fGBWYEwlK5a0r2feB1qIXuvqz2vy7eShUEi8,54087
|
|
12
|
-
types_boto3_eks/type_defs.pyi,sha256=QG2KXdlDBlWXWBJ-nT1nfCcX8_hT4gjamdKyEiyTCQo,53865
|
|
13
|
-
types_boto3_eks/version.py,sha256=R7ca4mwTpgac6S4rPbB0dyM2ChqlwVrwpVhiVVMCC_k,93
|
|
14
|
-
types_boto3_eks/waiter.py,sha256=erpkLRTNWP-4lKabqHbPX4QeudOdXd1IAcn-mHG88a4,8480
|
|
15
|
-
types_boto3_eks/waiter.pyi,sha256=timHXPuRYObG5yPUmvuGuy4xNYRBLt2XqXHK7AWJSxE,8463
|
|
16
|
-
types_boto3_eks-1.35.86.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
types_boto3_eks-1.35.86.dist-info/METADATA,sha256=Jc7mPKgyeueuKtNQVtfwgGQMC_KGK8ZpU6GQS9S-bOw,17495
|
|
18
|
-
types_boto3_eks-1.35.86.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
19
|
-
types_boto3_eks-1.35.86.dist-info/top_level.txt,sha256=ZLKgic1D7dd5TUGtlRhAq-FEsE6DYeQws3VEG7aRhp4,16
|
|
20
|
-
types_boto3_eks-1.35.86.dist-info/RECORD,,
|
|
File without changes
|