aws-sdk-transfer 1.54.0 → 1.55.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 65c22200ccc095cf2afc03c93c5381a621da9ae132ebf660e29725359151815e
4
- data.tar.gz: 0e393876399f2472754a661d0235b48c53eaee4db832faabb26210a99dd14983
3
+ metadata.gz: 62b5d0ac159e15bf5798644c697ad294c6f80b8acd1646184ffc4d8e59348674
4
+ data.tar.gz: be3190d2ad62cf50d55bd2323e1ce6c0d85e6d7b6f2252d04cb00451d9162d64
5
5
  SHA512:
6
- metadata.gz: 885c30e162f5be6b9f0a75cd78bc2071e07c13e31f23e21861188e7016920ca3b22724b015a9bd812498d871903f4424a084752951150ede299d4608163397ef
7
- data.tar.gz: 908228841afdb842d56e00c206ac1d9f37b6af85c13b2170f7f8926f2d32dbe122187a2b51be587ed97a37ce1e8c1093d1f657c5ed84f68364bf9af5c694a521
6
+ metadata.gz: ebb9965f55002d391809c579488c79896b624d3f7452d48ac1970d424c32f0b6ac150fb75339a734a6553f04f96cb75b9c6c339630b9639f75a8da90d2a8ce1d
7
+ data.tar.gz: ccfd528219dcf37f60f0dd5181a4fb80fa115a5405fc91b1fce2c09fdc1bfbf0dcdb5a945196d01ddcd056ef5a8e26ea6237e498c51322ac1b3f868dfc70e5ea
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.54.0 (2022-05-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.54.0
1
+ 1.55.0
@@ -608,25 +608,8 @@ module Aws::Transfer
608
608
  # </note>
609
609
  #
610
610
  # @option params [String] :host_key
611
- # The RSA or ECDSA private key to use for your server.
612
- #
613
- # Use the following command to generate an RSA 2048 bit key with no
614
- # passphrase:
615
- #
616
- # `ssh-keygen -t rsa -b 2048 -N "" -m PEM -f my-new-server-key`.
617
- #
618
- # Use a minimum value of 2048 for the `-b` option: you can create a
619
- # stronger key using 3072 or 4096.
620
- #
621
- # Use the following command to generate an ECDSA 256 bit key with no
622
- # passphrase:
623
- #
624
- # `ssh-keygen -t ecdsa -b 256 -N "" -m PEM -f my-new-server-key`.
625
- #
626
- # Valid values for the `-b` option for ECDSA are 256, 384, and 521.
627
- #
628
- # For both of these commands, you can replace *my-new-server-key* with a
629
- # string of your choice.
611
+ # The RSA private key as generated by the `ssh-keygen -N "" -m PEM -f
612
+ # my-new-server-key` command.
630
613
  #
631
614
  # If you aren't planning to migrate existing users from an existing
632
615
  # SFTP-enabled server to a new server, don't update the host key.
@@ -725,13 +708,22 @@ module Aws::Transfer
725
708
  # @option params [Types::ProtocolDetails] :protocol_details
726
709
  # The protocol settings that are configured for your server.
727
710
  #
728
- # Use the `PassiveIp` parameter to indicate passive mode (for FTP and
729
- # FTPS protocols). Enter a single dotted-quad IPv4 address, such as the
730
- # external IP address of a firewall, router, or load balancer.
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
+ #
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.
731
723
  #
732
- # Use the `TlsSessionResumptionMode` parameter to determine whether or
733
- # not your Transfer server resumes recent, negotiated sessions through a
734
- # unique session ID.
724
+ # * Use the `TlsSessionResumptionMode` parameter to determine whether or
725
+ # not your Transfer server resumes recent, negotiated sessions through
726
+ # a unique session ID.
735
727
  #
736
728
  # @option params [String] :security_policy_name
737
729
  # Specifies the name of the security policy that is attached to the
@@ -776,6 +768,7 @@ module Aws::Transfer
776
768
  # protocol_details: {
777
769
  # passive_ip: "PassiveIp",
778
770
  # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
771
+ # set_stat_option: "DEFAULT", # accepts DEFAULT, ENABLE_NO_OP
779
772
  # },
780
773
  # security_policy_name: "SecurityPolicyName",
781
774
  # tags: [
@@ -1483,6 +1476,7 @@ module Aws::Transfer
1483
1476
  # resp.server.certificate #=> String
1484
1477
  # resp.server.protocol_details.passive_ip #=> String
1485
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"
1486
1480
  # resp.server.domain #=> String, one of "S3", "EFS"
1487
1481
  # resp.server.endpoint_details.address_allocation_ids #=> Array
1488
1482
  # resp.server.endpoint_details.address_allocation_ids[0] #=> String
@@ -2535,13 +2529,22 @@ module Aws::Transfer
2535
2529
  # @option params [Types::ProtocolDetails] :protocol_details
2536
2530
  # The protocol settings that are configured for your server.
2537
2531
  #
2538
- # Use the `PassiveIp` parameter to indicate passive mode (for FTP and
2539
- # FTPS protocols). Enter a single dotted-quad IPv4 address, such as the
2540
- # external IP address of a firewall, router, or load balancer.
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.
2541
2535
  #
2542
- # Use the `TlsSessionResumptionMode` parameter to determine whether or
2543
- # not your Transfer server resumes recent, negotiated sessions through a
2544
- # unique session ID.
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.
2544
+ #
2545
+ # * Use the `TlsSessionResumptionMode` parameter to determine whether or
2546
+ # not your Transfer server resumes recent, negotiated sessions through
2547
+ # a unique session ID.
2545
2548
  #
2546
2549
  # @option params [Types::EndpointDetails] :endpoint_details
2547
2550
  # The virtual private cloud (VPC) endpoint settings that are configured
@@ -2579,32 +2582,15 @@ module Aws::Transfer
2579
2582
  # </note>
2580
2583
  #
2581
2584
  # @option params [String] :host_key
2582
- # The RSA or ECDSA private key to use for your server.
2583
- #
2584
- # Use the following command to generate an RSA 2048 bit key with no
2585
- # passphrase:
2586
- #
2587
- # `ssh-keygen -t rsa -b 2048 -N "" -m PEM -f my-new-server-key`.
2588
- #
2589
- # Use a minimum value of 2048 for the `-b` option: you can create a
2590
- # stronger key using 3072 or 4096.
2591
- #
2592
- # Use the following command to generate an ECDSA 256 bit key with no
2593
- # passphrase:
2594
- #
2595
- # `ssh-keygen -t ecdsa -b 256 -N "" -m PEM -f my-new-server-key`.
2596
- #
2597
- # Valid values for the `-b` option for ECDSA are 256, 384, and 521.
2598
- #
2599
- # For both of these commands, you can replace *my-new-server-key* with a
2600
- # string of your choice.
2585
+ # The RSA private key as generated by `ssh-keygen -N "" -m PEM -f
2586
+ # my-new-server-key`.
2601
2587
  #
2602
2588
  # If you aren't planning to migrate existing users from an existing
2603
- # SFTP-enabled server to a new server, don't update the host key.
2604
- # Accidentally changing a server's host key can be disruptive.
2589
+ # server to a new server, don't update the host key. Accidentally
2590
+ # changing a server's host key can be disruptive.
2605
2591
  #
2606
2592
  # For more information, see [Change the host key for your SFTP-enabled
2607
- # server][1] in the *Amazon Web Services Transfer Family User Guide*.
2593
+ # server][1] in the *Amazon Web ServicesTransfer Family User Guide*.
2608
2594
  #
2609
2595
  #
2610
2596
  #
@@ -2698,6 +2684,7 @@ module Aws::Transfer
2698
2684
  # protocol_details: {
2699
2685
  # passive_ip: "PassiveIp",
2700
2686
  # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
2687
+ # set_stat_option: "DEFAULT", # accepts DEFAULT, ENABLE_NO_OP
2701
2688
  # },
2702
2689
  # endpoint_details: {
2703
2690
  # address_allocation_ids: ["AddressAllocationId"],
@@ -2900,7 +2887,7 @@ module Aws::Transfer
2900
2887
  params: params,
2901
2888
  config: config)
2902
2889
  context[:gem_name] = 'aws-sdk-transfer'
2903
- context[:gem_version] = '1.54.0'
2890
+ context[:gem_version] = '1.55.0'
2904
2891
  Seahorse::Client::Request.new(handlers, context)
2905
2892
  end
2906
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)
@@ -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: [
@@ -409,25 +410,8 @@ module Aws::Transfer
409
410
  # @return [String]
410
411
  #
411
412
  # @!attribute [rw] host_key
412
- # The RSA or ECDSA private key to use for your server.
413
- #
414
- # Use the following command to generate an RSA 2048 bit key with no
415
- # passphrase:
416
- #
417
- # `ssh-keygen -t rsa -b 2048 -N "" -m PEM -f my-new-server-key`.
418
- #
419
- # Use a minimum value of 2048 for the `-b` option: you can create a
420
- # stronger key using 3072 or 4096.
421
- #
422
- # Use the following command to generate an ECDSA 256 bit key with no
423
- # passphrase:
424
- #
425
- # `ssh-keygen -t ecdsa -b 256 -N "" -m PEM -f my-new-server-key`.
426
- #
427
- # Valid values for the `-b` option for ECDSA are 256, 384, and 521.
428
- #
429
- # For both of these commands, you can replace *my-new-server-key* with
430
- # a string of your choice.
413
+ # The RSA private key as generated by the `ssh-keygen -N "" -m PEM -f
414
+ # my-new-server-key` command.
431
415
  #
432
416
  # If you aren't planning to migrate existing users from an existing
433
417
  # SFTP-enabled server to a new server, don't update the host key.
@@ -536,13 +520,23 @@ module Aws::Transfer
536
520
  # @!attribute [rw] protocol_details
537
521
  # The protocol settings that are configured for your server.
538
522
  #
539
- # Use the `PassiveIp` parameter to indicate passive mode (for FTP and
540
- # FTPS protocols). Enter a single dotted-quad IPv4 address, such as
541
- # the external IP address of a firewall, router, or load balancer.
542
- #
543
- # Use the `TlsSessionResumptionMode` parameter to determine whether or
544
- # not your Transfer server resumes recent, negotiated sessions through
545
- # a unique session ID.
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.
546
540
  # @return [Types::ProtocolDetails]
547
541
  #
548
542
  # @!attribute [rw] security_policy_name
@@ -3173,6 +3167,7 @@ module Aws::Transfer
3173
3167
  # {
3174
3168
  # passive_ip: "PassiveIp",
3175
3169
  # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
3170
+ # set_stat_option: "DEFAULT", # accepts DEFAULT, ENABLE_NO_OP
3176
3171
  # }
3177
3172
  #
3178
3173
  # @!attribute [rw] passive_ip
@@ -3231,11 +3226,39 @@ module Aws::Transfer
3231
3226
  # </note>
3232
3227
  # @return [String]
3233
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
+ #
3234
3256
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/ProtocolDetails AWS API Documentation
3235
3257
  #
3236
3258
  class ProtocolDetails < Struct.new(
3237
3259
  :passive_ip,
3238
- :tls_session_resumption_mode)
3260
+ :tls_session_resumption_mode,
3261
+ :set_stat_option)
3239
3262
  SENSITIVE = []
3240
3263
  include Aws::Structure
3241
3264
  end
@@ -3953,6 +3976,7 @@ module Aws::Transfer
3953
3976
  # protocol_details: {
3954
3977
  # passive_ip: "PassiveIp",
3955
3978
  # tls_session_resumption_mode: "DISABLED", # accepts DISABLED, ENABLED, ENFORCED
3979
+ # set_stat_option: "DEFAULT", # accepts DEFAULT, ENABLE_NO_OP
3956
3980
  # },
3957
3981
  # endpoint_details: {
3958
3982
  # address_allocation_ids: ["AddressAllocationId"],
@@ -4030,13 +4054,23 @@ module Aws::Transfer
4030
4054
  # @!attribute [rw] protocol_details
4031
4055
  # The protocol settings that are configured for your server.
4032
4056
  #
4033
- # Use the `PassiveIp` parameter to indicate passive mode (for FTP and
4034
- # FTPS protocols). Enter a single dotted-quad IPv4 address, such as
4035
- # the external IP address of a firewall, router, or load balancer.
4036
- #
4037
- # Use the `TlsSessionResumptionMode` parameter to determine whether or
4038
- # not your Transfer server resumes recent, negotiated sessions through
4039
- # a unique session ID.
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.
4040
4074
  # @return [Types::ProtocolDetails]
4041
4075
  #
4042
4076
  # @!attribute [rw] endpoint_details
@@ -4077,32 +4111,15 @@ module Aws::Transfer
4077
4111
  # @return [String]
4078
4112
  #
4079
4113
  # @!attribute [rw] host_key
4080
- # The RSA or ECDSA private key to use for your server.
4081
- #
4082
- # Use the following command to generate an RSA 2048 bit key with no
4083
- # passphrase:
4084
- #
4085
- # `ssh-keygen -t rsa -b 2048 -N "" -m PEM -f my-new-server-key`.
4086
- #
4087
- # Use a minimum value of 2048 for the `-b` option: you can create a
4088
- # stronger key using 3072 or 4096.
4089
- #
4090
- # Use the following command to generate an ECDSA 256 bit key with no
4091
- # passphrase:
4092
- #
4093
- # `ssh-keygen -t ecdsa -b 256 -N "" -m PEM -f my-new-server-key`.
4094
- #
4095
- # Valid values for the `-b` option for ECDSA are 256, 384, and 521.
4096
- #
4097
- # For both of these commands, you can replace *my-new-server-key* with
4098
- # a string of your choice.
4114
+ # The RSA private key as generated by `ssh-keygen -N "" -m PEM -f
4115
+ # my-new-server-key`.
4099
4116
  #
4100
4117
  # If you aren't planning to migrate existing users from an existing
4101
- # SFTP-enabled server to a new server, don't update the host key.
4102
- # Accidentally changing a server's host key can be disruptive.
4118
+ # server to a new server, don't update the host key. Accidentally
4119
+ # changing a server's host key can be disruptive.
4103
4120
  #
4104
4121
  # For more information, see [Change the host key for your SFTP-enabled
4105
- # server][1] in the *Amazon Web Services Transfer Family User Guide*.
4122
+ # server][1] in the *Amazon Web ServicesTransfer Family User Guide*.
4106
4123
  #
4107
4124
  #
4108
4125
  #
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-transfer/customizations'
49
49
  # @!group service
50
50
  module Aws::Transfer
51
51
 
52
- GEM_VERSION = '1.54.0'
52
+ GEM_VERSION = '1.55.0'
53
53
 
54
54
  end
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.54.0
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-05-12 00:00:00.000000000 Z
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