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/paginator.py
CHANGED
|
@@ -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,53 +33,80 @@ 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
|
+
|
|
88
|
+
|
|
63
89
|
__all__ = (
|
|
64
90
|
"ListAccessesPaginator",
|
|
65
91
|
"ListAgreementsPaginator",
|
|
66
92
|
"ListCertificatesPaginator",
|
|
67
93
|
"ListConnectorsPaginator",
|
|
68
94
|
"ListExecutionsPaginator",
|
|
95
|
+
"ListFileTransferResultsPaginator",
|
|
69
96
|
"ListProfilesPaginator",
|
|
70
97
|
"ListSecurityPoliciesPaginator",
|
|
71
98
|
"ListServersPaginator",
|
|
72
99
|
"ListTagsForResourcePaginator",
|
|
73
100
|
"ListUsersPaginator",
|
|
101
|
+
"ListWebAppsPaginator",
|
|
74
102
|
"ListWorkflowsPaginator",
|
|
75
103
|
)
|
|
76
104
|
|
|
105
|
+
|
|
77
106
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
78
107
|
|
|
79
108
|
|
|
80
|
-
class _PageIterator(Generic[_ItemTypeDef]
|
|
109
|
+
class _PageIterator(PageIterator, Generic[_ItemTypeDef]):
|
|
81
110
|
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
82
111
|
"""
|
|
83
112
|
Proxy method to specify iterator item type.
|
|
@@ -86,164 +115,194 @@ class _PageIterator(Generic[_ItemTypeDef], PageIterator):
|
|
|
86
115
|
|
|
87
116
|
class ListAccessesPaginator(Paginator):
|
|
88
117
|
"""
|
|
89
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAccesses)
|
|
118
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAccesses.html#Transfer.Paginator.ListAccesses)
|
|
90
119
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listaccessespaginator)
|
|
91
120
|
"""
|
|
92
121
|
|
|
93
122
|
def paginate(
|
|
94
|
-
self,
|
|
123
|
+
self, **kwargs: Unpack[ListAccessesRequestListAccessesPaginateTypeDef]
|
|
95
124
|
) -> _PageIterator[ListAccessesResponseTypeDef]:
|
|
96
125
|
"""
|
|
97
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAccesses.paginate)
|
|
126
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAccesses.html#Transfer.Paginator.ListAccesses.paginate)
|
|
98
127
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listaccessespaginator)
|
|
99
128
|
"""
|
|
100
129
|
|
|
101
130
|
|
|
102
131
|
class ListAgreementsPaginator(Paginator):
|
|
103
132
|
"""
|
|
104
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAgreements)
|
|
133
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAgreements.html#Transfer.Paginator.ListAgreements)
|
|
105
134
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listagreementspaginator)
|
|
106
135
|
"""
|
|
107
136
|
|
|
108
137
|
def paginate(
|
|
109
|
-
self,
|
|
138
|
+
self, **kwargs: Unpack[ListAgreementsRequestListAgreementsPaginateTypeDef]
|
|
110
139
|
) -> _PageIterator[ListAgreementsResponseTypeDef]:
|
|
111
140
|
"""
|
|
112
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAgreements.paginate)
|
|
141
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAgreements.html#Transfer.Paginator.ListAgreements.paginate)
|
|
113
142
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listagreementspaginator)
|
|
114
143
|
"""
|
|
115
144
|
|
|
116
145
|
|
|
117
146
|
class ListCertificatesPaginator(Paginator):
|
|
118
147
|
"""
|
|
119
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListCertificates)
|
|
148
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListCertificates.html#Transfer.Paginator.ListCertificates)
|
|
120
149
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listcertificatespaginator)
|
|
121
150
|
"""
|
|
122
151
|
|
|
123
152
|
def paginate(
|
|
124
|
-
self,
|
|
153
|
+
self, **kwargs: Unpack[ListCertificatesRequestListCertificatesPaginateTypeDef]
|
|
125
154
|
) -> _PageIterator[ListCertificatesResponseTypeDef]:
|
|
126
155
|
"""
|
|
127
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListCertificates.paginate)
|
|
156
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListCertificates.html#Transfer.Paginator.ListCertificates.paginate)
|
|
128
157
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listcertificatespaginator)
|
|
129
158
|
"""
|
|
130
159
|
|
|
131
160
|
|
|
132
161
|
class ListConnectorsPaginator(Paginator):
|
|
133
162
|
"""
|
|
134
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListConnectors)
|
|
163
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListConnectors.html#Transfer.Paginator.ListConnectors)
|
|
135
164
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listconnectorspaginator)
|
|
136
165
|
"""
|
|
137
166
|
|
|
138
167
|
def paginate(
|
|
139
|
-
self,
|
|
168
|
+
self, **kwargs: Unpack[ListConnectorsRequestListConnectorsPaginateTypeDef]
|
|
140
169
|
) -> _PageIterator[ListConnectorsResponseTypeDef]:
|
|
141
170
|
"""
|
|
142
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListConnectors.paginate)
|
|
171
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListConnectors.html#Transfer.Paginator.ListConnectors.paginate)
|
|
143
172
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listconnectorspaginator)
|
|
144
173
|
"""
|
|
145
174
|
|
|
146
175
|
|
|
147
176
|
class ListExecutionsPaginator(Paginator):
|
|
148
177
|
"""
|
|
149
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListExecutions)
|
|
178
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListExecutions.html#Transfer.Paginator.ListExecutions)
|
|
150
179
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listexecutionspaginator)
|
|
151
180
|
"""
|
|
152
181
|
|
|
153
182
|
def paginate(
|
|
154
|
-
self,
|
|
183
|
+
self, **kwargs: Unpack[ListExecutionsRequestListExecutionsPaginateTypeDef]
|
|
155
184
|
) -> _PageIterator[ListExecutionsResponseTypeDef]:
|
|
156
185
|
"""
|
|
157
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListExecutions.paginate)
|
|
186
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListExecutions.html#Transfer.Paginator.ListExecutions.paginate)
|
|
158
187
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listexecutionspaginator)
|
|
159
188
|
"""
|
|
160
189
|
|
|
161
190
|
|
|
191
|
+
class ListFileTransferResultsPaginator(Paginator):
|
|
192
|
+
"""
|
|
193
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListFileTransferResults.html#Transfer.Paginator.ListFileTransferResults)
|
|
194
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
195
|
+
"""
|
|
196
|
+
|
|
197
|
+
def paginate(
|
|
198
|
+
self, **kwargs: Unpack[ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef]
|
|
199
|
+
) -> _PageIterator[ListFileTransferResultsResponseTypeDef]:
|
|
200
|
+
"""
|
|
201
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListFileTransferResults.html#Transfer.Paginator.ListFileTransferResults.paginate)
|
|
202
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
203
|
+
"""
|
|
204
|
+
|
|
205
|
+
|
|
162
206
|
class ListProfilesPaginator(Paginator):
|
|
163
207
|
"""
|
|
164
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListProfiles)
|
|
208
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListProfiles.html#Transfer.Paginator.ListProfiles)
|
|
165
209
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listprofilespaginator)
|
|
166
210
|
"""
|
|
167
211
|
|
|
168
212
|
def paginate(
|
|
169
|
-
self,
|
|
213
|
+
self, **kwargs: Unpack[ListProfilesRequestListProfilesPaginateTypeDef]
|
|
170
214
|
) -> _PageIterator[ListProfilesResponseTypeDef]:
|
|
171
215
|
"""
|
|
172
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListProfiles.paginate)
|
|
216
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListProfiles.html#Transfer.Paginator.ListProfiles.paginate)
|
|
173
217
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listprofilespaginator)
|
|
174
218
|
"""
|
|
175
219
|
|
|
176
220
|
|
|
177
221
|
class ListSecurityPoliciesPaginator(Paginator):
|
|
178
222
|
"""
|
|
179
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListSecurityPolicies)
|
|
223
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListSecurityPolicies.html#Transfer.Paginator.ListSecurityPolicies)
|
|
180
224
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listsecuritypoliciespaginator)
|
|
181
225
|
"""
|
|
182
226
|
|
|
183
227
|
def paginate(
|
|
184
|
-
self,
|
|
228
|
+
self, **kwargs: Unpack[ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef]
|
|
185
229
|
) -> _PageIterator[ListSecurityPoliciesResponseTypeDef]:
|
|
186
230
|
"""
|
|
187
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListSecurityPolicies.paginate)
|
|
231
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListSecurityPolicies.html#Transfer.Paginator.ListSecurityPolicies.paginate)
|
|
188
232
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listsecuritypoliciespaginator)
|
|
189
233
|
"""
|
|
190
234
|
|
|
191
235
|
|
|
192
236
|
class ListServersPaginator(Paginator):
|
|
193
237
|
"""
|
|
194
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListServers)
|
|
238
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListServers.html#Transfer.Paginator.ListServers)
|
|
195
239
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listserverspaginator)
|
|
196
240
|
"""
|
|
197
241
|
|
|
198
242
|
def paginate(
|
|
199
|
-
self,
|
|
243
|
+
self, **kwargs: Unpack[ListServersRequestListServersPaginateTypeDef]
|
|
200
244
|
) -> _PageIterator[ListServersResponseTypeDef]:
|
|
201
245
|
"""
|
|
202
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListServers.paginate)
|
|
246
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListServers.html#Transfer.Paginator.ListServers.paginate)
|
|
203
247
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listserverspaginator)
|
|
204
248
|
"""
|
|
205
249
|
|
|
206
250
|
|
|
207
251
|
class ListTagsForResourcePaginator(Paginator):
|
|
208
252
|
"""
|
|
209
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListTagsForResource)
|
|
253
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListTagsForResource.html#Transfer.Paginator.ListTagsForResource)
|
|
210
254
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listtagsforresourcepaginator)
|
|
211
255
|
"""
|
|
212
256
|
|
|
213
257
|
def paginate(
|
|
214
|
-
self,
|
|
258
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestListTagsForResourcePaginateTypeDef]
|
|
215
259
|
) -> _PageIterator[ListTagsForResourceResponseTypeDef]:
|
|
216
260
|
"""
|
|
217
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListTagsForResource.paginate)
|
|
261
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListTagsForResource.html#Transfer.Paginator.ListTagsForResource.paginate)
|
|
218
262
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listtagsforresourcepaginator)
|
|
219
263
|
"""
|
|
220
264
|
|
|
221
265
|
|
|
222
266
|
class ListUsersPaginator(Paginator):
|
|
223
267
|
"""
|
|
224
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListUsers)
|
|
268
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListUsers.html#Transfer.Paginator.ListUsers)
|
|
225
269
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listuserspaginator)
|
|
226
270
|
"""
|
|
227
271
|
|
|
228
272
|
def paginate(
|
|
229
|
-
self,
|
|
273
|
+
self, **kwargs: Unpack[ListUsersRequestListUsersPaginateTypeDef]
|
|
230
274
|
) -> _PageIterator[ListUsersResponseTypeDef]:
|
|
231
275
|
"""
|
|
232
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListUsers.paginate)
|
|
276
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListUsers.html#Transfer.Paginator.ListUsers.paginate)
|
|
233
277
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listuserspaginator)
|
|
234
278
|
"""
|
|
235
279
|
|
|
236
280
|
|
|
281
|
+
class ListWebAppsPaginator(Paginator):
|
|
282
|
+
"""
|
|
283
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWebApps.html#Transfer.Paginator.ListWebApps)
|
|
284
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listwebappspaginator)
|
|
285
|
+
"""
|
|
286
|
+
|
|
287
|
+
def paginate(
|
|
288
|
+
self, **kwargs: Unpack[ListWebAppsRequestListWebAppsPaginateTypeDef]
|
|
289
|
+
) -> _PageIterator[ListWebAppsResponseTypeDef]:
|
|
290
|
+
"""
|
|
291
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWebApps.html#Transfer.Paginator.ListWebApps.paginate)
|
|
292
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listwebappspaginator)
|
|
293
|
+
"""
|
|
294
|
+
|
|
295
|
+
|
|
237
296
|
class ListWorkflowsPaginator(Paginator):
|
|
238
297
|
"""
|
|
239
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListWorkflows)
|
|
298
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWorkflows.html#Transfer.Paginator.ListWorkflows)
|
|
240
299
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listworkflowspaginator)
|
|
241
300
|
"""
|
|
242
301
|
|
|
243
302
|
def paginate(
|
|
244
|
-
self,
|
|
303
|
+
self, **kwargs: Unpack[ListWorkflowsRequestListWorkflowsPaginateTypeDef]
|
|
245
304
|
) -> _PageIterator[ListWorkflowsResponseTypeDef]:
|
|
246
305
|
"""
|
|
247
|
-
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListWorkflows.paginate)
|
|
306
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWorkflows.html#Transfer.Paginator.ListWorkflows.paginate)
|
|
248
307
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listworkflowspaginator)
|
|
249
308
|
"""
|