mypy-boto3-transfer 1.35.0__py3-none-any.whl → 1.35.72__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 +11 -0
- mypy_boto3_transfer/__init__.pyi +10 -0
- mypy_boto3_transfer/__main__.py +7 -5
- mypy_boto3_transfer/client.py +467 -402
- mypy_boto3_transfer/client.pyi +466 -402
- mypy_boto3_transfer/literals.py +35 -8
- mypy_boto3_transfer/literals.pyi +33 -8
- mypy_boto3_transfer/paginator.py +95 -36
- mypy_boto3_transfer/paginator.pyi +89 -47
- mypy_boto3_transfer/type_defs.py +1477 -1618
- mypy_boto3_transfer/type_defs.pyi +1269 -1621
- mypy_boto3_transfer/version.py +3 -1
- mypy_boto3_transfer/waiter.py +20 -7
- mypy_boto3_transfer/waiter.pyi +19 -9
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/METADATA +68 -22
- mypy_boto3_transfer-1.35.72.dist-info/RECORD +20 -0
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/WHEEL +1 -1
- mypy_boto3_transfer-1.35.0.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/LICENSE +0 -0
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.72.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/__init__.py
CHANGED
|
@@ -12,11 +12,13 @@ Usage::
|
|
|
12
12
|
ListCertificatesPaginator,
|
|
13
13
|
ListConnectorsPaginator,
|
|
14
14
|
ListExecutionsPaginator,
|
|
15
|
+
ListFileTransferResultsPaginator,
|
|
15
16
|
ListProfilesPaginator,
|
|
16
17
|
ListSecurityPoliciesPaginator,
|
|
17
18
|
ListServersPaginator,
|
|
18
19
|
ListTagsForResourcePaginator,
|
|
19
20
|
ListUsersPaginator,
|
|
21
|
+
ListWebAppsPaginator,
|
|
20
22
|
ListWorkflowsPaginator,
|
|
21
23
|
ServerOfflineWaiter,
|
|
22
24
|
ServerOnlineWaiter,
|
|
@@ -34,13 +36,17 @@ Usage::
|
|
|
34
36
|
list_certificates_paginator: ListCertificatesPaginator = client.get_paginator("list_certificates")
|
|
35
37
|
list_connectors_paginator: ListConnectorsPaginator = client.get_paginator("list_connectors")
|
|
36
38
|
list_executions_paginator: ListExecutionsPaginator = client.get_paginator("list_executions")
|
|
39
|
+
list_file_transfer_results_paginator: ListFileTransferResultsPaginator = client.get_paginator("list_file_transfer_results")
|
|
37
40
|
list_profiles_paginator: ListProfilesPaginator = client.get_paginator("list_profiles")
|
|
38
41
|
list_security_policies_paginator: ListSecurityPoliciesPaginator = client.get_paginator("list_security_policies")
|
|
39
42
|
list_servers_paginator: ListServersPaginator = client.get_paginator("list_servers")
|
|
40
43
|
list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")
|
|
41
44
|
list_users_paginator: ListUsersPaginator = client.get_paginator("list_users")
|
|
45
|
+
list_web_apps_paginator: ListWebAppsPaginator = client.get_paginator("list_web_apps")
|
|
42
46
|
list_workflows_paginator: ListWorkflowsPaginator = client.get_paginator("list_workflows")
|
|
43
47
|
```
|
|
48
|
+
|
|
49
|
+
Copyright 2024 Vlad Emelianov
|
|
44
50
|
"""
|
|
45
51
|
|
|
46
52
|
from .client import TransferClient
|
|
@@ -50,17 +56,20 @@ from .paginator import (
|
|
|
50
56
|
ListCertificatesPaginator,
|
|
51
57
|
ListConnectorsPaginator,
|
|
52
58
|
ListExecutionsPaginator,
|
|
59
|
+
ListFileTransferResultsPaginator,
|
|
53
60
|
ListProfilesPaginator,
|
|
54
61
|
ListSecurityPoliciesPaginator,
|
|
55
62
|
ListServersPaginator,
|
|
56
63
|
ListTagsForResourcePaginator,
|
|
57
64
|
ListUsersPaginator,
|
|
65
|
+
ListWebAppsPaginator,
|
|
58
66
|
ListWorkflowsPaginator,
|
|
59
67
|
)
|
|
60
68
|
from .waiter import ServerOfflineWaiter, ServerOnlineWaiter
|
|
61
69
|
|
|
62
70
|
Client = TransferClient
|
|
63
71
|
|
|
72
|
+
|
|
64
73
|
__all__ = (
|
|
65
74
|
"Client",
|
|
66
75
|
"ListAccessesPaginator",
|
|
@@ -68,11 +77,13 @@ __all__ = (
|
|
|
68
77
|
"ListCertificatesPaginator",
|
|
69
78
|
"ListConnectorsPaginator",
|
|
70
79
|
"ListExecutionsPaginator",
|
|
80
|
+
"ListFileTransferResultsPaginator",
|
|
71
81
|
"ListProfilesPaginator",
|
|
72
82
|
"ListSecurityPoliciesPaginator",
|
|
73
83
|
"ListServersPaginator",
|
|
74
84
|
"ListTagsForResourcePaginator",
|
|
75
85
|
"ListUsersPaginator",
|
|
86
|
+
"ListWebAppsPaginator",
|
|
76
87
|
"ListWorkflowsPaginator",
|
|
77
88
|
"ServerOfflineWaiter",
|
|
78
89
|
"ServerOnlineWaiter",
|
mypy_boto3_transfer/__init__.pyi
CHANGED
|
@@ -12,11 +12,13 @@ Usage::
|
|
|
12
12
|
ListCertificatesPaginator,
|
|
13
13
|
ListConnectorsPaginator,
|
|
14
14
|
ListExecutionsPaginator,
|
|
15
|
+
ListFileTransferResultsPaginator,
|
|
15
16
|
ListProfilesPaginator,
|
|
16
17
|
ListSecurityPoliciesPaginator,
|
|
17
18
|
ListServersPaginator,
|
|
18
19
|
ListTagsForResourcePaginator,
|
|
19
20
|
ListUsersPaginator,
|
|
21
|
+
ListWebAppsPaginator,
|
|
20
22
|
ListWorkflowsPaginator,
|
|
21
23
|
ServerOfflineWaiter,
|
|
22
24
|
ServerOnlineWaiter,
|
|
@@ -34,13 +36,17 @@ Usage::
|
|
|
34
36
|
list_certificates_paginator: ListCertificatesPaginator = client.get_paginator("list_certificates")
|
|
35
37
|
list_connectors_paginator: ListConnectorsPaginator = client.get_paginator("list_connectors")
|
|
36
38
|
list_executions_paginator: ListExecutionsPaginator = client.get_paginator("list_executions")
|
|
39
|
+
list_file_transfer_results_paginator: ListFileTransferResultsPaginator = client.get_paginator("list_file_transfer_results")
|
|
37
40
|
list_profiles_paginator: ListProfilesPaginator = client.get_paginator("list_profiles")
|
|
38
41
|
list_security_policies_paginator: ListSecurityPoliciesPaginator = client.get_paginator("list_security_policies")
|
|
39
42
|
list_servers_paginator: ListServersPaginator = client.get_paginator("list_servers")
|
|
40
43
|
list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")
|
|
41
44
|
list_users_paginator: ListUsersPaginator = client.get_paginator("list_users")
|
|
45
|
+
list_web_apps_paginator: ListWebAppsPaginator = client.get_paginator("list_web_apps")
|
|
42
46
|
list_workflows_paginator: ListWorkflowsPaginator = client.get_paginator("list_workflows")
|
|
43
47
|
```
|
|
48
|
+
|
|
49
|
+
Copyright 2024 Vlad Emelianov
|
|
44
50
|
"""
|
|
45
51
|
|
|
46
52
|
from .client import TransferClient
|
|
@@ -50,11 +56,13 @@ from .paginator import (
|
|
|
50
56
|
ListCertificatesPaginator,
|
|
51
57
|
ListConnectorsPaginator,
|
|
52
58
|
ListExecutionsPaginator,
|
|
59
|
+
ListFileTransferResultsPaginator,
|
|
53
60
|
ListProfilesPaginator,
|
|
54
61
|
ListSecurityPoliciesPaginator,
|
|
55
62
|
ListServersPaginator,
|
|
56
63
|
ListTagsForResourcePaginator,
|
|
57
64
|
ListUsersPaginator,
|
|
65
|
+
ListWebAppsPaginator,
|
|
58
66
|
ListWorkflowsPaginator,
|
|
59
67
|
)
|
|
60
68
|
from .waiter import ServerOfflineWaiter, ServerOnlineWaiter
|
|
@@ -68,11 +76,13 @@ __all__ = (
|
|
|
68
76
|
"ListCertificatesPaginator",
|
|
69
77
|
"ListConnectorsPaginator",
|
|
70
78
|
"ListExecutionsPaginator",
|
|
79
|
+
"ListFileTransferResultsPaginator",
|
|
71
80
|
"ListProfilesPaginator",
|
|
72
81
|
"ListSecurityPoliciesPaginator",
|
|
73
82
|
"ListServersPaginator",
|
|
74
83
|
"ListTagsForResourcePaginator",
|
|
75
84
|
"ListUsersPaginator",
|
|
85
|
+
"ListWebAppsPaginator",
|
|
76
86
|
"ListWorkflowsPaginator",
|
|
77
87
|
"ServerOfflineWaiter",
|
|
78
88
|
"ServerOnlineWaiter",
|
mypy_boto3_transfer/__main__.py
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Main CLI entrypoint.
|
|
3
|
+
|
|
4
|
+
Copyright 2024 Vlad Emelianov
|
|
3
5
|
"""
|
|
4
6
|
|
|
5
7
|
import sys
|
|
@@ -10,11 +12,11 @@ def print_info() -> None:
|
|
|
10
12
|
Print package info to stdout.
|
|
11
13
|
"""
|
|
12
14
|
print(
|
|
13
|
-
"Type annotations for boto3
|
|
14
|
-
"Version: 1.35.
|
|
15
|
-
"Builder version:
|
|
15
|
+
"Type annotations for boto3 Transfer 1.35.72\n"
|
|
16
|
+
"Version: 1.35.72\n"
|
|
17
|
+
"Builder version: 8.5.0\n"
|
|
16
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer//\n"
|
|
17
|
-
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#
|
|
19
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#transfer\n"
|
|
18
20
|
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
21
|
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
20
22
|
)
|
|
@@ -24,7 +26,7 @@ def print_version() -> None:
|
|
|
24
26
|
"""
|
|
25
27
|
Print package version to stdout.
|
|
26
28
|
"""
|
|
27
|
-
print("1.35.
|
|
29
|
+
print("1.35.72")
|
|
28
30
|
|
|
29
31
|
|
|
30
32
|
def main() -> None:
|