mypy-boto3-transfer 1.37.29__py3-none-any.whl → 1.37.31__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/__main__.py +3 -3
- mypy_boto3_transfer/type_defs.py +15 -7
- mypy_boto3_transfer/type_defs.pyi +13 -6
- mypy_boto3_transfer/version.py +1 -1
- {mypy_boto3_transfer-1.37.29.dist-info → mypy_boto3_transfer-1.37.31.dist-info}/METADATA +4 -4
- {mypy_boto3_transfer-1.37.29.dist-info → mypy_boto3_transfer-1.37.31.dist-info}/RECORD +9 -9
- {mypy_boto3_transfer-1.37.29.dist-info → mypy_boto3_transfer-1.37.31.dist-info}/WHEEL +0 -0
- {mypy_boto3_transfer-1.37.29.dist-info → mypy_boto3_transfer-1.37.31.dist-info}/licenses/LICENSE +0 -0
- {mypy_boto3_transfer-1.37.29.dist-info → mypy_boto3_transfer-1.37.31.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/__main__.py
CHANGED
|
@@ -12,8 +12,8 @@ def print_info() -> None:
|
|
|
12
12
|
Print package info to stdout.
|
|
13
13
|
"""
|
|
14
14
|
sys.stdout.write(
|
|
15
|
-
"Type annotations for boto3 Transfer 1.37.
|
|
16
|
-
"Version: 1.37.
|
|
15
|
+
"Type annotations for boto3 Transfer 1.37.31\n"
|
|
16
|
+
"Version: 1.37.31\n"
|
|
17
17
|
"Builder version: 8.10.1\n"
|
|
18
18
|
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer//\n"
|
|
19
19
|
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#transfer\n"
|
|
@@ -26,7 +26,7 @@ def print_version() -> None:
|
|
|
26
26
|
"""
|
|
27
27
|
Print package version to stdout.
|
|
28
28
|
"""
|
|
29
|
-
sys.stdout.write("1.37.
|
|
29
|
+
sys.stdout.write("1.37.31\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_transfer/type_defs.py
CHANGED
|
@@ -239,6 +239,7 @@ __all__ = (
|
|
|
239
239
|
"SftpConnectorConfigOutputTypeDef",
|
|
240
240
|
"SftpConnectorConfigTypeDef",
|
|
241
241
|
"SftpConnectorConfigUnionTypeDef",
|
|
242
|
+
"SftpConnectorConnectionDetailsTypeDef",
|
|
242
243
|
"SshPublicKeyTypeDef",
|
|
243
244
|
"StartDirectoryListingRequestTypeDef",
|
|
244
245
|
"StartDirectoryListingResponseTypeDef",
|
|
@@ -528,6 +529,7 @@ class PosixProfileOutputTypeDef(TypedDict):
|
|
|
528
529
|
class SftpConnectorConfigOutputTypeDef(TypedDict):
|
|
529
530
|
UserSecretId: NotRequired[str]
|
|
530
531
|
TrustedHostKeys: NotRequired[List[str]]
|
|
532
|
+
MaxConcurrentConnections: NotRequired[int]
|
|
531
533
|
|
|
532
534
|
|
|
533
535
|
class LoggingConfigurationTypeDef(TypedDict):
|
|
@@ -820,6 +822,11 @@ class UserDetailsTypeDef(TypedDict):
|
|
|
820
822
|
class SftpConnectorConfigTypeDef(TypedDict):
|
|
821
823
|
UserSecretId: NotRequired[str]
|
|
822
824
|
TrustedHostKeys: NotRequired[Sequence[str]]
|
|
825
|
+
MaxConcurrentConnections: NotRequired[int]
|
|
826
|
+
|
|
827
|
+
|
|
828
|
+
class SftpConnectorConnectionDetailsTypeDef(TypedDict):
|
|
829
|
+
HostKey: NotRequired[str]
|
|
823
830
|
|
|
824
831
|
|
|
825
832
|
class StartDirectoryListingRequestTypeDef(TypedDict):
|
|
@@ -997,13 +1004,6 @@ class StartRemoteMoveResponseTypeDef(TypedDict):
|
|
|
997
1004
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
998
1005
|
|
|
999
1006
|
|
|
1000
|
-
class TestConnectionResponseTypeDef(TypedDict):
|
|
1001
|
-
ConnectorId: str
|
|
1002
|
-
Status: str
|
|
1003
|
-
StatusMessage: str
|
|
1004
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
1007
|
class TestIdentityProviderResponseTypeDef(TypedDict):
|
|
1008
1008
|
Response: str
|
|
1009
1009
|
StatusCode: int
|
|
@@ -1426,6 +1426,14 @@ SftpConnectorConfigUnionTypeDef = Union[
|
|
|
1426
1426
|
]
|
|
1427
1427
|
|
|
1428
1428
|
|
|
1429
|
+
class TestConnectionResponseTypeDef(TypedDict):
|
|
1430
|
+
ConnectorId: str
|
|
1431
|
+
Status: str
|
|
1432
|
+
StatusMessage: str
|
|
1433
|
+
SftpConnectionDetails: SftpConnectorConnectionDetailsTypeDef
|
|
1434
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1435
|
+
|
|
1436
|
+
|
|
1429
1437
|
class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
1430
1438
|
IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
|
|
1431
1439
|
|
|
@@ -238,6 +238,7 @@ __all__ = (
|
|
|
238
238
|
"SftpConnectorConfigOutputTypeDef",
|
|
239
239
|
"SftpConnectorConfigTypeDef",
|
|
240
240
|
"SftpConnectorConfigUnionTypeDef",
|
|
241
|
+
"SftpConnectorConnectionDetailsTypeDef",
|
|
241
242
|
"SshPublicKeyTypeDef",
|
|
242
243
|
"StartDirectoryListingRequestTypeDef",
|
|
243
244
|
"StartDirectoryListingResponseTypeDef",
|
|
@@ -485,6 +486,7 @@ class PosixProfileOutputTypeDef(TypedDict):
|
|
|
485
486
|
class SftpConnectorConfigOutputTypeDef(TypedDict):
|
|
486
487
|
UserSecretId: NotRequired[str]
|
|
487
488
|
TrustedHostKeys: NotRequired[List[str]]
|
|
489
|
+
MaxConcurrentConnections: NotRequired[int]
|
|
488
490
|
|
|
489
491
|
class LoggingConfigurationTypeDef(TypedDict):
|
|
490
492
|
LoggingRole: NotRequired[str]
|
|
@@ -733,6 +735,10 @@ class UserDetailsTypeDef(TypedDict):
|
|
|
733
735
|
class SftpConnectorConfigTypeDef(TypedDict):
|
|
734
736
|
UserSecretId: NotRequired[str]
|
|
735
737
|
TrustedHostKeys: NotRequired[Sequence[str]]
|
|
738
|
+
MaxConcurrentConnections: NotRequired[int]
|
|
739
|
+
|
|
740
|
+
class SftpConnectorConnectionDetailsTypeDef(TypedDict):
|
|
741
|
+
HostKey: NotRequired[str]
|
|
736
742
|
|
|
737
743
|
class StartDirectoryListingRequestTypeDef(TypedDict):
|
|
738
744
|
ConnectorId: str
|
|
@@ -877,12 +883,6 @@ class StartRemoteMoveResponseTypeDef(TypedDict):
|
|
|
877
883
|
MoveId: str
|
|
878
884
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
879
885
|
|
|
880
|
-
class TestConnectionResponseTypeDef(TypedDict):
|
|
881
|
-
ConnectorId: str
|
|
882
|
-
Status: str
|
|
883
|
-
StatusMessage: str
|
|
884
|
-
ResponseMetadata: ResponseMetadataTypeDef
|
|
885
|
-
|
|
886
886
|
class TestIdentityProviderResponseTypeDef(TypedDict):
|
|
887
887
|
Response: str
|
|
888
888
|
StatusCode: int
|
|
@@ -1242,6 +1242,13 @@ SftpConnectorConfigUnionTypeDef = Union[
|
|
|
1242
1242
|
SftpConnectorConfigTypeDef, SftpConnectorConfigOutputTypeDef
|
|
1243
1243
|
]
|
|
1244
1244
|
|
|
1245
|
+
class TestConnectionResponseTypeDef(TypedDict):
|
|
1246
|
+
ConnectorId: str
|
|
1247
|
+
Status: str
|
|
1248
|
+
StatusMessage: str
|
|
1249
|
+
SftpConnectionDetails: SftpConnectorConnectionDetailsTypeDef
|
|
1250
|
+
ResponseMetadata: ResponseMetadataTypeDef
|
|
1251
|
+
|
|
1245
1252
|
class UpdateWebAppIdentityProviderDetailsTypeDef(TypedDict):
|
|
1246
1253
|
IdentityCenterConfig: NotRequired[UpdateWebAppIdentityCenterConfigTypeDef]
|
|
1247
1254
|
|
mypy_boto3_transfer/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mypy-boto3-transfer
|
|
3
|
-
Version: 1.37.
|
|
4
|
-
Summary: Type annotations for boto3 Transfer 1.37.
|
|
3
|
+
Version: 1.37.31
|
|
4
|
+
Summary: Type annotations for boto3 Transfer 1.37.31 service generated with mypy-boto3-builder 8.10.1
|
|
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
|
|
@@ -56,7 +56,7 @@ Dynamic: summary
|
|
|
56
56
|
|
|
57
57
|

|
|
58
58
|
|
|
59
|
-
Type annotations for [boto3 Transfer 1.37.
|
|
59
|
+
Type annotations for [boto3 Transfer 1.37.31](https://pypi.org/project/boto3/)
|
|
60
60
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
61
61
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
62
62
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -119,7 +119,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
119
119
|
isolation.
|
|
120
120
|
|
|
121
121
|
1. Run mypy-boto3-builder in your package root directory:
|
|
122
|
-
`uvx --with 'boto3==1.37.
|
|
122
|
+
`uvx --with 'boto3==1.37.31' mypy-boto3-builder`
|
|
123
123
|
2. Select `boto3-stubs` AWS SDK.
|
|
124
124
|
3. Add `Transfer` service.
|
|
125
125
|
4. Use provided commands to install generated packages.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
mypy_boto3_transfer/__init__.py,sha256=t2pOUXo7W8TNe-jgA0-irsvTpRgDBu1c_-PGuwquyUI,3390
|
|
2
2
|
mypy_boto3_transfer/__init__.pyi,sha256=PQ_syhNHExDoYP9CvtCj7hbOZ04QncluE2HEqG8G3Jo,3389
|
|
3
|
-
mypy_boto3_transfer/__main__.py,sha256=
|
|
3
|
+
mypy_boto3_transfer/__main__.py,sha256=Fj8U4yswlsJoD3-un-qfjtOyADdJH3KNDJlQWYgIitE,988
|
|
4
4
|
mypy_boto3_transfer/client.py,sha256=6l0uSAVJ6BVdzPf1gv_asKcvpxuMbBxwBHNprQJrGaE,53932
|
|
5
5
|
mypy_boto3_transfer/client.pyi,sha256=NNnyI8PomDZglArhR_iQXKG452-10OUFeLlp8LN8zcc,53929
|
|
6
6
|
mypy_boto3_transfer/literals.py,sha256=qFZDXccG1a-dkfoH36zQ-9dPwfxDR1DEfqHRetmee7g,14616
|
|
@@ -8,13 +8,13 @@ mypy_boto3_transfer/literals.pyi,sha256=8GmN9OVcthZkiKYEc5CGJxr5NcrcSbPuHaHLxh-l
|
|
|
8
8
|
mypy_boto3_transfer/paginator.py,sha256=72CQVOP0TvWzPhB6wpEmSGeX8lM2gZMLsK10rxeMWBQ,18231
|
|
9
9
|
mypy_boto3_transfer/paginator.pyi,sha256=QqtzDdKz1xAfIYlPK0X_es6dnnfSbXw1fjqbdF3FFWQ,18191
|
|
10
10
|
mypy_boto3_transfer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
mypy_boto3_transfer/type_defs.py,sha256=
|
|
12
|
-
mypy_boto3_transfer/type_defs.pyi,sha256=
|
|
13
|
-
mypy_boto3_transfer/version.py,sha256=
|
|
11
|
+
mypy_boto3_transfer/type_defs.py,sha256=vldW370lTjyHIE_5sfgF09PhNas80d7CsI53pacLhEM,49958
|
|
12
|
+
mypy_boto3_transfer/type_defs.pyi,sha256=CCMlsvCatn5JAkYT3ZsuKQ7wQgywdslgJgtHBWCod4w,49736
|
|
13
|
+
mypy_boto3_transfer/version.py,sha256=tpSKRSXExi2a9Ikmxx3G_ABnatqCUReoCSgERv5OghI,93
|
|
14
14
|
mypy_boto3_transfer/waiter.py,sha256=2UKX-wTF6d41Ls7HSGO0mT1Kz30h40PCw7E09QCudSE,2645
|
|
15
15
|
mypy_boto3_transfer/waiter.pyi,sha256=B0g5zDjuMCEs0j-u_bw81lj6mCKn4MKqHA11MBppMUA,2640
|
|
16
|
-
mypy_boto3_transfer-1.37.
|
|
17
|
-
mypy_boto3_transfer-1.37.
|
|
18
|
-
mypy_boto3_transfer-1.37.
|
|
19
|
-
mypy_boto3_transfer-1.37.
|
|
20
|
-
mypy_boto3_transfer-1.37.
|
|
16
|
+
mypy_boto3_transfer-1.37.31.dist-info/licenses/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_transfer-1.37.31.dist-info/METADATA,sha256=cBdqBWXw2QY_zB2Yd0h_DcE9YatT3dlef19gEDS_yro,17175
|
|
18
|
+
mypy_boto3_transfer-1.37.31.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
19
|
+
mypy_boto3_transfer-1.37.31.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
+
mypy_boto3_transfer-1.37.31.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_transfer-1.37.29.dist-info → mypy_boto3_transfer-1.37.31.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{mypy_boto3_transfer-1.37.29.dist-info → mypy_boto3_transfer-1.37.31.dist-info}/top_level.txt
RENAMED
|
File without changes
|