mypy-boto3-eks 1.34.129__py3-none-any.whl → 1.34.137__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 +4 -4
- mypy_boto3_eks/client.py +1 -0
- mypy_boto3_eks/client.pyi +1 -0
- mypy_boto3_eks/literals.py +1 -1
- mypy_boto3_eks/literals.pyi +1 -1
- mypy_boto3_eks/type_defs.py +1 -0
- mypy_boto3_eks/type_defs.pyi +1 -0
- mypy_boto3_eks/version.py +1 -1
- {mypy_boto3_eks-1.34.129.dist-info → mypy_boto3_eks-1.34.137.dist-info}/METADATA +4 -4
- mypy_boto3_eks-1.34.137.dist-info/RECORD +20 -0
- {mypy_boto3_eks-1.34.129.dist-info → mypy_boto3_eks-1.34.137.dist-info}/WHEEL +1 -1
- mypy_boto3_eks-1.34.129.dist-info/RECORD +0 -20
- {mypy_boto3_eks-1.34.129.dist-info → mypy_boto3_eks-1.34.137.dist-info}/LICENSE +0 -0
- {mypy_boto3_eks-1.34.129.dist-info → mypy_boto3_eks-1.34.137.dist-info}/top_level.txt +0 -0
mypy_boto3_eks/__main__.py
CHANGED
|
@@ -10,9 +10,9 @@ 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
|
-
"Version: 1.34.
|
|
15
|
-
"Builder version: 7.
|
|
13
|
+
"Type annotations for boto3.EKS 1.34.137\n"
|
|
14
|
+
"Version: 1.34.137\n"
|
|
15
|
+
"Builder version: 7.25.0\n"
|
|
16
16
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_eks//\n"
|
|
17
17
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/eks.html#EKS\n"
|
|
18
18
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -24,7 +24,7 @@ def print_version() -> None:
|
|
|
24
24
|
"""
|
|
25
25
|
Print package version to stdout.
|
|
26
26
|
"""
|
|
27
|
-
print("1.34.
|
|
27
|
+
print("1.34.137")
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
def main() -> None:
|
mypy_boto3_eks/client.py
CHANGED
|
@@ -289,6 +289,7 @@ class EKSClient(BaseClient):
|
|
|
289
289
|
encryptionConfig: Sequence[EncryptionConfigUnionTypeDef] = ...,
|
|
290
290
|
outpostConfig: OutpostConfigRequestTypeDef = ...,
|
|
291
291
|
accessConfig: CreateAccessConfigRequestTypeDef = ...,
|
|
292
|
+
bootstrapSelfManagedAddons: bool = ...,
|
|
292
293
|
) -> CreateClusterResponseTypeDef:
|
|
293
294
|
"""
|
|
294
295
|
Creates an Amazon EKS control plane.
|
mypy_boto3_eks/client.pyi
CHANGED
|
@@ -286,6 +286,7 @@ class EKSClient(BaseClient):
|
|
|
286
286
|
encryptionConfig: Sequence[EncryptionConfigUnionTypeDef] = ...,
|
|
287
287
|
outpostConfig: OutpostConfigRequestTypeDef = ...,
|
|
288
288
|
accessConfig: CreateAccessConfigRequestTypeDef = ...,
|
|
289
|
+
bootstrapSelfManagedAddons: bool = ...,
|
|
289
290
|
) -> CreateClusterResponseTypeDef:
|
|
290
291
|
"""
|
|
291
292
|
Creates an Amazon EKS control plane.
|
mypy_boto3_eks/literals.py
CHANGED
|
@@ -118,7 +118,7 @@ AddonStatusType = Literal[
|
|
|
118
118
|
"UPDATING",
|
|
119
119
|
]
|
|
120
120
|
AuthenticationModeType = Literal["API", "API_AND_CONFIG_MAP", "CONFIG_MAP"]
|
|
121
|
-
CapacityTypesType = Literal["ON_DEMAND", "SPOT"]
|
|
121
|
+
CapacityTypesType = Literal["CAPACITY_BLOCK", "ON_DEMAND", "SPOT"]
|
|
122
122
|
CategoryType = Literal["UPGRADE_READINESS"]
|
|
123
123
|
ClusterActiveWaiterName = Literal["cluster_active"]
|
|
124
124
|
ClusterDeletedWaiterName = Literal["cluster_deleted"]
|
mypy_boto3_eks/literals.pyi
CHANGED
|
@@ -118,7 +118,7 @@ AddonStatusType = Literal[
|
|
|
118
118
|
"UPDATING",
|
|
119
119
|
]
|
|
120
120
|
AuthenticationModeType = Literal["API", "API_AND_CONFIG_MAP", "CONFIG_MAP"]
|
|
121
|
-
CapacityTypesType = Literal["ON_DEMAND", "SPOT"]
|
|
121
|
+
CapacityTypesType = Literal["CAPACITY_BLOCK", "ON_DEMAND", "SPOT"]
|
|
122
122
|
CategoryType = Literal["UPGRADE_READINESS"]
|
|
123
123
|
ClusterActiveWaiterName = Literal["cluster_active"]
|
|
124
124
|
ClusterDeletedWaiterName = Literal["cluster_deleted"]
|
mypy_boto3_eks/type_defs.py
CHANGED
|
@@ -1960,6 +1960,7 @@ CreateClusterRequestRequestTypeDef = TypedDict(
|
|
|
1960
1960
|
"encryptionConfig": NotRequired[Sequence[EncryptionConfigUnionTypeDef]],
|
|
1961
1961
|
"outpostConfig": NotRequired[OutpostConfigRequestTypeDef],
|
|
1962
1962
|
"accessConfig": NotRequired[CreateAccessConfigRequestTypeDef],
|
|
1963
|
+
"bootstrapSelfManagedAddons": NotRequired[bool],
|
|
1963
1964
|
},
|
|
1964
1965
|
)
|
|
1965
1966
|
CreateFargateProfileResponseTypeDef = TypedDict(
|
mypy_boto3_eks/type_defs.pyi
CHANGED
|
@@ -1960,6 +1960,7 @@ CreateClusterRequestRequestTypeDef = TypedDict(
|
|
|
1960
1960
|
"encryptionConfig": NotRequired[Sequence[EncryptionConfigUnionTypeDef]],
|
|
1961
1961
|
"outpostConfig": NotRequired[OutpostConfigRequestTypeDef],
|
|
1962
1962
|
"accessConfig": NotRequired[CreateAccessConfigRequestTypeDef],
|
|
1963
|
+
"bootstrapSelfManagedAddons": NotRequired[bool],
|
|
1963
1964
|
},
|
|
1964
1965
|
)
|
|
1965
1966
|
CreateFargateProfileResponseTypeDef = 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.137
|
|
4
|
+
Summary: Type annotations for boto3.EKS 1.34.137 service generated with mypy-boto3-builder 7.25.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
|
|
@@ -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.137](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.
|
|
55
|
+
[mypy-boto3-builder 7.25.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
|
|
@@ -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=UFPORkuL6lcb7vUUmkLXFDVcqSSZJ9LsztXiWN9JCh4,906
|
|
4
|
+
mypy_boto3_eks/client.py,sha256=k39Vg2GNXtvGl1g9J4eLCWxG0PAkf5VMIQGmilMLkhA,49455
|
|
5
|
+
mypy_boto3_eks/client.pyi,sha256=PqQvVOMNZPfst8_LWUZmaqQm7kaeF2CVnWV7dlFK9q4,49452
|
|
6
|
+
mypy_boto3_eks/literals.py,sha256=yJ4OQC3ewTukB1xQgDszal0fNgiqKVYE_hrd-KME9RM,17985
|
|
7
|
+
mypy_boto3_eks/literals.pyi,sha256=yJ4OQC3ewTukB1xQgDszal0fNgiqKVYE_hrd-KME9RM,17985
|
|
8
|
+
mypy_boto3_eks/paginator.py,sha256=ptf2OcGXBuVX_-zrJ2f29-J_erT3gw4pO2M8AXAj5_o,15318
|
|
9
|
+
mypy_boto3_eks/paginator.pyi,sha256=XcevxKQBwCxr_KwAaoPOUelzSTyi_2YyeWGx4No2aAU,15304
|
|
10
|
+
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_eks/type_defs.py,sha256=03l4YArdWBpjvTYkLqajFb6ruSRJWpfS5OWrovB5gyo,65357
|
|
12
|
+
mypy_boto3_eks/type_defs.pyi,sha256=03l4YArdWBpjvTYkLqajFb6ruSRJWpfS5OWrovB5gyo,65357
|
|
13
|
+
mypy_boto3_eks/version.py,sha256=JcmeSya0J_TNt44PjVB9DQ5zDxojFX29r2qaApaxTe4,63
|
|
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.137.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_eks-1.34.137.dist-info/METADATA,sha256=ezQWC3ROiz10AAQryPI49uE40CUL8IgIped85EX7IWo,15627
|
|
18
|
+
mypy_boto3_eks-1.34.137.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
|
19
|
+
mypy_boto3_eks-1.34.137.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
+
mypy_boto3_eks-1.34.137.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=x_Rq9cKcjPuRIirCsYxmQMHOlotpT6PK9SDCsEnoyFk,906
|
|
4
|
-
mypy_boto3_eks/client.py,sha256=Qf_KhqeFt7a7ZucVLv3jgoNiKunqmN2FjYLXdVIjfLQ,49407
|
|
5
|
-
mypy_boto3_eks/client.pyi,sha256=tNxkr2e4YG0RtkCg7PCXncz7CXqPZN6hZwvrIqh3B94,49404
|
|
6
|
-
mypy_boto3_eks/literals.py,sha256=l0KSu18UlyofZ1eUdLFO4bX0NG7S0XNT60gTK397pI0,17967
|
|
7
|
-
mypy_boto3_eks/literals.pyi,sha256=l0KSu18UlyofZ1eUdLFO4bX0NG7S0XNT60gTK397pI0,17967
|
|
8
|
-
mypy_boto3_eks/paginator.py,sha256=ptf2OcGXBuVX_-zrJ2f29-J_erT3gw4pO2M8AXAj5_o,15318
|
|
9
|
-
mypy_boto3_eks/paginator.pyi,sha256=XcevxKQBwCxr_KwAaoPOUelzSTyi_2YyeWGx4No2aAU,15304
|
|
10
|
-
mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_eks/type_defs.py,sha256=3Axhu-5NT0XS7L0nXmm8WD-JPmiV3G3aTvTX5-C72ZY,65300
|
|
12
|
-
mypy_boto3_eks/type_defs.pyi,sha256=3Axhu-5NT0XS7L0nXmm8WD-JPmiV3G3aTvTX5-C72ZY,65300
|
|
13
|
-
mypy_boto3_eks/version.py,sha256=MKCpHZ22Fx9TcXSTIaVjj0EVYyqY1n6F8mgyAZQqBrQ,63
|
|
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.129.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_eks-1.34.129.dist-info/METADATA,sha256=peSFQ8VdioBjRXOlUF5oteWAarJW_iBwaNWYBojKOLM,15627
|
|
18
|
-
mypy_boto3_eks-1.34.129.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
19
|
-
mypy_boto3_eks-1.34.129.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
|
|
20
|
-
mypy_boto3_eks-1.34.129.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|