types-boto3-eks 1.40.59__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,9 +12,9 @@ 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.59\n"
16
- "Version: 1.40.59\n"
17
- "Builder version: 8.11.0\n"
15
+ "Type annotations for boto3 EKS 1.41.2\n"
16
+ "Version: 1.41.2\n"
17
+ "Builder version: 8.12.0\n"
18
18
  "Docs: https://youtype.github.io/types_boto3_docs/types_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
- sys.stdout.write("1.40.59\n")
29
+ sys.stdout.write("1.41.2\n")
30
30
 
31
31
 
32
32
  def main() -> None:
types_boto3_eks/client.py CHANGED
@@ -19,6 +19,7 @@ Usage::
19
19
  from __future__ import annotations
20
20
 
21
21
  import sys
22
+ from collections.abc import Mapping
22
23
  from typing import Any, overload
23
24
 
24
25
  from botocore.client import BaseClient, ClientMeta
@@ -168,12 +169,6 @@ from .waiter import (
168
169
  NodegroupDeletedWaiter,
169
170
  )
170
171
 
171
- if sys.version_info >= (3, 9):
172
- from builtins import dict as Dict
173
- from builtins import type as Type
174
- from collections.abc import Mapping
175
- else:
176
- from typing import Dict, Mapping, Type
177
172
  if sys.version_info >= (3, 12):
178
173
  from typing import Literal, Unpack
179
174
  else:
@@ -184,22 +179,22 @@ __all__ = ("EKSClient",)
184
179
 
185
180
 
186
181
  class Exceptions(BaseClientExceptions):
187
- AccessDeniedException: Type[BotocoreClientError]
188
- BadRequestException: Type[BotocoreClientError]
189
- ClientError: Type[BotocoreClientError]
190
- ClientException: Type[BotocoreClientError]
191
- InvalidParameterException: Type[BotocoreClientError]
192
- InvalidRequestException: Type[BotocoreClientError]
193
- InvalidStateException: Type[BotocoreClientError]
194
- NotFoundException: Type[BotocoreClientError]
195
- ResourceInUseException: Type[BotocoreClientError]
196
- ResourceLimitExceededException: Type[BotocoreClientError]
197
- ResourceNotFoundException: Type[BotocoreClientError]
198
- ResourcePropagationDelayException: Type[BotocoreClientError]
199
- ServerException: Type[BotocoreClientError]
200
- ServiceUnavailableException: Type[BotocoreClientError]
201
- ThrottlingException: Type[BotocoreClientError]
202
- UnsupportedAvailabilityZoneException: Type[BotocoreClientError]
182
+ AccessDeniedException: type[BotocoreClientError]
183
+ BadRequestException: type[BotocoreClientError]
184
+ ClientError: type[BotocoreClientError]
185
+ ClientException: type[BotocoreClientError]
186
+ InvalidParameterException: type[BotocoreClientError]
187
+ InvalidRequestException: type[BotocoreClientError]
188
+ InvalidStateException: type[BotocoreClientError]
189
+ NotFoundException: type[BotocoreClientError]
190
+ ResourceInUseException: type[BotocoreClientError]
191
+ ResourceLimitExceededException: type[BotocoreClientError]
192
+ ResourceNotFoundException: type[BotocoreClientError]
193
+ ResourcePropagationDelayException: type[BotocoreClientError]
194
+ ServerException: type[BotocoreClientError]
195
+ ServiceUnavailableException: type[BotocoreClientError]
196
+ ThrottlingException: type[BotocoreClientError]
197
+ UnsupportedAvailabilityZoneException: type[BotocoreClientError]
203
198
 
204
199
 
205
200
  class EKSClient(BaseClient):
@@ -340,7 +335,7 @@ class EKSClient(BaseClient):
340
335
 
341
336
  def delete_access_entry(
342
337
  self, **kwargs: Unpack[DeleteAccessEntryRequestTypeDef]
343
- ) -> Dict[str, Any]:
338
+ ) -> dict[str, Any]:
344
339
  """
345
340
  Deletes an access entry.
346
341
 
@@ -560,7 +555,7 @@ class EKSClient(BaseClient):
560
555
 
561
556
  def disassociate_access_policy(
562
557
  self, **kwargs: Unpack[DisassociateAccessPolicyRequestTypeDef]
563
- ) -> Dict[str, Any]:
558
+ ) -> dict[str, Any]:
564
559
  """
565
560
  Disassociates an access policy from an access entry.
566
561
 
@@ -731,7 +726,7 @@ class EKSClient(BaseClient):
731
726
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#start_insights_refresh)
732
727
  """
733
728
 
734
- def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> Dict[str, Any]:
729
+ def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> dict[str, Any]:
735
730
  """
736
731
  Associates the specified tags to an Amazon EKS resource with the specified
737
732
  <code>resourceArn</code>.
@@ -740,7 +735,7 @@ class EKSClient(BaseClient):
740
735
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#tag_resource)
741
736
  """
742
737
 
743
- def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) -> Dict[str, Any]:
738
+ def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) -> dict[str, Any]:
744
739
  """
745
740
  Deletes specified tags from an Amazon EKS resource.
746
741
 
@@ -19,6 +19,7 @@ Usage::
19
19
  from __future__ import annotations
20
20
 
21
21
  import sys
22
+ from collections.abc import Mapping
22
23
  from typing import Any, overload
23
24
 
24
25
  from botocore.client import BaseClient, ClientMeta
@@ -168,12 +169,6 @@ from .waiter import (
168
169
  NodegroupDeletedWaiter,
169
170
  )
170
171
 
171
- if sys.version_info >= (3, 9):
172
- from builtins import dict as Dict
173
- from builtins import type as Type
174
- from collections.abc import Mapping
175
- else:
176
- from typing import Dict, Mapping, Type
177
172
  if sys.version_info >= (3, 12):
178
173
  from typing import Literal, Unpack
179
174
  else:
@@ -182,22 +177,22 @@ else:
182
177
  __all__ = ("EKSClient",)
183
178
 
184
179
  class Exceptions(BaseClientExceptions):
185
- AccessDeniedException: Type[BotocoreClientError]
186
- BadRequestException: Type[BotocoreClientError]
187
- ClientError: Type[BotocoreClientError]
188
- ClientException: Type[BotocoreClientError]
189
- InvalidParameterException: Type[BotocoreClientError]
190
- InvalidRequestException: Type[BotocoreClientError]
191
- InvalidStateException: Type[BotocoreClientError]
192
- NotFoundException: Type[BotocoreClientError]
193
- ResourceInUseException: Type[BotocoreClientError]
194
- ResourceLimitExceededException: Type[BotocoreClientError]
195
- ResourceNotFoundException: Type[BotocoreClientError]
196
- ResourcePropagationDelayException: Type[BotocoreClientError]
197
- ServerException: Type[BotocoreClientError]
198
- ServiceUnavailableException: Type[BotocoreClientError]
199
- ThrottlingException: Type[BotocoreClientError]
200
- UnsupportedAvailabilityZoneException: Type[BotocoreClientError]
180
+ AccessDeniedException: type[BotocoreClientError]
181
+ BadRequestException: type[BotocoreClientError]
182
+ ClientError: type[BotocoreClientError]
183
+ ClientException: type[BotocoreClientError]
184
+ InvalidParameterException: type[BotocoreClientError]
185
+ InvalidRequestException: type[BotocoreClientError]
186
+ InvalidStateException: type[BotocoreClientError]
187
+ NotFoundException: type[BotocoreClientError]
188
+ ResourceInUseException: type[BotocoreClientError]
189
+ ResourceLimitExceededException: type[BotocoreClientError]
190
+ ResourceNotFoundException: type[BotocoreClientError]
191
+ ResourcePropagationDelayException: type[BotocoreClientError]
192
+ ServerException: type[BotocoreClientError]
193
+ ServiceUnavailableException: type[BotocoreClientError]
194
+ ThrottlingException: type[BotocoreClientError]
195
+ UnsupportedAvailabilityZoneException: type[BotocoreClientError]
201
196
 
202
197
  class EKSClient(BaseClient):
203
198
  """
@@ -337,7 +332,7 @@ class EKSClient(BaseClient):
337
332
 
338
333
  def delete_access_entry(
339
334
  self, **kwargs: Unpack[DeleteAccessEntryRequestTypeDef]
340
- ) -> Dict[str, Any]:
335
+ ) -> dict[str, Any]:
341
336
  """
342
337
  Deletes an access entry.
343
338
 
@@ -557,7 +552,7 @@ class EKSClient(BaseClient):
557
552
 
558
553
  def disassociate_access_policy(
559
554
  self, **kwargs: Unpack[DisassociateAccessPolicyRequestTypeDef]
560
- ) -> Dict[str, Any]:
555
+ ) -> dict[str, Any]:
561
556
  """
562
557
  Disassociates an access policy from an access entry.
563
558
 
@@ -728,7 +723,7 @@ class EKSClient(BaseClient):
728
723
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#start_insights_refresh)
729
724
  """
730
725
 
731
- def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> Dict[str, Any]:
726
+ def tag_resource(self, **kwargs: Unpack[TagResourceRequestTypeDef]) -> dict[str, Any]:
732
727
  """
733
728
  Associates the specified tags to an Amazon EKS resource with the specified
734
729
  <code>resourceArn</code>.
@@ -737,7 +732,7 @@ class EKSClient(BaseClient):
737
732
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_eks/client/#tag_resource)
738
733
  """
739
734
 
740
- def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) -> Dict[str, Any]:
735
+ def untag_resource(self, **kwargs: Unpack[UntagResourceRequestTypeDef]) -> dict[str, Any]:
741
736
  """
742
737
  Deletes specified tags from an Amazon EKS resource.
743
738
 
@@ -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",
@@ -349,7 +354,6 @@ ServiceName = Literal[
349
354
  "apprunner",
350
355
  "appstream",
351
356
  "appsync",
352
- "apptest",
353
357
  "arc-region-switch",
354
358
  "arc-zonal-shift",
355
359
  "artifact",
@@ -419,6 +423,7 @@ ServiceName = Literal[
419
423
  "comprehend",
420
424
  "comprehendmedical",
421
425
  "compute-optimizer",
426
+ "compute-optimizer-automation",
422
427
  "config",
423
428
  "connect",
424
429
  "connect-contact-lens",
@@ -517,7 +522,6 @@ ServiceName = Literal[
517
522
  "iotdeviceadvisor",
518
523
  "iotevents",
519
524
  "iotevents-data",
520
- "iotfleethub",
521
525
  "iotfleetwise",
522
526
  "iotsecuretunneling",
523
527
  "iotsitewise",
@@ -556,8 +560,6 @@ ServiceName = Literal[
556
560
  "location",
557
561
  "logs",
558
562
  "lookoutequipment",
559
- "lookoutmetrics",
560
- "lookoutvision",
561
563
  "m2",
562
564
  "machinelearning",
563
565
  "macie2",
@@ -592,6 +594,7 @@ ServiceName = Literal[
592
594
  "mq",
593
595
  "mturk",
594
596
  "mwaa",
597
+ "mwaa-serverless",
595
598
  "neptune",
596
599
  "neptune-graph",
597
600
  "neptunedata",
@@ -611,6 +614,7 @@ ServiceName = Literal[
611
614
  "osis",
612
615
  "outposts",
613
616
  "panorama",
617
+ "partnercentral-channel",
614
618
  "partnercentral-selling",
615
619
  "payment-cryptography",
616
620
  "payment-cryptography-data",
@@ -632,8 +636,6 @@ ServiceName = Literal[
632
636
  "qapps",
633
637
  "qbusiness",
634
638
  "qconnect",
635
- "qldb",
636
- "qldb-session",
637
639
  "quicksight",
638
640
  "ram",
639
641
  "rbin",
@@ -648,7 +650,6 @@ ServiceName = Literal[
648
650
  "resource-explorer-2",
649
651
  "resource-groups",
650
652
  "resourcegroupstaggingapi",
651
- "robomaker",
652
653
  "rolesanywhere",
653
654
  "route53",
654
655
  "route53-recovery-cluster",
@@ -688,6 +689,7 @@ ServiceName = Literal[
688
689
  "sesv2",
689
690
  "shield",
690
691
  "signer",
692
+ "signin",
691
693
  "simspaceweaver",
692
694
  "snow-device-management",
693
695
  "snowball",
@@ -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",
@@ -347,7 +352,6 @@ ServiceName = Literal[
347
352
  "apprunner",
348
353
  "appstream",
349
354
  "appsync",
350
- "apptest",
351
355
  "arc-region-switch",
352
356
  "arc-zonal-shift",
353
357
  "artifact",
@@ -417,6 +421,7 @@ ServiceName = Literal[
417
421
  "comprehend",
418
422
  "comprehendmedical",
419
423
  "compute-optimizer",
424
+ "compute-optimizer-automation",
420
425
  "config",
421
426
  "connect",
422
427
  "connect-contact-lens",
@@ -515,7 +520,6 @@ ServiceName = Literal[
515
520
  "iotdeviceadvisor",
516
521
  "iotevents",
517
522
  "iotevents-data",
518
- "iotfleethub",
519
523
  "iotfleetwise",
520
524
  "iotsecuretunneling",
521
525
  "iotsitewise",
@@ -554,8 +558,6 @@ ServiceName = Literal[
554
558
  "location",
555
559
  "logs",
556
560
  "lookoutequipment",
557
- "lookoutmetrics",
558
- "lookoutvision",
559
561
  "m2",
560
562
  "machinelearning",
561
563
  "macie2",
@@ -590,6 +592,7 @@ ServiceName = Literal[
590
592
  "mq",
591
593
  "mturk",
592
594
  "mwaa",
595
+ "mwaa-serverless",
593
596
  "neptune",
594
597
  "neptune-graph",
595
598
  "neptunedata",
@@ -609,6 +612,7 @@ ServiceName = Literal[
609
612
  "osis",
610
613
  "outposts",
611
614
  "panorama",
615
+ "partnercentral-channel",
612
616
  "partnercentral-selling",
613
617
  "payment-cryptography",
614
618
  "payment-cryptography-data",
@@ -630,8 +634,6 @@ ServiceName = Literal[
630
634
  "qapps",
631
635
  "qbusiness",
632
636
  "qconnect",
633
- "qldb",
634
- "qldb-session",
635
637
  "quicksight",
636
638
  "ram",
637
639
  "rbin",
@@ -646,7 +648,6 @@ ServiceName = Literal[
646
648
  "resource-explorer-2",
647
649
  "resource-groups",
648
650
  "resourcegroupstaggingapi",
649
- "robomaker",
650
651
  "rolesanywhere",
651
652
  "route53",
652
653
  "route53-recovery-cluster",
@@ -686,6 +687,7 @@ ServiceName = Literal[
686
687
  "sesv2",
687
688
  "shield",
688
689
  "signer",
690
+ "signin",
689
691
  "simspaceweaver",
690
692
  "snow-device-management",
691
693
  "snowball",