mypy-boto3-eks 1.34.5__py3-none-any.whl → 1.34.53__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 +8 -7
- mypy_boto3_eks/literals.py +7 -1
- mypy_boto3_eks/literals.pyi +7 -1
- mypy_boto3_eks/type_defs.py +1 -1
- mypy_boto3_eks/type_defs.pyi +1 -1
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.34.5.dist-info → mypy_boto3_eks-1.34.53.dist-info}/LICENSE +1 -1
- {mypy_boto3_eks-1.34.5.dist-info → mypy_boto3_eks-1.34.53.dist-info}/METADATA +4 -4
- mypy_boto3_eks-1.34.53.dist-info/RECORD +20 -0
- mypy_boto3_eks-1.34.5.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.34.5.dist-info → mypy_boto3_eks-1.34.53.dist-info}/WHEEL +0 -0
- {mypy_boto3_eks-1.34.5.dist-info → mypy_boto3_eks-1.34.53.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/__main__.py
CHANGED
|
@@ -10,12 +10,13 @@ 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
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
" https://
|
|
13
|
+
"Type annotations for boto3.EKS 1.34.53\n"
|
|
14
|
+
"Version: 1.34.53\n"
|
|
15
|
+
"Builder version: 7.23.2\n"
|
|
16
|
+
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks//\n"
|
|
17
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS\n"
|
|
18
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
19
20
|
)
|
|
20
21
|
|
|
21
22
|
|
|
@@ -23,7 +24,7 @@ def print_version() -> None:
|
|
|
23
24
|
"""
|
|
24
25
|
Print package version to stdout.
|
|
25
26
|
"""
|
|
26
|
-
print("1.34.
|
|
27
|
+
print("1.34.53")
|
|
27
28
|
|
|
28
29
|
|
|
29
30
|
def main() -> None:
|
mypy_boto3_eks/literals.py
CHANGED
|
@@ -8,7 +8,7 @@ Usage::
|
|
|
8
8
|
```python
|
|
9
9
|
from mypy_boto3_eks.literals import AMITypesType
|
|
10
10
|
|
|
11
|
-
data: AMITypesType = "
|
|
11
|
+
data: AMITypesType = "AL2023_ARM_64_STANDARD"
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
14
|
|
|
@@ -76,6 +76,8 @@ __all__ = (
|
|
|
76
76
|
)
|
|
77
77
|
|
|
78
78
|
AMITypesType = Literal[
|
|
79
|
+
"AL2023_ARM_64_STANDARD",
|
|
80
|
+
"AL2023_x86_64_STANDARD",
|
|
79
81
|
"AL2_ARM_64",
|
|
80
82
|
"AL2_x86_64",
|
|
81
83
|
"AL2_x86_64_GPU",
|
|
@@ -299,6 +301,7 @@ ServiceName = Literal[
|
|
|
299
301
|
"appstream",
|
|
300
302
|
"appsync",
|
|
301
303
|
"arc-zonal-shift",
|
|
304
|
+
"artifact",
|
|
302
305
|
"athena",
|
|
303
306
|
"auditmanager",
|
|
304
307
|
"autoscaling",
|
|
@@ -317,6 +320,7 @@ ServiceName = Literal[
|
|
|
317
320
|
"braket",
|
|
318
321
|
"budgets",
|
|
319
322
|
"ce",
|
|
323
|
+
"chatbot",
|
|
320
324
|
"chime",
|
|
321
325
|
"chime-sdk-identity",
|
|
322
326
|
"chime-sdk-media-pipelines",
|
|
@@ -524,6 +528,7 @@ ServiceName = Literal[
|
|
|
524
528
|
"neptunedata",
|
|
525
529
|
"network-firewall",
|
|
526
530
|
"networkmanager",
|
|
531
|
+
"networkmonitor",
|
|
527
532
|
"nimble",
|
|
528
533
|
"oam",
|
|
529
534
|
"omics",
|
|
@@ -621,6 +626,7 @@ ServiceName = Literal[
|
|
|
621
626
|
"stepfunctions",
|
|
622
627
|
"storagegateway",
|
|
623
628
|
"sts",
|
|
629
|
+
"supplychain",
|
|
624
630
|
"support",
|
|
625
631
|
"support-app",
|
|
626
632
|
"swf",
|
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -8,7 +8,7 @@ Usage::
|
|
|
8
8
|
```python
|
|
9
9
|
from mypy_boto3_eks.literals import AMITypesType
|
|
10
10
|
|
|
11
|
-
data: AMITypesType = "
|
|
11
|
+
data: AMITypesType = "AL2023_ARM_64_STANDARD"
|
|
12
12
|
```
|
|
13
13
|
"""
|
|
14
14
|
|
|
@@ -76,6 +76,8 @@ __all__ = (
|
|
|
76
76
|
)
|
|
77
77
|
|
|
78
78
|
AMITypesType = Literal[
|
|
79
|
+
"AL2023_ARM_64_STANDARD",
|
|
80
|
+
"AL2023_x86_64_STANDARD",
|
|
79
81
|
"AL2_ARM_64",
|
|
80
82
|
"AL2_x86_64",
|
|
81
83
|
"AL2_x86_64_GPU",
|
|
@@ -299,6 +301,7 @@ ServiceName = Literal[
|
|
|
299
301
|
"appstream",
|
|
300
302
|
"appsync",
|
|
301
303
|
"arc-zonal-shift",
|
|
304
|
+
"artifact",
|
|
302
305
|
"athena",
|
|
303
306
|
"auditmanager",
|
|
304
307
|
"autoscaling",
|
|
@@ -317,6 +320,7 @@ ServiceName = Literal[
|
|
|
317
320
|
"braket",
|
|
318
321
|
"budgets",
|
|
319
322
|
"ce",
|
|
323
|
+
"chatbot",
|
|
320
324
|
"chime",
|
|
321
325
|
"chime-sdk-identity",
|
|
322
326
|
"chime-sdk-media-pipelines",
|
|
@@ -524,6 +528,7 @@ ServiceName = Literal[
|
|
|
524
528
|
"neptunedata",
|
|
525
529
|
"network-firewall",
|
|
526
530
|
"networkmanager",
|
|
531
|
+
"networkmonitor",
|
|
527
532
|
"nimble",
|
|
528
533
|
"oam",
|
|
529
534
|
"omics",
|
|
@@ -621,6 +626,7 @@ ServiceName = Literal[
|
|
|
621
626
|
"stepfunctions",
|
|
622
627
|
"storagegateway",
|
|
623
628
|
"sts",
|
|
629
|
+
"supplychain",
|
|
624
630
|
"support",
|
|
625
631
|
"support-app",
|
|
626
632
|
"swf",
|
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -329,10 +329,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
329
329
|
"ResponseMetadataTypeDef",
|
|
330
330
|
{
|
|
331
331
|
"RequestId": str,
|
|
332
|
-
"HostId": str,
|
|
333
332
|
"HTTPStatusCode": int,
|
|
334
333
|
"HTTPHeaders": Dict[str, str],
|
|
335
334
|
"RetryAttempts": int,
|
|
335
|
+
"HostId": NotRequired[str],
|
|
336
336
|
},
|
|
337
337
|
)
|
|
338
338
|
OidcIdentityProviderConfigRequestTypeDef = TypedDict(
|
mypy_boto3_eks/type_defs.pyi
CHANGED
|
@@ -329,10 +329,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
329
329
|
"ResponseMetadataTypeDef",
|
|
330
330
|
{
|
|
331
331
|
"RequestId": str,
|
|
332
|
-
"HostId": str,
|
|
333
332
|
"HTTPStatusCode": int,
|
|
334
333
|
"HTTPHeaders": Dict[str, str],
|
|
335
334
|
"RetryAttempts": int,
|
|
335
|
+
"HostId": NotRequired[str],
|
|
336
336
|
},
|
|
337
337
|
)
|
|
338
338
|
OidcIdentityProviderConfigRequestTypeDef = 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.53
|
|
4
|
+
Summary: Type annotations for boto3.EKS 1.34.53 service generated with mypy-boto3-builder 7.23.2
|
|
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.53](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/),
|
|
@@ -52,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
52
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
53
53
|
|
|
54
54
|
Generated by
|
|
55
|
-
[mypy-boto3-builder 7.23.
|
|
55
|
+
[mypy-boto3-builder 7.23.2](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
|
|
@@ -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=QJc4ImywRfPr85rPCX3n_qOzEuIjGtTmkwLUVWsuR1A,903
|
|
4
|
+
mypy_boto3_eks/client.py,sha256=FMo1XNnE5_2M8Cydjl-SLeXPy7ukdZSkaKIC1Dnf4qE,49134
|
|
5
|
+
mypy_boto3_eks/client.pyi,sha256=yPpILaOkgYdOQJJIXuE-pSRqK2BbScEeYMnFCl1mV6w,49131
|
|
6
|
+
mypy_boto3_eks/literals.py,sha256=iAqR19DA5iaezK889sGsfQn-LZ1CFnsiU-ii5ww11r8,17496
|
|
7
|
+
mypy_boto3_eks/literals.pyi,sha256=iAqR19DA5iaezK889sGsfQn-LZ1CFnsiU-ii5ww11r8,17496
|
|
8
|
+
mypy_boto3_eks/paginator.py,sha256=bk48EmEtJU-979VnAzVvf2pmuzskNvyChmPmCO6Dxxs,15336
|
|
9
|
+
mypy_boto3_eks/paginator.pyi,sha256=ZIMweU-6DWq0IOcL16gLTKQtILtPYSJexmHxWffuwbs,15322
|
|
10
|
+
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_eks/type_defs.py,sha256=wGAQk-X6uZZcB6MPzmPuGUu4fs6YVdb307aeSwMdEag,62636
|
|
12
|
+
mypy_boto3_eks/type_defs.pyi,sha256=wGAQk-X6uZZcB6MPzmPuGUu4fs6YVdb307aeSwMdEag,62636
|
|
13
|
+
mypy_boto3_eks/version.py,sha256=NwiAkwIupkrOwAQ9WkqA9EDob49YukQwfHwGKuPdEgs,62
|
|
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.53.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_eks-1.34.53.dist-info/METADATA,sha256=am-AGEwYZe1b7FPpwqLU5JzMH9RCWV8vpY4pJNs1PSQ,15624
|
|
18
|
+
mypy_boto3_eks-1.34.53.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
19
|
+
mypy_boto3_eks-1.34.53.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
+
mypy_boto3_eks-1.34.53.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=s7G9Y3SlnrAMvu2zbULt_ukcNryWYrWsY5TGW7viTQs,889
|
|
4
|
-
mypy_boto3_eks/client.py,sha256=FMo1XNnE5_2M8Cydjl-SLeXPy7ukdZSkaKIC1Dnf4qE,49134
|
|
5
|
-
mypy_boto3_eks/client.pyi,sha256=yPpILaOkgYdOQJJIXuE-pSRqK2BbScEeYMnFCl1mV6w,49131
|
|
6
|
-
mypy_boto3_eks/literals.py,sha256=inJVWgQfaWsUzDoXVwsThQlTxaE-3yWr5FCMmSQ2LoE,17352
|
|
7
|
-
mypy_boto3_eks/literals.pyi,sha256=inJVWgQfaWsUzDoXVwsThQlTxaE-3yWr5FCMmSQ2LoE,17352
|
|
8
|
-
mypy_boto3_eks/paginator.py,sha256=bk48EmEtJU-979VnAzVvf2pmuzskNvyChmPmCO6Dxxs,15336
|
|
9
|
-
mypy_boto3_eks/paginator.pyi,sha256=ZIMweU-6DWq0IOcL16gLTKQtILtPYSJexmHxWffuwbs,15322
|
|
10
|
-
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_eks/type_defs.py,sha256=TgB-HLUjlYZVu6ZB78kIS7NILitmQzNxyjJiE3-Rexc,62623
|
|
12
|
-
mypy_boto3_eks/type_defs.pyi,sha256=TgB-HLUjlYZVu6ZB78kIS7NILitmQzNxyjJiE3-Rexc,62623
|
|
13
|
-
mypy_boto3_eks/version.py,sha256=0SIPMzRVMaVPoWhlzaBNyJ5f1X5Fy1vvjxjmIVjVT_g,61
|
|
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.5.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
17
|
-
mypy_boto3_eks-1.34.5.dist-info/METADATA,sha256=2d7oFSxLjkSyB-36VTq7LO0k6welQ7HjzhaQdn-_bp0,15621
|
|
18
|
-
mypy_boto3_eks-1.34.5.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
19
|
-
mypy_boto3_eks-1.34.5.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
-
mypy_boto3_eks-1.34.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|