mypy-boto3-transfer 1.37.24__py3-none-any.whl → 1.37.31__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.
@@ -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.24\n"
16
- "Version: 1.37.24\n"
15
+ "Type annotations for boto3 Transfer 1.37.31\n"
16
+ "Version: 1.37.31\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.24\n")
29
+ sys.stdout.write("1.37.31\n")
30
30
 
31
31
 
32
32
  def main() -> None:
@@ -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:
@@ -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:
@@ -239,11 +239,16 @@ __all__ = (
239
239
  "SftpConnectorConfigOutputTypeDef",
240
240
  "SftpConnectorConfigTypeDef",
241
241
  "SftpConnectorConfigUnionTypeDef",
242
+ "SftpConnectorConnectionDetailsTypeDef",
242
243
  "SshPublicKeyTypeDef",
243
244
  "StartDirectoryListingRequestTypeDef",
244
245
  "StartDirectoryListingResponseTypeDef",
245
246
  "StartFileTransferRequestTypeDef",
246
247
  "StartFileTransferResponseTypeDef",
248
+ "StartRemoteDeleteRequestTypeDef",
249
+ "StartRemoteDeleteResponseTypeDef",
250
+ "StartRemoteMoveRequestTypeDef",
251
+ "StartRemoteMoveResponseTypeDef",
247
252
  "StartServerRequestTypeDef",
248
253
  "StopServerRequestTypeDef",
249
254
  "TagResourceRequestTypeDef",
@@ -524,6 +529,7 @@ class PosixProfileOutputTypeDef(TypedDict):
524
529
  class SftpConnectorConfigOutputTypeDef(TypedDict):
525
530
  UserSecretId: NotRequired[str]
526
531
  TrustedHostKeys: NotRequired[List[str]]
532
+ MaxConcurrentConnections: NotRequired[int]
527
533
 
528
534
 
529
535
  class LoggingConfigurationTypeDef(TypedDict):
@@ -816,6 +822,11 @@ class UserDetailsTypeDef(TypedDict):
816
822
  class SftpConnectorConfigTypeDef(TypedDict):
817
823
  UserSecretId: NotRequired[str]
818
824
  TrustedHostKeys: NotRequired[Sequence[str]]
825
+ MaxConcurrentConnections: NotRequired[int]
826
+
827
+
828
+ class SftpConnectorConnectionDetailsTypeDef(TypedDict):
829
+ HostKey: NotRequired[str]
819
830
 
820
831
 
821
832
  class StartDirectoryListingRequestTypeDef(TypedDict):
@@ -833,6 +844,17 @@ class StartFileTransferRequestTypeDef(TypedDict):
833
844
  RemoteDirectoryPath: NotRequired[str]
834
845
 
835
846
 
847
+ class StartRemoteDeleteRequestTypeDef(TypedDict):
848
+ ConnectorId: str
849
+ DeletePath: str
850
+
851
+
852
+ class StartRemoteMoveRequestTypeDef(TypedDict):
853
+ ConnectorId: str
854
+ SourcePath: str
855
+ TargetPath: str
856
+
857
+
836
858
  class StartServerRequestTypeDef(TypedDict):
837
859
  ServerId: str
838
860
 
@@ -972,10 +994,13 @@ class StartFileTransferResponseTypeDef(TypedDict):
972
994
  ResponseMetadata: ResponseMetadataTypeDef
973
995
 
974
996
 
975
- class TestConnectionResponseTypeDef(TypedDict):
976
- ConnectorId: str
977
- Status: str
978
- StatusMessage: str
997
+ class StartRemoteDeleteResponseTypeDef(TypedDict):
998
+ DeleteId: str
999
+ ResponseMetadata: ResponseMetadataTypeDef
1000
+
1001
+
1002
+ class StartRemoteMoveResponseTypeDef(TypedDict):
1003
+ MoveId: str
979
1004
  ResponseMetadata: ResponseMetadataTypeDef
980
1005
 
981
1006
 
@@ -1401,6 +1426,14 @@ SftpConnectorConfigUnionTypeDef = Union[
1401
1426
  ]
1402
1427
 
1403
1428
 
1429
+ class TestConnectionResponseTypeDef(TypedDict):
1430
+ ConnectorId: str
1431
+ Status: str
1432
+ StatusMessage: str
1433
+ SftpConnectionDetails: SftpConnectorConnectionDetailsTypeDef
1434
+ ResponseMetadata: ResponseMetadataTypeDef
1435
+
1436
+
1404
1437
  class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
1405
1438
  IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
1406
1439
 
@@ -238,11 +238,16 @@ __all__ = (
238
238
  "SftpConnectorConfigOutputTypeDef",
239
239
  "SftpConnectorConfigTypeDef",
240
240
  "SftpConnectorConfigUnionTypeDef",
241
+ "SftpConnectorConnectionDetailsTypeDef",
241
242
  "SshPublicKeyTypeDef",
242
243
  "StartDirectoryListingRequestTypeDef",
243
244
  "StartDirectoryListingResponseTypeDef",
244
245
  "StartFileTransferRequestTypeDef",
245
246
  "StartFileTransferResponseTypeDef",
247
+ "StartRemoteDeleteRequestTypeDef",
248
+ "StartRemoteDeleteResponseTypeDef",
249
+ "StartRemoteMoveRequestTypeDef",
250
+ "StartRemoteMoveResponseTypeDef",
246
251
  "StartServerRequestTypeDef",
247
252
  "StopServerRequestTypeDef",
248
253
  "TagResourceRequestTypeDef",
@@ -481,6 +486,7 @@ class PosixProfileOutputTypeDef(TypedDict):
481
486
  class SftpConnectorConfigOutputTypeDef(TypedDict):
482
487
  UserSecretId: NotRequired[str]
483
488
  TrustedHostKeys: NotRequired[List[str]]
489
+ MaxConcurrentConnections: NotRequired[int]
484
490
 
485
491
  class LoggingConfigurationTypeDef(TypedDict):
486
492
  LoggingRole: NotRequired[str]
@@ -729,6 +735,10 @@ class UserDetailsTypeDef(TypedDict):
729
735
  class SftpConnectorConfigTypeDef(TypedDict):
730
736
  UserSecretId: NotRequired[str]
731
737
  TrustedHostKeys: NotRequired[Sequence[str]]
738
+ MaxConcurrentConnections: NotRequired[int]
739
+
740
+ class SftpConnectorConnectionDetailsTypeDef(TypedDict):
741
+ HostKey: NotRequired[str]
732
742
 
733
743
  class StartDirectoryListingRequestTypeDef(TypedDict):
734
744
  ConnectorId: str
@@ -743,6 +753,15 @@ class StartFileTransferRequestTypeDef(TypedDict):
743
753
  LocalDirectoryPath: NotRequired[str]
744
754
  RemoteDirectoryPath: NotRequired[str]
745
755
 
756
+ class StartRemoteDeleteRequestTypeDef(TypedDict):
757
+ ConnectorId: str
758
+ DeletePath: str
759
+
760
+ class StartRemoteMoveRequestTypeDef(TypedDict):
761
+ ConnectorId: str
762
+ SourcePath: str
763
+ TargetPath: str
764
+
746
765
  class StartServerRequestTypeDef(TypedDict):
747
766
  ServerId: str
748
767
 
@@ -856,10 +875,12 @@ class StartFileTransferResponseTypeDef(TypedDict):
856
875
  TransferId: str
857
876
  ResponseMetadata: ResponseMetadataTypeDef
858
877
 
859
- class TestConnectionResponseTypeDef(TypedDict):
860
- ConnectorId: str
861
- Status: str
862
- StatusMessage: str
878
+ class StartRemoteDeleteResponseTypeDef(TypedDict):
879
+ DeleteId: str
880
+ ResponseMetadata: ResponseMetadataTypeDef
881
+
882
+ class StartRemoteMoveResponseTypeDef(TypedDict):
883
+ MoveId: str
863
884
  ResponseMetadata: ResponseMetadataTypeDef
864
885
 
865
886
  class TestIdentityProviderResponseTypeDef(TypedDict):
@@ -1221,6 +1242,13 @@ SftpConnectorConfigUnionTypeDef = Union[
1221
1242
  SftpConnectorConfigTypeDef, SftpConnectorConfigOutputTypeDef
1222
1243
  ]
1223
1244
 
1245
+ class TestConnectionResponseTypeDef(TypedDict):
1246
+ ConnectorId: str
1247
+ Status: str
1248
+ StatusMessage: str
1249
+ SftpConnectionDetails: SftpConnectorConnectionDetailsTypeDef
1250
+ ResponseMetadata: ResponseMetadataTypeDef
1251
+
1224
1252
  class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
1225
1253
  IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
1226
1254
 
@@ -4,4 +4,4 @@ Source of truth for version.
4
4
  Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.37.24"
7
+ __version__ = "1.37.31"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mypy-boto3-transfer
3
- Version: 1.37.24
4
- Summary: Type annotations for boto3 Transfer 1.37.24 service generated with mypy-boto3-builder 8.10.1
3
+ Version: 1.37.31
4
+ Summary: Type annotations for boto3 Transfer 1.37.31 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
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
58
58
 
59
- Type annotations for [boto3 Transfer 1.37.24](https://pypi.org/project/boto3/)
59
+ Type annotations for [boto3 Transfer 1.37.31](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.24' mypy-boto3-builder`
122
+ `uvx --with 'boto3==1.37.31' 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=3xxxIeHaCzorD8kQk4s-aFugoa97YQzayGRoXPumnrc,988
4
- mypy_boto3_transfer/client.py,sha256=hb4m91AKUcst04P5IAKBQwI1eUaxPmA-csQxUqNdqDE,52767
5
- mypy_boto3_transfer/client.pyi,sha256=vnRwJtFXt2MrwtKhjC0gKm0tXIBqBaOOcJS61KUq8aY,52764
3
+ mypy_boto3_transfer/__main__.py,sha256=Fj8U4yswlsJoD3-un-qfjtOyADdJH3KNDJlQWYgIitE,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=EVjjwXCMfOevJnaCp8MdcuV-lhWBD4nygQBfndUrdNA,49078
12
- mypy_boto3_transfer/type_defs.pyi,sha256=SSJ4YqTNyPnRoNjsBoESRvc4YTbXHQkW7Kk83mJBko4,48861
13
- mypy_boto3_transfer/version.py,sha256=r1UeUnTdeXkZoIoq1Vo1PHOJVohDxqd4shvM2Q0OrHI,93
11
+ mypy_boto3_transfer/type_defs.py,sha256=vldW370lTjyHIE_5sfgF09PhNas80d7CsI53pacLhEM,49958
12
+ mypy_boto3_transfer/type_defs.pyi,sha256=CCMlsvCatn5JAkYT3ZsuKQ7wQgywdslgJgtHBWCod4w,49736
13
+ mypy_boto3_transfer/version.py,sha256=tpSKRSXExi2a9Ikmxx3G_ABnatqCUReoCSgERv5OghI,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.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,,
16
+ mypy_boto3_transfer-1.37.31.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ mypy_boto3_transfer-1.37.31.dist-info/METADATA,sha256=cBdqBWXw2QY_zB2Yd0h_DcE9YatT3dlef19gEDS_yro,17175
18
+ mypy_boto3_transfer-1.37.31.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
19
+ mypy_boto3_transfer-1.37.31.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
20
+ mypy_boto3_transfer-1.37.31.dist-info/RECORD,,