aws-sdk-transfer 1.52.0 → 1.55.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transfer/client.rb +42 -21
- data/lib/aws-sdk-transfer/client_api.rb +2 -0
- data/lib/aws-sdk-transfer/types.rb +83 -32
- data/lib/aws-sdk-transfer.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62b5d0ac159e15bf5798644c697ad294c6f80b8acd1646184ffc4d8e59348674
|
4
|
+
data.tar.gz: be3190d2ad62cf50d55bd2323e1ce6c0d85e6d7b6f2252d04cb00451d9162d64
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebb9965f55002d391809c579488c79896b624d3f7452d48ac1970d424c32f0b6ac150fb75339a734a6553f04f96cb75b9c6c339630b9639f75a8da90d2a8ce1d
|
7
|
+
data.tar.gz: ccfd528219dcf37f60f0dd5181a4fb80fa115a5405fc91b1fce2c09fdc1bfbf0dcdb5a945196d01ddcd056ef5a8e26ea6237e498c51322ac1b3f868dfc70e5ea
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.55.0 (2022-05-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS Transfer Family now supports SetStat server configuration option, which provides the ability to ignore SetStat command issued by file transfer clients, enabling customers to upload files without any errors.
|
8
|
+
|
9
|
+
1.54.0 (2022-05-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - AWS Transfer Family now accepts ECDSA keys for server host keys
|
13
|
+
|
14
|
+
1.53.0 (2022-04-19)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release contains corrected HomeDirectoryMappings examples for several API functions: CreateAccess, UpdateAccess, CreateUser, and UpdateUser,.
|
18
|
+
|
4
19
|
1.52.0 (2022-03-23)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.55.0
|
@@ -406,7 +406,7 @@ module Aws::Transfer
|
|
406
406
|
#
|
407
407
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
408
408
|
#
|
409
|
-
# `[ \{ "Entry
|
409
|
+
# `[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]`
|
410
410
|
#
|
411
411
|
# @option params [String] :policy
|
412
412
|
# A session policy for your user so that you can use the same IAM role
|
@@ -708,13 +708,22 @@ module Aws::Transfer
|
|
708
708
|
# @option params [Types::ProtocolDetails] :protocol_details
|
709
709
|
# The protocol settings that are configured for your server.
|
710
710
|
#
|
711
|
-
# Use the `PassiveIp` parameter to indicate passive mode (for FTP and
|
712
|
-
#
|
713
|
-
#
|
711
|
+
# * Use the `PassiveIp` parameter to indicate passive mode (for FTP and
|
712
|
+
# FTPS protocols). Enter a single dotted-quad IPv4 address, such as
|
713
|
+
# the external IP address of a firewall, router, or load balancer.
|
714
714
|
#
|
715
|
-
# Use the `
|
716
|
-
#
|
717
|
-
#
|
715
|
+
# * Use the `SetStatOption` to ignore the error that is generated when
|
716
|
+
# the client attempts to use SETSTAT on a file you are uploading to an
|
717
|
+
# S3 bucket. Set the value to `ENABLE_NO_OP` to have the Transfer
|
718
|
+
# Family server ignore the SETSTAT command, and upload files without
|
719
|
+
# needing to make any changes to your SFTP client. Note that with
|
720
|
+
# `SetStatOption` set to `ENABLE_NO_OP`, Transfer generates a log
|
721
|
+
# entry to CloudWatch Logs, so you can determine when the client is
|
722
|
+
# making a SETSTAT call.
|
723
|
+
#
|
724
|
+
# * Use the `TlsSessionResumptionMode` parameter to determine whether or
|
725
|
+
# not your Transfer server resumes recent, negotiated sessions through
|
726
|
+
# a unique session ID.
|
718
727
|
#
|
719
728
|
# @option params [String] :security_policy_name
|
720
729
|
# Specifies the name of the security policy that is attached to the
|
@@ -759,6 +768,7 @@ module Aws::Transfer
|
|
759
768
|
# protocol_details: {
|
760
769
|
# passive_ip: "PassiveIp",
|
761
770
|
# tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
|
771
|
+
# set_stat_option: "DEFAULT", # accepts DEFAULT, ENABLE_NO_OP
|
762
772
|
# },
|
763
773
|
# security_policy_name: "SecurityPolicyName",
|
764
774
|
# tags: [
|
@@ -836,7 +846,7 @@ module Aws::Transfer
|
|
836
846
|
#
|
837
847
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
838
848
|
#
|
839
|
-
# `[ \{ "Entry
|
849
|
+
# `[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]`
|
840
850
|
#
|
841
851
|
# @option params [String] :policy
|
842
852
|
# A session policy for your user so that you can use the same IAM role
|
@@ -970,13 +980,13 @@ module Aws::Transfer
|
|
970
980
|
# The `TYPE` specifies which of the following actions is being taken for
|
971
981
|
# this step.
|
972
982
|
#
|
973
|
-
# * *
|
983
|
+
# * *COPY*\: copy the file to another location
|
974
984
|
#
|
975
|
-
# * *
|
985
|
+
# * *CUSTOM*\: custom step with a lambda target
|
976
986
|
#
|
977
|
-
# * *
|
987
|
+
# * *DELETE*\: delete the file
|
978
988
|
#
|
979
|
-
# * *
|
989
|
+
# * *TAG*\: add a tag to the file
|
980
990
|
#
|
981
991
|
# <note markdown="1"> Currently, copying and tagging are supported only on S3.
|
982
992
|
#
|
@@ -1466,6 +1476,7 @@ module Aws::Transfer
|
|
1466
1476
|
# resp.server.certificate #=> String
|
1467
1477
|
# resp.server.protocol_details.passive_ip #=> String
|
1468
1478
|
# resp.server.protocol_details.tls_session_resumption_mode #=> String, one of "DISABLED", "ENABLED", "ENFORCED"
|
1479
|
+
# resp.server.protocol_details.set_stat_option #=> String, one of "DEFAULT", "ENABLE_NO_OP"
|
1469
1480
|
# resp.server.domain #=> String, one of "S3", "EFS"
|
1470
1481
|
# resp.server.endpoint_details.address_allocation_ids #=> Array
|
1471
1482
|
# resp.server.endpoint_details.address_allocation_ids[0] #=> String
|
@@ -2359,7 +2370,7 @@ module Aws::Transfer
|
|
2359
2370
|
#
|
2360
2371
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
2361
2372
|
#
|
2362
|
-
# `[ \{ "Entry
|
2373
|
+
# `[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]`
|
2363
2374
|
#
|
2364
2375
|
# @option params [String] :policy
|
2365
2376
|
# A session policy for your user so that you can use the same IAM role
|
@@ -2518,13 +2529,22 @@ module Aws::Transfer
|
|
2518
2529
|
# @option params [Types::ProtocolDetails] :protocol_details
|
2519
2530
|
# The protocol settings that are configured for your server.
|
2520
2531
|
#
|
2521
|
-
# Use the `PassiveIp` parameter to indicate passive mode (for FTP and
|
2522
|
-
#
|
2523
|
-
#
|
2532
|
+
# * Use the `PassiveIp` parameter to indicate passive mode (for FTP and
|
2533
|
+
# FTPS protocols). Enter a single dotted-quad IPv4 address, such as
|
2534
|
+
# the external IP address of a firewall, router, or load balancer.
|
2535
|
+
#
|
2536
|
+
# * Use the `SetStatOption` to ignore the error that is generated when
|
2537
|
+
# the client attempts to use SETSTAT on a file you are uploading to an
|
2538
|
+
# S3 bucket. Set the value to `ENABLE_NO_OP` to have the Transfer
|
2539
|
+
# Family server ignore the SETSTAT command, and upload files without
|
2540
|
+
# needing to make any changes to your SFTP client. Note that with
|
2541
|
+
# `SetStatOption` set to `ENABLE_NO_OP`, Transfer generates a log
|
2542
|
+
# entry to CloudWatch Logs, so you can determine when the client is
|
2543
|
+
# making a SETSTAT call.
|
2524
2544
|
#
|
2525
|
-
# Use the `TlsSessionResumptionMode` parameter to determine whether or
|
2526
|
-
#
|
2527
|
-
#
|
2545
|
+
# * Use the `TlsSessionResumptionMode` parameter to determine whether or
|
2546
|
+
# not your Transfer server resumes recent, negotiated sessions through
|
2547
|
+
# a unique session ID.
|
2528
2548
|
#
|
2529
2549
|
# @option params [Types::EndpointDetails] :endpoint_details
|
2530
2550
|
# The virtual private cloud (VPC) endpoint settings that are configured
|
@@ -2664,6 +2684,7 @@ module Aws::Transfer
|
|
2664
2684
|
# protocol_details: {
|
2665
2685
|
# passive_ip: "PassiveIp",
|
2666
2686
|
# tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
|
2687
|
+
# set_stat_option: "DEFAULT", # accepts DEFAULT, ENABLE_NO_OP
|
2667
2688
|
# },
|
2668
2689
|
# endpoint_details: {
|
2669
2690
|
# address_allocation_ids: ["AddressAllocationId"],
|
@@ -2753,7 +2774,7 @@ module Aws::Transfer
|
|
2753
2774
|
#
|
2754
2775
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
2755
2776
|
#
|
2756
|
-
# `[ \{ "Entry
|
2777
|
+
# `[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]`
|
2757
2778
|
#
|
2758
2779
|
# @option params [String] :policy
|
2759
2780
|
# A session policy for your user so that you can use the same IAM role
|
@@ -2866,7 +2887,7 @@ module Aws::Transfer
|
|
2866
2887
|
params: params,
|
2867
2888
|
config: config)
|
2868
2889
|
context[:gem_name] = 'aws-sdk-transfer'
|
2869
|
-
context[:gem_version] = '1.
|
2890
|
+
context[:gem_version] = '1.55.0'
|
2870
2891
|
Seahorse::Client::Request.new(handlers, context)
|
2871
2892
|
end
|
2872
2893
|
|
@@ -165,6 +165,7 @@ module Aws::Transfer
|
|
165
165
|
ServiceMetadata = Shapes::StructureShape.new(name: 'ServiceMetadata')
|
166
166
|
ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
|
167
167
|
SessionId = Shapes::StringShape.new(name: 'SessionId')
|
168
|
+
SetStatOption = Shapes::StringShape.new(name: 'SetStatOption')
|
168
169
|
SourceFileLocation = Shapes::StringShape.new(name: 'SourceFileLocation')
|
169
170
|
SourceIp = Shapes::StringShape.new(name: 'SourceIp')
|
170
171
|
SshPublicKey = Shapes::StructureShape.new(name: 'SshPublicKey')
|
@@ -612,6 +613,7 @@ module Aws::Transfer
|
|
612
613
|
|
613
614
|
ProtocolDetails.add_member(:passive_ip, Shapes::ShapeRef.new(shape: PassiveIp, location_name: "PassiveIp"))
|
614
615
|
ProtocolDetails.add_member(:tls_session_resumption_mode, Shapes::ShapeRef.new(shape: TlsSessionResumptionMode, location_name: "TlsSessionResumptionMode"))
|
616
|
+
ProtocolDetails.add_member(:set_stat_option, Shapes::ShapeRef.new(shape: SetStatOption, location_name: "SetStatOption"))
|
615
617
|
ProtocolDetails.struct_class = Types::ProtocolDetails
|
616
618
|
|
617
619
|
Protocols.member = Shapes::ShapeRef.new(shape: Protocol)
|
@@ -161,7 +161,7 @@ module Aws::Transfer
|
|
161
161
|
#
|
162
162
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
163
163
|
#
|
164
|
-
# `[ \{ "Entry
|
164
|
+
# `[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]`
|
165
165
|
# @return [Array<Types::HomeDirectoryMapEntry>]
|
166
166
|
#
|
167
167
|
# @!attribute [rw] policy
|
@@ -300,6 +300,7 @@ module Aws::Transfer
|
|
300
300
|
# protocol_details: {
|
301
301
|
# passive_ip: "PassiveIp",
|
302
302
|
# tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
|
303
|
+
# set_stat_option: "DEFAULT", # accepts DEFAULT, ENABLE_NO_OP
|
303
304
|
# },
|
304
305
|
# security_policy_name: "SecurityPolicyName",
|
305
306
|
# tags: [
|
@@ -519,13 +520,23 @@ module Aws::Transfer
|
|
519
520
|
# @!attribute [rw] protocol_details
|
520
521
|
# The protocol settings that are configured for your server.
|
521
522
|
#
|
522
|
-
# Use the `PassiveIp` parameter to indicate passive mode (for FTP
|
523
|
-
#
|
524
|
-
#
|
525
|
-
#
|
526
|
-
#
|
527
|
-
#
|
528
|
-
#
|
523
|
+
# * Use the `PassiveIp` parameter to indicate passive mode (for FTP
|
524
|
+
# and FTPS protocols). Enter a single dotted-quad IPv4 address, such
|
525
|
+
# as the external IP address of a firewall, router, or load
|
526
|
+
# balancer.
|
527
|
+
#
|
528
|
+
# * Use the `SetStatOption` to ignore the error that is generated when
|
529
|
+
# the client attempts to use SETSTAT on a file you are uploading to
|
530
|
+
# an S3 bucket. Set the value to `ENABLE_NO_OP` to have the Transfer
|
531
|
+
# Family server ignore the SETSTAT command, and upload files without
|
532
|
+
# needing to make any changes to your SFTP client. Note that with
|
533
|
+
# `SetStatOption` set to `ENABLE_NO_OP`, Transfer generates a log
|
534
|
+
# entry to CloudWatch Logs, so you can determine when the client is
|
535
|
+
# making a SETSTAT call.
|
536
|
+
#
|
537
|
+
# * Use the `TlsSessionResumptionMode` parameter to determine whether
|
538
|
+
# or not your Transfer server resumes recent, negotiated sessions
|
539
|
+
# through a unique session ID.
|
529
540
|
# @return [Types::ProtocolDetails]
|
530
541
|
#
|
531
542
|
# @!attribute [rw] security_policy_name
|
@@ -646,7 +657,7 @@ module Aws::Transfer
|
|
646
657
|
#
|
647
658
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
648
659
|
#
|
649
|
-
# `[ \{ "Entry
|
660
|
+
# `[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]`
|
650
661
|
# @return [Array<Types::HomeDirectoryMapEntry>]
|
651
662
|
#
|
652
663
|
# @!attribute [rw] policy
|
@@ -864,13 +875,13 @@ module Aws::Transfer
|
|
864
875
|
# The `TYPE` specifies which of the following actions is being taken
|
865
876
|
# for this step.
|
866
877
|
#
|
867
|
-
# * *
|
878
|
+
# * *COPY*\: copy the file to another location
|
868
879
|
#
|
869
|
-
# * *
|
880
|
+
# * *CUSTOM*\: custom step with a lambda target
|
870
881
|
#
|
871
|
-
# * *
|
882
|
+
# * *DELETE*\: delete the file
|
872
883
|
#
|
873
|
-
# * *
|
884
|
+
# * *TAG*\: add a tag to the file
|
874
885
|
#
|
875
886
|
# <note markdown="1"> Currently, copying and tagging are supported only on S3.
|
876
887
|
#
|
@@ -2133,13 +2144,13 @@ module Aws::Transfer
|
|
2133
2144
|
# @!attribute [rw] step_type
|
2134
2145
|
# One of the available step types.
|
2135
2146
|
#
|
2136
|
-
# * *
|
2147
|
+
# * *COPY*\: copy the file to another location
|
2137
2148
|
#
|
2138
|
-
# * *
|
2149
|
+
# * *CUSTOM*\: custom step with a lambda target
|
2139
2150
|
#
|
2140
|
-
# * *
|
2151
|
+
# * *DELETE*\: delete the file
|
2141
2152
|
#
|
2142
|
-
# * *
|
2153
|
+
# * *TAG*\: add a tag to the file
|
2143
2154
|
# @return [String]
|
2144
2155
|
#
|
2145
2156
|
# @!attribute [rw] outputs
|
@@ -2187,7 +2198,7 @@ module Aws::Transfer
|
|
2187
2198
|
#
|
2188
2199
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
2189
2200
|
#
|
2190
|
-
# `[ \{ "Entry
|
2201
|
+
# `[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]`
|
2191
2202
|
#
|
2192
2203
|
# @note When making an API call, you may pass HomeDirectoryMapEntry
|
2193
2204
|
# data as a hash:
|
@@ -3156,6 +3167,7 @@ module Aws::Transfer
|
|
3156
3167
|
# {
|
3157
3168
|
# passive_ip: "PassiveIp",
|
3158
3169
|
# tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
|
3170
|
+
# set_stat_option: "DEFAULT", # accepts DEFAULT, ENABLE_NO_OP
|
3159
3171
|
# }
|
3160
3172
|
#
|
3161
3173
|
# @!attribute [rw] passive_ip
|
@@ -3214,11 +3226,39 @@ module Aws::Transfer
|
|
3214
3226
|
# </note>
|
3215
3227
|
# @return [String]
|
3216
3228
|
#
|
3229
|
+
# @!attribute [rw] set_stat_option
|
3230
|
+
# Use the `SetStatOption` to ignore the error that is generated when
|
3231
|
+
# the client attempts to use SETSTAT on a file you are uploading to an
|
3232
|
+
# S3 bucket.
|
3233
|
+
#
|
3234
|
+
# Some SFTP file transfer clients can attempt to change the attributes
|
3235
|
+
# of remote files, including timestamp and permissions, using
|
3236
|
+
# commands, such as SETSTAT when uploading the file. However, these
|
3237
|
+
# commands are not compatible with object storage systems, such as
|
3238
|
+
# Amazon S3. Due to this incompatibility, file uploads from these
|
3239
|
+
# clients can result in errors even when the file is otherwise
|
3240
|
+
# successfully uploaded.
|
3241
|
+
#
|
3242
|
+
# Set the value to `ENABLE_NO_OP` to have the Transfer Family server
|
3243
|
+
# ignore the SETSTAT command, and upload files without needing to make
|
3244
|
+
# any changes to your SFTP client. While the `SetStatOption`
|
3245
|
+
# `ENABLE_NO_OP` setting ignores the error, it does generate a log
|
3246
|
+
# entry in CloudWatch Logs, so you can determine when the client is
|
3247
|
+
# making a SETSTAT call.
|
3248
|
+
#
|
3249
|
+
# <note markdown="1"> If you want to preserve the original timestamp for your file, and
|
3250
|
+
# modify other file attributes using SETSTAT, you can use Amazon EFS
|
3251
|
+
# as backend storage with Transfer Family.
|
3252
|
+
#
|
3253
|
+
# </note>
|
3254
|
+
# @return [String]
|
3255
|
+
#
|
3217
3256
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/ProtocolDetails AWS API Documentation
|
3218
3257
|
#
|
3219
3258
|
class ProtocolDetails < Struct.new(
|
3220
3259
|
:passive_ip,
|
3221
|
-
:tls_session_resumption_mode
|
3260
|
+
:tls_session_resumption_mode,
|
3261
|
+
:set_stat_option)
|
3222
3262
|
SENSITIVE = []
|
3223
3263
|
include Aws::Structure
|
3224
3264
|
end
|
@@ -3818,7 +3858,7 @@ module Aws::Transfer
|
|
3818
3858
|
#
|
3819
3859
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
3820
3860
|
#
|
3821
|
-
# `[ \{ "Entry
|
3861
|
+
# `[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]`
|
3822
3862
|
# @return [Array<Types::HomeDirectoryMapEntry>]
|
3823
3863
|
#
|
3824
3864
|
# @!attribute [rw] policy
|
@@ -3936,6 +3976,7 @@ module Aws::Transfer
|
|
3936
3976
|
# protocol_details: {
|
3937
3977
|
# passive_ip: "PassiveIp",
|
3938
3978
|
# tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
|
3979
|
+
# set_stat_option: "DEFAULT", # accepts DEFAULT, ENABLE_NO_OP
|
3939
3980
|
# },
|
3940
3981
|
# endpoint_details: {
|
3941
3982
|
# address_allocation_ids: ["AddressAllocationId"],
|
@@ -4013,13 +4054,23 @@ module Aws::Transfer
|
|
4013
4054
|
# @!attribute [rw] protocol_details
|
4014
4055
|
# The protocol settings that are configured for your server.
|
4015
4056
|
#
|
4016
|
-
# Use the `PassiveIp` parameter to indicate passive mode (for FTP
|
4017
|
-
#
|
4018
|
-
#
|
4019
|
-
#
|
4020
|
-
#
|
4021
|
-
#
|
4022
|
-
#
|
4057
|
+
# * Use the `PassiveIp` parameter to indicate passive mode (for FTP
|
4058
|
+
# and FTPS protocols). Enter a single dotted-quad IPv4 address, such
|
4059
|
+
# as the external IP address of a firewall, router, or load
|
4060
|
+
# balancer.
|
4061
|
+
#
|
4062
|
+
# * Use the `SetStatOption` to ignore the error that is generated when
|
4063
|
+
# the client attempts to use SETSTAT on a file you are uploading to
|
4064
|
+
# an S3 bucket. Set the value to `ENABLE_NO_OP` to have the Transfer
|
4065
|
+
# Family server ignore the SETSTAT command, and upload files without
|
4066
|
+
# needing to make any changes to your SFTP client. Note that with
|
4067
|
+
# `SetStatOption` set to `ENABLE_NO_OP`, Transfer generates a log
|
4068
|
+
# entry to CloudWatch Logs, so you can determine when the client is
|
4069
|
+
# making a SETSTAT call.
|
4070
|
+
#
|
4071
|
+
# * Use the `TlsSessionResumptionMode` parameter to determine whether
|
4072
|
+
# or not your Transfer server resumes recent, negotiated sessions
|
4073
|
+
# through a unique session ID.
|
4023
4074
|
# @return [Types::ProtocolDetails]
|
4024
4075
|
#
|
4025
4076
|
# @!attribute [rw] endpoint_details
|
@@ -4257,7 +4308,7 @@ module Aws::Transfer
|
|
4257
4308
|
#
|
4258
4309
|
# The following is an `Entry` and `Target` pair example for `chroot`.
|
4259
4310
|
#
|
4260
|
-
# `[ \{ "Entry
|
4311
|
+
# `[ \{ "Entry": "/", "Target": "/bucket_name/home/mydirectory" \} ]`
|
4261
4312
|
# @return [Array<Types::HomeDirectoryMapEntry>]
|
4262
4313
|
#
|
4263
4314
|
# @!attribute [rw] policy
|
@@ -4499,13 +4550,13 @@ module Aws::Transfer
|
|
4499
4550
|
# @!attribute [rw] type
|
4500
4551
|
# Currently, the following step types are supported.
|
4501
4552
|
#
|
4502
|
-
# * *
|
4553
|
+
# * *COPY*\: copy the file to another location
|
4503
4554
|
#
|
4504
|
-
# * *
|
4555
|
+
# * *CUSTOM*\: custom step with a lambda target
|
4505
4556
|
#
|
4506
|
-
# * *
|
4557
|
+
# * *DELETE*\: delete the file
|
4507
4558
|
#
|
4508
|
-
# * *
|
4559
|
+
# * *TAG*\: add a tag to the file
|
4509
4560
|
# @return [String]
|
4510
4561
|
#
|
4511
4562
|
# @!attribute [rw] copy_step_details
|
data/lib/aws-sdk-transfer.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-transfer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.55.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-05-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|