aws-sdk-transfer 1.53.0 → 1.54.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a742e40b5f989c9031a96e4f5ff6dcd658b2c66d2a980c46e900563062c5b151
4
- data.tar.gz: 32eb6766312c2fe5fdc87a957476eaff17631cca76e5210ba9a0abec50050533
3
+ metadata.gz: 65c22200ccc095cf2afc03c93c5381a621da9ae132ebf660e29725359151815e
4
+ data.tar.gz: 0e393876399f2472754a661d0235b48c53eaee4db832faabb26210a99dd14983
5
5
  SHA512:
6
- metadata.gz: e80e403afecc2e0ec51577efd15bd0c6725775b5595e831c9051a57f55f882edd95fc2b03a9592c827362cf0d54793a4d7b11bfb05c8f5141f6c83dc828cdb1b
7
- data.tar.gz: f1f2dc3daf9f057cde6588295144da746d7724ee59e314e3fe1345a662f72944d310763c4a1e484f10ad0d52e627955afd87edb06a98a609b5be160bc1eab80e
6
+ metadata.gz: 885c30e162f5be6b9f0a75cd78bc2071e07c13e31f23e21861188e7016920ca3b22724b015a9bd812498d871903f4424a084752951150ede299d4608163397ef
7
+ data.tar.gz: 908228841afdb842d56e00c206ac1d9f37b6af85c13b2170f7f8926f2d32dbe122187a2b51be587ed97a37ce1e8c1093d1f657c5ed84f68364bf9af5c694a521
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.54.0 (2022-05-12)
5
+ ------------------
6
+
7
+ * Feature - AWS Transfer Family now accepts ECDSA keys for server host keys
8
+
4
9
  1.53.0 (2022-04-19)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.53.0
1
+ 1.54.0
@@ -608,8 +608,25 @@ module Aws::Transfer
608
608
  # </note>
609
609
  #
610
610
  # @option params [String] :host_key
611
- # The RSA private key as generated by the `ssh-keygen -N "" -m PEM -f
612
- # my-new-server-key` command.
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.
613
630
  #
614
631
  # If you aren't planning to migrate existing users from an existing
615
632
  # SFTP-enabled server to a new server, don't update the host key.
@@ -2562,15 +2579,32 @@ module Aws::Transfer
2562
2579
  # </note>
2563
2580
  #
2564
2581
  # @option params [String] :host_key
2565
- # The RSA private key as generated by `ssh-keygen -N "" -m PEM -f
2566
- # my-new-server-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.
2567
2601
  #
2568
2602
  # If you aren't planning to migrate existing users from an existing
2569
- # server to a new server, don't update the host key. Accidentally
2570
- # changing a server's host key can be disruptive.
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.
2571
2605
  #
2572
2606
  # For more information, see [Change the host key for your SFTP-enabled
2573
- # server][1] in the *Amazon Web ServicesTransfer Family User Guide*.
2607
+ # server][1] in the *Amazon Web Services Transfer Family User Guide*.
2574
2608
  #
2575
2609
  #
2576
2610
  #
@@ -2866,7 +2900,7 @@ module Aws::Transfer
2866
2900
  params: params,
2867
2901
  config: config)
2868
2902
  context[:gem_name] = 'aws-sdk-transfer'
2869
- context[:gem_version] = '1.53.0'
2903
+ context[:gem_version] = '1.54.0'
2870
2904
  Seahorse::Client::Request.new(handlers, context)
2871
2905
  end
2872
2906
 
@@ -409,8 +409,25 @@ module Aws::Transfer
409
409
  # @return [String]
410
410
  #
411
411
  # @!attribute [rw] host_key
412
- # The RSA private key as generated by the `ssh-keygen -N "" -m PEM -f
413
- # my-new-server-key` command.
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.
414
431
  #
415
432
  # If you aren't planning to migrate existing users from an existing
416
433
  # SFTP-enabled server to a new server, don't update the host key.
@@ -4060,15 +4077,32 @@ module Aws::Transfer
4060
4077
  # @return [String]
4061
4078
  #
4062
4079
  # @!attribute [rw] host_key
4063
- # The RSA private key as generated by `ssh-keygen -N "" -m PEM -f
4064
- # my-new-server-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.
4065
4099
  #
4066
4100
  # If you aren't planning to migrate existing users from an existing
4067
- # server to a new server, don't update the host key. Accidentally
4068
- # changing a server's host key can be disruptive.
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.
4069
4103
  #
4070
4104
  # For more information, see [Change the host key for your SFTP-enabled
4071
- # server][1] in the *Amazon Web ServicesTransfer Family User Guide*.
4105
+ # server][1] in the *Amazon Web Services Transfer Family User Guide*.
4072
4106
  #
4073
4107
  #
4074
4108
  #
@@ -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.53.0'
52
+ GEM_VERSION = '1.54.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.53.0
4
+ version: 1.54.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-04-19 00:00:00.000000000 Z
11
+ date: 2022-05-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core