mypy-boto3-transfer 1.34.84__py3-none-any.whl → 1.34.89__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.
@@ -10,8 +10,8 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.Transfer 1.34.84\n"
14
- "Version: 1.34.84\n"
13
+ "Type annotations for boto3.Transfer 1.34.89\n"
14
+ "Version: 1.34.89\n"
15
15
  "Builder version: 7.23.2\n"
16
16
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer//\n"
17
17
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer\n"
@@ -24,7 +24,7 @@ def print_version() -> None:
24
24
  """
25
25
  Print package version to stdout.
26
26
  """
27
- print("1.34.84")
27
+ print("1.34.89")
28
28
 
29
29
 
30
30
  def main() -> None:
@@ -86,6 +86,7 @@ from .type_defs import (
86
86
  ProtocolDetailsTypeDef,
87
87
  S3StorageOptionsTypeDef,
88
88
  SftpConnectorConfigTypeDef,
89
+ StartDirectoryListingResponseTypeDef,
89
90
  StartFileTransferResponseTypeDef,
90
91
  TagTypeDef,
91
92
  TestConnectionResponseTypeDef,
@@ -706,6 +707,21 @@ class TransferClient(BaseClient):
706
707
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#send_workflow_step_state)
707
708
  """
708
709
 
710
+ def start_directory_listing(
711
+ self,
712
+ *,
713
+ ConnectorId: str,
714
+ RemoteDirectoryPath: str,
715
+ OutputDirectoryPath: str,
716
+ MaxItems: int = ...,
717
+ ) -> StartDirectoryListingResponseTypeDef:
718
+ """
719
+ Retrieves a list of the contents of a directory from a remote SFTP server.
720
+
721
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Client.start_directory_listing)
722
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#start_directory_listing)
723
+ """
724
+
709
725
  def start_file_transfer(
710
726
  self,
711
727
  *,
@@ -86,6 +86,7 @@ from .type_defs import (
86
86
  ProtocolDetailsTypeDef,
87
87
  S3StorageOptionsTypeDef,
88
88
  SftpConnectorConfigTypeDef,
89
+ StartDirectoryListingResponseTypeDef,
89
90
  StartFileTransferResponseTypeDef,
90
91
  TagTypeDef,
91
92
  TestConnectionResponseTypeDef,
@@ -703,6 +704,21 @@ class TransferClient(BaseClient):
703
704
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#send_workflow_step_state)
704
705
  """
705
706
 
707
+ def start_directory_listing(
708
+ self,
709
+ *,
710
+ ConnectorId: str,
711
+ RemoteDirectoryPath: str,
712
+ OutputDirectoryPath: str,
713
+ MaxItems: int = ...,
714
+ ) -> StartDirectoryListingResponseTypeDef:
715
+ """
716
+ Retrieves a list of the contents of a directory from a remote SFTP server.
717
+
718
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Client.start_directory_listing)
719
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#start_directory_listing)
720
+ """
721
+
706
722
  def start_file_transfer(
707
723
  self,
708
724
  *,
@@ -436,6 +436,7 @@ ServiceName = Literal[
436
436
  "route53-recovery-control-config",
437
437
  "route53-recovery-readiness",
438
438
  "route53domains",
439
+ "route53profiles",
439
440
  "route53resolver",
440
441
  "rum",
441
442
  "s3",
@@ -436,6 +436,7 @@ ServiceName = Literal[
436
436
  "route53-recovery-control-config",
437
437
  "route53-recovery-readiness",
438
438
  "route53domains",
439
+ "route53profiles",
439
440
  "route53resolver",
440
441
  "rum",
441
442
  "s3",
@@ -129,6 +129,7 @@ __all__ = (
129
129
  "S3TagTypeDef",
130
130
  "SendWorkflowStepStateRequestRequestTypeDef",
131
131
  "UserDetailsTypeDef",
132
+ "StartDirectoryListingRequestRequestTypeDef",
132
133
  "StartFileTransferRequestRequestTypeDef",
133
134
  "StartServerRequestRequestTypeDef",
134
135
  "StopServerRequestRequestTypeDef",
@@ -155,6 +156,7 @@ __all__ = (
155
156
  "ImportHostKeyResponseTypeDef",
156
157
  "ImportSshPublicKeyResponseTypeDef",
157
158
  "ListSecurityPoliciesResponseTypeDef",
159
+ "StartDirectoryListingResponseTypeDef",
158
160
  "StartFileTransferResponseTypeDef",
159
161
  "TestConnectionResponseTypeDef",
160
162
  "TestIdentityProviderResponseTypeDef",
@@ -769,6 +771,15 @@ UserDetailsTypeDef = TypedDict(
769
771
  "SessionId": NotRequired[str],
770
772
  },
771
773
  )
774
+ StartDirectoryListingRequestRequestTypeDef = TypedDict(
775
+ "StartDirectoryListingRequestRequestTypeDef",
776
+ {
777
+ "ConnectorId": str,
778
+ "RemoteDirectoryPath": str,
779
+ "OutputDirectoryPath": str,
780
+ "MaxItems": NotRequired[int],
781
+ },
782
+ )
772
783
  StartFileTransferRequestRequestTypeDef = TypedDict(
773
784
  "StartFileTransferRequestRequestTypeDef",
774
785
  {
@@ -989,6 +1000,14 @@ ListSecurityPoliciesResponseTypeDef = TypedDict(
989
1000
  "ResponseMetadata": ResponseMetadataTypeDef,
990
1001
  },
991
1002
  )
1003
+ StartDirectoryListingResponseTypeDef = TypedDict(
1004
+ "StartDirectoryListingResponseTypeDef",
1005
+ {
1006
+ "ListingId": str,
1007
+ "OutputFileName": str,
1008
+ "ResponseMetadata": ResponseMetadataTypeDef,
1009
+ },
1010
+ )
992
1011
  StartFileTransferResponseTypeDef = TypedDict(
993
1012
  "StartFileTransferResponseTypeDef",
994
1013
  {
@@ -129,6 +129,7 @@ __all__ = (
129
129
  "S3TagTypeDef",
130
130
  "SendWorkflowStepStateRequestRequestTypeDef",
131
131
  "UserDetailsTypeDef",
132
+ "StartDirectoryListingRequestRequestTypeDef",
132
133
  "StartFileTransferRequestRequestTypeDef",
133
134
  "StartServerRequestRequestTypeDef",
134
135
  "StopServerRequestRequestTypeDef",
@@ -155,6 +156,7 @@ __all__ = (
155
156
  "ImportHostKeyResponseTypeDef",
156
157
  "ImportSshPublicKeyResponseTypeDef",
157
158
  "ListSecurityPoliciesResponseTypeDef",
159
+ "StartDirectoryListingResponseTypeDef",
158
160
  "StartFileTransferResponseTypeDef",
159
161
  "TestConnectionResponseTypeDef",
160
162
  "TestIdentityProviderResponseTypeDef",
@@ -769,6 +771,15 @@ UserDetailsTypeDef = TypedDict(
769
771
  "SessionId": NotRequired[str],
770
772
  },
771
773
  )
774
+ StartDirectoryListingRequestRequestTypeDef = TypedDict(
775
+ "StartDirectoryListingRequestRequestTypeDef",
776
+ {
777
+ "ConnectorId": str,
778
+ "RemoteDirectoryPath": str,
779
+ "OutputDirectoryPath": str,
780
+ "MaxItems": NotRequired[int],
781
+ },
782
+ )
772
783
  StartFileTransferRequestRequestTypeDef = TypedDict(
773
784
  "StartFileTransferRequestRequestTypeDef",
774
785
  {
@@ -989,6 +1000,14 @@ ListSecurityPoliciesResponseTypeDef = TypedDict(
989
1000
  "ResponseMetadata": ResponseMetadataTypeDef,
990
1001
  },
991
1002
  )
1003
+ StartDirectoryListingResponseTypeDef = TypedDict(
1004
+ "StartDirectoryListingResponseTypeDef",
1005
+ {
1006
+ "ListingId": str,
1007
+ "OutputFileName": str,
1008
+ "ResponseMetadata": ResponseMetadataTypeDef,
1009
+ },
1010
+ )
992
1011
  StartFileTransferResponseTypeDef = TypedDict(
993
1012
  "StartFileTransferResponseTypeDef",
994
1013
  {
@@ -2,4 +2,4 @@
2
2
  Source of truth for version.
3
3
  """
4
4
 
5
- __version__ = "1.34.84"
5
+ __version__ = "1.34.89"
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-transfer
3
- Version: 1.34.84
4
- Summary: Type annotations for boto3.Transfer 1.34.84 service generated with mypy-boto3-builder 7.23.2
3
+ Version: 1.34.89
4
+ Summary: Type annotations for boto3.Transfer 1.34.89 service generated with mypy-boto3-builder 7.23.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
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
43
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
44
 
45
45
  Type annotations for
46
- [boto3.Transfer 1.34.84](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer)
46
+ [boto3.Transfer 1.34.89](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer)
47
47
  service compatible with [VSCode](https://code.visualstudio.com/),
48
48
  [PyCharm](https://www.jetbrains.com/pycharm/),
49
49
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -0,0 +1,20 @@
1
+ mypy_boto3_transfer/__init__.py,sha256=7s1QISzwzsnzQHCfQvKCVBlPmRIKBl0DKPIWKK0x-cw,2854
2
+ mypy_boto3_transfer/__init__.pyi,sha256=7s1QISzwzsnzQHCfQvKCVBlPmRIKBl0DKPIWKK0x-cw,2854
3
+ mypy_boto3_transfer/__main__.py,sha256=geNfnf_AvT46KcmGqdJrithsmTKxpyPXPHwOQ_by3DQ,923
4
+ mypy_boto3_transfer/client.py,sha256=OnYetjH59PhJGsNd-CMLKL2sM1LMX50dLBJbKV7Qklg,48094
5
+ mypy_boto3_transfer/client.pyi,sha256=125fB5NjVNecLJMeVKkuFRhOPNMwWhZz4Fa0HGnE9pc,48091
6
+ mypy_boto3_transfer/literals.py,sha256=Ak0uYjO1lmCwp5MEFwawKXMfSZ-T8k2JRuY5hAHQo34,13326
7
+ mypy_boto3_transfer/literals.pyi,sha256=Ak0uYjO1lmCwp5MEFwawKXMfSZ-T8k2JRuY5hAHQo34,13326
8
+ mypy_boto3_transfer/paginator.py,sha256=t0lcr_Cx89mq1B6Ml9qaudTxB9i0E4v-I1BR9J371XI,12188
9
+ mypy_boto3_transfer/paginator.pyi,sha256=1PAa9ndIE9WPuNuDlG9f2J4qvmZ9cE2uZfkbGtqUKPU,12176
10
+ mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_transfer/type_defs.py,sha256=alzbXOpY0vRQ2db5r_ZG618MU2MA1KVXGEgqH2ZYk98,52241
12
+ mypy_boto3_transfer/type_defs.pyi,sha256=alzbXOpY0vRQ2db5r_ZG618MU2MA1KVXGEgqH2ZYk98,52241
13
+ mypy_boto3_transfer/version.py,sha256=5KIKCOZOpCIrZ19FVWgJqP2Jehn-oZ3yd6u4x9T-rFw,62
14
+ mypy_boto3_transfer/waiter.py,sha256=i3jL0DsL0ra-yuCGruMYY0dXXefP37JKKjqZy0PV3as,2255
15
+ mypy_boto3_transfer/waiter.pyi,sha256=8L-Oj9DRLKTmRMfdRCfBzyRYmZXa5l-xItn_JGdpwoc,2253
16
+ mypy_boto3_transfer-1.34.89.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
+ mypy_boto3_transfer-1.34.89.dist-info/METADATA,sha256=JrAgkFx86_oTYGbb4BPhNmvqe9_PzdIBXJflR0o1WqM,14677
18
+ mypy_boto3_transfer-1.34.89.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
19
+ mypy_boto3_transfer-1.34.89.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
20
+ mypy_boto3_transfer-1.34.89.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- mypy_boto3_transfer/__init__.py,sha256=7s1QISzwzsnzQHCfQvKCVBlPmRIKBl0DKPIWKK0x-cw,2854
2
- mypy_boto3_transfer/__init__.pyi,sha256=7s1QISzwzsnzQHCfQvKCVBlPmRIKBl0DKPIWKK0x-cw,2854
3
- mypy_boto3_transfer/__main__.py,sha256=UKNtWnTl2FSiw8n4_bhTeoMu9M4DfPlqwK9Q38EirQc,923
4
- mypy_boto3_transfer/client.py,sha256=q7v_ZZRsAster0s3oaqJ8keVF3bAObbQEWTO670nxOE,47413
5
- mypy_boto3_transfer/client.pyi,sha256=FFFq0wqtoIH8UipCgTXOh5sASGwucatFh0uVpV_zjbI,47410
6
- mypy_boto3_transfer/literals.py,sha256=lSsTdChX61mxr0SS4cgUteHinoVrVLj7xrzpo1HwLTc,13303
7
- mypy_boto3_transfer/literals.pyi,sha256=lSsTdChX61mxr0SS4cgUteHinoVrVLj7xrzpo1HwLTc,13303
8
- mypy_boto3_transfer/paginator.py,sha256=t0lcr_Cx89mq1B6Ml9qaudTxB9i0E4v-I1BR9J371XI,12188
9
- mypy_boto3_transfer/paginator.pyi,sha256=1PAa9ndIE9WPuNuDlG9f2J4qvmZ9cE2uZfkbGtqUKPU,12176
10
- mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_transfer/type_defs.py,sha256=XImTkY35wuC9erMCzvtcAkFPTralej_GjTUoq0JA-LU,51669
12
- mypy_boto3_transfer/type_defs.pyi,sha256=XImTkY35wuC9erMCzvtcAkFPTralej_GjTUoq0JA-LU,51669
13
- mypy_boto3_transfer/version.py,sha256=XfIA6eAq7jxK0nHbqEfD0zHG_9mLvtQCs42hN_96TnM,62
14
- mypy_boto3_transfer/waiter.py,sha256=i3jL0DsL0ra-yuCGruMYY0dXXefP37JKKjqZy0PV3as,2255
15
- mypy_boto3_transfer/waiter.pyi,sha256=8L-Oj9DRLKTmRMfdRCfBzyRYmZXa5l-xItn_JGdpwoc,2253
16
- mypy_boto3_transfer-1.34.84.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
- mypy_boto3_transfer-1.34.84.dist-info/METADATA,sha256=DIz15SXAjWUhzEcjEXcch2BdVqjh-8wRgEy0Rk6A0kE,14677
18
- mypy_boto3_transfer-1.34.84.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
19
- mypy_boto3_transfer-1.34.84.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
20
- mypy_boto3_transfer-1.34.84.dist-info/RECORD,,