@aws-sdk/client-transfer 3.112.0 → 3.118.1

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.118.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.118.0...v3.118.1) (2022-06-27)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-transfer
9
+
10
+
11
+
12
+
13
+
14
+ # [3.118.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.117.0...v3.118.0) (2022-06-24)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-transfer
17
+
18
+
19
+
20
+
21
+
22
+ # [3.116.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.115.0...v3.116.0) (2022-06-22)
23
+
24
+
25
+ ### Features
26
+
27
+ * **client-transfer:** 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. ([9b215d2](https://github.com/aws/aws-sdk-js-v3/commit/9b215d2f8389738c0fb31dfebebbda255ef9b417))
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.112.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.111.0...v3.112.0) (2022-06-16)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/client-transfer
@@ -518,7 +518,7 @@ export interface ProtocolDetails {
518
518
  /**
519
519
  * <p>
520
520
  * Indicates passive mode, for FTP and FTPS protocols.
521
- * Enter a single dotted-quad IPv4 address, such as the external IP address of a firewall, router, or load balancer.
521
+ * Enter a single IPv4 address, such as the public IP address of a firewall, router, or load balancer.
522
522
  * For example:
523
523
  * </p>
524
524
  * <p>
@@ -531,16 +531,16 @@ export interface ProtocolDetails {
531
531
  * </code> in the example above with the actual IP address you want to use.</p>
532
532
  * <note>
533
533
  * <p>
534
- * If you change the <code>PassiveIp</code> value, you must stop and then restart your Transfer server for the change to take effect. For details on using Passive IP (PASV) in a NAT environment, see <a href="http://aws.amazon.com/blogs/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/">Configuring your FTPS server behind a firewall or NAT with Amazon Web Services Transfer Family</a>.
534
+ * If you change the <code>PassiveIp</code> value, you must stop and then restart your Transfer Family server for the change to take effect. For details on using passive mode (PASV) in a NAT environment, see <a href="http://aws.amazon.com/blogs/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/">Configuring your FTPS server behind a firewall or NAT with Transfer Family</a>.
535
535
  * </p>
536
536
  * </note>
537
537
  */
538
538
  PassiveIp?: string;
539
539
  /**
540
- * <p>A property used with Transfer servers that use the FTPS protocol. TLS Session Resumption provides a mechanism to resume or share a negotiated secret
540
+ * <p>A property used with Transfer Family servers that use the FTPS protocol. TLS Session Resumption provides a mechanism to resume or share a negotiated secret
541
541
  * key between the control and data connection for an FTPS session. <code>TlsSessionResumptionMode</code> determines whether or not the server resumes recent,
542
542
  * negotiated sessions through a unique session ID. This property is available during <code>CreateServer</code> and <code>UpdateServer</code> calls.
543
- * If a <code>TlsSessionResumptionMode</code> value is not specified during CreateServer, it is set to <code>ENFORCED</code> by default.</p>
543
+ * If a <code>TlsSessionResumptionMode</code> value is not specified during <code>CreateServer</code>, it is set to <code>ENFORCED</code> by default.</p>
544
544
  * <ul>
545
545
  * <li>
546
546
  * <p>
@@ -567,15 +567,15 @@ export interface ProtocolDetails {
567
567
  */
568
568
  TlsSessionResumptionMode?: TlsSessionResumptionMode | string;
569
569
  /**
570
- * <p>Use the <code>SetStatOption</code> to ignore the error that is generated when the client attempts to use SETSTAT on a file you are uploading to an S3 bucket.</p>
571
- * <p>Some SFTP file transfer clients can attempt to change the attributes of remote files, including timestamp and permissions, using commands, such as SETSTAT when uploading the file.
570
+ * <p>Use the <code>SetStatOption</code> to ignore the error that is generated when the client attempts to use <code>SETSTAT</code> on a file you are uploading to an S3 bucket.</p>
571
+ * <p>Some SFTP file transfer clients can attempt to change the attributes of remote files, including timestamp and permissions, using commands, such as <code>SETSTAT</code> when uploading the file.
572
572
  * However, these commands are not compatible with object storage systems, such as Amazon S3. Due to this incompatibility, file uploads from these clients can result in errors even when
573
573
  * the file is otherwise successfully uploaded.</p>
574
- * <p>Set the value to <code>ENABLE_NO_OP</code> to have the Transfer Family server ignore the SETSTAT command, and upload files without needing to make any changes to your SFTP client.
574
+ * <p>Set the value to <code>ENABLE_NO_OP</code> to have the Transfer Family server ignore the <code>SETSTAT</code> command, and upload files without needing to make any changes to your SFTP client.
575
575
  * While the <code>SetStatOption</code>
576
- * <code>ENABLE_NO_OP</code> setting ignores the error, it does generate a log entry in CloudWatch Logs, so you can determine when the client is making a SETSTAT call.</p>
576
+ * <code>ENABLE_NO_OP</code> setting ignores the error, it does generate a log entry in Amazon CloudWatch Logs, so you can determine when the client is making a <code>SETSTAT</code> call.</p>
577
577
  * <note>
578
- * <p>If you want to preserve the original timestamp for your file, and modify other file attributes using SETSTAT, you can use Amazon EFS as backend storage with Transfer Family.</p>
578
+ * <p>If you want to preserve the original timestamp for your file, and modify other file attributes using <code>SETSTAT</code>, you can use Amazon EFS as backend storage with Transfer Family.</p>
579
579
  * </note>
580
580
  */
581
581
  SetStatOption?: SetStatOption | string;
@@ -737,8 +737,23 @@ export interface CreateServerRequest {
737
737
  */
738
738
  EndpointType?: EndpointType | string;
739
739
  /**
740
- * <p>The RSA private key as generated by the <code>ssh-keygen -N "" -m PEM -f
741
- * my-new-server-key</code> command.</p>
740
+ * <p>The RSA, ECDSA, or ED25519 private key to use for your server.</p>
741
+ *
742
+ * <p>Use the following command to generate an RSA 2048 bit key with no passphrase:</p>
743
+ * <p>
744
+ * <code>ssh-keygen -t rsa -b 2048 -N "" -m PEM -f my-new-server-key</code>.</p>
745
+ * <p>Use a minimum value of 2048 for the <code>-b</code> option: you can create a stronger key using 3072 or 4096.</p>
746
+ *
747
+ * <p>Use the following command to generate an ECDSA 256 bit key with no passphrase:</p>
748
+ * <p>
749
+ * <code>ssh-keygen -t ecdsa -b 256 -N "" -m PEM -f my-new-server-key</code>.</p>
750
+ * <p>Valid values for the <code>-b</code> option for ECDSA are 256, 384, and 521.</p>
751
+ *
752
+ * <p>Use the following command to generate an ED25519 key with no passphrase:</p>
753
+ * <p>
754
+ * <code>ssh-keygen -t ed25519 -N "" -f my-new-server-key</code>.</p>
755
+ *
756
+ * <p>For all of these commands, you can replace <i>my-new-server-key</i> with a string of your choice.</p>
742
757
  *
743
758
  * <important>
744
759
  * <p>If you aren't planning to migrate existing users from an existing SFTP-enabled
@@ -892,8 +907,6 @@ export declare namespace CreateServerResponse {
892
907
  }
893
908
  /**
894
909
  * <p>The request was denied due to request throttling.</p>
895
- *
896
- * <p> HTTP Status Code: 400</p>
897
910
  */
898
911
  export declare class ThrottlingException extends __BaseException {
899
912
  readonly name: "ThrottlingException";
@@ -990,11 +1003,7 @@ export interface CreateUserRequest {
990
1003
  /**
991
1004
  * <p>The public portion of the Secure Shell (SSH) key used to authenticate the user to the
992
1005
  * server.</p>
993
- * <note>
994
- * <p>
995
- * Currently, Transfer Family does not accept elliptical curve keys (keys beginning with <code>ecdsa</code>).
996
- * </p>
997
- * </note>
1006
+ * <p>Transfer Family accepts RSA, ECDSA, and ED25519 keys.</p>
998
1007
  */
999
1008
  SshPublicKeyBody?: string;
1000
1009
  /**
@@ -1878,7 +1887,7 @@ export interface DescribedServer {
1878
1887
  * </p>
1879
1888
  * <p>
1880
1889
  * Use the <code>PassiveIp</code> parameter to indicate passive mode.
1881
- * Enter a single dotted-quad IPv4 address, such as the external IP address of a firewall, router, or load balancer.
1890
+ * Enter a single IPv4 address, such as the public IP address of a firewall, router, or load balancer.
1882
1891
  * </p>
1883
1892
  */
1884
1893
  ProtocolDetails?: ProtocolDetails;
@@ -2027,6 +2036,7 @@ export interface SshPublicKey {
2027
2036
  /**
2028
2037
  * <p>Specifies the content of the SSH public key as specified by the
2029
2038
  * <code>PublicKeyId</code>.</p>
2039
+ * <p>Transfer Family accepts RSA, ECDSA, and ED25519 keys.</p>
2030
2040
  */
2031
2041
  SshPublicKeyBody: string | undefined;
2032
2042
  /**
@@ -2304,6 +2314,7 @@ export interface ImportSshPublicKeyRequest {
2304
2314
  ServerId: string | undefined;
2305
2315
  /**
2306
2316
  * <p>The public key portion of an SSH key pair.</p>
2317
+ * <p>Transfer Family accepts RSA, ECDSA, and ED25519 keys.</p>
2307
2318
  */
2308
2319
  SshPublicKeyBody: string | undefined;
2309
2320
  /**
@@ -3283,18 +3294,33 @@ export interface UpdateServerRequest {
3283
3294
  */
3284
3295
  EndpointType?: EndpointType | string;
3285
3296
  /**
3286
- * <p>The RSA private key as generated by <code>ssh-keygen -N "" -m PEM -f
3287
- * my-new-server-key</code>.</p>
3297
+ * <p>The RSA, ECDSA, or ED25519 private key to use for your server.</p>
3298
+ *
3299
+ * <p>Use the following command to generate an RSA 2048 bit key with no passphrase:</p>
3300
+ * <p>
3301
+ * <code>ssh-keygen -t rsa -b 2048 -N "" -m PEM -f my-new-server-key</code>.</p>
3302
+ * <p>Use a minimum value of 2048 for the <code>-b</code> option: you can create a stronger key using 3072 or 4096.</p>
3303
+ *
3304
+ * <p>Use the following command to generate an ECDSA 256 bit key with no passphrase:</p>
3305
+ * <p>
3306
+ * <code>ssh-keygen -t ecdsa -b 256 -N "" -m PEM -f my-new-server-key</code>.</p>
3307
+ * <p>Valid values for the <code>-b</code> option for ECDSA are 256, 384, and 521.</p>
3308
+ *
3309
+ * <p>Use the following command to generate an ED25519 key with no passphrase:</p>
3310
+ * <p>
3311
+ * <code>ssh-keygen -t ed25519 -N "" -f my-new-server-key</code>.</p>
3312
+ *
3313
+ * <p>For all of these commands, you can replace <i>my-new-server-key</i> with a string of your choice.</p>
3288
3314
  *
3289
3315
  * <important>
3290
- * <p>If you aren't planning to migrate existing users from an existing server to a new
3291
- * server, don't update the host key. Accidentally changing a server's host key can
3292
- * be disruptive.</p>
3316
+ * <p>If you aren't planning to migrate existing users from an existing SFTP-enabled
3317
+ * server to a new server, don't update the host key. Accidentally changing a
3318
+ * server's host key can be disruptive.</p>
3293
3319
  * </important>
3294
3320
  *
3295
3321
  *
3296
3322
  *
3297
- * <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
3323
+ * <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
3298
3324
  * Family User Guide</i>.</p>
3299
3325
  */
3300
3326
  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.112.0",
4
+ "version": "3.118.1",
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.112.0",
21
+ "@aws-sdk/client-sts": "3.118.1",
22
22
  "@aws-sdk/config-resolver": "3.110.0",
23
- "@aws-sdk/credential-provider-node": "3.112.0",
23
+ "@aws-sdk/credential-provider-node": "3.118.1",
24
24
  "@aws-sdk/fetch-http-handler": "3.110.0",
25
25
  "@aws-sdk/hash-node": "3.110.0",
26
26
  "@aws-sdk/invalid-dependency": "3.110.0",
@@ -28,13 +28,13 @@
28
28
  "@aws-sdk/middleware-host-header": "3.110.0",
29
29
  "@aws-sdk/middleware-logger": "3.110.0",
30
30
  "@aws-sdk/middleware-recursion-detection": "3.110.0",
31
- "@aws-sdk/middleware-retry": "3.110.0",
31
+ "@aws-sdk/middleware-retry": "3.118.1",
32
32
  "@aws-sdk/middleware-serde": "3.110.0",
33
33
  "@aws-sdk/middleware-signing": "3.110.0",
34
34
  "@aws-sdk/middleware-stack": "3.110.0",
35
35
  "@aws-sdk/middleware-user-agent": "3.110.0",
36
36
  "@aws-sdk/node-config-provider": "3.110.0",
37
- "@aws-sdk/node-http-handler": "3.110.0",
37
+ "@aws-sdk/node-http-handler": "3.118.1",
38
38
  "@aws-sdk/protocol-http": "3.110.0",
39
39
  "@aws-sdk/smithy-client": "3.110.0",
40
40
  "@aws-sdk/types": "3.110.0",
@@ -46,10 +46,10 @@
46
46
  "@aws-sdk/util-defaults-mode-browser": "3.110.0",
47
47
  "@aws-sdk/util-defaults-mode-node": "3.110.0",
48
48
  "@aws-sdk/util-user-agent-browser": "3.110.0",
49
- "@aws-sdk/util-user-agent-node": "3.110.0",
49
+ "@aws-sdk/util-user-agent-node": "3.118.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",
51
51
  "@aws-sdk/util-utf8-node": "3.109.0",
52
- "@aws-sdk/util-waiter": "3.110.0",
52
+ "@aws-sdk/util-waiter": "3.118.1",
53
53
  "tslib": "^2.3.1"
54
54
  },
55
55
  "devDependencies": {