@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,25 @@ export interface DescribeSecurityPolicyCommandOutput extends DescribeSecurityPol
34
34
  * };
35
35
  * const command = new DescribeSecurityPolicyCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeSecurityPolicyResponse
38
+ * // SecurityPolicy: { // DescribedSecurityPolicy
39
+ * // Fips: true || false,
40
+ * // SecurityPolicyName: "STRING_VALUE", // required
41
+ * // SshCiphers: [ // SecurityPolicyOptions
42
+ * // "STRING_VALUE",
43
+ * // ],
44
+ * // SshKexs: [
45
+ * // "STRING_VALUE",
46
+ * // ],
47
+ * // SshMacs: [
48
+ * // "STRING_VALUE",
49
+ * // ],
50
+ * // TlsCiphers: [
51
+ * // "STRING_VALUE",
52
+ * // ],
53
+ * // },
54
+ * // };
55
+ *
37
56
  * ```
38
57
  *
39
58
  * @param DescribeSecurityPolicyCommandInput - {@link DescribeSecurityPolicyCommandInput}
@@ -55,6 +74,8 @@ export interface DescribeSecurityPolicyCommandOutput extends DescribeSecurityPol
55
74
  * @throws {@link ServiceUnavailableException} (server fault)
56
75
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
57
76
  *
77
+ * @throws {@link TransferServiceException}
78
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
58
79
  *
59
80
  */
60
81
  export declare class DescribeSecurityPolicyCommand extends $Command<DescribeSecurityPolicyCommandInput, DescribeSecurityPolicyCommandOutput, TransferClientResolvedConfig> {
@@ -35,6 +35,74 @@ export interface DescribeServerCommandOutput extends DescribeServerResponse, __M
35
35
  * };
36
36
  * const command = new DescribeServerCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DescribeServerResponse
39
+ * // Server: { // DescribedServer
40
+ * // Arn: "STRING_VALUE", // required
41
+ * // Certificate: "STRING_VALUE",
42
+ * // ProtocolDetails: { // ProtocolDetails
43
+ * // PassiveIp: "STRING_VALUE",
44
+ * // TlsSessionResumptionMode: "DISABLED" || "ENABLED" || "ENFORCED",
45
+ * // SetStatOption: "DEFAULT" || "ENABLE_NO_OP",
46
+ * // As2Transports: [ // As2Transports
47
+ * // "HTTP",
48
+ * // ],
49
+ * // },
50
+ * // Domain: "S3" || "EFS",
51
+ * // EndpointDetails: { // EndpointDetails
52
+ * // AddressAllocationIds: [ // AddressAllocationIds
53
+ * // "STRING_VALUE",
54
+ * // ],
55
+ * // SubnetIds: [ // SubnetIds
56
+ * // "STRING_VALUE",
57
+ * // ],
58
+ * // VpcEndpointId: "STRING_VALUE",
59
+ * // VpcId: "STRING_VALUE",
60
+ * // SecurityGroupIds: [ // SecurityGroupIds
61
+ * // "STRING_VALUE",
62
+ * // ],
63
+ * // },
64
+ * // EndpointType: "PUBLIC" || "VPC" || "VPC_ENDPOINT",
65
+ * // HostKeyFingerprint: "STRING_VALUE",
66
+ * // IdentityProviderDetails: { // IdentityProviderDetails
67
+ * // Url: "STRING_VALUE",
68
+ * // InvocationRole: "STRING_VALUE",
69
+ * // DirectoryId: "STRING_VALUE",
70
+ * // Function: "STRING_VALUE",
71
+ * // },
72
+ * // IdentityProviderType: "SERVICE_MANAGED" || "API_GATEWAY" || "AWS_DIRECTORY_SERVICE" || "AWS_LAMBDA",
73
+ * // LoggingRole: "STRING_VALUE",
74
+ * // PostAuthenticationLoginBanner: "STRING_VALUE",
75
+ * // PreAuthenticationLoginBanner: "STRING_VALUE",
76
+ * // Protocols: [ // Protocols
77
+ * // "SFTP" || "FTP" || "FTPS" || "AS2",
78
+ * // ],
79
+ * // SecurityPolicyName: "STRING_VALUE",
80
+ * // ServerId: "STRING_VALUE",
81
+ * // State: "OFFLINE" || "ONLINE" || "STARTING" || "STOPPING" || "START_FAILED" || "STOP_FAILED",
82
+ * // Tags: [ // Tags
83
+ * // { // Tag
84
+ * // Key: "STRING_VALUE", // required
85
+ * // Value: "STRING_VALUE", // required
86
+ * // },
87
+ * // ],
88
+ * // UserCount: Number("int"),
89
+ * // WorkflowDetails: { // WorkflowDetails
90
+ * // OnUpload: [ // OnUploadWorkflowDetails
91
+ * // { // WorkflowDetail
92
+ * // WorkflowId: "STRING_VALUE", // required
93
+ * // ExecutionRole: "STRING_VALUE", // required
94
+ * // },
95
+ * // ],
96
+ * // OnPartialUpload: [ // OnPartialUploadWorkflowDetails
97
+ * // {
98
+ * // WorkflowId: "STRING_VALUE", // required
99
+ * // ExecutionRole: "STRING_VALUE", // required
100
+ * // },
101
+ * // ],
102
+ * // },
103
+ * // },
104
+ * // };
105
+ *
38
106
  * ```
39
107
  *
40
108
  * @param DescribeServerCommandInput - {@link DescribeServerCommandInput}
@@ -56,6 +124,8 @@ export interface DescribeServerCommandOutput extends DescribeServerResponse, __M
56
124
  * @throws {@link ServiceUnavailableException} (server fault)
57
125
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
58
126
  *
127
+ * @throws {@link TransferServiceException}
128
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
59
129
  *
60
130
  */
61
131
  export declare class DescribeServerCommand extends $Command<DescribeServerCommandInput, DescribeServerCommandOutput, TransferClientResolvedConfig> {
@@ -35,6 +35,44 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad
35
35
  * };
36
36
  * const command = new DescribeUserCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // DescribeUserResponse
39
+ * // ServerId: "STRING_VALUE", // required
40
+ * // User: { // DescribedUser
41
+ * // Arn: "STRING_VALUE", // required
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
+ * // SshPublicKeys: [ // SshPublicKeys
60
+ * // { // SshPublicKey
61
+ * // DateImported: new Date("TIMESTAMP"), // required
62
+ * // SshPublicKeyBody: "STRING_VALUE", // required
63
+ * // SshPublicKeyId: "STRING_VALUE", // required
64
+ * // },
65
+ * // ],
66
+ * // Tags: [ // Tags
67
+ * // { // Tag
68
+ * // Key: "STRING_VALUE", // required
69
+ * // Value: "STRING_VALUE", // required
70
+ * // },
71
+ * // ],
72
+ * // UserName: "STRING_VALUE",
73
+ * // },
74
+ * // };
75
+ *
38
76
  * ```
39
77
  *
40
78
  * @param DescribeUserCommandInput - {@link DescribeUserCommandInput}
@@ -56,6 +94,8 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad
56
94
  * @throws {@link ServiceUnavailableException} (server fault)
57
95
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
58
96
  *
97
+ * @throws {@link TransferServiceException}
98
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
59
99
  *
60
100
  */
61
101
  export declare class DescribeUserCommand extends $Command<DescribeUserCommandInput, DescribeUserCommandOutput, TransferClientResolvedConfig> {
@@ -31,6 +31,132 @@ export interface DescribeWorkflowCommandOutput extends DescribeWorkflowResponse,
31
31
  * };
32
32
  * const command = new DescribeWorkflowCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeWorkflowResponse
35
+ * // Workflow: { // DescribedWorkflow
36
+ * // Arn: "STRING_VALUE", // required
37
+ * // Description: "STRING_VALUE",
38
+ * // Steps: [ // WorkflowSteps
39
+ * // { // WorkflowStep
40
+ * // Type: "COPY" || "CUSTOM" || "TAG" || "DELETE" || "DECRYPT",
41
+ * // CopyStepDetails: { // CopyStepDetails
42
+ * // Name: "STRING_VALUE",
43
+ * // DestinationFileLocation: { // InputFileLocation
44
+ * // S3FileLocation: { // S3InputFileLocation
45
+ * // Bucket: "STRING_VALUE",
46
+ * // Key: "STRING_VALUE",
47
+ * // },
48
+ * // EfsFileLocation: { // EfsFileLocation
49
+ * // FileSystemId: "STRING_VALUE",
50
+ * // Path: "STRING_VALUE",
51
+ * // },
52
+ * // },
53
+ * // OverwriteExisting: "TRUE" || "FALSE",
54
+ * // SourceFileLocation: "STRING_VALUE",
55
+ * // },
56
+ * // CustomStepDetails: { // CustomStepDetails
57
+ * // Name: "STRING_VALUE",
58
+ * // Target: "STRING_VALUE",
59
+ * // TimeoutSeconds: Number("int"),
60
+ * // SourceFileLocation: "STRING_VALUE",
61
+ * // },
62
+ * // DeleteStepDetails: { // DeleteStepDetails
63
+ * // Name: "STRING_VALUE",
64
+ * // SourceFileLocation: "STRING_VALUE",
65
+ * // },
66
+ * // TagStepDetails: { // TagStepDetails
67
+ * // Name: "STRING_VALUE",
68
+ * // Tags: [ // S3Tags
69
+ * // { // S3Tag
70
+ * // Key: "STRING_VALUE", // required
71
+ * // Value: "STRING_VALUE", // required
72
+ * // },
73
+ * // ],
74
+ * // SourceFileLocation: "STRING_VALUE",
75
+ * // },
76
+ * // DecryptStepDetails: { // DecryptStepDetails
77
+ * // Name: "STRING_VALUE",
78
+ * // Type: "PGP", // required
79
+ * // SourceFileLocation: "STRING_VALUE",
80
+ * // OverwriteExisting: "TRUE" || "FALSE",
81
+ * // DestinationFileLocation: {
82
+ * // S3FileLocation: {
83
+ * // Bucket: "STRING_VALUE",
84
+ * // Key: "STRING_VALUE",
85
+ * // },
86
+ * // EfsFileLocation: {
87
+ * // FileSystemId: "STRING_VALUE",
88
+ * // Path: "STRING_VALUE",
89
+ * // },
90
+ * // },
91
+ * // },
92
+ * // },
93
+ * // ],
94
+ * // OnExceptionSteps: [
95
+ * // {
96
+ * // Type: "COPY" || "CUSTOM" || "TAG" || "DELETE" || "DECRYPT",
97
+ * // CopyStepDetails: {
98
+ * // Name: "STRING_VALUE",
99
+ * // DestinationFileLocation: {
100
+ * // S3FileLocation: {
101
+ * // Bucket: "STRING_VALUE",
102
+ * // Key: "STRING_VALUE",
103
+ * // },
104
+ * // EfsFileLocation: {
105
+ * // FileSystemId: "STRING_VALUE",
106
+ * // Path: "STRING_VALUE",
107
+ * // },
108
+ * // },
109
+ * // OverwriteExisting: "TRUE" || "FALSE",
110
+ * // SourceFileLocation: "STRING_VALUE",
111
+ * // },
112
+ * // CustomStepDetails: {
113
+ * // Name: "STRING_VALUE",
114
+ * // Target: "STRING_VALUE",
115
+ * // TimeoutSeconds: Number("int"),
116
+ * // SourceFileLocation: "STRING_VALUE",
117
+ * // },
118
+ * // DeleteStepDetails: {
119
+ * // Name: "STRING_VALUE",
120
+ * // SourceFileLocation: "STRING_VALUE",
121
+ * // },
122
+ * // TagStepDetails: {
123
+ * // Name: "STRING_VALUE",
124
+ * // Tags: [
125
+ * // {
126
+ * // Key: "STRING_VALUE", // required
127
+ * // Value: "STRING_VALUE", // required
128
+ * // },
129
+ * // ],
130
+ * // SourceFileLocation: "STRING_VALUE",
131
+ * // },
132
+ * // DecryptStepDetails: {
133
+ * // Name: "STRING_VALUE",
134
+ * // Type: "PGP", // required
135
+ * // SourceFileLocation: "STRING_VALUE",
136
+ * // OverwriteExisting: "TRUE" || "FALSE",
137
+ * // DestinationFileLocation: {
138
+ * // S3FileLocation: {
139
+ * // Bucket: "STRING_VALUE",
140
+ * // Key: "STRING_VALUE",
141
+ * // },
142
+ * // EfsFileLocation: {
143
+ * // FileSystemId: "STRING_VALUE",
144
+ * // Path: "STRING_VALUE",
145
+ * // },
146
+ * // },
147
+ * // },
148
+ * // },
149
+ * // ],
150
+ * // WorkflowId: "STRING_VALUE",
151
+ * // Tags: [ // Tags
152
+ * // { // Tag
153
+ * // Key: "STRING_VALUE", // required
154
+ * // Value: "STRING_VALUE", // required
155
+ * // },
156
+ * // ],
157
+ * // },
158
+ * // };
159
+ *
34
160
  * ```
35
161
  *
36
162
  * @param DescribeWorkflowCommandInput - {@link DescribeWorkflowCommandInput}
@@ -52,6 +178,8 @@ export interface DescribeWorkflowCommandOutput extends DescribeWorkflowResponse,
52
178
  * @throws {@link ServiceUnavailableException} (server fault)
53
179
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
54
180
  *
181
+ * @throws {@link TransferServiceException}
182
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
55
183
  *
56
184
  */
57
185
  export declare class DescribeWorkflowCommand extends $Command<DescribeWorkflowCommandInput, DescribeWorkflowCommandOutput, TransferClientResolvedConfig> {
@@ -45,6 +45,10 @@ export interface ImportCertificateCommandOutput extends ImportCertificateRespons
45
45
  * };
46
46
  * const command = new ImportCertificateCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // ImportCertificateResponse
49
+ * // CertificateId: "STRING_VALUE", // required
50
+ * // };
51
+ *
48
52
  * ```
49
53
  *
50
54
  * @param ImportCertificateCommandInput - {@link ImportCertificateCommandInput}
@@ -66,6 +70,8 @@ export interface ImportCertificateCommandOutput extends ImportCertificateRespons
66
70
  * @throws {@link ServiceUnavailableException} (server fault)
67
71
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
68
72
  *
73
+ * @throws {@link TransferServiceException}
74
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
69
75
  *
70
76
  */
71
77
  export declare class ImportCertificateCommand extends $Command<ImportCertificateCommandInput, ImportCertificateCommandOutput, TransferClientResolvedConfig> {
@@ -40,6 +40,11 @@ export interface ImportHostKeyCommandOutput extends ImportHostKeyResponse, __Met
40
40
  * };
41
41
  * const command = new ImportHostKeyCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // ImportHostKeyResponse
44
+ * // ServerId: "STRING_VALUE", // required
45
+ * // HostKeyId: "STRING_VALUE", // required
46
+ * // };
47
+ *
43
48
  * ```
44
49
  *
45
50
  * @param ImportHostKeyCommandInput - {@link ImportHostKeyCommandInput}
@@ -67,6 +72,8 @@ export interface ImportHostKeyCommandOutput extends ImportHostKeyResponse, __Met
67
72
  * @throws {@link ThrottlingException} (client fault)
68
73
  * <p>The request was denied due to request throttling.</p>
69
74
  *
75
+ * @throws {@link TransferServiceException}
76
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
70
77
  *
71
78
  */
72
79
  export declare class ImportHostKeyCommand extends $Command<ImportHostKeyCommandInput, ImportHostKeyCommandOutput, TransferClientResolvedConfig> {
@@ -37,6 +37,12 @@ export interface ImportSshPublicKeyCommandOutput extends ImportSshPublicKeyRespo
37
37
  * };
38
38
  * const command = new ImportSshPublicKeyCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ImportSshPublicKeyResponse
41
+ * // ServerId: "STRING_VALUE", // required
42
+ * // SshPublicKeyId: "STRING_VALUE", // required
43
+ * // UserName: "STRING_VALUE", // required
44
+ * // };
45
+ *
40
46
  * ```
41
47
  *
42
48
  * @param ImportSshPublicKeyCommandInput - {@link ImportSshPublicKeyCommandInput}
@@ -64,6 +70,8 @@ export interface ImportSshPublicKeyCommandOutput extends ImportSshPublicKeyRespo
64
70
  * @throws {@link ThrottlingException} (client fault)
65
71
  * <p>The request was denied due to request throttling.</p>
66
72
  *
73
+ * @throws {@link TransferServiceException}
74
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
67
75
  *
68
76
  */
69
77
  export declare class ImportSshPublicKeyCommand extends $Command<ImportSshPublicKeyCommandInput, ImportSshPublicKeyCommandOutput, TransferClientResolvedConfig> {
@@ -33,6 +33,19 @@ export interface ListAccessesCommandOutput extends ListAccessesResponse, __Metad
33
33
  * };
34
34
  * const command = new ListAccessesCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListAccessesResponse
37
+ * // NextToken: "STRING_VALUE",
38
+ * // ServerId: "STRING_VALUE", // required
39
+ * // Accesses: [ // ListedAccesses // required
40
+ * // { // ListedAccess
41
+ * // HomeDirectory: "STRING_VALUE",
42
+ * // HomeDirectoryType: "PATH" || "LOGICAL",
43
+ * // Role: "STRING_VALUE",
44
+ * // ExternalId: "STRING_VALUE",
45
+ * // },
46
+ * // ],
47
+ * // };
48
+ *
36
49
  * ```
37
50
  *
38
51
  * @param ListAccessesCommandInput - {@link ListAccessesCommandInput}
@@ -57,6 +70,8 @@ export interface ListAccessesCommandOutput extends ListAccessesResponse, __Metad
57
70
  * @throws {@link ServiceUnavailableException} (server fault)
58
71
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
59
72
  *
73
+ * @throws {@link TransferServiceException}
74
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
60
75
  *
61
76
  */
62
77
  export declare class ListAccessesCommand extends $Command<ListAccessesCommandInput, ListAccessesCommandOutput, TransferClientResolvedConfig> {
@@ -37,6 +37,21 @@ export interface ListAgreementsCommandOutput extends ListAgreementsResponse, __M
37
37
  * };
38
38
  * const command = new ListAgreementsCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListAgreementsResponse
41
+ * // NextToken: "STRING_VALUE",
42
+ * // Agreements: [ // ListedAgreements // required
43
+ * // { // ListedAgreement
44
+ * // Arn: "STRING_VALUE",
45
+ * // AgreementId: "STRING_VALUE",
46
+ * // Description: "STRING_VALUE",
47
+ * // Status: "ACTIVE" || "INACTIVE",
48
+ * // ServerId: "STRING_VALUE",
49
+ * // LocalProfileId: "STRING_VALUE",
50
+ * // PartnerProfileId: "STRING_VALUE",
51
+ * // },
52
+ * // ],
53
+ * // };
54
+ *
40
55
  * ```
41
56
  *
42
57
  * @param ListAgreementsCommandInput - {@link ListAgreementsCommandInput}
@@ -61,6 +76,8 @@ export interface ListAgreementsCommandOutput extends ListAgreementsResponse, __M
61
76
  * @throws {@link ServiceUnavailableException} (server fault)
62
77
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
63
78
  *
79
+ * @throws {@link TransferServiceException}
80
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
64
81
  *
65
82
  */
66
83
  export declare class ListAgreementsCommand extends $Command<ListAgreementsCommandInput, ListAgreementsCommandOutput, TransferClientResolvedConfig> {
@@ -36,6 +36,22 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResponse,
36
36
  * };
37
37
  * const command = new ListCertificatesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListCertificatesResponse
40
+ * // NextToken: "STRING_VALUE",
41
+ * // Certificates: [ // ListedCertificates // required
42
+ * // { // ListedCertificate
43
+ * // Arn: "STRING_VALUE",
44
+ * // CertificateId: "STRING_VALUE",
45
+ * // Usage: "SIGNING" || "ENCRYPTION",
46
+ * // Status: "ACTIVE" || "PENDING_ROTATION" || "INACTIVE",
47
+ * // ActiveDate: new Date("TIMESTAMP"),
48
+ * // InactiveDate: new Date("TIMESTAMP"),
49
+ * // Type: "CERTIFICATE" || "CERTIFICATE_WITH_PRIVATE_KEY",
50
+ * // Description: "STRING_VALUE",
51
+ * // },
52
+ * // ],
53
+ * // };
54
+ *
39
55
  * ```
40
56
  *
41
57
  * @param ListCertificatesCommandInput - {@link ListCertificatesCommandInput}
@@ -60,6 +76,8 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResponse,
60
76
  * @throws {@link ServiceUnavailableException} (server fault)
61
77
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
62
78
  *
79
+ * @throws {@link TransferServiceException}
80
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
63
81
  *
64
82
  */
65
83
  export declare class ListCertificatesCommand extends $Command<ListCertificatesCommandInput, ListCertificatesCommandOutput, TransferClientResolvedConfig> {
@@ -32,6 +32,17 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
32
32
  * };
33
33
  * const command = new ListConnectorsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListConnectorsResponse
36
+ * // NextToken: "STRING_VALUE",
37
+ * // Connectors: [ // ListedConnectors // required
38
+ * // { // ListedConnector
39
+ * // Arn: "STRING_VALUE",
40
+ * // ConnectorId: "STRING_VALUE",
41
+ * // Url: "STRING_VALUE",
42
+ * // },
43
+ * // ],
44
+ * // };
45
+ *
35
46
  * ```
36
47
  *
37
48
  * @param ListConnectorsCommandInput - {@link ListConnectorsCommandInput}
@@ -56,6 +67,8 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
56
67
  * @throws {@link ServiceUnavailableException} (server fault)
57
68
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
58
69
  *
70
+ * @throws {@link TransferServiceException}
71
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
59
72
  *
60
73
  */
61
74
  export declare class ListConnectorsCommand extends $Command<ListConnectorsCommandInput, ListConnectorsCommandOutput, TransferClientResolvedConfig> {
@@ -33,6 +33,36 @@ export interface ListExecutionsCommandOutput extends ListExecutionsResponse, __M
33
33
  * };
34
34
  * const command = new ListExecutionsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListExecutionsResponse
37
+ * // NextToken: "STRING_VALUE",
38
+ * // WorkflowId: "STRING_VALUE", // required
39
+ * // Executions: [ // ListedExecutions // required
40
+ * // { // ListedExecution
41
+ * // ExecutionId: "STRING_VALUE",
42
+ * // InitialFileLocation: { // FileLocation
43
+ * // S3FileLocation: { // S3FileLocation
44
+ * // Bucket: "STRING_VALUE",
45
+ * // Key: "STRING_VALUE",
46
+ * // VersionId: "STRING_VALUE",
47
+ * // Etag: "STRING_VALUE",
48
+ * // },
49
+ * // EfsFileLocation: { // EfsFileLocation
50
+ * // FileSystemId: "STRING_VALUE",
51
+ * // Path: "STRING_VALUE",
52
+ * // },
53
+ * // },
54
+ * // ServiceMetadata: { // ServiceMetadata
55
+ * // UserDetails: { // UserDetails
56
+ * // UserName: "STRING_VALUE", // required
57
+ * // ServerId: "STRING_VALUE", // required
58
+ * // SessionId: "STRING_VALUE",
59
+ * // },
60
+ * // },
61
+ * // Status: "IN_PROGRESS" || "COMPLETED" || "EXCEPTION" || "HANDLING_EXCEPTION",
62
+ * // },
63
+ * // ],
64
+ * // };
65
+ *
36
66
  * ```
37
67
  *
38
68
  * @param ListExecutionsCommandInput - {@link ListExecutionsCommandInput}
@@ -57,6 +87,8 @@ export interface ListExecutionsCommandOutput extends ListExecutionsResponse, __M
57
87
  * @throws {@link ServiceUnavailableException} (server fault)
58
88
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
59
89
  *
90
+ * @throws {@link TransferServiceException}
91
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
60
92
  *
61
93
  */
62
94
  export declare class ListExecutionsCommand extends $Command<ListExecutionsCommandInput, ListExecutionsCommandOutput, TransferClientResolvedConfig> {
@@ -34,6 +34,21 @@ export interface ListHostKeysCommandOutput extends ListHostKeysResponse, __Metad
34
34
  * };
35
35
  * const command = new ListHostKeysCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListHostKeysResponse
38
+ * // NextToken: "STRING_VALUE",
39
+ * // ServerId: "STRING_VALUE", // required
40
+ * // HostKeys: [ // ListedHostKeys // required
41
+ * // { // ListedHostKey
42
+ * // Arn: "STRING_VALUE", // required
43
+ * // HostKeyId: "STRING_VALUE",
44
+ * // Fingerprint: "STRING_VALUE",
45
+ * // Description: "STRING_VALUE",
46
+ * // Type: "STRING_VALUE",
47
+ * // DateImported: new Date("TIMESTAMP"),
48
+ * // },
49
+ * // ],
50
+ * // };
51
+ *
37
52
  * ```
38
53
  *
39
54
  * @param ListHostKeysCommandInput - {@link ListHostKeysCommandInput}
@@ -58,6 +73,8 @@ export interface ListHostKeysCommandOutput extends ListHostKeysResponse, __Metad
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 ListHostKeysCommand extends $Command<ListHostKeysCommandInput, ListHostKeysCommandOutput, TransferClientResolvedConfig> {
@@ -36,6 +36,18 @@ export interface ListProfilesCommandOutput extends ListProfilesResponse, __Metad
36
36
  * };
37
37
  * const command = new ListProfilesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListProfilesResponse
40
+ * // NextToken: "STRING_VALUE",
41
+ * // Profiles: [ // ListedProfiles // required
42
+ * // { // ListedProfile
43
+ * // Arn: "STRING_VALUE",
44
+ * // ProfileId: "STRING_VALUE",
45
+ * // As2Id: "STRING_VALUE",
46
+ * // ProfileType: "LOCAL" || "PARTNER",
47
+ * // },
48
+ * // ],
49
+ * // };
50
+ *
39
51
  * ```
40
52
  *
41
53
  * @param ListProfilesCommandInput - {@link ListProfilesCommandInput}
@@ -60,6 +72,8 @@ export interface ListProfilesCommandOutput extends ListProfilesResponse, __Metad
60
72
  * @throws {@link ServiceUnavailableException} (server fault)
61
73
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
62
74
  *
75
+ * @throws {@link TransferServiceException}
76
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
63
77
  *
64
78
  */
65
79
  export declare class ListProfilesCommand extends $Command<ListProfilesCommandInput, ListProfilesCommandOutput, TransferClientResolvedConfig> {
@@ -33,6 +33,13 @@ export interface ListSecurityPoliciesCommandOutput extends ListSecurityPoliciesR
33
33
  * };
34
34
  * const command = new ListSecurityPoliciesCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListSecurityPoliciesResponse
37
+ * // NextToken: "STRING_VALUE",
38
+ * // SecurityPolicyNames: [ // SecurityPolicyNames // required
39
+ * // "STRING_VALUE",
40
+ * // ],
41
+ * // };
42
+ *
36
43
  * ```
37
44
  *
38
45
  * @param ListSecurityPoliciesCommandInput - {@link ListSecurityPoliciesCommandInput}
@@ -53,6 +60,8 @@ export interface ListSecurityPoliciesCommandOutput extends ListSecurityPoliciesR
53
60
  * @throws {@link ServiceUnavailableException} (server fault)
54
61
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
55
62
  *
63
+ * @throws {@link TransferServiceException}
64
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
56
65
  *
57
66
  */
58
67
  export declare class ListSecurityPoliciesCommand extends $Command<ListSecurityPoliciesCommandInput, ListSecurityPoliciesCommandOutput, TransferClientResolvedConfig> {
@@ -33,6 +33,22 @@ export interface ListServersCommandOutput extends ListServersResponse, __Metadat
33
33
  * };
34
34
  * const command = new ListServersCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListServersResponse
37
+ * // NextToken: "STRING_VALUE",
38
+ * // Servers: [ // ListedServers // required
39
+ * // { // ListedServer
40
+ * // Arn: "STRING_VALUE", // required
41
+ * // Domain: "S3" || "EFS",
42
+ * // IdentityProviderType: "SERVICE_MANAGED" || "API_GATEWAY" || "AWS_DIRECTORY_SERVICE" || "AWS_LAMBDA",
43
+ * // EndpointType: "PUBLIC" || "VPC" || "VPC_ENDPOINT",
44
+ * // LoggingRole: "STRING_VALUE",
45
+ * // ServerId: "STRING_VALUE",
46
+ * // State: "OFFLINE" || "ONLINE" || "STARTING" || "STOPPING" || "START_FAILED" || "STOP_FAILED",
47
+ * // UserCount: Number("int"),
48
+ * // },
49
+ * // ],
50
+ * // };
51
+ *
36
52
  * ```
37
53
  *
38
54
  * @param ListServersCommandInput - {@link ListServersCommandInput}
@@ -53,6 +69,8 @@ export interface ListServersCommandOutput extends ListServersResponse, __Metadat
53
69
  * @throws {@link ServiceUnavailableException} (server fault)
54
70
  * <p>The request has failed because the Amazon Web ServicesTransfer Family service is not available.</p>
55
71
  *
72
+ * @throws {@link TransferServiceException}
73
+ * <p>Base exception class for all service exceptions from Transfer service.</p>
56
74
  *
57
75
  */
58
76
  export declare class ListServersCommand extends $Command<ListServersCommandInput, ListServersCommandOutput, TransferClientResolvedConfig> {