@aws-sdk/client-transfer 3.321.1 → 3.326.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 (59) hide show
  1. package/dist-types/commands/CreateAccessCommand.d.ts +7 -0
  2. package/dist-types/commands/CreateAgreementCommand.d.ts +6 -0
  3. package/dist-types/commands/CreateConnectorCommand.d.ts +6 -0
  4. package/dist-types/commands/CreateProfileCommand.d.ts +6 -0
  5. package/dist-types/commands/CreateServerCommand.d.ts +6 -0
  6. package/dist-types/commands/CreateUserCommand.d.ts +7 -0
  7. package/dist-types/commands/CreateWorkflowCommand.d.ts +6 -0
  8. package/dist-types/commands/DeleteAccessCommand.d.ts +4 -0
  9. package/dist-types/commands/DeleteAgreementCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteCertificateCommand.d.ts +4 -0
  11. package/dist-types/commands/DeleteConnectorCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteHostKeyCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteProfileCommand.d.ts +4 -0
  14. package/dist-types/commands/DeleteServerCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteSshPublicKeyCommand.d.ts +4 -0
  16. package/dist-types/commands/DeleteUserCommand.d.ts +4 -0
  17. package/dist-types/commands/DeleteWorkflowCommand.d.ts +4 -0
  18. package/dist-types/commands/DescribeAccessCommand.d.ts +26 -0
  19. package/dist-types/commands/DescribeAgreementCommand.d.ts +22 -0
  20. package/dist-types/commands/DescribeCertificateCommand.d.ts +26 -0
  21. package/dist-types/commands/DescribeConnectorCommand.d.ts +28 -0
  22. package/dist-types/commands/DescribeExecutionCommand.d.ts +63 -0
  23. package/dist-types/commands/DescribeHostKeyCommand.d.ts +19 -0
  24. package/dist-types/commands/DescribeProfileCommand.d.ts +20 -0
  25. package/dist-types/commands/DescribeSecurityPolicyCommand.d.ts +21 -0
  26. package/dist-types/commands/DescribeServerCommand.d.ts +70 -0
  27. package/dist-types/commands/DescribeUserCommand.d.ts +40 -0
  28. package/dist-types/commands/DescribeWorkflowCommand.d.ts +128 -0
  29. package/dist-types/commands/ImportCertificateCommand.d.ts +6 -0
  30. package/dist-types/commands/ImportHostKeyCommand.d.ts +7 -0
  31. package/dist-types/commands/ImportSshPublicKeyCommand.d.ts +8 -0
  32. package/dist-types/commands/ListAccessesCommand.d.ts +15 -0
  33. package/dist-types/commands/ListAgreementsCommand.d.ts +17 -0
  34. package/dist-types/commands/ListCertificatesCommand.d.ts +18 -0
  35. package/dist-types/commands/ListConnectorsCommand.d.ts +13 -0
  36. package/dist-types/commands/ListExecutionsCommand.d.ts +32 -0
  37. package/dist-types/commands/ListHostKeysCommand.d.ts +17 -0
  38. package/dist-types/commands/ListProfilesCommand.d.ts +14 -0
  39. package/dist-types/commands/ListSecurityPoliciesCommand.d.ts +9 -0
  40. package/dist-types/commands/ListServersCommand.d.ts +18 -0
  41. package/dist-types/commands/ListTagsForResourceCommand.d.ts +13 -0
  42. package/dist-types/commands/ListUsersCommand.d.ts +17 -0
  43. package/dist-types/commands/ListWorkflowsCommand.d.ts +13 -0
  44. package/dist-types/commands/SendWorkflowStepStateCommand.d.ts +4 -0
  45. package/dist-types/commands/StartFileTransferCommand.d.ts +6 -0
  46. package/dist-types/commands/StartServerCommand.d.ts +4 -0
  47. package/dist-types/commands/StopServerCommand.d.ts +4 -0
  48. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  49. package/dist-types/commands/TestIdentityProviderCommand.d.ts +9 -0
  50. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  51. package/dist-types/commands/UpdateAccessCommand.d.ts +7 -0
  52. package/dist-types/commands/UpdateAgreementCommand.d.ts +6 -0
  53. package/dist-types/commands/UpdateCertificateCommand.d.ts +6 -0
  54. package/dist-types/commands/UpdateConnectorCommand.d.ts +6 -0
  55. package/dist-types/commands/UpdateHostKeyCommand.d.ts +7 -0
  56. package/dist-types/commands/UpdateProfileCommand.d.ts +6 -0
  57. package/dist-types/commands/UpdateServerCommand.d.ts +6 -0
  58. package/dist-types/commands/UpdateUserCommand.d.ts +7 -0
  59. package/package.json +16 -16
@@ -34,6 +34,17 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
34
34
  * };
35
35
  * const command = new ListTagsForResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListTagsForResourceResponse
38
+ * // Arn: "STRING_VALUE",
39
+ * // NextToken: "STRING_VALUE",
40
+ * // Tags: [ // Tags
41
+ * // { // Tag
42
+ * // Key: "STRING_VALUE", // required
43
+ * // Value: "STRING_VALUE", // required
44
+ * // },
45
+ * // ],
46
+ * // };
47
+ *
37
48
  * ```
38
49
  *
39
50
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -54,6 +65,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
54
65
  * @throws {@link ServiceUnavailableException} (server fault)
55
66
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
56
67
  *
68
+ * @throws {@link TransferServiceException}
69
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
57
70
  *
58
71
  */
59
72
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TransferClientResolvedConfig> {
@@ -34,6 +34,21 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
34
34
  * };
35
35
  * const command = new ListUsersCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListUsersResponse
38
+ * // NextToken: "STRING_VALUE",
39
+ * // ServerId: "STRING_VALUE", // required
40
+ * // Users: [ // ListedUsers // required
41
+ * // { // ListedUser
42
+ * // Arn: "STRING_VALUE", // required
43
+ * // HomeDirectory: "STRING_VALUE",
44
+ * // HomeDirectoryType: "PATH" || "LOGICAL",
45
+ * // Role: "STRING_VALUE",
46
+ * // SshPublicKeyCount: Number("int"),
47
+ * // UserName: "STRING_VALUE",
48
+ * // },
49
+ * // ],
50
+ * // };
51
+ *
37
52
  * ```
38
53
  *
39
54
  * @param ListUsersCommandInput - {@link ListUsersCommandInput}
@@ -58,6 +73,8 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
58
73
  * @throws {@link ServiceUnavailableException} (server fault)
59
74
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
60
75
  *
76
+ * @throws {@link TransferServiceException}
77
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
61
78
  *
62
79
  */
63
80
  export declare class ListUsersCommand extends $Command<ListUsersCommandInput, ListUsersCommandOutput, TransferClientResolvedConfig> {
@@ -32,6 +32,17 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met
32
32
  * };
33
33
  * const command = new ListWorkflowsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListWorkflowsResponse
36
+ * // NextToken: "STRING_VALUE",
37
+ * // Workflows: [ // ListedWorkflows // required
38
+ * // { // ListedWorkflow
39
+ * // WorkflowId: "STRING_VALUE",
40
+ * // Description: "STRING_VALUE",
41
+ * // Arn: "STRING_VALUE",
42
+ * // },
43
+ * // ],
44
+ * // };
45
+ *
35
46
  * ```
36
47
  *
37
48
  * @param ListWorkflowsCommandInput - {@link ListWorkflowsCommandInput}
@@ -52,6 +63,8 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met
52
63
  * @throws {@link ServiceUnavailableException} (server fault)
53
64
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
54
65
  *
66
+ * @throws {@link TransferServiceException}
67
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
55
68
  *
56
69
  */
57
70
  export declare class ListWorkflowsCommand extends $Command<ListWorkflowsCommandInput, ListWorkflowsCommandOutput, TransferClientResolvedConfig> {
@@ -38,6 +38,8 @@ export interface SendWorkflowStepStateCommandOutput extends SendWorkflowStepStat
38
38
  * };
39
39
  * const command = new SendWorkflowStepStateCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // {};
42
+ *
41
43
  * ```
42
44
  *
43
45
  * @param SendWorkflowStepStateCommandInput - {@link SendWorkflowStepStateCommandInput}
@@ -65,6 +67,8 @@ export interface SendWorkflowStepStateCommandOutput extends SendWorkflowStepStat
65
67
  * @throws {@link ThrottlingException} (client fault)
66
68
  * <p>The request was denied due to request throttling.</p>
67
69
  *
70
+ * @throws {@link TransferServiceException}
71
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
68
72
  *
69
73
  */
70
74
  export declare class SendWorkflowStepStateCommand extends $Command<SendWorkflowStepStateCommandInput, SendWorkflowStepStateCommandOutput, TransferClientResolvedConfig> {
@@ -35,6 +35,10 @@ export interface StartFileTransferCommandOutput extends StartFileTransferRespons
35
35
  * };
36
36
  * const command = new StartFileTransferCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // StartFileTransferResponse
39
+ * // TransferId: "STRING_VALUE", // required
40
+ * // };
41
+ *
38
42
  * ```
39
43
  *
40
44
  * @param StartFileTransferCommandInput - {@link StartFileTransferCommandInput}
@@ -59,6 +63,8 @@ export interface StartFileTransferCommandOutput extends StartFileTransferRespons
59
63
  * @throws {@link ThrottlingException} (client fault)
60
64
  * <p>The request was denied due to request throttling.</p>
61
65
  *
66
+ * @throws {@link TransferServiceException}
67
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
62
68
  *
63
69
  */
64
70
  export declare class StartFileTransferCommand extends $Command<StartFileTransferCommandInput, StartFileTransferCommandOutput, TransferClientResolvedConfig> {
@@ -37,6 +37,8 @@ export interface StartServerCommandOutput extends __MetadataBearer {
37
37
  * };
38
38
  * const command = new StartServerCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // {};
41
+ *
40
42
  * ```
41
43
  *
42
44
  * @param StartServerCommandInput - {@link StartServerCommandInput}
@@ -61,6 +63,8 @@ export interface StartServerCommandOutput extends __MetadataBearer {
61
63
  * @throws {@link ThrottlingException} (client fault)
62
64
  * <p>The request was denied due to request throttling.</p>
63
65
  *
66
+ * @throws {@link TransferServiceException}
67
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
64
68
  *
65
69
  */
66
70
  export declare class StartServerCommand extends $Command<StartServerCommandInput, StartServerCommandOutput, TransferClientResolvedConfig> {
@@ -42,6 +42,8 @@ export interface StopServerCommandOutput extends __MetadataBearer {
42
42
  * };
43
43
  * const command = new StopServerCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // {};
46
+ *
45
47
  * ```
46
48
  *
47
49
  * @param StopServerCommandInput - {@link StopServerCommandInput}
@@ -66,6 +68,8 @@ export interface StopServerCommandOutput extends __MetadataBearer {
66
68
  * @throws {@link ThrottlingException} (client fault)
67
69
  * <p>The request was denied due to request throttling.</p>
68
70
  *
71
+ * @throws {@link TransferServiceException}
72
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
69
73
  *
70
74
  */
71
75
  export declare class StopServerCommand extends $Command<StopServerCommandInput, StopServerCommandOutput, TransferClientResolvedConfig> {
@@ -39,6 +39,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
39
39
  * };
40
40
  * const command = new TagResourceCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // {};
43
+ *
42
44
  * ```
43
45
  *
44
46
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -60,6 +62,8 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
60
62
  * @throws {@link ServiceUnavailableException} (server fault)
61
63
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
62
64
  *
65
+ * @throws {@link TransferServiceException}
66
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
63
67
  *
64
68
  */
65
69
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, TransferClientResolvedConfig> {
@@ -73,6 +73,13 @@ export interface TestIdentityProviderCommandOutput extends TestIdentityProviderR
73
73
  * };
74
74
  * const command = new TestIdentityProviderCommand(input);
75
75
  * const response = await client.send(command);
76
+ * // { // TestIdentityProviderResponse
77
+ * // Response: "STRING_VALUE",
78
+ * // StatusCode: Number("int"), // required
79
+ * // Message: "STRING_VALUE",
80
+ * // Url: "STRING_VALUE", // required
81
+ * // };
82
+ *
76
83
  * ```
77
84
  *
78
85
  * @param TestIdentityProviderCommandInput - {@link TestIdentityProviderCommandInput}
@@ -94,6 +101,8 @@ export interface TestIdentityProviderCommandOutput extends TestIdentityProviderR
94
101
  * @throws {@link ServiceUnavailableException} (server fault)
95
102
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
96
103
  *
104
+ * @throws {@link TransferServiceException}
105
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
97
106
  *
98
107
  */
99
108
  export declare class TestIdentityProviderCommand extends $Command<TestIdentityProviderCommandInput, TestIdentityProviderCommandOutput, TransferClientResolvedConfig> {
@@ -36,6 +36,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
36
36
  * };
37
37
  * const command = new UntagResourceCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // {};
40
+ *
39
41
  * ```
40
42
  *
41
43
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -57,6 +59,8 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
57
59
  * @throws {@link ServiceUnavailableException} (server fault)
58
60
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
59
61
  *
62
+ * @throws {@link TransferServiceException}
63
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
60
64
  *
61
65
  */
62
66
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, TransferClientResolvedConfig> {
@@ -50,6 +50,11 @@ export interface UpdateAccessCommandOutput extends UpdateAccessResponse, __Metad
50
50
  * };
51
51
  * const command = new UpdateAccessCommand(input);
52
52
  * const response = await client.send(command);
53
+ * // { // UpdateAccessResponse
54
+ * // ServerId: "STRING_VALUE", // required
55
+ * // ExternalId: "STRING_VALUE", // required
56
+ * // };
57
+ *
53
58
  * ```
54
59
  *
55
60
  * @param UpdateAccessCommandInput - {@link UpdateAccessCommandInput}
@@ -77,6 +82,8 @@ export interface UpdateAccessCommandOutput extends UpdateAccessResponse, __Metad
77
82
  * @throws {@link ThrottlingException} (client fault)
78
83
  * <p>The request was denied due to request throttling.</p>
79
84
  *
85
+ * @throws {@link TransferServiceException}
86
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
80
87
  *
81
88
  */
82
89
  export declare class UpdateAccessCommand extends $Command<UpdateAccessCommandInput, UpdateAccessCommandOutput, TransferClientResolvedConfig> {
@@ -40,6 +40,10 @@ export interface UpdateAgreementCommandOutput extends UpdateAgreementResponse, _
40
40
  * };
41
41
  * const command = new UpdateAgreementCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // UpdateAgreementResponse
44
+ * // AgreementId: "STRING_VALUE", // required
45
+ * // };
46
+ *
43
47
  * ```
44
48
  *
45
49
  * @param UpdateAgreementCommandInput - {@link UpdateAgreementCommandInput}
@@ -67,6 +71,8 @@ export interface UpdateAgreementCommandOutput extends UpdateAgreementResponse, _
67
71
  * @throws {@link ThrottlingException} (client fault)
68
72
  * <p>The request was denied due to request throttling.</p>
69
73
  *
74
+ * @throws {@link TransferServiceException}
75
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
70
76
  *
71
77
  */
72
78
  export declare class UpdateAgreementCommand extends $Command<UpdateAgreementCommandInput, UpdateAgreementCommandOutput, TransferClientResolvedConfig> {
@@ -34,6 +34,10 @@ export interface UpdateCertificateCommandOutput extends UpdateCertificateRespons
34
34
  * };
35
35
  * const command = new UpdateCertificateCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // UpdateCertificateResponse
38
+ * // CertificateId: "STRING_VALUE", // required
39
+ * // };
40
+ *
37
41
  * ```
38
42
  *
39
43
  * @param UpdateCertificateCommandInput - {@link UpdateCertificateCommandInput}
@@ -58,6 +62,8 @@ export interface UpdateCertificateCommandOutput extends UpdateCertificateRespons
58
62
  * @throws {@link ThrottlingException} (client fault)
59
63
  * <p>The request was denied due to request throttling.</p>
60
64
  *
65
+ * @throws {@link TransferServiceException}
66
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
61
67
  *
62
68
  */
63
69
  export declare class UpdateCertificateCommand extends $Command<UpdateCertificateCommandInput, UpdateCertificateCommandOutput, TransferClientResolvedConfig> {
@@ -46,6 +46,10 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
46
46
  * };
47
47
  * const command = new UpdateConnectorCommand(input);
48
48
  * const response = await client.send(command);
49
+ * // { // UpdateConnectorResponse
50
+ * // ConnectorId: "STRING_VALUE", // required
51
+ * // };
52
+ *
49
53
  * ```
50
54
  *
51
55
  * @param UpdateConnectorCommandInput - {@link UpdateConnectorCommandInput}
@@ -73,6 +77,8 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
73
77
  * @throws {@link ThrottlingException} (client fault)
74
78
  * <p>The request was denied due to request throttling.</p>
75
79
  *
80
+ * @throws {@link TransferServiceException}
81
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
76
82
  *
77
83
  */
78
84
  export declare class UpdateConnectorCommand extends $Command<UpdateConnectorCommandInput, UpdateConnectorCommandOutput, TransferClientResolvedConfig> {
@@ -34,6 +34,11 @@ export interface UpdateHostKeyCommandOutput extends UpdateHostKeyResponse, __Met
34
34
  * };
35
35
  * const command = new UpdateHostKeyCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // UpdateHostKeyResponse
38
+ * // ServerId: "STRING_VALUE", // required
39
+ * // HostKeyId: "STRING_VALUE", // required
40
+ * // };
41
+ *
37
42
  * ```
38
43
  *
39
44
  * @param UpdateHostKeyCommandInput - {@link UpdateHostKeyCommandInput}
@@ -58,6 +63,8 @@ export interface UpdateHostKeyCommandOutput extends UpdateHostKeyResponse, __Met
58
63
  * @throws {@link ThrottlingException} (client fault)
59
64
  * <p>The request was denied due to request throttling.</p>
60
65
  *
66
+ * @throws {@link TransferServiceException}
67
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
61
68
  *
62
69
  */
63
70
  export declare class UpdateHostKeyCommand extends $Command<UpdateHostKeyCommandInput, UpdateHostKeyCommandOutput, TransferClientResolvedConfig> {
@@ -36,6 +36,10 @@ export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __Met
36
36
  * };
37
37
  * const command = new UpdateProfileCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // UpdateProfileResponse
40
+ * // ProfileId: "STRING_VALUE", // required
41
+ * // };
42
+ *
39
43
  * ```
40
44
  *
41
45
  * @param UpdateProfileCommandInput - {@link UpdateProfileCommandInput}
@@ -60,6 +64,8 @@ export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __Met
60
64
  * @throws {@link ThrottlingException} (client fault)
61
65
  * <p>The request was denied due to request throttling.</p>
62
66
  *
67
+ * @throws {@link TransferServiceException}
68
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
63
69
  *
64
70
  */
65
71
  export declare class UpdateProfileCommand extends $Command<UpdateProfileCommandInput, UpdateProfileCommandOutput, TransferClientResolvedConfig> {
@@ -85,6 +85,10 @@ export interface UpdateServerCommandOutput extends UpdateServerResponse, __Metad
85
85
  * };
86
86
  * const command = new UpdateServerCommand(input);
87
87
  * const response = await client.send(command);
88
+ * // { // UpdateServerResponse
89
+ * // ServerId: "STRING_VALUE", // required
90
+ * // };
91
+ *
88
92
  * ```
89
93
  *
90
94
  * @param UpdateServerCommandInput - {@link UpdateServerCommandInput}
@@ -120,6 +124,8 @@ export interface UpdateServerCommandOutput extends UpdateServerResponse, __Metad
120
124
  * @throws {@link ThrottlingException} (client fault)
121
125
  * <p>The request was denied due to request throttling.</p>
122
126
  *
127
+ * @throws {@link TransferServiceException}
128
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
123
129
  *
124
130
  */
125
131
  export declare class UpdateServerCommand extends $Command<UpdateServerCommandInput, UpdateServerCommandOutput, TransferClientResolvedConfig> {
@@ -53,6 +53,11 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
53
53
  * };
54
54
  * const command = new UpdateUserCommand(input);
55
55
  * const response = await client.send(command);
56
+ * // { // UpdateUserResponse
57
+ * // ServerId: "STRING_VALUE", // required
58
+ * // UserName: "STRING_VALUE", // required
59
+ * // };
60
+ *
56
61
  * ```
57
62
  *
58
63
  * @param UpdateUserCommandInput - {@link UpdateUserCommandInput}
@@ -77,6 +82,8 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
77
82
  * @throws {@link ThrottlingException} (client fault)
78
83
  * <p>The request was denied due to request throttling.</p>
79
84
  *
85
+ * @throws {@link TransferServiceException}
86
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
80
87
  *
81
88
  */
82
89
  export declare class UpdateUserCommand extends $Command<UpdateUserCommandInput, UpdateUserCommandOutput, TransferClientResolvedConfig> {
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.321.1",
4
+ "version": "3.326.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",
@@ -21,33 +21,33 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.321.1",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.321.1",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
30
- "@aws-sdk/middleware-content-length": "3.310.0",
31
- "@aws-sdk/middleware-endpoint": "3.310.0",
32
- "@aws-sdk/middleware-host-header": "3.310.0",
33
- "@aws-sdk/middleware-logger": "3.310.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.310.0",
35
- "@aws-sdk/middleware-retry": "3.310.0",
36
- "@aws-sdk/middleware-serde": "3.310.0",
37
- "@aws-sdk/middleware-signing": "3.310.0",
38
- "@aws-sdk/middleware-stack": "3.310.0",
39
- "@aws-sdk/middleware-user-agent": "3.319.0",
30
+ "@aws-sdk/middleware-content-length": "3.325.0",
31
+ "@aws-sdk/middleware-endpoint": "3.325.0",
32
+ "@aws-sdk/middleware-host-header": "3.325.0",
33
+ "@aws-sdk/middleware-logger": "3.325.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.325.0",
36
+ "@aws-sdk/middleware-serde": "3.325.0",
37
+ "@aws-sdk/middleware-signing": "3.325.0",
38
+ "@aws-sdk/middleware-stack": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.325.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.316.0",
43
+ "@aws-sdk/smithy-client": "3.325.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.316.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.316.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
51
  "@aws-sdk/util-endpoints": "3.319.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",