mypy-boto3-transfer 1.36.0__py3-none-any.whl → 1.37.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.
- mypy_boto3_transfer/__init__.py +4 -2
- mypy_boto3_transfer/__init__.pyi +4 -2
- mypy_boto3_transfer/__main__.py +4 -4
- mypy_boto3_transfer/client.py +140 -146
- mypy_boto3_transfer/client.pyi +140 -146
- mypy_boto3_transfer/literals.py +2 -3
- mypy_boto3_transfer/literals.pyi +2 -3
- mypy_boto3_transfer/paginator.py +2 -2
- mypy_boto3_transfer/paginator.pyi +2 -2
- mypy_boto3_transfer/type_defs.py +314 -274
- mypy_boto3_transfer/type_defs.pyi +295 -262
- mypy_boto3_transfer/version.py +1 -1
- mypy_boto3_transfer/waiter.py +4 -4
- mypy_boto3_transfer/waiter.pyi +4 -4
- {mypy_boto3_transfer-1.36.0.dist-info → mypy_boto3_transfer-1.37.0.dist-info}/METADATA +12 -8
- mypy_boto3_transfer-1.37.0.dist-info/RECORD +20 -0
- mypy_boto3_transfer-1.36.0.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.36.0.dist-info → mypy_boto3_transfer-1.37.0.dist-info}/LICENSE +0 -0
- {mypy_boto3_transfer-1.36.0.dist-info → mypy_boto3_transfer-1.37.0.dist-info}/WHEEL +0 -0
- {mypy_boto3_transfer-1.36.0.dist-info → mypy_boto3_transfer-1.37.0.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/version.py
CHANGED
mypy_boto3_transfer/waiter.py
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for transfer service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -20,8 +22,6 @@ Usage::
|
|
|
20
22
|
server_offline_waiter: ServerOfflineWaiter = client.get_waiter("server_offline")
|
|
21
23
|
server_online_waiter: ServerOnlineWaiter = client.get_waiter("server_online")
|
|
22
24
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
from __future__ import annotations
|
|
@@ -30,7 +30,7 @@ import sys
|
|
|
30
30
|
|
|
31
31
|
from botocore.waiter import Waiter
|
|
32
32
|
|
|
33
|
-
from .type_defs import DescribeServerRequestWaitTypeDef
|
|
33
|
+
from .type_defs import DescribeServerRequestWaitExtraTypeDef, DescribeServerRequestWaitTypeDef
|
|
34
34
|
|
|
35
35
|
if sys.version_info >= (3, 12):
|
|
36
36
|
from typing import Unpack
|
|
@@ -63,7 +63,7 @@ class ServerOnlineWaiter(Waiter):
|
|
|
63
63
|
"""
|
|
64
64
|
|
|
65
65
|
def wait( # type: ignore[override]
|
|
66
|
-
self, **kwargs: Unpack[
|
|
66
|
+
self, **kwargs: Unpack[DescribeServerRequestWaitExtraTypeDef]
|
|
67
67
|
) -> None:
|
|
68
68
|
"""
|
|
69
69
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOnline.html#Transfer.Waiter.ServerOnline.wait)
|
mypy_boto3_transfer/waiter.pyi
CHANGED
|
@@ -3,6 +3,8 @@ Type annotations for transfer service client waiters.
|
|
|
3
3
|
|
|
4
4
|
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/)
|
|
5
5
|
|
|
6
|
+
Copyright 2025 Vlad Emelianov
|
|
7
|
+
|
|
6
8
|
Usage::
|
|
7
9
|
|
|
8
10
|
```python
|
|
@@ -20,8 +22,6 @@ Usage::
|
|
|
20
22
|
server_offline_waiter: ServerOfflineWaiter = client.get_waiter("server_offline")
|
|
21
23
|
server_online_waiter: ServerOnlineWaiter = client.get_waiter("server_online")
|
|
22
24
|
```
|
|
23
|
-
|
|
24
|
-
Copyright 2025 Vlad Emelianov
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
from __future__ import annotations
|
|
@@ -30,7 +30,7 @@ import sys
|
|
|
30
30
|
|
|
31
31
|
from botocore.waiter import Waiter
|
|
32
32
|
|
|
33
|
-
from .type_defs import DescribeServerRequestWaitTypeDef
|
|
33
|
+
from .type_defs import DescribeServerRequestWaitExtraTypeDef, DescribeServerRequestWaitTypeDef
|
|
34
34
|
|
|
35
35
|
if sys.version_info >= (3, 12):
|
|
36
36
|
from typing import Unpack
|
|
@@ -58,7 +58,7 @@ class ServerOnlineWaiter(Waiter):
|
|
|
58
58
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
|
|
59
59
|
"""
|
|
60
60
|
def wait( # type: ignore[override]
|
|
61
|
-
self, **kwargs: Unpack[
|
|
61
|
+
self, **kwargs: Unpack[DescribeServerRequestWaitExtraTypeDef]
|
|
62
62
|
) -> None:
|
|
63
63
|
"""
|
|
64
64
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOnline.html#Transfer.Waiter.ServerOnline.wait)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: mypy-boto3-transfer
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 Transfer 1.
|
|
3
|
+
Version: 1.37.0
|
|
4
|
+
Summary: Type annotations for boto3 Transfer 1.37.0 service generated with mypy-boto3-builder 8.9.2
|
|
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
|
|
@@ -55,7 +55,7 @@ Dynamic: summary
|
|
|
55
55
|
|
|
56
56
|

|
|
57
57
|
|
|
58
|
-
Type annotations for [boto3 Transfer 1.
|
|
58
|
+
Type annotations for [boto3 Transfer 1.37.0](https://pypi.org/project/boto3/)
|
|
59
59
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
60
60
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
61
61
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -64,7 +64,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
64
64
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
65
65
|
|
|
66
66
|
Generated with
|
|
67
|
-
[mypy-boto3-builder 8.
|
|
67
|
+
[mypy-boto3-builder 8.9.2](https://github.com/youtype/mypy_boto3_builder).
|
|
68
68
|
|
|
69
69
|
More information can be found on
|
|
70
70
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -113,12 +113,12 @@ See how it helps you find and fix potential bugs:
|
|
|
113
113
|
### Generate locally (recommended)
|
|
114
114
|
|
|
115
115
|
You can generate type annotations for `boto3` package locally with
|
|
116
|
-
`
|
|
116
|
+
`mypy-boto3-builder`. Use
|
|
117
117
|
[uv](https://docs.astral.sh/uv/getting-started/installation/) for build
|
|
118
118
|
isolation.
|
|
119
119
|
|
|
120
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.
|
|
121
|
+
`uvx --with 'boto3==1.37.0' mypy-boto3-builder`
|
|
122
122
|
2. Select `boto3-stubs` AWS SDK.
|
|
123
123
|
3. Add `Transfer` service.
|
|
124
124
|
4. Use provided commands to install generated packages.
|
|
@@ -440,11 +440,14 @@ Full list of `Transfer` TypeDefs can be found in
|
|
|
440
440
|
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/type_defs/).
|
|
441
441
|
|
|
442
442
|
```python
|
|
443
|
+
# TypedDict usage example
|
|
443
444
|
from mypy_boto3_transfer.type_defs import As2ConnectorConfigTypeDef
|
|
444
445
|
|
|
445
446
|
|
|
446
447
|
def get_value() -> As2ConnectorConfigTypeDef:
|
|
447
|
-
return {
|
|
448
|
+
return {
|
|
449
|
+
"LocalProfileId": ...,
|
|
450
|
+
}
|
|
448
451
|
```
|
|
449
452
|
|
|
450
453
|
<a id="how-it-works"></a>
|
|
@@ -498,7 +501,8 @@ Builder changelog can be found in
|
|
|
498
501
|
## Versioning
|
|
499
502
|
|
|
500
503
|
`mypy-boto3-transfer` version is the same as related `boto3` version and
|
|
501
|
-
follows
|
|
504
|
+
follows
|
|
505
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
502
506
|
|
|
503
507
|
<a id="thank-you"></a>
|
|
504
508
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
mypy_boto3_transfer/__init__.py,sha256=t2pOUXo7W8TNe-jgA0-irsvTpRgDBu1c_-PGuwquyUI,3390
|
|
2
|
+
mypy_boto3_transfer/__init__.pyi,sha256=PQ_syhNHExDoYP9CvtCj7hbOZ04QncluE2HEqG8G3Jo,3389
|
|
3
|
+
mypy_boto3_transfer/__main__.py,sha256=2uhmQNKtUw9SR2ag_BUoZJshn-0K8F5ErwXMnP8Z2s4,984
|
|
4
|
+
mypy_boto3_transfer/client.py,sha256=hb4m91AKUcst04P5IAKBQwI1eUaxPmA-csQxUqNdqDE,52767
|
|
5
|
+
mypy_boto3_transfer/client.pyi,sha256=vnRwJtFXt2MrwtKhjC0gKm0tXIBqBaOOcJS61KUq8aY,52764
|
|
6
|
+
mypy_boto3_transfer/literals.py,sha256=Cm8ByFumZWO3HL4gmJzmEFT-blUafP-1FfNsv-lIBpQ,14474
|
|
7
|
+
mypy_boto3_transfer/literals.pyi,sha256=_gQ31qy_NDcKn0Mr6fUdraaKskK3aKlBzRRAXvdOczk,14472
|
|
8
|
+
mypy_boto3_transfer/paginator.py,sha256=72CQVOP0TvWzPhB6wpEmSGeX8lM2gZMLsK10rxeMWBQ,18231
|
|
9
|
+
mypy_boto3_transfer/paginator.pyi,sha256=QqtzDdKz1xAfIYlPK0X_es6dnnfSbXw1fjqbdF3FFWQ,18191
|
|
10
|
+
mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
mypy_boto3_transfer/type_defs.py,sha256=WFlMib35HGtzO74NjtPJ-4iWPkyJ7_zhe7wQD4eNaKc,48920
|
|
12
|
+
mypy_boto3_transfer/type_defs.pyi,sha256=H_mO8K2uGKMNwW61rTxcSs7GU0EUa7PrEJ3QLdiuVvI,48703
|
|
13
|
+
mypy_boto3_transfer/version.py,sha256=7dplwNyKC_M1NmYn8gNT0u-MAPuLyVgQc5Z98LiK1wM,92
|
|
14
|
+
mypy_boto3_transfer/waiter.py,sha256=2UKX-wTF6d41Ls7HSGO0mT1Kz30h40PCw7E09QCudSE,2645
|
|
15
|
+
mypy_boto3_transfer/waiter.pyi,sha256=B0g5zDjuMCEs0j-u_bw81lj6mCKn4MKqHA11MBppMUA,2640
|
|
16
|
+
mypy_boto3_transfer-1.37.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_transfer-1.37.0.dist-info/METADATA,sha256=grYaUAIyxDbSUSRFaYy7yjL7zN0OwLI5Ns3gSW-_y2g,17147
|
|
18
|
+
mypy_boto3_transfer-1.37.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
19
|
+
mypy_boto3_transfer-1.37.0.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
+
mypy_boto3_transfer-1.37.0.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_transfer/__init__.py,sha256=N91vG7bSAGmazWoBJIK7t0PobN-8MSvvi4bq4yIelCQ,3308
|
|
2
|
-
mypy_boto3_transfer/__init__.pyi,sha256=k2DRgoSYJrkvlgVH8mxXey9y29AoH8JOZcR1W49gYxg,3307
|
|
3
|
-
mypy_boto3_transfer/__main__.py,sha256=C77kHFucLxsx084OMSOiRI9vES1upKgbSUE-4-09ZtU,984
|
|
4
|
-
mypy_boto3_transfer/client.py,sha256=x9Df2JHqswfp3vTbV0lNtEo6zl1me66ybL8o89_HUYU,53775
|
|
5
|
-
mypy_boto3_transfer/client.pyi,sha256=byoHMrgzZ7ghbe3xAH9eLrT2Ddq_E07tzNaXU9a5-DE,53772
|
|
6
|
-
mypy_boto3_transfer/literals.py,sha256=i5KLa1auSw8tsz-45pIl9ingGzz9CUFIJzXm87M1sjU,14499
|
|
7
|
-
mypy_boto3_transfer/literals.pyi,sha256=i8c5Uo2U1E4-3a-VcMZgNHM1h21BwQIxLWt-qCrAlW4,14497
|
|
8
|
-
mypy_boto3_transfer/paginator.py,sha256=grJWOh0usUlUtQ1PShEXY6jPptusGfvCbOPvqBGKL5w,18231
|
|
9
|
-
mypy_boto3_transfer/paginator.pyi,sha256=LoGvioMSAwhBEn5l5m924RaAI6Df8K2u5CEnvTvdkk4,18191
|
|
10
|
-
mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_transfer/type_defs.py,sha256=2YdC34ygMODDL80Cq872uUE5AHt81GIgPmfSynk9IbQ,48560
|
|
12
|
-
mypy_boto3_transfer/type_defs.pyi,sha256=rSl-Mr2fgo1DZmjGxJofiLKqgsIRgOdogVUJTUAdAmI,48350
|
|
13
|
-
mypy_boto3_transfer/version.py,sha256=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
|
|
14
|
-
mypy_boto3_transfer/waiter.py,sha256=yGPom15Q80rRPWl29s8qpF2N4NnSFwks8tJ7_W4ikf4,2601
|
|
15
|
-
mypy_boto3_transfer/waiter.pyi,sha256=oAEaU_GRFe23zFUiSF_x1-0zy8_HopckzKRCIvbCT4Y,2596
|
|
16
|
-
mypy_boto3_transfer-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_transfer-1.36.0.dist-info/METADATA,sha256=wOsPZIFPrMwejKvcZkrE3-o8EdmGRQU-NGbkdL_i8bs,17035
|
|
18
|
-
mypy_boto3_transfer-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
19
|
-
mypy_boto3_transfer-1.36.0.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
-
mypy_boto3_transfer-1.36.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|