types-boto3-eks 1.40.59__py3-none-any.whl → 1.41.0__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.0\n"
16
+ "Version: 1.41.0\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.0\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
 
@@ -349,7 +349,6 @@ ServiceName = Literal[
349
349
  "apprunner",
350
350
  "appstream",
351
351
  "appsync",
352
- "apptest",
353
352
  "arc-region-switch",
354
353
  "arc-zonal-shift",
355
354
  "artifact",
@@ -517,7 +516,6 @@ ServiceName = Literal[
517
516
  "iotdeviceadvisor",
518
517
  "iotevents",
519
518
  "iotevents-data",
520
- "iotfleethub",
521
519
  "iotfleetwise",
522
520
  "iotsecuretunneling",
523
521
  "iotsitewise",
@@ -556,8 +554,6 @@ ServiceName = Literal[
556
554
  "location",
557
555
  "logs",
558
556
  "lookoutequipment",
559
- "lookoutmetrics",
560
- "lookoutvision",
561
557
  "m2",
562
558
  "machinelearning",
563
559
  "macie2",
@@ -592,6 +588,7 @@ ServiceName = Literal[
592
588
  "mq",
593
589
  "mturk",
594
590
  "mwaa",
591
+ "mwaa-serverless",
595
592
  "neptune",
596
593
  "neptune-graph",
597
594
  "neptunedata",
@@ -611,6 +608,7 @@ ServiceName = Literal[
611
608
  "osis",
612
609
  "outposts",
613
610
  "panorama",
611
+ "partnercentral-channel",
614
612
  "partnercentral-selling",
615
613
  "payment-cryptography",
616
614
  "payment-cryptography-data",
@@ -632,8 +630,6 @@ ServiceName = Literal[
632
630
  "qapps",
633
631
  "qbusiness",
634
632
  "qconnect",
635
- "qldb",
636
- "qldb-session",
637
633
  "quicksight",
638
634
  "ram",
639
635
  "rbin",
@@ -648,7 +644,6 @@ ServiceName = Literal[
648
644
  "resource-explorer-2",
649
645
  "resource-groups",
650
646
  "resourcegroupstaggingapi",
651
- "robomaker",
652
647
  "rolesanywhere",
653
648
  "route53",
654
649
  "route53-recovery-cluster",
@@ -688,6 +683,7 @@ ServiceName = Literal[
688
683
  "sesv2",
689
684
  "shield",
690
685
  "signer",
686
+ "signin",
691
687
  "simspaceweaver",
692
688
  "snow-device-management",
693
689
  "snowball",
@@ -347,7 +347,6 @@ ServiceName = Literal[
347
347
  "apprunner",
348
348
  "appstream",
349
349
  "appsync",
350
- "apptest",
351
350
  "arc-region-switch",
352
351
  "arc-zonal-shift",
353
352
  "artifact",
@@ -515,7 +514,6 @@ ServiceName = Literal[
515
514
  "iotdeviceadvisor",
516
515
  "iotevents",
517
516
  "iotevents-data",
518
- "iotfleethub",
519
517
  "iotfleetwise",
520
518
  "iotsecuretunneling",
521
519
  "iotsitewise",
@@ -554,8 +552,6 @@ ServiceName = Literal[
554
552
  "location",
555
553
  "logs",
556
554
  "lookoutequipment",
557
- "lookoutmetrics",
558
- "lookoutvision",
559
555
  "m2",
560
556
  "machinelearning",
561
557
  "macie2",
@@ -590,6 +586,7 @@ ServiceName = Literal[
590
586
  "mq",
591
587
  "mturk",
592
588
  "mwaa",
589
+ "mwaa-serverless",
593
590
  "neptune",
594
591
  "neptune-graph",
595
592
  "neptunedata",
@@ -609,6 +606,7 @@ ServiceName = Literal[
609
606
  "osis",
610
607
  "outposts",
611
608
  "panorama",
609
+ "partnercentral-channel",
612
610
  "partnercentral-selling",
613
611
  "payment-cryptography",
614
612
  "payment-cryptography-data",
@@ -630,8 +628,6 @@ ServiceName = Literal[
630
628
  "qapps",
631
629
  "qbusiness",
632
630
  "qconnect",
633
- "qldb",
634
- "qldb-session",
635
631
  "quicksight",
636
632
  "ram",
637
633
  "rbin",
@@ -646,7 +642,6 @@ ServiceName = Literal[
646
642
  "resource-explorer-2",
647
643
  "resource-groups",
648
644
  "resourcegroupstaggingapi",
649
- "robomaker",
650
645
  "rolesanywhere",
651
646
  "route53",
652
647
  "route53-recovery-cluster",
@@ -686,6 +681,7 @@ ServiceName = Literal[
686
681
  "sesv2",
687
682
  "shield",
688
683
  "signer",
684
+ "signin",
689
685
  "simspaceweaver",
690
686
  "snow-device-management",
691
687
  "snowball",