mypy-boto3-transfer 1.36.6__py3-none-any.whl → 1.37.24__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 +6 -3
- mypy_boto3_transfer/literals.pyi +6 -3
- mypy_boto3_transfer/paginator.py +2 -2
- mypy_boto3_transfer/paginator.pyi +2 -2
- mypy_boto3_transfer/type_defs.py +292 -261
- mypy_boto3_transfer/type_defs.pyi +275 -250
- 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.6.dist-info → mypy_boto3_transfer-1.37.24.dist-info}/METADATA +14 -9
- mypy_boto3_transfer-1.37.24.dist-info/RECORD +20 -0
- {mypy_boto3_transfer-1.36.6.dist-info → mypy_boto3_transfer-1.37.24.dist-info}/WHEEL +1 -1
- mypy_boto3_transfer-1.36.6.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.36.6.dist-info → mypy_boto3_transfer-1.37.24.dist-info/licenses}/LICENSE +0 -0
- {mypy_boto3_transfer-1.36.6.dist-info → mypy_boto3_transfer-1.37.24.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
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-transfer
|
|
3
|
-
Version: 1.
|
|
4
|
-
Summary: Type annotations for boto3 Transfer 1.
|
|
3
|
+
Version: 1.37.24
|
|
4
|
+
Summary: Type annotations for boto3 Transfer 1.37.24 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
|
|
@@ -55,7 +56,7 @@ Dynamic: summary
|
|
|
55
56
|
|
|
56
57
|

|
|
57
58
|
|
|
58
|
-
Type annotations for [boto3 Transfer 1.
|
|
59
|
+
Type annotations for [boto3 Transfer 1.37.24](https://pypi.org/project/boto3/)
|
|
59
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
60
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
61
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -64,7 +65,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
64
65
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
65
66
|
|
|
66
67
|
Generated with
|
|
67
|
-
[mypy-boto3-builder 8.
|
|
68
|
+
[mypy-boto3-builder 8.10.1](https://github.com/youtype/mypy_boto3_builder).
|
|
68
69
|
|
|
69
70
|
More information can be found on
|
|
70
71
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) 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.
|
|
122
|
+
`uvx --with 'boto3==1.37.24' mypy-boto3-builder`
|
|
122
123
|
2. Select `boto3-stubs` AWS SDK.
|
|
123
124
|
3. Add `Transfer` service.
|
|
124
125
|
4. Use provided commands to install generated packages.
|
|
@@ -440,11 +441,14 @@ Full list of `Transfer` TypeDefs can be found in
|
|
|
440
441
|
[docs](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/type_defs/).
|
|
441
442
|
|
|
442
443
|
```python
|
|
444
|
+
# TypedDict usage example
|
|
443
445
|
from mypy_boto3_transfer.type_defs import As2ConnectorConfigTypeDef
|
|
444
446
|
|
|
445
447
|
|
|
446
448
|
def get_value() -> As2ConnectorConfigTypeDef:
|
|
447
|
-
return {
|
|
449
|
+
return {
|
|
450
|
+
"LocalProfileId": ...,
|
|
451
|
+
}
|
|
448
452
|
```
|
|
449
453
|
|
|
450
454
|
<a id="how-it-works"></a>
|
|
@@ -498,7 +502,8 @@ Builder changelog can be found in
|
|
|
498
502
|
## Versioning
|
|
499
503
|
|
|
500
504
|
`mypy-boto3-transfer` version is the same as related `boto3` version and
|
|
501
|
-
follows
|
|
505
|
+
follows
|
|
506
|
+
[Python Packaging version specifiers](https://packaging.python.org/en/latest/specifications/version-specifiers/).
|
|
502
507
|
|
|
503
508
|
<a id="thank-you"></a>
|
|
504
509
|
|
|
@@ -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=3xxxIeHaCzorD8kQk4s-aFugoa97YQzayGRoXPumnrc,988
|
|
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=qFZDXccG1a-dkfoH36zQ-9dPwfxDR1DEfqHRetmee7g,14616
|
|
7
|
+
mypy_boto3_transfer/literals.pyi,sha256=8GmN9OVcthZkiKYEc5CGJxr5NcrcSbPuHaHLxh-l_cI,14614
|
|
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=EVjjwXCMfOevJnaCp8MdcuV-lhWBD4nygQBfndUrdNA,49078
|
|
12
|
+
mypy_boto3_transfer/type_defs.pyi,sha256=SSJ4YqTNyPnRoNjsBoESRvc4YTbXHQkW7Kk83mJBko4,48861
|
|
13
|
+
mypy_boto3_transfer/version.py,sha256=r1UeUnTdeXkZoIoq1Vo1PHOJVohDxqd4shvM2Q0OrHI,93
|
|
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.24.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_transfer-1.37.24.dist-info/METADATA,sha256=mLRVdEd6GmKef1ME15E0CB42MHBNRyXNWjtaI2-71So,17175
|
|
18
|
+
mypy_boto3_transfer-1.37.24.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
19
|
+
mypy_boto3_transfer-1.37.24.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
+
mypy_boto3_transfer-1.37.24.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=h341Yn6LrHyjmI_Al6s_ycufggPfHm5OkWewhNkw-BM,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=CyItZu8e9dSvv4nNp1jYNnwm6gjZwvfcBHuAf75u75M,49004
|
|
12
|
-
mypy_boto3_transfer/type_defs.pyi,sha256=tRyuNUoj8WyOLymAfEXWmMwIjGwp3uszzcDFJ_69X0s,48793
|
|
13
|
-
mypy_boto3_transfer/version.py,sha256=5Yl9WQzkiL2ZwWs1HLoOrpqzcPA_okolId-TlB_6aEg,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.6.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
-
mypy_boto3_transfer-1.36.6.dist-info/METADATA,sha256=ck6MCx8_Knr0ZQmmLCQ2XDcWLTXb7fp_2BcwBVl858w,17035
|
|
18
|
-
mypy_boto3_transfer-1.36.6.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
19
|
-
mypy_boto3_transfer-1.36.6.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
-
mypy_boto3_transfer-1.36.6.dist-info/RECORD,,
|
{mypy_boto3_transfer-1.36.6.dist-info → mypy_boto3_transfer-1.37.24.dist-info/licenses}/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_transfer-1.36.6.dist-info → mypy_boto3_transfer-1.37.24.dist-info}/top_level.txt
RENAMED
|
File without changes
|