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.
@@ -44,24 +44,19 @@ from .literals import (
44
44
  SigningAlgType,
45
45
  StateType,
46
46
  TlsSessionResumptionModeType,
47
+ TransferTableStatusType,
47
48
  WorkflowStepTypeType,
48
49
  )
49
50
 
50
51
  if sys.version_info >= (3, 12):
51
- from typing import Literal
52
+ from typing import Literal, NotRequired, TypedDict
52
53
  else:
53
- from typing_extensions import Literal
54
- if sys.version_info >= (3, 12):
55
- from typing import NotRequired
56
- else:
57
- from typing_extensions import NotRequired
58
- if sys.version_info >= (3, 12):
59
- from typing import TypedDict
60
- else:
61
- from typing_extensions import TypedDict
54
+ from typing_extensions import Literal, NotRequired, TypedDict
55
+
62
56
 
63
57
  __all__ = (
64
58
  "As2ConnectorConfigTypeDef",
59
+ "ConnectorFileTransferResultTypeDef",
65
60
  "HomeDirectoryMapEntryTypeDef",
66
61
  "PosixProfileTypeDef",
67
62
  "ResponseMetadataTypeDef",
@@ -118,6 +113,7 @@ __all__ = (
118
113
  "ListConnectorsRequestRequestTypeDef",
119
114
  "ListedConnectorTypeDef",
120
115
  "ListExecutionsRequestRequestTypeDef",
116
+ "ListFileTransferResultsRequestRequestTypeDef",
121
117
  "ListHostKeysRequestRequestTypeDef",
122
118
  "ListedHostKeyTypeDef",
123
119
  "ListProfilesRequestRequestTypeDef",
@@ -158,6 +154,7 @@ __all__ = (
158
154
  "ImportCertificateResponseTypeDef",
159
155
  "ImportHostKeyResponseTypeDef",
160
156
  "ImportSshPublicKeyResponseTypeDef",
157
+ "ListFileTransferResultsResponseTypeDef",
161
158
  "ListSecurityPoliciesResponseTypeDef",
162
159
  "StartDirectoryListingResponseTypeDef",
163
160
  "StartFileTransferResponseTypeDef",
@@ -187,11 +184,7 @@ __all__ = (
187
184
  "DescribeServerRequestServerOfflineWaitTypeDef",
188
185
  "DescribeServerRequestServerOnlineWaitTypeDef",
189
186
  "DescribedAccessTypeDef",
190
- "PosixProfileUnionTypeDef",
191
187
  "DescribedConnectorTypeDef",
192
- "SftpConnectorConfigUnionTypeDef",
193
- "EndpointDetailsUnionTypeDef",
194
- "ProtocolDetailsUnionTypeDef",
195
188
  "DescribedUserTypeDef",
196
189
  "ExecutionStepResultTypeDef",
197
190
  "FileLocationTypeDef",
@@ -203,6 +196,7 @@ __all__ = (
203
196
  "ListCertificatesRequestListCertificatesPaginateTypeDef",
204
197
  "ListConnectorsRequestListConnectorsPaginateTypeDef",
205
198
  "ListExecutionsRequestListExecutionsPaginateTypeDef",
199
+ "ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef",
206
200
  "ListProfilesRequestListProfilesPaginateTypeDef",
207
201
  "ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef",
208
202
  "ListServersRequestListServersPaginateTypeDef",
@@ -233,11 +227,11 @@ __all__ = (
233
227
  "ExecutionResultsTypeDef",
234
228
  "CopyStepDetailsTypeDef",
235
229
  "DecryptStepDetailsTypeDef",
230
+ "TagStepDetailsUnionTypeDef",
236
231
  "ListedExecutionTypeDef",
237
232
  "DescribedServerTypeDef",
238
233
  "CreateServerRequestRequestTypeDef",
239
234
  "UpdateServerRequestRequestTypeDef",
240
- "WorkflowDetailsUnionTypeDef",
241
235
  "DescribedExecutionTypeDef",
242
236
  "WorkflowStepOutputTypeDef",
243
237
  "WorkflowStepTypeDef",
@@ -264,6 +258,15 @@ As2ConnectorConfigTypeDef = TypedDict(
264
258
  "BasicAuthSecretId": NotRequired[str],
265
259
  },
266
260
  )
261
+ ConnectorFileTransferResultTypeDef = TypedDict(
262
+ "ConnectorFileTransferResultTypeDef",
263
+ {
264
+ "FilePath": str,
265
+ "StatusCode": TransferTableStatusType,
266
+ "FailureCode": NotRequired[str],
267
+ "FailureMessage": NotRequired[str],
268
+ },
269
+ )
267
270
  HomeDirectoryMapEntryTypeDef = TypedDict(
268
271
  "HomeDirectoryMapEntryTypeDef",
269
272
  {
@@ -689,6 +692,15 @@ ListExecutionsRequestRequestTypeDef = TypedDict(
689
692
  "NextToken": NotRequired[str],
690
693
  },
691
694
  )
695
+ ListFileTransferResultsRequestRequestTypeDef = TypedDict(
696
+ "ListFileTransferResultsRequestRequestTypeDef",
697
+ {
698
+ "ConnectorId": str,
699
+ "TransferId": str,
700
+ "NextToken": NotRequired[str],
701
+ "MaxResults": NotRequired[int],
702
+ },
703
+ )
692
704
  ListHostKeysRequestRequestTypeDef = TypedDict(
693
705
  "ListHostKeysRequestRequestTypeDef",
694
706
  {
@@ -1027,6 +1039,14 @@ ImportSshPublicKeyResponseTypeDef = TypedDict(
1027
1039
  "ResponseMetadata": ResponseMetadataTypeDef,
1028
1040
  },
1029
1041
  )
1042
+ ListFileTransferResultsResponseTypeDef = TypedDict(
1043
+ "ListFileTransferResultsResponseTypeDef",
1044
+ {
1045
+ "FileTransferResults": List[ConnectorFileTransferResultTypeDef],
1046
+ "ResponseMetadata": ResponseMetadataTypeDef,
1047
+ "NextToken": NotRequired[str],
1048
+ },
1049
+ )
1030
1050
  ListSecurityPoliciesResponseTypeDef = TypedDict(
1031
1051
  "ListSecurityPoliciesResponseTypeDef",
1032
1052
  {
@@ -1304,7 +1324,6 @@ DescribedAccessTypeDef = TypedDict(
1304
1324
  "ExternalId": NotRequired[str],
1305
1325
  },
1306
1326
  )
1307
- PosixProfileUnionTypeDef = Union[PosixProfileTypeDef, PosixProfileOutputTypeDef]
1308
1327
  DescribedConnectorTypeDef = TypedDict(
1309
1328
  "DescribedConnectorTypeDef",
1310
1329
  {
@@ -1320,11 +1339,6 @@ DescribedConnectorTypeDef = TypedDict(
1320
1339
  "SecurityPolicyName": NotRequired[str],
1321
1340
  },
1322
1341
  )
1323
- SftpConnectorConfigUnionTypeDef = Union[
1324
- SftpConnectorConfigTypeDef, SftpConnectorConfigOutputTypeDef
1325
- ]
1326
- EndpointDetailsUnionTypeDef = Union[EndpointDetailsTypeDef, EndpointDetailsOutputTypeDef]
1327
- ProtocolDetailsUnionTypeDef = Union[ProtocolDetailsTypeDef, ProtocolDetailsOutputTypeDef]
1328
1342
  DescribedUserTypeDef = TypedDict(
1329
1343
  "DescribedUserTypeDef",
1330
1344
  {
@@ -1417,6 +1431,14 @@ ListExecutionsRequestListExecutionsPaginateTypeDef = TypedDict(
1417
1431
  "PaginationConfig": NotRequired[PaginatorConfigTypeDef],
1418
1432
  },
1419
1433
  )
1434
+ ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef = TypedDict(
1435
+ "ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef",
1436
+ {
1437
+ "ConnectorId": str,
1438
+ "TransferId": str,
1439
+ "PaginationConfig": NotRequired[PaginatorConfigTypeDef],
1440
+ },
1441
+ )
1420
1442
  ListProfilesRequestListProfilesPaginateTypeDef = TypedDict(
1421
1443
  "ListProfilesRequestListProfilesPaginateTypeDef",
1422
1444
  {
@@ -1644,6 +1666,7 @@ DecryptStepDetailsTypeDef = TypedDict(
1644
1666
  "OverwriteExisting": NotRequired[OverwriteExistingType],
1645
1667
  },
1646
1668
  )
1669
+ TagStepDetailsUnionTypeDef = Union[TagStepDetailsTypeDef, TagStepDetailsOutputTypeDef]
1647
1670
  ListedExecutionTypeDef = TypedDict(
1648
1671
  "ListedExecutionTypeDef",
1649
1672
  {
@@ -1722,7 +1745,6 @@ UpdateServerRequestRequestTypeDef = TypedDict(
1722
1745
  "S3StorageOptions": NotRequired[S3StorageOptionsTypeDef],
1723
1746
  },
1724
1747
  )
1725
- WorkflowDetailsUnionTypeDef = Union[WorkflowDetailsTypeDef, WorkflowDetailsOutputTypeDef]
1726
1748
  DescribedExecutionTypeDef = TypedDict(
1727
1749
  "DescribedExecutionTypeDef",
1728
1750
  {
@@ -1754,7 +1776,7 @@ WorkflowStepTypeDef = TypedDict(
1754
1776
  "CopyStepDetails": NotRequired[CopyStepDetailsTypeDef],
1755
1777
  "CustomStepDetails": NotRequired[CustomStepDetailsTypeDef],
1756
1778
  "DeleteStepDetails": NotRequired[DeleteStepDetailsTypeDef],
1757
- "TagStepDetails": NotRequired[TagStepDetailsTypeDef],
1779
+ "TagStepDetails": NotRequired[TagStepDetailsUnionTypeDef],
1758
1780
  "DecryptStepDetails": NotRequired[DecryptStepDetailsTypeDef],
1759
1781
  },
1760
1782
  )
@@ -1806,7 +1828,7 @@ CreateWorkflowRequestRequestTypeDef = TypedDict(
1806
1828
  {
1807
1829
  "Steps": Sequence[WorkflowStepUnionTypeDef],
1808
1830
  "Description": NotRequired[str],
1809
- "OnExceptionSteps": NotRequired[Sequence[WorkflowStepUnionTypeDef]],
1831
+ "OnExceptionSteps": NotRequired[Sequence[WorkflowStepTypeDef]],
1810
1832
  "Tags": NotRequired[Sequence[TagTypeDef]],
1811
1833
  },
1812
1834
  )
@@ -44,24 +44,18 @@ from .literals import (
44
44
  SigningAlgType,
45
45
  StateType,
46
46
  TlsSessionResumptionModeType,
47
+ TransferTableStatusType,
47
48
  WorkflowStepTypeType,
48
49
  )
49
50
 
50
51
  if sys.version_info >= (3, 12):
51
- from typing import Literal
52
+ from typing import Literal, NotRequired, TypedDict
52
53
  else:
53
- from typing_extensions import Literal
54
- if sys.version_info >= (3, 12):
55
- from typing import NotRequired
56
- else:
57
- from typing_extensions import NotRequired
58
- if sys.version_info >= (3, 12):
59
- from typing import TypedDict
60
- else:
61
- from typing_extensions import TypedDict
54
+ from typing_extensions import Literal, NotRequired, TypedDict
62
55
 
63
56
  __all__ = (
64
57
  "As2ConnectorConfigTypeDef",
58
+ "ConnectorFileTransferResultTypeDef",
65
59
  "HomeDirectoryMapEntryTypeDef",
66
60
  "PosixProfileTypeDef",
67
61
  "ResponseMetadataTypeDef",
@@ -118,6 +112,7 @@ __all__ = (
118
112
  "ListConnectorsRequestRequestTypeDef",
119
113
  "ListedConnectorTypeDef",
120
114
  "ListExecutionsRequestRequestTypeDef",
115
+ "ListFileTransferResultsRequestRequestTypeDef",
121
116
  "ListHostKeysRequestRequestTypeDef",
122
117
  "ListedHostKeyTypeDef",
123
118
  "ListProfilesRequestRequestTypeDef",
@@ -158,6 +153,7 @@ __all__ = (
158
153
  "ImportCertificateResponseTypeDef",
159
154
  "ImportHostKeyResponseTypeDef",
160
155
  "ImportSshPublicKeyResponseTypeDef",
156
+ "ListFileTransferResultsResponseTypeDef",
161
157
  "ListSecurityPoliciesResponseTypeDef",
162
158
  "StartDirectoryListingResponseTypeDef",
163
159
  "StartFileTransferResponseTypeDef",
@@ -187,11 +183,7 @@ __all__ = (
187
183
  "DescribeServerRequestServerOfflineWaitTypeDef",
188
184
  "DescribeServerRequestServerOnlineWaitTypeDef",
189
185
  "DescribedAccessTypeDef",
190
- "PosixProfileUnionTypeDef",
191
186
  "DescribedConnectorTypeDef",
192
- "SftpConnectorConfigUnionTypeDef",
193
- "EndpointDetailsUnionTypeDef",
194
- "ProtocolDetailsUnionTypeDef",
195
187
  "DescribedUserTypeDef",
196
188
  "ExecutionStepResultTypeDef",
197
189
  "FileLocationTypeDef",
@@ -203,6 +195,7 @@ __all__ = (
203
195
  "ListCertificatesRequestListCertificatesPaginateTypeDef",
204
196
  "ListConnectorsRequestListConnectorsPaginateTypeDef",
205
197
  "ListExecutionsRequestListExecutionsPaginateTypeDef",
198
+ "ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef",
206
199
  "ListProfilesRequestListProfilesPaginateTypeDef",
207
200
  "ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef",
208
201
  "ListServersRequestListServersPaginateTypeDef",
@@ -233,11 +226,11 @@ __all__ = (
233
226
  "ExecutionResultsTypeDef",
234
227
  "CopyStepDetailsTypeDef",
235
228
  "DecryptStepDetailsTypeDef",
229
+ "TagStepDetailsUnionTypeDef",
236
230
  "ListedExecutionTypeDef",
237
231
  "DescribedServerTypeDef",
238
232
  "CreateServerRequestRequestTypeDef",
239
233
  "UpdateServerRequestRequestTypeDef",
240
- "WorkflowDetailsUnionTypeDef",
241
234
  "DescribedExecutionTypeDef",
242
235
  "WorkflowStepOutputTypeDef",
243
236
  "WorkflowStepTypeDef",
@@ -264,6 +257,15 @@ As2ConnectorConfigTypeDef = TypedDict(
264
257
  "BasicAuthSecretId": NotRequired[str],
265
258
  },
266
259
  )
260
+ ConnectorFileTransferResultTypeDef = TypedDict(
261
+ "ConnectorFileTransferResultTypeDef",
262
+ {
263
+ "FilePath": str,
264
+ "StatusCode": TransferTableStatusType,
265
+ "FailureCode": NotRequired[str],
266
+ "FailureMessage": NotRequired[str],
267
+ },
268
+ )
267
269
  HomeDirectoryMapEntryTypeDef = TypedDict(
268
270
  "HomeDirectoryMapEntryTypeDef",
269
271
  {
@@ -689,6 +691,15 @@ ListExecutionsRequestRequestTypeDef = TypedDict(
689
691
  "NextToken": NotRequired[str],
690
692
  },
691
693
  )
694
+ ListFileTransferResultsRequestRequestTypeDef = TypedDict(
695
+ "ListFileTransferResultsRequestRequestTypeDef",
696
+ {
697
+ "ConnectorId": str,
698
+ "TransferId": str,
699
+ "NextToken": NotRequired[str],
700
+ "MaxResults": NotRequired[int],
701
+ },
702
+ )
692
703
  ListHostKeysRequestRequestTypeDef = TypedDict(
693
704
  "ListHostKeysRequestRequestTypeDef",
694
705
  {
@@ -1027,6 +1038,14 @@ ImportSshPublicKeyResponseTypeDef = TypedDict(
1027
1038
  "ResponseMetadata": ResponseMetadataTypeDef,
1028
1039
  },
1029
1040
  )
1041
+ ListFileTransferResultsResponseTypeDef = TypedDict(
1042
+ "ListFileTransferResultsResponseTypeDef",
1043
+ {
1044
+ "FileTransferResults": List[ConnectorFileTransferResultTypeDef],
1045
+ "ResponseMetadata": ResponseMetadataTypeDef,
1046
+ "NextToken": NotRequired[str],
1047
+ },
1048
+ )
1030
1049
  ListSecurityPoliciesResponseTypeDef = TypedDict(
1031
1050
  "ListSecurityPoliciesResponseTypeDef",
1032
1051
  {
@@ -1304,7 +1323,6 @@ DescribedAccessTypeDef = TypedDict(
1304
1323
  "ExternalId": NotRequired[str],
1305
1324
  },
1306
1325
  )
1307
- PosixProfileUnionTypeDef = Union[PosixProfileTypeDef, PosixProfileOutputTypeDef]
1308
1326
  DescribedConnectorTypeDef = TypedDict(
1309
1327
  "DescribedConnectorTypeDef",
1310
1328
  {
@@ -1320,11 +1338,6 @@ DescribedConnectorTypeDef = TypedDict(
1320
1338
  "SecurityPolicyName": NotRequired[str],
1321
1339
  },
1322
1340
  )
1323
- SftpConnectorConfigUnionTypeDef = Union[
1324
- SftpConnectorConfigTypeDef, SftpConnectorConfigOutputTypeDef
1325
- ]
1326
- EndpointDetailsUnionTypeDef = Union[EndpointDetailsTypeDef, EndpointDetailsOutputTypeDef]
1327
- ProtocolDetailsUnionTypeDef = Union[ProtocolDetailsTypeDef, ProtocolDetailsOutputTypeDef]
1328
1341
  DescribedUserTypeDef = TypedDict(
1329
1342
  "DescribedUserTypeDef",
1330
1343
  {
@@ -1417,6 +1430,14 @@ ListExecutionsRequestListExecutionsPaginateTypeDef = TypedDict(
1417
1430
  "PaginationConfig": NotRequired[PaginatorConfigTypeDef],
1418
1431
  },
1419
1432
  )
1433
+ ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef = TypedDict(
1434
+ "ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef",
1435
+ {
1436
+ "ConnectorId": str,
1437
+ "TransferId": str,
1438
+ "PaginationConfig": NotRequired[PaginatorConfigTypeDef],
1439
+ },
1440
+ )
1420
1441
  ListProfilesRequestListProfilesPaginateTypeDef = TypedDict(
1421
1442
  "ListProfilesRequestListProfilesPaginateTypeDef",
1422
1443
  {
@@ -1644,6 +1665,7 @@ DecryptStepDetailsTypeDef = TypedDict(
1644
1665
  "OverwriteExisting": NotRequired[OverwriteExistingType],
1645
1666
  },
1646
1667
  )
1668
+ TagStepDetailsUnionTypeDef = Union[TagStepDetailsTypeDef, TagStepDetailsOutputTypeDef]
1647
1669
  ListedExecutionTypeDef = TypedDict(
1648
1670
  "ListedExecutionTypeDef",
1649
1671
  {
@@ -1722,7 +1744,6 @@ UpdateServerRequestRequestTypeDef = TypedDict(
1722
1744
  "S3StorageOptions": NotRequired[S3StorageOptionsTypeDef],
1723
1745
  },
1724
1746
  )
1725
- WorkflowDetailsUnionTypeDef = Union[WorkflowDetailsTypeDef, WorkflowDetailsOutputTypeDef]
1726
1747
  DescribedExecutionTypeDef = TypedDict(
1727
1748
  "DescribedExecutionTypeDef",
1728
1749
  {
@@ -1754,7 +1775,7 @@ WorkflowStepTypeDef = TypedDict(
1754
1775
  "CopyStepDetails": NotRequired[CopyStepDetailsTypeDef],
1755
1776
  "CustomStepDetails": NotRequired[CustomStepDetailsTypeDef],
1756
1777
  "DeleteStepDetails": NotRequired[DeleteStepDetailsTypeDef],
1757
- "TagStepDetails": NotRequired[TagStepDetailsTypeDef],
1778
+ "TagStepDetails": NotRequired[TagStepDetailsUnionTypeDef],
1758
1779
  "DecryptStepDetails": NotRequired[DecryptStepDetailsTypeDef],
1759
1780
  },
1760
1781
  )
@@ -1806,7 +1827,7 @@ CreateWorkflowRequestRequestTypeDef = TypedDict(
1806
1827
  {
1807
1828
  "Steps": Sequence[WorkflowStepUnionTypeDef],
1808
1829
  "Description": NotRequired[str],
1809
- "OnExceptionSteps": NotRequired[Sequence[WorkflowStepUnionTypeDef]],
1830
+ "OnExceptionSteps": NotRequired[Sequence[WorkflowStepTypeDef]],
1810
1831
  "Tags": NotRequired[Sequence[TagTypeDef]],
1811
1832
  },
1812
1833
  )
@@ -2,4 +2,4 @@
2
2
  Source of truth for version.
3
3
  """
4
4
 
5
- __version__ = "1.35.0"
5
+ __version__ = "1.35.40"
@@ -22,9 +22,20 @@ Usage::
22
22
  ```
23
23
  """
24
24
 
25
+ import sys
26
+
25
27
  from botocore.waiter import Waiter
26
28
 
27
- from .type_defs import WaiterConfigTypeDef
29
+ from .type_defs import (
30
+ DescribeServerRequestServerOfflineWaitTypeDef,
31
+ DescribeServerRequestServerOnlineWaitTypeDef,
32
+ )
33
+
34
+ if sys.version_info >= (3, 12):
35
+ from typing import Unpack
36
+ else:
37
+ from typing_extensions import Unpack
38
+
28
39
 
29
40
  __all__ = ("ServerOfflineWaiter", "ServerOnlineWaiter")
30
41
 
@@ -35,7 +46,7 @@ class ServerOfflineWaiter(Waiter):
35
46
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
36
47
  """
37
48
 
38
- def wait(self, *, ServerId: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
49
+ def wait(self, **kwargs: Unpack[DescribeServerRequestServerOfflineWaitTypeDef]) -> None:
39
50
  """
40
51
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOffline.wait)
41
52
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
@@ -48,7 +59,7 @@ class ServerOnlineWaiter(Waiter):
48
59
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
49
60
  """
50
61
 
51
- def wait(self, *, ServerId: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
62
+ def wait(self, **kwargs: Unpack[DescribeServerRequestServerOnlineWaitTypeDef]) -> None:
52
63
  """
53
64
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOnline.wait)
54
65
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
@@ -22,9 +22,19 @@ Usage::
22
22
  ```
23
23
  """
24
24
 
25
+ import sys
26
+
25
27
  from botocore.waiter import Waiter
26
28
 
27
- from .type_defs import WaiterConfigTypeDef
29
+ from .type_defs import (
30
+ DescribeServerRequestServerOfflineWaitTypeDef,
31
+ DescribeServerRequestServerOnlineWaitTypeDef,
32
+ )
33
+
34
+ if sys.version_info >= (3, 12):
35
+ from typing import Unpack
36
+ else:
37
+ from typing_extensions import Unpack
28
38
 
29
39
  __all__ = ("ServerOfflineWaiter", "ServerOnlineWaiter")
30
40
 
@@ -33,8 +43,7 @@ class ServerOfflineWaiter(Waiter):
33
43
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOffline)
34
44
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
35
45
  """
36
-
37
- def wait(self, *, ServerId: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
46
+ def wait(self, **kwargs: Unpack[DescribeServerRequestServerOfflineWaitTypeDef]) -> None:
38
47
  """
39
48
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOffline.wait)
40
49
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
@@ -45,8 +54,7 @@ class ServerOnlineWaiter(Waiter):
45
54
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOnline)
46
55
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
47
56
  """
48
-
49
- def wait(self, *, ServerId: str, WaiterConfig: WaiterConfigTypeDef = ...) -> None:
57
+ def wait(self, **kwargs: Unpack[DescribeServerRequestServerOnlineWaitTypeDef]) -> None:
50
58
  """
51
59
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Waiter.ServerOnline.wait)
52
60
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mypy-boto3-transfer
3
- Version: 1.35.0
4
- Summary: Type annotations for boto3.Transfer 1.35.0 service generated with mypy-boto3-builder 7.26.0
3
+ Version: 1.35.40
4
+ Summary: Type annotations for boto3.Transfer 1.35.40 service generated with mypy-boto3-builder 8.1.2
5
5
  Home-page: https://github.com/youtype/mypy_boto3_builder
6
6
  Author: Vlad Emelianov
7
7
  Author-email: vlad.emelianov.nz@gmail.com
@@ -43,7 +43,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
43
43
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
44
44
 
45
45
  Type annotations for
46
- [boto3.Transfer 1.35.0](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer)
46
+ [boto3.Transfer 1.35.40](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer)
47
47
  service compatible with [VSCode](https://code.visualstudio.com/),
48
48
  [PyCharm](https://www.jetbrains.com/pycharm/),
49
49
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -52,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
52
52
  [pyright](https://github.com/microsoft/pyright) and other tools.
53
53
 
54
54
  Generated by
55
- [mypy-boto3-builder 7.26.0](https://github.com/youtype/mypy_boto3_builder).
55
+ [mypy-boto3-builder 8.1.2](https://github.com/youtype/mypy_boto3_builder).
56
56
 
57
57
  More information can be found on
58
58
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -231,7 +231,7 @@ should work.
231
231
  - Install `boto3-stubs[transfer]` in your environment:
232
232
 
233
233
  ```bash
234
- python -m pip install 'boto3-stubs[transfer]'`
234
+ python -m pip install 'boto3-stubs[transfer]'
235
235
  ```
236
236
 
237
237
  Type checking should now work. No explicit type annotations required, write
@@ -248,7 +248,7 @@ your `boto3` code as usual.
248
248
  python -m pip install 'boto3-stubs[transfer]'
249
249
  ```
250
250
 
251
- Optionally, you can install `boto3-stubs` to `typings` folder.
251
+ Optionally, you can install `boto3-stubs` to `typings` directory.
252
252
 
253
253
  Type checking should now work. No explicit type annotations required, write
254
254
  your `boto3` code as usual.
@@ -290,6 +290,7 @@ from mypy_boto3_transfer.paginator import (
290
290
  ListCertificatesPaginator,
291
291
  ListConnectorsPaginator,
292
292
  ListExecutionsPaginator,
293
+ ListFileTransferResultsPaginator,
293
294
  ListProfilesPaginator,
294
295
  ListSecurityPoliciesPaginator,
295
296
  ListServersPaginator,
@@ -307,6 +308,9 @@ list_agreements_paginator: ListAgreementsPaginator = client.get_paginator("list_
307
308
  list_certificates_paginator: ListCertificatesPaginator = client.get_paginator("list_certificates")
308
309
  list_connectors_paginator: ListConnectorsPaginator = client.get_paginator("list_connectors")
309
310
  list_executions_paginator: ListExecutionsPaginator = client.get_paginator("list_executions")
311
+ list_file_transfer_results_paginator: ListFileTransferResultsPaginator = client.get_paginator(
312
+ "list_file_transfer_results"
313
+ )
310
314
  list_profiles_paginator: ListProfilesPaginator = client.get_paginator("list_profiles")
311
315
  list_security_policies_paginator: ListSecurityPoliciesPaginator = client.get_paginator(
312
316
  "list_security_policies"
@@ -388,8 +392,7 @@ updates. It delivers drop-in type annotations for you and makes sure that:
388
392
  annotations extracted from `botocore` schemas.
389
393
  - Type annotations include up-to-date documentation.
390
394
  - Link to documentation is provided for every method.
391
- - Code is processed by [black](https://github.com/psf/black) and
392
- [isort](https://github.com/PyCQA/isort) for readability.
395
+ - Code is processed by [ruff](https://docs.astral.sh/ruff/) for readability.
393
396
 
394
397
  <a id="what's-new"></a>
395
398
 
@@ -0,0 +1,20 @@
1
+ mypy_boto3_transfer/__init__.py,sha256=AvWuoEe_VwUG2Lc_jlU8-JhQR8HS-yDYIL5k9IgbNWU,3103
2
+ mypy_boto3_transfer/__init__.pyi,sha256=fX2mOqotaUXo09O-TT5OA4YDDhbGs0p-_NDBY5-ORFQ,3102
3
+ mypy_boto3_transfer/__main__.py,sha256=CspYJE2EjnB7fp0Nlo38_cuOzdYacBcsi_6HAf571NQ,922
4
+ mypy_boto3_transfer/client.py,sha256=ygGqsUuGyFkSOAgvTUPmpfBpBsB8jwP-bmzZIlrcgd4,47755
5
+ mypy_boto3_transfer/client.pyi,sha256=W3O_mDrh8QoApmtvs6_-cHPmogPn_SQgLth0wp2DBsE,47751
6
+ mypy_boto3_transfer/literals.py,sha256=6jeQHRoUQVkq3PtFsKIW2e-nDDFNd_TkgTUQXMhemU0,13724
7
+ mypy_boto3_transfer/literals.pyi,sha256=xJXEvwyQte6XFcZjqaXsrutr-5Ra4EiEI326V22LiYg,13722
8
+ mypy_boto3_transfer/paginator.py,sha256=KvQYaygeJw_5UZnj21uEVErb4OK6yXvZWF1ZwBPl4yI,14204
9
+ mypy_boto3_transfer/paginator.pyi,sha256=tNIrNjmNouFVlnqoO_-ubLh0KmMC1tY-zcu-hBbfaUc,14177
10
+ mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_transfer/type_defs.py,sha256=Zqs_ry3KGL7omtVq0SQNDkJ4_SY2mFpJKrpKWE7m5BI,56041
12
+ mypy_boto3_transfer/type_defs.pyi,sha256=rZV527V9lkBbf5m42bH307yphpwpWesrx0avr68UjHA,56040
13
+ mypy_boto3_transfer/version.py,sha256=rG265rzdrfkNUQZjcoWtWrVljK6BV6jPWFYv4ZHN4wc,62
14
+ mypy_boto3_transfer/waiter.py,sha256=eLTSOZdmX7TOE-DFCqMZz25-BL1oeKSIHUvJjD7Orb8,2474
15
+ mypy_boto3_transfer/waiter.pyi,sha256=hzqEg3leEE91u8U2H1aFlDD6vbP9n41BbQcFOd6UQ8U,2469
16
+ mypy_boto3_transfer-1.35.40.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
+ mypy_boto3_transfer-1.35.40.dist-info/METADATA,sha256=w4SISkw_iY1ulaAbbtRgBDlcd17nI2a5ql0PlWwSnlA,14796
18
+ mypy_boto3_transfer-1.35.40.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
19
+ mypy_boto3_transfer-1.35.40.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
20
+ mypy_boto3_transfer-1.35.40.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.2.0)
2
+ Generator: setuptools (75.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,20 +0,0 @@
1
- mypy_boto3_transfer/__init__.py,sha256=7s1QISzwzsnzQHCfQvKCVBlPmRIKBl0DKPIWKK0x-cw,2854
2
- mypy_boto3_transfer/__init__.pyi,sha256=7s1QISzwzsnzQHCfQvKCVBlPmRIKBl0DKPIWKK0x-cw,2854
3
- mypy_boto3_transfer/__main__.py,sha256=x-8eErfxx6j_rvVrcBNaSPzRtPTpFm4iO9qJ9NWMCL4,920
4
- mypy_boto3_transfer/client.py,sha256=XeP5NgpkMIo3xric9lU_O0f5GgG2zsoU1CXyuvHv6C0,48194
5
- mypy_boto3_transfer/client.pyi,sha256=PwrtHGqk6Ta5tN8-jqmC21yEOKHOZccV-NgMZEYCkr8,48191
6
- mypy_boto3_transfer/literals.py,sha256=1gphDju5usgWGd4pQgrsKS77Iz3JT3Wpu9Pyjew_slI,13408
7
- mypy_boto3_transfer/literals.pyi,sha256=1gphDju5usgWGd4pQgrsKS77Iz3JT3Wpu9Pyjew_slI,13408
8
- mypy_boto3_transfer/paginator.py,sha256=t0lcr_Cx89mq1B6Ml9qaudTxB9i0E4v-I1BR9J371XI,12188
9
- mypy_boto3_transfer/paginator.pyi,sha256=1PAa9ndIE9WPuNuDlG9f2J4qvmZ9cE2uZfkbGtqUKPU,12176
10
- mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_transfer/type_defs.py,sha256=XvseJLIepbUfV96qlOOtbbIcWAgqj9XOhbOow5wtK9U,55403
12
- mypy_boto3_transfer/type_defs.pyi,sha256=XvseJLIepbUfV96qlOOtbbIcWAgqj9XOhbOow5wtK9U,55403
13
- mypy_boto3_transfer/version.py,sha256=LGeN8DOPs0tRcJcxZVxCtqSh0iyZT7lFggGF3KkSqhA,61
14
- mypy_boto3_transfer/waiter.py,sha256=i3jL0DsL0ra-yuCGruMYY0dXXefP37JKKjqZy0PV3as,2255
15
- mypy_boto3_transfer/waiter.pyi,sha256=8L-Oj9DRLKTmRMfdRCfBzyRYmZXa5l-xItn_JGdpwoc,2253
16
- mypy_boto3_transfer-1.35.0.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
- mypy_boto3_transfer-1.35.0.dist-info/METADATA,sha256=k1Pfdqx6_ga-zDOnKFqhCO4WibLPcA9OmRWDOvxVuag,14672
18
- mypy_boto3_transfer-1.35.0.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
19
- mypy_boto3_transfer-1.35.0.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
20
- mypy_boto3_transfer-1.35.0.dist-info/RECORD,,