mypy-boto3-transfer 1.34.0__py3-none-any.whl → 1.34.59__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 +0 -1
- mypy_boto3_transfer/__main__.py +8 -7
- mypy_boto3_transfer/client.py +17 -18
- mypy_boto3_transfer/client.pyi +17 -17
- mypy_boto3_transfer/literals.py +6 -3
- mypy_boto3_transfer/literals.pyi +6 -1
- mypy_boto3_transfer/paginator.py +0 -1
- mypy_boto3_transfer/type_defs.py +3 -2
- mypy_boto3_transfer/type_defs.pyi +3 -1
- mypy_boto3_transfer/version.py +1 -1
- {mypy_boto3_transfer-1.34.0.dist-info → mypy_boto3_transfer-1.34.59.dist-info}/LICENSE +1 -1
- {mypy_boto3_transfer-1.34.0.dist-info → mypy_boto3_transfer-1.34.59.dist-info}/METADATA +6 -7
- mypy_boto3_transfer-1.34.59.dist-info/RECORD +20 -0
- mypy_boto3_transfer-1.34.0.dist-info/RECORD +0 -20
- {mypy_boto3_transfer-1.34.0.dist-info → mypy_boto3_transfer-1.34.59.dist-info}/WHEEL +0 -0
- {mypy_boto3_transfer-1.34.0.dist-info → mypy_boto3_transfer-1.34.59.dist-info}/top_level.txt +0 -0
mypy_boto3_transfer/__init__.py
CHANGED
mypy_boto3_transfer/__main__.py
CHANGED
|
@@ -10,12 +10,13 @@ def print_info() -> None:
|
|
|
10
10
|
Print package info to stdout.
|
|
11
11
|
"""
|
|
12
12
|
print(
|
|
13
|
-
"Type annotations for boto3.Transfer 1.34.
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
" https://
|
|
13
|
+
"Type annotations for boto3.Transfer 1.34.59\n"
|
|
14
|
+
"Version: 1.34.59\n"
|
|
15
|
+
"Builder version: 7.23.2\n"
|
|
16
|
+
"Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer//\n"
|
|
17
|
+
"Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer\n"
|
|
18
|
+
"Other services: https://pypi.org/project/boto3-stubs/\n"
|
|
19
|
+
"Changelog: https://github.com/youtype/mypy_boto3_builder/releases"
|
|
19
20
|
)
|
|
20
21
|
|
|
21
22
|
|
|
@@ -23,7 +24,7 @@ def print_version() -> None:
|
|
|
23
24
|
"""
|
|
24
25
|
Print package version to stdout.
|
|
25
26
|
"""
|
|
26
|
-
print("1.34.
|
|
27
|
+
print("1.34.59")
|
|
27
28
|
|
|
28
29
|
|
|
29
30
|
def main() -> None:
|
mypy_boto3_transfer/client.py
CHANGED
|
@@ -109,7 +109,6 @@ if sys.version_info >= (3, 12):
|
|
|
109
109
|
else:
|
|
110
110
|
from typing_extensions import Literal
|
|
111
111
|
|
|
112
|
-
|
|
113
112
|
__all__ = ("TransferClient",)
|
|
114
113
|
|
|
115
114
|
|
|
@@ -177,7 +176,7 @@ class TransferClient(BaseClient):
|
|
|
177
176
|
HomeDirectoryType: HomeDirectoryTypeType = ...,
|
|
178
177
|
HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
|
|
179
178
|
Policy: str = ...,
|
|
180
|
-
PosixProfile: PosixProfileTypeDef =
|
|
179
|
+
PosixProfile: PosixProfileTypeDef = ...,
|
|
181
180
|
) -> CreateAccessResponseTypeDef:
|
|
182
181
|
"""
|
|
183
182
|
Used by administrators to choose which groups in the directory should have
|
|
@@ -198,7 +197,7 @@ class TransferClient(BaseClient):
|
|
|
198
197
|
AccessRole: str,
|
|
199
198
|
Description: str = ...,
|
|
200
199
|
Status: AgreementStatusTypeType = ...,
|
|
201
|
-
Tags: Sequence[TagTypeDef] =
|
|
200
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
202
201
|
) -> CreateAgreementResponseTypeDef:
|
|
203
202
|
"""
|
|
204
203
|
Creates an agreement.
|
|
@@ -215,7 +214,7 @@ class TransferClient(BaseClient):
|
|
|
215
214
|
As2Config: As2ConnectorConfigTypeDef = ...,
|
|
216
215
|
LoggingRole: str = ...,
|
|
217
216
|
Tags: Sequence[TagTypeDef] = ...,
|
|
218
|
-
SftpConfig: SftpConnectorConfigTypeDef =
|
|
217
|
+
SftpConfig: SftpConnectorConfigTypeDef = ...,
|
|
219
218
|
) -> CreateConnectorResponseTypeDef:
|
|
220
219
|
"""
|
|
221
220
|
Creates the connector, which captures the parameters for a connection for the
|
|
@@ -232,7 +231,7 @@ class TransferClient(BaseClient):
|
|
|
232
231
|
As2Id: str,
|
|
233
232
|
ProfileType: ProfileTypeType,
|
|
234
233
|
CertificateIds: Sequence[str] = ...,
|
|
235
|
-
Tags: Sequence[TagTypeDef] =
|
|
234
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
236
235
|
) -> CreateProfileResponseTypeDef:
|
|
237
236
|
"""
|
|
238
237
|
Creates the local or partner profile to use for AS2 transfers.
|
|
@@ -260,7 +259,7 @@ class TransferClient(BaseClient):
|
|
|
260
259
|
Tags: Sequence[TagTypeDef] = ...,
|
|
261
260
|
WorkflowDetails: WorkflowDetailsTypeDef = ...,
|
|
262
261
|
StructuredLogDestinations: Sequence[str] = ...,
|
|
263
|
-
S3StorageOptions: S3StorageOptionsTypeDef =
|
|
262
|
+
S3StorageOptions: S3StorageOptionsTypeDef = ...,
|
|
264
263
|
) -> CreateServerResponseTypeDef:
|
|
265
264
|
"""
|
|
266
265
|
Instantiates an auto-scaling virtual server based on the selected file transfer
|
|
@@ -283,7 +282,7 @@ class TransferClient(BaseClient):
|
|
|
283
282
|
Policy: str = ...,
|
|
284
283
|
PosixProfile: PosixProfileTypeDef = ...,
|
|
285
284
|
SshPublicKeyBody: str = ...,
|
|
286
|
-
Tags: Sequence[TagTypeDef] =
|
|
285
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
287
286
|
) -> CreateUserResponseTypeDef:
|
|
288
287
|
"""
|
|
289
288
|
Creates a user and associates them with an existing file transfer
|
|
@@ -300,7 +299,7 @@ class TransferClient(BaseClient):
|
|
|
300
299
|
Steps: Sequence[WorkflowStepTypeDef],
|
|
301
300
|
Description: str = ...,
|
|
302
301
|
OnExceptionSteps: Sequence[WorkflowStepTypeDef] = ...,
|
|
303
|
-
Tags: Sequence[TagTypeDef] =
|
|
302
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
304
303
|
) -> CreateWorkflowResponseTypeDef:
|
|
305
304
|
"""
|
|
306
305
|
Allows you to create a workflow with specified steps and step details the
|
|
@@ -526,7 +525,7 @@ class TransferClient(BaseClient):
|
|
|
526
525
|
ActiveDate: TimestampTypeDef = ...,
|
|
527
526
|
InactiveDate: TimestampTypeDef = ...,
|
|
528
527
|
Description: str = ...,
|
|
529
|
-
Tags: Sequence[TagTypeDef] =
|
|
528
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
530
529
|
) -> ImportCertificateResponseTypeDef:
|
|
531
530
|
"""
|
|
532
531
|
Imports the signing and encryption certificates that you need to create local
|
|
@@ -543,7 +542,7 @@ class TransferClient(BaseClient):
|
|
|
543
542
|
ServerId: str,
|
|
544
543
|
HostKeyBody: str,
|
|
545
544
|
Description: str = ...,
|
|
546
|
-
Tags: Sequence[TagTypeDef] =
|
|
545
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
547
546
|
) -> ImportHostKeyResponseTypeDef:
|
|
548
547
|
"""
|
|
549
548
|
Adds a host key to the server that's specified by the `ServerId` parameter.
|
|
@@ -716,7 +715,7 @@ class TransferClient(BaseClient):
|
|
|
716
715
|
SendFilePaths: Sequence[str] = ...,
|
|
717
716
|
RetrieveFilePaths: Sequence[str] = ...,
|
|
718
717
|
LocalDirectoryPath: str = ...,
|
|
719
|
-
RemoteDirectoryPath: str =
|
|
718
|
+
RemoteDirectoryPath: str = ...,
|
|
720
719
|
) -> StartFileTransferResponseTypeDef:
|
|
721
720
|
"""
|
|
722
721
|
Begins a file transfer between local Amazon Web Services storage and a remote
|
|
@@ -770,7 +769,7 @@ class TransferClient(BaseClient):
|
|
|
770
769
|
UserName: str,
|
|
771
770
|
ServerProtocol: ProtocolType = ...,
|
|
772
771
|
SourceIp: str = ...,
|
|
773
|
-
UserPassword: str =
|
|
772
|
+
UserPassword: str = ...,
|
|
774
773
|
) -> TestIdentityProviderResponseTypeDef:
|
|
775
774
|
"""
|
|
776
775
|
If the `IdentityProviderType` of a file transfer protocol-enabled server is
|
|
@@ -802,7 +801,7 @@ class TransferClient(BaseClient):
|
|
|
802
801
|
HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
|
|
803
802
|
Policy: str = ...,
|
|
804
803
|
PosixProfile: PosixProfileTypeDef = ...,
|
|
805
|
-
Role: str =
|
|
804
|
+
Role: str = ...,
|
|
806
805
|
) -> UpdateAccessResponseTypeDef:
|
|
807
806
|
"""
|
|
808
807
|
Allows you to update parameters for the access specified in the `ServerID` and
|
|
@@ -823,7 +822,7 @@ class TransferClient(BaseClient):
|
|
|
823
822
|
LocalProfileId: str = ...,
|
|
824
823
|
PartnerProfileId: str = ...,
|
|
825
824
|
BaseDirectory: str = ...,
|
|
826
|
-
AccessRole: str =
|
|
825
|
+
AccessRole: str = ...,
|
|
827
826
|
) -> UpdateAgreementResponseTypeDef:
|
|
828
827
|
"""
|
|
829
828
|
Updates some of the parameters for an existing agreement.
|
|
@@ -838,7 +837,7 @@ class TransferClient(BaseClient):
|
|
|
838
837
|
CertificateId: str,
|
|
839
838
|
ActiveDate: TimestampTypeDef = ...,
|
|
840
839
|
InactiveDate: TimestampTypeDef = ...,
|
|
841
|
-
Description: str =
|
|
840
|
+
Description: str = ...,
|
|
842
841
|
) -> UpdateCertificateResponseTypeDef:
|
|
843
842
|
"""
|
|
844
843
|
Updates the active and inactive dates for a certificate.
|
|
@@ -855,7 +854,7 @@ class TransferClient(BaseClient):
|
|
|
855
854
|
As2Config: As2ConnectorConfigTypeDef = ...,
|
|
856
855
|
AccessRole: str = ...,
|
|
857
856
|
LoggingRole: str = ...,
|
|
858
|
-
SftpConfig: SftpConnectorConfigTypeDef =
|
|
857
|
+
SftpConfig: SftpConnectorConfigTypeDef = ...,
|
|
859
858
|
) -> UpdateConnectorResponseTypeDef:
|
|
860
859
|
"""
|
|
861
860
|
Updates some of the parameters for an existing connector.
|
|
@@ -903,7 +902,7 @@ class TransferClient(BaseClient):
|
|
|
903
902
|
SecurityPolicyName: str = ...,
|
|
904
903
|
WorkflowDetails: WorkflowDetailsTypeDef = ...,
|
|
905
904
|
StructuredLogDestinations: Sequence[str] = ...,
|
|
906
|
-
S3StorageOptions: S3StorageOptionsTypeDef =
|
|
905
|
+
S3StorageOptions: S3StorageOptionsTypeDef = ...,
|
|
907
906
|
) -> UpdateServerResponseTypeDef:
|
|
908
907
|
"""
|
|
909
908
|
Updates the file transfer protocol-enabled server's properties after that
|
|
@@ -924,7 +923,7 @@ class TransferClient(BaseClient):
|
|
|
924
923
|
HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
|
|
925
924
|
Policy: str = ...,
|
|
926
925
|
PosixProfile: PosixProfileTypeDef = ...,
|
|
927
|
-
Role: str =
|
|
926
|
+
Role: str = ...,
|
|
928
927
|
) -> UpdateUserResponseTypeDef:
|
|
929
928
|
"""
|
|
930
929
|
Assigns new properties to a user.
|
mypy_boto3_transfer/client.pyi
CHANGED
|
@@ -173,7 +173,7 @@ class TransferClient(BaseClient):
|
|
|
173
173
|
HomeDirectoryType: HomeDirectoryTypeType = ...,
|
|
174
174
|
HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
|
|
175
175
|
Policy: str = ...,
|
|
176
|
-
PosixProfile: PosixProfileTypeDef =
|
|
176
|
+
PosixProfile: PosixProfileTypeDef = ...,
|
|
177
177
|
) -> CreateAccessResponseTypeDef:
|
|
178
178
|
"""
|
|
179
179
|
Used by administrators to choose which groups in the directory should have
|
|
@@ -194,7 +194,7 @@ class TransferClient(BaseClient):
|
|
|
194
194
|
AccessRole: str,
|
|
195
195
|
Description: str = ...,
|
|
196
196
|
Status: AgreementStatusTypeType = ...,
|
|
197
|
-
Tags: Sequence[TagTypeDef] =
|
|
197
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
198
198
|
) -> CreateAgreementResponseTypeDef:
|
|
199
199
|
"""
|
|
200
200
|
Creates an agreement.
|
|
@@ -211,7 +211,7 @@ class TransferClient(BaseClient):
|
|
|
211
211
|
As2Config: As2ConnectorConfigTypeDef = ...,
|
|
212
212
|
LoggingRole: str = ...,
|
|
213
213
|
Tags: Sequence[TagTypeDef] = ...,
|
|
214
|
-
SftpConfig: SftpConnectorConfigTypeDef =
|
|
214
|
+
SftpConfig: SftpConnectorConfigTypeDef = ...,
|
|
215
215
|
) -> CreateConnectorResponseTypeDef:
|
|
216
216
|
"""
|
|
217
217
|
Creates the connector, which captures the parameters for a connection for the
|
|
@@ -228,7 +228,7 @@ class TransferClient(BaseClient):
|
|
|
228
228
|
As2Id: str,
|
|
229
229
|
ProfileType: ProfileTypeType,
|
|
230
230
|
CertificateIds: Sequence[str] = ...,
|
|
231
|
-
Tags: Sequence[TagTypeDef] =
|
|
231
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
232
232
|
) -> CreateProfileResponseTypeDef:
|
|
233
233
|
"""
|
|
234
234
|
Creates the local or partner profile to use for AS2 transfers.
|
|
@@ -256,7 +256,7 @@ class TransferClient(BaseClient):
|
|
|
256
256
|
Tags: Sequence[TagTypeDef] = ...,
|
|
257
257
|
WorkflowDetails: WorkflowDetailsTypeDef = ...,
|
|
258
258
|
StructuredLogDestinations: Sequence[str] = ...,
|
|
259
|
-
S3StorageOptions: S3StorageOptionsTypeDef =
|
|
259
|
+
S3StorageOptions: S3StorageOptionsTypeDef = ...,
|
|
260
260
|
) -> CreateServerResponseTypeDef:
|
|
261
261
|
"""
|
|
262
262
|
Instantiates an auto-scaling virtual server based on the selected file transfer
|
|
@@ -279,7 +279,7 @@ class TransferClient(BaseClient):
|
|
|
279
279
|
Policy: str = ...,
|
|
280
280
|
PosixProfile: PosixProfileTypeDef = ...,
|
|
281
281
|
SshPublicKeyBody: str = ...,
|
|
282
|
-
Tags: Sequence[TagTypeDef] =
|
|
282
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
283
283
|
) -> CreateUserResponseTypeDef:
|
|
284
284
|
"""
|
|
285
285
|
Creates a user and associates them with an existing file transfer
|
|
@@ -296,7 +296,7 @@ class TransferClient(BaseClient):
|
|
|
296
296
|
Steps: Sequence[WorkflowStepTypeDef],
|
|
297
297
|
Description: str = ...,
|
|
298
298
|
OnExceptionSteps: Sequence[WorkflowStepTypeDef] = ...,
|
|
299
|
-
Tags: Sequence[TagTypeDef] =
|
|
299
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
300
300
|
) -> CreateWorkflowResponseTypeDef:
|
|
301
301
|
"""
|
|
302
302
|
Allows you to create a workflow with specified steps and step details the
|
|
@@ -522,7 +522,7 @@ class TransferClient(BaseClient):
|
|
|
522
522
|
ActiveDate: TimestampTypeDef = ...,
|
|
523
523
|
InactiveDate: TimestampTypeDef = ...,
|
|
524
524
|
Description: str = ...,
|
|
525
|
-
Tags: Sequence[TagTypeDef] =
|
|
525
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
526
526
|
) -> ImportCertificateResponseTypeDef:
|
|
527
527
|
"""
|
|
528
528
|
Imports the signing and encryption certificates that you need to create local
|
|
@@ -539,7 +539,7 @@ class TransferClient(BaseClient):
|
|
|
539
539
|
ServerId: str,
|
|
540
540
|
HostKeyBody: str,
|
|
541
541
|
Description: str = ...,
|
|
542
|
-
Tags: Sequence[TagTypeDef] =
|
|
542
|
+
Tags: Sequence[TagTypeDef] = ...,
|
|
543
543
|
) -> ImportHostKeyResponseTypeDef:
|
|
544
544
|
"""
|
|
545
545
|
Adds a host key to the server that's specified by the `ServerId` parameter.
|
|
@@ -712,7 +712,7 @@ class TransferClient(BaseClient):
|
|
|
712
712
|
SendFilePaths: Sequence[str] = ...,
|
|
713
713
|
RetrieveFilePaths: Sequence[str] = ...,
|
|
714
714
|
LocalDirectoryPath: str = ...,
|
|
715
|
-
RemoteDirectoryPath: str =
|
|
715
|
+
RemoteDirectoryPath: str = ...,
|
|
716
716
|
) -> StartFileTransferResponseTypeDef:
|
|
717
717
|
"""
|
|
718
718
|
Begins a file transfer between local Amazon Web Services storage and a remote
|
|
@@ -766,7 +766,7 @@ class TransferClient(BaseClient):
|
|
|
766
766
|
UserName: str,
|
|
767
767
|
ServerProtocol: ProtocolType = ...,
|
|
768
768
|
SourceIp: str = ...,
|
|
769
|
-
UserPassword: str =
|
|
769
|
+
UserPassword: str = ...,
|
|
770
770
|
) -> TestIdentityProviderResponseTypeDef:
|
|
771
771
|
"""
|
|
772
772
|
If the `IdentityProviderType` of a file transfer protocol-enabled server is
|
|
@@ -798,7 +798,7 @@ class TransferClient(BaseClient):
|
|
|
798
798
|
HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
|
|
799
799
|
Policy: str = ...,
|
|
800
800
|
PosixProfile: PosixProfileTypeDef = ...,
|
|
801
|
-
Role: str =
|
|
801
|
+
Role: str = ...,
|
|
802
802
|
) -> UpdateAccessResponseTypeDef:
|
|
803
803
|
"""
|
|
804
804
|
Allows you to update parameters for the access specified in the `ServerID` and
|
|
@@ -819,7 +819,7 @@ class TransferClient(BaseClient):
|
|
|
819
819
|
LocalProfileId: str = ...,
|
|
820
820
|
PartnerProfileId: str = ...,
|
|
821
821
|
BaseDirectory: str = ...,
|
|
822
|
-
AccessRole: str =
|
|
822
|
+
AccessRole: str = ...,
|
|
823
823
|
) -> UpdateAgreementResponseTypeDef:
|
|
824
824
|
"""
|
|
825
825
|
Updates some of the parameters for an existing agreement.
|
|
@@ -834,7 +834,7 @@ class TransferClient(BaseClient):
|
|
|
834
834
|
CertificateId: str,
|
|
835
835
|
ActiveDate: TimestampTypeDef = ...,
|
|
836
836
|
InactiveDate: TimestampTypeDef = ...,
|
|
837
|
-
Description: str =
|
|
837
|
+
Description: str = ...,
|
|
838
838
|
) -> UpdateCertificateResponseTypeDef:
|
|
839
839
|
"""
|
|
840
840
|
Updates the active and inactive dates for a certificate.
|
|
@@ -851,7 +851,7 @@ class TransferClient(BaseClient):
|
|
|
851
851
|
As2Config: As2ConnectorConfigTypeDef = ...,
|
|
852
852
|
AccessRole: str = ...,
|
|
853
853
|
LoggingRole: str = ...,
|
|
854
|
-
SftpConfig: SftpConnectorConfigTypeDef =
|
|
854
|
+
SftpConfig: SftpConnectorConfigTypeDef = ...,
|
|
855
855
|
) -> UpdateConnectorResponseTypeDef:
|
|
856
856
|
"""
|
|
857
857
|
Updates some of the parameters for an existing connector.
|
|
@@ -899,7 +899,7 @@ class TransferClient(BaseClient):
|
|
|
899
899
|
SecurityPolicyName: str = ...,
|
|
900
900
|
WorkflowDetails: WorkflowDetailsTypeDef = ...,
|
|
901
901
|
StructuredLogDestinations: Sequence[str] = ...,
|
|
902
|
-
S3StorageOptions: S3StorageOptionsTypeDef =
|
|
902
|
+
S3StorageOptions: S3StorageOptionsTypeDef = ...,
|
|
903
903
|
) -> UpdateServerResponseTypeDef:
|
|
904
904
|
"""
|
|
905
905
|
Updates the file transfer protocol-enabled server's properties after that
|
|
@@ -920,7 +920,7 @@ class TransferClient(BaseClient):
|
|
|
920
920
|
HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
|
|
921
921
|
Policy: str = ...,
|
|
922
922
|
PosixProfile: PosixProfileTypeDef = ...,
|
|
923
|
-
Role: str =
|
|
923
|
+
Role: str = ...,
|
|
924
924
|
) -> UpdateUserResponseTypeDef:
|
|
925
925
|
"""
|
|
926
926
|
Assigns new properties to a user.
|
mypy_boto3_transfer/literals.py
CHANGED
|
@@ -19,7 +19,6 @@ if sys.version_info >= (3, 12):
|
|
|
19
19
|
else:
|
|
20
20
|
from typing_extensions import Literal
|
|
21
21
|
|
|
22
|
-
|
|
23
22
|
__all__ = (
|
|
24
23
|
"AgreementStatusTypeType",
|
|
25
24
|
"As2TransportType",
|
|
@@ -70,7 +69,6 @@ __all__ = (
|
|
|
70
69
|
"RegionName",
|
|
71
70
|
)
|
|
72
71
|
|
|
73
|
-
|
|
74
72
|
AgreementStatusTypeType = Literal["ACTIVE", "INACTIVE"]
|
|
75
73
|
As2TransportType = Literal["HTTP"]
|
|
76
74
|
CertificateStatusTypeType = Literal["ACTIVE", "INACTIVE", "PENDING_ROTATION"]
|
|
@@ -80,7 +78,7 @@ CompressionEnumType = Literal["DISABLED", "ZLIB"]
|
|
|
80
78
|
CustomStepStatusType = Literal["FAILURE", "SUCCESS"]
|
|
81
79
|
DirectoryListingOptimizationType = Literal["DISABLED", "ENABLED"]
|
|
82
80
|
DomainType = Literal["EFS", "S3"]
|
|
83
|
-
EncryptionAlgType = Literal["AES128_CBC", "AES192_CBC", "AES256_CBC", "NONE"]
|
|
81
|
+
EncryptionAlgType = Literal["AES128_CBC", "AES192_CBC", "AES256_CBC", "DES_EDE3_CBC", "NONE"]
|
|
84
82
|
EncryptionTypeType = Literal["PGP"]
|
|
85
83
|
EndpointTypeType = Literal["PUBLIC", "VPC", "VPC_ENDPOINT"]
|
|
86
84
|
ExecutionErrorTypeType = Literal[
|
|
@@ -152,6 +150,7 @@ ServiceName = Literal[
|
|
|
152
150
|
"appstream",
|
|
153
151
|
"appsync",
|
|
154
152
|
"arc-zonal-shift",
|
|
153
|
+
"artifact",
|
|
155
154
|
"athena",
|
|
156
155
|
"auditmanager",
|
|
157
156
|
"autoscaling",
|
|
@@ -170,6 +169,7 @@ ServiceName = Literal[
|
|
|
170
169
|
"braket",
|
|
171
170
|
"budgets",
|
|
172
171
|
"ce",
|
|
172
|
+
"chatbot",
|
|
173
173
|
"chime",
|
|
174
174
|
"chime-sdk-identity",
|
|
175
175
|
"chime-sdk-media-pipelines",
|
|
@@ -373,9 +373,11 @@ ServiceName = Literal[
|
|
|
373
373
|
"mturk",
|
|
374
374
|
"mwaa",
|
|
375
375
|
"neptune",
|
|
376
|
+
"neptune-graph",
|
|
376
377
|
"neptunedata",
|
|
377
378
|
"network-firewall",
|
|
378
379
|
"networkmanager",
|
|
380
|
+
"networkmonitor",
|
|
379
381
|
"nimble",
|
|
380
382
|
"oam",
|
|
381
383
|
"omics",
|
|
@@ -473,6 +475,7 @@ ServiceName = Literal[
|
|
|
473
475
|
"stepfunctions",
|
|
474
476
|
"storagegateway",
|
|
475
477
|
"sts",
|
|
478
|
+
"supplychain",
|
|
476
479
|
"support",
|
|
477
480
|
"support-app",
|
|
478
481
|
"swf",
|
mypy_boto3_transfer/literals.pyi
CHANGED
|
@@ -78,7 +78,7 @@ CompressionEnumType = Literal["DISABLED", "ZLIB"]
|
|
|
78
78
|
CustomStepStatusType = Literal["FAILURE", "SUCCESS"]
|
|
79
79
|
DirectoryListingOptimizationType = Literal["DISABLED", "ENABLED"]
|
|
80
80
|
DomainType = Literal["EFS", "S3"]
|
|
81
|
-
EncryptionAlgType = Literal["AES128_CBC", "AES192_CBC", "AES256_CBC", "NONE"]
|
|
81
|
+
EncryptionAlgType = Literal["AES128_CBC", "AES192_CBC", "AES256_CBC", "DES_EDE3_CBC", "NONE"]
|
|
82
82
|
EncryptionTypeType = Literal["PGP"]
|
|
83
83
|
EndpointTypeType = Literal["PUBLIC", "VPC", "VPC_ENDPOINT"]
|
|
84
84
|
ExecutionErrorTypeType = Literal[
|
|
@@ -150,6 +150,7 @@ ServiceName = Literal[
|
|
|
150
150
|
"appstream",
|
|
151
151
|
"appsync",
|
|
152
152
|
"arc-zonal-shift",
|
|
153
|
+
"artifact",
|
|
153
154
|
"athena",
|
|
154
155
|
"auditmanager",
|
|
155
156
|
"autoscaling",
|
|
@@ -168,6 +169,7 @@ ServiceName = Literal[
|
|
|
168
169
|
"braket",
|
|
169
170
|
"budgets",
|
|
170
171
|
"ce",
|
|
172
|
+
"chatbot",
|
|
171
173
|
"chime",
|
|
172
174
|
"chime-sdk-identity",
|
|
173
175
|
"chime-sdk-media-pipelines",
|
|
@@ -371,9 +373,11 @@ ServiceName = Literal[
|
|
|
371
373
|
"mturk",
|
|
372
374
|
"mwaa",
|
|
373
375
|
"neptune",
|
|
376
|
+
"neptune-graph",
|
|
374
377
|
"neptunedata",
|
|
375
378
|
"network-firewall",
|
|
376
379
|
"networkmanager",
|
|
380
|
+
"networkmonitor",
|
|
377
381
|
"nimble",
|
|
378
382
|
"oam",
|
|
379
383
|
"omics",
|
|
@@ -471,6 +475,7 @@ ServiceName = Literal[
|
|
|
471
475
|
"stepfunctions",
|
|
472
476
|
"storagegateway",
|
|
473
477
|
"sts",
|
|
478
|
+
"supplychain",
|
|
474
479
|
"support",
|
|
475
480
|
"support-app",
|
|
476
481
|
"swf",
|
mypy_boto3_transfer/paginator.py
CHANGED
mypy_boto3_transfer/type_defs.py
CHANGED
|
@@ -58,7 +58,6 @@ if sys.version_info >= (3, 12):
|
|
|
58
58
|
else:
|
|
59
59
|
from typing_extensions import TypedDict
|
|
60
60
|
|
|
61
|
-
|
|
62
61
|
__all__ = (
|
|
63
62
|
"As2ConnectorConfigTypeDef",
|
|
64
63
|
"HomeDirectoryMapEntryTypeDef",
|
|
@@ -268,10 +267,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
268
267
|
"ResponseMetadataTypeDef",
|
|
269
268
|
{
|
|
270
269
|
"RequestId": str,
|
|
271
|
-
"HostId": str,
|
|
272
270
|
"HTTPStatusCode": int,
|
|
273
271
|
"HTTPHeaders": Dict[str, str],
|
|
274
272
|
"RetryAttempts": int,
|
|
273
|
+
"HostId": NotRequired[str],
|
|
275
274
|
},
|
|
276
275
|
)
|
|
277
276
|
TagTypeDef = TypedDict(
|
|
@@ -1211,6 +1210,7 @@ DescribedConnectorTypeDef = TypedDict(
|
|
|
1211
1210
|
"LoggingRole": NotRequired[str],
|
|
1212
1211
|
"Tags": NotRequired[List[TagTypeDef]],
|
|
1213
1212
|
"SftpConfig": NotRequired[SftpConnectorConfigTypeDef],
|
|
1213
|
+
"ServiceManagedEgressIpAddresses": NotRequired[List[str]],
|
|
1214
1214
|
},
|
|
1215
1215
|
)
|
|
1216
1216
|
UpdateConnectorRequestRequestTypeDef = TypedDict(
|
|
@@ -1604,6 +1604,7 @@ DescribedServerTypeDef = TypedDict(
|
|
|
1604
1604
|
"WorkflowDetails": NotRequired[WorkflowDetailsTypeDef],
|
|
1605
1605
|
"StructuredLogDestinations": NotRequired[List[str]],
|
|
1606
1606
|
"S3StorageOptions": NotRequired[S3StorageOptionsTypeDef],
|
|
1607
|
+
"As2ServiceManagedEgressIpAddresses": NotRequired[List[str]],
|
|
1607
1608
|
},
|
|
1608
1609
|
)
|
|
1609
1610
|
UpdateServerRequestRequestTypeDef = TypedDict(
|
|
@@ -267,10 +267,10 @@ ResponseMetadataTypeDef = TypedDict(
|
|
|
267
267
|
"ResponseMetadataTypeDef",
|
|
268
268
|
{
|
|
269
269
|
"RequestId": str,
|
|
270
|
-
"HostId": str,
|
|
271
270
|
"HTTPStatusCode": int,
|
|
272
271
|
"HTTPHeaders": Dict[str, str],
|
|
273
272
|
"RetryAttempts": int,
|
|
273
|
+
"HostId": NotRequired[str],
|
|
274
274
|
},
|
|
275
275
|
)
|
|
276
276
|
TagTypeDef = TypedDict(
|
|
@@ -1210,6 +1210,7 @@ DescribedConnectorTypeDef = TypedDict(
|
|
|
1210
1210
|
"LoggingRole": NotRequired[str],
|
|
1211
1211
|
"Tags": NotRequired[List[TagTypeDef]],
|
|
1212
1212
|
"SftpConfig": NotRequired[SftpConnectorConfigTypeDef],
|
|
1213
|
+
"ServiceManagedEgressIpAddresses": NotRequired[List[str]],
|
|
1213
1214
|
},
|
|
1214
1215
|
)
|
|
1215
1216
|
UpdateConnectorRequestRequestTypeDef = TypedDict(
|
|
@@ -1603,6 +1604,7 @@ DescribedServerTypeDef = TypedDict(
|
|
|
1603
1604
|
"WorkflowDetails": NotRequired[WorkflowDetailsTypeDef],
|
|
1604
1605
|
"StructuredLogDestinations": NotRequired[List[str]],
|
|
1605
1606
|
"S3StorageOptions": NotRequired[S3StorageOptionsTypeDef],
|
|
1607
|
+
"As2ServiceManagedEgressIpAddresses": NotRequired[List[str]],
|
|
1606
1608
|
},
|
|
1607
1609
|
)
|
|
1608
1610
|
UpdateServerRequestRequestTypeDef = TypedDict(
|
mypy_boto3_transfer/version.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mypy-boto3-transfer
|
|
3
|
-
Version: 1.34.
|
|
4
|
-
Summary: Type annotations for boto3.Transfer 1.34.
|
|
3
|
+
Version: 1.34.59
|
|
4
|
+
Summary: Type annotations for boto3.Transfer 1.34.59 service generated with mypy-boto3-builder 7.23.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
|
|
@@ -17,7 +17,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
17
17
|
Classifier: Natural Language :: English
|
|
18
18
|
Classifier: Operating System :: OS Independent
|
|
19
19
|
Classifier: Programming Language :: Python :: 3
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.7
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.8
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.9
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.10
|
|
@@ -26,8 +25,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
26
25
|
Classifier: Programming Language :: Python :: 3.13
|
|
27
26
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
28
27
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
|
-
Classifier: Typing ::
|
|
30
|
-
Requires-Python: >=3.
|
|
28
|
+
Classifier: Typing :: Stubs Only
|
|
29
|
+
Requires-Python: >=3.8
|
|
31
30
|
Description-Content-Type: text/markdown
|
|
32
31
|
License-File: LICENSE
|
|
33
32
|
Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
@@ -44,7 +43,7 @@ Requires-Dist: typing-extensions >=4.1.0 ; python_version < "3.12"
|
|
|
44
43
|

|
|
45
44
|
|
|
46
45
|
Type annotations for
|
|
47
|
-
[boto3.Transfer 1.34.
|
|
46
|
+
[boto3.Transfer 1.34.59](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer)
|
|
48
47
|
service compatible with [VSCode](https://code.visualstudio.com/),
|
|
49
48
|
[PyCharm](https://www.jetbrains.com/pycharm/),
|
|
50
49
|
[Emacs](https://www.gnu.org/software/emacs/),
|
|
@@ -53,7 +52,7 @@ service compatible with [VSCode](https://code.visualstudio.com/),
|
|
|
53
52
|
[pyright](https://github.com/microsoft/pyright) and other tools.
|
|
54
53
|
|
|
55
54
|
Generated by
|
|
56
|
-
[mypy-boto3-builder 7.
|
|
55
|
+
[mypy-boto3-builder 7.23.2](https://github.com/youtype/mypy_boto3_builder).
|
|
57
56
|
|
|
58
57
|
More information can be found on
|
|
59
58
|
[boto3-stubs](https://pypi.org/project/boto3-stubs/) page and in
|
|
@@ -0,0 +1,20 @@
|
|
|
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=Elr6rmVI4ra5XqMsL3P7ZwC5eG5Lo7YYfdysRhP4N8Q,923
|
|
4
|
+
mypy_boto3_transfer/client.py,sha256=eZw0wnOMjfVEWfAGbHPCqJHF1yrI60ovp1MJqaubL8o,47383
|
|
5
|
+
mypy_boto3_transfer/client.pyi,sha256=-hymwZWa6L5Qj6L_evxLbLD3rL9z7lpj0IW9BHX7DVE,47380
|
|
6
|
+
mypy_boto3_transfer/literals.py,sha256=b_6meyt64w0mdfPhe3ZpLY_8iDj1Oit5GbBGyjTUCzk,13041
|
|
7
|
+
mypy_boto3_transfer/literals.pyi,sha256=b_6meyt64w0mdfPhe3ZpLY_8iDj1Oit5GbBGyjTUCzk,13041
|
|
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=_WZo0YNp8nbXdAGIu9z13TG93l9r4qtGOdoYDVJ7J9o,51272
|
|
12
|
+
mypy_boto3_transfer/type_defs.pyi,sha256=_WZo0YNp8nbXdAGIu9z13TG93l9r4qtGOdoYDVJ7J9o,51272
|
|
13
|
+
mypy_boto3_transfer/version.py,sha256=lrWYu2KCRuOxPD0ElgxZMfGnkkaxCD94YhVIe1QsWCg,62
|
|
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.34.59.dist-info/LICENSE,sha256=eQDadZQZ3vRCiNF510ZT4yJV2zgo4000AOBoDRZyvKg,1070
|
|
17
|
+
mypy_boto3_transfer-1.34.59.dist-info/METADATA,sha256=SqdKPutzkARkNbdHkVb_lrukqTYxX9yCqwDU0qrrUKc,14677
|
|
18
|
+
mypy_boto3_transfer-1.34.59.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
19
|
+
mypy_boto3_transfer-1.34.59.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
+
mypy_boto3_transfer-1.34.59.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
mypy_boto3_transfer/__init__.py,sha256=x4u5qax3YOGld7LCwMTVPFLxjVQy9egBijFKoqfWmIQ,2855
|
|
2
|
-
mypy_boto3_transfer/__init__.pyi,sha256=7s1QISzwzsnzQHCfQvKCVBlPmRIKBl0DKPIWKK0x-cw,2854
|
|
3
|
-
mypy_boto3_transfer/__main__.py,sha256=O7KGOQ8b5Bt4s_PmoGVDe7dZqNB2bmYYn_o8j9PwUeQ,909
|
|
4
|
-
mypy_boto3_transfer/client.py,sha256=NuN9KzYUqrYOr0FVd_r4GcxXtLGOOtlAt1t09i963Wo,47367
|
|
5
|
-
mypy_boto3_transfer/client.pyi,sha256=065uoNSxKEY6R49S4uffzNCT_q6eedxTJEDvUB-fg_A,47363
|
|
6
|
-
mypy_boto3_transfer/literals.py,sha256=CyXS_A1qfhf0vBB16jV1j_6COFxaKJAnf4k2OBC9nVE,12934
|
|
7
|
-
mypy_boto3_transfer/literals.pyi,sha256=2CrHXZWeLplfmNUZafRg7CHkegQKSVSMUArSOrKQ1qA,12932
|
|
8
|
-
mypy_boto3_transfer/paginator.py,sha256=fSuqUc7poSxNugmHv_S68jPl8BGmgvbf004UgFwt-Mc,12189
|
|
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=Gh7TYDv75BSDElf9KrU8wQJGsRe9Exj2qocv5R8bpZg,51123
|
|
12
|
-
mypy_boto3_transfer/type_defs.pyi,sha256=Cp-r-CCrXAR8AqoTFv1x7zjzVf9yUdSGY90yiIGdJTQ,51122
|
|
13
|
-
mypy_boto3_transfer/version.py,sha256=8Qbu8HOCjrY6O2_gOYfRFBCem64Ka_MtjvbfMGE_iFg,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.34.0.dist-info/LICENSE,sha256=v0rThCyxXzUO7rKg6RM8RmmNKO6EvsBx_mdNoXUPxAU,1070
|
|
17
|
-
mypy_boto3_transfer-1.34.0.dist-info/METADATA,sha256=LCrf89rKIQbKN-2A_4XSP7RgE-eW0WnSsLJsHjgQjDo,14719
|
|
18
|
-
mypy_boto3_transfer-1.34.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
19
|
-
mypy_boto3_transfer-1.34.0.dist-info/top_level.txt,sha256=mncof3SzY8eCafPLvBkKLLXMmqfJaw-PB_gBYRhC-Kk,20
|
|
20
|
-
mypy_boto3_transfer-1.34.0.dist-info/RECORD,,
|
|
File without changes
|
{mypy_boto3_transfer-1.34.0.dist-info → mypy_boto3_transfer-1.34.59.dist-info}/top_level.txt
RENAMED
|
File without changes
|