mypy-boto3-transfer 1.35.0__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 +11 -2
- mypy_boto3_transfer/literals.pyi +9 -2
- 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.35.0.dist-info → mypy_boto3_transfer-1.35.40.dist-info}/METADATA +11 -8
- mypy_boto3_transfer-1.35.40.dist-info/RECORD +20 -0
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.40.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.40.dist-info}/LICENSE +0 -0
- {mypy_boto3_transfer-1.35.0.dist-info → mypy_boto3_transfer-1.35.40.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/literals.py
CHANGED
|
@@ -19,6 +19,7 @@ if sys.version_info >= (3, 12):
|
|
|
19
19
|
else:
|
|
20
20
|
from typing_extensions import Literal
|
|
21
21
|
|
|
22
|
+
|
|
22
23
|
__all__ = (
|
|
23
24
|
"AgreementStatusTypeType",
|
|
24
25
|
"As2TransportType",
|
|
@@ -41,6 +42,7 @@ __all__ = (
|
|
|
41
42
|
"ListCertificatesPaginatorName",
|
|
42
43
|
"ListConnectorsPaginatorName",
|
|
43
44
|
"ListExecutionsPaginatorName",
|
|
45
|
+
"ListFileTransferResultsPaginatorName",
|
|
44
46
|
"ListProfilesPaginatorName",
|
|
45
47
|
"ListSecurityPoliciesPaginatorName",
|
|
46
48
|
"ListServersPaginatorName",
|
|
@@ -62,6 +64,7 @@ __all__ = (
|
|
|
62
64
|
"SigningAlgType",
|
|
63
65
|
"StateType",
|
|
64
66
|
"TlsSessionResumptionModeType",
|
|
67
|
+
"TransferTableStatusType",
|
|
65
68
|
"WorkflowStepTypeType",
|
|
66
69
|
"TransferServiceName",
|
|
67
70
|
"ServiceName",
|
|
@@ -71,6 +74,7 @@ __all__ = (
|
|
|
71
74
|
"RegionName",
|
|
72
75
|
)
|
|
73
76
|
|
|
77
|
+
|
|
74
78
|
AgreementStatusTypeType = Literal["ACTIVE", "INACTIVE"]
|
|
75
79
|
As2TransportType = Literal["HTTP"]
|
|
76
80
|
CertificateStatusTypeType = Literal["ACTIVE", "INACTIVE", "PENDING_ROTATION"]
|
|
@@ -103,6 +107,7 @@ ListAgreementsPaginatorName = Literal["list_agreements"]
|
|
|
103
107
|
ListCertificatesPaginatorName = Literal["list_certificates"]
|
|
104
108
|
ListConnectorsPaginatorName = Literal["list_connectors"]
|
|
105
109
|
ListExecutionsPaginatorName = Literal["list_executions"]
|
|
110
|
+
ListFileTransferResultsPaginatorName = Literal["list_file_transfer_results"]
|
|
106
111
|
ListProfilesPaginatorName = Literal["list_profiles"]
|
|
107
112
|
ListSecurityPoliciesPaginatorName = Literal["list_security_policies"]
|
|
108
113
|
ListServersPaginatorName = Literal["list_servers"]
|
|
@@ -126,6 +131,7 @@ SftpAuthenticationMethodsType = Literal[
|
|
|
126
131
|
SigningAlgType = Literal["NONE", "SHA1", "SHA256", "SHA384", "SHA512"]
|
|
127
132
|
StateType = Literal["OFFLINE", "ONLINE", "STARTING", "START_FAILED", "STOPPING", "STOP_FAILED"]
|
|
128
133
|
TlsSessionResumptionModeType = Literal["DISABLED", "ENABLED", "ENFORCED"]
|
|
134
|
+
TransferTableStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS", "QUEUED"]
|
|
129
135
|
WorkflowStepTypeType = Literal["COPY", "CUSTOM", "DECRYPT", "DELETE", "TAG"]
|
|
130
136
|
TransferServiceName = Literal["transfer"]
|
|
131
137
|
ServiceName = Literal[
|
|
@@ -205,7 +211,6 @@ ServiceName = Literal[
|
|
|
205
211
|
"codeguru-security",
|
|
206
212
|
"codeguruprofiler",
|
|
207
213
|
"codepipeline",
|
|
208
|
-
"codestar",
|
|
209
214
|
"codestar-connections",
|
|
210
215
|
"codestar-notifications",
|
|
211
216
|
"cognito-identity",
|
|
@@ -243,6 +248,7 @@ ServiceName = Literal[
|
|
|
243
248
|
"docdb-elastic",
|
|
244
249
|
"drs",
|
|
245
250
|
"ds",
|
|
251
|
+
"ds-data",
|
|
246
252
|
"dynamodb",
|
|
247
253
|
"dynamodbstreams",
|
|
248
254
|
"ebs",
|
|
@@ -355,6 +361,7 @@ ServiceName = Literal[
|
|
|
355
361
|
"marketplace-catalog",
|
|
356
362
|
"marketplace-deployment",
|
|
357
363
|
"marketplace-entitlement",
|
|
364
|
+
"marketplace-reporting",
|
|
358
365
|
"marketplacecommerceanalytics",
|
|
359
366
|
"mediaconnect",
|
|
360
367
|
"mediaconvert",
|
|
@@ -398,6 +405,7 @@ ServiceName = Literal[
|
|
|
398
405
|
"payment-cryptography-data",
|
|
399
406
|
"pca-connector-ad",
|
|
400
407
|
"pca-connector-scep",
|
|
408
|
+
"pcs",
|
|
401
409
|
"personalize",
|
|
402
410
|
"personalize-events",
|
|
403
411
|
"personalize-runtime",
|
|
@@ -472,6 +480,7 @@ ServiceName = Literal[
|
|
|
472
480
|
"snow-device-management",
|
|
473
481
|
"snowball",
|
|
474
482
|
"sns",
|
|
483
|
+
"socialmessaging",
|
|
475
484
|
"sqs",
|
|
476
485
|
"ssm",
|
|
477
486
|
"ssm-contacts",
|
|
@@ -508,7 +517,6 @@ ServiceName = Literal[
|
|
|
508
517
|
"wellarchitected",
|
|
509
518
|
"wisdom",
|
|
510
519
|
"workdocs",
|
|
511
|
-
"worklink",
|
|
512
520
|
"workmail",
|
|
513
521
|
"workmailmessageflow",
|
|
514
522
|
"workspaces",
|
|
@@ -534,6 +542,7 @@ PaginatorName = Literal[
|
|
|
534
542
|
"list_certificates",
|
|
535
543
|
"list_connectors",
|
|
536
544
|
"list_executions",
|
|
545
|
+
"list_file_transfer_results",
|
|
537
546
|
"list_profiles",
|
|
538
547
|
"list_security_policies",
|
|
539
548
|
"list_servers",
|
mypy_boto3_transfer/literals.pyi
CHANGED
|
@@ -41,6 +41,7 @@ __all__ = (
|
|
|
41
41
|
"ListCertificatesPaginatorName",
|
|
42
42
|
"ListConnectorsPaginatorName",
|
|
43
43
|
"ListExecutionsPaginatorName",
|
|
44
|
+
"ListFileTransferResultsPaginatorName",
|
|
44
45
|
"ListProfilesPaginatorName",
|
|
45
46
|
"ListSecurityPoliciesPaginatorName",
|
|
46
47
|
"ListServersPaginatorName",
|
|
@@ -62,6 +63,7 @@ __all__ = (
|
|
|
62
63
|
"SigningAlgType",
|
|
63
64
|
"StateType",
|
|
64
65
|
"TlsSessionResumptionModeType",
|
|
66
|
+
"TransferTableStatusType",
|
|
65
67
|
"WorkflowStepTypeType",
|
|
66
68
|
"TransferServiceName",
|
|
67
69
|
"ServiceName",
|
|
@@ -103,6 +105,7 @@ ListAgreementsPaginatorName = Literal["list_agreements"]
|
|
|
103
105
|
ListCertificatesPaginatorName = Literal["list_certificates"]
|
|
104
106
|
ListConnectorsPaginatorName = Literal["list_connectors"]
|
|
105
107
|
ListExecutionsPaginatorName = Literal["list_executions"]
|
|
108
|
+
ListFileTransferResultsPaginatorName = Literal["list_file_transfer_results"]
|
|
106
109
|
ListProfilesPaginatorName = Literal["list_profiles"]
|
|
107
110
|
ListSecurityPoliciesPaginatorName = Literal["list_security_policies"]
|
|
108
111
|
ListServersPaginatorName = Literal["list_servers"]
|
|
@@ -126,6 +129,7 @@ SftpAuthenticationMethodsType = Literal[
|
|
|
126
129
|
SigningAlgType = Literal["NONE", "SHA1", "SHA256", "SHA384", "SHA512"]
|
|
127
130
|
StateType = Literal["OFFLINE", "ONLINE", "STARTING", "START_FAILED", "STOPPING", "STOP_FAILED"]
|
|
128
131
|
TlsSessionResumptionModeType = Literal["DISABLED", "ENABLED", "ENFORCED"]
|
|
132
|
+
TransferTableStatusType = Literal["COMPLETED", "FAILED", "IN_PROGRESS", "QUEUED"]
|
|
129
133
|
WorkflowStepTypeType = Literal["COPY", "CUSTOM", "DECRYPT", "DELETE", "TAG"]
|
|
130
134
|
TransferServiceName = Literal["transfer"]
|
|
131
135
|
ServiceName = Literal[
|
|
@@ -205,7 +209,6 @@ ServiceName = Literal[
|
|
|
205
209
|
"codeguru-security",
|
|
206
210
|
"codeguruprofiler",
|
|
207
211
|
"codepipeline",
|
|
208
|
-
"codestar",
|
|
209
212
|
"codestar-connections",
|
|
210
213
|
"codestar-notifications",
|
|
211
214
|
"cognito-identity",
|
|
@@ -243,6 +246,7 @@ ServiceName = Literal[
|
|
|
243
246
|
"docdb-elastic",
|
|
244
247
|
"drs",
|
|
245
248
|
"ds",
|
|
249
|
+
"ds-data",
|
|
246
250
|
"dynamodb",
|
|
247
251
|
"dynamodbstreams",
|
|
248
252
|
"ebs",
|
|
@@ -355,6 +359,7 @@ ServiceName = Literal[
|
|
|
355
359
|
"marketplace-catalog",
|
|
356
360
|
"marketplace-deployment",
|
|
357
361
|
"marketplace-entitlement",
|
|
362
|
+
"marketplace-reporting",
|
|
358
363
|
"marketplacecommerceanalytics",
|
|
359
364
|
"mediaconnect",
|
|
360
365
|
"mediaconvert",
|
|
@@ -398,6 +403,7 @@ ServiceName = Literal[
|
|
|
398
403
|
"payment-cryptography-data",
|
|
399
404
|
"pca-connector-ad",
|
|
400
405
|
"pca-connector-scep",
|
|
406
|
+
"pcs",
|
|
401
407
|
"personalize",
|
|
402
408
|
"personalize-events",
|
|
403
409
|
"personalize-runtime",
|
|
@@ -472,6 +478,7 @@ ServiceName = Literal[
|
|
|
472
478
|
"snow-device-management",
|
|
473
479
|
"snowball",
|
|
474
480
|
"sns",
|
|
481
|
+
"socialmessaging",
|
|
475
482
|
"sqs",
|
|
476
483
|
"ssm",
|
|
477
484
|
"ssm-contacts",
|
|
@@ -508,7 +515,6 @@ ServiceName = Literal[
|
|
|
508
515
|
"wellarchitected",
|
|
509
516
|
"wisdom",
|
|
510
517
|
"workdocs",
|
|
511
|
-
"worklink",
|
|
512
518
|
"workmail",
|
|
513
519
|
"workmailmessageflow",
|
|
514
520
|
"workspaces",
|
|
@@ -534,6 +540,7 @@ PaginatorName = Literal[
|
|
|
534
540
|
"list_certificates",
|
|
535
541
|
"list_connectors",
|
|
536
542
|
"list_executions",
|
|
543
|
+
"list_file_transfer_results",
|
|
537
544
|
"list_profiles",
|
|
538
545
|
"list_security_policies",
|
|
539
546
|
"list_servers",
|
mypy_boto3_transfer/paginator.py
CHANGED
|
@@ -15,6 +15,7 @@ Usage::
|
|
|
15
15
|
ListCertificatesPaginator,
|
|
16
16
|
ListConnectorsPaginator,
|
|
17
17
|
ListExecutionsPaginator,
|
|
18
|
+
ListFileTransferResultsPaginator,
|
|
18
19
|
ListProfilesPaginator,
|
|
19
20
|
ListSecurityPoliciesPaginator,
|
|
20
21
|
ListServersPaginator,
|
|
@@ -31,6 +32,7 @@ Usage::
|
|
|
31
32
|
list_certificates_paginator: ListCertificatesPaginator = client.get_paginator("list_certificates")
|
|
32
33
|
list_connectors_paginator: ListConnectorsPaginator = client.get_paginator("list_connectors")
|
|
33
34
|
list_executions_paginator: ListExecutionsPaginator = client.get_paginator("list_executions")
|
|
35
|
+
list_file_transfer_results_paginator: ListFileTransferResultsPaginator = client.get_paginator("list_file_transfer_results")
|
|
34
36
|
list_profiles_paginator: ListProfilesPaginator = client.get_paginator("list_profiles")
|
|
35
37
|
list_security_policies_paginator: ListSecurityPoliciesPaginator = client.get_paginator("list_security_policies")
|
|
36
38
|
list_servers_paginator: ListServersPaginator = client.get_paginator("list_servers")
|
|
@@ -40,32 +42,51 @@ Usage::
|
|
|
40
42
|
```
|
|
41
43
|
"""
|
|
42
44
|
|
|
45
|
+
import sys
|
|
43
46
|
from typing import Generic, Iterator, TypeVar
|
|
44
47
|
|
|
45
48
|
from botocore.paginate import PageIterator, Paginator
|
|
46
49
|
|
|
47
|
-
from .literals import ProfileTypeType
|
|
48
50
|
from .type_defs import (
|
|
51
|
+
ListAccessesRequestListAccessesPaginateTypeDef,
|
|
49
52
|
ListAccessesResponseTypeDef,
|
|
53
|
+
ListAgreementsRequestListAgreementsPaginateTypeDef,
|
|
50
54
|
ListAgreementsResponseTypeDef,
|
|
55
|
+
ListCertificatesRequestListCertificatesPaginateTypeDef,
|
|
51
56
|
ListCertificatesResponseTypeDef,
|
|
57
|
+
ListConnectorsRequestListConnectorsPaginateTypeDef,
|
|
52
58
|
ListConnectorsResponseTypeDef,
|
|
59
|
+
ListExecutionsRequestListExecutionsPaginateTypeDef,
|
|
53
60
|
ListExecutionsResponseTypeDef,
|
|
61
|
+
ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef,
|
|
62
|
+
ListFileTransferResultsResponseTypeDef,
|
|
63
|
+
ListProfilesRequestListProfilesPaginateTypeDef,
|
|
54
64
|
ListProfilesResponseTypeDef,
|
|
65
|
+
ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef,
|
|
55
66
|
ListSecurityPoliciesResponseTypeDef,
|
|
67
|
+
ListServersRequestListServersPaginateTypeDef,
|
|
56
68
|
ListServersResponseTypeDef,
|
|
69
|
+
ListTagsForResourceRequestListTagsForResourcePaginateTypeDef,
|
|
57
70
|
ListTagsForResourceResponseTypeDef,
|
|
71
|
+
ListUsersRequestListUsersPaginateTypeDef,
|
|
58
72
|
ListUsersResponseTypeDef,
|
|
73
|
+
ListWorkflowsRequestListWorkflowsPaginateTypeDef,
|
|
59
74
|
ListWorkflowsResponseTypeDef,
|
|
60
|
-
PaginatorConfigTypeDef,
|
|
61
75
|
)
|
|
62
76
|
|
|
77
|
+
if sys.version_info >= (3, 12):
|
|
78
|
+
from typing import Unpack
|
|
79
|
+
else:
|
|
80
|
+
from typing_extensions import Unpack
|
|
81
|
+
|
|
82
|
+
|
|
63
83
|
__all__ = (
|
|
64
84
|
"ListAccessesPaginator",
|
|
65
85
|
"ListAgreementsPaginator",
|
|
66
86
|
"ListCertificatesPaginator",
|
|
67
87
|
"ListConnectorsPaginator",
|
|
68
88
|
"ListExecutionsPaginator",
|
|
89
|
+
"ListFileTransferResultsPaginator",
|
|
69
90
|
"ListProfilesPaginator",
|
|
70
91
|
"ListSecurityPoliciesPaginator",
|
|
71
92
|
"ListServersPaginator",
|
|
@@ -74,6 +95,7 @@ __all__ = (
|
|
|
74
95
|
"ListWorkflowsPaginator",
|
|
75
96
|
)
|
|
76
97
|
|
|
98
|
+
|
|
77
99
|
_ItemTypeDef = TypeVar("_ItemTypeDef")
|
|
78
100
|
|
|
79
101
|
|
|
@@ -91,7 +113,7 @@ class ListAccessesPaginator(Paginator):
|
|
|
91
113
|
"""
|
|
92
114
|
|
|
93
115
|
def paginate(
|
|
94
|
-
self,
|
|
116
|
+
self, **kwargs: Unpack[ListAccessesRequestListAccessesPaginateTypeDef]
|
|
95
117
|
) -> _PageIterator[ListAccessesResponseTypeDef]:
|
|
96
118
|
"""
|
|
97
119
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAccesses.paginate)
|
|
@@ -106,7 +128,7 @@ class ListAgreementsPaginator(Paginator):
|
|
|
106
128
|
"""
|
|
107
129
|
|
|
108
130
|
def paginate(
|
|
109
|
-
self,
|
|
131
|
+
self, **kwargs: Unpack[ListAgreementsRequestListAgreementsPaginateTypeDef]
|
|
110
132
|
) -> _PageIterator[ListAgreementsResponseTypeDef]:
|
|
111
133
|
"""
|
|
112
134
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAgreements.paginate)
|
|
@@ -121,7 +143,7 @@ class ListCertificatesPaginator(Paginator):
|
|
|
121
143
|
"""
|
|
122
144
|
|
|
123
145
|
def paginate(
|
|
124
|
-
self,
|
|
146
|
+
self, **kwargs: Unpack[ListCertificatesRequestListCertificatesPaginateTypeDef]
|
|
125
147
|
) -> _PageIterator[ListCertificatesResponseTypeDef]:
|
|
126
148
|
"""
|
|
127
149
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListCertificates.paginate)
|
|
@@ -136,7 +158,7 @@ class ListConnectorsPaginator(Paginator):
|
|
|
136
158
|
"""
|
|
137
159
|
|
|
138
160
|
def paginate(
|
|
139
|
-
self,
|
|
161
|
+
self, **kwargs: Unpack[ListConnectorsRequestListConnectorsPaginateTypeDef]
|
|
140
162
|
) -> _PageIterator[ListConnectorsResponseTypeDef]:
|
|
141
163
|
"""
|
|
142
164
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListConnectors.paginate)
|
|
@@ -151,7 +173,7 @@ class ListExecutionsPaginator(Paginator):
|
|
|
151
173
|
"""
|
|
152
174
|
|
|
153
175
|
def paginate(
|
|
154
|
-
self,
|
|
176
|
+
self, **kwargs: Unpack[ListExecutionsRequestListExecutionsPaginateTypeDef]
|
|
155
177
|
) -> _PageIterator[ListExecutionsResponseTypeDef]:
|
|
156
178
|
"""
|
|
157
179
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListExecutions.paginate)
|
|
@@ -159,6 +181,21 @@ class ListExecutionsPaginator(Paginator):
|
|
|
159
181
|
"""
|
|
160
182
|
|
|
161
183
|
|
|
184
|
+
class ListFileTransferResultsPaginator(Paginator):
|
|
185
|
+
"""
|
|
186
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListFileTransferResults)
|
|
187
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
188
|
+
"""
|
|
189
|
+
|
|
190
|
+
def paginate(
|
|
191
|
+
self, **kwargs: Unpack[ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef]
|
|
192
|
+
) -> _PageIterator[ListFileTransferResultsResponseTypeDef]:
|
|
193
|
+
"""
|
|
194
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListFileTransferResults.paginate)
|
|
195
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
196
|
+
"""
|
|
197
|
+
|
|
198
|
+
|
|
162
199
|
class ListProfilesPaginator(Paginator):
|
|
163
200
|
"""
|
|
164
201
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListProfiles)
|
|
@@ -166,7 +203,7 @@ class ListProfilesPaginator(Paginator):
|
|
|
166
203
|
"""
|
|
167
204
|
|
|
168
205
|
def paginate(
|
|
169
|
-
self,
|
|
206
|
+
self, **kwargs: Unpack[ListProfilesRequestListProfilesPaginateTypeDef]
|
|
170
207
|
) -> _PageIterator[ListProfilesResponseTypeDef]:
|
|
171
208
|
"""
|
|
172
209
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListProfiles.paginate)
|
|
@@ -181,7 +218,7 @@ class ListSecurityPoliciesPaginator(Paginator):
|
|
|
181
218
|
"""
|
|
182
219
|
|
|
183
220
|
def paginate(
|
|
184
|
-
self,
|
|
221
|
+
self, **kwargs: Unpack[ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef]
|
|
185
222
|
) -> _PageIterator[ListSecurityPoliciesResponseTypeDef]:
|
|
186
223
|
"""
|
|
187
224
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListSecurityPolicies.paginate)
|
|
@@ -196,7 +233,7 @@ class ListServersPaginator(Paginator):
|
|
|
196
233
|
"""
|
|
197
234
|
|
|
198
235
|
def paginate(
|
|
199
|
-
self,
|
|
236
|
+
self, **kwargs: Unpack[ListServersRequestListServersPaginateTypeDef]
|
|
200
237
|
) -> _PageIterator[ListServersResponseTypeDef]:
|
|
201
238
|
"""
|
|
202
239
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListServers.paginate)
|
|
@@ -211,7 +248,7 @@ class ListTagsForResourcePaginator(Paginator):
|
|
|
211
248
|
"""
|
|
212
249
|
|
|
213
250
|
def paginate(
|
|
214
|
-
self,
|
|
251
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestListTagsForResourcePaginateTypeDef]
|
|
215
252
|
) -> _PageIterator[ListTagsForResourceResponseTypeDef]:
|
|
216
253
|
"""
|
|
217
254
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListTagsForResource.paginate)
|
|
@@ -226,7 +263,7 @@ class ListUsersPaginator(Paginator):
|
|
|
226
263
|
"""
|
|
227
264
|
|
|
228
265
|
def paginate(
|
|
229
|
-
self,
|
|
266
|
+
self, **kwargs: Unpack[ListUsersRequestListUsersPaginateTypeDef]
|
|
230
267
|
) -> _PageIterator[ListUsersResponseTypeDef]:
|
|
231
268
|
"""
|
|
232
269
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListUsers.paginate)
|
|
@@ -241,7 +278,7 @@ class ListWorkflowsPaginator(Paginator):
|
|
|
241
278
|
"""
|
|
242
279
|
|
|
243
280
|
def paginate(
|
|
244
|
-
self,
|
|
281
|
+
self, **kwargs: Unpack[ListWorkflowsRequestListWorkflowsPaginateTypeDef]
|
|
245
282
|
) -> _PageIterator[ListWorkflowsResponseTypeDef]:
|
|
246
283
|
"""
|
|
247
284
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListWorkflows.paginate)
|
|
@@ -15,6 +15,7 @@ Usage::
|
|
|
15
15
|
ListCertificatesPaginator,
|
|
16
16
|
ListConnectorsPaginator,
|
|
17
17
|
ListExecutionsPaginator,
|
|
18
|
+
ListFileTransferResultsPaginator,
|
|
18
19
|
ListProfilesPaginator,
|
|
19
20
|
ListSecurityPoliciesPaginator,
|
|
20
21
|
ListServersPaginator,
|
|
@@ -31,6 +32,7 @@ Usage::
|
|
|
31
32
|
list_certificates_paginator: ListCertificatesPaginator = client.get_paginator("list_certificates")
|
|
32
33
|
list_connectors_paginator: ListConnectorsPaginator = client.get_paginator("list_connectors")
|
|
33
34
|
list_executions_paginator: ListExecutionsPaginator = client.get_paginator("list_executions")
|
|
35
|
+
list_file_transfer_results_paginator: ListFileTransferResultsPaginator = client.get_paginator("list_file_transfer_results")
|
|
34
36
|
list_profiles_paginator: ListProfilesPaginator = client.get_paginator("list_profiles")
|
|
35
37
|
list_security_policies_paginator: ListSecurityPoliciesPaginator = client.get_paginator("list_security_policies")
|
|
36
38
|
list_servers_paginator: ListServersPaginator = client.get_paginator("list_servers")
|
|
@@ -40,32 +42,50 @@ Usage::
|
|
|
40
42
|
```
|
|
41
43
|
"""
|
|
42
44
|
|
|
45
|
+
import sys
|
|
43
46
|
from typing import Generic, Iterator, TypeVar
|
|
44
47
|
|
|
45
48
|
from botocore.paginate import PageIterator, Paginator
|
|
46
49
|
|
|
47
|
-
from .literals import ProfileTypeType
|
|
48
50
|
from .type_defs import (
|
|
51
|
+
ListAccessesRequestListAccessesPaginateTypeDef,
|
|
49
52
|
ListAccessesResponseTypeDef,
|
|
53
|
+
ListAgreementsRequestListAgreementsPaginateTypeDef,
|
|
50
54
|
ListAgreementsResponseTypeDef,
|
|
55
|
+
ListCertificatesRequestListCertificatesPaginateTypeDef,
|
|
51
56
|
ListCertificatesResponseTypeDef,
|
|
57
|
+
ListConnectorsRequestListConnectorsPaginateTypeDef,
|
|
52
58
|
ListConnectorsResponseTypeDef,
|
|
59
|
+
ListExecutionsRequestListExecutionsPaginateTypeDef,
|
|
53
60
|
ListExecutionsResponseTypeDef,
|
|
61
|
+
ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef,
|
|
62
|
+
ListFileTransferResultsResponseTypeDef,
|
|
63
|
+
ListProfilesRequestListProfilesPaginateTypeDef,
|
|
54
64
|
ListProfilesResponseTypeDef,
|
|
65
|
+
ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef,
|
|
55
66
|
ListSecurityPoliciesResponseTypeDef,
|
|
67
|
+
ListServersRequestListServersPaginateTypeDef,
|
|
56
68
|
ListServersResponseTypeDef,
|
|
69
|
+
ListTagsForResourceRequestListTagsForResourcePaginateTypeDef,
|
|
57
70
|
ListTagsForResourceResponseTypeDef,
|
|
71
|
+
ListUsersRequestListUsersPaginateTypeDef,
|
|
58
72
|
ListUsersResponseTypeDef,
|
|
73
|
+
ListWorkflowsRequestListWorkflowsPaginateTypeDef,
|
|
59
74
|
ListWorkflowsResponseTypeDef,
|
|
60
|
-
PaginatorConfigTypeDef,
|
|
61
75
|
)
|
|
62
76
|
|
|
77
|
+
if sys.version_info >= (3, 12):
|
|
78
|
+
from typing import Unpack
|
|
79
|
+
else:
|
|
80
|
+
from typing_extensions import Unpack
|
|
81
|
+
|
|
63
82
|
__all__ = (
|
|
64
83
|
"ListAccessesPaginator",
|
|
65
84
|
"ListAgreementsPaginator",
|
|
66
85
|
"ListCertificatesPaginator",
|
|
67
86
|
"ListConnectorsPaginator",
|
|
68
87
|
"ListExecutionsPaginator",
|
|
88
|
+
"ListFileTransferResultsPaginator",
|
|
69
89
|
"ListProfilesPaginator",
|
|
70
90
|
"ListSecurityPoliciesPaginator",
|
|
71
91
|
"ListServersPaginator",
|
|
@@ -87,9 +107,8 @@ class ListAccessesPaginator(Paginator):
|
|
|
87
107
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAccesses)
|
|
88
108
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listaccessespaginator)
|
|
89
109
|
"""
|
|
90
|
-
|
|
91
110
|
def paginate(
|
|
92
|
-
self,
|
|
111
|
+
self, **kwargs: Unpack[ListAccessesRequestListAccessesPaginateTypeDef]
|
|
93
112
|
) -> _PageIterator[ListAccessesResponseTypeDef]:
|
|
94
113
|
"""
|
|
95
114
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAccesses.paginate)
|
|
@@ -101,9 +120,8 @@ class ListAgreementsPaginator(Paginator):
|
|
|
101
120
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAgreements)
|
|
102
121
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listagreementspaginator)
|
|
103
122
|
"""
|
|
104
|
-
|
|
105
123
|
def paginate(
|
|
106
|
-
self,
|
|
124
|
+
self, **kwargs: Unpack[ListAgreementsRequestListAgreementsPaginateTypeDef]
|
|
107
125
|
) -> _PageIterator[ListAgreementsResponseTypeDef]:
|
|
108
126
|
"""
|
|
109
127
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListAgreements.paginate)
|
|
@@ -115,9 +133,8 @@ class ListCertificatesPaginator(Paginator):
|
|
|
115
133
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListCertificates)
|
|
116
134
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listcertificatespaginator)
|
|
117
135
|
"""
|
|
118
|
-
|
|
119
136
|
def paginate(
|
|
120
|
-
self,
|
|
137
|
+
self, **kwargs: Unpack[ListCertificatesRequestListCertificatesPaginateTypeDef]
|
|
121
138
|
) -> _PageIterator[ListCertificatesResponseTypeDef]:
|
|
122
139
|
"""
|
|
123
140
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListCertificates.paginate)
|
|
@@ -129,9 +146,8 @@ class ListConnectorsPaginator(Paginator):
|
|
|
129
146
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListConnectors)
|
|
130
147
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listconnectorspaginator)
|
|
131
148
|
"""
|
|
132
|
-
|
|
133
149
|
def paginate(
|
|
134
|
-
self,
|
|
150
|
+
self, **kwargs: Unpack[ListConnectorsRequestListConnectorsPaginateTypeDef]
|
|
135
151
|
) -> _PageIterator[ListConnectorsResponseTypeDef]:
|
|
136
152
|
"""
|
|
137
153
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListConnectors.paginate)
|
|
@@ -143,23 +159,34 @@ class ListExecutionsPaginator(Paginator):
|
|
|
143
159
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListExecutions)
|
|
144
160
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listexecutionspaginator)
|
|
145
161
|
"""
|
|
146
|
-
|
|
147
162
|
def paginate(
|
|
148
|
-
self,
|
|
163
|
+
self, **kwargs: Unpack[ListExecutionsRequestListExecutionsPaginateTypeDef]
|
|
149
164
|
) -> _PageIterator[ListExecutionsResponseTypeDef]:
|
|
150
165
|
"""
|
|
151
166
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListExecutions.paginate)
|
|
152
167
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listexecutionspaginator)
|
|
153
168
|
"""
|
|
154
169
|
|
|
170
|
+
class ListFileTransferResultsPaginator(Paginator):
|
|
171
|
+
"""
|
|
172
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListFileTransferResults)
|
|
173
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
174
|
+
"""
|
|
175
|
+
def paginate(
|
|
176
|
+
self, **kwargs: Unpack[ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef]
|
|
177
|
+
) -> _PageIterator[ListFileTransferResultsResponseTypeDef]:
|
|
178
|
+
"""
|
|
179
|
+
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListFileTransferResults.paginate)
|
|
180
|
+
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listfiletransferresultspaginator)
|
|
181
|
+
"""
|
|
182
|
+
|
|
155
183
|
class ListProfilesPaginator(Paginator):
|
|
156
184
|
"""
|
|
157
185
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListProfiles)
|
|
158
186
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listprofilespaginator)
|
|
159
187
|
"""
|
|
160
|
-
|
|
161
188
|
def paginate(
|
|
162
|
-
self,
|
|
189
|
+
self, **kwargs: Unpack[ListProfilesRequestListProfilesPaginateTypeDef]
|
|
163
190
|
) -> _PageIterator[ListProfilesResponseTypeDef]:
|
|
164
191
|
"""
|
|
165
192
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListProfiles.paginate)
|
|
@@ -171,9 +198,8 @@ class ListSecurityPoliciesPaginator(Paginator):
|
|
|
171
198
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListSecurityPolicies)
|
|
172
199
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listsecuritypoliciespaginator)
|
|
173
200
|
"""
|
|
174
|
-
|
|
175
201
|
def paginate(
|
|
176
|
-
self,
|
|
202
|
+
self, **kwargs: Unpack[ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef]
|
|
177
203
|
) -> _PageIterator[ListSecurityPoliciesResponseTypeDef]:
|
|
178
204
|
"""
|
|
179
205
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListSecurityPolicies.paginate)
|
|
@@ -185,9 +211,8 @@ class ListServersPaginator(Paginator):
|
|
|
185
211
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListServers)
|
|
186
212
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listserverspaginator)
|
|
187
213
|
"""
|
|
188
|
-
|
|
189
214
|
def paginate(
|
|
190
|
-
self,
|
|
215
|
+
self, **kwargs: Unpack[ListServersRequestListServersPaginateTypeDef]
|
|
191
216
|
) -> _PageIterator[ListServersResponseTypeDef]:
|
|
192
217
|
"""
|
|
193
218
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListServers.paginate)
|
|
@@ -199,9 +224,8 @@ class ListTagsForResourcePaginator(Paginator):
|
|
|
199
224
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListTagsForResource)
|
|
200
225
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listtagsforresourcepaginator)
|
|
201
226
|
"""
|
|
202
|
-
|
|
203
227
|
def paginate(
|
|
204
|
-
self,
|
|
228
|
+
self, **kwargs: Unpack[ListTagsForResourceRequestListTagsForResourcePaginateTypeDef]
|
|
205
229
|
) -> _PageIterator[ListTagsForResourceResponseTypeDef]:
|
|
206
230
|
"""
|
|
207
231
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListTagsForResource.paginate)
|
|
@@ -213,9 +237,8 @@ class ListUsersPaginator(Paginator):
|
|
|
213
237
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListUsers)
|
|
214
238
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listuserspaginator)
|
|
215
239
|
"""
|
|
216
|
-
|
|
217
240
|
def paginate(
|
|
218
|
-
self,
|
|
241
|
+
self, **kwargs: Unpack[ListUsersRequestListUsersPaginateTypeDef]
|
|
219
242
|
) -> _PageIterator[ListUsersResponseTypeDef]:
|
|
220
243
|
"""
|
|
221
244
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListUsers.paginate)
|
|
@@ -227,9 +250,8 @@ class ListWorkflowsPaginator(Paginator):
|
|
|
227
250
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListWorkflows)
|
|
228
251
|
[Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/paginators/#listworkflowspaginator)
|
|
229
252
|
"""
|
|
230
|
-
|
|
231
253
|
def paginate(
|
|
232
|
-
self,
|
|
254
|
+
self, **kwargs: Unpack[ListWorkflowsRequestListWorkflowsPaginateTypeDef]
|
|
233
255
|
) -> _PageIterator[ListWorkflowsResponseTypeDef]:
|
|
234
256
|
"""
|
|
235
257
|
[Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Paginator.ListWorkflows.paginate)
|