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.
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for transfer service type definitions.
3
3
 
4
- [Open documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/type_defs/)
4
+ [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/type_defs/)
5
5
 
6
6
  Usage::
7
7
 
@@ -11,12 +11,14 @@ Usage::
11
11
  data: As2ConnectorConfigTypeDef = ...
12
12
  ```
13
13
 
14
- Copyright 2024 Vlad Emelianov
14
+ Copyright 2025 Vlad Emelianov
15
15
  """
16
16
 
17
+ from __future__ import annotations
18
+
17
19
  import sys
18
20
  from datetime import datetime
19
- from typing import IO, Any, Dict, List, Sequence, Union
21
+ from typing import IO, Any, Union
20
22
 
21
23
  from botocore.response import StreamingBody
22
24
 
@@ -55,6 +57,12 @@ from .literals import (
55
57
  WorkflowStepTypeType,
56
58
  )
57
59
 
60
+ if sys.version_info >= (3, 9):
61
+ from builtins import dict as Dict
62
+ from builtins import list as List
63
+ from collections.abc import Sequence
64
+ else:
65
+ from typing import Dict, List, Sequence
58
66
  if sys.version_info >= (3, 12):
59
67
  from typing import Literal, NotRequired, TypedDict
60
68
  else:
@@ -113,8 +121,7 @@ __all__ = (
113
121
  "DescribeSecurityPolicyRequestRequestTypeDef",
114
122
  "DescribeSecurityPolicyResponseTypeDef",
115
123
  "DescribeServerRequestRequestTypeDef",
116
- "DescribeServerRequestServerOfflineWaitTypeDef",
117
- "DescribeServerRequestServerOnlineWaitTypeDef",
124
+ "DescribeServerRequestWaitTypeDef",
118
125
  "DescribeServerResponseTypeDef",
119
126
  "DescribeUserRequestRequestTypeDef",
120
127
  "DescribeUserResponseTypeDef",
@@ -157,45 +164,45 @@ __all__ = (
157
164
  "ImportSshPublicKeyRequestRequestTypeDef",
158
165
  "ImportSshPublicKeyResponseTypeDef",
159
166
  "InputFileLocationTypeDef",
160
- "ListAccessesRequestListAccessesPaginateTypeDef",
167
+ "ListAccessesRequestPaginateTypeDef",
161
168
  "ListAccessesRequestRequestTypeDef",
162
169
  "ListAccessesResponseTypeDef",
163
- "ListAgreementsRequestListAgreementsPaginateTypeDef",
170
+ "ListAgreementsRequestPaginateTypeDef",
164
171
  "ListAgreementsRequestRequestTypeDef",
165
172
  "ListAgreementsResponseTypeDef",
166
- "ListCertificatesRequestListCertificatesPaginateTypeDef",
173
+ "ListCertificatesRequestPaginateTypeDef",
167
174
  "ListCertificatesRequestRequestTypeDef",
168
175
  "ListCertificatesResponseTypeDef",
169
- "ListConnectorsRequestListConnectorsPaginateTypeDef",
176
+ "ListConnectorsRequestPaginateTypeDef",
170
177
  "ListConnectorsRequestRequestTypeDef",
171
178
  "ListConnectorsResponseTypeDef",
172
- "ListExecutionsRequestListExecutionsPaginateTypeDef",
179
+ "ListExecutionsRequestPaginateTypeDef",
173
180
  "ListExecutionsRequestRequestTypeDef",
174
181
  "ListExecutionsResponseTypeDef",
175
- "ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef",
182
+ "ListFileTransferResultsRequestPaginateTypeDef",
176
183
  "ListFileTransferResultsRequestRequestTypeDef",
177
184
  "ListFileTransferResultsResponseTypeDef",
178
185
  "ListHostKeysRequestRequestTypeDef",
179
186
  "ListHostKeysResponseTypeDef",
180
- "ListProfilesRequestListProfilesPaginateTypeDef",
187
+ "ListProfilesRequestPaginateTypeDef",
181
188
  "ListProfilesRequestRequestTypeDef",
182
189
  "ListProfilesResponseTypeDef",
183
- "ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef",
190
+ "ListSecurityPoliciesRequestPaginateTypeDef",
184
191
  "ListSecurityPoliciesRequestRequestTypeDef",
185
192
  "ListSecurityPoliciesResponseTypeDef",
186
- "ListServersRequestListServersPaginateTypeDef",
193
+ "ListServersRequestPaginateTypeDef",
187
194
  "ListServersRequestRequestTypeDef",
188
195
  "ListServersResponseTypeDef",
189
- "ListTagsForResourceRequestListTagsForResourcePaginateTypeDef",
196
+ "ListTagsForResourceRequestPaginateTypeDef",
190
197
  "ListTagsForResourceRequestRequestTypeDef",
191
198
  "ListTagsForResourceResponseTypeDef",
192
- "ListUsersRequestListUsersPaginateTypeDef",
199
+ "ListUsersRequestPaginateTypeDef",
193
200
  "ListUsersRequestRequestTypeDef",
194
201
  "ListUsersResponseTypeDef",
195
- "ListWebAppsRequestListWebAppsPaginateTypeDef",
202
+ "ListWebAppsRequestPaginateTypeDef",
196
203
  "ListWebAppsRequestRequestTypeDef",
197
204
  "ListWebAppsResponseTypeDef",
198
- "ListWorkflowsRequestListWorkflowsPaginateTypeDef",
205
+ "ListWorkflowsRequestPaginateTypeDef",
199
206
  "ListWorkflowsRequestRequestTypeDef",
200
207
  "ListWorkflowsResponseTypeDef",
201
208
  "ListedAccessTypeDef",
@@ -1054,11 +1061,7 @@ class DescribeSecurityPolicyResponseTypeDef(TypedDict):
1054
1061
  SecurityPolicy: DescribedSecurityPolicyTypeDef
1055
1062
  ResponseMetadata: ResponseMetadataTypeDef
1056
1063
 
1057
- class DescribeServerRequestServerOfflineWaitTypeDef(TypedDict):
1058
- ServerId: str
1059
- WaiterConfig: NotRequired[WaiterConfigTypeDef]
1060
-
1061
- class DescribeServerRequestServerOnlineWaitTypeDef(TypedDict):
1064
+ class DescribeServerRequestWaitTypeDef(TypedDict):
1062
1065
  ServerId: str
1063
1066
  WaiterConfig: NotRequired[WaiterConfigTypeDef]
1064
1067
 
@@ -1134,51 +1137,51 @@ class InputFileLocationTypeDef(TypedDict):
1134
1137
  S3FileLocation: NotRequired[S3InputFileLocationTypeDef]
1135
1138
  EfsFileLocation: NotRequired[EfsFileLocationTypeDef]
1136
1139
 
1137
- class ListAccessesRequestListAccessesPaginateTypeDef(TypedDict):
1140
+ class ListAccessesRequestPaginateTypeDef(TypedDict):
1138
1141
  ServerId: str
1139
1142
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1140
1143
 
1141
- class ListAgreementsRequestListAgreementsPaginateTypeDef(TypedDict):
1144
+ class ListAgreementsRequestPaginateTypeDef(TypedDict):
1142
1145
  ServerId: str
1143
1146
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1144
1147
 
1145
- class ListCertificatesRequestListCertificatesPaginateTypeDef(TypedDict):
1148
+ class ListCertificatesRequestPaginateTypeDef(TypedDict):
1146
1149
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1147
1150
 
1148
- class ListConnectorsRequestListConnectorsPaginateTypeDef(TypedDict):
1151
+ class ListConnectorsRequestPaginateTypeDef(TypedDict):
1149
1152
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1150
1153
 
1151
- class ListExecutionsRequestListExecutionsPaginateTypeDef(TypedDict):
1154
+ class ListExecutionsRequestPaginateTypeDef(TypedDict):
1152
1155
  WorkflowId: str
1153
1156
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1154
1157
 
1155
- class ListFileTransferResultsRequestListFileTransferResultsPaginateTypeDef(TypedDict):
1158
+ class ListFileTransferResultsRequestPaginateTypeDef(TypedDict):
1156
1159
  ConnectorId: str
1157
1160
  TransferId: str
1158
1161
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1159
1162
 
1160
- class ListProfilesRequestListProfilesPaginateTypeDef(TypedDict):
1163
+ class ListProfilesRequestPaginateTypeDef(TypedDict):
1161
1164
  ProfileType: NotRequired[ProfileTypeType]
1162
1165
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1163
1166
 
1164
- class ListSecurityPoliciesRequestListSecurityPoliciesPaginateTypeDef(TypedDict):
1167
+ class ListSecurityPoliciesRequestPaginateTypeDef(TypedDict):
1165
1168
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1166
1169
 
1167
- class ListServersRequestListServersPaginateTypeDef(TypedDict):
1170
+ class ListServersRequestPaginateTypeDef(TypedDict):
1168
1171
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1169
1172
 
1170
- class ListTagsForResourceRequestListTagsForResourcePaginateTypeDef(TypedDict):
1173
+ class ListTagsForResourceRequestPaginateTypeDef(TypedDict):
1171
1174
  Arn: str
1172
1175
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1173
1176
 
1174
- class ListUsersRequestListUsersPaginateTypeDef(TypedDict):
1177
+ class ListUsersRequestPaginateTypeDef(TypedDict):
1175
1178
  ServerId: str
1176
1179
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1177
1180
 
1178
- class ListWebAppsRequestListWebAppsPaginateTypeDef(TypedDict):
1181
+ class ListWebAppsRequestPaginateTypeDef(TypedDict):
1179
1182
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1180
1183
 
1181
- class ListWorkflowsRequestListWorkflowsPaginateTypeDef(TypedDict):
1184
+ class ListWorkflowsRequestPaginateTypeDef(TypedDict):
1182
1185
  PaginationConfig: NotRequired[PaginatorConfigTypeDef]
1183
1186
 
1184
1187
  class ListAccessesResponseTypeDef(TypedDict):
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Source of truth for version.
3
3
 
4
- Copyright 2024 Vlad Emelianov
4
+ Copyright 2025 Vlad Emelianov
5
5
  """
6
6
 
7
- __version__ = "1.35.84"
7
+ __version__ = "1.36.0"
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for transfer service client waiters.
3
3
 
4
- [Open documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/)
4
+ [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/)
5
5
 
6
6
  Usage::
7
7
 
@@ -21,17 +21,16 @@ Usage::
21
21
  server_online_waiter: ServerOnlineWaiter = client.get_waiter("server_online")
22
22
  ```
23
23
 
24
- Copyright 2024 Vlad Emelianov
24
+ Copyright 2025 Vlad Emelianov
25
25
  """
26
26
 
27
+ from __future__ import annotations
28
+
27
29
  import sys
28
30
 
29
31
  from botocore.waiter import Waiter
30
32
 
31
- from .type_defs import (
32
- DescribeServerRequestServerOfflineWaitTypeDef,
33
- DescribeServerRequestServerOnlineWaitTypeDef,
34
- )
33
+ from .type_defs import DescribeServerRequestWaitTypeDef
35
34
 
36
35
  if sys.version_info >= (3, 12):
37
36
  from typing import Unpack
@@ -48,7 +47,9 @@ class ServerOfflineWaiter(Waiter):
48
47
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
49
48
  """
50
49
 
51
- def wait(self, **kwargs: Unpack[DescribeServerRequestServerOfflineWaitTypeDef]) -> None:
50
+ def wait( # type: ignore[override]
51
+ self, **kwargs: Unpack[DescribeServerRequestWaitTypeDef]
52
+ ) -> None:
52
53
  """
53
54
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOffline.html#Transfer.Waiter.ServerOffline.wait)
54
55
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
@@ -61,7 +62,9 @@ class ServerOnlineWaiter(Waiter):
61
62
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
62
63
  """
63
64
 
64
- def wait(self, **kwargs: Unpack[DescribeServerRequestServerOnlineWaitTypeDef]) -> None:
65
+ def wait( # type: ignore[override]
66
+ self, **kwargs: Unpack[DescribeServerRequestWaitTypeDef]
67
+ ) -> None:
65
68
  """
66
69
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOnline.html#Transfer.Waiter.ServerOnline.wait)
67
70
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
@@ -1,7 +1,7 @@
1
1
  """
2
2
  Type annotations for transfer service client waiters.
3
3
 
4
- [Open documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/)
4
+ [Documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/)
5
5
 
6
6
  Usage::
7
7
 
@@ -21,17 +21,16 @@ Usage::
21
21
  server_online_waiter: ServerOnlineWaiter = client.get_waiter("server_online")
22
22
  ```
23
23
 
24
- Copyright 2024 Vlad Emelianov
24
+ Copyright 2025 Vlad Emelianov
25
25
  """
26
26
 
27
+ from __future__ import annotations
28
+
27
29
  import sys
28
30
 
29
31
  from botocore.waiter import Waiter
30
32
 
31
- from .type_defs import (
32
- DescribeServerRequestServerOfflineWaitTypeDef,
33
- DescribeServerRequestServerOnlineWaitTypeDef,
34
- )
33
+ from .type_defs import DescribeServerRequestWaitTypeDef
35
34
 
36
35
  if sys.version_info >= (3, 12):
37
36
  from typing import Unpack
@@ -45,7 +44,9 @@ class ServerOfflineWaiter(Waiter):
45
44
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOffline.html#Transfer.Waiter.ServerOffline)
46
45
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
47
46
  """
48
- def wait(self, **kwargs: Unpack[DescribeServerRequestServerOfflineWaitTypeDef]) -> None:
47
+ def wait( # type: ignore[override]
48
+ self, **kwargs: Unpack[DescribeServerRequestWaitTypeDef]
49
+ ) -> None:
49
50
  """
50
51
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOffline.html#Transfer.Waiter.ServerOffline.wait)
51
52
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serverofflinewaiter)
@@ -56,7 +57,9 @@ class ServerOnlineWaiter(Waiter):
56
57
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOnline.html#Transfer.Waiter.ServerOnline)
57
58
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
58
59
  """
59
- def wait(self, **kwargs: Unpack[DescribeServerRequestServerOnlineWaitTypeDef]) -> None:
60
+ def wait( # type: ignore[override]
61
+ self, **kwargs: Unpack[DescribeServerRequestWaitTypeDef]
62
+ ) -> None:
60
63
  """
61
64
  [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer/waiter/ServerOnline.html#Transfer.Waiter.ServerOnline.wait)
62
65
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/waiters/#serveronlinewaiter)
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 Vlad Emelianov
3
+ Copyright (c) 2025 Vlad Emelianov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,7 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: mypy-boto3-transfer
3
- Version: 1.35.84
4
- Summary: Type annotations for boto3 Transfer 1.35.84 service generated with mypy-boto3-builder 8.6.4
3
+ Version: 1.36.0
4
+ Summary: Type annotations for boto3 Transfer 1.36.0 service generated with mypy-boto3-builder 8.8.0
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
@@ -30,7 +30,19 @@ Classifier: Typing :: Stubs Only
30
30
  Requires-Python: >=3.8
31
31
  Description-Content-Type: text/markdown
32
32
  License-File: LICENSE
33
- Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
33
+ Requires-Dist: typing-extensions; python_version < "3.12"
34
+ Dynamic: author
35
+ Dynamic: author-email
36
+ Dynamic: classifier
37
+ Dynamic: description
38
+ Dynamic: description-content-type
39
+ Dynamic: home-page
40
+ Dynamic: keywords
41
+ Dynamic: license
42
+ Dynamic: project-url
43
+ Dynamic: requires-dist
44
+ Dynamic: requires-python
45
+ Dynamic: summary
34
46
 
35
47
  <a id="mypy-boto3-transfer"></a>
36
48
 
@@ -43,7 +55,7 @@ Requires-Dist: typing-extensions>=4.1.0; python_version < "3.12"
43
55
 
44
56
  ![boto3.typed](https://github.com/youtype/mypy_boto3_builder/raw/main/logo.png)
45
57
 
46
- Type annotations for [boto3 Transfer 1.35.84](https://pypi.org/project/boto3/)
58
+ Type annotations for [boto3 Transfer 1.36.0](https://pypi.org/project/boto3/)
47
59
  compatible with [VSCode](https://code.visualstudio.com/),
48
60
  [PyCharm](https://www.jetbrains.com/pycharm/),
49
61
  [Emacs](https://www.gnu.org/software/emacs/),
@@ -52,7 +64,7 @@ compatible with [VSCode](https://code.visualstudio.com/),
52
64
  [pyright](https://github.com/microsoft/pyright) and other tools.
53
65
 
54
66
  Generated with
55
- [mypy-boto3-builder 8.6.4](https://github.com/youtype/mypy_boto3_builder).
67
+ [mypy-boto3-builder 8.8.0](https://github.com/youtype/mypy_boto3_builder).
56
68
 
57
69
  More information can be found on
58
70
  [boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
@@ -106,8 +118,8 @@ You can generate type annotations for `boto3` package locally with
106
118
  isolation.
107
119
 
108
120
  1. Run mypy-boto3-builder in your package root directory:
109
- `uvx --with 'boto3==1.35.84' mypy_boto3_builder`
110
- 2. Select `boto3 (legacy boto3-stubs)` AWS SDK.
121
+ `uvx --with 'boto3==1.36.0' mypy_boto3_builder`
122
+ 2. Select `boto3-stubs` AWS SDK.
111
123
  3. Add `Transfer` service.
112
124
  4. Use provided commands to install generated packages.
113
125
 
@@ -0,0 +1,20 @@
1
+ mypy_boto3_transfer/__init__.py,sha256=N91vG7bSAGmazWoBJIK7t0PobN-8MSvvi4bq4yIelCQ,3308
2
+ mypy_boto3_transfer/__init__.pyi,sha256=k2DRgoSYJrkvlgVH8mxXey9y29AoH8JOZcR1W49gYxg,3307
3
+ mypy_boto3_transfer/__main__.py,sha256=C77kHFucLxsx084OMSOiRI9vES1upKgbSUE-4-09ZtU,984
4
+ mypy_boto3_transfer/client.py,sha256=x9Df2JHqswfp3vTbV0lNtEo6zl1me66ybL8o89_HUYU,53775
5
+ mypy_boto3_transfer/client.pyi,sha256=byoHMrgzZ7ghbe3xAH9eLrT2Ddq_E07tzNaXU9a5-DE,53772
6
+ mypy_boto3_transfer/literals.py,sha256=i5KLa1auSw8tsz-45pIl9ingGzz9CUFIJzXm87M1sjU,14499
7
+ mypy_boto3_transfer/literals.pyi,sha256=i8c5Uo2U1E4-3a-VcMZgNHM1h21BwQIxLWt-qCrAlW4,14497
8
+ mypy_boto3_transfer/paginator.py,sha256=grJWOh0usUlUtQ1PShEXY6jPptusGfvCbOPvqBGKL5w,18231
9
+ mypy_boto3_transfer/paginator.pyi,sha256=LoGvioMSAwhBEn5l5m924RaAI6Df8K2u5CEnvTvdkk4,18191
10
+ mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ mypy_boto3_transfer/type_defs.py,sha256=2YdC34ygMODDL80Cq872uUE5AHt81GIgPmfSynk9IbQ,48560
12
+ mypy_boto3_transfer/type_defs.pyi,sha256=rSl-Mr2fgo1DZmjGxJofiLKqgsIRgOdogVUJTUAdAmI,48350
13
+ mypy_boto3_transfer/version.py,sha256=XqBLww9Ajk9GRr5oc1Ak2757Fsir4zxoRCWswSKh8Ro,92
14
+ mypy_boto3_transfer/waiter.py,sha256=yGPom15Q80rRPWl29s8qpF2N4NnSFwks8tJ7_W4ikf4,2601
15
+ mypy_boto3_transfer/waiter.pyi,sha256=oAEaU_GRFe23zFUiSF_x1-0zy8_HopckzKRCIvbCT4Y,2596
16
+ mypy_boto3_transfer-1.36.0.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
17
+ mypy_boto3_transfer-1.36.0.dist-info/METADATA,sha256=wOsPZIFPrMwejKvcZkrE3-o8EdmGRQU-NGbkdL_i8bs,17035
18
+ mypy_boto3_transfer-1.36.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
19
+ mypy_boto3_transfer-1.36.0.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
20
+ mypy_boto3_transfer-1.36.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (75.8.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=okE0iW5bzWS4WtCUwdU09Kg7k1g-prkNe3VstU92ebs,3308
2
- mypy_boto3_transfer/__init__.pyi,sha256=5zGYXb2iTUKG74GUurE3ChKmB_FCEI9CJGFDicMOGmk,3307
3
- mypy_boto3_transfer/__main__.py,sha256=PmDeHHqLZNkP87FZxkthYy_0K56OBCz4mWpAkgcWICY,953
4
- mypy_boto3_transfer/client.py,sha256=saAqjLtX1sYIoyyKulyleax8unBXcq1XSdx5aWRNCUI,53024
5
- mypy_boto3_transfer/client.pyi,sha256=LEI39Js0thA_0qpA5TNENFHAxG96yT2nN6KluwsONY0,53020
6
- mypy_boto3_transfer/literals.py,sha256=_ciH9yR9vQWIXBy2ef9G0FbTfP_YBR1n-NYFOltrftc,14555
7
- mypy_boto3_transfer/literals.pyi,sha256=wYPDCNEaRiiMLGeZobFer5fYw7n2uEzkcnaF0Q9bDYg,14553
8
- mypy_boto3_transfer/paginator.py,sha256=IrNNvdakij4ylmuseK3x7RW3qncKO-5bxHxFJGy8DUk,15945
9
- mypy_boto3_transfer/paginator.pyi,sha256=4bmqnUboFj3WUa69YsbHgnehWaY0kPNrFe7ukpuRBzw,15916
10
- mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- mypy_boto3_transfer/type_defs.py,sha256=0wALrEdQEg6uw8AV0cXmeTC-GCtrtfFs5QjxtTwya_s,48941
12
- mypy_boto3_transfer/type_defs.pyi,sha256=dgJc1Hz4FG86CyriWRfOfrIR5IeKeYbvN5CEkGCXSCQ,48730
13
- mypy_boto3_transfer/version.py,sha256=vDJjYq_Ebvy9WozQ8tBQcKjuUQrg_uGQcZsc1LyYv-E,93
14
- mypy_boto3_transfer/waiter.py,sha256=CqbcOsdjkpk_ft8BRwRC3xxRI8eG-XiBurH-iEJtZZU,2587
15
- mypy_boto3_transfer/waiter.pyi,sha256=PrPrhwMiD5htR6QwZv18NmX1NjuHFmKPztX56XeThIA,2582
16
- mypy_boto3_transfer-1.35.84.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
17
- mypy_boto3_transfer-1.35.84.dist-info/METADATA,sha256=TbIrQvBnccPgW5jWdgKIsJc0IfGUX4UcUoeLQqtvyHU,16808
18
- mypy_boto3_transfer-1.35.84.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
19
- mypy_boto3_transfer-1.35.84.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
20
- mypy_boto3_transfer-1.35.84.dist-info/RECORD,,