@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.
- package/dist-types/commands/CreateAccessCommand.d.ts +7 -0
- package/dist-types/commands/CreateAgreementCommand.d.ts +6 -0
- package/dist-types/commands/CreateConnectorCommand.d.ts +6 -0
- package/dist-types/commands/CreateProfileCommand.d.ts +6 -0
- package/dist-types/commands/CreateServerCommand.d.ts +6 -0
- package/dist-types/commands/CreateUserCommand.d.ts +7 -0
- package/dist-types/commands/CreateWorkflowCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAccessCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAgreementCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCertificateCommand.d.ts +4 -0
- package/dist-types/commands/DeleteConnectorCommand.d.ts +4 -0
- package/dist-types/commands/DeleteHostKeyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteProfileCommand.d.ts +4 -0
- package/dist-types/commands/DeleteServerCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSshPublicKeyCommand.d.ts +4 -0
- package/dist-types/commands/DeleteUserCommand.d.ts +4 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAccessCommand.d.ts +26 -0
- package/dist-types/commands/DescribeAgreementCommand.d.ts +22 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +26 -0
- package/dist-types/commands/DescribeConnectorCommand.d.ts +28 -0
- package/dist-types/commands/DescribeExecutionCommand.d.ts +63 -0
- package/dist-types/commands/DescribeHostKeyCommand.d.ts +19 -0
- package/dist-types/commands/DescribeProfileCommand.d.ts +20 -0
- package/dist-types/commands/DescribeSecurityPolicyCommand.d.ts +21 -0
- package/dist-types/commands/DescribeServerCommand.d.ts +70 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +40 -0
- package/dist-types/commands/DescribeWorkflowCommand.d.ts +128 -0
- package/dist-types/commands/ImportCertificateCommand.d.ts +6 -0
- package/dist-types/commands/ImportHostKeyCommand.d.ts +7 -0
- package/dist-types/commands/ImportSshPublicKeyCommand.d.ts +8 -0
- package/dist-types/commands/ListAccessesCommand.d.ts +15 -0
- package/dist-types/commands/ListAgreementsCommand.d.ts +17 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +18 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +13 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +32 -0
- package/dist-types/commands/ListHostKeysCommand.d.ts +17 -0
- package/dist-types/commands/ListProfilesCommand.d.ts +14 -0
- package/dist-types/commands/ListSecurityPoliciesCommand.d.ts +9 -0
- package/dist-types/commands/ListServersCommand.d.ts +18 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +13 -0
- package/dist-types/commands/ListUsersCommand.d.ts +17 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +13 -0
- package/dist-types/commands/SendWorkflowStepStateCommand.d.ts +4 -0
- package/dist-types/commands/StartFileTransferCommand.d.ts +6 -0
- package/dist-types/commands/StartServerCommand.d.ts +4 -0
- package/dist-types/commands/StopServerCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/TestIdentityProviderCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAccessCommand.d.ts +7 -0
- package/dist-types/commands/UpdateAgreementCommand.d.ts +6 -0
- package/dist-types/commands/UpdateCertificateCommand.d.ts +6 -0
- package/dist-types/commands/UpdateConnectorCommand.d.ts +6 -0
- package/dist-types/commands/UpdateHostKeyCommand.d.ts +7 -0
- package/dist-types/commands/UpdateProfileCommand.d.ts +6 -0
- package/dist-types/commands/UpdateServerCommand.d.ts +6 -0
- package/dist-types/commands/UpdateUserCommand.d.ts +7 -0
- package/package.json +16 -16
|
@@ -54,6 +54,11 @@ export interface CreateAccessCommandOutput extends CreateAccessResponse, __Metad
|
|
|
54
54
|
* };
|
|
55
55
|
* const command = new CreateAccessCommand(input);
|
|
56
56
|
* const response = await client.send(command);
|
|
57
|
+
* // { // CreateAccessResponse
|
|
58
|
+
* // ServerId: "STRING_VALUE", // required
|
|
59
|
+
* // ExternalId: "STRING_VALUE", // required
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
57
62
|
* ```
|
|
58
63
|
*
|
|
59
64
|
* @param CreateAccessCommandInput - {@link CreateAccessCommandInput}
|
|
@@ -78,6 +83,8 @@ export interface CreateAccessCommandOutput extends CreateAccessResponse, __Metad
|
|
|
78
83
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
79
84
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
80
85
|
*
|
|
86
|
+
* @throws {@link TransferServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
81
88
|
*
|
|
82
89
|
*/
|
|
83
90
|
export declare class CreateAccessCommand extends $Command<CreateAccessCommandInput, CreateAccessCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -48,6 +48,10 @@ export interface CreateAgreementCommandOutput extends CreateAgreementResponse, _
|
|
|
48
48
|
* };
|
|
49
49
|
* const command = new CreateAgreementCommand(input);
|
|
50
50
|
* const response = await client.send(command);
|
|
51
|
+
* // { // CreateAgreementResponse
|
|
52
|
+
* // AgreementId: "STRING_VALUE", // required
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
51
55
|
* ```
|
|
52
56
|
*
|
|
53
57
|
* @param CreateAgreementCommandInput - {@link CreateAgreementCommandInput}
|
|
@@ -75,6 +79,8 @@ export interface CreateAgreementCommandOutput extends CreateAgreementResponse, _
|
|
|
75
79
|
* @throws {@link ThrottlingException} (client fault)
|
|
76
80
|
* <p>The request was denied due to request throttling.</p>
|
|
77
81
|
*
|
|
82
|
+
* @throws {@link TransferServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
78
84
|
*
|
|
79
85
|
*/
|
|
80
86
|
export declare class CreateAgreementCommand extends $Command<CreateAgreementCommandInput, CreateAgreementCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -51,6 +51,10 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new CreateConnectorCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // { // CreateConnectorResponse
|
|
55
|
+
* // ConnectorId: "STRING_VALUE", // required
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
54
58
|
* ```
|
|
55
59
|
*
|
|
56
60
|
* @param CreateConnectorCommandInput - {@link CreateConnectorCommandInput}
|
|
@@ -78,6 +82,8 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
|
|
|
78
82
|
* @throws {@link ThrottlingException} (client fault)
|
|
79
83
|
* <p>The request was denied due to request throttling.</p>
|
|
80
84
|
*
|
|
85
|
+
* @throws {@link TransferServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
81
87
|
*
|
|
82
88
|
*/
|
|
83
89
|
export declare class CreateConnectorCommand extends $Command<CreateConnectorCommandInput, CreateConnectorCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -41,6 +41,10 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new CreateProfileCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // CreateProfileResponse
|
|
45
|
+
* // ProfileId: "STRING_VALUE", // required
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
44
48
|
* ```
|
|
45
49
|
*
|
|
46
50
|
* @param CreateProfileCommandInput - {@link CreateProfileCommandInput}
|
|
@@ -65,6 +69,8 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met
|
|
|
65
69
|
* @throws {@link ThrottlingException} (client fault)
|
|
66
70
|
* <p>The request was denied due to request throttling.</p>
|
|
67
71
|
*
|
|
72
|
+
* @throws {@link TransferServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
68
74
|
*
|
|
69
75
|
*/
|
|
70
76
|
export declare class CreateProfileCommand extends $Command<CreateProfileCommandInput, CreateProfileCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -92,6 +92,10 @@ export interface CreateServerCommandOutput extends CreateServerResponse, __Metad
|
|
|
92
92
|
* };
|
|
93
93
|
* const command = new CreateServerCommand(input);
|
|
94
94
|
* const response = await client.send(command);
|
|
95
|
+
* // { // CreateServerResponse
|
|
96
|
+
* // ServerId: "STRING_VALUE", // required
|
|
97
|
+
* // };
|
|
98
|
+
*
|
|
95
99
|
* ```
|
|
96
100
|
*
|
|
97
101
|
* @param CreateServerCommandInput - {@link CreateServerCommandInput}
|
|
@@ -122,6 +126,8 @@ export interface CreateServerCommandOutput extends CreateServerResponse, __Metad
|
|
|
122
126
|
* @throws {@link ThrottlingException} (client fault)
|
|
123
127
|
* <p>The request was denied due to request throttling.</p>
|
|
124
128
|
*
|
|
129
|
+
* @throws {@link TransferServiceException}
|
|
130
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
125
131
|
*
|
|
126
132
|
*/
|
|
127
133
|
export declare class CreateServerCommand extends $Command<CreateServerCommandInput, CreateServerCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -62,6 +62,11 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
|
|
|
62
62
|
* };
|
|
63
63
|
* const command = new CreateUserCommand(input);
|
|
64
64
|
* const response = await client.send(command);
|
|
65
|
+
* // { // CreateUserResponse
|
|
66
|
+
* // ServerId: "STRING_VALUE", // required
|
|
67
|
+
* // UserName: "STRING_VALUE", // required
|
|
68
|
+
* // };
|
|
69
|
+
*
|
|
65
70
|
* ```
|
|
66
71
|
*
|
|
67
72
|
* @param CreateUserCommandInput - {@link CreateUserCommandInput}
|
|
@@ -86,6 +91,8 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
|
|
|
86
91
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
87
92
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
88
93
|
*
|
|
94
|
+
* @throws {@link TransferServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
89
96
|
*
|
|
90
97
|
*/
|
|
91
98
|
export declare class CreateUserCommand extends $Command<CreateUserCommandInput, CreateUserCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -152,6 +152,10 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M
|
|
|
152
152
|
* };
|
|
153
153
|
* const command = new CreateWorkflowCommand(input);
|
|
154
154
|
* const response = await client.send(command);
|
|
155
|
+
* // { // CreateWorkflowResponse
|
|
156
|
+
* // WorkflowId: "STRING_VALUE", // required
|
|
157
|
+
* // };
|
|
158
|
+
*
|
|
155
159
|
* ```
|
|
156
160
|
*
|
|
157
161
|
* @param CreateWorkflowCommandInput - {@link CreateWorkflowCommandInput}
|
|
@@ -178,6 +182,8 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M
|
|
|
178
182
|
* @throws {@link ThrottlingException} (client fault)
|
|
179
183
|
* <p>The request was denied due to request throttling.</p>
|
|
180
184
|
*
|
|
185
|
+
* @throws {@link TransferServiceException}
|
|
186
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
181
187
|
*
|
|
182
188
|
*/
|
|
183
189
|
export declare class CreateWorkflowCommand extends $Command<CreateWorkflowCommandInput, CreateWorkflowCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteAccessCommandOutput extends __MetadataBearer {
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteAccessCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteAccessCommandInput - {@link DeleteAccessCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface DeleteAccessCommandOutput extends __MetadataBearer {
|
|
|
54
56
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
55
57
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link TransferServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class DeleteAccessCommand extends $Command<DeleteAccessCommandInput, DeleteAccessCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteAgreementCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteAgreementCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteAgreementCommandInput - {@link DeleteAgreementCommandInput}
|
|
@@ -53,6 +55,8 @@ export interface DeleteAgreementCommandOutput extends __MetadataBearer {
|
|
|
53
55
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
54
56
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
55
57
|
*
|
|
58
|
+
* @throws {@link TransferServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
56
60
|
*
|
|
57
61
|
*/
|
|
58
62
|
export declare class DeleteAgreementCommand extends $Command<DeleteAgreementCommandInput, DeleteAgreementCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteCertificateCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteCertificateCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteCertificateCommandInput - {@link DeleteCertificateCommandInput}
|
|
@@ -53,6 +55,8 @@ export interface DeleteCertificateCommandOutput extends __MetadataBearer {
|
|
|
53
55
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
54
56
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
55
57
|
*
|
|
58
|
+
* @throws {@link TransferServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
56
60
|
*
|
|
57
61
|
*/
|
|
58
62
|
export declare class DeleteCertificateCommand extends $Command<DeleteCertificateCommandInput, DeleteCertificateCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteConnectorCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteConnectorCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteConnectorCommandInput - {@link DeleteConnectorCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface DeleteConnectorCommandOutput extends __MetadataBearer {
|
|
|
52
54
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
55
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link TransferServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class DeleteConnectorCommand extends $Command<DeleteConnectorCommandInput, DeleteConnectorCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteHostKeyCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteHostKeyCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteHostKeyCommandInput - {@link DeleteHostKeyCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface DeleteHostKeyCommandOutput extends __MetadataBearer {
|
|
|
56
58
|
* @throws {@link ThrottlingException} (client fault)
|
|
57
59
|
* <p>The request was denied due to request throttling.</p>
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link TransferServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class DeleteHostKeyCommand extends $Command<DeleteHostKeyCommandInput, DeleteHostKeyCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteProfileCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteProfileCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteProfileCommandInput - {@link DeleteProfileCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface DeleteProfileCommandOutput extends __MetadataBearer {
|
|
|
52
54
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
55
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link TransferServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class DeleteProfileCommand extends $Command<DeleteProfileCommandInput, DeleteProfileCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteServerCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteServerCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteServerCommandInput - {@link DeleteServerCommandInput}
|
|
@@ -56,6 +58,8 @@ export interface DeleteServerCommandOutput extends __MetadataBearer {
|
|
|
56
58
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
57
59
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
58
60
|
*
|
|
61
|
+
* @throws {@link TransferServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
59
63
|
*
|
|
60
64
|
*/
|
|
61
65
|
export declare class DeleteServerCommand extends $Command<DeleteServerCommandInput, DeleteServerCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteSshPublicKeyCommandOutput extends __MetadataBearer {
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteSshPublicKeyCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteSshPublicKeyCommandInput - {@link DeleteSshPublicKeyCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteSshPublicKeyCommandOutput extends __MetadataBearer {
|
|
|
57
59
|
* @throws {@link ThrottlingException} (client fault)
|
|
58
60
|
* <p>The request was denied due to request throttling.</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 DeleteSshPublicKeyCommand extends $Command<DeleteSshPublicKeyCommandInput, DeleteSshPublicKeyCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -36,6 +36,8 @@ export interface DeleteUserCommandOutput extends __MetadataBearer {
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DeleteUserCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
39
41
|
* ```
|
|
40
42
|
*
|
|
41
43
|
* @param DeleteUserCommandInput - {@link DeleteUserCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteUserCommandOutput 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 DeleteUserCommand extends $Command<DeleteUserCommandInput, DeleteUserCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteWorkflowCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteWorkflowCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteWorkflowCommandInput - {@link DeleteWorkflowCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface DeleteWorkflowCommandOutput extends __MetadataBearer {
|
|
|
55
57
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
56
58
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link TransferServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class DeleteWorkflowCommand extends $Command<DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -36,6 +36,30 @@ export interface DescribeAccessCommandOutput extends DescribeAccessResponse, __M
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DescribeAccessCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // DescribeAccessResponse
|
|
40
|
+
* // ServerId: "STRING_VALUE", // required
|
|
41
|
+
* // Access: { // DescribedAccess
|
|
42
|
+
* // HomeDirectory: "STRING_VALUE",
|
|
43
|
+
* // HomeDirectoryMappings: [ // HomeDirectoryMappings
|
|
44
|
+
* // { // HomeDirectoryMapEntry
|
|
45
|
+
* // Entry: "STRING_VALUE", // required
|
|
46
|
+
* // Target: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // HomeDirectoryType: "PATH" || "LOGICAL",
|
|
50
|
+
* // Policy: "STRING_VALUE",
|
|
51
|
+
* // PosixProfile: { // PosixProfile
|
|
52
|
+
* // Uid: Number("long"), // required
|
|
53
|
+
* // Gid: Number("long"), // required
|
|
54
|
+
* // SecondaryGids: [ // SecondaryGids
|
|
55
|
+
* // Number("long"),
|
|
56
|
+
* // ],
|
|
57
|
+
* // },
|
|
58
|
+
* // Role: "STRING_VALUE",
|
|
59
|
+
* // ExternalId: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
39
63
|
* ```
|
|
40
64
|
*
|
|
41
65
|
* @param DescribeAccessCommandInput - {@link DescribeAccessCommandInput}
|
|
@@ -57,6 +81,8 @@ export interface DescribeAccessCommandOutput extends DescribeAccessResponse, __M
|
|
|
57
81
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
58
82
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
59
83
|
*
|
|
84
|
+
* @throws {@link TransferServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
60
86
|
*
|
|
61
87
|
*/
|
|
62
88
|
export declare class DescribeAccessCommand extends $Command<DescribeAccessCommandInput, DescribeAccessCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -32,6 +32,26 @@ export interface DescribeAgreementCommandOutput extends DescribeAgreementRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeAgreementCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeAgreementResponse
|
|
36
|
+
* // Agreement: { // DescribedAgreement
|
|
37
|
+
* // Arn: "STRING_VALUE", // required
|
|
38
|
+
* // AgreementId: "STRING_VALUE",
|
|
39
|
+
* // Description: "STRING_VALUE",
|
|
40
|
+
* // Status: "ACTIVE" || "INACTIVE",
|
|
41
|
+
* // ServerId: "STRING_VALUE",
|
|
42
|
+
* // LocalProfileId: "STRING_VALUE",
|
|
43
|
+
* // PartnerProfileId: "STRING_VALUE",
|
|
44
|
+
* // BaseDirectory: "STRING_VALUE",
|
|
45
|
+
* // AccessRole: "STRING_VALUE",
|
|
46
|
+
* // Tags: [ // Tags
|
|
47
|
+
* // { // Tag
|
|
48
|
+
* // Key: "STRING_VALUE", // required
|
|
49
|
+
* // Value: "STRING_VALUE", // required
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // },
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
35
55
|
* ```
|
|
36
56
|
*
|
|
37
57
|
* @param DescribeAgreementCommandInput - {@link DescribeAgreementCommandInput}
|
|
@@ -53,6 +73,8 @@ export interface DescribeAgreementCommandOutput extends DescribeAgreementRespons
|
|
|
53
73
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
54
74
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
55
75
|
*
|
|
76
|
+
* @throws {@link TransferServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
56
78
|
*
|
|
57
79
|
*/
|
|
58
80
|
export declare class DescribeAgreementCommand extends $Command<DescribeAgreementCommandInput, DescribeAgreementCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -31,6 +31,30 @@ export interface DescribeCertificateCommandOutput extends DescribeCertificateRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeCertificateCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeCertificateResponse
|
|
35
|
+
* // Certificate: { // DescribedCertificate
|
|
36
|
+
* // Arn: "STRING_VALUE", // required
|
|
37
|
+
* // CertificateId: "STRING_VALUE",
|
|
38
|
+
* // Usage: "SIGNING" || "ENCRYPTION",
|
|
39
|
+
* // Status: "ACTIVE" || "PENDING_ROTATION" || "INACTIVE",
|
|
40
|
+
* // Certificate: "STRING_VALUE",
|
|
41
|
+
* // CertificateChain: "STRING_VALUE",
|
|
42
|
+
* // ActiveDate: new Date("TIMESTAMP"),
|
|
43
|
+
* // InactiveDate: new Date("TIMESTAMP"),
|
|
44
|
+
* // Serial: "STRING_VALUE",
|
|
45
|
+
* // NotBeforeDate: new Date("TIMESTAMP"),
|
|
46
|
+
* // NotAfterDate: new Date("TIMESTAMP"),
|
|
47
|
+
* // Type: "CERTIFICATE" || "CERTIFICATE_WITH_PRIVATE_KEY",
|
|
48
|
+
* // Description: "STRING_VALUE",
|
|
49
|
+
* // Tags: [ // Tags
|
|
50
|
+
* // { // Tag
|
|
51
|
+
* // Key: "STRING_VALUE", // required
|
|
52
|
+
* // Value: "STRING_VALUE", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
34
58
|
* ```
|
|
35
59
|
*
|
|
36
60
|
* @param DescribeCertificateCommandInput - {@link DescribeCertificateCommandInput}
|
|
@@ -52,6 +76,8 @@ export interface DescribeCertificateCommandOutput extends DescribeCertificateRes
|
|
|
52
76
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
77
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
54
78
|
*
|
|
79
|
+
* @throws {@link TransferServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
55
81
|
*
|
|
56
82
|
*/
|
|
57
83
|
export declare class DescribeCertificateCommand extends $Command<DescribeCertificateCommandInput, DescribeCertificateCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -32,6 +32,32 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeConnectorCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeConnectorResponse
|
|
36
|
+
* // Connector: { // DescribedConnector
|
|
37
|
+
* // Arn: "STRING_VALUE", // required
|
|
38
|
+
* // ConnectorId: "STRING_VALUE",
|
|
39
|
+
* // Url: "STRING_VALUE",
|
|
40
|
+
* // As2Config: { // As2ConnectorConfig
|
|
41
|
+
* // LocalProfileId: "STRING_VALUE",
|
|
42
|
+
* // PartnerProfileId: "STRING_VALUE",
|
|
43
|
+
* // MessageSubject: "STRING_VALUE",
|
|
44
|
+
* // Compression: "ZLIB" || "DISABLED",
|
|
45
|
+
* // EncryptionAlgorithm: "AES128_CBC" || "AES192_CBC" || "AES256_CBC" || "NONE",
|
|
46
|
+
* // SigningAlgorithm: "SHA256" || "SHA384" || "SHA512" || "SHA1" || "NONE",
|
|
47
|
+
* // MdnSigningAlgorithm: "SHA256" || "SHA384" || "SHA512" || "SHA1" || "NONE" || "DEFAULT",
|
|
48
|
+
* // MdnResponse: "SYNC" || "NONE",
|
|
49
|
+
* // },
|
|
50
|
+
* // AccessRole: "STRING_VALUE",
|
|
51
|
+
* // LoggingRole: "STRING_VALUE",
|
|
52
|
+
* // Tags: [ // Tags
|
|
53
|
+
* // { // Tag
|
|
54
|
+
* // Key: "STRING_VALUE", // required
|
|
55
|
+
* // Value: "STRING_VALUE", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // },
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
35
61
|
* ```
|
|
36
62
|
*
|
|
37
63
|
* @param DescribeConnectorCommandInput - {@link DescribeConnectorCommandInput}
|
|
@@ -53,6 +79,8 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
|
|
|
53
79
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
54
80
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
55
81
|
*
|
|
82
|
+
* @throws {@link TransferServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
56
84
|
*
|
|
57
85
|
*/
|
|
58
86
|
export declare class DescribeConnectorCommand extends $Command<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -32,6 +32,67 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionRespons
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeExecutionCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeExecutionResponse
|
|
36
|
+
* // WorkflowId: "STRING_VALUE", // required
|
|
37
|
+
* // Execution: { // DescribedExecution
|
|
38
|
+
* // ExecutionId: "STRING_VALUE",
|
|
39
|
+
* // InitialFileLocation: { // FileLocation
|
|
40
|
+
* // S3FileLocation: { // S3FileLocation
|
|
41
|
+
* // Bucket: "STRING_VALUE",
|
|
42
|
+
* // Key: "STRING_VALUE",
|
|
43
|
+
* // VersionId: "STRING_VALUE",
|
|
44
|
+
* // Etag: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // EfsFileLocation: { // EfsFileLocation
|
|
47
|
+
* // FileSystemId: "STRING_VALUE",
|
|
48
|
+
* // Path: "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // },
|
|
51
|
+
* // ServiceMetadata: { // ServiceMetadata
|
|
52
|
+
* // UserDetails: { // UserDetails
|
|
53
|
+
* // UserName: "STRING_VALUE", // required
|
|
54
|
+
* // ServerId: "STRING_VALUE", // required
|
|
55
|
+
* // SessionId: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // ExecutionRole: "STRING_VALUE",
|
|
59
|
+
* // LoggingConfiguration: { // LoggingConfiguration
|
|
60
|
+
* // LoggingRole: "STRING_VALUE",
|
|
61
|
+
* // LogGroupName: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // PosixProfile: { // PosixProfile
|
|
64
|
+
* // Uid: Number("long"), // required
|
|
65
|
+
* // Gid: Number("long"), // required
|
|
66
|
+
* // SecondaryGids: [ // SecondaryGids
|
|
67
|
+
* // Number("long"),
|
|
68
|
+
* // ],
|
|
69
|
+
* // },
|
|
70
|
+
* // Status: "IN_PROGRESS" || "COMPLETED" || "EXCEPTION" || "HANDLING_EXCEPTION",
|
|
71
|
+
* // Results: { // ExecutionResults
|
|
72
|
+
* // Steps: [ // ExecutionStepResults
|
|
73
|
+
* // { // ExecutionStepResult
|
|
74
|
+
* // StepType: "COPY" || "CUSTOM" || "TAG" || "DELETE" || "DECRYPT",
|
|
75
|
+
* // Outputs: "STRING_VALUE",
|
|
76
|
+
* // Error: { // ExecutionError
|
|
77
|
+
* // Type: "PERMISSION_DENIED" || "CUSTOM_STEP_FAILED" || "THROTTLED" || "ALREADY_EXISTS" || "NOT_FOUND" || "BAD_REQUEST" || "TIMEOUT" || "INTERNAL_SERVER_ERROR", // required
|
|
78
|
+
* // Message: "STRING_VALUE", // required
|
|
79
|
+
* // },
|
|
80
|
+
* // },
|
|
81
|
+
* // ],
|
|
82
|
+
* // OnExceptionSteps: [
|
|
83
|
+
* // {
|
|
84
|
+
* // StepType: "COPY" || "CUSTOM" || "TAG" || "DELETE" || "DECRYPT",
|
|
85
|
+
* // Outputs: "STRING_VALUE",
|
|
86
|
+
* // Error: {
|
|
87
|
+
* // Type: "PERMISSION_DENIED" || "CUSTOM_STEP_FAILED" || "THROTTLED" || "ALREADY_EXISTS" || "NOT_FOUND" || "BAD_REQUEST" || "TIMEOUT" || "INTERNAL_SERVER_ERROR", // required
|
|
88
|
+
* // Message: "STRING_VALUE", // required
|
|
89
|
+
* // },
|
|
90
|
+
* // },
|
|
91
|
+
* // ],
|
|
92
|
+
* // },
|
|
93
|
+
* // },
|
|
94
|
+
* // };
|
|
95
|
+
*
|
|
35
96
|
* ```
|
|
36
97
|
*
|
|
37
98
|
* @param DescribeExecutionCommandInput - {@link DescribeExecutionCommandInput}
|
|
@@ -53,6 +114,8 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionRespons
|
|
|
53
114
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
54
115
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
55
116
|
*
|
|
117
|
+
* @throws {@link TransferServiceException}
|
|
118
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
56
119
|
*
|
|
57
120
|
*/
|
|
58
121
|
export declare class DescribeExecutionCommand extends $Command<DescribeExecutionCommandInput, DescribeExecutionCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -32,6 +32,23 @@ export interface DescribeHostKeyCommandOutput extends DescribeHostKeyResponse, _
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeHostKeyCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeHostKeyResponse
|
|
36
|
+
* // HostKey: { // DescribedHostKey
|
|
37
|
+
* // Arn: "STRING_VALUE", // required
|
|
38
|
+
* // HostKeyId: "STRING_VALUE",
|
|
39
|
+
* // HostKeyFingerprint: "STRING_VALUE",
|
|
40
|
+
* // Description: "STRING_VALUE",
|
|
41
|
+
* // Type: "STRING_VALUE",
|
|
42
|
+
* // DateImported: new Date("TIMESTAMP"),
|
|
43
|
+
* // Tags: [ // Tags
|
|
44
|
+
* // { // Tag
|
|
45
|
+
* // Key: "STRING_VALUE", // required
|
|
46
|
+
* // Value: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // },
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
35
52
|
* ```
|
|
36
53
|
*
|
|
37
54
|
* @param DescribeHostKeyCommandInput - {@link DescribeHostKeyCommandInput}
|
|
@@ -53,6 +70,8 @@ export interface DescribeHostKeyCommandOutput extends DescribeHostKeyResponse, _
|
|
|
53
70
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
54
71
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
55
72
|
*
|
|
73
|
+
* @throws {@link TransferServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
56
75
|
*
|
|
57
76
|
*/
|
|
58
77
|
export declare class DescribeHostKeyCommand extends $Command<DescribeHostKeyCommandInput, DescribeHostKeyCommandOutput, TransferClientResolvedConfig> {
|
|
@@ -31,6 +31,24 @@ export interface DescribeProfileCommandOutput extends DescribeProfileResponse, _
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeProfileCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeProfileResponse
|
|
35
|
+
* // Profile: { // DescribedProfile
|
|
36
|
+
* // Arn: "STRING_VALUE", // required
|
|
37
|
+
* // ProfileId: "STRING_VALUE",
|
|
38
|
+
* // ProfileType: "LOCAL" || "PARTNER",
|
|
39
|
+
* // As2Id: "STRING_VALUE",
|
|
40
|
+
* // CertificateIds: [ // CertificateIds
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // Tags: [ // Tags
|
|
44
|
+
* // { // Tag
|
|
45
|
+
* // Key: "STRING_VALUE", // required
|
|
46
|
+
* // Value: "STRING_VALUE", // required
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // },
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
34
52
|
* ```
|
|
35
53
|
*
|
|
36
54
|
* @param DescribeProfileCommandInput - {@link DescribeProfileCommandInput}
|
|
@@ -52,6 +70,8 @@ export interface DescribeProfileCommandOutput extends DescribeProfileResponse, _
|
|
|
52
70
|
* @throws {@link ServiceUnavailableException} (server fault)
|
|
53
71
|
* <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
|
|
54
72
|
*
|
|
73
|
+
* @throws {@link TransferServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Transfer service.</p>
|
|
55
75
|
*
|
|
56
76
|
*/
|
|
57
77
|
export declare class DescribeProfileCommand extends $Command<DescribeProfileCommandInput, DescribeProfileCommandOutput, TransferClientResolvedConfig> {
|