@aws-sdk/client-transfer 3.50.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.
Files changed (67) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/TransferServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +134 -3
  5. package/dist-cjs/protocols/Aws_json1_1.js +378 -1302
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/TransferServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +123 -1
  9. package/dist-es/protocols/Aws_json1_1.js +789 -1422
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/TransferServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +137 -74
  13. package/dist-types/ts3.4/Transfer.d.ts +165 -0
  14. package/dist-types/ts3.4/TransferClient.d.ts +105 -0
  15. package/dist-types/ts3.4/commands/CreateAccessCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateServerCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/CreateWorkflowCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteAccessCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DeleteServerCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DeleteSshPublicKeyCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DeleteWorkflowCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/DescribeAccessCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/DescribeExecutionCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/DescribeSecurityPolicyCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/DescribeServerCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/DescribeWorkflowCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/ImportSshPublicKeyCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/ListAccessesCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/ListSecurityPoliciesCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/ListServersCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/SendWorkflowStepStateCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/StartServerCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/StopServerCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/TestIdentityProviderCommand.d.ts +17 -0
  43. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  44. package/dist-types/ts3.4/commands/UpdateAccessCommand.d.ts +17 -0
  45. package/dist-types/ts3.4/commands/UpdateServerCommand.d.ts +17 -0
  46. package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +17 -0
  47. package/dist-types/ts3.4/commands/index.d.ts +32 -0
  48. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  49. package/dist-types/ts3.4/index.d.ts +6 -0
  50. package/dist-types/ts3.4/models/TransferServiceException.d.ts +6 -0
  51. package/dist-types/ts3.4/models/index.d.ts +1 -0
  52. package/dist-types/ts3.4/models/models_0.d.ts +1353 -0
  53. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  54. package/dist-types/ts3.4/pagination/ListAccessesPaginator.d.ts +4 -0
  55. package/dist-types/ts3.4/pagination/ListExecutionsPaginator.d.ts +4 -0
  56. package/dist-types/ts3.4/pagination/ListSecurityPoliciesPaginator.d.ts +4 -0
  57. package/dist-types/ts3.4/pagination/ListServersPaginator.d.ts +4 -0
  58. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +4 -0
  59. package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +4 -0
  60. package/dist-types/ts3.4/pagination/ListWorkflowsPaginator.d.ts +4 -0
  61. package/dist-types/ts3.4/pagination/index.d.ts +8 -0
  62. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +98 -0
  63. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  64. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  65. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  66. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  67. package/package.json +33 -33
@@ -3,3 +3,4 @@ export * from "./TransferClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { TransferServiceException } from "./models/TransferServiceException";
@@ -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 { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
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 interface AccessDeniedException extends __SmithyException, $MetadataBearer {
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 interface ConflictException extends __SmithyException, $MetadataBearer {
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 the Copy type of workflow steps.</p>
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 interface InternalServiceError extends __SmithyException, $MetadataBearer {
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 interface InvalidRequestException extends __SmithyException, $MetadataBearer {
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 interface ResourceExistsException extends __SmithyException, $MetadataBearer {
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 interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
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 interface ServiceUnavailableException extends __SmithyException, $MetadataBearer {
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",
@@ -732,6 +760,8 @@ export interface CreateServerRequest {
732
760
  * your CloudWatch logs.</p>
733
761
  */
734
762
  LoggingRole?: string;
763
+ PostAuthenticationLoginBanner?: string;
764
+ PreAuthenticationLoginBanner?: string;
735
765
  /**
736
766
  * <p>Specifies the file transfer protocol or protocols over which your file transfer protocol
737
767
  * client can connect to your server's endpoint. The available protocols are:</p>
@@ -817,10 +847,14 @@ export declare namespace CreateServerResponse {
817
847
  *
818
848
  * <p> HTTP Status Code: 400</p>
819
849
  */
820
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
821
- name: "ThrottlingException";
822
- $fault: "client";
850
+ export declare class ThrottlingException extends __BaseException {
851
+ readonly name: "ThrottlingException";
852
+ readonly $fault: "client";
823
853
  RetryAfterSeconds?: string;
854
+ /**
855
+ * @internal
856
+ */
857
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
824
858
  }
825
859
  export interface CreateUserRequest {
826
860
  /**
@@ -860,15 +894,6 @@ export interface CreateUserRequest {
860
894
  * <p>
861
895
  * <code>[ { "Entry:": "/", "Target": "/bucket_name/home/mydirectory" } ]</code>
862
896
  * </p>
863
- *
864
- * <note>
865
- * <p>If the target of a logical directory entry does not exist in Amazon S3 or EFS, the entry is
866
- * ignored. As a workaround, you can use the Amazon S3 API or EFS API to create 0 byte objects as place
867
- * holders for your directory. If using the CLI, use the <code>s3api</code> or <code>efsapi</code> call instead of
868
- * <code>s3</code> or <code>efs</code> so you can use the put-object operation. For example, you use the
869
- * following: <code>aws s3api put-object --bucket bucketname --key path/to/folder/</code>. Make
870
- * sure that the end of the key name ends in a <code>/</code> for it to be considered a folder.</p>
871
- * </note>
872
897
  */
873
898
  HomeDirectoryMappings?: HomeDirectoryMapEntry[];
874
899
  /**
@@ -975,6 +1000,21 @@ export interface CustomStepDetails {
975
1000
  * <p>Timeout, in seconds, for the step.</p>
976
1001
  */
977
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;
978
1018
  }
979
1019
  export declare namespace CustomStepDetails {
980
1020
  /**
@@ -990,6 +1030,21 @@ export interface DeleteStepDetails {
990
1030
  * <p>The name of the step, used as an identifier.</p>
991
1031
  */
992
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;
993
1048
  }
994
1049
  export declare namespace DeleteStepDetails {
995
1050
  /**
@@ -1029,6 +1084,21 @@ export interface TagStepDetails {
1029
1084
  * <p>Array that contains from 1 to 10 key/value pairs.</p>
1030
1085
  */
1031
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;
1032
1102
  }
1033
1103
  export declare namespace TagStepDetails {
1034
1104
  /**
@@ -1766,6 +1836,8 @@ export interface DescribedServer {
1766
1836
  * your CloudWatch logs.</p>
1767
1837
  */
1768
1838
  LoggingRole?: string;
1839
+ PostAuthenticationLoginBanner?: string;
1840
+ PreAuthenticationLoginBanner?: string;
1769
1841
  /**
1770
1842
  * <p>Specifies the file transfer protocol or protocols over which your file transfer protocol
1771
1843
  * client can connect to your server's endpoint. The available protocols are:</p>
@@ -2162,10 +2234,14 @@ export declare namespace ImportSshPublicKeyResponse {
2162
2234
  /**
2163
2235
  * <p>The <code>NextToken</code> parameter that was passed is invalid.</p>
2164
2236
  */
2165
- export interface InvalidNextTokenException extends __SmithyException, $MetadataBearer {
2166
- name: "InvalidNextTokenException";
2167
- $fault: "client";
2237
+ export declare class InvalidNextTokenException extends __BaseException {
2238
+ readonly name: "InvalidNextTokenException";
2239
+ readonly $fault: "client";
2168
2240
  Message: string | undefined;
2241
+ /**
2242
+ * @internal
2243
+ */
2244
+ constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
2169
2245
  }
2170
2246
  export interface ListAccessesRequest {
2171
2247
  /**
@@ -2854,6 +2930,9 @@ export interface TestIdentityProviderResponse {
2854
2930
  StatusCode: number | undefined;
2855
2931
  /**
2856
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>
2857
2936
  */
2858
2937
  Message?: string;
2859
2938
  /**
@@ -2919,15 +2998,6 @@ export interface UpdateAccessRequest {
2919
2998
  * <p>
2920
2999
  * <code>[ { "Entry:": "/", "Target": "/bucket_name/home/mydirectory" } ]</code>
2921
3000
  * </p>
2922
- *
2923
- * <note>
2924
- * <p>If the target of a logical directory entry does not exist in Amazon S3 or EFS, the entry is
2925
- * ignored. As a workaround, you can use the Amazon S3 API or EFS API to create 0 byte objects as place
2926
- * holders for your directory. If using the CLI, use the <code>s3api</code> or <code>efsapi</code> call instead of
2927
- * <code>s3</code> or <code>efs</code> so you can use the put-object operation. For example, you use the
2928
- * following: <code>aws s3api put-object --bucket bucketname --key path/to/folder/</code>. Make
2929
- * sure that the end of the key name ends in a <code>/</code> for it to be considered a folder.</p>
2930
- * </note>
2931
3001
  */
2932
3002
  HomeDirectoryMappings?: HomeDirectoryMapEntry[];
2933
3003
  /**
@@ -3118,6 +3188,8 @@ export interface UpdateServerRequest {
3118
3188
  * your CloudWatch logs.</p>
3119
3189
  */
3120
3190
  LoggingRole?: string;
3191
+ PostAuthenticationLoginBanner?: string;
3192
+ PreAuthenticationLoginBanner?: string;
3121
3193
  /**
3122
3194
  * <p>Specifies the file transfer protocol or protocols over which your file transfer protocol
3123
3195
  * client can connect to your server's endpoint. The available protocols are:</p>
@@ -3224,15 +3296,6 @@ export interface UpdateUserRequest {
3224
3296
  * <p>
3225
3297
  * <code>[ { "Entry:": "/", "Target": "/bucket_name/home/mydirectory" } ]</code>
3226
3298
  * </p>
3227
- *
3228
- * <note>
3229
- * <p>If the target of a logical directory entry does not exist in Amazon S3 or EFS, the entry is
3230
- * ignored. As a workaround, you can use the Amazon S3 API or EFS API to create 0 byte objects as place
3231
- * holders for your directory. If using the CLI, use the <code>s3api</code> or <code>efsapi</code> call instead of
3232
- * <code>s3</code> or <code>efs</code> so you can use the put-object operation. For example, you use the
3233
- * following: <code>aws s3api put-object --bucket bucketname --key path/to/folder/</code>. Make
3234
- * sure that the end of the key name ends in a <code>/</code> for it to be considered a folder.</p>
3235
- * </note>
3236
3299
  */
3237
3300
  HomeDirectoryMappings?: HomeDirectoryMapEntry[];
3238
3301
  /**
@@ -0,0 +1,165 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CreateAccessCommandInput, CreateAccessCommandOutput } from "./commands/CreateAccessCommand";
3
+ import { CreateServerCommandInput, CreateServerCommandOutput } from "./commands/CreateServerCommand";
4
+ import { CreateUserCommandInput, CreateUserCommandOutput } from "./commands/CreateUserCommand";
5
+ import { CreateWorkflowCommandInput, CreateWorkflowCommandOutput } from "./commands/CreateWorkflowCommand";
6
+ import { DeleteAccessCommandInput, DeleteAccessCommandOutput } from "./commands/DeleteAccessCommand";
7
+ import { DeleteServerCommandInput, DeleteServerCommandOutput } from "./commands/DeleteServerCommand";
8
+ import { DeleteSshPublicKeyCommandInput, DeleteSshPublicKeyCommandOutput } from "./commands/DeleteSshPublicKeyCommand";
9
+ import { DeleteUserCommandInput, DeleteUserCommandOutput } from "./commands/DeleteUserCommand";
10
+ import { DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput } from "./commands/DeleteWorkflowCommand";
11
+ import { DescribeAccessCommandInput, DescribeAccessCommandOutput } from "./commands/DescribeAccessCommand";
12
+ import { DescribeExecutionCommandInput, DescribeExecutionCommandOutput } from "./commands/DescribeExecutionCommand";
13
+ import { DescribeSecurityPolicyCommandInput, DescribeSecurityPolicyCommandOutput } from "./commands/DescribeSecurityPolicyCommand";
14
+ import { DescribeServerCommandInput, DescribeServerCommandOutput } from "./commands/DescribeServerCommand";
15
+ import { DescribeUserCommandInput, DescribeUserCommandOutput } from "./commands/DescribeUserCommand";
16
+ import { DescribeWorkflowCommandInput, DescribeWorkflowCommandOutput } from "./commands/DescribeWorkflowCommand";
17
+ import { ImportSshPublicKeyCommandInput, ImportSshPublicKeyCommandOutput } from "./commands/ImportSshPublicKeyCommand";
18
+ import { ListAccessesCommandInput, ListAccessesCommandOutput } from "./commands/ListAccessesCommand";
19
+ import { ListExecutionsCommandInput, ListExecutionsCommandOutput } from "./commands/ListExecutionsCommand";
20
+ import { ListSecurityPoliciesCommandInput, ListSecurityPoliciesCommandOutput } from "./commands/ListSecurityPoliciesCommand";
21
+ import { ListServersCommandInput, ListServersCommandOutput } from "./commands/ListServersCommand";
22
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
23
+ import { ListUsersCommandInput, ListUsersCommandOutput } from "./commands/ListUsersCommand";
24
+ import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
25
+ import { SendWorkflowStepStateCommandInput, SendWorkflowStepStateCommandOutput } from "./commands/SendWorkflowStepStateCommand";
26
+ import { StartServerCommandInput, StartServerCommandOutput } from "./commands/StartServerCommand";
27
+ import { StopServerCommandInput, StopServerCommandOutput } from "./commands/StopServerCommand";
28
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
29
+ import { TestIdentityProviderCommandInput, TestIdentityProviderCommandOutput } from "./commands/TestIdentityProviderCommand";
30
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
31
+ import { UpdateAccessCommandInput, UpdateAccessCommandOutput } from "./commands/UpdateAccessCommand";
32
+ import { UpdateServerCommandInput, UpdateServerCommandOutput } from "./commands/UpdateServerCommand";
33
+ import { UpdateUserCommandInput, UpdateUserCommandOutput } from "./commands/UpdateUserCommand";
34
+ import { TransferClient } from "./TransferClient";
35
+
36
+ export declare class Transfer extends TransferClient {
37
+
38
+ createAccess(args: CreateAccessCommandInput, options?: __HttpHandlerOptions): Promise<CreateAccessCommandOutput>;
39
+ createAccess(args: CreateAccessCommandInput, cb: (err: any, data?: CreateAccessCommandOutput) => void): void;
40
+ createAccess(args: CreateAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAccessCommandOutput) => void): void;
41
+
42
+ createServer(args: CreateServerCommandInput, options?: __HttpHandlerOptions): Promise<CreateServerCommandOutput>;
43
+ createServer(args: CreateServerCommandInput, cb: (err: any, data?: CreateServerCommandOutput) => void): void;
44
+ createServer(args: CreateServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServerCommandOutput) => void): void;
45
+
46
+ createUser(args: CreateUserCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserCommandOutput>;
47
+ createUser(args: CreateUserCommandInput, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
48
+ createUser(args: CreateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserCommandOutput) => void): void;
49
+
50
+ createWorkflow(args: CreateWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkflowCommandOutput>;
51
+ createWorkflow(args: CreateWorkflowCommandInput, cb: (err: any, data?: CreateWorkflowCommandOutput) => void): void;
52
+ createWorkflow(args: CreateWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkflowCommandOutput) => void): void;
53
+
54
+ deleteAccess(args: DeleteAccessCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAccessCommandOutput>;
55
+ deleteAccess(args: DeleteAccessCommandInput, cb: (err: any, data?: DeleteAccessCommandOutput) => void): void;
56
+ deleteAccess(args: DeleteAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAccessCommandOutput) => void): void;
57
+
58
+ deleteServer(args: DeleteServerCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServerCommandOutput>;
59
+ deleteServer(args: DeleteServerCommandInput, cb: (err: any, data?: DeleteServerCommandOutput) => void): void;
60
+ deleteServer(args: DeleteServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServerCommandOutput) => void): void;
61
+
62
+ deleteSshPublicKey(args: DeleteSshPublicKeyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSshPublicKeyCommandOutput>;
63
+ deleteSshPublicKey(args: DeleteSshPublicKeyCommandInput, cb: (err: any, data?: DeleteSshPublicKeyCommandOutput) => void): void;
64
+ deleteSshPublicKey(args: DeleteSshPublicKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSshPublicKeyCommandOutput) => void): void;
65
+
66
+ deleteUser(args: DeleteUserCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserCommandOutput>;
67
+ deleteUser(args: DeleteUserCommandInput, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
68
+ deleteUser(args: DeleteUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserCommandOutput) => void): void;
69
+
70
+ deleteWorkflow(args: DeleteWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkflowCommandOutput>;
71
+ deleteWorkflow(args: DeleteWorkflowCommandInput, cb: (err: any, data?: DeleteWorkflowCommandOutput) => void): void;
72
+ deleteWorkflow(args: DeleteWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkflowCommandOutput) => void): void;
73
+
74
+ describeAccess(args: DescribeAccessCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAccessCommandOutput>;
75
+ describeAccess(args: DescribeAccessCommandInput, cb: (err: any, data?: DescribeAccessCommandOutput) => void): void;
76
+ describeAccess(args: DescribeAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAccessCommandOutput) => void): void;
77
+
78
+ describeExecution(args: DescribeExecutionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeExecutionCommandOutput>;
79
+ describeExecution(args: DescribeExecutionCommandInput, cb: (err: any, data?: DescribeExecutionCommandOutput) => void): void;
80
+ describeExecution(args: DescribeExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeExecutionCommandOutput) => void): void;
81
+
82
+ describeSecurityPolicy(args: DescribeSecurityPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSecurityPolicyCommandOutput>;
83
+ describeSecurityPolicy(args: DescribeSecurityPolicyCommandInput, cb: (err: any, data?: DescribeSecurityPolicyCommandOutput) => void): void;
84
+ describeSecurityPolicy(args: DescribeSecurityPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSecurityPolicyCommandOutput) => void): void;
85
+
86
+ describeServer(args: DescribeServerCommandInput, options?: __HttpHandlerOptions): Promise<DescribeServerCommandOutput>;
87
+ describeServer(args: DescribeServerCommandInput, cb: (err: any, data?: DescribeServerCommandOutput) => void): void;
88
+ describeServer(args: DescribeServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServerCommandOutput) => void): void;
89
+
90
+ describeUser(args: DescribeUserCommandInput, options?: __HttpHandlerOptions): Promise<DescribeUserCommandOutput>;
91
+ describeUser(args: DescribeUserCommandInput, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
92
+ describeUser(args: DescribeUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeUserCommandOutput) => void): void;
93
+
94
+ describeWorkflow(args: DescribeWorkflowCommandInput, options?: __HttpHandlerOptions): Promise<DescribeWorkflowCommandOutput>;
95
+ describeWorkflow(args: DescribeWorkflowCommandInput, cb: (err: any, data?: DescribeWorkflowCommandOutput) => void): void;
96
+ describeWorkflow(args: DescribeWorkflowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeWorkflowCommandOutput) => void): void;
97
+
98
+ importSshPublicKey(args: ImportSshPublicKeyCommandInput, options?: __HttpHandlerOptions): Promise<ImportSshPublicKeyCommandOutput>;
99
+ importSshPublicKey(args: ImportSshPublicKeyCommandInput, cb: (err: any, data?: ImportSshPublicKeyCommandOutput) => void): void;
100
+ importSshPublicKey(args: ImportSshPublicKeyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ImportSshPublicKeyCommandOutput) => void): void;
101
+
102
+ listAccesses(args: ListAccessesCommandInput, options?: __HttpHandlerOptions): Promise<ListAccessesCommandOutput>;
103
+ listAccesses(args: ListAccessesCommandInput, cb: (err: any, data?: ListAccessesCommandOutput) => void): void;
104
+ listAccesses(args: ListAccessesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAccessesCommandOutput) => void): void;
105
+
106
+ listExecutions(args: ListExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<ListExecutionsCommandOutput>;
107
+ listExecutions(args: ListExecutionsCommandInput, cb: (err: any, data?: ListExecutionsCommandOutput) => void): void;
108
+ listExecutions(args: ListExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExecutionsCommandOutput) => void): void;
109
+
110
+ listSecurityPolicies(args: ListSecurityPoliciesCommandInput, options?: __HttpHandlerOptions): Promise<ListSecurityPoliciesCommandOutput>;
111
+ listSecurityPolicies(args: ListSecurityPoliciesCommandInput, cb: (err: any, data?: ListSecurityPoliciesCommandOutput) => void): void;
112
+ listSecurityPolicies(args: ListSecurityPoliciesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSecurityPoliciesCommandOutput) => void): void;
113
+
114
+ listServers(args: ListServersCommandInput, options?: __HttpHandlerOptions): Promise<ListServersCommandOutput>;
115
+ listServers(args: ListServersCommandInput, cb: (err: any, data?: ListServersCommandOutput) => void): void;
116
+ listServers(args: ListServersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServersCommandOutput) => void): void;
117
+
118
+ listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
119
+ listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
120
+ listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
121
+
122
+ listUsers(args: ListUsersCommandInput, options?: __HttpHandlerOptions): Promise<ListUsersCommandOutput>;
123
+ listUsers(args: ListUsersCommandInput, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
124
+ listUsers(args: ListUsersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsersCommandOutput) => void): void;
125
+
126
+ listWorkflows(args: ListWorkflowsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkflowsCommandOutput>;
127
+ listWorkflows(args: ListWorkflowsCommandInput, cb: (err: any, data?: ListWorkflowsCommandOutput) => void): void;
128
+ listWorkflows(args: ListWorkflowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkflowsCommandOutput) => void): void;
129
+
130
+ sendWorkflowStepState(args: SendWorkflowStepStateCommandInput, options?: __HttpHandlerOptions): Promise<SendWorkflowStepStateCommandOutput>;
131
+ sendWorkflowStepState(args: SendWorkflowStepStateCommandInput, cb: (err: any, data?: SendWorkflowStepStateCommandOutput) => void): void;
132
+ sendWorkflowStepState(args: SendWorkflowStepStateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendWorkflowStepStateCommandOutput) => void): void;
133
+
134
+ startServer(args: StartServerCommandInput, options?: __HttpHandlerOptions): Promise<StartServerCommandOutput>;
135
+ startServer(args: StartServerCommandInput, cb: (err: any, data?: StartServerCommandOutput) => void): void;
136
+ startServer(args: StartServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartServerCommandOutput) => void): void;
137
+
138
+ stopServer(args: StopServerCommandInput, options?: __HttpHandlerOptions): Promise<StopServerCommandOutput>;
139
+ stopServer(args: StopServerCommandInput, cb: (err: any, data?: StopServerCommandOutput) => void): void;
140
+ stopServer(args: StopServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopServerCommandOutput) => void): void;
141
+
142
+ tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
143
+ tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
144
+ tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
145
+
146
+ testIdentityProvider(args: TestIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<TestIdentityProviderCommandOutput>;
147
+ testIdentityProvider(args: TestIdentityProviderCommandInput, cb: (err: any, data?: TestIdentityProviderCommandOutput) => void): void;
148
+ testIdentityProvider(args: TestIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TestIdentityProviderCommandOutput) => void): void;
149
+
150
+ untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
151
+ untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
152
+ untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
153
+
154
+ updateAccess(args: UpdateAccessCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAccessCommandOutput>;
155
+ updateAccess(args: UpdateAccessCommandInput, cb: (err: any, data?: UpdateAccessCommandOutput) => void): void;
156
+ updateAccess(args: UpdateAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAccessCommandOutput) => void): void;
157
+
158
+ updateServer(args: UpdateServerCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServerCommandOutput>;
159
+ updateServer(args: UpdateServerCommandInput, cb: (err: any, data?: UpdateServerCommandOutput) => void): void;
160
+ updateServer(args: UpdateServerCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServerCommandOutput) => void): void;
161
+
162
+ updateUser(args: UpdateUserCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserCommandOutput>;
163
+ updateUser(args: UpdateUserCommandInput, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
164
+ updateUser(args: UpdateUserCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserCommandOutput) => void): void;
165
+ }