mypy-boto3-transfer 1.36.0__py3-none-any.whl → 1.36.6__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 +26 -14
- mypy_boto3_transfer/type_defs.pyi +24 -13
- mypy_boto3_transfer/version.py +1 -1
- {mypy_boto3_transfer-1.36.0.dist-info → mypy_boto3_transfer-1.36.6.dist-info}/METADATA +4 -4
- {mypy_boto3_transfer-1.36.0.dist-info → mypy_boto3_transfer-1.36.6.dist-info}/RECORD +9 -9
- {mypy_boto3_transfer-1.36.0.dist-info → mypy_boto3_transfer-1.36.6.dist-info}/LICENSE +0 -0
- {mypy_boto3_transfer-1.36.0.dist-info → mypy_boto3_transfer-1.36.6.dist-info}/WHEEL +0 -0
- {mypy_boto3_transfer-1.36.0.dist-info → mypy_boto3_transfer-1.36.6.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.36.
|
|
16
|
-
"Version: 1.36.
|
|
15
|
+
"Type annotations for boto3 Transfer 1.36.6\n"
|
|
16
|
+
"Version: 1.36.6\n"
|
|
17
17
|
"Builder version: 8.8.0\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.36.
|
|
29
|
+
sys.stdout.write("1.36.6\n")
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
def main() -> None:
|
mypy_boto3_transfer/type_defs.py
CHANGED
|
@@ -90,6 +90,7 @@ __all__ = (
|
|
|
90
90
|
"CreateWebAppResponseTypeDef",
|
|
91
91
|
"CreateWorkflowRequestRequestTypeDef",
|
|
92
92
|
"CreateWorkflowResponseTypeDef",
|
|
93
|
+
"CustomDirectoriesTypeTypeDef",
|
|
93
94
|
"CustomStepDetailsTypeDef",
|
|
94
95
|
"DecryptStepDetailsTypeDef",
|
|
95
96
|
"DeleteAccessRequestRequestTypeDef",
|
|
@@ -332,6 +333,14 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
332
333
|
HostId: NotRequired[str]
|
|
333
334
|
|
|
334
335
|
|
|
336
|
+
class CustomDirectoriesTypeTypeDef(TypedDict):
|
|
337
|
+
FailedFilesDirectory: str
|
|
338
|
+
MdnFilesDirectory: str
|
|
339
|
+
PayloadFilesDirectory: str
|
|
340
|
+
StatusFilesDirectory: str
|
|
341
|
+
TemporaryFilesDirectory: str
|
|
342
|
+
|
|
343
|
+
|
|
335
344
|
class TagTypeDef(TypedDict):
|
|
336
345
|
Key: str
|
|
337
346
|
Value: str
|
|
@@ -842,19 +851,6 @@ class UntagResourceRequestRequestTypeDef(TypedDict):
|
|
|
842
851
|
TagKeys: Sequence[str]
|
|
843
852
|
|
|
844
853
|
|
|
845
|
-
class UpdateAgreementRequestRequestTypeDef(TypedDict):
|
|
846
|
-
AgreementId: str
|
|
847
|
-
ServerId: str
|
|
848
|
-
Description: NotRequired[str]
|
|
849
|
-
Status: NotRequired[AgreementStatusTypeType]
|
|
850
|
-
LocalProfileId: NotRequired[str]
|
|
851
|
-
PartnerProfileId: NotRequired[str]
|
|
852
|
-
BaseDirectory: NotRequired[str]
|
|
853
|
-
AccessRole: NotRequired[str]
|
|
854
|
-
PreserveFilename: NotRequired[PreserveFilenameTypeType]
|
|
855
|
-
EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
|
|
856
|
-
|
|
857
|
-
|
|
858
854
|
class UpdateHostKeyRequestRequestTypeDef(TypedDict):
|
|
859
855
|
ServerId: str
|
|
860
856
|
HostKeyId: str
|
|
@@ -1070,17 +1066,32 @@ class UpdateWebAppResponseTypeDef(TypedDict):
|
|
|
1070
1066
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
1071
1067
|
|
|
1072
1068
|
|
|
1069
|
+
class UpdateAgreementRequestRequestTypeDef(TypedDict):
|
|
1070
|
+
AgreementId: str
|
|
1071
|
+
ServerId: str
|
|
1072
|
+
Description: NotRequired[str]
|
|
1073
|
+
Status: NotRequired[AgreementStatusTypeType]
|
|
1074
|
+
LocalProfileId: NotRequired[str]
|
|
1075
|
+
PartnerProfileId: NotRequired[str]
|
|
1076
|
+
BaseDirectory: NotRequired[str]
|
|
1077
|
+
AccessRole: NotRequired[str]
|
|
1078
|
+
PreserveFilename: NotRequired[PreserveFilenameTypeType]
|
|
1079
|
+
EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
|
|
1080
|
+
CustomDirectories: NotRequired[CustomDirectoriesTypeTypeDef]
|
|
1081
|
+
|
|
1082
|
+
|
|
1073
1083
|
class CreateAgreementRequestRequestTypeDef(TypedDict):
|
|
1074
1084
|
ServerId: str
|
|
1075
1085
|
LocalProfileId: str
|
|
1076
1086
|
PartnerProfileId: str
|
|
1077
|
-
BaseDirectory: str
|
|
1078
1087
|
AccessRole: str
|
|
1079
1088
|
Description: NotRequired[str]
|
|
1089
|
+
BaseDirectory: NotRequired[str]
|
|
1080
1090
|
Status: NotRequired[AgreementStatusTypeType]
|
|
1081
1091
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
1082
1092
|
PreserveFilename: NotRequired[PreserveFilenameTypeType]
|
|
1083
1093
|
EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
|
|
1094
|
+
CustomDirectories: NotRequired[CustomDirectoriesTypeTypeDef]
|
|
1084
1095
|
|
|
1085
1096
|
|
|
1086
1097
|
class CreateProfileRequestRequestTypeDef(TypedDict):
|
|
@@ -1116,6 +1127,7 @@ class DescribedAgreementTypeDef(TypedDict):
|
|
|
1116
1127
|
Tags: NotRequired[List[TagTypeDef]]
|
|
1117
1128
|
PreserveFilename: NotRequired[PreserveFilenameTypeType]
|
|
1118
1129
|
EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
|
|
1130
|
+
CustomDirectories: NotRequired[CustomDirectoriesTypeTypeDef]
|
|
1119
1131
|
|
|
1120
1132
|
|
|
1121
1133
|
DescribedCertificateTypeDef = TypedDict(
|
|
@@ -89,6 +89,7 @@ __all__ = (
|
|
|
89
89
|
"CreateWebAppResponseTypeDef",
|
|
90
90
|
"CreateWorkflowRequestRequestTypeDef",
|
|
91
91
|
"CreateWorkflowResponseTypeDef",
|
|
92
|
+
"CustomDirectoriesTypeTypeDef",
|
|
92
93
|
"CustomStepDetailsTypeDef",
|
|
93
94
|
"DecryptStepDetailsTypeDef",
|
|
94
95
|
"DeleteAccessRequestRequestTypeDef",
|
|
@@ -324,6 +325,13 @@ class ResponseMetadataTypeDef(TypedDict):
|
|
|
324
325
|
RetryAttempts: int
|
|
325
326
|
HostId: NotRequired[str]
|
|
326
327
|
|
|
328
|
+
class CustomDirectoriesTypeTypeDef(TypedDict):
|
|
329
|
+
FailedFilesDirectory: str
|
|
330
|
+
MdnFilesDirectory: str
|
|
331
|
+
PayloadFilesDirectory: str
|
|
332
|
+
StatusFilesDirectory: str
|
|
333
|
+
TemporaryFilesDirectory: str
|
|
334
|
+
|
|
327
335
|
class TagTypeDef(TypedDict):
|
|
328
336
|
Key: str
|
|
329
337
|
Value: str
|
|
@@ -748,18 +756,6 @@ class UntagResourceRequestRequestTypeDef(TypedDict):
|
|
|
748
756
|
Arn: str
|
|
749
757
|
TagKeys: Sequence[str]
|
|
750
758
|
|
|
751
|
-
class UpdateAgreementRequestRequestTypeDef(TypedDict):
|
|
752
|
-
AgreementId: str
|
|
753
|
-
ServerId: str
|
|
754
|
-
Description: NotRequired[str]
|
|
755
|
-
Status: NotRequired[AgreementStatusTypeType]
|
|
756
|
-
LocalProfileId: NotRequired[str]
|
|
757
|
-
PartnerProfileId: NotRequired[str]
|
|
758
|
-
BaseDirectory: NotRequired[str]
|
|
759
|
-
AccessRole: NotRequired[str]
|
|
760
|
-
PreserveFilename: NotRequired[PreserveFilenameTypeType]
|
|
761
|
-
EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
|
|
762
|
-
|
|
763
759
|
class UpdateHostKeyRequestRequestTypeDef(TypedDict):
|
|
764
760
|
ServerId: str
|
|
765
761
|
HostKeyId: str
|
|
@@ -939,17 +935,31 @@ class UpdateWebAppResponseTypeDef(TypedDict):
|
|
|
939
935
|
WebAppId: str
|
|
940
936
|
ResponseMetadata: ResponseMetadataTypeDef
|
|
941
937
|
|
|
938
|
+
class UpdateAgreementRequestRequestTypeDef(TypedDict):
|
|
939
|
+
AgreementId: str
|
|
940
|
+
ServerId: str
|
|
941
|
+
Description: NotRequired[str]
|
|
942
|
+
Status: NotRequired[AgreementStatusTypeType]
|
|
943
|
+
LocalProfileId: NotRequired[str]
|
|
944
|
+
PartnerProfileId: NotRequired[str]
|
|
945
|
+
BaseDirectory: NotRequired[str]
|
|
946
|
+
AccessRole: NotRequired[str]
|
|
947
|
+
PreserveFilename: NotRequired[PreserveFilenameTypeType]
|
|
948
|
+
EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
|
|
949
|
+
CustomDirectories: NotRequired[CustomDirectoriesTypeTypeDef]
|
|
950
|
+
|
|
942
951
|
class CreateAgreementRequestRequestTypeDef(TypedDict):
|
|
943
952
|
ServerId: str
|
|
944
953
|
LocalProfileId: str
|
|
945
954
|
PartnerProfileId: str
|
|
946
|
-
BaseDirectory: str
|
|
947
955
|
AccessRole: str
|
|
948
956
|
Description: NotRequired[str]
|
|
957
|
+
BaseDirectory: NotRequired[str]
|
|
949
958
|
Status: NotRequired[AgreementStatusTypeType]
|
|
950
959
|
Tags: NotRequired[Sequence[TagTypeDef]]
|
|
951
960
|
PreserveFilename: NotRequired[PreserveFilenameTypeType]
|
|
952
961
|
EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
|
|
962
|
+
CustomDirectories: NotRequired[CustomDirectoriesTypeTypeDef]
|
|
953
963
|
|
|
954
964
|
class CreateProfileRequestRequestTypeDef(TypedDict):
|
|
955
965
|
As2Id: str
|
|
@@ -982,6 +992,7 @@ class DescribedAgreementTypeDef(TypedDict):
|
|
|
982
992
|
Tags: NotRequired[List[TagTypeDef]]
|
|
983
993
|
PreserveFilename: NotRequired[PreserveFilenameTypeType]
|
|
984
994
|
EnforceMessageSigning: NotRequired[EnforceMessageSigningTypeType]
|
|
995
|
+
CustomDirectories: NotRequired[CustomDirectoriesTypeTypeDef]
|
|
985
996
|
|
|
986
997
|
DescribedCertificateTypeDef = TypedDict(
|
|
987
998
|
"DescribedCertificateTypeDef",
|
mypy_boto3_transfer/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: mypy-boto3-transfer
|
|
3
|
-
Version: 1.36.
|
|
4
|
-
Summary: Type annotations for boto3 Transfer 1.36.
|
|
3
|
+
Version: 1.36.6
|
|
4
|
+
Summary: Type annotations for boto3 Transfer 1.36.6 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
|
|
@@ -55,7 +55,7 @@ Dynamic: summary
|
|
|
55
55
|
|
|
56
56
|

|
|
57
57
|
|
|
58
|
-
Type annotations for [boto3 Transfer 1.36.
|
|
58
|
+
Type annotations for [boto3 Transfer 1.36.6](https://pypi.org/project/boto3/)
|
|
59
59
|
compatible with [VSCode](https://code.visualstudio.com/),
|
|
60
60
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
61
61
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -118,7 +118,7 @@ You can generate type annotations for `boto3` package locally with
|
|
|
118
118
|
isolation.
|
|
119
119
|
|
|
120
120
|
1. Run mypy-boto3-builder in your package root directory:
|
|
121
|
-
`uvx --with 'boto3==1.36.
|
|
121
|
+
`uvx --with 'boto3==1.36.6' mypy_boto3_builder`
|
|
122
122
|
2. Select `boto3-stubs` AWS SDK.
|
|
123
123
|
3. Add `Transfer` service.
|
|
124
124
|
4. Use provided commands to install generated packages.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
mypy_boto3_transfer/__init__.py,sha256=N91vG7bSAGmazWoBJIK7t0PobN-8MSvvi4bq4yIelCQ,3308
|
|
2
2
|
mypy_boto3_transfer/__init__.pyi,sha256=k2DRgoSYJrkvlgVH8mxXey9y29AoH8JOZcR1W49gYxg,3307
|
|
3
|
-
mypy_boto3_transfer/__main__.py,sha256=
|
|
3
|
+
mypy_boto3_transfer/__main__.py,sha256=h341Yn6LrHyjmI_Al6s_ycufggPfHm5OkWewhNkw-BM,984
|
|
4
4
|
mypy_boto3_transfer/client.py,sha256=x9Df2JHqswfp3vTbV0lNtEo6zl1me66ybL8o89_HUYU,53775
|
|
5
5
|
mypy_boto3_transfer/client.pyi,sha256=byoHMrgzZ7ghbe3xAH9eLrT2Ddq_E07tzNaXU9a5-DE,53772
|
|
6
6
|
mypy_boto3_transfer/literals.py,sha256=i5KLa1auSw8tsz-45pIl9ingGzz9CUFIJzXm87M1sjU,14499
|
|
@@ -8,13 +8,13 @@ mypy_boto3_transfer/literals.pyi,sha256=i8c5Uo2U1E4-3a-VcMZgNHM1h21BwQIxLWt-qCrA
|
|
|
8
8
|
mypy_boto3_transfer/paginator.py,sha256=grJWOh0usUlUtQ1PShEXY6jPptusGfvCbOPvqBGKL5w,18231
|
|
9
9
|
mypy_boto3_transfer/paginator.pyi,sha256=LoGvioMSAwhBEn5l5m924RaAI6Df8K2u5CEnvTvdkk4,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=CyItZu8e9dSvv4nNp1jYNnwm6gjZwvfcBHuAf75u75M,49004
|
|
12
|
+
mypy_boto3_transfer/type_defs.pyi,sha256=tRyuNUoj8WyOLymAfEXWmMwIjGwp3uszzcDFJ_69X0s,48793
|
|
13
|
+
mypy_boto3_transfer/version.py,sha256=5Yl9WQzkiL2ZwWs1HLoOrpqzcPA_okolId-TlB_6aEg,92
|
|
14
14
|
mypy_boto3_transfer/waiter.py,sha256=yGPom15Q80rRPWl29s8qpF2N4NnSFwks8tJ7_W4ikf4,2601
|
|
15
15
|
mypy_boto3_transfer/waiter.pyi,sha256=oAEaU_GRFe23zFUiSF_x1-0zy8_HopckzKRCIvbCT4Y,2596
|
|
16
|
-
mypy_boto3_transfer-1.36.
|
|
17
|
-
mypy_boto3_transfer-1.36.
|
|
18
|
-
mypy_boto3_transfer-1.36.
|
|
19
|
-
mypy_boto3_transfer-1.36.
|
|
20
|
-
mypy_boto3_transfer-1.36.
|
|
16
|
+
mypy_boto3_transfer-1.36.6.dist-info/LICENSE,sha256=4jNgB8jJbXtUVJkeygwhUQi--6lAG8DIisfE-h_RiUU,1070
|
|
17
|
+
mypy_boto3_transfer-1.36.6.dist-info/METADATA,sha256=ck6MCx8_Knr0ZQmmLCQ2XDcWLTXb7fp_2BcwBVl858w,17035
|
|
18
|
+
mypy_boto3_transfer-1.36.6.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
19
|
+
mypy_boto3_transfer-1.36.6.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
+
mypy_boto3_transfer-1.36.6.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|