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
|
@@ -15,11 +15,13 @@ Usage::
|
|
|
15
15
|
ListCertificatesPaginator,
|
|
16
16
|
ListConnectorsPaginator,
|
|
17
17
|
ListExecutionsPaginator,
|
|
18
|
+
ListFileTransferResultsPaginator,
|
|
18
19
|
ListProfilesPaginator,
|
|
19
20
|
ListSecurityPoliciesPaginator,
|
|
20
21
|
ListServersPaginator,
|
|
21
22
|
ListTagsForResourcePaginator,
|
|
22
23
|
ListUsersPaginator,
|
|
24
|
+
ListWebAppsPaginator,
|
|
23
25
|
ListWorkflowsPaginator,
|
|
24
26
|
)
|
|
25
27
|
|
|
@@ -31,52 +33,77 @@ Usage::
|
|
|
31
33
|
list_certificates_paginator: ListCertificatesPaginator = client.get_paginator("list_certificates")
|
|
32
34
|
list_connectors_paginator: ListConnectorsPaginator = client.get_paginator("list_connectors")
|
|
33
35
|
list_executions_paginator: ListExecutionsPaginator = client.get_paginator("list_executions")
|
|
36
|
+
list_file_transfer_results_paginator: ListFileTransferResultsPaginator = client.get_paginator("list_file_transfer_results")
|
|
34
37
|
list_profiles_paginator: ListProfilesPaginator = client.get_paginator("list_profiles")
|
|
35
38
|
list_security_policies_paginator: ListSecurityPoliciesPaginator = client.get_paginator("list_security_policies")
|
|
36
39
|
list_servers_paginator: ListServersPaginator = client.get_paginator("list_servers")
|
|
37
40
|
list_tags_for_resource_paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")
|
|
38
41
|
list_users_paginator: ListUsersPaginator = client.get_paginator("list_users")
|
|
42
|
+
list_web_apps_paginator: ListWebAppsPaginator = client.get_paginator("list_web_apps")
|
|
39
43
|
list_workflows_paginator: ListWorkflowsPaginator = client.get_paginator("list_workflows")
|
|
40
44
|
```
|
|
45
|
+
|
|
46
|
+
Copyright 2024 Vlad Emelianov
|
|
41
47
|
"""
|
|
42
48
|
|
|
49
|
+
import sys
|
|
43
50
|
from typing import Generic, Iterator, TypeVar
|
|
44
51
|
|
|
45
52
|
from botocore.paginate import PageIterator, Paginator
|
|
46
53
|
|
|
47
|
-
from .literals import ProfileTypeType
|
|
48
54
|
from .type_defs import (
|
|
55
|
+
ListAccessesRequestListAccessesPaginateTypeDef,
|
|
49
56
|
ListAccessesResponseTypeDef,
|
|
57
|
+
ListAgreementsRequestListAgreementsPaginateTypeDef,
|
|
50
58
|
ListAgreementsResponseTypeDef,
|
|
59
|
+
ListCertificatesRequestListCertificatesPaginateTypeDef,
|
|
51
60
|
ListCertificatesResponseTypeDef,
|
|
61
|
+
ListConnectorsRequestListConnectorsPaginateTypeDef,
|
|
52
62
|
ListConnectorsResponseTypeDef,
|
|
63
|
+
ListExecutionsRequestListExecutionsPaginateTypeDef,
|
|
53
64
|
ListExecutionsResponseTypeDef,
|
|
65
|
+
ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef,
|
|
66
|
+
ListFileTransferResultsResponseTypeDef,
|
|
67
|
+
ListProfilesRequestListProfilesPaginateTypeDef,
|
|
54
68
|
ListProfilesResponseTypeDef,
|
|
69
|
+
ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef,
|
|
55
70
|
ListSecurityPoliciesResponseTypeDef,
|
|
71
|
+
ListServersRequestListServersPaginateTypeDef,
|
|
56
72
|
ListServersResponseTypeDef,
|
|
73
|
+
ListTagsForResourceRequestListTagsForResourcePaginateTypeDef,
|
|
57
74
|
ListTagsForResourceResponseTypeDef,
|
|
75
|
+
ListUsersRequestListUsersPaginateTypeDef,
|
|
58
76
|
ListUsersResponseTypeDef,
|
|
77
|
+
ListWebAppsRequestListWebAppsPaginateTypeDef,
|
|
78
|
+
ListWebAppsResponseTypeDef,
|
|
79
|
+
ListWorkflowsRequestListWorkflowsPaginateTypeDef,
|
|
59
80
|
ListWorkflowsResponseTypeDef,
|
|
60
|
-
PaginatorConfigTypeDef,
|
|
61
81
|
)
|
|
62
82
|
|
|
83
|
+
if sys.version_info >= (3, 12):
|
|
84
|
+
from typing import Unpack
|
|
85
|
+
else:
|
|
86
|
+
from typing_extensions import Unpack
|
|
87
|
+
|
|
63
88
|
__all__ = (
|
|
64
89
|
"ListAccessesPaginator",
|
|
65
90
|
"ListAgreementsPaginator",
|
|
66
91
|
"ListCertificatesPaginator",
|
|
67
92
|
"ListConnectorsPaginator",
|
|
68
93
|
"ListExecutionsPaginator",
|
|
94
|
+
"ListFileTransferResultsPaginator",
|
|
69
95
|
"ListProfilesPaginator",
|
|
70
96
|
"ListSecurityPoliciesPaginator",
|
|
71
97
|
"ListServersPaginator",
|
|
72
98
|
"ListTagsForResourcePaginator",
|
|
73
99
|
"ListUsersPaginator",
|
|
100
|
+
"ListWebAppsPaginator",
|
|
74
101
|
"ListWorkflowsPaginator",
|
|
75
102
|
)
|
|
76
103
|
|
|
77
104
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
78
105
|
|
|
79
|
-
class _PageIterator(Generic[_ItemTypeDef]
|
|
106
|
+
class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
|
|
80
107
|
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
81
108
|
"""
|
|
82
109
|
Proxy method to specify iterator item type.
|
|
@@ -84,154 +111,169 @@ class _PageIterator(Generic[_ItemTypeDef], PageIterator):
|
|
|
84
111
|
|
|
85
112
|
class ListAccessesPaginator(Paginator):
|
|
86
113
|
"""
|
|
87
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAccesses)
|
|
114
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAccesses.html#Transfer.Paginator.ListAccesses)
|
|
88
115
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listaccessespaginator)
|
|
89
116
|
"""
|
|
90
|
-
|
|
91
117
|
def paginate(
|
|
92
|
-
self,
|
|
118
|
+
self, **kwargs: Unpack[ListAccessesRequestListAccessesPaginateTypeDef]
|
|
93
119
|
) -> _PageIterator[ListAccessesResponseTypeDef]:
|
|
94
120
|
"""
|
|
95
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAccesses.paginate)
|
|
121
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAccesses.html#Transfer.Paginator.ListAccesses.paginate)
|
|
96
122
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listaccessespaginator)
|
|
97
123
|
"""
|
|
98
124
|
|
|
99
125
|
class ListAgreementsPaginator(Paginator):
|
|
100
126
|
"""
|
|
101
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAgreements)
|
|
127
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAgreements.html#Transfer.Paginator.ListAgreements)
|
|
102
128
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listagreementspaginator)
|
|
103
129
|
"""
|
|
104
|
-
|
|
105
130
|
def paginate(
|
|
106
|
-
self,
|
|
131
|
+
self, **kwargs: Unpack[ListAgreementsRequestListAgreementsPaginateTypeDef]
|
|
107
132
|
) -> _PageIterator[ListAgreementsResponseTypeDef]:
|
|
108
133
|
"""
|
|
109
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAgreements.paginate)
|
|
134
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAgreements.html#Transfer.Paginator.ListAgreements.paginate)
|
|
110
135
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listagreementspaginator)
|
|
111
136
|
"""
|
|
112
137
|
|
|
113
138
|
class ListCertificatesPaginator(Paginator):
|
|
114
139
|
"""
|
|
115
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListCertificates)
|
|
140
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListCertificates.html#Transfer.Paginator.ListCertificates)
|
|
116
141
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listcertificatespaginator)
|
|
117
142
|
"""
|
|
118
|
-
|
|
119
143
|
def paginate(
|
|
120
|
-
self,
|
|
144
|
+
self, **kwargs: Unpack[ListCertificatesRequestListCertificatesPaginateTypeDef]
|
|
121
145
|
) -> _PageIterator[ListCertificatesResponseTypeDef]:
|
|
122
146
|
"""
|
|
123
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListCertificates.paginate)
|
|
147
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListCertificates.html#Transfer.Paginator.ListCertificates.paginate)
|
|
124
148
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listcertificatespaginator)
|
|
125
149
|
"""
|
|
126
150
|
|
|
127
151
|
class ListConnectorsPaginator(Paginator):
|
|
128
152
|
"""
|
|
129
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListConnectors)
|
|
153
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListConnectors.html#Transfer.Paginator.ListConnectors)
|
|
130
154
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listconnectorspaginator)
|
|
131
155
|
"""
|
|
132
|
-
|
|
133
156
|
def paginate(
|
|
134
|
-
self,
|
|
157
|
+
self, **kwargs: Unpack[ListConnectorsRequestListConnectorsPaginateTypeDef]
|
|
135
158
|
) -> _PageIterator[ListConnectorsResponseTypeDef]:
|
|
136
159
|
"""
|
|
137
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListConnectors.paginate)
|
|
160
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListConnectors.html#Transfer.Paginator.ListConnectors.paginate)
|
|
138
161
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listconnectorspaginator)
|
|
139
162
|
"""
|
|
140
163
|
|
|
141
164
|
class ListExecutionsPaginator(Paginator):
|
|
142
165
|
"""
|
|
143
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListExecutions)
|
|
166
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListExecutions.html#Transfer.Paginator.ListExecutions)
|
|
144
167
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listexecutionspaginator)
|
|
145
168
|
"""
|
|
146
|
-
|
|
147
169
|
def paginate(
|
|
148
|
-
self,
|
|
170
|
+
self, **kwargs: Unpack[ListExecutionsRequestListExecutionsPaginateTypeDef]
|
|
149
171
|
) -> _PageIterator[ListExecutionsResponseTypeDef]:
|
|
150
172
|
"""
|
|
151
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListExecutions.paginate)
|
|
173
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListExecutions.html#Transfer.Paginator.ListExecutions.paginate)
|
|
152
174
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listexecutionspaginator)
|
|
153
175
|
"""
|
|
154
176
|
|
|
177
|
+
class ListFileTransferResultsPaginator(Paginator):
|
|
178
|
+
"""
|
|
179
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListFileTransferResults.html#Transfer.Paginator.ListFileTransferResults)
|
|
180
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
181
|
+
"""
|
|
182
|
+
def paginate(
|
|
183
|
+
self, **kwargs: Unpack[ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef]
|
|
184
|
+
) -> _PageIterator[ListFileTransferResultsResponseTypeDef]:
|
|
185
|
+
"""
|
|
186
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListFileTransferResults.html#Transfer.Paginator.ListFileTransferResults.paginate)
|
|
187
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
188
|
+
"""
|
|
189
|
+
|
|
155
190
|
class ListProfilesPaginator(Paginator):
|
|
156
191
|
"""
|
|
157
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListProfiles)
|
|
192
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListProfiles.html#Transfer.Paginator.ListProfiles)
|
|
158
193
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listprofilespaginator)
|
|
159
194
|
"""
|
|
160
|
-
|
|
161
195
|
def paginate(
|
|
162
|
-
self,
|
|
196
|
+
self, **kwargs: Unpack[ListProfilesRequestListProfilesPaginateTypeDef]
|
|
163
197
|
) -> _PageIterator[ListProfilesResponseTypeDef]:
|
|
164
198
|
"""
|
|
165
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListProfiles.paginate)
|
|
199
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListProfiles.html#Transfer.Paginator.ListProfiles.paginate)
|
|
166
200
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listprofilespaginator)
|
|
167
201
|
"""
|
|
168
202
|
|
|
169
203
|
class ListSecurityPoliciesPaginator(Paginator):
|
|
170
204
|
"""
|
|
171
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListSecurityPolicies)
|
|
205
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListSecurityPolicies.html#Transfer.Paginator.ListSecurityPolicies)
|
|
172
206
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listsecuritypoliciespaginator)
|
|
173
207
|
"""
|
|
174
|
-
|
|
175
208
|
def paginate(
|
|
176
|
-
self,
|
|
209
|
+
self, **kwargs: Unpack[ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef]
|
|
177
210
|
) -> _PageIterator[ListSecurityPoliciesResponseTypeDef]:
|
|
178
211
|
"""
|
|
179
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListSecurityPolicies.paginate)
|
|
212
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListSecurityPolicies.html#Transfer.Paginator.ListSecurityPolicies.paginate)
|
|
180
213
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listsecuritypoliciespaginator)
|
|
181
214
|
"""
|
|
182
215
|
|
|
183
216
|
class ListServersPaginator(Paginator):
|
|
184
217
|
"""
|
|
185
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListServers)
|
|
218
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListServers.html#Transfer.Paginator.ListServers)
|
|
186
219
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listserverspaginator)
|
|
187
220
|
"""
|
|
188
|
-
|
|
189
221
|
def paginate(
|
|
190
|
-
self,
|
|
222
|
+
self, **kwargs: Unpack[ListServersRequestListServersPaginateTypeDef]
|
|
191
223
|
) -> _PageIterator[ListServersResponseTypeDef]:
|
|
192
224
|
"""
|
|
193
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListServers.paginate)
|
|
225
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListServers.html#Transfer.Paginator.ListServers.paginate)
|
|
194
226
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listserverspaginator)
|
|
195
227
|
"""
|
|
196
228
|
|
|
197
229
|
class ListTagsForResourcePaginator(Paginator):
|
|
198
230
|
"""
|
|
199
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListTagsForResource)
|
|
231
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListTagsForResource.html#Transfer.Paginator.ListTagsForResource)
|
|
200
232
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listtagsforresourcepaginator)
|
|
201
233
|
"""
|
|
202
|
-
|
|
203
234
|
def paginate(
|
|
204
|
-
self,
|
|
235
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestListTagsForResourcePaginateTypeDef]
|
|
205
236
|
) -> _PageIterator[ListTagsForResourceResponseTypeDef]:
|
|
206
237
|
"""
|
|
207
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListTagsForResource.paginate)
|
|
238
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListTagsForResource.html#Transfer.Paginator.ListTagsForResource.paginate)
|
|
208
239
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listtagsforresourcepaginator)
|
|
209
240
|
"""
|
|
210
241
|
|
|
211
242
|
class ListUsersPaginator(Paginator):
|
|
212
243
|
"""
|
|
213
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListUsers)
|
|
244
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListUsers.html#Transfer.Paginator.ListUsers)
|
|
214
245
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listuserspaginator)
|
|
215
246
|
"""
|
|
216
|
-
|
|
217
247
|
def paginate(
|
|
218
|
-
self,
|
|
248
|
+
self, **kwargs: Unpack[ListUsersRequestListUsersPaginateTypeDef]
|
|
219
249
|
) -> _PageIterator[ListUsersResponseTypeDef]:
|
|
220
250
|
"""
|
|
221
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListUsers.paginate)
|
|
251
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListUsers.html#Transfer.Paginator.ListUsers.paginate)
|
|
222
252
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listuserspaginator)
|
|
223
253
|
"""
|
|
224
254
|
|
|
255
|
+
class ListWebAppsPaginator(Paginator):
|
|
256
|
+
"""
|
|
257
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWebApps.html#Transfer.Paginator.ListWebApps)
|
|
258
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listwebappspaginator)
|
|
259
|
+
"""
|
|
260
|
+
def paginate(
|
|
261
|
+
self, **kwargs: Unpack[ListWebAppsRequestListWebAppsPaginateTypeDef]
|
|
262
|
+
) -> _PageIterator[ListWebAppsResponseTypeDef]:
|
|
263
|
+
"""
|
|
264
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWebApps.html#Transfer.Paginator.ListWebApps.paginate)
|
|
265
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listwebappspaginator)
|
|
266
|
+
"""
|
|
267
|
+
|
|
225
268
|
class ListWorkflowsPaginator(Paginator):
|
|
226
269
|
"""
|
|
227
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListWorkflows)
|
|
270
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWorkflows.html#Transfer.Paginator.ListWorkflows)
|
|
228
271
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listworkflowspaginator)
|
|
229
272
|
"""
|
|
230
|
-
|
|
231
273
|
def paginate(
|
|
232
|
-
self,
|
|
274
|
+
self, **kwargs: Unpack[ListWorkflowsRequestListWorkflowsPaginateTypeDef]
|
|
233
275
|
) -> _PageIterator[ListWorkflowsResponseTypeDef]:
|
|
234
276
|
"""
|
|
235
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListWorkflows.paginate)
|
|
277
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWorkflows.html#Transfer.Paginator.ListWorkflows.paginate)
|
|
236
278
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listworkflowspaginator)
|
|
237
279
|
"""
|