@aws-sdk/client-transfer 3.52.0 → 3.53.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 +12 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/TransferServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +134 -3
- package/dist-cjs/protocols/Aws_json1_1.js +360 -1302
- package/dist-es/index.js +1 -0
- package/dist-es/models/TransferServiceException.js +12 -0
- package/dist-es/models/models_0.js +123 -1
- package/dist-es/protocols/Aws_json1_1.js +771 -1418
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/TransferServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +131 -74
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/TransferServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +55 -28
- package/package.json +25 -25
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from Transfer service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class TransferServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,21 +1,30 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { TransferServiceException as __BaseException } from "./TransferServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
8
9
|
Message?: string;
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
14
|
}
|
|
10
15
|
/**
|
|
11
16
|
* <p>This exception is thrown when the <code>UpdateServer</code> is called for a file transfer
|
|
12
17
|
* protocol-enabled server that has VPC as the endpoint type and the server's
|
|
13
18
|
* <code>VpcEndpointID</code> is not in the available state.</p>
|
|
14
19
|
*/
|
|
15
|
-
export
|
|
16
|
-
name: "ConflictException";
|
|
17
|
-
$fault: "client";
|
|
20
|
+
export declare class ConflictException extends __BaseException {
|
|
21
|
+
readonly name: "ConflictException";
|
|
22
|
+
readonly $fault: "client";
|
|
18
23
|
Message: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
19
28
|
}
|
|
20
29
|
/**
|
|
21
30
|
* <p>Reserved for future use.</p>
|
|
@@ -100,7 +109,9 @@ export interface CopyStepDetails {
|
|
|
100
109
|
*/
|
|
101
110
|
Name?: string;
|
|
102
111
|
/**
|
|
103
|
-
* <p>Specifies the location for the file being copied. Only applicable for
|
|
112
|
+
* <p>Specifies the location for the file being copied. Only applicable for Copy type workflow
|
|
113
|
+
* steps. Use <code>${Transfer:username}</code> in this field to parametrize the destination
|
|
114
|
+
* prefix by username.</p>
|
|
104
115
|
*/
|
|
105
116
|
DestinationFileLocation?: InputFileLocation;
|
|
106
117
|
/**
|
|
@@ -108,6 +119,21 @@ export interface CopyStepDetails {
|
|
|
108
119
|
* The default is <code>FALSE</code>.</p>
|
|
109
120
|
*/
|
|
110
121
|
OverwriteExisting?: OverwriteExisting | string;
|
|
122
|
+
/**
|
|
123
|
+
* <p>Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file
|
|
124
|
+
* for the workflow.</p>
|
|
125
|
+
* <ul>
|
|
126
|
+
* <li>
|
|
127
|
+
* <p>Enter <code>${previous.file}</code> to use the previous file as the input.
|
|
128
|
+
* In this case, this workflow step uses the output file from the previous workflow step as input.
|
|
129
|
+
* This is the default value.</p>
|
|
130
|
+
* </li>
|
|
131
|
+
* <li>
|
|
132
|
+
* <p>Enter <code>${original.file}</code> to use the originally-uploaded file location as input for this step.</p>
|
|
133
|
+
* </li>
|
|
134
|
+
* </ul>
|
|
135
|
+
*/
|
|
136
|
+
SourceFileLocation?: string;
|
|
111
137
|
}
|
|
112
138
|
export declare namespace CopyStepDetails {
|
|
113
139
|
/**
|
|
@@ -122,15 +148,6 @@ export declare namespace CopyStepDetails {
|
|
|
122
148
|
* <p>
|
|
123
149
|
* <code>[ { "Entry:": "/", "Target": "/bucket_name/home/mydirectory" } ]</code>
|
|
124
150
|
* </p>
|
|
125
|
-
*
|
|
126
|
-
* <note>
|
|
127
|
-
* <p>If the target of a logical directory entry does not exist in Amazon S3 or EFS, the entry is
|
|
128
|
-
* ignored. As a workaround, you can use the Amazon S3 API or EFS API to create 0 byte objects as place
|
|
129
|
-
* holders for your directory. If using the CLI, use the <code>s3api</code> or <code>efsapi</code> call instead of
|
|
130
|
-
* <code>s3</code> or <code>efs</code> so you can use the put-object operation. For example, you use the
|
|
131
|
-
* following: <code>aws s3api put-object --bucket bucketname --key path/to/folder/</code>. Make
|
|
132
|
-
* sure that the end of the key name ends in a <code>/</code> for it to be considered a folder.</p>
|
|
133
|
-
* </note>
|
|
134
151
|
*/
|
|
135
152
|
export interface HomeDirectoryMapEntry {
|
|
136
153
|
/**
|
|
@@ -213,15 +230,6 @@ export interface CreateAccessRequest {
|
|
|
213
230
|
* <p>
|
|
214
231
|
* <code>[ { "Entry:": "/", "Target": "/bucket_name/home/mydirectory" } ]</code>
|
|
215
232
|
* </p>
|
|
216
|
-
*
|
|
217
|
-
* <note>
|
|
218
|
-
* <p>If the target of a logical directory entry does not exist in Amazon S3 or EFS, the entry is
|
|
219
|
-
* ignored. As a workaround, you can use the Amazon S3 API or EFS API to create 0 byte objects as place
|
|
220
|
-
* holders for your directory. If using the CLI, use the <code>s3api</code> or <code>efsapi</code> call instead of
|
|
221
|
-
* <code>s3</code> or <code>efs</code> so you can use the put-object operation. For example, you use the
|
|
222
|
-
* following: <code>aws s3api put-object --bucket bucketname --key path/to/folder/</code>. Make
|
|
223
|
-
* sure that the end of the key name ends in a <code>/</code> for it to be considered a folder.</p>
|
|
224
|
-
* </note>
|
|
225
233
|
*/
|
|
226
234
|
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
227
235
|
/**
|
|
@@ -303,47 +311,67 @@ export declare namespace CreateAccessResponse {
|
|
|
303
311
|
/**
|
|
304
312
|
* <p>This exception is thrown when an error occurs in the Amazon Web ServicesTransfer Family service.</p>
|
|
305
313
|
*/
|
|
306
|
-
export
|
|
307
|
-
name: "InternalServiceError";
|
|
308
|
-
$fault: "server";
|
|
314
|
+
export declare class InternalServiceError extends __BaseException {
|
|
315
|
+
readonly name: "InternalServiceError";
|
|
316
|
+
readonly $fault: "server";
|
|
309
317
|
Message: string | undefined;
|
|
318
|
+
/**
|
|
319
|
+
* @internal
|
|
320
|
+
*/
|
|
321
|
+
constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
|
|
310
322
|
}
|
|
311
323
|
/**
|
|
312
324
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
313
325
|
*/
|
|
314
|
-
export
|
|
315
|
-
name: "InvalidRequestException";
|
|
316
|
-
$fault: "client";
|
|
326
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
327
|
+
readonly name: "InvalidRequestException";
|
|
328
|
+
readonly $fault: "client";
|
|
317
329
|
Message: string | undefined;
|
|
330
|
+
/**
|
|
331
|
+
* @internal
|
|
332
|
+
*/
|
|
333
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
318
334
|
}
|
|
319
335
|
/**
|
|
320
336
|
* <p>The requested resource does not exist.</p>
|
|
321
337
|
*/
|
|
322
|
-
export
|
|
323
|
-
name: "ResourceExistsException";
|
|
324
|
-
$fault: "client";
|
|
338
|
+
export declare class ResourceExistsException extends __BaseException {
|
|
339
|
+
readonly name: "ResourceExistsException";
|
|
340
|
+
readonly $fault: "client";
|
|
325
341
|
Message: string | undefined;
|
|
326
342
|
Resource: string | undefined;
|
|
327
343
|
ResourceType: string | undefined;
|
|
344
|
+
/**
|
|
345
|
+
* @internal
|
|
346
|
+
*/
|
|
347
|
+
constructor(opts: __ExceptionOptionType<ResourceExistsException, __BaseException>);
|
|
328
348
|
}
|
|
329
349
|
/**
|
|
330
350
|
* <p>This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family
|
|
331
351
|
* service.</p>
|
|
332
352
|
*/
|
|
333
|
-
export
|
|
334
|
-
name: "ResourceNotFoundException";
|
|
335
|
-
$fault: "client";
|
|
353
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
354
|
+
readonly name: "ResourceNotFoundException";
|
|
355
|
+
readonly $fault: "client";
|
|
336
356
|
Message: string | undefined;
|
|
337
357
|
Resource: string | undefined;
|
|
338
358
|
ResourceType: string | undefined;
|
|
359
|
+
/**
|
|
360
|
+
* @internal
|
|
361
|
+
*/
|
|
362
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
339
363
|
}
|
|
340
364
|
/**
|
|
341
365
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
342
366
|
*/
|
|
343
|
-
export
|
|
344
|
-
name: "ServiceUnavailableException";
|
|
345
|
-
$fault: "server";
|
|
367
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
368
|
+
readonly name: "ServiceUnavailableException";
|
|
369
|
+
readonly $fault: "server";
|
|
346
370
|
Message?: string;
|
|
371
|
+
/**
|
|
372
|
+
* @internal
|
|
373
|
+
*/
|
|
374
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
347
375
|
}
|
|
348
376
|
export declare enum Domain {
|
|
349
377
|
EFS = "EFS",
|
|
@@ -819,10 +847,14 @@ export declare namespace CreateServerResponse {
|
|
|
819
847
|
*
|
|
820
848
|
* <p> HTTP Status Code: 400</p>
|
|
821
849
|
*/
|
|
822
|
-
export
|
|
823
|
-
name: "ThrottlingException";
|
|
824
|
-
$fault: "client";
|
|
850
|
+
export declare class ThrottlingException extends __BaseException {
|
|
851
|
+
readonly name: "ThrottlingException";
|
|
852
|
+
readonly $fault: "client";
|
|
825
853
|
RetryAfterSeconds?: string;
|
|
854
|
+
/**
|
|
855
|
+
* @internal
|
|
856
|
+
*/
|
|
857
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
826
858
|
}
|
|
827
859
|
export interface CreateUserRequest {
|
|
828
860
|
/**
|
|
@@ -862,15 +894,6 @@ export interface CreateUserRequest {
|
|
|
862
894
|
* <p>
|
|
863
895
|
* <code>[ { "Entry:": "/", "Target": "/bucket_name/home/mydirectory" } ]</code>
|
|
864
896
|
* </p>
|
|
865
|
-
*
|
|
866
|
-
* <note>
|
|
867
|
-
* <p>If the target of a logical directory entry does not exist in Amazon S3 or EFS, the entry is
|
|
868
|
-
* ignored. As a workaround, you can use the Amazon S3 API or EFS API to create 0 byte objects as place
|
|
869
|
-
* holders for your directory. If using the CLI, use the <code>s3api</code> or <code>efsapi</code> call instead of
|
|
870
|
-
* <code>s3</code> or <code>efs</code> so you can use the put-object operation. For example, you use the
|
|
871
|
-
* following: <code>aws s3api put-object --bucket bucketname --key path/to/folder/</code>. Make
|
|
872
|
-
* sure that the end of the key name ends in a <code>/</code> for it to be considered a folder.</p>
|
|
873
|
-
* </note>
|
|
874
897
|
*/
|
|
875
898
|
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
876
899
|
/**
|
|
@@ -977,6 +1000,21 @@ export interface CustomStepDetails {
|
|
|
977
1000
|
* <p>Timeout, in seconds, for the step.</p>
|
|
978
1001
|
*/
|
|
979
1002
|
TimeoutSeconds?: number;
|
|
1003
|
+
/**
|
|
1004
|
+
* <p>Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file
|
|
1005
|
+
* for the workflow.</p>
|
|
1006
|
+
* <ul>
|
|
1007
|
+
* <li>
|
|
1008
|
+
* <p>Enter <code>${previous.file}</code> to use the previous file as the input.
|
|
1009
|
+
* In this case, this workflow step uses the output file from the previous workflow step as input.
|
|
1010
|
+
* This is the default value.</p>
|
|
1011
|
+
* </li>
|
|
1012
|
+
* <li>
|
|
1013
|
+
* <p>Enter <code>${original.file}</code> to use the originally-uploaded file location as input for this step.</p>
|
|
1014
|
+
* </li>
|
|
1015
|
+
* </ul>
|
|
1016
|
+
*/
|
|
1017
|
+
SourceFileLocation?: string;
|
|
980
1018
|
}
|
|
981
1019
|
export declare namespace CustomStepDetails {
|
|
982
1020
|
/**
|
|
@@ -992,6 +1030,21 @@ export interface DeleteStepDetails {
|
|
|
992
1030
|
* <p>The name of the step, used as an identifier.</p>
|
|
993
1031
|
*/
|
|
994
1032
|
Name?: string;
|
|
1033
|
+
/**
|
|
1034
|
+
* <p>Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file
|
|
1035
|
+
* for the workflow.</p>
|
|
1036
|
+
* <ul>
|
|
1037
|
+
* <li>
|
|
1038
|
+
* <p>Enter <code>${previous.file}</code> to use the previous file as the input.
|
|
1039
|
+
* In this case, this workflow step uses the output file from the previous workflow step as input.
|
|
1040
|
+
* This is the default value.</p>
|
|
1041
|
+
* </li>
|
|
1042
|
+
* <li>
|
|
1043
|
+
* <p>Enter <code>${original.file}</code> to use the originally-uploaded file location as input for this step.</p>
|
|
1044
|
+
* </li>
|
|
1045
|
+
* </ul>
|
|
1046
|
+
*/
|
|
1047
|
+
SourceFileLocation?: string;
|
|
995
1048
|
}
|
|
996
1049
|
export declare namespace DeleteStepDetails {
|
|
997
1050
|
/**
|
|
@@ -1031,6 +1084,21 @@ export interface TagStepDetails {
|
|
|
1031
1084
|
* <p>Array that contains from 1 to 10 key/value pairs.</p>
|
|
1032
1085
|
*/
|
|
1033
1086
|
Tags?: S3Tag[];
|
|
1087
|
+
/**
|
|
1088
|
+
* <p>Specifies which file to use as input to the workflow step: either the output from the previous step, or the originally uploaded file
|
|
1089
|
+
* for the workflow.</p>
|
|
1090
|
+
* <ul>
|
|
1091
|
+
* <li>
|
|
1092
|
+
* <p>Enter <code>${previous.file}</code> to use the previous file as the input.
|
|
1093
|
+
* In this case, this workflow step uses the output file from the previous workflow step as input.
|
|
1094
|
+
* This is the default value.</p>
|
|
1095
|
+
* </li>
|
|
1096
|
+
* <li>
|
|
1097
|
+
* <p>Enter <code>${original.file}</code> to use the originally-uploaded file location as input for this step.</p>
|
|
1098
|
+
* </li>
|
|
1099
|
+
* </ul>
|
|
1100
|
+
*/
|
|
1101
|
+
SourceFileLocation?: string;
|
|
1034
1102
|
}
|
|
1035
1103
|
export declare namespace TagStepDetails {
|
|
1036
1104
|
/**
|
|
@@ -2166,10 +2234,14 @@ export declare namespace ImportSshPublicKeyResponse {
|
|
|
2166
2234
|
/**
|
|
2167
2235
|
* <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
|
|
2168
2236
|
*/
|
|
2169
|
-
export
|
|
2170
|
-
name: "InvalidNextTokenException";
|
|
2171
|
-
$fault: "client";
|
|
2237
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
2238
|
+
readonly name: "InvalidNextTokenException";
|
|
2239
|
+
readonly $fault: "client";
|
|
2172
2240
|
Message: string | undefined;
|
|
2241
|
+
/**
|
|
2242
|
+
* @internal
|
|
2243
|
+
*/
|
|
2244
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
2173
2245
|
}
|
|
2174
2246
|
export interface ListAccessesRequest {
|
|
2175
2247
|
/**
|
|
@@ -2858,6 +2930,9 @@ export interface TestIdentityProviderResponse {
|
|
|
2858
2930
|
StatusCode: number | undefined;
|
|
2859
2931
|
/**
|
|
2860
2932
|
* <p>A message that indicates whether the test was successful or not.</p>
|
|
2933
|
+
* <note>
|
|
2934
|
+
* <p>If an empty string is returned, the most likely cause is that the authentication failed due to an incorrect username or password.</p>
|
|
2935
|
+
* </note>
|
|
2861
2936
|
*/
|
|
2862
2937
|
Message?: string;
|
|
2863
2938
|
/**
|
|
@@ -2923,15 +2998,6 @@ export interface UpdateAccessRequest {
|
|
|
2923
2998
|
* <p>
|
|
2924
2999
|
* <code>[ { "Entry:": "/", "Target": "/bucket_name/home/mydirectory" } ]</code>
|
|
2925
3000
|
* </p>
|
|
2926
|
-
*
|
|
2927
|
-
* <note>
|
|
2928
|
-
* <p>If the target of a logical directory entry does not exist in Amazon S3 or EFS, the entry is
|
|
2929
|
-
* ignored. As a workaround, you can use the Amazon S3 API or EFS API to create 0 byte objects as place
|
|
2930
|
-
* holders for your directory. If using the CLI, use the <code>s3api</code> or <code>efsapi</code> call instead of
|
|
2931
|
-
* <code>s3</code> or <code>efs</code> so you can use the put-object operation. For example, you use the
|
|
2932
|
-
* following: <code>aws s3api put-object --bucket bucketname --key path/to/folder/</code>. Make
|
|
2933
|
-
* sure that the end of the key name ends in a <code>/</code> for it to be considered a folder.</p>
|
|
2934
|
-
* </note>
|
|
2935
3001
|
*/
|
|
2936
3002
|
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
2937
3003
|
/**
|
|
@@ -3230,15 +3296,6 @@ export interface UpdateUserRequest {
|
|
|
3230
3296
|
* <p>
|
|
3231
3297
|
* <code>[ { "Entry:": "/", "Target": "/bucket_name/home/mydirectory" } ]</code>
|
|
3232
3298
|
* </p>
|
|
3233
|
-
*
|
|
3234
|
-
* <note>
|
|
3235
|
-
* <p>If the target of a logical directory entry does not exist in Amazon S3 or EFS, the entry is
|
|
3236
|
-
* ignored. As a workaround, you can use the Amazon S3 API or EFS API to create 0 byte objects as place
|
|
3237
|
-
* holders for your directory. If using the CLI, use the <code>s3api</code> or <code>efsapi</code> call instead of
|
|
3238
|
-
* <code>s3</code> or <code>efs</code> so you can use the put-object operation. For example, you use the
|
|
3239
|
-
* following: <code>aws s3api put-object --bucket bucketname --key path/to/folder/</code>. Make
|
|
3240
|
-
* sure that the end of the key name ends in a <code>/</code> for it to be considered a folder.</p>
|
|
3241
|
-
* </note>
|
|
3242
3299
|
*/
|
|
3243
3300
|
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
3244
3301
|
/**
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class TransferServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,15 +1,20 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { TransferServiceException as __BaseException } from "./TransferServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
6
7
|
Message?: string;
|
|
8
|
+
|
|
9
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
10
|
}
|
|
8
11
|
|
|
9
|
-
export
|
|
10
|
-
name: "ConflictException";
|
|
11
|
-
$fault: "client";
|
|
12
|
+
export declare class ConflictException extends __BaseException {
|
|
13
|
+
readonly name: "ConflictException";
|
|
14
|
+
readonly $fault: "client";
|
|
12
15
|
Message: string | undefined;
|
|
16
|
+
|
|
17
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
13
18
|
}
|
|
14
19
|
|
|
15
20
|
export interface EfsFileLocation {
|
|
@@ -56,6 +61,8 @@ export interface CopyStepDetails {
|
|
|
56
61
|
DestinationFileLocation?: InputFileLocation;
|
|
57
62
|
|
|
58
63
|
OverwriteExisting?: OverwriteExisting | string;
|
|
64
|
+
|
|
65
|
+
SourceFileLocation?: string;
|
|
59
66
|
}
|
|
60
67
|
export declare namespace CopyStepDetails {
|
|
61
68
|
|
|
@@ -122,38 +129,48 @@ export declare namespace CreateAccessResponse {
|
|
|
122
129
|
const filterSensitiveLog: (obj: CreateAccessResponse) => any;
|
|
123
130
|
}
|
|
124
131
|
|
|
125
|
-
export
|
|
126
|
-
name: "InternalServiceError";
|
|
127
|
-
$fault: "server";
|
|
132
|
+
export declare class InternalServiceError extends __BaseException {
|
|
133
|
+
readonly name: "InternalServiceError";
|
|
134
|
+
readonly $fault: "server";
|
|
128
135
|
Message: string | undefined;
|
|
136
|
+
|
|
137
|
+
constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
|
|
129
138
|
}
|
|
130
139
|
|
|
131
|
-
export
|
|
132
|
-
name: "InvalidRequestException";
|
|
133
|
-
$fault: "client";
|
|
140
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
141
|
+
readonly name: "InvalidRequestException";
|
|
142
|
+
readonly $fault: "client";
|
|
134
143
|
Message: string | undefined;
|
|
144
|
+
|
|
145
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
135
146
|
}
|
|
136
147
|
|
|
137
|
-
export
|
|
138
|
-
name: "ResourceExistsException";
|
|
139
|
-
$fault: "client";
|
|
148
|
+
export declare class ResourceExistsException extends __BaseException {
|
|
149
|
+
readonly name: "ResourceExistsException";
|
|
150
|
+
readonly $fault: "client";
|
|
140
151
|
Message: string | undefined;
|
|
141
152
|
Resource: string | undefined;
|
|
142
153
|
ResourceType: string | undefined;
|
|
154
|
+
|
|
155
|
+
constructor(opts: __ExceptionOptionType<ResourceExistsException, __BaseException>);
|
|
143
156
|
}
|
|
144
157
|
|
|
145
|
-
export
|
|
146
|
-
name: "ResourceNotFoundException";
|
|
147
|
-
$fault: "client";
|
|
158
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
159
|
+
readonly name: "ResourceNotFoundException";
|
|
160
|
+
readonly $fault: "client";
|
|
148
161
|
Message: string | undefined;
|
|
149
162
|
Resource: string | undefined;
|
|
150
163
|
ResourceType: string | undefined;
|
|
164
|
+
|
|
165
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
151
166
|
}
|
|
152
167
|
|
|
153
|
-
export
|
|
154
|
-
name: "ServiceUnavailableException";
|
|
155
|
-
$fault: "server";
|
|
168
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
169
|
+
readonly name: "ServiceUnavailableException";
|
|
170
|
+
readonly $fault: "server";
|
|
156
171
|
Message?: string;
|
|
172
|
+
|
|
173
|
+
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
157
174
|
}
|
|
158
175
|
export declare enum Domain {
|
|
159
176
|
EFS = "EFS",
|
|
@@ -297,10 +314,12 @@ export declare namespace CreateServerResponse {
|
|
|
297
314
|
const filterSensitiveLog: (obj: CreateServerResponse) => any;
|
|
298
315
|
}
|
|
299
316
|
|
|
300
|
-
export
|
|
301
|
-
name: "ThrottlingException";
|
|
302
|
-
$fault: "client";
|
|
317
|
+
export declare class ThrottlingException extends __BaseException {
|
|
318
|
+
readonly name: "ThrottlingException";
|
|
319
|
+
readonly $fault: "client";
|
|
303
320
|
RetryAfterSeconds?: string;
|
|
321
|
+
|
|
322
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
304
323
|
}
|
|
305
324
|
export interface CreateUserRequest {
|
|
306
325
|
|
|
@@ -346,6 +365,8 @@ export interface CustomStepDetails {
|
|
|
346
365
|
Target?: string;
|
|
347
366
|
|
|
348
367
|
TimeoutSeconds?: number;
|
|
368
|
+
|
|
369
|
+
SourceFileLocation?: string;
|
|
349
370
|
}
|
|
350
371
|
export declare namespace CustomStepDetails {
|
|
351
372
|
|
|
@@ -355,6 +376,8 @@ export declare namespace CustomStepDetails {
|
|
|
355
376
|
export interface DeleteStepDetails {
|
|
356
377
|
|
|
357
378
|
Name?: string;
|
|
379
|
+
|
|
380
|
+
SourceFileLocation?: string;
|
|
358
381
|
}
|
|
359
382
|
export declare namespace DeleteStepDetails {
|
|
360
383
|
|
|
@@ -377,6 +400,8 @@ export interface TagStepDetails {
|
|
|
377
400
|
Name?: string;
|
|
378
401
|
|
|
379
402
|
Tags?: S3Tag[];
|
|
403
|
+
|
|
404
|
+
SourceFileLocation?: string;
|
|
380
405
|
}
|
|
381
406
|
export declare namespace TagStepDetails {
|
|
382
407
|
|
|
@@ -889,10 +914,12 @@ export declare namespace ImportSshPublicKeyResponse {
|
|
|
889
914
|
const filterSensitiveLog: (obj: ImportSshPublicKeyResponse) => any;
|
|
890
915
|
}
|
|
891
916
|
|
|
892
|
-
export
|
|
893
|
-
name: "InvalidNextTokenException";
|
|
894
|
-
$fault: "client";
|
|
917
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
918
|
+
readonly name: "InvalidNextTokenException";
|
|
919
|
+
readonly $fault: "client";
|
|
895
920
|
Message: string | undefined;
|
|
921
|
+
|
|
922
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
896
923
|
}
|
|
897
924
|
export interface ListAccessesRequest {
|
|
898
925
|
|
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.53.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,34 +18,34 @@
|
|
|
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.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|