mypy-boto3-eks 1.40.0__py3-none-any.whl → 1.40.14__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.40.0\n"
16
- "Version: 1.40.0\n"
15
+ "Type annotations for boto3 EKS 1.40.14\n"
16
+ "Version: 1.40.14\n"
17
17
  "Builder version: 8.11.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.40.0\n")
29
+ sys.stdout.write("1.40.14\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -265,6 +265,7 @@ UpdateParamTypeType = Literal[
265
265
  "ClusterLogging",
266
266
  "ComputeConfig",
267
267
  "ConfigurationValues",
268
+ "DeletionProtection",
268
269
  "DesiredSize",
269
270
  "EncryptionConfig",
270
271
  "EndpointPrivateAccess",
@@ -305,6 +306,7 @@ UpdateTypeType = Literal[
305
306
  "AssociateIdentityProviderConfig",
306
307
  "AutoModeUpdate",
307
308
  "ConfigUpdate",
309
+ "DeletionProtectionUpdate",
308
310
  "DisassociateIdentityProviderConfig",
309
311
  "EndpointAccessUpdate",
310
312
  "LoggingUpdate",
@@ -343,6 +345,7 @@ ServiceName = Literal[
343
345
  "appstream",
344
346
  "appsync",
345
347
  "apptest",
348
+ "arc-region-switch",
346
349
  "arc-zonal-shift",
347
350
  "artifact",
348
351
  "athena",
@@ -354,8 +357,10 @@ ServiceName = Literal[
354
357
  "backup-gateway",
355
358
  "backupsearch",
356
359
  "batch",
360
+ "bcm-dashboards",
357
361
  "bcm-data-exports",
358
362
  "bcm-pricing-calculator",
363
+ "bcm-recommended-actions",
359
364
  "bedrock",
360
365
  "bedrock-agent",
361
366
  "bedrock-agent-runtime",
@@ -263,6 +263,7 @@ UpdateParamTypeType = Literal[
263
263
  "ClusterLogging",
264
264
  "ComputeConfig",
265
265
  "ConfigurationValues",
266
+ "DeletionProtection",
266
267
  "DesiredSize",
267
268
  "EncryptionConfig",
268
269
  "EndpointPrivateAccess",
@@ -303,6 +304,7 @@ UpdateTypeType = Literal[
303
304
  "AssociateIdentityProviderConfig",
304
305
  "AutoModeUpdate",
305
306
  "ConfigUpdate",
307
+ "DeletionProtectionUpdate",
306
308
  "DisassociateIdentityProviderConfig",
307
309
  "EndpointAccessUpdate",
308
310
  "LoggingUpdate",
@@ -341,6 +343,7 @@ ServiceName = Literal[
341
343
  "appstream",
342
344
  "appsync",
343
345
  "apptest",
346
+ "arc-region-switch",
344
347
  "arc-zonal-shift",
345
348
  "artifact",
346
349
  "athena",
@@ -352,8 +355,10 @@ ServiceName = Literal[
352
355
  "backup-gateway",
353
356
  "backupsearch",
354
357
  "batch",
358
+ "bcm-dashboards",
355
359
  "bcm-data-exports",
356
360
  "bcm-pricing-calculator",
361
+ "bcm-recommended-actions",
357
362
  "bedrock",
358
363
  "bedrock-agent",
359
364
  "bedrock-agent-runtime",
@@ -75,6 +75,8 @@ __all__ = (
75
75
  "AddonHealthTypeDef",
76
76
  "AddonInfoTypeDef",
77
77
  "AddonIssueTypeDef",
78
+ "AddonNamespaceConfigRequestTypeDef",
79
+ "AddonNamespaceConfigResponseTypeDef",
78
80
  "AddonPodIdentityAssociationsTypeDef",
79
81
  "AddonPodIdentityConfigurationTypeDef",
80
82
  "AddonTypeDef",
@@ -365,6 +367,14 @@ class MarketplaceInformationTypeDef(TypedDict):
365
367
  productUrl: NotRequired[str]
366
368
 
367
369
 
370
+ class AddonNamespaceConfigRequestTypeDef(TypedDict):
371
+ namespace: NotRequired[str]
372
+
373
+
374
+ class AddonNamespaceConfigResponseTypeDef(TypedDict):
375
+ namespace: NotRequired[str]
376
+
377
+
368
378
  class AddonPodIdentityAssociationsTypeDef(TypedDict):
369
379
  serviceAccount: str
370
380
  roleArn: str
@@ -1023,6 +1033,7 @@ class CreateAddonRequestTypeDef(TypedDict):
1023
1033
  tags: NotRequired[Mapping[str, str]]
1024
1034
  configurationValues: NotRequired[str]
1025
1035
  podIdentityAssociations: NotRequired[Sequence[AddonPodIdentityAssociationsTypeDef]]
1036
+ namespaceConfig: NotRequired[AddonNamespaceConfigRequestTypeDef]
1026
1037
 
1027
1038
 
1028
1039
  class UpdateAddonRequestTypeDef(TypedDict):
@@ -1540,6 +1551,7 @@ class AddonTypeDef(TypedDict):
1540
1551
  marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
1541
1552
  configurationValues: NotRequired[str]
1542
1553
  podIdentityAssociations: NotRequired[List[str]]
1554
+ namespaceConfig: NotRequired[AddonNamespaceConfigResponseTypeDef]
1543
1555
 
1544
1556
 
1545
1557
  AddonInfoTypeDef = TypedDict(
@@ -1551,6 +1563,7 @@ AddonInfoTypeDef = TypedDict(
1551
1563
  "publisher": NotRequired[str],
1552
1564
  "owner": NotRequired[str],
1553
1565
  "marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
1566
+ "defaultNamespace": NotRequired[str],
1554
1567
  },
1555
1568
  )
1556
1569
 
@@ -1715,6 +1728,7 @@ ClusterTypeDef = TypedDict(
1715
1728
  "remoteNetworkConfig": NotRequired[RemoteNetworkConfigResponseTypeDef],
1716
1729
  "computeConfig": NotRequired[ComputeConfigResponseTypeDef],
1717
1730
  "storageConfig": NotRequired[StorageConfigResponseTypeDef],
1731
+ "deletionProtection": NotRequired[bool],
1718
1732
  },
1719
1733
  )
1720
1734
 
@@ -1889,6 +1903,7 @@ class CreateClusterRequestTypeDef(TypedDict):
1889
1903
  remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
1890
1904
  computeConfig: NotRequired[ComputeConfigRequestTypeDef]
1891
1905
  storageConfig: NotRequired[StorageConfigRequestTypeDef]
1906
+ deletionProtection: NotRequired[bool]
1892
1907
 
1893
1908
 
1894
1909
  class UpdateClusterConfigRequestTypeDef(TypedDict):
@@ -1903,6 +1918,7 @@ class UpdateClusterConfigRequestTypeDef(TypedDict):
1903
1918
  kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
1904
1919
  storageConfig: NotRequired[StorageConfigRequestTypeDef]
1905
1920
  remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
1921
+ deletionProtection: NotRequired[bool]
1906
1922
 
1907
1923
 
1908
1924
  class DescribeInsightResponseTypeDef(TypedDict):
@@ -74,6 +74,8 @@ __all__ = (
74
74
  "AddonHealthTypeDef",
75
75
  "AddonInfoTypeDef",
76
76
  "AddonIssueTypeDef",
77
+ "AddonNamespaceConfigRequestTypeDef",
78
+ "AddonNamespaceConfigResponseTypeDef",
77
79
  "AddonPodIdentityAssociationsTypeDef",
78
80
  "AddonPodIdentityConfigurationTypeDef",
79
81
  "AddonTypeDef",
@@ -356,6 +358,12 @@ class MarketplaceInformationTypeDef(TypedDict):
356
358
  productId: NotRequired[str]
357
359
  productUrl: NotRequired[str]
358
360
 
361
+ class AddonNamespaceConfigRequestTypeDef(TypedDict):
362
+ namespace: NotRequired[str]
363
+
364
+ class AddonNamespaceConfigResponseTypeDef(TypedDict):
365
+ namespace: NotRequired[str]
366
+
359
367
  class AddonPodIdentityAssociationsTypeDef(TypedDict):
360
368
  serviceAccount: str
361
369
  roleArn: str
@@ -914,6 +922,7 @@ class CreateAddonRequestTypeDef(TypedDict):
914
922
  tags: NotRequired[Mapping[str, str]]
915
923
  configurationValues: NotRequired[str]
916
924
  podIdentityAssociations: NotRequired[Sequence[AddonPodIdentityAssociationsTypeDef]]
925
+ namespaceConfig: NotRequired[AddonNamespaceConfigRequestTypeDef]
917
926
 
918
927
  class UpdateAddonRequestTypeDef(TypedDict):
919
928
  clusterName: str
@@ -1354,6 +1363,7 @@ class AddonTypeDef(TypedDict):
1354
1363
  marketplaceInformation: NotRequired[MarketplaceInformationTypeDef]
1355
1364
  configurationValues: NotRequired[str]
1356
1365
  podIdentityAssociations: NotRequired[List[str]]
1366
+ namespaceConfig: NotRequired[AddonNamespaceConfigResponseTypeDef]
1357
1367
 
1358
1368
  AddonInfoTypeDef = TypedDict(
1359
1369
  "AddonInfoTypeDef",
@@ -1364,6 +1374,7 @@ AddonInfoTypeDef = TypedDict(
1364
1374
  "publisher": NotRequired[str],
1365
1375
  "owner": NotRequired[str],
1366
1376
  "marketplaceInformation": NotRequired[MarketplaceInformationTypeDef],
1377
+ "defaultNamespace": NotRequired[str],
1367
1378
  },
1368
1379
  )
1369
1380
 
@@ -1512,6 +1523,7 @@ ClusterTypeDef = TypedDict(
1512
1523
  "remoteNetworkConfig": NotRequired[RemoteNetworkConfigResponseTypeDef],
1513
1524
  "computeConfig": NotRequired[ComputeConfigResponseTypeDef],
1514
1525
  "storageConfig": NotRequired[StorageConfigResponseTypeDef],
1526
+ "deletionProtection": NotRequired[bool],
1515
1527
  },
1516
1528
  )
1517
1529
 
@@ -1658,6 +1670,7 @@ class CreateClusterRequestTypeDef(TypedDict):
1658
1670
  remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
1659
1671
  computeConfig: NotRequired[ComputeConfigRequestTypeDef]
1660
1672
  storageConfig: NotRequired[StorageConfigRequestTypeDef]
1673
+ deletionProtection: NotRequired[bool]
1661
1674
 
1662
1675
  class UpdateClusterConfigRequestTypeDef(TypedDict):
1663
1676
  name: str
@@ -1671,6 +1684,7 @@ class UpdateClusterConfigRequestTypeDef(TypedDict):
1671
1684
  kubernetesNetworkConfig: NotRequired[KubernetesNetworkConfigRequestTypeDef]
1672
1685
  storageConfig: NotRequired[StorageConfigRequestTypeDef]
1673
1686
  remoteNetworkConfig: NotRequired[RemoteNetworkConfigRequestTypeDef]
1687
+ deletionProtection: NotRequired[bool]
1674
1688
 
1675
1689
  class DescribeInsightResponseTypeDef(TypedDict):
1676
1690
  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.40.0"
7
+ __version__ = "1.40.14"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mypy-boto3-eks
3
- Version: 1.40.0
4
- Summary: Type annotations for boto3 EKS 1.40.0 service generated with mypy-boto3-builder 8.11.0
3
+ Version: 1.40.14
4
+ Summary: Type annotations for boto3 EKS 1.40.14 service generated with mypy-boto3-builder 8.11.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
@@ -56,7 +56,7 @@ Dynamic: summary
56
56
 
57
57
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
58
58
 
59
- Type annotations for [boto3 EKS 1.40.0](https://pypi.org/project/boto3/)
59
+ Type annotations for [boto3 EKS 1.40.14](https://pypi.org/project/boto3/)
60
60
  compatible with [VSCode](https://code.visualstudio.com/),
61
61
  [PyCharm](https://www.jetbrains.com/pycharm/),
62
62
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
119
119
  isolation.
120
120
 
121
121
  1. Run mypy-boto3-builder in your package root directory:
122
- `uvx --with 'boto3==1.40.0' mypy-boto3-builder`
122
+ `uvx --with 'boto3==1.40.14' mypy-boto3-builder`
123
123
  2. Select `boto3-stubs` AWS SDK.
124
124
  3. Add `EKS` service.
125
125
  4. Use provided commands to install generated packages.
@@ -0,0 +1,20 @@
1
+ mypy_boto3_eks/__init__.py,sha256=2ny7DX2h2EqSXWmXoLROuwapCrk5WWG82Cytg9gBFoA,5066
2
+ mypy_boto3_eks/__init__.pyi,sha256=Vn_LcRXy2FU1PJjnQvnE8BMRwPFC8_X1P1UnZbFY2Zs,5065
3
+ mypy_boto3_eks/__main__.py,sha256=MmYfnjiYghjit6xfr0ZKQ6VEcZ9qeyK9JoMX1Xj8MqQ,968
4
+ mypy_boto3_eks/client.py,sha256=NqhtmiaelO6gPDGNJUkv8Ds8537TWfOPVk9nbImqpao,49426
5
+ mypy_boto3_eks/client.pyi,sha256=ycr-tlt3fZCCNh4th9TuOm7ZI2mYqaehpN7UaRl7_Qk,49423
6
+ mypy_boto3_eks/literals.py,sha256=W6GTOsNZ6r5Tw8STrHbOBLHfK3vEEJae9nKwKrrzvpk,19886
7
+ mypy_boto3_eks/literals.pyi,sha256=5SFZoPbyh1zUBvFqh7BRB7I-H8YhBbk-GUsQYRUuO2o,19884
8
+ mypy_boto3_eks/paginator.py,sha256=3yFhQFg-bh-hJOlMggBZeCd-xonLBWmXnBG1HRNiDL4,20481
9
+ mypy_boto3_eks/paginator.pyi,sha256=cn674ie8pGurK1SRRoZERdTd56gF2t7NGEOYhzN8Vp4,20438
10
+ mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_eks/type_defs.py,sha256=WSIG1OJrtpCkgMt8kEdE3draWBdkPh-Eleu5kwrS7gw,57403
12
+ mypy_boto3_eks/type_defs.pyi,sha256=1Ur5bmt8RjOAWP6bY-3VuCybKvafsmvXiJp1YeOuFXw,57168
13
+ mypy_boto3_eks/version.py,sha256=yx4TXfA7frT22svKZb5oIUbOh_laGJb51_7cJeePnRs,93
14
+ mypy_boto3_eks/waiter.py,sha256=2vJjiTIw6nY3Kx4O2YIUk9MmTiHrf5ZZtPP8bOy_jd4,8664
15
+ mypy_boto3_eks/waiter.pyi,sha256=ZkIrAD-cdgf6kBhiCJShJLpjHyVyzZrxjBQ2yI3cVJ0,8647
16
+ mypy_boto3_eks-1.40.14.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ mypy_boto3_eks-1.40.14.dist-info/METADATA,sha256=F74o5IS80TiSCbNl_RNG4VBWqe1kipefWzWHelqLkAE,18038
18
+ mypy_boto3_eks-1.40.14.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ mypy_boto3_eks-1.40.14.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
+ mypy_boto3_eks-1.40.14.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- mypy_boto3_eks/__init__.py,sha256=2ny7DX2h2EqSXWmXoLROuwapCrk5WWG82Cytg9gBFoA,5066
2
- mypy_boto3_eks/__init__.pyi,sha256=Vn_LcRXy2FU1PJjnQvnE8BMRwPFC8_X1P1UnZbFY2Zs,5065
3
- mypy_boto3_eks/__main__.py,sha256=owNuk7rSbAIMn8Btc6QXDbZxX5scyT1BZnWn_th8z6Q,965
4
- mypy_boto3_eks/client.py,sha256=NqhtmiaelO6gPDGNJUkv8Ds8537TWfOPVk9nbImqpao,49426
5
- mypy_boto3_eks/client.pyi,sha256=ycr-tlt3fZCCNh4th9TuOm7ZI2mYqaehpN7UaRl7_Qk,49423
6
- mypy_boto3_eks/literals.py,sha256=u8NF-v6CVeY4hj5DeE7_5-OdaIIAwef7pNKk5kO0JhE,19750
7
- mypy_boto3_eks/literals.pyi,sha256=hXB4qHEfw8WwZEPVBIgCkLz9vmxMhhmgPlaD5_JxR9A,19748
8
- mypy_boto3_eks/paginator.py,sha256=3yFhQFg-bh-hJOlMggBZeCd-xonLBWmXnBG1HRNiDL4,20481
9
- mypy_boto3_eks/paginator.pyi,sha256=cn674ie8pGurK1SRRoZERdTd56gF2t7NGEOYhzN8Vp4,20438
10
- mypy_boto3_eks/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_eks/type_defs.py,sha256=1X17p8rnBlzFGszmPcLAaFmi42U4FOmtsbOaxOpK4-w,56825
12
- mypy_boto3_eks/type_defs.pyi,sha256=h62LpZuBi4vLUl4725GhJMXzzXe0YyBB0AC6aDhJhuw,56592
13
- mypy_boto3_eks/version.py,sha256=52Sk0XpA8tC09WfcAI6nm69vLa0ysg1C33ACO_NFSwc,92
14
- mypy_boto3_eks/waiter.py,sha256=2vJjiTIw6nY3Kx4O2YIUk9MmTiHrf5ZZtPP8bOy_jd4,8664
15
- mypy_boto3_eks/waiter.pyi,sha256=ZkIrAD-cdgf6kBhiCJShJLpjHyVyzZrxjBQ2yI3cVJ0,8647
16
- mypy_boto3_eks-1.40.0.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
- mypy_boto3_eks-1.40.0.dist-info/METADATA,sha256=QFIofKiY6gdlrMdgBfmPFjkZXdtesNbRNLEUfyuaMuU,18034
18
- mypy_boto3_eks-1.40.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- mypy_boto3_eks-1.40.0.dist-info/top_level.txt,sha256=WzyqlAH5WFvCFI-LKEMwG_Khgagcx_dFpnoibGYNbA0,15
20
- mypy_boto3_eks-1.40.0.dist-info/RECORD,,