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.

@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for autoscaling service type definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/type_defs/)
4
+ [Documentation](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/type_defs/)
5
5
 
6
6
  Usage::
7
7
 
@@ -11,12 +11,14 @@ Usage::
11
11
  data: AcceleratorCountRequestTypeDef = ...
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
+ from __future__ import annotations
18
+
17
19
  import sys
18
20
  from datetime import datetime
19
- from typing import Dict, List, Sequence, Union
21
+ from typing import Union
20
22
 
21
23
  from .literals import (
22
24
  AcceleratorManufacturerType,
@@ -48,6 +50,12 @@ from .literals import (
48
50
  WarmPoolStateType,
49
51
  )
50
52
 
53
+ if sys.version_info >= (3, 9):
54
+ from builtins import dict as Dict
55
+ from builtins import list as List
56
+ from collections.abc import Sequence
57
+ else:
58
+ from typing import Dict, List, Sequence
51
59
  if sys.version_info >= (3, 12):
52
60
  from typing import Literal, NotRequired, TypedDict
53
61
  else:
@@ -68,7 +76,7 @@ __all__ = (
68
76
  "AttachLoadBalancerTargetGroupsTypeRequestTypeDef",
69
77
  "AttachLoadBalancersTypeRequestTypeDef",
70
78
  "AttachTrafficSourcesTypeRequestTypeDef",
71
- "AutoScalingGroupNamesTypeDescribeAutoScalingGroupsPaginateTypeDef",
79
+ "AutoScalingGroupNamesTypePaginateTypeDef",
72
80
  "AutoScalingGroupNamesTypeRequestTypeDef",
73
81
  "AutoScalingGroupTypeDef",
74
82
  "AutoScalingGroupsTypeTypeDef",
@@ -112,7 +120,7 @@ __all__ = (
112
120
  "DeleteWarmPoolTypeRequestTypeDef",
113
121
  "DescribeAccountLimitsAnswerTypeDef",
114
122
  "DescribeAdjustmentTypesAnswerTypeDef",
115
- "DescribeAutoScalingInstancesTypeDescribeAutoScalingInstancesPaginateTypeDef",
123
+ "DescribeAutoScalingInstancesTypePaginateTypeDef",
116
124
  "DescribeAutoScalingInstancesTypeRequestTypeDef",
117
125
  "DescribeAutoScalingNotificationTypesAnswerTypeDef",
118
126
  "DescribeInstanceRefreshesAnswerTypeDef",
@@ -120,29 +128,29 @@ __all__ = (
120
128
  "DescribeLifecycleHookTypesAnswerTypeDef",
121
129
  "DescribeLifecycleHooksAnswerTypeDef",
122
130
  "DescribeLifecycleHooksTypeRequestTypeDef",
123
- "DescribeLoadBalancerTargetGroupsRequestDescribeLoadBalancerTargetGroupsPaginateTypeDef",
131
+ "DescribeLoadBalancerTargetGroupsRequestPaginateTypeDef",
124
132
  "DescribeLoadBalancerTargetGroupsRequestRequestTypeDef",
125
133
  "DescribeLoadBalancerTargetGroupsResponseTypeDef",
126
- "DescribeLoadBalancersRequestDescribeLoadBalancersPaginateTypeDef",
134
+ "DescribeLoadBalancersRequestPaginateTypeDef",
127
135
  "DescribeLoadBalancersRequestRequestTypeDef",
128
136
  "DescribeLoadBalancersResponseTypeDef",
129
137
  "DescribeMetricCollectionTypesAnswerTypeDef",
130
138
  "DescribeNotificationConfigurationsAnswerTypeDef",
131
- "DescribeNotificationConfigurationsTypeDescribeNotificationConfigurationsPaginateTypeDef",
139
+ "DescribeNotificationConfigurationsTypePaginateTypeDef",
132
140
  "DescribeNotificationConfigurationsTypeRequestTypeDef",
133
- "DescribePoliciesTypeDescribePoliciesPaginateTypeDef",
141
+ "DescribePoliciesTypePaginateTypeDef",
134
142
  "DescribePoliciesTypeRequestTypeDef",
135
- "DescribeScalingActivitiesTypeDescribeScalingActivitiesPaginateTypeDef",
143
+ "DescribeScalingActivitiesTypePaginateTypeDef",
136
144
  "DescribeScalingActivitiesTypeRequestTypeDef",
137
- "DescribeScheduledActionsTypeDescribeScheduledActionsPaginateTypeDef",
145
+ "DescribeScheduledActionsTypePaginateTypeDef",
138
146
  "DescribeScheduledActionsTypeRequestTypeDef",
139
- "DescribeTagsTypeDescribeTagsPaginateTypeDef",
147
+ "DescribeTagsTypePaginateTypeDef",
140
148
  "DescribeTagsTypeRequestTypeDef",
141
149
  "DescribeTerminationPolicyTypesAnswerTypeDef",
142
150
  "DescribeTrafficSourcesRequestRequestTypeDef",
143
151
  "DescribeTrafficSourcesResponseTypeDef",
144
152
  "DescribeWarmPoolAnswerTypeDef",
145
- "DescribeWarmPoolTypeDescribeWarmPoolPaginateTypeDef",
153
+ "DescribeWarmPoolTypePaginateTypeDef",
146
154
  "DescribeWarmPoolTypeRequestTypeDef",
147
155
  "DesiredConfigurationOutputTypeDef",
148
156
  "DesiredConfigurationTypeDef",
@@ -179,7 +187,7 @@ __all__ = (
179
187
  "InstanceTypeDef",
180
188
  "InstancesDistributionTypeDef",
181
189
  "LaunchConfigurationNameTypeRequestTypeDef",
182
- "LaunchConfigurationNamesTypeDescribeLaunchConfigurationsPaginateTypeDef",
190
+ "LaunchConfigurationNamesTypePaginateTypeDef",
183
191
  "LaunchConfigurationNamesTypeRequestTypeDef",
184
192
  "LaunchConfigurationTypeDef",
185
193
  "LaunchConfigurationsTypeTypeDef",
@@ -854,52 +862,48 @@ class DescribeTagsTypeRequestTypeDef(TypedDict):
854
862
  NextToken: NotRequired[str]
855
863
  MaxRecords: NotRequired[int]
856
864
 
857
- class AutoScalingGroupNamesTypeDescribeAutoScalingGroupsPaginateTypeDef(TypedDict):
865
+ class AutoScalingGroupNamesTypePaginateTypeDef(TypedDict):
858
866
  AutoScalingGroupNames: NotRequired[Sequence[str]]
859
867
  Filters: NotRequired[Sequence[FilterTypeDef]]
860
868
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
861
869
 
862
- class DescribeAutoScalingInstancesTypeDescribeAutoScalingInstancesPaginateTypeDef(TypedDict):
870
+ class DescribeAutoScalingInstancesTypePaginateTypeDef(TypedDict):
863
871
  InstanceIds: NotRequired[Sequence[str]]
864
872
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
865
873
 
866
- class DescribeLoadBalancerTargetGroupsRequestDescribeLoadBalancerTargetGroupsPaginateTypeDef(
867
- TypedDict
868
- ):
874
+ class DescribeLoadBalancerTargetGroupsRequestPaginateTypeDef(TypedDict):
869
875
  AutoScalingGroupName: str
870
876
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
871
877
 
872
- class DescribeLoadBalancersRequestDescribeLoadBalancersPaginateTypeDef(TypedDict):
878
+ class DescribeLoadBalancersRequestPaginateTypeDef(TypedDict):
873
879
  AutoScalingGroupName: str
874
880
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
875
881
 
876
- class DescribeNotificationConfigurationsTypeDescribeNotificationConfigurationsPaginateTypeDef(
877
- TypedDict
878
- ):
882
+ class DescribeNotificationConfigurationsTypePaginateTypeDef(TypedDict):
879
883
  AutoScalingGroupNames: NotRequired[Sequence[str]]
880
884
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
881
885
 
882
- class DescribePoliciesTypeDescribePoliciesPaginateTypeDef(TypedDict):
886
+ class DescribePoliciesTypePaginateTypeDef(TypedDict):
883
887
  AutoScalingGroupName: NotRequired[str]
884
888
  PolicyNames: NotRequired[Sequence[str]]
885
889
  PolicyTypes: NotRequired[Sequence[str]]
886
890
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
887
891
 
888
- class DescribeScalingActivitiesTypeDescribeScalingActivitiesPaginateTypeDef(TypedDict):
892
+ class DescribeScalingActivitiesTypePaginateTypeDef(TypedDict):
889
893
  ActivityIds: NotRequired[Sequence[str]]
890
894
  AutoScalingGroupName: NotRequired[str]
891
895
  IncludeDeletedGroups: NotRequired[bool]
892
896
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
893
897
 
894
- class DescribeTagsTypeDescribeTagsPaginateTypeDef(TypedDict):
898
+ class DescribeTagsTypePaginateTypeDef(TypedDict):
895
899
  Filters: NotRequired[Sequence[FilterTypeDef]]
896
900
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
897
901
 
898
- class DescribeWarmPoolTypeDescribeWarmPoolPaginateTypeDef(TypedDict):
902
+ class DescribeWarmPoolTypePaginateTypeDef(TypedDict):
899
903
  AutoScalingGroupName: str
900
904
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
901
905
 
902
- class LaunchConfigurationNamesTypeDescribeLaunchConfigurationsPaginateTypeDef(TypedDict):
906
+ class LaunchConfigurationNamesTypePaginateTypeDef(TypedDict):
903
907
  LaunchConfigurationNames: NotRequired[Sequence[str]]
904
908
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
905
909
 
@@ -999,7 +1003,7 @@ class DescribeNotificationConfigurationsAnswerTypeDef(TypedDict):
999
1003
  ResponseMetadata: ResponseMetadataTypeDef
1000
1004
  NextToken: NotRequired[str]
1001
1005
 
1002
- class DescribeScheduledActionsTypeDescribeScheduledActionsPaginateTypeDef(TypedDict):
1006
+ class DescribeScheduledActionsTypePaginateTypeDef(TypedDict):
1003
1007
  AutoScalingGroupName: NotRequired[str]
1004
1008
  ScheduledActionNames: NotRequired[Sequence[str]]
1005
1009
  StartTime: NotRequired[TimestampTypeDef]
@@ -1361,10 +1365,10 @@ class PredictiveScalingConfigurationOutputTypeDef(TypedDict):
1361
1365
 
1362
1366
  MetricDataQueryUnionTypeDef = Union[MetricDataQueryTypeDef, MetricDataQueryOutputTypeDef]
1363
1367
 
1364
- class PredictiveScalingCustomizedCapacityMetricTypeDef(TypedDict):
1368
+ class PredictiveScalingCustomizedLoadMetricTypeDef(TypedDict):
1365
1369
  MetricDataQueries: Sequence[MetricDataQueryTypeDef]
1366
1370
 
1367
- class PredictiveScalingCustomizedLoadMetricTypeDef(TypedDict):
1371
+ class PredictiveScalingCustomizedScalingMetricTypeDef(TypedDict):
1368
1372
  MetricDataQueries: Sequence[MetricDataQueryTypeDef]
1369
1373
 
1370
1374
  TargetTrackingMetricDataQueryUnionTypeDef = Union[
@@ -1445,16 +1449,16 @@ class ScalingPolicyTypeDef(TypedDict):
1445
1449
  Enabled: NotRequired[bool]
1446
1450
  PredictiveScalingConfiguration: NotRequired[PredictiveScalingConfigurationOutputTypeDef]
1447
1451
 
1448
- class PredictiveScalingCustomizedScalingMetricTypeDef(TypedDict):
1452
+ class PredictiveScalingCustomizedCapacityMetricTypeDef(TypedDict):
1449
1453
  MetricDataQueries: Sequence[MetricDataQueryUnionTypeDef]
1450
1454
 
1451
- PredictiveScalingCustomizedCapacityMetricUnionTypeDef = Union[
1452
- PredictiveScalingCustomizedCapacityMetricTypeDef,
1453
- PredictiveScalingCustomizedCapacityMetricOutputTypeDef,
1454
- ]
1455
1455
  PredictiveScalingCustomizedLoadMetricUnionTypeDef = Union[
1456
1456
  PredictiveScalingCustomizedLoadMetricTypeDef, PredictiveScalingCustomizedLoadMetricOutputTypeDef
1457
1457
  ]
1458
+ PredictiveScalingCustomizedScalingMetricUnionTypeDef = Union[
1459
+ PredictiveScalingCustomizedScalingMetricTypeDef,
1460
+ PredictiveScalingCustomizedScalingMetricOutputTypeDef,
1461
+ ]
1458
1462
 
1459
1463
  class CustomizedMetricSpecificationTypeDef(TypedDict):
1460
1464
  MetricName: NotRequired[str]
@@ -1493,9 +1497,9 @@ class PoliciesTypeTypeDef(TypedDict):
1493
1497
  ResponseMetadata: ResponseMetadataTypeDef
1494
1498
  NextToken: NotRequired[str]
1495
1499
 
1496
- PredictiveScalingCustomizedScalingMetricUnionTypeDef = Union[
1497
- PredictiveScalingCustomizedScalingMetricTypeDef,
1498
- PredictiveScalingCustomizedScalingMetricOutputTypeDef,
1500
+ PredictiveScalingCustomizedCapacityMetricUnionTypeDef = Union[
1501
+ PredictiveScalingCustomizedCapacityMetricTypeDef,
1502
+ PredictiveScalingCustomizedCapacityMetricOutputTypeDef,
1499
1503
  ]
1500
1504
  CustomizedMetricSpecificationUnionTypeDef = Union[
1501
1505
  CustomizedMetricSpecificationTypeDef, CustomizedMetricSpecificationOutputTypeDef
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Source of truth for version.
3
3
 
4
- Copyright 2024 Vlad Emelianov
4
+ Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.35.71"
7
+ __version__ = "1.35.93"
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 Vlad Emelianov
3
+ Copyright (c) 2025 Vlad Emelianov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: types-boto3-autoscaling
3
- Version: 1.35.71
4
- Summary: Type annotations for boto3 AutoScaling 1.35.71 service generated with mypy-boto3-builder 8.4.1
3
+ Version: 1.35.93
4
+ Summary: Type annotations for boto3 AutoScaling 1.35.93 service generated with mypy-boto3-builder 8.8.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
@@ -9,7 +9,7 @@ License: MIT License
9
9
  Project-URL: Documentation, https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/
10
10
  Project-URL: Source, https://github.com/youtype/mypy_boto3_builder
11
11
  Project-URL: Tracker, https://github.com/youtype/mypy_boto3_builder/issues
12
- Keywords: boto3 autoscaling type-annotations botocore mypy typeshed autocomplete
12
+ Keywords: boto3 autoscaling boto3-stubs type-annotations mypy typeshed autocomplete
13
13
  Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Environment :: Console
@@ -30,7 +30,7 @@ Classifier: Typing :: Stubs Only
30
30
  Requires-Python: >=3.8
31
31
  Description-Content-Type: text/markdown
32
32
  License-File: LICENSE
33
- Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
33
+ Requires-Dist: typing-extensions; python_version < "3.12"
34
34
 
35
35
  <a id="types-boto3-autoscaling"></a>
36
36
 
@@ -44,7 +44,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
44
44
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
45
 
46
46
  Type annotations for
47
- [boto3 AutoScaling 1.35.71](https://pypi.org/project/boto3/) compatible with
47
+ [boto3 AutoScaling 1.35.93](https://pypi.org/project/boto3/) compatible with
48
48
  [VSCode](https://code.visualstudio.com/),
49
49
  [PyCharm](https://www.jetbrains.com/pycharm/),
50
50
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -52,8 +52,8 @@ Type annotations for
52
52
  [mypy](https://github.com/python/mypy),
53
53
  [pyright](https://github.com/microsoft/pyright) and other tools.
54
54
 
55
- Generated by
56
- [mypy-boto3-builder 8.4.1](https://github.com/youtype/mypy_boto3_builder).
55
+ Generated with
56
+ [mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
57
57
 
58
58
  More information can be found on
59
59
  [types-boto3](https://pypi.org/project/types-boto3/) page and in
@@ -61,10 +61,11 @@ More information can be found on
61
61
 
62
62
  See how it helps you find and fix potential bugs:
63
63
 
64
- ![boto3-stubs demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
64
+ ![types-boto3 demo](https://github.com/youtype/mypy_boto3_builder/raw/main/demo.gif)
65
65
 
66
66
  - [types-boto3-autoscaling](#types-boto3-autoscaling)
67
67
  - [How to install](#how-to-install)
68
+ - [Generate locally (recommended)](<#generate-locally-(recommended)>)
68
69
  - [VSCode extension](#vscode-extension)
69
70
  - [From PyPI with pip](#from-pypi-with-pip)
70
71
  - [How to uninstall](#how-to-uninstall)
@@ -76,6 +77,7 @@ See how it helps you find and fix potential bugs:
76
77
  - [Other IDEs](#other-ides)
77
78
  - [mypy](#mypy)
78
79
  - [pyright](#pyright)
80
+ - [Pylint compatibility](#pylint-compatibility)
79
81
  - [Explicit type annotations](#explicit-type-annotations)
80
82
  - [Client annotations](#client-annotations)
81
83
  - [Paginators annotations](#paginators-annotations)
@@ -94,6 +96,21 @@ See how it helps you find and fix potential bugs:
94
96
 
95
97
  ## How to install
96
98
 
99
+ <a id="generate-locally-(recommended)"></a>
100
+
101
+ ### Generate locally (recommended)
102
+
103
+ You can generate type annotations for `boto3` package locally with
104
+ `mypy_boto3_builder`. Use
105
+ [uv](https://docs.astral.sh/uv/getting-started/installation/) for build
106
+ isolation.
107
+
108
+ 1. Run mypy-boto3-builder in your package root directory:
109
+ `uvx --with 'boto3==1.35.93' mypy_boto3_builder`
110
+ 2. Select `boto3` AWS SDK.
111
+ 3. Add `AutoScaling` service.
112
+ 4. Use provided commands to install generated packages.
113
+
97
114
  <a id="vscode-extension"></a>
98
115
 
99
116
  ### VSCode extension
@@ -114,12 +131,10 @@ Install `types-boto3` for `AutoScaling` service.
114
131
  # install with boto3 type annotations
115
132
  python -m pip install 'types-boto3[autoscaling]'
116
133
 
117
-
118
134
  # Lite version does not provide session.client/resource overloads
119
135
  # it is more RAM-friendly, but requires explicit type annotations
120
136
  python -m pip install 'types-boto3-lite[autoscaling]'
121
137
 
122
-
123
138
  # standalone installation
124
139
  python -m pip install types-boto3-autoscaling
125
140
  ```
@@ -268,6 +283,31 @@ Optionally, you can install `types-boto3` to `typings` directory.
268
283
  Type checking should now work. No explicit type annotations required, write
269
284
  your `boto3` code as usual.
270
285
 
286
+ <a id="pylint-compatibility"></a>
287
+
288
+ ### Pylint compatibility
289
+
290
+ It is totally safe to use `TYPE_CHECKING` flag in order to avoid
291
+ `types-boto3-autoscaling` dependency in production. However, there is an issue
292
+ in `pylint` that it complains about undefined variables. To fix it, set all
293
+ types to `object` in non-`TYPE_CHECKING` mode.
294
+
295
+ ```python
296
+ from typing import TYPE_CHECKING
297
+
298
+ if TYPE_CHECKING:
299
+ from types_boto3_ec2 import EC2Client, EC2ServiceResource
300
+ from types_boto3_ec2.waiters import BundleTaskCompleteWaiter
301
+ from types_boto3_ec2.paginators import DescribeVolumesPaginator
302
+ else:
303
+ EC2Client = object
304
+ EC2ServiceResource = object
305
+ BundleTaskCompleteWaiter = object
306
+ DescribeVolumesPaginator = object
307
+
308
+ ...
309
+ ```
310
+
271
311
  <a id="explicit-type-annotations"></a>
272
312
 
273
313
  ## Explicit type annotations
@@ -0,0 +1,18 @@
1
+ types_boto3_autoscaling/__init__.py,sha256=x7Yxep7r986plChjLdnAmM1enXPDAt7RaLtManjt444,3235
2
+ types_boto3_autoscaling/__init__.pyi,sha256=hmaq8AhFUQ5740kIozhx5TAj8fvPImvldTPbTnu2q6U,3234
3
+ types_boto3_autoscaling/__main__.py,sha256=re-X0fa9itcRfbyYgXCXi5wGkLXdvnJenlkSjm4vE0o,1000
4
+ types_boto3_autoscaling/client.py,sha256=NenTbDVbVbs01T4Kr5g58ggh-ciZoQTyLWdAYKpSTBA,50498
5
+ types_boto3_autoscaling/client.pyi,sha256=SSjZHm3ILmro_dOrYkxBsr2VBuAD9-0RWCoU541NHuo,50495
6
+ types_boto3_autoscaling/literals.py,sha256=hVIbuFGtAFi591H8CW2KD10zfczwRV2NOOsjkuw1M9Q,15497
7
+ types_boto3_autoscaling/literals.pyi,sha256=x1K29J3Kcgk-qO4SjN4k6TUREGeHzaZ7NAItqoHU0aE,15495
8
+ types_boto3_autoscaling/paginator.py,sha256=oN98dVUzp9A1ZLc38ST8goFllEviBfTreONYE4Q3_fI,17512
9
+ types_boto3_autoscaling/paginator.pyi,sha256=umhTzKIaDTMagLRdvgyAvL9_VeZXWw66hLwu628nkvA,17478
10
+ types_boto3_autoscaling/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ types_boto3_autoscaling/type_defs.py,sha256=T3d0azHA6gRJILY9xK-BjCmxsbMxqyQuLnZ6WQMW3kA,62844
12
+ types_boto3_autoscaling/type_defs.pyi,sha256=q_tsnFQFXIhHKXDe9Nigwlx-aRMxGUwbElGZRBAsut4,62619
13
+ types_boto3_autoscaling/version.py,sha256=n6wyMBvI3Tp0INYol4fUJ84y0BqM9ti-SkLRGfsif5s,93
14
+ types_boto3_autoscaling-1.35.93.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
15
+ types_boto3_autoscaling-1.35.93.dist-info/METADATA,sha256=6OprMgZANezJ3tfDF_rD_PHpX8-HDN_XnTJzlcGRUAw,16538
16
+ types_boto3_autoscaling-1.35.93.dist-info/WHEEL,sha256=A3WOREP4zgxI0fKrHUG8DC8013e3dK3n7a6HDbcEIwE,91
17
+ types_boto3_autoscaling-1.35.93.dist-info/top_level.txt,sha256=OO2ULhiZCV3dsXy_0Zq-LXGhQssK_pRxGQAXyJeX48M,24
18
+ types_boto3_autoscaling-1.35.93.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (75.7.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,18 +0,0 @@
1
- types_boto3_autoscaling/__init__.py,sha256=74CyYZQT41KtVMWF8WTn7-mJNSABMhfjRRWyOpJETyo,3235
2
- types_boto3_autoscaling/__init__.pyi,sha256=2DGEFZoFvCQXAq3ElJnaFmPhWKZgSOS1OKjMhz7OPP4,3234
3
- types_boto3_autoscaling/__main__.py,sha256=_VXA4MUUL46CInSgGbf9hg-NYAv6BI1MUreMRrAjjls,966
4
- types_boto3_autoscaling/client.py,sha256=KIk3L-DoQgPHKaDrvTZ2mhK7vJV_FBvx8-KVZ9rjmFQ,50102
5
- types_boto3_autoscaling/client.pyi,sha256=kTOVlq5QUiegS5M4G4bbeM-JkaiH_391hJpCfdx3c5A,50098
6
- types_boto3_autoscaling/literals.py,sha256=K6IZDi6I2gRJsdnTKrDmsyCLXSFBIS-DxrlnrOMP6AE,15322
7
- types_boto3_autoscaling/literals.pyi,sha256=w0kyHtlZGnn8YfF38AYD0qdbbrAfV6c-cvlA7HdULvI,15320
8
- types_boto3_autoscaling/paginator.py,sha256=u3I95cz0cCefrf0BuabP5lDAfNn4TzSu0MA_dWL6oHk,15584
9
- types_boto3_autoscaling/paginator.pyi,sha256=2u4b9VfE5Wk7Mq13BZ8ihMSefQAJBOU1f2EQe7u4a7I,15559
10
- types_boto3_autoscaling/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- types_boto3_autoscaling/type_defs.py,sha256=TI-uYffXA5-uyk2VVM2sKgNGyWb-buEotbau6nwxIT0,63171
12
- types_boto3_autoscaling/type_defs.pyi,sha256=Ctr73SdG7QeL3NiRKb86sFk9qTA1WkkZqUSPRdRp4V4,62946
13
- types_boto3_autoscaling/version.py,sha256=eIS36a5iw2-mD_eS7zeepUtx_w_DQOn6RiPaBDeB7EQ,93
14
- types_boto3_autoscaling-1.35.71.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
15
- types_boto3_autoscaling-1.35.71.dist-info/METADATA,sha256=cNVUu6XAafEZht_E7DATI5juHEchqP0PtXKE9rJ5BHs,15201
16
- types_boto3_autoscaling-1.35.71.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
17
- types_boto3_autoscaling-1.35.71.dist-info/top_level.txt,sha256=OO2ULhiZCV3dsXy_0Zq-LXGhQssK_pRxGQAXyJeX48M,24
18
- types_boto3_autoscaling-1.35.71.dist-info/RECORD,,