types-boto3-autoscaling 1.35.71__py3-none-any.whl → 1.35.93__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.

Potentially problematic release.


This version of types-boto3-autoscaling might be problematic. Click here for more details.

@@ -37,7 +37,7 @@ Usage::
37
37
  describe_warm_pool_paginator: DescribeWarmPoolPaginator = client.get_paginator("describe_warm_pool")
38
38
  ```
39
39
 
40
- Copyright 2024 Vlad Emelianov
40
+ Copyright 2025 Vlad Emelianov
41
41
  """
42
42
 
43
43
  from .client import AutoScalingClient
@@ -37,7 +37,7 @@ Usage::
37
37
  describe_warm_pool_paginator: DescribeWarmPoolPaginator = client.get_paginator("describe_warm_pool")
38
38
  ```
39
39
 
40
- Copyright 2024 Vlad Emelianov
40
+ Copyright 2025 Vlad Emelianov
41
41
  """
42
42
 
43
43
  from .client import AutoScalingClient
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Main CLI entrypoint.
3
3
 
4
- Copyright 2024 Vlad Emelianov
4
+ Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
7
  import sys
@@ -11,14 +11,14 @@ def print_info() -> None:
11
11
  """
12
12
  Print package info to stdout.
13
13
  """
14
- print(
15
- "Type annotations for boto3 AutoScaling 1.35.71\n"
16
- "Version: 1.35.71\n"
17
- "Builder version: 8.4.1\n"
14
+ sys.stdout.write(
15
+ "Type annotations for boto3 AutoScaling 1.35.93\n"
16
+ "Version: 1.35.93\n"
17
+ "Builder version: 8.8.0\n"
18
18
  "Docs: https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling//\n"
19
19
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/autoscaling.html#autoscaling\n"
20
20
  "Other services: https://pypi.org/project/boto3-stubs/\n"
21
- "Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
21
+ "Changelog: https://github.com/youtype/mypy_boto3_builder/releases\n"
22
22
  )
23
23
 
24
24
 
@@ -26,7 +26,7 @@ def print_version() -> None:
26
26
  """
27
27
  Print package version to stdout.
28
28
  """
29
- print("1.35.71")
29
+ sys.stdout.write("1.35.93\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -34,7 +34,8 @@ def main() -> None:
34
34
  Main CLI entrypoint.
35
35
  """
36
36
  if "--version" in sys.argv:
37
- return print_version()
37
+ print_version()
38
+ return
38
39
  print_info()
39
40
 
40
41
 
@@ -1,7 +1,7 @@
1
1
  """
2
- Type annotations for autoscaling service client.
2
+ Type annotations for autoscaling service Client.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/)
5
5
 
6
6
  Usage::
7
7
 
@@ -13,13 +13,17 @@ Usage::
13
13
  client: AutoScalingClient = session.client("autoscaling")
14
14
  ```
15
15
 
16
- Copyright 2024 Vlad Emelianov
16
+ Copyright 2025 Vlad Emelianov
17
17
  """
18
18
 
19
+ from __future__ import annotations
20
+
19
21
  import sys
20
- from typing import Any, Dict, Mapping, Type, overload
22
+ from typing import Any, overload
21
23
 
22
24
  from botocore.client import BaseClient, ClientMeta
25
+ from botocore.errorfactory import BaseClientExceptions
26
+ from botocore.exceptions import ClientError as BotocoreClientError
23
27
 
24
28
  from .paginator import (
25
29
  DescribeAutoScalingGroupsPaginator,
@@ -127,6 +131,12 @@ from .type_defs import (
127
131
  UpdateAutoScalingGroupTypeRequestTypeDef,
128
132
  )
129
133
 
134
+ if sys.version_info >= (3, 9):
135
+ from builtins import dict as Dict
136
+ from builtins import type as Type
137
+ from collections.abc import Mapping
138
+ else:
139
+ from typing import Dict, Mapping, Type
130
140
  if sys.version_info >= (3, 12):
131
141
  from typing import Literal, Unpack
132
142
  else:
@@ -136,15 +146,7 @@ else:
136
146
  __all__ = ("AutoScalingClient",)
137
147
 
138
148
 
139
- class BotocoreClientError(Exception):
140
- MSG_TEMPLATE: str
141
-
142
- def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
143
- self.response: Dict[str, Any]
144
- self.operation_name: str
145
-
146
-
147
- class Exceptions:
149
+ class Exceptions(BaseClientExceptions):
148
150
  ActiveInstanceRefreshNotFoundFault: Type[BotocoreClientError]
149
151
  AlreadyExistsFault: Type[BotocoreClientError]
150
152
  ClientError: Type[BotocoreClientError]
@@ -193,12 +195,6 @@ class AutoScalingClient(BaseClient):
193
195
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#generate_presigned_url)
194
196
  """
195
197
 
196
- def close(self) -> None:
197
- """
198
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/autoscaling/client/close.html)
199
- [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#close)
200
- """
201
-
202
198
  def attach_instances(
203
199
  self, **kwargs: Unpack[AttachInstancesQueryRequestTypeDef]
204
200
  ) -> EmptyResponseMetadataTypeDef:
@@ -862,8 +858,8 @@ class AutoScalingClient(BaseClient):
862
858
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#update_auto_scaling_group)
863
859
  """
864
860
 
865
- @overload
866
- def get_paginator(
861
+ @overload # type: ignore[override]
862
+ def get_paginator( # type: ignore[override]
867
863
  self, operation_name: Literal["describe_auto_scaling_groups"]
868
864
  ) -> DescribeAutoScalingGroupsPaginator:
869
865
  """
@@ -873,8 +869,8 @@ class AutoScalingClient(BaseClient):
873
869
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
874
870
  """
875
871
 
876
- @overload
877
- def get_paginator(
872
+ @overload # type: ignore[override]
873
+ def get_paginator( # type: ignore[override]
878
874
  self, operation_name: Literal["describe_auto_scaling_instances"]
879
875
  ) -> DescribeAutoScalingInstancesPaginator:
880
876
  """
@@ -884,8 +880,8 @@ class AutoScalingClient(BaseClient):
884
880
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
885
881
  """
886
882
 
887
- @overload
888
- def get_paginator(
883
+ @overload # type: ignore[override]
884
+ def get_paginator( # type: ignore[override]
889
885
  self, operation_name: Literal["describe_launch_configurations"]
890
886
  ) -> DescribeLaunchConfigurationsPaginator:
891
887
  """
@@ -895,8 +891,8 @@ class AutoScalingClient(BaseClient):
895
891
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
896
892
  """
897
893
 
898
- @overload
899
- def get_paginator(
894
+ @overload # type: ignore[override]
895
+ def get_paginator( # type: ignore[override]
900
896
  self, operation_name: Literal["describe_load_balancer_target_groups"]
901
897
  ) -> DescribeLoadBalancerTargetGroupsPaginator:
902
898
  """
@@ -906,8 +902,8 @@ class AutoScalingClient(BaseClient):
906
902
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
907
903
  """
908
904
 
909
- @overload
910
- def get_paginator(
905
+ @overload # type: ignore[override]
906
+ def get_paginator( # type: ignore[override]
911
907
  self, operation_name: Literal["describe_load_balancers"]
912
908
  ) -> DescribeLoadBalancersPaginator:
913
909
  """
@@ -917,8 +913,8 @@ class AutoScalingClient(BaseClient):
917
913
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
918
914
  """
919
915
 
920
- @overload
921
- def get_paginator(
916
+ @overload # type: ignore[override]
917
+ def get_paginator( # type: ignore[override]
922
918
  self, operation_name: Literal["describe_notification_configurations"]
923
919
  ) -> DescribeNotificationConfigurationsPaginator:
924
920
  """
@@ -928,8 +924,8 @@ class AutoScalingClient(BaseClient):
928
924
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
929
925
  """
930
926
 
931
- @overload
932
- def get_paginator(
927
+ @overload # type: ignore[override]
928
+ def get_paginator( # type: ignore[override]
933
929
  self, operation_name: Literal["describe_policies"]
934
930
  ) -> DescribePoliciesPaginator:
935
931
  """
@@ -939,8 +935,8 @@ class AutoScalingClient(BaseClient):
939
935
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
940
936
  """
941
937
 
942
- @overload
943
- def get_paginator(
938
+ @overload # type: ignore[override]
939
+ def get_paginator( # type: ignore[override]
944
940
  self, operation_name: Literal["describe_scaling_activities"]
945
941
  ) -> DescribeScalingActivitiesPaginator:
946
942
  """
@@ -950,8 +946,8 @@ class AutoScalingClient(BaseClient):
950
946
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
951
947
  """
952
948
 
953
- @overload
954
- def get_paginator(
949
+ @overload # type: ignore[override]
950
+ def get_paginator( # type: ignore[override]
955
951
  self, operation_name: Literal["describe_scheduled_actions"]
956
952
  ) -> DescribeScheduledActionsPaginator:
957
953
  """
@@ -961,8 +957,10 @@ class AutoScalingClient(BaseClient):
961
957
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
962
958
  """
963
959
 
964
- @overload
965
- def get_paginator(self, operation_name: Literal["describe_tags"]) -> DescribeTagsPaginator:
960
+ @overload # type: ignore[override]
961
+ def get_paginator( # type: ignore[override]
962
+ self, operation_name: Literal["describe_tags"]
963
+ ) -> DescribeTagsPaginator:
966
964
  """
967
965
  Create a paginator for an operation.
968
966
 
@@ -970,8 +968,8 @@ class AutoScalingClient(BaseClient):
970
968
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
971
969
  """
972
970
 
973
- @overload
974
- def get_paginator(
971
+ @overload # type: ignore[override]
972
+ def get_paginator( # type: ignore[override]
975
973
  self, operation_name: Literal["describe_warm_pool"]
976
974
  ) -> DescribeWarmPoolPaginator:
977
975
  """
@@ -1,7 +1,7 @@
1
1
  """
2
- Type annotations for autoscaling service client.
2
+ Type annotations for autoscaling service Client.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/)
5
5
 
6
6
  Usage::
7
7
 
@@ -13,13 +13,17 @@ Usage::
13
13
  client: AutoScalingClient = session.client("autoscaling")
14
14
  ```
15
15
 
16
- Copyright 2024 Vlad Emelianov
16
+ Copyright 2025 Vlad Emelianov
17
17
  """
18
18
 
19
+ from __future__ import annotations
20
+
19
21
  import sys
20
- from typing import Any, Dict, Mapping, Type, overload
22
+ from typing import Any, overload
21
23
 
22
24
  from botocore.client import BaseClient, ClientMeta
25
+ from botocore.errorfactory import BaseClientExceptions
26
+ from botocore.exceptions import ClientError as BotocoreClientError
23
27
 
24
28
  from .paginator import (
25
29
  DescribeAutoScalingGroupsPaginator,
@@ -127,6 +131,12 @@ from .type_defs import (
127
131
  UpdateAutoScalingGroupTypeRequestTypeDef,
128
132
  )
129
133
 
134
+ if sys.version_info >= (3, 9):
135
+ from builtins import dict as Dict
136
+ from builtins import type as Type
137
+ from collections.abc import Mapping
138
+ else:
139
+ from typing import Dict, Mapping, Type
130
140
  if sys.version_info >= (3, 12):
131
141
  from typing import Literal, Unpack
132
142
  else:
@@ -134,14 +144,7 @@ else:
134
144
 
135
145
  __all__ = ("AutoScalingClient",)
136
146
 
137
- class BotocoreClientError(Exception):
138
- MSG_TEMPLATE: str
139
-
140
- def __init__(self, error_response: Mapping[str, Any], operation_name: str) -> None:
141
- self.response: Dict[str, Any]
142
- self.operation_name: str
143
-
144
- class Exceptions:
147
+ class Exceptions(BaseClientExceptions):
145
148
  ActiveInstanceRefreshNotFoundFault: Type[BotocoreClientError]
146
149
  AlreadyExistsFault: Type[BotocoreClientError]
147
150
  ClientError: Type[BotocoreClientError]
@@ -189,12 +192,6 @@ class AutoScalingClient(BaseClient):
189
192
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#generate_presigned_url)
190
193
  """
191
194
 
192
- def close(self) -> None:
193
- """
194
- [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/autoscaling/client/close.html)
195
- [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#close)
196
- """
197
-
198
195
  def attach_instances(
199
196
  self, **kwargs: Unpack[AttachInstancesQueryRequestTypeDef]
200
197
  ) -> EmptyResponseMetadataTypeDef:
@@ -858,8 +855,8 @@ class AutoScalingClient(BaseClient):
858
855
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#update_auto_scaling_group)
859
856
  """
860
857
 
861
- @overload
862
- def get_paginator(
858
+ @overload # type: ignore[override]
859
+ def get_paginator( # type: ignore[override]
863
860
  self, operation_name: Literal["describe_auto_scaling_groups"]
864
861
  ) -> DescribeAutoScalingGroupsPaginator:
865
862
  """
@@ -869,8 +866,8 @@ class AutoScalingClient(BaseClient):
869
866
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
870
867
  """
871
868
 
872
- @overload
873
- def get_paginator(
869
+ @overload # type: ignore[override]
870
+ def get_paginator( # type: ignore[override]
874
871
  self, operation_name: Literal["describe_auto_scaling_instances"]
875
872
  ) -> DescribeAutoScalingInstancesPaginator:
876
873
  """
@@ -880,8 +877,8 @@ class AutoScalingClient(BaseClient):
880
877
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
881
878
  """
882
879
 
883
- @overload
884
- def get_paginator(
880
+ @overload # type: ignore[override]
881
+ def get_paginator( # type: ignore[override]
885
882
  self, operation_name: Literal["describe_launch_configurations"]
886
883
  ) -> DescribeLaunchConfigurationsPaginator:
887
884
  """
@@ -891,8 +888,8 @@ class AutoScalingClient(BaseClient):
891
888
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
892
889
  """
893
890
 
894
- @overload
895
- def get_paginator(
891
+ @overload # type: ignore[override]
892
+ def get_paginator( # type: ignore[override]
896
893
  self, operation_name: Literal["describe_load_balancer_target_groups"]
897
894
  ) -> DescribeLoadBalancerTargetGroupsPaginator:
898
895
  """
@@ -902,8 +899,8 @@ class AutoScalingClient(BaseClient):
902
899
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
903
900
  """
904
901
 
905
- @overload
906
- def get_paginator(
902
+ @overload # type: ignore[override]
903
+ def get_paginator( # type: ignore[override]
907
904
  self, operation_name: Literal["describe_load_balancers"]
908
905
  ) -> DescribeLoadBalancersPaginator:
909
906
  """
@@ -913,8 +910,8 @@ class AutoScalingClient(BaseClient):
913
910
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
914
911
  """
915
912
 
916
- @overload
917
- def get_paginator(
913
+ @overload # type: ignore[override]
914
+ def get_paginator( # type: ignore[override]
918
915
  self, operation_name: Literal["describe_notification_configurations"]
919
916
  ) -> DescribeNotificationConfigurationsPaginator:
920
917
  """
@@ -924,8 +921,8 @@ class AutoScalingClient(BaseClient):
924
921
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
925
922
  """
926
923
 
927
- @overload
928
- def get_paginator(
924
+ @overload # type: ignore[override]
925
+ def get_paginator( # type: ignore[override]
929
926
  self, operation_name: Literal["describe_policies"]
930
927
  ) -> DescribePoliciesPaginator:
931
928
  """
@@ -935,8 +932,8 @@ class AutoScalingClient(BaseClient):
935
932
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
936
933
  """
937
934
 
938
- @overload
939
- def get_paginator(
935
+ @overload # type: ignore[override]
936
+ def get_paginator( # type: ignore[override]
940
937
  self, operation_name: Literal["describe_scaling_activities"]
941
938
  ) -> DescribeScalingActivitiesPaginator:
942
939
  """
@@ -946,8 +943,8 @@ class AutoScalingClient(BaseClient):
946
943
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
947
944
  """
948
945
 
949
- @overload
950
- def get_paginator(
946
+ @overload # type: ignore[override]
947
+ def get_paginator( # type: ignore[override]
951
948
  self, operation_name: Literal["describe_scheduled_actions"]
952
949
  ) -> DescribeScheduledActionsPaginator:
953
950
  """
@@ -957,8 +954,10 @@ class AutoScalingClient(BaseClient):
957
954
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
958
955
  """
959
956
 
960
- @overload
961
- def get_paginator(self, operation_name: Literal["describe_tags"]) -> DescribeTagsPaginator:
957
+ @overload # type: ignore[override]
958
+ def get_paginator( # type: ignore[override]
959
+ self, operation_name: Literal["describe_tags"]
960
+ ) -> DescribeTagsPaginator:
962
961
  """
963
962
  Create a paginator for an operation.
964
963
 
@@ -966,8 +965,8 @@ class AutoScalingClient(BaseClient):
966
965
  [Show types-boto3 documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/client/#get_paginator)
967
966
  """
968
967
 
969
- @overload
970
- def get_paginator(
968
+ @overload # type: ignore[override]
969
+ def get_paginator( # type: ignore[override]
971
970
  self, operation_name: Literal["describe_warm_pool"]
972
971
  ) -> DescribeWarmPoolPaginator:
973
972
  """
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for autoscaling service literal definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/literals/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/literals/)
5
5
 
6
6
  Usage::
7
7
 
@@ -11,7 +11,7 @@ Usage::
11
11
  data: AcceleratorManufacturerType = "amazon-web-services"
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  import sys
@@ -215,12 +215,15 @@ ServiceName = Literal[
215
215
  "b2bi",
216
216
  "backup",
217
217
  "backup-gateway",
218
+ "backupsearch",
218
219
  "batch",
219
220
  "bcm-data-exports",
220
221
  "bcm-pricing-calculator",
221
222
  "bedrock",
222
223
  "bedrock-agent",
223
224
  "bedrock-agent-runtime",
225
+ "bedrock-data-automation",
226
+ "bedrock-data-automation-runtime",
224
227
  "bedrock-runtime",
225
228
  "billing",
226
229
  "billingconductor",
@@ -298,6 +301,7 @@ ServiceName = Literal[
298
301
  "drs",
299
302
  "ds",
300
303
  "ds-data",
304
+ "dsql",
301
305
  "dynamodb",
302
306
  "dynamodbstreams",
303
307
  "ebs",
@@ -354,6 +358,7 @@ ServiceName = Literal[
354
358
  "inspector-scan",
355
359
  "inspector2",
356
360
  "internetmonitor",
361
+ "invoicing",
357
362
  "iot",
358
363
  "iot-data",
359
364
  "iot-jobs-data",
@@ -440,6 +445,7 @@ ServiceName = Literal[
440
445
  "neptune-graph",
441
446
  "neptunedata",
442
447
  "network-firewall",
448
+ "networkflowmonitor",
443
449
  "networkmanager",
444
450
  "networkmonitor",
445
451
  "notifications",
@@ -506,6 +512,7 @@ ServiceName = Literal[
506
512
  "s3",
507
513
  "s3control",
508
514
  "s3outposts",
515
+ "s3tables",
509
516
  "sagemaker",
510
517
  "sagemaker-a2i-runtime",
511
518
  "sagemaker-edge",
@@ -518,6 +525,7 @@ ServiceName = Literal[
518
525
  "schemas",
519
526
  "sdb",
520
527
  "secretsmanager",
528
+ "security-ir",
521
529
  "securityhub",
522
530
  "securitylake",
523
531
  "serverlessrepo",
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for autoscaling service literal definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/literals/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/literals/)
5
5
 
6
6
  Usage::
7
7
 
@@ -11,7 +11,7 @@ Usage::
11
11
  data: AcceleratorManufacturerType = "amazon-web-services"
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
17
  import sys
@@ -213,12 +213,15 @@ ServiceName = Literal[
213
213
  "b2bi",
214
214
  "backup",
215
215
  "backup-gateway",
216
+ "backupsearch",
216
217
  "batch",
217
218
  "bcm-data-exports",
218
219
  "bcm-pricing-calculator",
219
220
  "bedrock",
220
221
  "bedrock-agent",
221
222
  "bedrock-agent-runtime",
223
+ "bedrock-data-automation",
224
+ "bedrock-data-automation-runtime",
222
225
  "bedrock-runtime",
223
226
  "billing",
224
227
  "billingconductor",
@@ -296,6 +299,7 @@ ServiceName = Literal[
296
299
  "drs",
297
300
  "ds",
298
301
  "ds-data",
302
+ "dsql",
299
303
  "dynamodb",
300
304
  "dynamodbstreams",
301
305
  "ebs",
@@ -352,6 +356,7 @@ ServiceName = Literal[
352
356
  "inspector-scan",
353
357
  "inspector2",
354
358
  "internetmonitor",
359
+ "invoicing",
355
360
  "iot",
356
361
  "iot-data",
357
362
  "iot-jobs-data",
@@ -438,6 +443,7 @@ ServiceName = Literal[
438
443
  "neptune-graph",
439
444
  "neptunedata",
440
445
  "network-firewall",
446
+ "networkflowmonitor",
441
447
  "networkmanager",
442
448
  "networkmonitor",
443
449
  "notifications",
@@ -504,6 +510,7 @@ ServiceName = Literal[
504
510
  "s3",
505
511
  "s3control",
506
512
  "s3outposts",
513
+ "s3tables",
507
514
  "sagemaker",
508
515
  "sagemaker-a2i-runtime",
509
516
  "sagemaker-edge",
@@ -516,6 +523,7 @@ ServiceName = Literal[
516
523
  "schemas",
517
524
  "sdb",
518
525
  "secretsmanager",
526
+ "security-ir",
519
527
  "securityhub",
520
528
  "securitylake",
521
529
  "serverlessrepo",