mypy-boto3-transfer 1.35.84__py3-none-any.whl → 1.36.0__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 +1 -1
- mypy_boto3_transfer/__init__.pyi +1 -1
- mypy_boto3_transfer/__main__.py +9 -8
- mypy_boto3_transfer/client.py +67 -49
- mypy_boto3_transfer/client.pyi +67 -48
- mypy_boto3_transfer/literals.py +2 -4
- mypy_boto3_transfer/literals.pyi +2 -4
- mypy_boto3_transfer/paginator.py +146 -76
- mypy_boto3_transfer/paginator.pyi +134 -75
- mypy_boto3_transfer/type_defs.py +39 -37
- mypy_boto3_transfer/type_defs.pyi +39 -36
- mypy_boto3_transfer/version.py +2 -2
- mypy_boto3_transfer/waiter.py +11 -8
- mypy_boto3_transfer/waiter.pyi +11 -8
- {mypy_boto3_transfer-1.35.84.dist-info → mypy_boto3_transfer-1.36.0.dist-info}/LICENSE +1 -1
- {mypy_boto3_transfer-1.35.84.dist-info → mypy_boto3_transfer-1.36.0.dist-info}/METADATA +20 -8
- mypy_boto3_transfer-1.36.0.dist-info/RECORD +20 -0
- {mypy_boto3_transfer-1.35.84.dist-info → mypy_boto3_transfer-1.36.0.dist-info}/WHEEL +1 -1
- mypy_boto3_transfer-1.35.84.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.35.84.dist-info → mypy_boto3_transfer-1.36.0.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/paginator.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Type annotations for transfer service client paginators.
|
|
3
3
|
|
|
4
|
-
[
|
|
4
|
+
[Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/)
|
|
5
5
|
|
|
6
6
|
Usage::
|
|
7
7
|
|
|
@@ -43,40 +43,42 @@ Usage::
|
|
|
43
43
|
list_workflows_paginator: ListWorkflowsPaginator = client.get_paginator("list_workflows")
|
|
44
44
|
```
|
|
45
45
|
|
|
46
|
-
Copyright
|
|
46
|
+
Copyright 2025 Vlad Emelianov
|
|
47
47
|
"""
|
|
48
48
|
|
|
49
|
+
from __future__ import annotations
|
|
50
|
+
|
|
49
51
|
import sys
|
|
50
|
-
from typing import
|
|
52
|
+
from typing import TYPE_CHECKING
|
|
51
53
|
|
|
52
54
|
from botocore.paginate import PageIterator, Paginator
|
|
53
55
|
|
|
54
56
|
from .type_defs import (
|
|
55
|
-
|
|
57
|
+
ListAccessesRequestPaginateTypeDef,
|
|
56
58
|
ListAccessesResponseTypeDef,
|
|
57
|
-
|
|
59
|
+
ListAgreementsRequestPaginateTypeDef,
|
|
58
60
|
ListAgreementsResponseTypeDef,
|
|
59
|
-
|
|
61
|
+
ListCertificatesRequestPaginateTypeDef,
|
|
60
62
|
ListCertificatesResponseTypeDef,
|
|
61
|
-
|
|
63
|
+
ListConnectorsRequestPaginateTypeDef,
|
|
62
64
|
ListConnectorsResponseTypeDef,
|
|
63
|
-
|
|
65
|
+
ListExecutionsRequestPaginateTypeDef,
|
|
64
66
|
ListExecutionsResponseTypeDef,
|
|
65
|
-
|
|
67
|
+
ListFileTransferResultsRequestPaginateTypeDef,
|
|
66
68
|
ListFileTransferResultsResponseTypeDef,
|
|
67
|
-
|
|
69
|
+
ListProfilesRequestPaginateTypeDef,
|
|
68
70
|
ListProfilesResponseTypeDef,
|
|
69
|
-
|
|
71
|
+
ListSecurityPoliciesRequestPaginateTypeDef,
|
|
70
72
|
ListSecurityPoliciesResponseTypeDef,
|
|
71
|
-
|
|
73
|
+
ListServersRequestPaginateTypeDef,
|
|
72
74
|
ListServersResponseTypeDef,
|
|
73
|
-
|
|
75
|
+
ListTagsForResourceRequestPaginateTypeDef,
|
|
74
76
|
ListTagsForResourceResponseTypeDef,
|
|
75
|
-
|
|
77
|
+
ListUsersRequestPaginateTypeDef,
|
|
76
78
|
ListUsersResponseTypeDef,
|
|
77
|
-
|
|
79
|
+
ListWebAppsRequestPaginateTypeDef,
|
|
78
80
|
ListWebAppsResponseTypeDef,
|
|
79
|
-
|
|
81
|
+
ListWorkflowsRequestPaginateTypeDef,
|
|
80
82
|
ListWorkflowsResponseTypeDef,
|
|
81
83
|
)
|
|
82
84
|
|
|
@@ -103,205 +105,273 @@ __all__ = (
|
|
|
103
105
|
)
|
|
104
106
|
|
|
105
107
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
def __iter__(self) -> Iterator[_ItemTypeDef]:
|
|
111
|
-
"""
|
|
112
|
-
Proxy method to specify iterator item type.
|
|
113
|
-
"""
|
|
108
|
+
if TYPE_CHECKING:
|
|
109
|
+
_ListAccessesPaginatorBase = Paginator[ListAccessesResponseTypeDef]
|
|
110
|
+
else:
|
|
111
|
+
_ListAccessesPaginatorBase = Paginator # type: ignore[assignment]
|
|
114
112
|
|
|
115
113
|
|
|
116
|
-
class ListAccessesPaginator(
|
|
114
|
+
class ListAccessesPaginator(_ListAccessesPaginatorBase):
|
|
117
115
|
"""
|
|
118
116
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAccesses.html#Transfer.Paginator.ListAccesses)
|
|
119
117
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listaccessespaginator)
|
|
120
118
|
"""
|
|
121
119
|
|
|
122
|
-
def paginate(
|
|
123
|
-
self, **kwargs: Unpack[
|
|
124
|
-
) ->
|
|
120
|
+
def paginate( # type: ignore[override]
|
|
121
|
+
self, **kwargs: Unpack[ListAccessesRequestPaginateTypeDef]
|
|
122
|
+
) -> PageIterator[ListAccessesResponseTypeDef]:
|
|
125
123
|
"""
|
|
126
124
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAccesses.html#Transfer.Paginator.ListAccesses.paginate)
|
|
127
125
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listaccessespaginator)
|
|
128
126
|
"""
|
|
129
127
|
|
|
130
128
|
|
|
131
|
-
|
|
129
|
+
if TYPE_CHECKING:
|
|
130
|
+
_ListAgreementsPaginatorBase = Paginator[ListAgreementsResponseTypeDef]
|
|
131
|
+
else:
|
|
132
|
+
_ListAgreementsPaginatorBase = Paginator # type: ignore[assignment]
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
class ListAgreementsPaginator(_ListAgreementsPaginatorBase):
|
|
132
136
|
"""
|
|
133
137
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAgreements.html#Transfer.Paginator.ListAgreements)
|
|
134
138
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listagreementspaginator)
|
|
135
139
|
"""
|
|
136
140
|
|
|
137
|
-
def paginate(
|
|
138
|
-
self, **kwargs: Unpack[
|
|
139
|
-
) ->
|
|
141
|
+
def paginate( # type: ignore[override]
|
|
142
|
+
self, **kwargs: Unpack[ListAgreementsRequestPaginateTypeDef]
|
|
143
|
+
) -> PageIterator[ListAgreementsResponseTypeDef]:
|
|
140
144
|
"""
|
|
141
145
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListAgreements.html#Transfer.Paginator.ListAgreements.paginate)
|
|
142
146
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listagreementspaginator)
|
|
143
147
|
"""
|
|
144
148
|
|
|
145
149
|
|
|
146
|
-
|
|
150
|
+
if TYPE_CHECKING:
|
|
151
|
+
_ListCertificatesPaginatorBase = Paginator[ListCertificatesResponseTypeDef]
|
|
152
|
+
else:
|
|
153
|
+
_ListCertificatesPaginatorBase = Paginator # type: ignore[assignment]
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
class ListCertificatesPaginator(_ListCertificatesPaginatorBase):
|
|
147
157
|
"""
|
|
148
158
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListCertificates.html#Transfer.Paginator.ListCertificates)
|
|
149
159
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listcertificatespaginator)
|
|
150
160
|
"""
|
|
151
161
|
|
|
152
|
-
def paginate(
|
|
153
|
-
self, **kwargs: Unpack[
|
|
154
|
-
) ->
|
|
162
|
+
def paginate( # type: ignore[override]
|
|
163
|
+
self, **kwargs: Unpack[ListCertificatesRequestPaginateTypeDef]
|
|
164
|
+
) -> PageIterator[ListCertificatesResponseTypeDef]:
|
|
155
165
|
"""
|
|
156
166
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListCertificates.html#Transfer.Paginator.ListCertificates.paginate)
|
|
157
167
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listcertificatespaginator)
|
|
158
168
|
"""
|
|
159
169
|
|
|
160
170
|
|
|
161
|
-
|
|
171
|
+
if TYPE_CHECKING:
|
|
172
|
+
_ListConnectorsPaginatorBase = Paginator[ListConnectorsResponseTypeDef]
|
|
173
|
+
else:
|
|
174
|
+
_ListConnectorsPaginatorBase = Paginator # type: ignore[assignment]
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
class ListConnectorsPaginator(_ListConnectorsPaginatorBase):
|
|
162
178
|
"""
|
|
163
179
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListConnectors.html#Transfer.Paginator.ListConnectors)
|
|
164
180
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listconnectorspaginator)
|
|
165
181
|
"""
|
|
166
182
|
|
|
167
|
-
def paginate(
|
|
168
|
-
self, **kwargs: Unpack[
|
|
169
|
-
) ->
|
|
183
|
+
def paginate( # type: ignore[override]
|
|
184
|
+
self, **kwargs: Unpack[ListConnectorsRequestPaginateTypeDef]
|
|
185
|
+
) -> PageIterator[ListConnectorsResponseTypeDef]:
|
|
170
186
|
"""
|
|
171
187
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListConnectors.html#Transfer.Paginator.ListConnectors.paginate)
|
|
172
188
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listconnectorspaginator)
|
|
173
189
|
"""
|
|
174
190
|
|
|
175
191
|
|
|
176
|
-
|
|
192
|
+
if TYPE_CHECKING:
|
|
193
|
+
_ListExecutionsPaginatorBase = Paginator[ListExecutionsResponseTypeDef]
|
|
194
|
+
else:
|
|
195
|
+
_ListExecutionsPaginatorBase = Paginator # type: ignore[assignment]
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
class ListExecutionsPaginator(_ListExecutionsPaginatorBase):
|
|
177
199
|
"""
|
|
178
200
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListExecutions.html#Transfer.Paginator.ListExecutions)
|
|
179
201
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listexecutionspaginator)
|
|
180
202
|
"""
|
|
181
203
|
|
|
182
|
-
def paginate(
|
|
183
|
-
self, **kwargs: Unpack[
|
|
184
|
-
) ->
|
|
204
|
+
def paginate( # type: ignore[override]
|
|
205
|
+
self, **kwargs: Unpack[ListExecutionsRequestPaginateTypeDef]
|
|
206
|
+
) -> PageIterator[ListExecutionsResponseTypeDef]:
|
|
185
207
|
"""
|
|
186
208
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListExecutions.html#Transfer.Paginator.ListExecutions.paginate)
|
|
187
209
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listexecutionspaginator)
|
|
188
210
|
"""
|
|
189
211
|
|
|
190
212
|
|
|
191
|
-
|
|
213
|
+
if TYPE_CHECKING:
|
|
214
|
+
_ListFileTransferResultsPaginatorBase = Paginator[ListFileTransferResultsResponseTypeDef]
|
|
215
|
+
else:
|
|
216
|
+
_ListFileTransferResultsPaginatorBase = Paginator # type: ignore[assignment]
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
class ListFileTransferResultsPaginator(_ListFileTransferResultsPaginatorBase):
|
|
192
220
|
"""
|
|
193
221
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListFileTransferResults.html#Transfer.Paginator.ListFileTransferResults)
|
|
194
222
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
195
223
|
"""
|
|
196
224
|
|
|
197
|
-
def paginate(
|
|
198
|
-
self, **kwargs: Unpack[
|
|
199
|
-
) ->
|
|
225
|
+
def paginate( # type: ignore[override]
|
|
226
|
+
self, **kwargs: Unpack[ListFileTransferResultsRequestPaginateTypeDef]
|
|
227
|
+
) -> PageIterator[ListFileTransferResultsResponseTypeDef]:
|
|
200
228
|
"""
|
|
201
229
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListFileTransferResults.html#Transfer.Paginator.ListFileTransferResults.paginate)
|
|
202
230
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
203
231
|
"""
|
|
204
232
|
|
|
205
233
|
|
|
206
|
-
|
|
234
|
+
if TYPE_CHECKING:
|
|
235
|
+
_ListProfilesPaginatorBase = Paginator[ListProfilesResponseTypeDef]
|
|
236
|
+
else:
|
|
237
|
+
_ListProfilesPaginatorBase = Paginator # type: ignore[assignment]
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
class ListProfilesPaginator(_ListProfilesPaginatorBase):
|
|
207
241
|
"""
|
|
208
242
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListProfiles.html#Transfer.Paginator.ListProfiles)
|
|
209
243
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listprofilespaginator)
|
|
210
244
|
"""
|
|
211
245
|
|
|
212
|
-
def paginate(
|
|
213
|
-
self, **kwargs: Unpack[
|
|
214
|
-
) ->
|
|
246
|
+
def paginate( # type: ignore[override]
|
|
247
|
+
self, **kwargs: Unpack[ListProfilesRequestPaginateTypeDef]
|
|
248
|
+
) -> PageIterator[ListProfilesResponseTypeDef]:
|
|
215
249
|
"""
|
|
216
250
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListProfiles.html#Transfer.Paginator.ListProfiles.paginate)
|
|
217
251
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listprofilespaginator)
|
|
218
252
|
"""
|
|
219
253
|
|
|
220
254
|
|
|
221
|
-
|
|
255
|
+
if TYPE_CHECKING:
|
|
256
|
+
_ListSecurityPoliciesPaginatorBase = Paginator[ListSecurityPoliciesResponseTypeDef]
|
|
257
|
+
else:
|
|
258
|
+
_ListSecurityPoliciesPaginatorBase = Paginator # type: ignore[assignment]
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
class ListSecurityPoliciesPaginator(_ListSecurityPoliciesPaginatorBase):
|
|
222
262
|
"""
|
|
223
263
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListSecurityPolicies.html#Transfer.Paginator.ListSecurityPolicies)
|
|
224
264
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listsecuritypoliciespaginator)
|
|
225
265
|
"""
|
|
226
266
|
|
|
227
|
-
def paginate(
|
|
228
|
-
self, **kwargs: Unpack[
|
|
229
|
-
) ->
|
|
267
|
+
def paginate( # type: ignore[override]
|
|
268
|
+
self, **kwargs: Unpack[ListSecurityPoliciesRequestPaginateTypeDef]
|
|
269
|
+
) -> PageIterator[ListSecurityPoliciesResponseTypeDef]:
|
|
230
270
|
"""
|
|
231
271
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListSecurityPolicies.html#Transfer.Paginator.ListSecurityPolicies.paginate)
|
|
232
272
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listsecuritypoliciespaginator)
|
|
233
273
|
"""
|
|
234
274
|
|
|
235
275
|
|
|
236
|
-
|
|
276
|
+
if TYPE_CHECKING:
|
|
277
|
+
_ListServersPaginatorBase = Paginator[ListServersResponseTypeDef]
|
|
278
|
+
else:
|
|
279
|
+
_ListServersPaginatorBase = Paginator # type: ignore[assignment]
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
class ListServersPaginator(_ListServersPaginatorBase):
|
|
237
283
|
"""
|
|
238
284
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListServers.html#Transfer.Paginator.ListServers)
|
|
239
285
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listserverspaginator)
|
|
240
286
|
"""
|
|
241
287
|
|
|
242
|
-
def paginate(
|
|
243
|
-
self, **kwargs: Unpack[
|
|
244
|
-
) ->
|
|
288
|
+
def paginate( # type: ignore[override]
|
|
289
|
+
self, **kwargs: Unpack[ListServersRequestPaginateTypeDef]
|
|
290
|
+
) -> PageIterator[ListServersResponseTypeDef]:
|
|
245
291
|
"""
|
|
246
292
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListServers.html#Transfer.Paginator.ListServers.paginate)
|
|
247
293
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listserverspaginator)
|
|
248
294
|
"""
|
|
249
295
|
|
|
250
296
|
|
|
251
|
-
|
|
297
|
+
if TYPE_CHECKING:
|
|
298
|
+
_ListTagsForResourcePaginatorBase = Paginator[ListTagsForResourceResponseTypeDef]
|
|
299
|
+
else:
|
|
300
|
+
_ListTagsForResourcePaginatorBase = Paginator # type: ignore[assignment]
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
class ListTagsForResourcePaginator(_ListTagsForResourcePaginatorBase):
|
|
252
304
|
"""
|
|
253
305
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListTagsForResource.html#Transfer.Paginator.ListTagsForResource)
|
|
254
306
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listtagsforresourcepaginator)
|
|
255
307
|
"""
|
|
256
308
|
|
|
257
|
-
def paginate(
|
|
258
|
-
self, **kwargs: Unpack[
|
|
259
|
-
) ->
|
|
309
|
+
def paginate( # type: ignore[override]
|
|
310
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestPaginateTypeDef]
|
|
311
|
+
) -> PageIterator[ListTagsForResourceResponseTypeDef]:
|
|
260
312
|
"""
|
|
261
313
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListTagsForResource.html#Transfer.Paginator.ListTagsForResource.paginate)
|
|
262
314
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listtagsforresourcepaginator)
|
|
263
315
|
"""
|
|
264
316
|
|
|
265
317
|
|
|
266
|
-
|
|
318
|
+
if TYPE_CHECKING:
|
|
319
|
+
_ListUsersPaginatorBase = Paginator[ListUsersResponseTypeDef]
|
|
320
|
+
else:
|
|
321
|
+
_ListUsersPaginatorBase = Paginator # type: ignore[assignment]
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
class ListUsersPaginator(_ListUsersPaginatorBase):
|
|
267
325
|
"""
|
|
268
326
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListUsers.html#Transfer.Paginator.ListUsers)
|
|
269
327
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listuserspaginator)
|
|
270
328
|
"""
|
|
271
329
|
|
|
272
|
-
def paginate(
|
|
273
|
-
self, **kwargs: Unpack[
|
|
274
|
-
) ->
|
|
330
|
+
def paginate( # type: ignore[override]
|
|
331
|
+
self, **kwargs: Unpack[ListUsersRequestPaginateTypeDef]
|
|
332
|
+
) -> PageIterator[ListUsersResponseTypeDef]:
|
|
275
333
|
"""
|
|
276
334
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListUsers.html#Transfer.Paginator.ListUsers.paginate)
|
|
277
335
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listuserspaginator)
|
|
278
336
|
"""
|
|
279
337
|
|
|
280
338
|
|
|
281
|
-
|
|
339
|
+
if TYPE_CHECKING:
|
|
340
|
+
_ListWebAppsPaginatorBase = Paginator[ListWebAppsResponseTypeDef]
|
|
341
|
+
else:
|
|
342
|
+
_ListWebAppsPaginatorBase = Paginator # type: ignore[assignment]
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
class ListWebAppsPaginator(_ListWebAppsPaginatorBase):
|
|
282
346
|
"""
|
|
283
347
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWebApps.html#Transfer.Paginator.ListWebApps)
|
|
284
348
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listwebappspaginator)
|
|
285
349
|
"""
|
|
286
350
|
|
|
287
|
-
def paginate(
|
|
288
|
-
self, **kwargs: Unpack[
|
|
289
|
-
) ->
|
|
351
|
+
def paginate( # type: ignore[override]
|
|
352
|
+
self, **kwargs: Unpack[ListWebAppsRequestPaginateTypeDef]
|
|
353
|
+
) -> PageIterator[ListWebAppsResponseTypeDef]:
|
|
290
354
|
"""
|
|
291
355
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWebApps.html#Transfer.Paginator.ListWebApps.paginate)
|
|
292
356
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listwebappspaginator)
|
|
293
357
|
"""
|
|
294
358
|
|
|
295
359
|
|
|
296
|
-
|
|
360
|
+
if TYPE_CHECKING:
|
|
361
|
+
_ListWorkflowsPaginatorBase = Paginator[ListWorkflowsResponseTypeDef]
|
|
362
|
+
else:
|
|
363
|
+
_ListWorkflowsPaginatorBase = Paginator # type: ignore[assignment]
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
class ListWorkflowsPaginator(_ListWorkflowsPaginatorBase):
|
|
297
367
|
"""
|
|
298
368
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWorkflows.html#Transfer.Paginator.ListWorkflows)
|
|
299
369
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listworkflowspaginator)
|
|
300
370
|
"""
|
|
301
371
|
|
|
302
|
-
def paginate(
|
|
303
|
-
self, **kwargs: Unpack[
|
|
304
|
-
) ->
|
|
372
|
+
def paginate( # type: ignore[override]
|
|
373
|
+
self, **kwargs: Unpack[ListWorkflowsRequestPaginateTypeDef]
|
|
374
|
+
) -> PageIterator[ListWorkflowsResponseTypeDef]:
|
|
305
375
|
"""
|
|
306
376
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/paginator/ListWorkflows.html#Transfer.Paginator.ListWorkflows.paginate)
|
|
307
377
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listworkflowspaginator)
|