@aws-sdk/client-transfer 3.213.0 → 3.214.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.
|
@@ -35,6 +35,7 @@ var EncryptionAlg;
|
|
|
35
35
|
EncryptionAlg["AES128_CBC"] = "AES128_CBC";
|
|
36
36
|
EncryptionAlg["AES192_CBC"] = "AES192_CBC";
|
|
37
37
|
EncryptionAlg["AES256_CBC"] = "AES256_CBC";
|
|
38
|
+
EncryptionAlg["NONE"] = "NONE";
|
|
38
39
|
})(EncryptionAlg = exports.EncryptionAlg || (exports.EncryptionAlg = {}));
|
|
39
40
|
var MdnResponse;
|
|
40
41
|
(function (MdnResponse) {
|
|
@@ -28,6 +28,7 @@ export var EncryptionAlg;
|
|
|
28
28
|
EncryptionAlg["AES128_CBC"] = "AES128_CBC";
|
|
29
29
|
EncryptionAlg["AES192_CBC"] = "AES192_CBC";
|
|
30
30
|
EncryptionAlg["AES256_CBC"] = "AES256_CBC";
|
|
31
|
+
EncryptionAlg["NONE"] = "NONE";
|
|
31
32
|
})(EncryptionAlg || (EncryptionAlg = {}));
|
|
32
33
|
export var MdnResponse;
|
|
33
34
|
(function (MdnResponse) {
|
|
@@ -23,7 +23,8 @@ export declare enum CompressionEnum {
|
|
|
23
23
|
export declare enum EncryptionAlg {
|
|
24
24
|
AES128_CBC = "AES128_CBC",
|
|
25
25
|
AES192_CBC = "AES192_CBC",
|
|
26
|
-
AES256_CBC = "AES256_CBC"
|
|
26
|
+
AES256_CBC = "AES256_CBC",
|
|
27
|
+
NONE = "NONE"
|
|
27
28
|
}
|
|
28
29
|
export declare enum MdnResponse {
|
|
29
30
|
NONE = "NONE",
|
|
@@ -67,6 +68,10 @@ export interface As2ConnectorConfig {
|
|
|
67
68
|
Compression?: CompressionEnum | string;
|
|
68
69
|
/**
|
|
69
70
|
* <p>The algorithm that is used to encrypt the file.</p>
|
|
71
|
+
* <note>
|
|
72
|
+
* <p>You can only specify <code>NONE</code> if the URL for your connector uses HTTPS. This ensures that
|
|
73
|
+
* no traffic is sent in clear text.</p>
|
|
74
|
+
* </note>
|
|
70
75
|
*/
|
|
71
76
|
EncryptionAlgorithm?: EncryptionAlg | string;
|
|
72
77
|
/**
|
|
@@ -76,7 +81,7 @@ export interface As2ConnectorConfig {
|
|
|
76
81
|
/**
|
|
77
82
|
* <p>The signing algorithm for the MDN response.</p>
|
|
78
83
|
* <note>
|
|
79
|
-
* <p>If set to DEFAULT (or not set at all), the value for <code>
|
|
84
|
+
* <p>If set to DEFAULT (or not set at all), the value for <code>SigningAlgorithm</code> is used.</p>
|
|
80
85
|
* </note>
|
|
81
86
|
*/
|
|
82
87
|
MdnSigningAlgorithm?: MdnSigningAlg | string;
|
|
@@ -801,7 +806,7 @@ export declare enum Protocol {
|
|
|
801
806
|
}
|
|
802
807
|
/**
|
|
803
808
|
* <p>Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow.</p>
|
|
804
|
-
* <p>In
|
|
809
|
+
* <p>In addition to a workflow to execute when a file is uploaded completely, <code>WorkflowDetails</code> can also contain a
|
|
805
810
|
* workflow ID (and execution role) for a workflow to execute on partial upload. A partial upload occurs when a file is open when
|
|
806
811
|
* the session disconnects.</p>
|
|
807
812
|
*/
|
|
@@ -1088,7 +1093,7 @@ export interface CreateServerRequest {
|
|
|
1088
1093
|
Tags?: Tag[];
|
|
1089
1094
|
/**
|
|
1090
1095
|
* <p>Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow.</p>
|
|
1091
|
-
* <p>In
|
|
1096
|
+
* <p>In addition to a workflow to execute when a file is uploaded completely, <code>WorkflowDetails</code> can also contain a
|
|
1092
1097
|
* workflow ID (and execution role) for a workflow to execute on partial upload. A partial upload occurs when a file is open when
|
|
1093
1098
|
* the session disconnects.</p>
|
|
1094
1099
|
*/
|
|
@@ -1186,7 +1191,23 @@ export interface CreateUserRequest {
|
|
|
1186
1191
|
/**
|
|
1187
1192
|
* <p>The public portion of the Secure Shell (SSH) key used to authenticate the user to the
|
|
1188
1193
|
* server.</p>
|
|
1194
|
+
* <p>The three standard SSH public key format elements are <code><key type></code>,
|
|
1195
|
+
* <code><body base64></code>, and an optional <code><comment></code>, with spaces
|
|
1196
|
+
* between each element.</p>
|
|
1189
1197
|
* <p>Transfer Family accepts RSA, ECDSA, and ED25519 keys.</p>
|
|
1198
|
+
* <ul>
|
|
1199
|
+
* <li>
|
|
1200
|
+
* <p>For RSA keys, the key type is <code>ssh-rsa</code>.</p>
|
|
1201
|
+
* </li>
|
|
1202
|
+
* <li>
|
|
1203
|
+
* <p>For ED25519 keys, the key type is <code>ssh-ed25519</code>.</p>
|
|
1204
|
+
* </li>
|
|
1205
|
+
* <li>
|
|
1206
|
+
* <p>For ECDSA keys, the key type is either <code>ecdsa-sha2-nistp256</code>,
|
|
1207
|
+
* <code>ecdsa-sha2-nistp384</code>, or <code>ecdsa-sha2-nistp521</code>, depending on the
|
|
1208
|
+
* size of the key you generated.</p>
|
|
1209
|
+
* </li>
|
|
1210
|
+
* </ul>
|
|
1190
1211
|
*/
|
|
1191
1212
|
SshPublicKeyBody?: string;
|
|
1192
1213
|
/**
|
|
@@ -2424,7 +2445,7 @@ export interface DescribedServer {
|
|
|
2424
2445
|
UserCount?: number;
|
|
2425
2446
|
/**
|
|
2426
2447
|
* <p>Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow.</p>
|
|
2427
|
-
* <p>In
|
|
2448
|
+
* <p>In addition to a workflow to execute when a file is uploaded completely, <code>WorkflowDetails</code> can also contain a
|
|
2428
2449
|
* workflow ID (and execution role) for a workflow to execute on partial upload. A partial upload occurs when a file is open when
|
|
2429
2450
|
* the session disconnects.</p>
|
|
2430
2451
|
*/
|
|
@@ -4154,7 +4175,7 @@ export interface UpdateServerRequest {
|
|
|
4154
4175
|
ServerId: string | undefined;
|
|
4155
4176
|
/**
|
|
4156
4177
|
* <p>Specifies the workflow ID for the workflow to assign and the execution role that's used for executing the workflow.</p>
|
|
4157
|
-
* <p>In
|
|
4178
|
+
* <p>In addition to a workflow to execute when a file is uploaded completely, <code>WorkflowDetails</code> can also contain a
|
|
4158
4179
|
* workflow ID (and execution role) for a workflow to execute on partial upload. A partial upload occurs when a file is open when
|
|
4159
4180
|
* the session disconnects.</p>
|
|
4160
4181
|
* <p>To remove an associated workflow from a server, you can provide an empty <code>OnUpload</code> object, as in the following example.</p>
|
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.
|
|
4
|
+
"version": "3.214.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",
|