aws-sdk-transfer 1.54.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transfer/client.rb +41 -54
- data/lib/aws-sdk-transfer/client_api.rb +2 -0
- data/lib/aws-sdk-transfer/types.rb +73 -56
- 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,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.
|
|
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
|
|
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
|
-
#
|
|
730
|
-
#
|
|
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
|
-
#
|
|
734
|
-
#
|
|
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
|
-
#
|
|
2540
|
-
#
|
|
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 `
|
|
2543
|
-
#
|
|
2544
|
-
#
|
|
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
|
|
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
|
-
#
|
|
2604
|
-
#
|
|
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
|
|
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.
|
|
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
|
|
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
|
|
540
|
-
#
|
|
541
|
-
#
|
|
542
|
-
#
|
|
543
|
-
#
|
|
544
|
-
#
|
|
545
|
-
#
|
|
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
|
|
4034
|
-
#
|
|
4035
|
-
#
|
|
4036
|
-
#
|
|
4037
|
-
#
|
|
4038
|
-
#
|
|
4039
|
-
#
|
|
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
|
|
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
|
-
#
|
|
4102
|
-
#
|
|
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
|
|
4122
|
+
# server][1] in the *Amazon Web ServicesTransfer Family User Guide*.
|
|
4106
4123
|
#
|
|
4107
4124
|
#
|
|
4108
4125
|
#
|
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-05-
|
|
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
|