mypy-boto3-transfer 1.34.84__py3-none-any.whl → 1.34.108__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.
@@ -10,9 +10,9 @@ def print_info() -> None:
10
10
  Print package info to stdout.
11
11
  """
12
12
  print(
13
- "Type annotations for boto3.Transfer 1.34.84\n"
14
- "Version: 1.34.84\n"
15
- "Builder version: 7.23.2\n"
13
+ "Type annotations for boto3.Transfer 1.34.108\n"
14
+ "Version: 1.34.108\n"
15
+ "Builder version: 7.24.0\n"
16
16
  "Docs: https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer//\n"
17
17
  "Boto3 docs: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer\n"
18
18
  "Other services: https://pypi.org/project/boto3-stubs/\n"
@@ -24,7 +24,7 @@ def print_version() -> None:
24
24
  """
25
25
  Print package version to stdout.
26
26
  """
27
- print("1.34.84")
27
+ print("1.34.108")
28
28
 
29
29
 
30
30
  def main() -> None:
@@ -64,7 +64,7 @@ from .type_defs import (
64
64
  DescribeUserResponseTypeDef,
65
65
  DescribeWorkflowResponseTypeDef,
66
66
  EmptyResponseMetadataTypeDef,
67
- EndpointDetailsTypeDef,
67
+ EndpointDetailsUnionTypeDef,
68
68
  HomeDirectoryMapEntryTypeDef,
69
69
  IdentityProviderDetailsTypeDef,
70
70
  ImportCertificateResponseTypeDef,
@@ -82,10 +82,11 @@ from .type_defs import (
82
82
  ListTagsForResourceResponseTypeDef,
83
83
  ListUsersResponseTypeDef,
84
84
  ListWorkflowsResponseTypeDef,
85
- PosixProfileTypeDef,
86
- ProtocolDetailsTypeDef,
85
+ PosixProfileUnionTypeDef,
86
+ ProtocolDetailsUnionTypeDef,
87
87
  S3StorageOptionsTypeDef,
88
- SftpConnectorConfigTypeDef,
88
+ SftpConnectorConfigUnionTypeDef,
89
+ StartDirectoryListingResponseTypeDef,
89
90
  StartFileTransferResponseTypeDef,
90
91
  TagTypeDef,
91
92
  TestConnectionResponseTypeDef,
@@ -99,8 +100,8 @@ from .type_defs import (
99
100
  UpdateProfileResponseTypeDef,
100
101
  UpdateServerResponseTypeDef,
101
102
  UpdateUserResponseTypeDef,
102
- WorkflowDetailsTypeDef,
103
- WorkflowStepTypeDef,
103
+ WorkflowDetailsUnionTypeDef,
104
+ WorkflowStepUnionTypeDef,
104
105
  )
105
106
  from .waiter import ServerOfflineWaiter, ServerOnlineWaiter
106
107
 
@@ -176,7 +177,7 @@ class TransferClient(BaseClient):
176
177
  HomeDirectoryType: HomeDirectoryTypeType = ...,
177
178
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
178
179
  Policy: str = ...,
179
- PosixProfile: PosixProfileTypeDef = ...,
180
+ PosixProfile: PosixProfileUnionTypeDef = ...,
180
181
  ) -> CreateAccessResponseTypeDef:
181
182
  """
182
183
  Used by administrators to choose which groups in the directory should have
@@ -214,7 +215,7 @@ class TransferClient(BaseClient):
214
215
  As2Config: As2ConnectorConfigTypeDef = ...,
215
216
  LoggingRole: str = ...,
216
217
  Tags: Sequence[TagTypeDef] = ...,
217
- SftpConfig: SftpConnectorConfigTypeDef = ...,
218
+ SftpConfig: SftpConnectorConfigUnionTypeDef = ...,
218
219
  SecurityPolicyName: str = ...,
219
220
  ) -> CreateConnectorResponseTypeDef:
220
221
  """
@@ -246,7 +247,7 @@ class TransferClient(BaseClient):
246
247
  *,
247
248
  Certificate: str = ...,
248
249
  Domain: DomainType = ...,
249
- EndpointDetails: EndpointDetailsTypeDef = ...,
250
+ EndpointDetails: EndpointDetailsUnionTypeDef = ...,
250
251
  EndpointType: EndpointTypeType = ...,
251
252
  HostKey: str = ...,
252
253
  IdentityProviderDetails: IdentityProviderDetailsTypeDef = ...,
@@ -255,10 +256,10 @@ class TransferClient(BaseClient):
255
256
  PostAuthenticationLoginBanner: str = ...,
256
257
  PreAuthenticationLoginBanner: str = ...,
257
258
  Protocols: Sequence[ProtocolType] = ...,
258
- ProtocolDetails: ProtocolDetailsTypeDef = ...,
259
+ ProtocolDetails: ProtocolDetailsUnionTypeDef = ...,
259
260
  SecurityPolicyName: str = ...,
260
261
  Tags: Sequence[TagTypeDef] = ...,
261
- WorkflowDetails: WorkflowDetailsTypeDef = ...,
262
+ WorkflowDetails: WorkflowDetailsUnionTypeDef = ...,
262
263
  StructuredLogDestinations: Sequence[str] = ...,
263
264
  S3StorageOptions: S3StorageOptionsTypeDef = ...,
264
265
  ) -> CreateServerResponseTypeDef:
@@ -281,7 +282,7 @@ class TransferClient(BaseClient):
281
282
  HomeDirectoryType: HomeDirectoryTypeType = ...,
282
283
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
283
284
  Policy: str = ...,
284
- PosixProfile: PosixProfileTypeDef = ...,
285
+ PosixProfile: PosixProfileUnionTypeDef = ...,
285
286
  SshPublicKeyBody: str = ...,
286
287
  Tags: Sequence[TagTypeDef] = ...,
287
288
  ) -> CreateUserResponseTypeDef:
@@ -297,9 +298,9 @@ class TransferClient(BaseClient):
297
298
  def create_workflow(
298
299
  self,
299
300
  *,
300
- Steps: Sequence[WorkflowStepTypeDef],
301
+ Steps: Sequence[WorkflowStepUnionTypeDef],
301
302
  Description: str = ...,
302
- OnExceptionSteps: Sequence[WorkflowStepTypeDef] = ...,
303
+ OnExceptionSteps: Sequence[WorkflowStepUnionTypeDef] = ...,
303
304
  Tags: Sequence[TagTypeDef] = ...,
304
305
  ) -> CreateWorkflowResponseTypeDef:
305
306
  """
@@ -706,6 +707,21 @@ class TransferClient(BaseClient):
706
707
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#send_workflow_step_state)
707
708
  """
708
709
 
710
+ def start_directory_listing(
711
+ self,
712
+ *,
713
+ ConnectorId: str,
714
+ RemoteDirectoryPath: str,
715
+ OutputDirectoryPath: str,
716
+ MaxItems: int = ...,
717
+ ) -> StartDirectoryListingResponseTypeDef:
718
+ """
719
+ Retrieves a list of the contents of a directory from a remote SFTP server.
720
+
721
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Client.start_directory_listing)
722
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#start_directory_listing)
723
+ """
724
+
709
725
  def start_file_transfer(
710
726
  self,
711
727
  *,
@@ -798,7 +814,7 @@ class TransferClient(BaseClient):
798
814
  HomeDirectoryType: HomeDirectoryTypeType = ...,
799
815
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
800
816
  Policy: str = ...,
801
- PosixProfile: PosixProfileTypeDef = ...,
817
+ PosixProfile: PosixProfileUnionTypeDef = ...,
802
818
  Role: str = ...,
803
819
  ) -> UpdateAccessResponseTypeDef:
804
820
  """
@@ -852,7 +868,7 @@ class TransferClient(BaseClient):
852
868
  As2Config: As2ConnectorConfigTypeDef = ...,
853
869
  AccessRole: str = ...,
854
870
  LoggingRole: str = ...,
855
- SftpConfig: SftpConnectorConfigTypeDef = ...,
871
+ SftpConfig: SftpConnectorConfigUnionTypeDef = ...,
856
872
  SecurityPolicyName: str = ...,
857
873
  ) -> UpdateConnectorResponseTypeDef:
858
874
  """
@@ -889,8 +905,8 @@ class TransferClient(BaseClient):
889
905
  *,
890
906
  ServerId: str,
891
907
  Certificate: str = ...,
892
- ProtocolDetails: ProtocolDetailsTypeDef = ...,
893
- EndpointDetails: EndpointDetailsTypeDef = ...,
908
+ ProtocolDetails: ProtocolDetailsUnionTypeDef = ...,
909
+ EndpointDetails: EndpointDetailsUnionTypeDef = ...,
894
910
  EndpointType: EndpointTypeType = ...,
895
911
  HostKey: str = ...,
896
912
  IdentityProviderDetails: IdentityProviderDetailsTypeDef = ...,
@@ -899,7 +915,7 @@ class TransferClient(BaseClient):
899
915
  PreAuthenticationLoginBanner: str = ...,
900
916
  Protocols: Sequence[ProtocolType] = ...,
901
917
  SecurityPolicyName: str = ...,
902
- WorkflowDetails: WorkflowDetailsTypeDef = ...,
918
+ WorkflowDetails: WorkflowDetailsUnionTypeDef = ...,
903
919
  StructuredLogDestinations: Sequence[str] = ...,
904
920
  S3StorageOptions: S3StorageOptionsTypeDef = ...,
905
921
  ) -> UpdateServerResponseTypeDef:
@@ -921,7 +937,7 @@ class TransferClient(BaseClient):
921
937
  HomeDirectoryType: HomeDirectoryTypeType = ...,
922
938
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
923
939
  Policy: str = ...,
924
- PosixProfile: PosixProfileTypeDef = ...,
940
+ PosixProfile: PosixProfileUnionTypeDef = ...,
925
941
  Role: str = ...,
926
942
  ) -> UpdateUserResponseTypeDef:
927
943
  """
@@ -64,7 +64,7 @@ from .type_defs import (
64
64
  DescribeUserResponseTypeDef,
65
65
  DescribeWorkflowResponseTypeDef,
66
66
  EmptyResponseMetadataTypeDef,
67
- EndpointDetailsTypeDef,
67
+ EndpointDetailsUnionTypeDef,
68
68
  HomeDirectoryMapEntryTypeDef,
69
69
  IdentityProviderDetailsTypeDef,
70
70
  ImportCertificateResponseTypeDef,
@@ -82,10 +82,11 @@ from .type_defs import (
82
82
  ListTagsForResourceResponseTypeDef,
83
83
  ListUsersResponseTypeDef,
84
84
  ListWorkflowsResponseTypeDef,
85
- PosixProfileTypeDef,
86
- ProtocolDetailsTypeDef,
85
+ PosixProfileUnionTypeDef,
86
+ ProtocolDetailsUnionTypeDef,
87
87
  S3StorageOptionsTypeDef,
88
- SftpConnectorConfigTypeDef,
88
+ SftpConnectorConfigUnionTypeDef,
89
+ StartDirectoryListingResponseTypeDef,
89
90
  StartFileTransferResponseTypeDef,
90
91
  TagTypeDef,
91
92
  TestConnectionResponseTypeDef,
@@ -99,8 +100,8 @@ from .type_defs import (
99
100
  UpdateProfileResponseTypeDef,
100
101
  UpdateServerResponseTypeDef,
101
102
  UpdateUserResponseTypeDef,
102
- WorkflowDetailsTypeDef,
103
- WorkflowStepTypeDef,
103
+ WorkflowDetailsUnionTypeDef,
104
+ WorkflowStepUnionTypeDef,
104
105
  )
105
106
  from .waiter import ServerOfflineWaiter, ServerOnlineWaiter
106
107
 
@@ -173,7 +174,7 @@ class TransferClient(BaseClient):
173
174
  HomeDirectoryType: HomeDirectoryTypeType = ...,
174
175
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
175
176
  Policy: str = ...,
176
- PosixProfile: PosixProfileTypeDef = ...,
177
+ PosixProfile: PosixProfileUnionTypeDef = ...,
177
178
  ) -> CreateAccessResponseTypeDef:
178
179
  """
179
180
  Used by administrators to choose which groups in the directory should have
@@ -211,7 +212,7 @@ class TransferClient(BaseClient):
211
212
  As2Config: As2ConnectorConfigTypeDef = ...,
212
213
  LoggingRole: str = ...,
213
214
  Tags: Sequence[TagTypeDef] = ...,
214
- SftpConfig: SftpConnectorConfigTypeDef = ...,
215
+ SftpConfig: SftpConnectorConfigUnionTypeDef = ...,
215
216
  SecurityPolicyName: str = ...,
216
217
  ) -> CreateConnectorResponseTypeDef:
217
218
  """
@@ -243,7 +244,7 @@ class TransferClient(BaseClient):
243
244
  *,
244
245
  Certificate: str = ...,
245
246
  Domain: DomainType = ...,
246
- EndpointDetails: EndpointDetailsTypeDef = ...,
247
+ EndpointDetails: EndpointDetailsUnionTypeDef = ...,
247
248
  EndpointType: EndpointTypeType = ...,
248
249
  HostKey: str = ...,
249
250
  IdentityProviderDetails: IdentityProviderDetailsTypeDef = ...,
@@ -252,10 +253,10 @@ class TransferClient(BaseClient):
252
253
  PostAuthenticationLoginBanner: str = ...,
253
254
  PreAuthenticationLoginBanner: str = ...,
254
255
  Protocols: Sequence[ProtocolType] = ...,
255
- ProtocolDetails: ProtocolDetailsTypeDef = ...,
256
+ ProtocolDetails: ProtocolDetailsUnionTypeDef = ...,
256
257
  SecurityPolicyName: str = ...,
257
258
  Tags: Sequence[TagTypeDef] = ...,
258
- WorkflowDetails: WorkflowDetailsTypeDef = ...,
259
+ WorkflowDetails: WorkflowDetailsUnionTypeDef = ...,
259
260
  StructuredLogDestinations: Sequence[str] = ...,
260
261
  S3StorageOptions: S3StorageOptionsTypeDef = ...,
261
262
  ) -> CreateServerResponseTypeDef:
@@ -278,7 +279,7 @@ class TransferClient(BaseClient):
278
279
  HomeDirectoryType: HomeDirectoryTypeType = ...,
279
280
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
280
281
  Policy: str = ...,
281
- PosixProfile: PosixProfileTypeDef = ...,
282
+ PosixProfile: PosixProfileUnionTypeDef = ...,
282
283
  SshPublicKeyBody: str = ...,
283
284
  Tags: Sequence[TagTypeDef] = ...,
284
285
  ) -> CreateUserResponseTypeDef:
@@ -294,9 +295,9 @@ class TransferClient(BaseClient):
294
295
  def create_workflow(
295
296
  self,
296
297
  *,
297
- Steps: Sequence[WorkflowStepTypeDef],
298
+ Steps: Sequence[WorkflowStepUnionTypeDef],
298
299
  Description: str = ...,
299
- OnExceptionSteps: Sequence[WorkflowStepTypeDef] = ...,
300
+ OnExceptionSteps: Sequence[WorkflowStepUnionTypeDef] = ...,
300
301
  Tags: Sequence[TagTypeDef] = ...,
301
302
  ) -> CreateWorkflowResponseTypeDef:
302
303
  """
@@ -703,6 +704,21 @@ class TransferClient(BaseClient):
703
704
  [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#send_workflow_step_state)
704
705
  """
705
706
 
707
+ def start_directory_listing(
708
+ self,
709
+ *,
710
+ ConnectorId: str,
711
+ RemoteDirectoryPath: str,
712
+ OutputDirectoryPath: str,
713
+ MaxItems: int = ...,
714
+ ) -> StartDirectoryListingResponseTypeDef:
715
+ """
716
+ Retrieves a list of the contents of a directory from a remote SFTP server.
717
+
718
+ [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/transfer.html#Transfer.Client.start_directory_listing)
719
+ [Show boto3-stubs documentation](https://youtype.github.io/boto3_stubs_docs/mypy_boto3_transfer/client/#start_directory_listing)
720
+ """
721
+
706
722
  def start_file_transfer(
707
723
  self,
708
724
  *,
@@ -795,7 +811,7 @@ class TransferClient(BaseClient):
795
811
  HomeDirectoryType: HomeDirectoryTypeType = ...,
796
812
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
797
813
  Policy: str = ...,
798
- PosixProfile: PosixProfileTypeDef = ...,
814
+ PosixProfile: PosixProfileUnionTypeDef = ...,
799
815
  Role: str = ...,
800
816
  ) -> UpdateAccessResponseTypeDef:
801
817
  """
@@ -849,7 +865,7 @@ class TransferClient(BaseClient):
849
865
  As2Config: As2ConnectorConfigTypeDef = ...,
850
866
  AccessRole: str = ...,
851
867
  LoggingRole: str = ...,
852
- SftpConfig: SftpConnectorConfigTypeDef = ...,
868
+ SftpConfig: SftpConnectorConfigUnionTypeDef = ...,
853
869
  SecurityPolicyName: str = ...,
854
870
  ) -> UpdateConnectorResponseTypeDef:
855
871
  """
@@ -886,8 +902,8 @@ class TransferClient(BaseClient):
886
902
  *,
887
903
  ServerId: str,
888
904
  Certificate: str = ...,
889
- ProtocolDetails: ProtocolDetailsTypeDef = ...,
890
- EndpointDetails: EndpointDetailsTypeDef = ...,
905
+ ProtocolDetails: ProtocolDetailsUnionTypeDef = ...,
906
+ EndpointDetails: EndpointDetailsUnionTypeDef = ...,
891
907
  EndpointType: EndpointTypeType = ...,
892
908
  HostKey: str = ...,
893
909
  IdentityProviderDetails: IdentityProviderDetailsTypeDef = ...,
@@ -896,7 +912,7 @@ class TransferClient(BaseClient):
896
912
  PreAuthenticationLoginBanner: str = ...,
897
913
  Protocols: Sequence[ProtocolType] = ...,
898
914
  SecurityPolicyName: str = ...,
899
- WorkflowDetails: WorkflowDetailsTypeDef = ...,
915
+ WorkflowDetails: WorkflowDetailsUnionTypeDef = ...,
900
916
  StructuredLogDestinations: Sequence[str] = ...,
901
917
  S3StorageOptions: S3StorageOptionsTypeDef = ...,
902
918
  ) -> UpdateServerResponseTypeDef:
@@ -918,7 +934,7 @@ class TransferClient(BaseClient):
918
934
  HomeDirectoryType: HomeDirectoryTypeType = ...,
919
935
  HomeDirectoryMappings: Sequence[HomeDirectoryMapEntryTypeDef] = ...,
920
936
  Policy: str = ...,
921
- PosixProfile: PosixProfileTypeDef = ...,
937
+ PosixProfile: PosixProfileUnionTypeDef = ...,
922
938
  Role: str = ...,
923
939
  ) -> UpdateUserResponseTypeDef:
924
940
  """
@@ -436,6 +436,7 @@ ServiceName = Literal[
436
436
  "route53-recovery-control-config",
437
437
  "route53-recovery-readiness",
438
438
  "route53domains",
439
+ "route53profiles",
439
440
  "route53resolver",
440
441
  "rum",
441
442
  "s3",
@@ -551,6 +552,7 @@ RegionName = Literal[
551
552
  "ap-southeast-3",
552
553
  "ap-southeast-4",
553
554
  "ca-central-1",
555
+ "ca-west-1",
554
556
  "eu-central-1",
555
557
  "eu-central-2",
556
558
  "eu-north-1",
@@ -436,6 +436,7 @@ ServiceName = Literal[
436
436
  "route53-recovery-control-config",
437
437
  "route53-recovery-readiness",
438
438
  "route53domains",
439
+ "route53profiles",
439
440
  "route53resolver",
440
441
  "rum",
441
442
  "s3",
@@ -551,6 +552,7 @@ RegionName = Literal[
551
552
  "ap-southeast-3",
552
553
  "ap-southeast-4",
553
554
  "ca-central-1",
555
+ "ca-west-1",
554
556
  "eu-central-1",
555
557
  "eu-central-2",
556
558
  "eu-north-1",