mypy-boto3-transfer 1.34.59__py3-none-any.whl → 1.34.77__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 +5 -6
- mypy_boto3_transfer/client.pyi +5 -6
- mypy_boto3_transfer/literals.py +7 -1
- mypy_boto3_transfer/literals.pyi +7 -1
- mypy_boto3_transfer/type_defs.py +8 -0
- mypy_boto3_transfer/type_defs.pyi +8 -0
- mypy_boto3_transfer/version.py +1 -1
- {mypy_boto3_transfer-1.34.59.dist-info → mypy_boto3_transfer-1.34.77.dist-info}/METADATA +3 -3
- mypy_boto3_transfer-1.34.77.dist-info/RECORD +20 -0
- {mypy_boto3_transfer-1.34.59.dist-info → mypy_boto3_transfer-1.34.77.dist-info}/WHEEL +1 -1
- mypy_boto3_transfer-1.34.59.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.34.59.dist-info → mypy_boto3_transfer-1.34.77.dist-info}/LICENSE +0 -0
- {mypy_boto3_transfer-1.34.59.dist-info → mypy_boto3_transfer-1.34.77.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/__main__.py
CHANGED
|
@@ -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.
|
|
14
|
-
"Version: 1.34.
|
|
13
|
+
"Type annotations for boto3.Transfer 1.34.77\n"
|
|
14
|
+
"Version: 1.34.77\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.
|
|
27
|
+
print("1.34.77")
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
def main() -> None:
|
mypy_boto3_transfer/client.py
CHANGED
|
@@ -215,6 +215,7 @@ class TransferClient(BaseClient):
|
|
|
215
215
|
LoggingRole: str = ...,
|
|
216
216
|
Tags: Sequence[TagTypeDef] = ...,
|
|
217
217
|
SftpConfig: SftpConnectorConfigTypeDef = ...,
|
|
218
|
+
SecurityPolicyName: str = ...,
|
|
218
219
|
) -> CreateConnectorResponseTypeDef:
|
|
219
220
|
"""
|
|
220
221
|
Creates the connector, which captures the parameters for a connection for the
|
|
@@ -465,9 +466,7 @@ class TransferClient(BaseClient):
|
|
|
465
466
|
self, *, SecurityPolicyName: str
|
|
466
467
|
) -> DescribeSecurityPolicyResponseTypeDef:
|
|
467
468
|
"""
|
|
468
|
-
Describes the security policy that is attached to your
|
|
469
|
-
protocol-enabled
|
|
470
|
-
server.
|
|
469
|
+
Describes the security policy that is attached to your server or SFTP connector.
|
|
471
470
|
|
|
472
471
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Client.describe_security_policy)
|
|
473
472
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#describe_security_policy)
|
|
@@ -643,9 +642,8 @@ class TransferClient(BaseClient):
|
|
|
643
642
|
self, *, MaxResults: int = ..., NextToken: str = ...
|
|
644
643
|
) -> ListSecurityPoliciesResponseTypeDef:
|
|
645
644
|
"""
|
|
646
|
-
Lists the security policies that are attached to your
|
|
647
|
-
|
|
648
|
-
servers.
|
|
645
|
+
Lists the security policies that are attached to your servers and SFTP
|
|
646
|
+
connectors.
|
|
649
647
|
|
|
650
648
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Client.list_security_policies)
|
|
651
649
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#list_security_policies)
|
|
@@ -855,6 +853,7 @@ class TransferClient(BaseClient):
|
|
|
855
853
|
AccessRole: str = ...,
|
|
856
854
|
LoggingRole: str = ...,
|
|
857
855
|
SftpConfig: SftpConnectorConfigTypeDef = ...,
|
|
856
|
+
SecurityPolicyName: str = ...,
|
|
858
857
|
) -> UpdateConnectorResponseTypeDef:
|
|
859
858
|
"""
|
|
860
859
|
Updates some of the parameters for an existing connector.
|
mypy_boto3_transfer/client.pyi
CHANGED
|
@@ -212,6 +212,7 @@ class TransferClient(BaseClient):
|
|
|
212
212
|
LoggingRole: str = ...,
|
|
213
213
|
Tags: Sequence[TagTypeDef] = ...,
|
|
214
214
|
SftpConfig: SftpConnectorConfigTypeDef = ...,
|
|
215
|
+
SecurityPolicyName: str = ...,
|
|
215
216
|
) -> CreateConnectorResponseTypeDef:
|
|
216
217
|
"""
|
|
217
218
|
Creates the connector, which captures the parameters for a connection for the
|
|
@@ -462,9 +463,7 @@ class TransferClient(BaseClient):
|
|
|
462
463
|
self, *, SecurityPolicyName: str
|
|
463
464
|
) -> DescribeSecurityPolicyResponseTypeDef:
|
|
464
465
|
"""
|
|
465
|
-
Describes the security policy that is attached to your
|
|
466
|
-
protocol-enabled
|
|
467
|
-
server.
|
|
466
|
+
Describes the security policy that is attached to your server or SFTP connector.
|
|
468
467
|
|
|
469
468
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Client.describe_security_policy)
|
|
470
469
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#describe_security_policy)
|
|
@@ -640,9 +639,8 @@ class TransferClient(BaseClient):
|
|
|
640
639
|
self, *, MaxResults: int = ..., NextToken: str = ...
|
|
641
640
|
) -> ListSecurityPoliciesResponseTypeDef:
|
|
642
641
|
"""
|
|
643
|
-
Lists the security policies that are attached to your
|
|
644
|
-
|
|
645
|
-
servers.
|
|
642
|
+
Lists the security policies that are attached to your servers and SFTP
|
|
643
|
+
connectors.
|
|
646
644
|
|
|
647
645
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Client.list_security_policies)
|
|
648
646
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#list_security_policies)
|
|
@@ -852,6 +850,7 @@ class TransferClient(BaseClient):
|
|
|
852
850
|
AccessRole: str = ...,
|
|
853
851
|
LoggingRole: str = ...,
|
|
854
852
|
SftpConfig: SftpConnectorConfigTypeDef = ...,
|
|
853
|
+
SecurityPolicyName: str = ...,
|
|
855
854
|
) -> UpdateConnectorResponseTypeDef:
|
|
856
855
|
"""
|
|
857
856
|
Updates some of the parameters for an existing connector.
|
mypy_boto3_transfer/literals.py
CHANGED
|
@@ -53,6 +53,8 @@ __all__ = (
|
|
|
53
53
|
"OverwriteExistingType",
|
|
54
54
|
"ProfileTypeType",
|
|
55
55
|
"ProtocolType",
|
|
56
|
+
"SecurityPolicyProtocolType",
|
|
57
|
+
"SecurityPolicyResourceTypeType",
|
|
56
58
|
"ServerOfflineWaiterName",
|
|
57
59
|
"ServerOnlineWaiterName",
|
|
58
60
|
"SetStatOptionType",
|
|
@@ -113,6 +115,8 @@ MdnSigningAlgType = Literal["DEFAULT", "NONE", "SHA1", "SHA256", "SHA384", "SHA5
|
|
|
113
115
|
OverwriteExistingType = Literal["FALSE", "TRUE"]
|
|
114
116
|
ProfileTypeType = Literal["LOCAL", "PARTNER"]
|
|
115
117
|
ProtocolType = Literal["AS2", "FTP", "FTPS", "SFTP"]
|
|
118
|
+
SecurityPolicyProtocolType = Literal["FTPS", "SFTP"]
|
|
119
|
+
SecurityPolicyResourceTypeType = Literal["CONNECTOR", "SERVER"]
|
|
116
120
|
ServerOfflineWaiterName = Literal["server_offline"]
|
|
117
121
|
ServerOnlineWaiterName = Literal["server_online"]
|
|
118
122
|
SetStatOptionType = Literal["DEFAULT", "ENABLE_NO_OP"]
|
|
@@ -195,6 +199,7 @@ ServiceName = Literal[
|
|
|
195
199
|
"codebuild",
|
|
196
200
|
"codecatalyst",
|
|
197
201
|
"codecommit",
|
|
202
|
+
"codeconnections",
|
|
198
203
|
"codedeploy",
|
|
199
204
|
"codeguru-reviewer",
|
|
200
205
|
"codeguru-security",
|
|
@@ -225,6 +230,7 @@ ServiceName = Literal[
|
|
|
225
230
|
"datasync",
|
|
226
231
|
"datazone",
|
|
227
232
|
"dax",
|
|
233
|
+
"deadline",
|
|
228
234
|
"detective",
|
|
229
235
|
"devicefarm",
|
|
230
236
|
"devops-guru",
|
|
@@ -293,7 +299,6 @@ ServiceName = Literal[
|
|
|
293
299
|
"iot",
|
|
294
300
|
"iot-data",
|
|
295
301
|
"iot-jobs-data",
|
|
296
|
-
"iot-roborunner",
|
|
297
302
|
"iot1click-devices",
|
|
298
303
|
"iot1click-projects",
|
|
299
304
|
"iotanalytics",
|
|
@@ -481,6 +486,7 @@ ServiceName = Literal[
|
|
|
481
486
|
"swf",
|
|
482
487
|
"synthetics",
|
|
483
488
|
"textract",
|
|
489
|
+
"timestream-influxdb",
|
|
484
490
|
"timestream-query",
|
|
485
491
|
"timestream-write",
|
|
486
492
|
"tnb",
|
mypy_boto3_transfer/literals.pyi
CHANGED
|
@@ -53,6 +53,8 @@ __all__ = (
|
|
|
53
53
|
"OverwriteExistingType",
|
|
54
54
|
"ProfileTypeType",
|
|
55
55
|
"ProtocolType",
|
|
56
|
+
"SecurityPolicyProtocolType",
|
|
57
|
+
"SecurityPolicyResourceTypeType",
|
|
56
58
|
"ServerOfflineWaiterName",
|
|
57
59
|
"ServerOnlineWaiterName",
|
|
58
60
|
"SetStatOptionType",
|
|
@@ -113,6 +115,8 @@ MdnSigningAlgType = Literal["DEFAULT", "NONE", "SHA1", "SHA256", "SHA384", "SHA5
|
|
|
113
115
|
OverwriteExistingType = Literal["FALSE", "TRUE"]
|
|
114
116
|
ProfileTypeType = Literal["LOCAL", "PARTNER"]
|
|
115
117
|
ProtocolType = Literal["AS2", "FTP", "FTPS", "SFTP"]
|
|
118
|
+
SecurityPolicyProtocolType = Literal["FTPS", "SFTP"]
|
|
119
|
+
SecurityPolicyResourceTypeType = Literal["CONNECTOR", "SERVER"]
|
|
116
120
|
ServerOfflineWaiterName = Literal["server_offline"]
|
|
117
121
|
ServerOnlineWaiterName = Literal["server_online"]
|
|
118
122
|
SetStatOptionType = Literal["DEFAULT", "ENABLE_NO_OP"]
|
|
@@ -195,6 +199,7 @@ ServiceName = Literal[
|
|
|
195
199
|
"codebuild",
|
|
196
200
|
"codecatalyst",
|
|
197
201
|
"codecommit",
|
|
202
|
+
"codeconnections",
|
|
198
203
|
"codedeploy",
|
|
199
204
|
"codeguru-reviewer",
|
|
200
205
|
"codeguru-security",
|
|
@@ -225,6 +230,7 @@ ServiceName = Literal[
|
|
|
225
230
|
"datasync",
|
|
226
231
|
"datazone",
|
|
227
232
|
"dax",
|
|
233
|
+
"deadline",
|
|
228
234
|
"detective",
|
|
229
235
|
"devicefarm",
|
|
230
236
|
"devops-guru",
|
|
@@ -293,7 +299,6 @@ ServiceName = Literal[
|
|
|
293
299
|
"iot",
|
|
294
300
|
"iot-data",
|
|
295
301
|
"iot-jobs-data",
|
|
296
|
-
"iot-roborunner",
|
|
297
302
|
"iot1click-devices",
|
|
298
303
|
"iot1click-projects",
|
|
299
304
|
"iotanalytics",
|
|
@@ -481,6 +486,7 @@ ServiceName = Literal[
|
|
|
481
486
|
"swf",
|
|
482
487
|
"synthetics",
|
|
483
488
|
"textract",
|
|
489
|
+
"timestream-influxdb",
|
|
484
490
|
"timestream-query",
|
|
485
491
|
"timestream-write",
|
|
486
492
|
"tnb",
|
mypy_boto3_transfer/type_defs.py
CHANGED
|
@@ -37,6 +37,8 @@ from .literals import (
|
|
|
37
37
|
OverwriteExistingType,
|
|
38
38
|
ProfileTypeType,
|
|
39
39
|
ProtocolType,
|
|
40
|
+
SecurityPolicyProtocolType,
|
|
41
|
+
SecurityPolicyResourceTypeType,
|
|
40
42
|
SetStatOptionType,
|
|
41
43
|
SftpAuthenticationMethodsType,
|
|
42
44
|
SigningAlgType,
|
|
@@ -465,6 +467,9 @@ DescribedSecurityPolicyTypeDef = TypedDict(
|
|
|
465
467
|
"SshKexs": NotRequired[List[str]],
|
|
466
468
|
"SshMacs": NotRequired[List[str]],
|
|
467
469
|
"TlsCiphers": NotRequired[List[str]],
|
|
470
|
+
"SshHostKeyAlgorithms": NotRequired[List[str]],
|
|
471
|
+
"Type": NotRequired[SecurityPolicyResourceTypeType],
|
|
472
|
+
"Protocols": NotRequired[List[SecurityPolicyProtocolType]],
|
|
468
473
|
},
|
|
469
474
|
)
|
|
470
475
|
DescribeServerRequestRequestTypeDef = TypedDict(
|
|
@@ -1197,6 +1202,7 @@ CreateConnectorRequestRequestTypeDef = TypedDict(
|
|
|
1197
1202
|
"LoggingRole": NotRequired[str],
|
|
1198
1203
|
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
1199
1204
|
"SftpConfig": NotRequired[SftpConnectorConfigTypeDef],
|
|
1205
|
+
"SecurityPolicyName": NotRequired[str],
|
|
1200
1206
|
},
|
|
1201
1207
|
)
|
|
1202
1208
|
DescribedConnectorTypeDef = TypedDict(
|
|
@@ -1211,6 +1217,7 @@ DescribedConnectorTypeDef = TypedDict(
|
|
|
1211
1217
|
"Tags": NotRequired[List[TagTypeDef]],
|
|
1212
1218
|
"SftpConfig": NotRequired[SftpConnectorConfigTypeDef],
|
|
1213
1219
|
"ServiceManagedEgressIpAddresses": NotRequired[List[str]],
|
|
1220
|
+
"SecurityPolicyName": NotRequired[str],
|
|
1214
1221
|
},
|
|
1215
1222
|
)
|
|
1216
1223
|
UpdateConnectorRequestRequestTypeDef = TypedDict(
|
|
@@ -1222,6 +1229,7 @@ UpdateConnectorRequestRequestTypeDef = TypedDict(
|
|
|
1222
1229
|
"AccessRole": NotRequired[str],
|
|
1223
1230
|
"LoggingRole": NotRequired[str],
|
|
1224
1231
|
"SftpConfig": NotRequired[SftpConnectorConfigTypeDef],
|
|
1232
|
+
"SecurityPolicyName": NotRequired[str],
|
|
1225
1233
|
},
|
|
1226
1234
|
)
|
|
1227
1235
|
DescribeSecurityPolicyResponseTypeDef = TypedDict(
|
|
@@ -37,6 +37,8 @@ from .literals import (
|
|
|
37
37
|
OverwriteExistingType,
|
|
38
38
|
ProfileTypeType,
|
|
39
39
|
ProtocolType,
|
|
40
|
+
SecurityPolicyProtocolType,
|
|
41
|
+
SecurityPolicyResourceTypeType,
|
|
40
42
|
SetStatOptionType,
|
|
41
43
|
SftpAuthenticationMethodsType,
|
|
42
44
|
SigningAlgType,
|
|
@@ -465,6 +467,9 @@ DescribedSecurityPolicyTypeDef = TypedDict(
|
|
|
465
467
|
"SshKexs": NotRequired[List[str]],
|
|
466
468
|
"SshMacs": NotRequired[List[str]],
|
|
467
469
|
"TlsCiphers": NotRequired[List[str]],
|
|
470
|
+
"SshHostKeyAlgorithms": NotRequired[List[str]],
|
|
471
|
+
"Type": NotRequired[SecurityPolicyResourceTypeType],
|
|
472
|
+
"Protocols": NotRequired[List[SecurityPolicyProtocolType]],
|
|
468
473
|
},
|
|
469
474
|
)
|
|
470
475
|
DescribeServerRequestRequestTypeDef = TypedDict(
|
|
@@ -1197,6 +1202,7 @@ CreateConnectorRequestRequestTypeDef = TypedDict(
|
|
|
1197
1202
|
"LoggingRole": NotRequired[str],
|
|
1198
1203
|
"Tags": NotRequired[Sequence[TagTypeDef]],
|
|
1199
1204
|
"SftpConfig": NotRequired[SftpConnectorConfigTypeDef],
|
|
1205
|
+
"SecurityPolicyName": NotRequired[str],
|
|
1200
1206
|
},
|
|
1201
1207
|
)
|
|
1202
1208
|
DescribedConnectorTypeDef = TypedDict(
|
|
@@ -1211,6 +1217,7 @@ DescribedConnectorTypeDef = TypedDict(
|
|
|
1211
1217
|
"Tags": NotRequired[List[TagTypeDef]],
|
|
1212
1218
|
"SftpConfig": NotRequired[SftpConnectorConfigTypeDef],
|
|
1213
1219
|
"ServiceManagedEgressIpAddresses": NotRequired[List[str]],
|
|
1220
|
+
"SecurityPolicyName": NotRequired[str],
|
|
1214
1221
|
},
|
|
1215
1222
|
)
|
|
1216
1223
|
UpdateConnectorRequestRequestTypeDef = TypedDict(
|
|
@@ -1222,6 +1229,7 @@ UpdateConnectorRequestRequestTypeDef = TypedDict(
|
|
|
1222
1229
|
"AccessRole": NotRequired[str],
|
|
1223
1230
|
"LoggingRole": NotRequired[str],
|
|
1224
1231
|
"SftpConfig": NotRequired[SftpConnectorConfigTypeDef],
|
|
1232
|
+
"SecurityPolicyName": NotRequired[str],
|
|
1225
1233
|
},
|
|
1226
1234
|
)
|
|
1227
1235
|
DescribeSecurityPolicyResponseTypeDef = TypedDict(
|
mypy_boto3_transfer/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-transfer
|
|
3
|
-
Version: 1.34.
|
|
4
|
-
Summary: Type annotations for boto3.Transfer 1.34.
|
|
3
|
+
Version: 1.34.77
|
|
4
|
+
Summary: Type annotations for boto3.Transfer 1.34.77 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
|

|
|
44
44
|
|
|
45
45
|
Type annotations for
|
|
46
|
-
[boto3.Transfer 1.34.
|
|
46
|
+
[boto3.Transfer 1.34.77](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=2XbcKCkEVXmnablybExE3pUBJmu5QcVM-7v8OeeR_kA,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=saCljdSSpdxbn7OrvXeoT9Wmw7EUnMsY9Xk4VYryG8Q,13274
|
|
7
|
+
mypy_boto3_transfer/literals.pyi,sha256=saCljdSSpdxbn7OrvXeoT9Wmw7EUnMsY9Xk4VYryG8Q,13274
|
|
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=oGEaww8ibXWpK7s_XZfReLCU8O84u3TuWhUdOjej0Cg,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.77.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_transfer-1.34.77.dist-info/METADATA,sha256=O5nDO4Wws-1Bpe-7yhIZ5zSjrCEMJSm2jy2FK9TovK0,14677
|
|
18
|
+
mypy_boto3_transfer-1.34.77.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
19
|
+
mypy_boto3_transfer-1.34.77.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
+
mypy_boto3_transfer-1.34.77.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=Elr6rmVI4ra5XqMsL3P7ZwC5eG5Lo7YYfdysRhP4N8Q,923
|
|
4
|
-
mypy_boto3_transfer/client.py,sha256=eZw0wnOMjfVEWfAGbHPCqJHF1yrI60ovp1MJqaubL8o,47383
|
|
5
|
-
mypy_boto3_transfer/client.pyi,sha256=-hymwZWa6L5Qj6L_evxLbLD3rL9z7lpj0IW9BHX7DVE,47380
|
|
6
|
-
mypy_boto3_transfer/literals.py,sha256=b_6meyt64w0mdfPhe3ZpLY_8iDj1Oit5GbBGyjTUCzk,13041
|
|
7
|
-
mypy_boto3_transfer/literals.pyi,sha256=b_6meyt64w0mdfPhe3ZpLY_8iDj1Oit5GbBGyjTUCzk,13041
|
|
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=_WZo0YNp8nbXdAGIu9z13TG93l9r4qtGOdoYDVJ7J9o,51272
|
|
12
|
-
mypy_boto3_transfer/type_defs.pyi,sha256=_WZo0YNp8nbXdAGIu9z13TG93l9r4qtGOdoYDVJ7J9o,51272
|
|
13
|
-
mypy_boto3_transfer/version.py,sha256=lrWYu2KCRuOxPD0ElgxZMfGnkkaxCD94YhVIe1QsWCg,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.59.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
-
mypy_boto3_transfer-1.34.59.dist-info/METADATA,sha256=SqdKPutzkARkNbdHkVb_lrukqTYxX9yCqwDU0qrrUKc,14677
|
|
18
|
-
mypy_boto3_transfer-1.34.59.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
19
|
-
mypy_boto3_transfer-1.34.59.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
-
mypy_boto3_transfer-1.34.59.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_transfer-1.34.59.dist-info → mypy_boto3_transfer-1.34.77.dist-info}/top_level.txt
RENAMED
|
File without changes
|