mypy-boto3-eks 1.35.72__py3-none-any.whl → 1.35.81__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.
@@ -12,9 +12,9 @@ def print_info() -> None:
12
12
  Print package info to stdout.
13
13
  """
14
14
  print(
15
- "Type annotations for boto3 EKS 1.35.72\n"
16
- "Version: 1.35.72\n"
17
- "Builder version: 8.5.0\n"
15
+ "Type annotations for boto3 EKS 1.35.81\n"
16
+ "Version: 1.35.81\n"
17
+ "Builder version: 8.6.3\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"
20
20
  "Other services: https://pypi.org/project/boto3-stubs/\n"
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- print("1.35.72")
29
+ print("1.35.81")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -269,6 +269,7 @@ UpdateParamTypeType = Literal[
269
269
  "MaxUnavailable",
270
270
  "MaxUnavailablePercentage",
271
271
  "MinSize",
272
+ "NodeRepairEnabled",
272
273
  "PlatformVersion",
273
274
  "PodIdentityAssociations",
274
275
  "PublicAccessCidrs",
@@ -342,6 +343,8 @@ ServiceName = Literal[
342
343
  "bedrock",
343
344
  "bedrock-agent",
344
345
  "bedrock-agent-runtime",
346
+ "bedrock-data-automation",
347
+ "bedrock-data-automation-runtime",
345
348
  "bedrock-runtime",
346
349
  "billing",
347
350
  "billingconductor",
@@ -419,6 +422,7 @@ ServiceName = Literal[
419
422
  "drs",
420
423
  "ds",
421
424
  "ds-data",
425
+ "dsql",
422
426
  "dynamodb",
423
427
  "dynamodbstreams",
424
428
  "ebs",
@@ -629,6 +633,7 @@ ServiceName = Literal[
629
633
  "s3",
630
634
  "s3control",
631
635
  "s3outposts",
636
+ "s3tables",
632
637
  "sagemaker",
633
638
  "sagemaker-a2i-runtime",
634
639
  "sagemaker-edge",
@@ -267,6 +267,7 @@ UpdateParamTypeType = Literal[
267
267
  "MaxUnavailable",
268
268
  "MaxUnavailablePercentage",
269
269
  "MinSize",
270
+ "NodeRepairEnabled",
270
271
  "PlatformVersion",
271
272
  "PodIdentityAssociations",
272
273
  "PublicAccessCidrs",
@@ -340,6 +341,8 @@ ServiceName = Literal[
340
341
  "bedrock",
341
342
  "bedrock-agent",
342
343
  "bedrock-agent-runtime",
344
+ "bedrock-data-automation",
345
+ "bedrock-data-automation-runtime",
343
346
  "bedrock-runtime",
344
347
  "billing",
345
348
  "billingconductor",
@@ -417,6 +420,7 @@ ServiceName = Literal[
417
420
  "drs",
418
421
  "ds",
419
422
  "ds-data",
423
+ "dsql",
420
424
  "dynamodb",
421
425
  "dynamodbstreams",
422
426
  "ebs",
@@ -627,6 +631,7 @@ ServiceName = Literal[
627
631
  "s3",
628
632
  "s3control",
629
633
  "s3outposts",
634
+ "s3tables",
630
635
  "sagemaker",
631
636
  "sagemaker-a2i-runtime",
632
637
  "sagemaker-edge",
@@ -223,6 +223,7 @@ __all__ = (
223
223
  "LoggingOutputTypeDef",
224
224
  "LoggingTypeDef",
225
225
  "MarketplaceInformationTypeDef",
226
+ "NodeRepairConfigTypeDef",
226
227
  "NodegroupHealthTypeDef",
227
228
  "NodegroupResourcesTypeDef",
228
229
  "NodegroupScalingConfigTypeDef",
@@ -499,6 +500,10 @@ LaunchTemplateSpecificationTypeDef = TypedDict(
499
500
  )
500
501
 
501
502
 
503
+ class NodeRepairConfigTypeDef(TypedDict):
504
+ enabled: NotRequired[bool]
505
+
506
+
502
507
  class NodegroupScalingConfigTypeDef(TypedDict):
503
508
  minSize: NotRequired[int]
504
509
  maxSize: NotRequired[int]
@@ -1153,6 +1158,7 @@ class CreateNodegroupRequestRequestTypeDef(TypedDict):
1153
1158
  clientRequestToken: NotRequired[str]
1154
1159
  launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
1155
1160
  updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1161
+ nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1156
1162
  capacityType: NotRequired[CapacityTypesType]
1157
1163
  version: NotRequired[str]
1158
1164
  releaseVersion: NotRequired[str]
@@ -1517,6 +1523,7 @@ class UpdateNodegroupConfigRequestRequestTypeDef(TypedDict):
1517
1523
  taints: NotRequired[UpdateTaintsPayloadTypeDef]
1518
1524
  scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
1519
1525
  updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1526
+ nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1520
1527
  clientRequestToken: NotRequired[str]
1521
1528
 
1522
1529
 
@@ -1579,6 +1586,7 @@ class NodegroupTypeDef(TypedDict):
1579
1586
  diskSize: NotRequired[int]
1580
1587
  health: NotRequired[NodegroupHealthTypeDef]
1581
1588
  updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1589
+ nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1582
1590
  launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
1583
1591
  tags: NotRequired[Dict[str, str]]
1584
1592
 
@@ -222,6 +222,7 @@ __all__ = (
222
222
  "LoggingOutputTypeDef",
223
223
  "LoggingTypeDef",
224
224
  "MarketplaceInformationTypeDef",
225
+ "NodeRepairConfigTypeDef",
225
226
  "NodegroupHealthTypeDef",
226
227
  "NodegroupResourcesTypeDef",
227
228
  "NodegroupScalingConfigTypeDef",
@@ -465,6 +466,9 @@ LaunchTemplateSpecificationTypeDef = TypedDict(
465
466
  },
466
467
  )
467
468
 
469
+ class NodeRepairConfigTypeDef(TypedDict):
470
+ enabled: NotRequired[bool]
471
+
468
472
  class NodegroupScalingConfigTypeDef(TypedDict):
469
473
  minSize: NotRequired[int]
470
474
  maxSize: NotRequired[int]
@@ -1022,6 +1026,7 @@ class CreateNodegroupRequestRequestTypeDef(TypedDict):
1022
1026
  clientRequestToken: NotRequired[str]
1023
1027
  launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
1024
1028
  updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1029
+ nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1025
1030
  capacityType: NotRequired[CapacityTypesType]
1026
1031
  version: NotRequired[str]
1027
1032
  releaseVersion: NotRequired[str]
@@ -1331,6 +1336,7 @@ class UpdateNodegroupConfigRequestRequestTypeDef(TypedDict):
1331
1336
  taints: NotRequired[UpdateTaintsPayloadTypeDef]
1332
1337
  scalingConfig: NotRequired[NodegroupScalingConfigTypeDef]
1333
1338
  updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1339
+ nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1334
1340
  clientRequestToken: NotRequired[str]
1335
1341
 
1336
1342
  EncryptionConfigUnionTypeDef = Union[EncryptionConfigTypeDef, EncryptionConfigOutputTypeDef]
@@ -1387,6 +1393,7 @@ class NodegroupTypeDef(TypedDict):
1387
1393
  diskSize: NotRequired[int]
1388
1394
  health: NotRequired[NodegroupHealthTypeDef]
1389
1395
  updateConfig: NotRequired[NodegroupUpdateConfigTypeDef]
1396
+ nodeRepairConfig: NotRequired[NodeRepairConfigTypeDef]
1390
1397
  launchTemplate: NotRequired[LaunchTemplateSpecificationTypeDef]
1391
1398
  tags: NotRequired[Dict[str, str]]
1392
1399
 
mypy_boto3_eks/version.py CHANGED
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2024 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.35.72"
7
+ __version__ = "1.35.81"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-eks
3
- Version: 1.35.72
4
- Summary: Type annotations for boto3 EKS 1.35.72 service generated with mypy-boto3-builder 8.5.0
3
+ Version: 1.35.81
4
+ Summary: Type annotations for boto3 EKS 1.35.81 service generated with mypy-boto3-builder 8.6.3
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
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
45
 
46
- Type annotations for [boto3 EKS 1.35.72](https://pypi.org/project/boto3/)
46
+ Type annotations for [boto3 EKS 1.35.81](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/),
@@ -51,8 +51,8 @@ compatible with [VSCode](https://code.visualstudio.com/),
51
51
  [mypy](https://github.com/python/mypy),
52
52
  [pyright](https://github.com/microsoft/pyright) and other tools.
53
53
 
54
- Generated by
55
- [mypy-boto3-builder 8.5.0](https://github.com/youtype/mypy_boto3_builder).
54
+ Generated with
55
+ [mypy-boto3-builder 8.6.3](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
@@ -64,6 +64,7 @@ See how it helps you find and fix potential bugs:
64
64
 
65
65
  - [mypy-boto3-eks](#mypy-boto3-eks)
66
66
  - [How to install](#how-to-install)
67
+ - [Generate locally (recommended)](<#generate-locally-(recommended)>)
67
68
  - [VSCode extension](#vscode-extension)
68
69
  - [From PyPI with pip](#from-pypi-with-pip)
69
70
  - [How to uninstall](#how-to-uninstall)
@@ -95,6 +96,21 @@ See how it helps you find and fix potential bugs:
95
96
 
96
97
  ## How to install
97
98
 
99
+ <a id="generate-locally-(recommended)"></a>
100
+
101
+ ### Generate locally (recommended)
102
+
103
+ You can generate type annotations for `boto3` package locally with
104
+ `mypy_boto3_builder`. Use
105
+ [uv](https://docs.astral.sh/uv/getting-started/installation/) for build
106
+ isolation.
107
+
108
+ 1. Run mypy-boto3-builder in your package root directory:
109
+ `uvx --with 'boto3==1.35.81' mypy_boto3_builder`
110
+ 2. Select `boto3 (legacy boto3-stubs)` AWS SDK.
111
+ 3. Add `EKS` service.
112
+ 4. Use provided commands to install generated packages.
113
+
98
114
  <a id="vscode-extension"></a>
99
115
 
100
116
  ### VSCode extension
@@ -115,12 +131,10 @@ Install `boto3-stubs` for `EKS` service.
115
131
  # install with boto3 type annotations
116
132
  python -m pip install 'boto3-stubs[eks]'
117
133
 
118
-
119
134
  # Lite version does not provide session.client/resource overloads
120
135
  # it is more RAM-friendly, but requires explicit type annotations
121
136
  python -m pip install 'boto3-stubs-lite[eks]'
122
137
 
123
-
124
138
  # standalone installation
125
139
  python -m pip install mypy-boto3-eks
126
140
  ```
@@ -1,20 +1,20 @@
1
1
  mypy_boto3_eks/__init__.py,sha256=jFVUXeLoad7MEcujD_IzbWsthXmaDeDIHTMXeiBEnus,4743
2
2
  mypy_boto3_eks/__init__.pyi,sha256=FZEpmKxAATrcpUAICEJ3rOJMJADPR7MZWMgXZ2Fnk_g,4742
3
- mypy_boto3_eks/__main__.py,sha256=C22bMBvwRkGpJ5PwURiXnerRlIGCIS4JFNgvyfsxaDs,933
3
+ mypy_boto3_eks/__main__.py,sha256=evP40ImZWuzINg2znGymxKjLVItzdbVGyoE0FTKosWs,933
4
4
  mypy_boto3_eks/client.py,sha256=-4_q-egEi_VRRzY8euKJjVvAWAT8GtVTiU3APt2IkvE,47867
5
5
  mypy_boto3_eks/client.pyi,sha256=Z8Bqxwz50F1DkMkBYuRsb4_WdeGkHJb2fVbTp50NvZE,47863
6
- mypy_boto3_eks/literals.py,sha256=DMfi9urGbArZx35NFs-B94x1WhyVQdrp1n5SVJHNwSY,18745
7
- mypy_boto3_eks/literals.pyi,sha256=1WvMzmKeBBfLdAivzwt-xSsbhUl1BhHspr7SfkYubss,18743
6
+ mypy_boto3_eks/literals.py,sha256=fe94L8Yd1U1Og7Hdwi3odSnSl5fLJAbI2KI3QpsyOqI,18868
7
+ mypy_boto3_eks/literals.pyi,sha256=a--t8UdCfCoOXtzbWeYV7A32g5a6qDQuBTO52L-fdC0,18866
8
8
  mypy_boto3_eks/paginator.py,sha256=b47PYSo7ZZeyb6a8cZAvKWs0GQJNHe491CGkrnvD4pU,16664
9
9
  mypy_boto3_eks/paginator.pyi,sha256=snJRMYrJ-Fm_qCLP4NuD0y2wX2AlZkFkc7MrJPx3qrA,16635
10
10
  mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_eks/type_defs.py,sha256=U15DGE_eflq40ahwJIe4D7GlBwMi5vm49pd9ImjbFYU,55046
12
- mypy_boto3_eks/type_defs.pyi,sha256=6oqNspGsm3OuiMc14hkezLxKtaezbc7OJAMGrlHGF7M,54822
13
- mypy_boto3_eks/version.py,sha256=YQeegutf73cmLwsZE7d3vYIjpKh09ERGKV08ssq8iHk,93
11
+ mypy_boto3_eks/type_defs.py,sha256=_IXKFwuc92X8FlHDKOScDtPE3BN0tGFRY6UwBv88PcA,55329
12
+ mypy_boto3_eks/type_defs.pyi,sha256=kSYaqSk2MYeTCppZi2NhvQxubPoRbYjLxE2eiAe0NoA,55104
13
+ mypy_boto3_eks/version.py,sha256=43YQ076woionZM0aB5UwdorEF0QPSwqFdL8sU1y7tgU,93
14
14
  mypy_boto3_eks/waiter.py,sha256=zpm2zEN_i94jJpYhb4yDd5xJ_jI5kRf2ynCffyOZEpM,8545
15
15
  mypy_boto3_eks/waiter.pyi,sha256=FcCxeEAmZHN---jGku2y6s-h_KMBuGeMnqfOVZGa8Aw,8528
16
- mypy_boto3_eks-1.35.72.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
- mypy_boto3_eks-1.35.72.dist-info/METADATA,sha256=uG9_YgUbfte3G9MIXlIuvp9XSBSyOnDJxMNXRq-e-xw,16911
18
- mypy_boto3_eks-1.35.72.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
19
- mypy_boto3_eks-1.35.72.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
- mypy_boto3_eks-1.35.72.dist-info/RECORD,,
16
+ mypy_boto3_eks-1.35.81.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
+ mypy_boto3_eks-1.35.81.dist-info/METADATA,sha256=H77vnEOkNcKxc4C_g-qj2G64wTX0q6VFlVRT88Q2xy0,17480
18
+ mypy_boto3_eks-1.35.81.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
19
+ mypy_boto3_eks-1.35.81.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
+ mypy_boto3_eks-1.35.81.dist-info/RECORD,,