mypy-boto3-eks 1.41.0__py3-none-any.whl → 1.41.2__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,8 +12,8 @@ def print_info() -> None:
12
12
  Print package info to stdout.
13
13
  """
14
14
  sys.stdout.write(
15
- "Type annotations for boto3 EKS 1.41.0\n"
16
- "Version: 1.41.0\n"
15
+ "Type annotations for boto3 EKS 1.41.2\n"
16
+ "Version: 1.41.2\n"
17
17
  "Builder version: 8.12.0\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"
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- sys.stdout.write("1.41.0\n")
29
+ sys.stdout.write("1.41.2\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -72,6 +72,7 @@ __all__ = (
72
72
  "NodegroupStatusType",
73
73
  "NodegroupUpdateStrategiesType",
74
74
  "PaginatorName",
75
+ "ProvisionedControlPlaneTierType",
75
76
  "RegionName",
76
77
  "RepairActionType",
77
78
  "ResolveConflictsType",
@@ -259,6 +260,7 @@ NodegroupStatusType = Literal[
259
260
  "ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
260
261
  ]
261
262
  NodegroupUpdateStrategiesType = Literal["DEFAULT", "MINIMAL"]
263
+ ProvisionedControlPlaneTierType = Literal["standard", "tier-2xl", "tier-4xl", "tier-xl"]
262
264
  RepairActionType = Literal["NoAction", "Reboot", "Replace"]
263
265
  ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
264
266
  SupportTypeType = Literal["EXTENDED", "STANDARD"]
@@ -288,6 +290,7 @@ UpdateParamTypeType = Literal[
288
290
  "NodeRepairEnabled",
289
291
  "PlatformVersion",
290
292
  "PodIdentityAssociations",
293
+ "PreviousTier",
291
294
  "PublicAccessCidrs",
292
295
  "ReleaseVersion",
293
296
  "RemoteNetworkConfig",
@@ -299,6 +302,7 @@ UpdateParamTypeType = Literal[
299
302
  "TaintsToAdd",
300
303
  "TaintsToRemove",
301
304
  "UpdateStrategy",
305
+ "UpdatedTier",
302
306
  "UpgradePolicy",
303
307
  "Version",
304
308
  "ZonalShiftConfig",
@@ -311,6 +315,7 @@ UpdateTypeType = Literal[
311
315
  "AssociateIdentityProviderConfig",
312
316
  "AutoModeUpdate",
313
317
  "ConfigUpdate",
318
+ "ControlPlaneScalingConfigUpdate",
314
319
  "DeletionProtectionUpdate",
315
320
  "DisassociateIdentityProviderConfig",
316
321
  "EndpointAccessUpdate",
@@ -418,6 +423,7 @@ ServiceName = Literal[
418
423
  "comprehend",
419
424
  "comprehendmedical",
420
425
  "compute-optimizer",
426
+ "compute-optimizer-automation",
421
427
  "config",
422
428
  "connect",
423
429
  "connect-contact-lens",
@@ -71,6 +71,7 @@ __all__ = (
71
71
  "NodegroupStatusType",
72
72
  "NodegroupUpdateStrategiesType",
73
73
  "PaginatorName",
74
+ "ProvisionedControlPlaneTierType",
74
75
  "RegionName",
75
76
  "RepairActionType",
76
77
  "ResolveConflictsType",
@@ -257,6 +258,7 @@ NodegroupStatusType = Literal[
257
258
  "ACTIVE", "CREATE_FAILED", "CREATING", "DEGRADED", "DELETE_FAILED", "DELETING", "UPDATING"
258
259
  ]
259
260
  NodegroupUpdateStrategiesType = Literal["DEFAULT", "MINIMAL"]
261
+ ProvisionedControlPlaneTierType = Literal["standard", "tier-2xl", "tier-4xl", "tier-xl"]
260
262
  RepairActionType = Literal["NoAction", "Reboot", "Replace"]
261
263
  ResolveConflictsType = Literal["NONE", "OVERWRITE", "PRESERVE"]
262
264
  SupportTypeType = Literal["EXTENDED", "STANDARD"]
@@ -286,6 +288,7 @@ UpdateParamTypeType = Literal[
286
288
  "NodeRepairEnabled",
287
289
  "PlatformVersion",
288
290
  "PodIdentityAssociations",
291
+ "PreviousTier",
289
292
  "PublicAccessCidrs",
290
293
  "ReleaseVersion",
291
294
  "RemoteNetworkConfig",
@@ -297,6 +300,7 @@ UpdateParamTypeType = Literal[
297
300
  "TaintsToAdd",
298
301
  "TaintsToRemove",
299
302
  "UpdateStrategy",
303
+ "UpdatedTier",
300
304
  "UpgradePolicy",
301
305
  "Version",
302
306
  "ZonalShiftConfig",
@@ -309,6 +313,7 @@ UpdateTypeType = Literal[
309
313
  "AssociateIdentityProviderConfig",
310
314
  "AutoModeUpdate",
311
315
  "ConfigUpdate",
316
+ "ControlPlaneScalingConfigUpdate",
312
317
  "DeletionProtectionUpdate",
313
318
  "DisassociateIdentityProviderConfig",
314
319
  "EndpointAccessUpdate",
@@ -416,6 +421,7 @@ ServiceName = Literal[
416
421
  "comprehend",
417
422
  "comprehendmedical",
418
423
  "compute-optimizer",
424
+ "compute-optimizer-automation",
419
425
  "config",
420
426
  "connect",
421
427
  "connect-contact-lens",
@@ -45,6 +45,7 @@ from .literals import (
45
45
  NodegroupIssueCodeType,
46
46
  NodegroupStatusType,
47
47
  NodegroupUpdateStrategiesType,
48
+ ProvisionedControlPlaneTierType,
48
49
  RepairActionType,
49
50
  ResolveConflictsType,
50
51
  SupportTypeType,
@@ -100,6 +101,7 @@ __all__ = (
100
101
  "ConnectorConfigResponseTypeDef",
101
102
  "ControlPlanePlacementRequestTypeDef",
102
103
  "ControlPlanePlacementResponseTypeDef",
104
+ "ControlPlaneScalingConfigTypeDef",
103
105
  "CreateAccessConfigRequestTypeDef",
104
106
  "CreateAccessEntryRequestTypeDef",
105
107
  "CreateAccessEntryResponseTypeDef",
@@ -452,6 +454,10 @@ class ConnectorConfigResponseTypeDef(TypedDict):
452
454
  roleArn: NotRequired[str]
453
455
 
454
456
 
457
+ class ControlPlaneScalingConfigTypeDef(TypedDict):
458
+ tier: NotRequired[ProvisionedControlPlaneTierType]
459
+
460
+
455
461
  class UpgradePolicyResponseTypeDef(TypedDict):
456
462
  supportType: NotRequired[SupportTypeType]
457
463
 
@@ -1744,6 +1750,7 @@ ClusterTypeDef = TypedDict(
1744
1750
  "computeConfig": NotRequired[ComputeConfigResponseTypeDef],
1745
1751
  "storageConfig": NotRequired[StorageConfigResponseTypeDef],
1746
1752
  "deletionProtection": NotRequired[bool],
1753
+ "controlPlaneScalingConfig": NotRequired[ControlPlaneScalingConfigTypeDef],
1747
1754
  },
1748
1755
  )
1749
1756
 
@@ -1952,6 +1959,7 @@ class CreateClusterRequestTypeDef(TypedDict):
1952
1959
  computeConfig: NotRequired[ComputeConfigRequestTypeDef]
1953
1960
  storageConfig: NotRequired[StorageConfigRequestTypeDef]
1954
1961
  deletionProtection: NotRequired[bool]
1962
+ controlPlaneScalingConfig: NotRequired[ControlPlaneScalingConfigTypeDef]
1955
1963
 
1956
1964
 
1957
1965
  class UpdateClusterConfigRequestTypeDef(TypedDict):
@@ -1967,6 +1975,7 @@ class UpdateClusterConfigRequestTypeDef(TypedDict):
1967
1975
  storageConfig: NotRequired[StorageConfigRequestTypeDef]
1968
1976
  remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
1969
1977
  deletionProtection: NotRequired[bool]
1978
+ controlPlaneScalingConfig: NotRequired[ControlPlaneScalingConfigTypeDef]
1970
1979
 
1971
1980
 
1972
1981
  class DescribeInsightResponseTypeDef(TypedDict):
@@ -45,6 +45,7 @@ from .literals import (
45
45
  NodegroupIssueCodeType,
46
46
  NodegroupStatusType,
47
47
  NodegroupUpdateStrategiesType,
48
+ ProvisionedControlPlaneTierType,
48
49
  RepairActionType,
49
50
  ResolveConflictsType,
50
51
  SupportTypeType,
@@ -99,6 +100,7 @@ __all__ = (
99
100
  "ConnectorConfigResponseTypeDef",
100
101
  "ControlPlanePlacementRequestTypeDef",
101
102
  "ControlPlanePlacementResponseTypeDef",
103
+ "ControlPlaneScalingConfigTypeDef",
102
104
  "CreateAccessConfigRequestTypeDef",
103
105
  "CreateAccessEntryRequestTypeDef",
104
106
  "CreateAccessEntryResponseTypeDef",
@@ -429,6 +431,9 @@ class ConnectorConfigResponseTypeDef(TypedDict):
429
431
  provider: NotRequired[str]
430
432
  roleArn: NotRequired[str]
431
433
 
434
+ class ControlPlaneScalingConfigTypeDef(TypedDict):
435
+ tier: NotRequired[ProvisionedControlPlaneTierType]
436
+
432
437
  class UpgradePolicyResponseTypeDef(TypedDict):
433
438
  supportType: NotRequired[SupportTypeType]
434
439
 
@@ -1535,6 +1540,7 @@ ClusterTypeDef = TypedDict(
1535
1540
  "computeConfig": NotRequired[ComputeConfigResponseTypeDef],
1536
1541
  "storageConfig": NotRequired[StorageConfigResponseTypeDef],
1537
1542
  "deletionProtection": NotRequired[bool],
1543
+ "controlPlaneScalingConfig": NotRequired[ControlPlaneScalingConfigTypeDef],
1538
1544
  },
1539
1545
  )
1540
1546
 
@@ -1713,6 +1719,7 @@ class CreateClusterRequestTypeDef(TypedDict):
1713
1719
  computeConfig: NotRequired[ComputeConfigRequestTypeDef]
1714
1720
  storageConfig: NotRequired[StorageConfigRequestTypeDef]
1715
1721
  deletionProtection: NotRequired[bool]
1722
+ controlPlaneScalingConfig: NotRequired[ControlPlaneScalingConfigTypeDef]
1716
1723
 
1717
1724
  class UpdateClusterConfigRequestTypeDef(TypedDict):
1718
1725
  name: str
@@ -1727,6 +1734,7 @@ class UpdateClusterConfigRequestTypeDef(TypedDict):
1727
1734
  storageConfig: NotRequired[StorageConfigRequestTypeDef]
1728
1735
  remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
1729
1736
  deletionProtection: NotRequired[bool]
1737
+ controlPlaneScalingConfig: NotRequired[ControlPlaneScalingConfigTypeDef]
1730
1738
 
1731
1739
  class DescribeInsightResponseTypeDef(TypedDict):
1732
1740
  insight: InsightTypeDef
mypy_boto3_eks/version.py CHANGED
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.41.0"
7
+ __version__ = "1.41.2"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mypy-boto3-eks
3
- Version: 1.41.0
4
- Summary: Type annotations for boto3 EKS 1.41.0 service generated with mypy-boto3-builder 8.12.0
3
+ Version: 1.41.2
4
+ Summary: Type annotations for boto3 EKS 1.41.2 service generated with mypy-boto3-builder 8.12.0
5
5
  Author-email: Vlad Emelianov <vlad.emelianov.nz@gmail.com>
6
6
  License-Expression: MIT
7
7
  Project-URL: Homepage, https://github.com/youtype/mypy_boto3_builder
@@ -42,7 +42,7 @@ Dynamic: license-file
42
42
 
43
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
44
 
45
- Type annotations for [boto3 EKS 1.41.0](https://pypi.org/project/boto3/)
45
+ Type annotations for [boto3 EKS 1.41.2](https://pypi.org/project/boto3/)
46
46
  compatible with [VSCode](https://code.visualstudio.com/),
47
47
  [PyCharm](https://www.jetbrains.com/pycharm/),
48
48
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -105,7 +105,7 @@ You can generate type annotations for `boto3` package locally with
105
105
  isolation.
106
106
 
107
107
  1. Run mypy-boto3-builder in your package root directory:
108
- `uvx --with 'boto3==1.41.0' mypy-boto3-builder`
108
+ `uvx --with 'boto3==1.41.2' mypy-boto3-builder`
109
109
  2. Select `boto3-stubs` AWS SDK.
110
110
  3. Add `EKS` service.
111
111
  4. Use provided commands to install generated packages.
@@ -1,20 +1,20 @@
1
1
  mypy_boto3_eks/__init__.py,sha256=2ny7DX2h2EqSXWmXoLROuwapCrk5WWG82Cytg9gBFoA,5066
2
2
  mypy_boto3_eks/__init__.pyi,sha256=Vn_LcRXy2FU1PJjnQvnE8BMRwPFC8_X1P1UnZbFY2Zs,5065
3
- mypy_boto3_eks/__main__.py,sha256=xHFoTWZCNnhn9lPk_204GjPOA0WBrS04iJiTbRXjVxw,965
3
+ mypy_boto3_eks/__main__.py,sha256=NaZk_Jz-wQ7tPkDmBS8HYSyql1OCLCg-BSQkjtPOvQs,965
4
4
  mypy_boto3_eks/client.py,sha256=iL3nkvTbGnvFxLYJvOR9wjuT3J_I2caGP2oF66bodqk,50589
5
5
  mypy_boto3_eks/client.pyi,sha256=u4By-uwz_cYdnwJKeFTki543wqcayfvlWJVnKhAhczQ,50586
6
- mypy_boto3_eks/literals.py,sha256=8tL6VXTGiwyyU7dj6oXcMzLM03mpexn5kBNYSTyb85I,19987
7
- mypy_boto3_eks/literals.pyi,sha256=n6-9PawbFHMtTHufnp3WTaXiKHrgi1q1CIrp7NfV4y0,19985
6
+ mypy_boto3_eks/literals.py,sha256=pjK4gOdEDFIACdHlHUAwIhBtlCWk6ZUsBC93vwGqyyY,20229
7
+ mypy_boto3_eks/literals.pyi,sha256=wGtui_fyIQ8xgKO69OKT1ObhbEX7MGbPnBErg19jW8o,20227
8
8
  mypy_boto3_eks/paginator.py,sha256=3yFhQFg-bh-hJOlMggBZeCd-xonLBWmXnBG1HRNiDL4,20481
9
9
  mypy_boto3_eks/paginator.pyi,sha256=cn674ie8pGurK1SRRoZERdTd56gF2t7NGEOYhzN8Vp4,20438
10
10
  mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_eks/type_defs.py,sha256=tVDvwjCZdCZDlVdaynv2WTl_uVeOVEYxcYa5BnOXK80,59126
12
- mypy_boto3_eks/type_defs.pyi,sha256=VALrf-0UyBDLoUQqYKxZs0brXGj1_Cw5V10OLvG9ZMI,58885
13
- mypy_boto3_eks/version.py,sha256=ZtEblsbAVbZWuGFYY23SYRu3T8sCoiDNfG49dV1XWUA,92
11
+ mypy_boto3_eks/type_defs.py,sha256=vbi-6eMdhZmVU82CzVemKGMQ6gOplYz2rskdAlOXVB0,59549
12
+ mypy_boto3_eks/type_defs.pyi,sha256=IT1Pz3gMlX6CfYkoIIWAiBuO-4-g5KHpDSOVs7lJWvY,59307
13
+ mypy_boto3_eks/version.py,sha256=aLKGJmxodYlE7i2btZqBdcB8RTTGw1f6JzSmoqyix3w,92
14
14
  mypy_boto3_eks/waiter.py,sha256=2vJjiTIw6nY3Kx4O2YIUk9MmTiHrf5ZZtPP8bOy_jd4,8664
15
15
  mypy_boto3_eks/waiter.pyi,sha256=ZkIrAD-cdgf6kBhiCJShJLpjHyVyzZrxjBQ2yI3cVJ0,8647
16
- mypy_boto3_eks-1.41.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
- mypy_boto3_eks-1.41.0.dist-info/METADATA,sha256=CV0j-ragIP_vHHf28mgujidspcPHS_XZCnAQaSQ8QHI,17703
18
- mypy_boto3_eks-1.41.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- mypy_boto3_eks-1.41.0.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
- mypy_boto3_eks-1.41.0.dist-info/RECORD,,
16
+ mypy_boto3_eks-1.41.2.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ mypy_boto3_eks-1.41.2.dist-info/METADATA,sha256=yHkAra4vcKozLChlV6gmYST5q0LcZfXn4PGhgIOo93w,17703
18
+ mypy_boto3_eks-1.41.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ mypy_boto3_eks-1.41.2.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
+ mypy_boto3_eks-1.41.2.dist-info/RECORD,,