mypy-boto3-transfer 1.37.24__py3-none-any.whl → 1.37.29__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/__main__.py +3 -3
- mypy_boto3_transfer/client.py +24 -0
- mypy_boto3_transfer/client.pyi +24 -0
- mypy_boto3_transfer/type_defs.py +25 -0
- mypy_boto3_transfer/type_defs.pyi +21 -0
- mypy_boto3_transfer/version.py +1 -1
- {mypy_boto3_transfer-1.37.24.dist-info → mypy_boto3_transfer-1.37.29.dist-info}/METADATA +4 -4
- {mypy_boto3_transfer-1.37.24.dist-info → mypy_boto3_transfer-1.37.29.dist-info}/RECORD +11 -11
- {mypy_boto3_transfer-1.37.24.dist-info → mypy_boto3_transfer-1.37.29.dist-info}/WHEEL +0 -0
- {mypy_boto3_transfer-1.37.24.dist-info → mypy_boto3_transfer-1.37.29.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_transfer-1.37.24.dist-info → mypy_boto3_transfer-1.37.29.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 Transfer 1.37.
|
|
16
|
-
"Version: 1.37.
|
|
15
|
+
"Type annotations for boto3 Transfer 1.37.29\n"
|
|
16
|
+
"Version: 1.37.29\n"
|
|
17
17
|
"Builder version: 8.10.1\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#transfer\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.37.
|
|
29
|
+
sys.stdout.write("1.37.29\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_transfer/client.py
CHANGED
|
@@ -135,6 +135,10 @@ from .type_defs import (
|
|
|
135
135
|
StartDirectoryListingResponseTypeDef,
|
|
136
136
|
StartFileTransferRequestTypeDef,
|
|
137
137
|
StartFileTransferResponseTypeDef,
|
|
138
|
+
StartRemoteDeleteRequestTypeDef,
|
|
139
|
+
StartRemoteDeleteResponseTypeDef,
|
|
140
|
+
StartRemoteMoveRequestTypeDef,
|
|
141
|
+
StartRemoteMoveResponseTypeDef,
|
|
138
142
|
StartServerRequestTypeDef,
|
|
139
143
|
StopServerRequestTypeDef,
|
|
140
144
|
TagResourceRequestTypeDef,
|
|
@@ -789,6 +793,26 @@ class TransferClient(BaseClient):
|
|
|
789
793
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#start_file_transfer)
|
|
790
794
|
"""
|
|
791
795
|
|
|
796
|
+
def start_remote_delete(
|
|
797
|
+
self, **kwargs: Unpack[StartRemoteDeleteRequestTypeDef]
|
|
798
|
+
) -> StartRemoteDeleteResponseTypeDef:
|
|
799
|
+
"""
|
|
800
|
+
Deletes a file or directory on the remote SFTP server.
|
|
801
|
+
|
|
802
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/client/start_remote_delete.html)
|
|
803
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#start_remote_delete)
|
|
804
|
+
"""
|
|
805
|
+
|
|
806
|
+
def start_remote_move(
|
|
807
|
+
self, **kwargs: Unpack[StartRemoteMoveRequestTypeDef]
|
|
808
|
+
) -> StartRemoteMoveResponseTypeDef:
|
|
809
|
+
"""
|
|
810
|
+
Moves or renames a file or directory on the remote SFTP server.
|
|
811
|
+
|
|
812
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/client/start_remote_move.html)
|
|
813
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#start_remote_move)
|
|
814
|
+
"""
|
|
815
|
+
|
|
792
816
|
def start_server(
|
|
793
817
|
self, **kwargs: Unpack[StartServerRequestTypeDef]
|
|
794
818
|
) -> EmptyResponseMetadataTypeDef:
|
mypy_boto3_transfer/client.pyi
CHANGED
|
@@ -135,6 +135,10 @@ from .type_defs import (
|
|
|
135
135
|
StartDirectoryListingResponseTypeDef,
|
|
136
136
|
StartFileTransferRequestTypeDef,
|
|
137
137
|
StartFileTransferResponseTypeDef,
|
|
138
|
+
StartRemoteDeleteRequestTypeDef,
|
|
139
|
+
StartRemoteDeleteResponseTypeDef,
|
|
140
|
+
StartRemoteMoveRequestTypeDef,
|
|
141
|
+
StartRemoteMoveResponseTypeDef,
|
|
138
142
|
StartServerRequestTypeDef,
|
|
139
143
|
StopServerRequestTypeDef,
|
|
140
144
|
TagResourceRequestTypeDef,
|
|
@@ -786,6 +790,26 @@ class TransferClient(BaseClient):
|
|
|
786
790
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#start_file_transfer)
|
|
787
791
|
"""
|
|
788
792
|
|
|
793
|
+
def start_remote_delete(
|
|
794
|
+
self, **kwargs: Unpack[StartRemoteDeleteRequestTypeDef]
|
|
795
|
+
) -> StartRemoteDeleteResponseTypeDef:
|
|
796
|
+
"""
|
|
797
|
+
Deletes a file or directory on the remote SFTP server.
|
|
798
|
+
|
|
799
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/client/start_remote_delete.html)
|
|
800
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#start_remote_delete)
|
|
801
|
+
"""
|
|
802
|
+
|
|
803
|
+
def start_remote_move(
|
|
804
|
+
self, **kwargs: Unpack[StartRemoteMoveRequestTypeDef]
|
|
805
|
+
) -> StartRemoteMoveResponseTypeDef:
|
|
806
|
+
"""
|
|
807
|
+
Moves or renames a file or directory on the remote SFTP server.
|
|
808
|
+
|
|
809
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/client/start_remote_move.html)
|
|
810
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#start_remote_move)
|
|
811
|
+
"""
|
|
812
|
+
|
|
789
813
|
def start_server(
|
|
790
814
|
self, **kwargs: Unpack[StartServerRequestTypeDef]
|
|
791
815
|
) -> EmptyResponseMetadataTypeDef:
|
mypy_boto3_transfer/type_defs.py
CHANGED
|
@@ -244,6 +244,10 @@ __all__ = (
|
|
|
244
244
|
"StartDirectoryListingResponseTypeDef",
|
|
245
245
|
"StartFileTransferRequestTypeDef",
|
|
246
246
|
"StartFileTransferResponseTypeDef",
|
|
247
|
+
"StartRemoteDeleteRequestTypeDef",
|
|
248
|
+
"StartRemoteDeleteResponseTypeDef",
|
|
249
|
+
"StartRemoteMoveRequestTypeDef",
|
|
250
|
+
"StartRemoteMoveResponseTypeDef",
|
|
247
251
|
"StartServerRequestTypeDef",
|
|
248
252
|
"StopServerRequestTypeDef",
|
|
249
253
|
"TagResourceRequestTypeDef",
|
|
@@ -833,6 +837,17 @@ class StartFileTransferRequestTypeDef(TypedDict):
|
|
|
833
837
|
RemoteDirectoryPath: NotRequired[str]
|
|
834
838
|
|
|
835
839
|
|
|
840
|
+
class StartRemoteDeleteRequestTypeDef(TypedDict):
|
|
841
|
+
ConnectorId: str
|
|
842
|
+
DeletePath: str
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
class StartRemoteMoveRequestTypeDef(TypedDict):
|
|
846
|
+
ConnectorId: str
|
|
847
|
+
SourcePath: str
|
|
848
|
+
TargetPath: str
|
|
849
|
+
|
|
850
|
+
|
|
836
851
|
class StartServerRequestTypeDef(TypedDict):
|
|
837
852
|
ServerId: str
|
|
838
853
|
|
|
@@ -972,6 +987,16 @@ class StartFileTransferResponseTypeDef(TypedDict):
|
|
|
972
987
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
973
988
|
|
|
974
989
|
|
|
990
|
+
class StartRemoteDeleteResponseTypeDef(TypedDict):
|
|
991
|
+
DeleteId: str
|
|
992
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
993
|
+
|
|
994
|
+
|
|
995
|
+
class StartRemoteMoveResponseTypeDef(TypedDict):
|
|
996
|
+
MoveId: str
|
|
997
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
998
|
+
|
|
999
|
+
|
|
975
1000
|
class TestConnectionResponseTypeDef(TypedDict):
|
|
976
1001
|
ConnectorId: str
|
|
977
1002
|
Status: str
|
|
@@ -243,6 +243,10 @@ __all__ = (
|
|
|
243
243
|
"StartDirectoryListingResponseTypeDef",
|
|
244
244
|
"StartFileTransferRequestTypeDef",
|
|
245
245
|
"StartFileTransferResponseTypeDef",
|
|
246
|
+
"StartRemoteDeleteRequestTypeDef",
|
|
247
|
+
"StartRemoteDeleteResponseTypeDef",
|
|
248
|
+
"StartRemoteMoveRequestTypeDef",
|
|
249
|
+
"StartRemoteMoveResponseTypeDef",
|
|
246
250
|
"StartServerRequestTypeDef",
|
|
247
251
|
"StopServerRequestTypeDef",
|
|
248
252
|
"TagResourceRequestTypeDef",
|
|
@@ -743,6 +747,15 @@ class StartFileTransferRequestTypeDef(TypedDict):
|
|
|
743
747
|
LocalDirectoryPath: NotRequired[str]
|
|
744
748
|
RemoteDirectoryPath: NotRequired[str]
|
|
745
749
|
|
|
750
|
+
class StartRemoteDeleteRequestTypeDef(TypedDict):
|
|
751
|
+
ConnectorId: str
|
|
752
|
+
DeletePath: str
|
|
753
|
+
|
|
754
|
+
class StartRemoteMoveRequestTypeDef(TypedDict):
|
|
755
|
+
ConnectorId: str
|
|
756
|
+
SourcePath: str
|
|
757
|
+
TargetPath: str
|
|
758
|
+
|
|
746
759
|
class StartServerRequestTypeDef(TypedDict):
|
|
747
760
|
ServerId: str
|
|
748
761
|
|
|
@@ -856,6 +869,14 @@ class StartFileTransferResponseTypeDef(TypedDict):
|
|
|
856
869
|
TransferId: str
|
|
857
870
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
858
871
|
|
|
872
|
+
class StartRemoteDeleteResponseTypeDef(TypedDict):
|
|
873
|
+
DeleteId: str
|
|
874
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
875
|
+
|
|
876
|
+
class StartRemoteMoveResponseTypeDef(TypedDict):
|
|
877
|
+
MoveId: str
|
|
878
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
879
|
+
|
|
859
880
|
class TestConnectionResponseTypeDef(TypedDict):
|
|
860
881
|
ConnectorId: str
|
|
861
882
|
Status: str
|
mypy_boto3_transfer/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-transfer
|
|
3
|
-
Version: 1.37.
|
|
4
|
-
Summary: Type annotations for boto3 Transfer 1.37.
|
|
3
|
+
Version: 1.37.29
|
|
4
|
+
Summary: Type annotations for boto3 Transfer 1.37.29 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
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 Transfer 1.37.
|
|
59
|
+
Type annotations for [boto3 Transfer 1.37.29](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.37.
|
|
122
|
+
`uvx --with 'boto3==1.37.29' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
124
|
3. Add `Transfer` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
mypy_boto3_transfer/__init__.py,sha256=t2pOUXo7W8TNe-jgA0-irsvTpRgDBu1c_-PGuwquyUI,3390
|
|
2
2
|
mypy_boto3_transfer/__init__.pyi,sha256=PQ_syhNHExDoYP9CvtCj7hbOZ04QncluE2HEqG8G3Jo,3389
|
|
3
|
-
mypy_boto3_transfer/__main__.py,sha256=
|
|
4
|
-
mypy_boto3_transfer/client.py,sha256=
|
|
5
|
-
mypy_boto3_transfer/client.pyi,sha256=
|
|
3
|
+
mypy_boto3_transfer/__main__.py,sha256=3BOBuK9toAO9CCnYtgQmC_1D6TLMc_Mb5RkavyrtKFI,988
|
|
4
|
+
mypy_boto3_transfer/client.py,sha256=6l0uSAVJ6BVdzPf1gv_asKcvpxuMbBxwBHNprQJrGaE,53932
|
|
5
|
+
mypy_boto3_transfer/client.pyi,sha256=NNnyI8PomDZglArhR_iQXKG452-10OUFeLlp8LN8zcc,53929
|
|
6
6
|
mypy_boto3_transfer/literals.py,sha256=qFZDXccG1a-dkfoH36zQ-9dPwfxDR1DEfqHRetmee7g,14616
|
|
7
7
|
mypy_boto3_transfer/literals.pyi,sha256=8GmN9OVcthZkiKYEc5CGJxr5NcrcSbPuHaHLxh-l_cI,14614
|
|
8
8
|
mypy_boto3_transfer/paginator.py,sha256=72CQVOP0TvWzPhB6wpEmSGeX8lM2gZMLsK10rxeMWBQ,18231
|
|
9
9
|
mypy_boto3_transfer/paginator.pyi,sha256=QqtzDdKz1xAfIYlPK0X_es6dnnfSbXw1fjqbdF3FFWQ,18191
|
|
10
10
|
mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_transfer/type_defs.py,sha256=
|
|
12
|
-
mypy_boto3_transfer/type_defs.pyi,sha256=
|
|
13
|
-
mypy_boto3_transfer/version.py,sha256=
|
|
11
|
+
mypy_boto3_transfer/type_defs.py,sha256=GIYWovOH9dax1nKP-GUvi_1B8ZjEPcmFL-6J9OfNPew,49666
|
|
12
|
+
mypy_boto3_transfer/type_defs.pyi,sha256=hRO86Lu8jCgfStN1geoy0VHWggCeThjcKjm8AH2jxKI,49445
|
|
13
|
+
mypy_boto3_transfer/version.py,sha256=8SU524iT9S6biRW1KMnrJgtXIN8uoV6R7HeTIagwPZk,93
|
|
14
14
|
mypy_boto3_transfer/waiter.py,sha256=2UKX-wTF6d41Ls7HSGO0mT1Kz30h40PCw7E09QCudSE,2645
|
|
15
15
|
mypy_boto3_transfer/waiter.pyi,sha256=B0g5zDjuMCEs0j-u_bw81lj6mCKn4MKqHA11MBppMUA,2640
|
|
16
|
-
mypy_boto3_transfer-1.37.
|
|
17
|
-
mypy_boto3_transfer-1.37.
|
|
18
|
-
mypy_boto3_transfer-1.37.
|
|
19
|
-
mypy_boto3_transfer-1.37.
|
|
20
|
-
mypy_boto3_transfer-1.37.
|
|
16
|
+
mypy_boto3_transfer-1.37.29.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_transfer-1.37.29.dist-info/METADATA,sha256=K0e0kq6pSMWFZv5vsQ7HqZo7Wk2Z24sG2whfNGk0lGg,17175
|
|
18
|
+
mypy_boto3_transfer-1.37.29.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
19
|
+
mypy_boto3_transfer-1.37.29.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
+
mypy_boto3_transfer-1.37.29.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_transfer-1.37.24.dist-info → mypy_boto3_transfer-1.37.29.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_transfer-1.37.24.dist-info → mypy_boto3_transfer-1.37.29.dist-info}/top_level.txt
RENAMED
|
File without changes
|