@aws-sdk/client-transfer 3.82.0 → 3.90.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,33 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.90.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.89.0...v3.90.0) (2022-05-12)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-transfer
9
+
10
+
11
+
12
+
13
+
14
+ # [3.87.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.86.0...v3.87.0) (2022-05-09)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-transfer
17
+
18
+
19
+
20
+
21
+
22
+ # [3.85.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.84.0...v3.85.0) (2022-05-05)
23
+
24
+
25
+ ### Features
26
+
27
+ * **codegen:** add codegen indicator comment to all generated files ([#3592](https://github.com/aws/aws-sdk-js-v3/issues/3592)) ([567a530](https://github.com/aws/aws-sdk-js-v3/commit/567a5304232fcc1f9db3fd3df545054de8336b4b))
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.82.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.81.0...v3.82.0) (2022-05-02)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-transfer
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ <!-- generated file, do not edit directly -->
2
+
1
3
  # @aws-sdk/client-transfer
2
4
 
3
5
  [![NPM version](https://img.shields.io/npm/v/@aws-sdk/client-transfer/latest.svg)](https://www.npmjs.com/package/@aws-sdk/client-transfer)
@@ -720,8 +720,19 @@ export interface CreateServerRequest {
720
720
  */
721
721
  EndpointType?: EndpointType | string;
722
722
  /**
723
- * <p>The RSA private key as generated by the <code>ssh-keygen -N "" -m PEM -f
724
- * my-new-server-key</code> command.</p>
723
+ * <p>The RSA or ECDSA private key to use for your server.</p>
724
+ *
725
+ * <p>Use the following command to generate an RSA 2048 bit key with no passphrase:</p>
726
+ * <p>
727
+ * <code>ssh-keygen -t rsa -b 2048 -N "" -m PEM -f my-new-server-key</code>.</p>
728
+ * <p>Use a minimum value of 2048 for the <code>-b</code> option: you can create a stronger key using 3072 or 4096.</p>
729
+ *
730
+ * <p>Use the following command to generate an ECDSA 256 bit key with no passphrase:</p>
731
+ * <p>
732
+ * <code>ssh-keygen -t ecdsa -b 256 -N "" -m PEM -f my-new-server-key</code>.</p>
733
+ * <p>Valid values for the <code>-b</code> option for ECDSA are 256, 384, and 521.</p>
734
+ *
735
+ * <p>For both of these commands, you can replace <i>my-new-server-key</i> with a string of your choice.</p>
725
736
  *
726
737
  * <important>
727
738
  * <p>If you aren't planning to migrate existing users from an existing SFTP-enabled
@@ -3244,18 +3255,29 @@ export interface UpdateServerRequest {
3244
3255
  */
3245
3256
  EndpointType?: EndpointType | string;
3246
3257
  /**
3247
- * <p>The RSA private key as generated by <code>ssh-keygen -N "" -m PEM -f
3248
- * my-new-server-key</code>.</p>
3258
+ * <p>The RSA or ECDSA private key to use for your server.</p>
3259
+ *
3260
+ * <p>Use the following command to generate an RSA 2048 bit key with no passphrase:</p>
3261
+ * <p>
3262
+ * <code>ssh-keygen -t rsa -b 2048 -N "" -m PEM -f my-new-server-key</code>.</p>
3263
+ * <p>Use a minimum value of 2048 for the <code>-b</code> option: you can create a stronger key using 3072 or 4096.</p>
3264
+ *
3265
+ * <p>Use the following command to generate an ECDSA 256 bit key with no passphrase:</p>
3266
+ * <p>
3267
+ * <code>ssh-keygen -t ecdsa -b 256 -N "" -m PEM -f my-new-server-key</code>.</p>
3268
+ * <p>Valid values for the <code>-b</code> option for ECDSA are 256, 384, and 521.</p>
3269
+ *
3270
+ * <p>For both of these commands, you can replace <i>my-new-server-key</i> with a string of your choice.</p>
3249
3271
  *
3250
3272
  * <important>
3251
- * <p>If you aren't planning to migrate existing users from an existing server to a new
3252
- * server, don't update the host key. Accidentally changing a server's host key can
3253
- * be disruptive.</p>
3273
+ * <p>If you aren't planning to migrate existing users from an existing SFTP-enabled
3274
+ * server to a new server, don't update the host key. Accidentally changing a
3275
+ * server's host key can be disruptive.</p>
3254
3276
  * </important>
3255
3277
  *
3256
3278
  *
3257
3279
  *
3258
- * <p>For more information, see <a href="https://docs.aws.amazon.com/transfer/latest/userguide/edit-server-config.html#configuring-servers-change-host-key">Change the host key for your SFTP-enabled server</a> in the <i>Amazon Web ServicesTransfer
3280
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/transfer/latest/userguide/edit-server-config.html#configuring-servers-change-host-key">Change the host key for your SFTP-enabled server</a> in the <i>Amazon Web Services Transfer
3259
3281
  * Family User Guide</i>.</p>
3260
3282
  */
3261
3283
  HostKey?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-transfer",
3
3
  "description": "AWS SDK for JavaScript Transfer Client for Node.js, Browser and React Native",
4
- "version": "3.82.0",
4
+ "version": "3.90.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,9 +18,9 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.82.0",
21
+ "@aws-sdk/client-sts": "3.87.0",
22
22
  "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.82.0",
23
+ "@aws-sdk/credential-provider-node": "3.87.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
@@ -35,15 +35,15 @@
35
35
  "@aws-sdk/node-config-provider": "3.80.0",
36
36
  "@aws-sdk/node-http-handler": "3.82.0",
37
37
  "@aws-sdk/protocol-http": "3.78.0",
38
- "@aws-sdk/smithy-client": "3.78.0",
38
+ "@aws-sdk/smithy-client": "3.85.0",
39
39
  "@aws-sdk/types": "3.78.0",
40
40
  "@aws-sdk/url-parser": "3.78.0",
41
41
  "@aws-sdk/util-base64-browser": "3.58.0",
42
42
  "@aws-sdk/util-base64-node": "3.55.0",
43
43
  "@aws-sdk/util-body-length-browser": "3.55.0",
44
44
  "@aws-sdk/util-body-length-node": "3.55.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.78.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.81.0",
45
+ "@aws-sdk/util-defaults-mode-browser": "3.85.0",
46
+ "@aws-sdk/util-defaults-mode-node": "3.85.0",
47
47
  "@aws-sdk/util-user-agent-browser": "3.78.0",
48
48
  "@aws-sdk/util-user-agent-node": "3.80.0",
49
49
  "@aws-sdk/util-utf8-browser": "3.55.0",