aws-sdk-transfer 1.55.0 → 1.56.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: 62b5d0ac159e15bf5798644c697ad294c6f80b8acd1646184ffc4d8e59348674
4
- data.tar.gz: be3190d2ad62cf50d55bd2323e1ce6c0d85e6d7b6f2252d04cb00451d9162d64
3
+ metadata.gz: 39c99769c059939e06165d2c2ed8b711c36c9f5e08f7ada74706ee5ba41b0e1f
4
+ data.tar.gz: efce29b73f50cba763087e845db52b789c60ef897cd2bb6b3a43d2f84feada21
5
5
  SHA512:
6
- metadata.gz: ebb9965f55002d391809c579488c79896b624d3f7452d48ac1970d424c32f0b6ac150fb75339a734a6553f04f96cb75b9c6c339630b9639f75a8da90d2a8ce1d
7
- data.tar.gz: ccfd528219dcf37f60f0dd5181a4fb80fa115a5405fc91b1fce2c09fdc1bfbf0dcdb5a945196d01ddcd056ef5a8e26ea6237e498c51322ac1b3f868dfc70e5ea
6
+ metadata.gz: 59ccd768fb291d1faf960b6a63230fa63f7170e4210e00dc68cb515763456e6c3d08ca10275829994c6a220ba87dd691a83f46b81480096ee9c98d69c7dd6e38
7
+ data.tar.gz: b4712eea79a68f04c9fa1b0553dd28652a31d29b4103f5f1bce7e3eceef2d15da68b8c1fc96a43519545e4ca1f49667d52ed2291a4609d12de8c6931ae312e46
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.0 (2022-06-22)
5
+ ------------------
6
+
7
+ * Feature - Until today, the service supported only RSA host keys and user keys. Now with this launch, Transfer Family has expanded the support for ECDSA and ED25519 host keys and user keys, enabling customers to support a broader set of clients by choosing RSA, ECDSA, and ED25519 host and user keys.
8
+
4
9
  1.55.0 (2022-05-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.55.0
1
+ 1.56.0
@@ -608,8 +608,30 @@ 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, ECDSA, or ED25519 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
+ # Use the following command to generate an ED25519 key with no
629
+ # passphrase:
630
+ #
631
+ # `ssh-keygen -t ed25519 -N "" -f my-new-server-key`.
632
+ #
633
+ # For all of these commands, you can replace *my-new-server-key* with a
634
+ # string of your choice.
613
635
  #
614
636
  # If you aren't planning to migrate existing users from an existing
615
637
  # SFTP-enabled server to a new server, don't update the host key.
@@ -900,10 +922,7 @@ module Aws::Transfer
900
922
  # The public portion of the Secure Shell (SSH) key used to authenticate
901
923
  # the user to the server.
902
924
  #
903
- # <note markdown="1"> Currently, Transfer Family does not accept elliptical curve keys (keys
904
- # beginning with `ecdsa`).
905
- #
906
- # </note>
925
+ # Transfer Family accepts RSA, ECDSA, and ED25519 keys.
907
926
  #
908
927
  # @option params [Array<Types::Tag>] :tags
909
928
  # Key-value pairs that can be used to group and search for users. Tags
@@ -1670,6 +1689,8 @@ module Aws::Transfer
1670
1689
  # @option params [required, String] :ssh_public_key_body
1671
1690
  # The public key portion of an SSH key pair.
1672
1691
  #
1692
+ # Transfer Family accepts RSA, ECDSA, and ED25519 keys.
1693
+ #
1673
1694
  # @option params [required, String] :user_name
1674
1695
  # The name of the user account that is assigned to one or more servers.
1675
1696
  #
@@ -2582,15 +2603,37 @@ module Aws::Transfer
2582
2603
  # </note>
2583
2604
  #
2584
2605
  # @option params [String] :host_key
2585
- # The RSA private key as generated by `ssh-keygen -N "" -m PEM -f
2586
- # my-new-server-key`.
2606
+ # The RSA, ECDSA, or ED25519 private key to use for your server.
2607
+ #
2608
+ # Use the following command to generate an RSA 2048 bit key with no
2609
+ # passphrase:
2610
+ #
2611
+ # `ssh-keygen -t rsa -b 2048 -N "" -m PEM -f my-new-server-key`.
2612
+ #
2613
+ # Use a minimum value of 2048 for the `-b` option: you can create a
2614
+ # stronger key using 3072 or 4096.
2615
+ #
2616
+ # Use the following command to generate an ECDSA 256 bit key with no
2617
+ # passphrase:
2618
+ #
2619
+ # `ssh-keygen -t ecdsa -b 256 -N "" -m PEM -f my-new-server-key`.
2620
+ #
2621
+ # Valid values for the `-b` option for ECDSA are 256, 384, and 521.
2622
+ #
2623
+ # Use the following command to generate an ED25519 key with no
2624
+ # passphrase:
2625
+ #
2626
+ # `ssh-keygen -t ed25519 -N "" -f my-new-server-key`.
2627
+ #
2628
+ # For all of these commands, you can replace *my-new-server-key* with a
2629
+ # string of your choice.
2587
2630
  #
2588
2631
  # If you aren't planning to migrate existing users from an existing
2589
- # server to a new server, don't update the host key. Accidentally
2590
- # changing a server's host key can be disruptive.
2632
+ # SFTP-enabled server to a new server, don't update the host key.
2633
+ # Accidentally changing a server's host key can be disruptive.
2591
2634
  #
2592
2635
  # For more information, see [Change the host key for your SFTP-enabled
2593
- # server][1] in the *Amazon Web ServicesTransfer Family User Guide*.
2636
+ # server][1] in the *Amazon Web Services Transfer Family User Guide*.
2594
2637
  #
2595
2638
  #
2596
2639
  #
@@ -2887,7 +2930,7 @@ module Aws::Transfer
2887
2930
  params: params,
2888
2931
  config: config)
2889
2932
  context[:gem_name] = 'aws-sdk-transfer'
2890
- context[:gem_version] = '1.55.0'
2933
+ context[:gem_version] = '1.56.0'
2891
2934
  Seahorse::Client::Request.new(handlers, context)
2892
2935
  end
2893
2936
 
@@ -410,8 +410,30 @@ module Aws::Transfer
410
410
  # @return [String]
411
411
  #
412
412
  # @!attribute [rw] host_key
413
- # The RSA private key as generated by the `ssh-keygen -N "" -m PEM -f
414
- # my-new-server-key` command.
413
+ # The RSA, ECDSA, or ED25519 private key to use for your server.
414
+ #
415
+ # Use the following command to generate an RSA 2048 bit key with no
416
+ # passphrase:
417
+ #
418
+ # `ssh-keygen -t rsa -b 2048 -N "" -m PEM -f my-new-server-key`.
419
+ #
420
+ # Use a minimum value of 2048 for the `-b` option: you can create a
421
+ # stronger key using 3072 or 4096.
422
+ #
423
+ # Use the following command to generate an ECDSA 256 bit key with no
424
+ # passphrase:
425
+ #
426
+ # `ssh-keygen -t ecdsa -b 256 -N "" -m PEM -f my-new-server-key`.
427
+ #
428
+ # Valid values for the `-b` option for ECDSA are 256, 384, and 521.
429
+ #
430
+ # Use the following command to generate an ED25519 key with no
431
+ # passphrase:
432
+ #
433
+ # `ssh-keygen -t ed25519 -N "" -f my-new-server-key`.
434
+ #
435
+ # For all of these commands, you can replace *my-new-server-key* with
436
+ # a string of your choice.
415
437
  #
416
438
  # If you aren't planning to migrate existing users from an existing
417
439
  # SFTP-enabled server to a new server, don't update the host key.
@@ -717,10 +739,7 @@ module Aws::Transfer
717
739
  # The public portion of the Secure Shell (SSH) key used to
718
740
  # authenticate the user to the server.
719
741
  #
720
- # <note markdown="1"> Currently, Transfer Family does not accept elliptical curve keys
721
- # (keys beginning with `ecdsa`).
722
- #
723
- # </note>
742
+ # Transfer Family accepts RSA, ECDSA, and ED25519 keys.
724
743
  # @return [String]
725
744
  #
726
745
  # @!attribute [rw] tags
@@ -1627,8 +1646,8 @@ module Aws::Transfer
1627
1646
  # The protocol settings that are configured for your server.
1628
1647
  #
1629
1648
  # Use the `PassiveIp` parameter to indicate passive mode. Enter a
1630
- # single dotted-quad IPv4 address, such as the external IP address of
1631
- # a firewall, router, or load balancer.
1649
+ # single IPv4 address, such as the public IP address of a firewall,
1650
+ # router, or load balancer.
1632
1651
  # @return [Types::ProtocolDetails]
1633
1652
  #
1634
1653
  # @!attribute [rw] domain
@@ -2284,6 +2303,8 @@ module Aws::Transfer
2284
2303
  #
2285
2304
  # @!attribute [rw] ssh_public_key_body
2286
2305
  # The public key portion of an SSH key pair.
2306
+ #
2307
+ # Transfer Family accepts RSA, ECDSA, and ED25519 keys.
2287
2308
  # @return [String]
2288
2309
  #
2289
2310
  # @!attribute [rw] user_name
@@ -3172,8 +3193,8 @@ module Aws::Transfer
3172
3193
  #
3173
3194
  # @!attribute [rw] passive_ip
3174
3195
  # Indicates passive mode, for FTP and FTPS protocols. Enter a single
3175
- # dotted-quad IPv4 address, such as the external IP address of a
3176
- # firewall, router, or load balancer. For example:
3196
+ # IPv4 address, such as the public IP address of a firewall, router,
3197
+ # or load balancer. For example:
3177
3198
  #
3178
3199
  # ` aws transfer update-server --protocol-details PassiveIp=0.0.0.0 `
3179
3200
  #
@@ -3181,10 +3202,10 @@ module Aws::Transfer
3181
3202
  # you want to use.
3182
3203
  #
3183
3204
  # <note markdown="1"> If you change the `PassiveIp` value, you must stop and then restart
3184
- # your Transfer server for the change to take effect. For details on
3185
- # using Passive IP (PASV) in a NAT environment, see [Configuring your
3186
- # FTPS server behind a firewall or NAT with Amazon Web Services
3187
- # Transfer Family][1].
3205
+ # your Transfer Family server for the change to take effect. For
3206
+ # details on using passive mode (PASV) in a NAT environment, see
3207
+ # [Configuring your FTPS server behind a firewall or NAT with Transfer
3208
+ # Family][1].
3188
3209
  #
3189
3210
  # </note>
3190
3211
  #
@@ -3194,14 +3215,15 @@ module Aws::Transfer
3194
3215
  # @return [String]
3195
3216
  #
3196
3217
  # @!attribute [rw] tls_session_resumption_mode
3197
- # A property used with Transfer servers that use the FTPS protocol.
3198
- # TLS Session Resumption provides a mechanism to resume or share a
3199
- # negotiated secret key between the control and data connection for an
3200
- # FTPS session. `TlsSessionResumptionMode` determines whether or not
3201
- # the server resumes recent, negotiated sessions through a unique
3202
- # session ID. This property is available during `CreateServer` and
3203
- # `UpdateServer` calls. If a `TlsSessionResumptionMode` value is not
3204
- # specified during CreateServer, it is set to `ENFORCED` by default.
3218
+ # A property used with Transfer Family servers that use the FTPS
3219
+ # protocol. TLS Session Resumption provides a mechanism to resume or
3220
+ # share a negotiated secret key between the control and data
3221
+ # connection for an FTPS session. `TlsSessionResumptionMode`
3222
+ # determines whether or not the server resumes recent, negotiated
3223
+ # sessions through a unique session ID. This property is available
3224
+ # during `CreateServer` and `UpdateServer` calls. If a
3225
+ # `TlsSessionResumptionMode` value is not specified during
3226
+ # `CreateServer`, it is set to `ENFORCED` by default.
3205
3227
  #
3206
3228
  # * `DISABLED`\: the server does not process TLS session resumption
3207
3229
  # client requests and creates a new TLS session for each request.
@@ -3228,26 +3250,26 @@ module Aws::Transfer
3228
3250
  #
3229
3251
  # @!attribute [rw] set_stat_option
3230
3252
  # 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.
3253
+ # the client attempts to use `SETSTAT` on a file you are uploading to
3254
+ # an S3 bucket.
3233
3255
  #
3234
3256
  # Some SFTP file transfer clients can attempt to change the attributes
3235
3257
  # of remote files, including timestamp and permissions, using
3236
- # commands, such as SETSTAT when uploading the file. However, these
3258
+ # commands, such as `SETSTAT` when uploading the file. However, these
3237
3259
  # commands are not compatible with object storage systems, such as
3238
3260
  # Amazon S3. Due to this incompatibility, file uploads from these
3239
3261
  # clients can result in errors even when the file is otherwise
3240
3262
  # successfully uploaded.
3241
3263
  #
3242
3264
  # 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`
3265
+ # ignore the `SETSTAT` command, and upload files without needing to
3266
+ # make any changes to your SFTP client. While the `SetStatOption`
3245
3267
  # `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.
3268
+ # entry in Amazon CloudWatch Logs, so you can determine when the
3269
+ # client is making a `SETSTAT` call.
3248
3270
  #
3249
3271
  # <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
3272
+ # modify other file attributes using `SETSTAT`, you can use Amazon EFS
3251
3273
  # as backend storage with Transfer Family.
3252
3274
  #
3253
3275
  # </note>
@@ -3496,6 +3518,8 @@ module Aws::Transfer
3496
3518
  # @!attribute [rw] ssh_public_key_body
3497
3519
  # Specifies the content of the SSH public key as specified by the
3498
3520
  # `PublicKeyId`.
3521
+ #
3522
+ # Transfer Family accepts RSA, ECDSA, and ED25519 keys.
3499
3523
  # @return [String]
3500
3524
  #
3501
3525
  # @!attribute [rw] ssh_public_key_id
@@ -3753,8 +3777,6 @@ module Aws::Transfer
3753
3777
 
3754
3778
  # The request was denied due to request throttling.
3755
3779
  #
3756
- # HTTP Status Code: 400
3757
- #
3758
3780
  # @!attribute [rw] retry_after_seconds
3759
3781
  # @return [String]
3760
3782
  #
@@ -4111,15 +4133,37 @@ module Aws::Transfer
4111
4133
  # @return [String]
4112
4134
  #
4113
4135
  # @!attribute [rw] host_key
4114
- # The RSA private key as generated by `ssh-keygen -N "" -m PEM -f
4115
- # my-new-server-key`.
4136
+ # The RSA, ECDSA, or ED25519 private key to use for your server.
4137
+ #
4138
+ # Use the following command to generate an RSA 2048 bit key with no
4139
+ # passphrase:
4140
+ #
4141
+ # `ssh-keygen -t rsa -b 2048 -N "" -m PEM -f my-new-server-key`.
4142
+ #
4143
+ # Use a minimum value of 2048 for the `-b` option: you can create a
4144
+ # stronger key using 3072 or 4096.
4145
+ #
4146
+ # Use the following command to generate an ECDSA 256 bit key with no
4147
+ # passphrase:
4148
+ #
4149
+ # `ssh-keygen -t ecdsa -b 256 -N "" -m PEM -f my-new-server-key`.
4150
+ #
4151
+ # Valid values for the `-b` option for ECDSA are 256, 384, and 521.
4152
+ #
4153
+ # Use the following command to generate an ED25519 key with no
4154
+ # passphrase:
4155
+ #
4156
+ # `ssh-keygen -t ed25519 -N "" -f my-new-server-key`.
4157
+ #
4158
+ # For all of these commands, you can replace *my-new-server-key* with
4159
+ # a string of your choice.
4116
4160
  #
4117
4161
  # If you aren't planning to migrate existing users from an existing
4118
- # server to a new server, don't update the host key. Accidentally
4119
- # changing a server's host key can be disruptive.
4162
+ # SFTP-enabled server to a new server, don't update the host key.
4163
+ # Accidentally changing a server's host key can be disruptive.
4120
4164
  #
4121
4165
  # For more information, see [Change the host key for your SFTP-enabled
4122
- # server][1] in the *Amazon Web ServicesTransfer Family User Guide*.
4166
+ # server][1] in the *Amazon Web Services Transfer Family User Guide*.
4123
4167
  #
4124
4168
  #
4125
4169
  #
@@ -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.55.0'
52
+ GEM_VERSION = '1.56.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.55.0
4
+ version: 1.56.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-18 00:00:00.000000000 Z
11
+ date: 2022-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core