mypy-boto3-transfer 1.37.0__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 +4 -4
- mypy_boto3_transfer/client.py +24 -0
- mypy_boto3_transfer/client.pyi +24 -0
- mypy_boto3_transfer/literals.py +4 -0
- mypy_boto3_transfer/literals.pyi +4 -0
- mypy_boto3_transfer/type_defs.py +28 -0
- mypy_boto3_transfer/type_defs.pyi +24 -0
- mypy_boto3_transfer/version.py +1 -1
- {mypy_boto3_transfer-1.37.0.dist-info → mypy_boto3_transfer-1.37.29.dist-info}/METADATA +7 -6
- mypy_boto3_transfer-1.37.29.dist-info/RECORD +20 -0
- {mypy_boto3_transfer-1.37.0.dist-info → mypy_boto3_transfer-1.37.29.dist-info}/WHEEL +1 -1
- mypy_boto3_transfer-1.37.0.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.37.0.dist-info → mypy_boto3_transfer-1.37.29.dist-info/licenses}/LICENSE +0 -0
- {mypy_boto3_transfer-1.37.0.dist-info → mypy_boto3_transfer-1.37.29.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/__main__.py
CHANGED
|
@@ -12,9 +12,9 @@ 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.
|
|
17
|
-
"Builder version: 8.
|
|
15
|
+
"Type annotations for boto3 Transfer 1.37.29\n"
|
|
16
|
+
"Version: 1.37.29\n"
|
|
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"
|
|
20
20
|
"Other services: https://pypi.org/project/boto3-stubs/\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/literals.py
CHANGED
|
@@ -77,6 +77,7 @@ __all__ = (
|
|
|
77
77
|
"TransferServiceName",
|
|
78
78
|
"TransferTableStatusType",
|
|
79
79
|
"WaiterName",
|
|
80
|
+
"WebAppEndpointPolicyType",
|
|
80
81
|
"WorkflowStepTypeType",
|
|
81
82
|
)
|
|
82
83
|
|
|
@@ -142,6 +143,7 @@ SigningAlgType = Literal["NONE", "SHA1", "SHA256", "SHA384", "SHA512"]
|
|
|
142
143
|
StateType = Literal["OFFLINE", "ONLINE", "STARTING", "START_FAILED", "STOPPING", "STOP_FAILED"]
|
|
143
144
|
TlsSessionResumptionModeType = Literal["DISABLED", "ENABLED", "ENFORCED"]
|
|
144
145
|
TransferTableStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS", "QUEUED"]
|
|
146
|
+
WebAppEndpointPolicyType = Literal["FIPS", "STANDARD"]
|
|
145
147
|
WorkflowStepTypeType = Literal["COPY", "CUSTOM", "DECRYPT", "DELETE", "TAG"]
|
|
146
148
|
TransferServiceName = Literal["transfer"]
|
|
147
149
|
ServiceName = Literal[
|
|
@@ -300,6 +302,7 @@ ServiceName = Literal[
|
|
|
300
302
|
"freetier",
|
|
301
303
|
"fsx",
|
|
302
304
|
"gamelift",
|
|
305
|
+
"gameliftstreams",
|
|
303
306
|
"geo-maps",
|
|
304
307
|
"geo-places",
|
|
305
308
|
"geo-routes",
|
|
@@ -325,6 +328,7 @@ ServiceName = Literal[
|
|
|
325
328
|
"iot",
|
|
326
329
|
"iot-data",
|
|
327
330
|
"iot-jobs-data",
|
|
331
|
+
"iot-managed-integrations",
|
|
328
332
|
"iotanalytics",
|
|
329
333
|
"iotdeviceadvisor",
|
|
330
334
|
"iotevents",
|
mypy_boto3_transfer/literals.pyi
CHANGED
|
@@ -76,6 +76,7 @@ __all__ = (
|
|
|
76
76
|
"TransferServiceName",
|
|
77
77
|
"TransferTableStatusType",
|
|
78
78
|
"WaiterName",
|
|
79
|
+
"WebAppEndpointPolicyType",
|
|
79
80
|
"WorkflowStepTypeType",
|
|
80
81
|
)
|
|
81
82
|
|
|
@@ -140,6 +141,7 @@ SigningAlgType = Literal["NONE", "SHA1", "SHA256", "SHA384", "SHA512"]
|
|
|
140
141
|
StateType = Literal["OFFLINE", "ONLINE", "STARTING", "START_FAILED", "STOPPING", "STOP_FAILED"]
|
|
141
142
|
TlsSessionResumptionModeType = Literal["DISABLED", "ENABLED", "ENFORCED"]
|
|
142
143
|
TransferTableStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS", "QUEUED"]
|
|
144
|
+
WebAppEndpointPolicyType = Literal["FIPS", "STANDARD"]
|
|
143
145
|
WorkflowStepTypeType = Literal["COPY", "CUSTOM", "DECRYPT", "DELETE", "TAG"]
|
|
144
146
|
TransferServiceName = Literal["transfer"]
|
|
145
147
|
ServiceName = Literal[
|
|
@@ -298,6 +300,7 @@ ServiceName = Literal[
|
|
|
298
300
|
"freetier",
|
|
299
301
|
"fsx",
|
|
300
302
|
"gamelift",
|
|
303
|
+
"gameliftstreams",
|
|
301
304
|
"geo-maps",
|
|
302
305
|
"geo-places",
|
|
303
306
|
"geo-routes",
|
|
@@ -323,6 +326,7 @@ ServiceName = Literal[
|
|
|
323
326
|
"iot",
|
|
324
327
|
"iot-data",
|
|
325
328
|
"iot-jobs-data",
|
|
329
|
+
"iot-managed-integrations",
|
|
326
330
|
"iotanalytics",
|
|
327
331
|
"iotdeviceadvisor",
|
|
328
332
|
"iotevents",
|
mypy_boto3_transfer/type_defs.py
CHANGED
|
@@ -54,6 +54,7 @@ from .literals import (
|
|
|
54
54
|
StateType,
|
|
55
55
|
TlsSessionResumptionModeType,
|
|
56
56
|
TransferTableStatusType,
|
|
57
|
+
WebAppEndpointPolicyType,
|
|
57
58
|
WorkflowStepTypeType,
|
|
58
59
|
)
|
|
59
60
|
|
|
@@ -243,6 +244,10 @@ __all__ = (
|
|
|
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",
|
|
@@ -832,6 +837,17 @@ class StartFileTransferRequestTypeDef(TypedDict):
|
|
|
832
837
|
RemoteDirectoryPath: NotRequired[str]
|
|
833
838
|
|
|
834
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
|
+
|
|
835
851
|
class StartServerRequestTypeDef(TypedDict):
|
|
836
852
|
ServerId: str
|
|
837
853
|
|
|
@@ -971,6 +987,16 @@ class StartFileTransferResponseTypeDef(TypedDict):
|
|
|
971
987
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
972
988
|
|
|
973
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
|
+
|
|
974
1000
|
class TestConnectionResponseTypeDef(TypedDict):
|
|
975
1001
|
ConnectorId: str
|
|
976
1002
|
Status: str
|
|
@@ -1453,6 +1479,7 @@ class DescribedWebAppTypeDef(TypedDict):
|
|
|
1453
1479
|
WebAppEndpoint: NotRequired[str]
|
|
1454
1480
|
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1455
1481
|
Tags: NotRequired[List[TagTypeDef]]
|
|
1482
|
+
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1456
1483
|
|
|
1457
1484
|
|
|
1458
1485
|
class DescribeUserResponseTypeDef(TypedDict):
|
|
@@ -1471,6 +1498,7 @@ class CreateWebAppRequestTypeDef(TypedDict):
|
|
|
1471
1498
|
AccessEndpoint: NotRequired[str]
|
|
1472
1499
|
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1473
1500
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1501
|
+
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1474
1502
|
|
|
1475
1503
|
|
|
1476
1504
|
class CopyStepDetailsTypeDef(TypedDict):
|
|
@@ -54,6 +54,7 @@ from .literals import (
|
|
|
54
54
|
StateType,
|
|
55
55
|
TlsSessionResumptionModeType,
|
|
56
56
|
TransferTableStatusType,
|
|
57
|
+
WebAppEndpointPolicyType,
|
|
57
58
|
WorkflowStepTypeType,
|
|
58
59
|
)
|
|
59
60
|
|
|
@@ -242,6 +243,10 @@ __all__ = (
|
|
|
242
243
|
"StartDirectoryListingResponseTypeDef",
|
|
243
244
|
"StartFileTransferRequestTypeDef",
|
|
244
245
|
"StartFileTransferResponseTypeDef",
|
|
246
|
+
"StartRemoteDeleteRequestTypeDef",
|
|
247
|
+
"StartRemoteDeleteResponseTypeDef",
|
|
248
|
+
"StartRemoteMoveRequestTypeDef",
|
|
249
|
+
"StartRemoteMoveResponseTypeDef",
|
|
245
250
|
"StartServerRequestTypeDef",
|
|
246
251
|
"StopServerRequestTypeDef",
|
|
247
252
|
"TagResourceRequestTypeDef",
|
|
@@ -742,6 +747,15 @@ class StartFileTransferRequestTypeDef(TypedDict):
|
|
|
742
747
|
LocalDirectoryPath: NotRequired[str]
|
|
743
748
|
RemoteDirectoryPath: NotRequired[str]
|
|
744
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
|
+
|
|
745
759
|
class StartServerRequestTypeDef(TypedDict):
|
|
746
760
|
ServerId: str
|
|
747
761
|
|
|
@@ -855,6 +869,14 @@ class StartFileTransferResponseTypeDef(TypedDict):
|
|
|
855
869
|
TransferId: str
|
|
856
870
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
857
871
|
|
|
872
|
+
class StartRemoteDeleteResponseTypeDef(TypedDict):
|
|
873
|
+
DeleteId: str
|
|
874
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
875
|
+
|
|
876
|
+
class StartRemoteMoveResponseTypeDef(TypedDict):
|
|
877
|
+
MoveId: str
|
|
878
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
879
|
+
|
|
858
880
|
class TestConnectionResponseTypeDef(TypedDict):
|
|
859
881
|
ConnectorId: str
|
|
860
882
|
Status: str
|
|
@@ -1264,6 +1286,7 @@ class DescribedWebAppTypeDef(TypedDict):
|
|
|
1264
1286
|
WebAppEndpoint: NotRequired[str]
|
|
1265
1287
|
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1266
1288
|
Tags: NotRequired[List[TagTypeDef]]
|
|
1289
|
+
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1267
1290
|
|
|
1268
1291
|
class DescribeUserResponseTypeDef(TypedDict):
|
|
1269
1292
|
ServerId: str
|
|
@@ -1279,6 +1302,7 @@ class CreateWebAppRequestTypeDef(TypedDict):
|
|
|
1279
1302
|
AccessEndpoint: NotRequired[str]
|
|
1280
1303
|
WebAppUnits: NotRequired[WebAppUnitsTypeDef]
|
|
1281
1304
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1305
|
+
WebAppEndpointPolicy: NotRequired[WebAppEndpointPolicyType]
|
|
1282
1306
|
|
|
1283
1307
|
class CopyStepDetailsTypeDef(TypedDict):
|
|
1284
1308
|
Name: NotRequired[str]
|
mypy_boto3_transfer/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
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
|
|
@@ -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.37.
|
|
59
|
+
Type annotations for [boto3 Transfer 1.37.29](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
|
|
@@ -118,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
118
119
|
isolation.
|
|
119
120
|
|
|
120
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.37.
|
|
122
|
+
`uvx --with 'boto3==1.37.29' 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.
|
|
@@ -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=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
|
+
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=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
|
+
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.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,,
|
|
@@ -1,20 +0,0 @@
|
|
|
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,,
|
{mypy_boto3_transfer-1.37.0.dist-info → mypy_boto3_transfer-1.37.29.dist-info/licenses}/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_transfer-1.37.0.dist-info → mypy_boto3_transfer-1.37.29.dist-info}/top_level.txt
RENAMED
|
File without changes
|