mypy-boto3-transfer 1.34.108__py3-none-any.whl → 1.35.40__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/__init__.py +5 -0
- mypy_boto3_transfer/__init__.pyi +4 -0
- mypy_boto3_transfer/__main__.py +4 -4
- mypy_boto3_transfer/client.py +192 -238
- mypy_boto3_transfer/client.pyi +191 -238
- mypy_boto3_transfer/literals.py +18 -6
- mypy_boto3_transfer/literals.pyi +16 -6
- mypy_boto3_transfer/paginator.py +50 -13
- mypy_boto3_transfer/paginator.pyi +46 -24
- mypy_boto3_transfer/type_defs.py +46 -24
- mypy_boto3_transfer/type_defs.pyi +45 -24
- mypy_boto3_transfer/version.py +1 -1
- mypy_boto3_transfer/waiter.py +14 -3
- mypy_boto3_transfer/waiter.pyi +13 -5
- {mypy_boto3_transfer-1.34.108.dist-info → mypy_boto3_transfer-1.35.40.dist-info}/METADATA +12 -9
- mypy_boto3_transfer-1.35.40.dist-info/RECORD +20 -0
- {mypy_boto3_transfer-1.34.108.dist-info → mypy_boto3_transfer-1.35.40.dist-info}/WHEEL +1 -1
- mypy_boto3_transfer-1.34.108.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.34.108.dist-info → mypy_boto3_transfer-1.35.40.dist-info}/LICENSE +0 -0
- {mypy_boto3_transfer-1.34.108.dist-info → mypy_boto3_transfer-1.35.40.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/__init__.py
CHANGED
|
@@ -12,6 +12,7 @@ Usage::
|
|
|
12
12
|
ListCertificatesPaginator,
|
|
13
13
|
ListConnectorsPaginator,
|
|
14
14
|
ListExecutionsPaginator,
|
|
15
|
+
ListFileTransferResultsPaginator,
|
|
15
16
|
ListProfilesPaginator,
|
|
16
17
|
ListSecurityPoliciesPaginator,
|
|
17
18
|
ListServersPaginator,
|
|
@@ -34,6 +35,7 @@ Usage::
|
|
|
34
35
|
list_certificates_paginator: ListCertificatesPaginator = client.get_paginator("list_certificates")
|
|
35
36
|
list_connectors_paginator: ListConnectorsPaginator = client.get_paginator("list_connectors")
|
|
36
37
|
list_executions_paginator: ListExecutionsPaginator = client.get_paginator("list_executions")
|
|
38
|
+
list_file_transfer_results_paginator: ListFileTransferResultsPaginator = client.get_paginator("list_file_transfer_results")
|
|
37
39
|
list_profiles_paginator: ListProfilesPaginator = client.get_paginator("list_profiles")
|
|
38
40
|
list_security_policies_paginator: ListSecurityPoliciesPaginator = client.get_paginator("list_security_policies")
|
|
39
41
|
list_servers_paginator: ListServersPaginator = client.get_paginator("list_servers")
|
|
@@ -50,6 +52,7 @@ from .paginator import (
|
|
|
50
52
|
ListCertificatesPaginator,
|
|
51
53
|
ListConnectorsPaginator,
|
|
52
54
|
ListExecutionsPaginator,
|
|
55
|
+
ListFileTransferResultsPaginator,
|
|
53
56
|
ListProfilesPaginator,
|
|
54
57
|
ListSecurityPoliciesPaginator,
|
|
55
58
|
ListServersPaginator,
|
|
@@ -61,6 +64,7 @@ from .waiter import ServerOfflineWaiter, ServerOnlineWaiter
|
|
|
61
64
|
|
|
62
65
|
Client = TransferClient
|
|
63
66
|
|
|
67
|
+
|
|
64
68
|
__all__ = (
|
|
65
69
|
"Client",
|
|
66
70
|
"ListAccessesPaginator",
|
|
@@ -68,6 +72,7 @@ __all__ = (
|
|
|
68
72
|
"ListCertificatesPaginator",
|
|
69
73
|
"ListConnectorsPaginator",
|
|
70
74
|
"ListExecutionsPaginator",
|
|
75
|
+
"ListFileTransferResultsPaginator",
|
|
71
76
|
"ListProfilesPaginator",
|
|
72
77
|
"ListSecurityPoliciesPaginator",
|
|
73
78
|
"ListServersPaginator",
|
mypy_boto3_transfer/__init__.pyi
CHANGED
|
@@ -12,6 +12,7 @@ Usage::
|
|
|
12
12
|
ListCertificatesPaginator,
|
|
13
13
|
ListConnectorsPaginator,
|
|
14
14
|
ListExecutionsPaginator,
|
|
15
|
+
ListFileTransferResultsPaginator,
|
|
15
16
|
ListProfilesPaginator,
|
|
16
17
|
ListSecurityPoliciesPaginator,
|
|
17
18
|
ListServersPaginator,
|
|
@@ -34,6 +35,7 @@ Usage::
|
|
|
34
35
|
list_certificates_paginator: ListCertificatesPaginator = client.get_paginator("list_certificates")
|
|
35
36
|
list_connectors_paginator: ListConnectorsPaginator = client.get_paginator("list_connectors")
|
|
36
37
|
list_executions_paginator: ListExecutionsPaginator = client.get_paginator("list_executions")
|
|
38
|
+
list_file_transfer_results_paginator: ListFileTransferResultsPaginator = client.get_paginator("list_file_transfer_results")
|
|
37
39
|
list_profiles_paginator: ListProfilesPaginator = client.get_paginator("list_profiles")
|
|
38
40
|
list_security_policies_paginator: ListSecurityPoliciesPaginator = client.get_paginator("list_security_policies")
|
|
39
41
|
list_servers_paginator: ListServersPaginator = client.get_paginator("list_servers")
|
|
@@ -50,6 +52,7 @@ from .paginator import (
|
|
|
50
52
|
ListCertificatesPaginator,
|
|
51
53
|
ListConnectorsPaginator,
|
|
52
54
|
ListExecutionsPaginator,
|
|
55
|
+
ListFileTransferResultsPaginator,
|
|
53
56
|
ListProfilesPaginator,
|
|
54
57
|
ListSecurityPoliciesPaginator,
|
|
55
58
|
ListServersPaginator,
|
|
@@ -68,6 +71,7 @@ __all__ = (
|
|
|
68
71
|
"ListCertificatesPaginator",
|
|
69
72
|
"ListConnectorsPaginator",
|
|
70
73
|
"ListExecutionsPaginator",
|
|
74
|
+
"ListFileTransferResultsPaginator",
|
|
71
75
|
"ListProfilesPaginator",
|
|
72
76
|
"ListSecurityPoliciesPaginator",
|
|
73
77
|
"ListServersPaginator",
|
mypy_boto3_transfer/__main__.py
CHANGED
|
@@ -10,9 +10,9 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.Transfer 1.
|
|
14
|
-
"Version: 1.
|
|
15
|
-
"Builder version:
|
|
13
|
+
"Type annotations for boto3.Transfer 1.35.40\n"
|
|
14
|
+
"Version: 1.35.40\n"
|
|
15
|
+
"Builder version: 8.1.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"
|
|
18
18
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
@@ -24,7 +24,7 @@ def print_version() -> None:
|
|
|
24
24
|
"""
|
|
25
25
|
Print package version to stdout.
|
|
26
26
|
"""
|
|
27
|
-
print("1.
|
|
27
|
+
print("1.35.40")
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
def main() -> None:
|