types-boto3-autoscaling 1.36.0__py3-none-any.whl → 1.37.36__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.
- types_boto3_autoscaling/__init__.py +4 -2
- types_boto3_autoscaling/__init__.pyi +4 -2
- types_boto3_autoscaling/__main__.py +4 -4
- types_boto3_autoscaling/client.py +116 -123
- types_boto3_autoscaling/client.pyi +116 -123
- types_boto3_autoscaling/literals.py +4 -3
- types_boto3_autoscaling/literals.pyi +4 -3
- types_boto3_autoscaling/paginator.py +2 -2
- types_boto3_autoscaling/paginator.pyi +2 -2
- types_boto3_autoscaling/type_defs.py +283 -337
- types_boto3_autoscaling/type_defs.pyi +276 -323
- types_boto3_autoscaling/version.py +1 -1
- {types_boto3_autoscaling-1.36.0.dist-info → types_boto3_autoscaling-1.37.36.dist-info}/METADATA +14 -9
- types_boto3_autoscaling-1.37.36.dist-info/RECORD +18 -0
- {types_boto3_autoscaling-1.36.0.dist-info → types_boto3_autoscaling-1.37.36.dist-info}/WHEEL +1 -1
- types_boto3_autoscaling-1.36.0.dist-info/RECORD +0 -18
- {types_boto3_autoscaling-1.36.0.dist-info → types_boto3_autoscaling-1.37.36.dist-info/licenses}/LICENSE +0 -0
- {types_boto3_autoscaling-1.36.0.dist-info → types_boto3_autoscaling-1.37.36.dist-info}/top_level.txt +0 -0
{types_boto3_autoscaling-1.36.0.dist-info → types_boto3_autoscaling-1.37.36.dist-info}/METADATA
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: types-boto3-autoscaling
|
|
3
|
-
Version: 1.36
|
|
4
|
-
Summary: Type annotations for boto3 AutoScaling 1.36
|
|
3
|
+
Version: 1.37.36
|
|
4
|
+
Summary: Type annotations for boto3 AutoScaling 1.37.36 service generated with mypy-boto3-builder 8.10.1
|
|
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
|
|
@@ -39,6 +39,7 @@ Dynamic: description-content-type
|
|
|
39
39
|
Dynamic: home-page
|
|
40
40
|
Dynamic: keywords
|
|
41
41
|
Dynamic: license
|
|
42
|
+
Dynamic: license-file
|
|
42
43
|
Dynamic: project-url
|
|
43
44
|
Dynamic: requires-dist
|
|
44
45
|
Dynamic: requires-python
|
|
@@ -56,7 +57,7 @@ Dynamic: summary
|
|
|
56
57
|

|
|
57
58
|
|
|
58
59
|
Type annotations for
|
|
59
|
-
[boto3 AutoScaling 1.36
|
|
60
|
+
[boto3 AutoScaling 1.37.36](https://pypi.org/project/boto3/) compatible with
|
|
60
61
|
[VSCode](https://code.visualstudio.com/),
|
|
61
62
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
63
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -65,7 +66,7 @@ Type annotations for
|
|
|
65
66
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
66
67
|
|
|
67
68
|
Generated with
|
|
68
|
-
[mypy-boto3-builder 8.
|
|
69
|
+
[mypy-boto3-builder 8.10.1](https://github.com/youtype/mypy_boto3_builder).
|
|
69
70
|
|
|
70
71
|
More information can be found on
|
|
71
72
|
[types-boto3](https://pypi.org/project/types-boto3/) page and in
|
|
@@ -113,12 +114,12 @@ See how it helps you find and fix potential bugs:
|
|
|
113
114
|
### Generate locally (recommended)
|
|
114
115
|
|
|
115
116
|
You can generate type annotations for `boto3` package locally with
|
|
116
|
-
`
|
|
117
|
+
`mypy-boto3-builder`. Use
|
|
117
118
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
118
119
|
isolation.
|
|
119
120
|
|
|
120
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.36
|
|
122
|
+
`uvx --with 'boto3==1.37.36' mypy-boto3-builder`
|
|
122
123
|
2. Select `boto3` AWS SDK.
|
|
123
124
|
3. Add `AutoScaling` service.
|
|
124
125
|
4. Use provided commands to install generated packages.
|
|
@@ -426,11 +427,14 @@ Full list of `AutoScaling` TypeDefs can be found in
|
|
|
426
427
|
[docs](https://youtype.github.io/types_boto3_docs/types_boto3_autoscaling/type_defs/).
|
|
427
428
|
|
|
428
429
|
```python
|
|
430
|
+
# TypedDict usage example
|
|
429
431
|
from types_boto3_autoscaling.type_defs import AcceleratorCountRequestTypeDef
|
|
430
432
|
|
|
431
433
|
|
|
432
434
|
def get_value() -> AcceleratorCountRequestTypeDef:
|
|
433
|
-
return {
|
|
435
|
+
return {
|
|
436
|
+
"Min": ...,
|
|
437
|
+
}
|
|
434
438
|
```
|
|
435
439
|
|
|
436
440
|
<a id="how-it-works"></a>
|
|
@@ -484,7 +488,8 @@ Builder changelog can be found in
|
|
|
484
488
|
## Versioning
|
|
485
489
|
|
|
486
490
|
`types-boto3-autoscaling` version is the same as related `boto3` version and
|
|
487
|
-
follows
|
|
491
|
+
follows
|
|
492
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
488
493
|
|
|
489
494
|
<a id="thank-you"></a>
|
|
490
495
|
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
types_boto3_autoscaling/__init__.py,sha256=rfG_PMbPmZd-FmcF-X3hY7weTW9uddi67SPNeE-mdpc,3321
|
|
2
|
+
types_boto3_autoscaling/__init__.pyi,sha256=Xba2bBZj5k4BRA4Flg68EvfVE67_fsCpY79Tr_maXiQ,3320
|
|
3
|
+
types_boto3_autoscaling/__main__.py,sha256=qZ58RZbUlejtywirLaP4_7QxBY8XGWXOlnZ0YZi_C1M,1001
|
|
4
|
+
types_boto3_autoscaling/client.py,sha256=R8HRB6B3WybC5lxxNIywIRgEpHd8CACUj_g4N7_Gj9U,49683
|
|
5
|
+
types_boto3_autoscaling/client.pyi,sha256=zSCUQLLY8ARNDFrRGv8BQVOb9d8_PSNOUpe90FD2nnU,49680
|
|
6
|
+
types_boto3_autoscaling/literals.py,sha256=p6iEzzr8K5xR-lNQjSCEg9ba-uX6_a0KfwFpymfeQUA,15518
|
|
7
|
+
types_boto3_autoscaling/literals.pyi,sha256=WtvBcQ4UWx4foHHe581gOniNXzByt8U2428rqnOheEc,15516
|
|
8
|
+
types_boto3_autoscaling/paginator.py,sha256=IcEHu9fqG6rgWu3pBIm9VEzXkIu-mPZWH3PZICN3ZMM,17512
|
|
9
|
+
types_boto3_autoscaling/paginator.pyi,sha256=B3gCArrSJfUbzg6nJ9njH1SJU8NhUOaWzgmR00TzgEY,17478
|
|
10
|
+
types_boto3_autoscaling/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
types_boto3_autoscaling/type_defs.py,sha256=6dpUR36ZqyuPK7-Gv_8OYBVj3SUZk_QwmqxFXYDU4Mg,60097
|
|
12
|
+
types_boto3_autoscaling/type_defs.pyi,sha256=_vWdhnhaqqlbRm89kuJ8YWKA75sQj3hiBBmXzbNiBWQ,59879
|
|
13
|
+
types_boto3_autoscaling/version.py,sha256=z5eJ-ibvvVHcyTcirqXMmuANIYhYJU0jnZ_82XF5-Pw,93
|
|
14
|
+
types_boto3_autoscaling-1.37.36.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
+
types_boto3_autoscaling-1.37.36.dist-info/METADATA,sha256=T5_U6IKg6ChG5pRw8djBi9HEg8ae6_XcOp1zLXCVm-o,16916
|
|
16
|
+
types_boto3_autoscaling-1.37.36.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
17
|
+
types_boto3_autoscaling-1.37.36.dist-info/top_level.txt,sha256=OO2ULhiZCV3dsXy_0Zq-LXGhQssK_pRxGQAXyJeX48M,24
|
|
18
|
+
types_boto3_autoscaling-1.37.36.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
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=JcM2HKkeK-JXRBfAs3-9DDB9_9xyKzCD3k8BFo4gx0A,997
|
|
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=4tzq5KcGmNkBBorOa2JKpRDf9q4j-w49LQfX4ewJYUg,15488
|
|
7
|
-
types_boto3_autoscaling/literals.pyi,sha256=L8wroDSY99PUXl1dt9w0mqS8ocr9fa-AzY7pwTcwk0w,15486
|
|
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=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
|
|
14
|
-
types_boto3_autoscaling-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
15
|
-
types_boto3_autoscaling-1.36.0.dist-info/METADATA,sha256=pkxLzlXl8kPziCJ8KWV08ZM2oy16LdYjTu6dEEi09WU,16787
|
|
16
|
-
types_boto3_autoscaling-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
17
|
-
types_boto3_autoscaling-1.36.0.dist-info/top_level.txt,sha256=OO2ULhiZCV3dsXy_0Zq-LXGhQssK_pRxGQAXyJeX48M,24
|
|
18
|
-
types_boto3_autoscaling-1.36.0.dist-info/RECORD,,
|
|
File without changes
|
{types_boto3_autoscaling-1.36.0.dist-info → types_boto3_autoscaling-1.37.36.dist-info}/top_level.txt
RENAMED
|
File without changes
|