@aws-sdk/client-transfer 3.300.0 → 3.303.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-cjs/models/models_0.js +129 -154
- package/dist-es/models/models_0.js +129 -154
- package/dist-types/commands/CreateAccessCommand.d.ts +5 -5
- package/dist-types/commands/CreateAgreementCommand.d.ts +3 -3
- package/dist-types/commands/CreateConnectorCommand.d.ts +4 -4
- package/dist-types/commands/CreateProfileCommand.d.ts +4 -4
- package/dist-types/commands/CreateServerCommand.d.ts +15 -15
- package/dist-types/commands/CreateUserCommand.d.ts +7 -7
- package/dist-types/commands/CreateWorkflowCommand.d.ts +15 -15
- package/dist-types/commands/DeleteAccessCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAgreementCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCertificateCommand.d.ts +1 -1
- package/dist-types/commands/DeleteConnectorCommand.d.ts +1 -1
- package/dist-types/commands/DeleteHostKeyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteProfileCommand.d.ts +1 -1
- package/dist-types/commands/DeleteServerCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSshPublicKeyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteUserCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAccessCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAgreementCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCertificateCommand.d.ts +1 -1
- package/dist-types/commands/DescribeConnectorCommand.d.ts +1 -1
- package/dist-types/commands/DescribeExecutionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeHostKeyCommand.d.ts +1 -1
- package/dist-types/commands/DescribeProfileCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSecurityPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DescribeServerCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserCommand.d.ts +1 -1
- package/dist-types/commands/DescribeWorkflowCommand.d.ts +1 -1
- package/dist-types/commands/ImportCertificateCommand.d.ts +3 -3
- package/dist-types/commands/ImportHostKeyCommand.d.ts +3 -3
- package/dist-types/commands/ImportSshPublicKeyCommand.d.ts +1 -1
- package/dist-types/commands/ListAccessesCommand.d.ts +1 -1
- package/dist-types/commands/ListAgreementsCommand.d.ts +1 -1
- package/dist-types/commands/ListCertificatesCommand.d.ts +1 -1
- package/dist-types/commands/ListConnectorsCommand.d.ts +1 -1
- package/dist-types/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListHostKeysCommand.d.ts +1 -1
- package/dist-types/commands/ListProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListSecurityPoliciesCommand.d.ts +1 -1
- package/dist-types/commands/ListServersCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListUsersCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
- package/dist-types/commands/SendWorkflowStepStateCommand.d.ts +1 -1
- package/dist-types/commands/StartFileTransferCommand.d.ts +2 -2
- package/dist-types/commands/StartServerCommand.d.ts +1 -1
- package/dist-types/commands/StopServerCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/TestIdentityProviderCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAccessCommand.d.ts +5 -5
- package/dist-types/commands/UpdateAgreementCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCertificateCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectorCommand.d.ts +2 -2
- package/dist-types/commands/UpdateHostKeyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProfileCommand.d.ts +2 -2
- package/dist-types/commands/UpdateServerCommand.d.ts +13 -13
- package/dist-types/commands/UpdateUserCommand.d.ts +5 -5
- package/dist-types/models/models_0.d.ts +254 -129
- package/dist-types/ts3.4/models/models_0.d.ts +168 -129
- package/package.json +35 -35
|
@@ -31,7 +31,7 @@ export interface CreateAgreementCommandOutput extends CreateAgreementResponse, _
|
|
|
31
31
|
* import { TransferClient, CreateAgreementCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
32
32
|
* // const { TransferClient, CreateAgreementCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
33
33
|
* const client = new TransferClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // CreateAgreementRequest
|
|
35
35
|
* Description: "STRING_VALUE",
|
|
36
36
|
* ServerId: "STRING_VALUE", // required
|
|
37
37
|
* LocalProfileId: "STRING_VALUE", // required
|
|
@@ -39,8 +39,8 @@ export interface CreateAgreementCommandOutput extends CreateAgreementResponse, _
|
|
|
39
39
|
* BaseDirectory: "STRING_VALUE", // required
|
|
40
40
|
* AccessRole: "STRING_VALUE", // required
|
|
41
41
|
* Status: "ACTIVE" || "INACTIVE",
|
|
42
|
-
* Tags: [
|
|
43
|
-
* {
|
|
42
|
+
* Tags: [ // Tags
|
|
43
|
+
* { // Tag
|
|
44
44
|
* Key: "STRING_VALUE", // required
|
|
45
45
|
* Value: "STRING_VALUE", // required
|
|
46
46
|
* },
|
|
@@ -28,9 +28,9 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
|
|
|
28
28
|
* import { TransferClient, CreateConnectorCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
29
29
|
* // const { TransferClient, CreateConnectorCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
30
30
|
* const client = new TransferClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateConnectorRequest
|
|
32
32
|
* Url: "STRING_VALUE", // required
|
|
33
|
-
* As2Config: {
|
|
33
|
+
* As2Config: { // As2ConnectorConfig
|
|
34
34
|
* LocalProfileId: "STRING_VALUE",
|
|
35
35
|
* PartnerProfileId: "STRING_VALUE",
|
|
36
36
|
* MessageSubject: "STRING_VALUE",
|
|
@@ -42,8 +42,8 @@ export interface CreateConnectorCommandOutput extends CreateConnectorResponse, _
|
|
|
42
42
|
* },
|
|
43
43
|
* AccessRole: "STRING_VALUE", // required
|
|
44
44
|
* LoggingRole: "STRING_VALUE",
|
|
45
|
-
* Tags: [
|
|
46
|
-
* {
|
|
45
|
+
* Tags: [ // Tags
|
|
46
|
+
* { // Tag
|
|
47
47
|
* Key: "STRING_VALUE", // required
|
|
48
48
|
* Value: "STRING_VALUE", // required
|
|
49
49
|
* },
|
|
@@ -26,14 +26,14 @@ export interface CreateProfileCommandOutput extends CreateProfileResponse, __Met
|
|
|
26
26
|
* import { TransferClient, CreateProfileCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, CreateProfileCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // CreateProfileRequest
|
|
30
30
|
* As2Id: "STRING_VALUE", // required
|
|
31
31
|
* ProfileType: "LOCAL" || "PARTNER", // required
|
|
32
|
-
* CertificateIds: [
|
|
32
|
+
* CertificateIds: [ // CertificateIds
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
|
-
* Tags: [
|
|
36
|
-
* {
|
|
35
|
+
* Tags: [ // Tags
|
|
36
|
+
* { // Tag
|
|
37
37
|
* Key: "STRING_VALUE", // required
|
|
38
38
|
* Value: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
@@ -29,25 +29,25 @@ export interface CreateServerCommandOutput extends CreateServerResponse, __Metad
|
|
|
29
29
|
* import { TransferClient, CreateServerCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
30
30
|
* // const { TransferClient, CreateServerCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
31
31
|
* const client = new TransferClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CreateServerRequest
|
|
33
33
|
* Certificate: "STRING_VALUE",
|
|
34
34
|
* Domain: "S3" || "EFS",
|
|
35
|
-
* EndpointDetails: {
|
|
36
|
-
* AddressAllocationIds: [
|
|
35
|
+
* EndpointDetails: { // EndpointDetails
|
|
36
|
+
* AddressAllocationIds: [ // AddressAllocationIds
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
|
-
* SubnetIds: [
|
|
39
|
+
* SubnetIds: [ // SubnetIds
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
42
|
* VpcEndpointId: "STRING_VALUE",
|
|
43
43
|
* VpcId: "STRING_VALUE",
|
|
44
|
-
* SecurityGroupIds: [
|
|
44
|
+
* SecurityGroupIds: [ // SecurityGroupIds
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
47
47
|
* },
|
|
48
48
|
* EndpointType: "PUBLIC" || "VPC" || "VPC_ENDPOINT",
|
|
49
49
|
* HostKey: "STRING_VALUE",
|
|
50
|
-
* IdentityProviderDetails: {
|
|
50
|
+
* IdentityProviderDetails: { // IdentityProviderDetails
|
|
51
51
|
* Url: "STRING_VALUE",
|
|
52
52
|
* InvocationRole: "STRING_VALUE",
|
|
53
53
|
* DirectoryId: "STRING_VALUE",
|
|
@@ -57,32 +57,32 @@ export interface CreateServerCommandOutput extends CreateServerResponse, __Metad
|
|
|
57
57
|
* LoggingRole: "STRING_VALUE",
|
|
58
58
|
* PostAuthenticationLoginBanner: "STRING_VALUE",
|
|
59
59
|
* PreAuthenticationLoginBanner: "STRING_VALUE",
|
|
60
|
-
* Protocols: [
|
|
60
|
+
* Protocols: [ // Protocols
|
|
61
61
|
* "SFTP" || "FTP" || "FTPS" || "AS2",
|
|
62
62
|
* ],
|
|
63
|
-
* ProtocolDetails: {
|
|
63
|
+
* ProtocolDetails: { // ProtocolDetails
|
|
64
64
|
* PassiveIp: "STRING_VALUE",
|
|
65
65
|
* TlsSessionResumptionMode: "DISABLED" || "ENABLED" || "ENFORCED",
|
|
66
66
|
* SetStatOption: "DEFAULT" || "ENABLE_NO_OP",
|
|
67
|
-
* As2Transports: [
|
|
67
|
+
* As2Transports: [ // As2Transports
|
|
68
68
|
* "HTTP",
|
|
69
69
|
* ],
|
|
70
70
|
* },
|
|
71
71
|
* SecurityPolicyName: "STRING_VALUE",
|
|
72
|
-
* Tags: [
|
|
73
|
-
* {
|
|
72
|
+
* Tags: [ // Tags
|
|
73
|
+
* { // Tag
|
|
74
74
|
* Key: "STRING_VALUE", // required
|
|
75
75
|
* Value: "STRING_VALUE", // required
|
|
76
76
|
* },
|
|
77
77
|
* ],
|
|
78
|
-
* WorkflowDetails: {
|
|
79
|
-
* OnUpload: [
|
|
80
|
-
* {
|
|
78
|
+
* WorkflowDetails: { // WorkflowDetails
|
|
79
|
+
* OnUpload: [ // OnUploadWorkflowDetails
|
|
80
|
+
* { // WorkflowDetail
|
|
81
81
|
* WorkflowId: "STRING_VALUE", // required
|
|
82
82
|
* ExecutionRole: "STRING_VALUE", // required
|
|
83
83
|
* },
|
|
84
84
|
* ],
|
|
85
|
-
* OnPartialUpload: [
|
|
85
|
+
* OnPartialUpload: [ // OnPartialUploadWorkflowDetails
|
|
86
86
|
* {
|
|
87
87
|
* WorkflowId: "STRING_VALUE", // required
|
|
88
88
|
* ExecutionRole: "STRING_VALUE", // required
|
|
@@ -32,28 +32,28 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
|
|
|
32
32
|
* import { TransferClient, CreateUserCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
33
33
|
* // const { TransferClient, CreateUserCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
34
34
|
* const client = new TransferClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // CreateUserRequest
|
|
36
36
|
* HomeDirectory: "STRING_VALUE",
|
|
37
37
|
* HomeDirectoryType: "PATH" || "LOGICAL",
|
|
38
|
-
* HomeDirectoryMappings: [
|
|
39
|
-
* {
|
|
38
|
+
* HomeDirectoryMappings: [ // HomeDirectoryMappings
|
|
39
|
+
* { // HomeDirectoryMapEntry
|
|
40
40
|
* Entry: "STRING_VALUE", // required
|
|
41
41
|
* Target: "STRING_VALUE", // required
|
|
42
42
|
* },
|
|
43
43
|
* ],
|
|
44
44
|
* Policy: "STRING_VALUE",
|
|
45
|
-
* PosixProfile: {
|
|
45
|
+
* PosixProfile: { // PosixProfile
|
|
46
46
|
* Uid: Number("long"), // required
|
|
47
47
|
* Gid: Number("long"), // required
|
|
48
|
-
* SecondaryGids: [
|
|
48
|
+
* SecondaryGids: [ // SecondaryGids
|
|
49
49
|
* Number("long"),
|
|
50
50
|
* ],
|
|
51
51
|
* },
|
|
52
52
|
* Role: "STRING_VALUE", // required
|
|
53
53
|
* ServerId: "STRING_VALUE", // required
|
|
54
54
|
* SshPublicKeyBody: "STRING_VALUE",
|
|
55
|
-
* Tags: [
|
|
56
|
-
* {
|
|
55
|
+
* Tags: [ // Tags
|
|
56
|
+
* { // Tag
|
|
57
57
|
* Key: "STRING_VALUE", // required
|
|
58
58
|
* Value: "STRING_VALUE", // required
|
|
59
59
|
* },
|
|
@@ -29,19 +29,19 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M
|
|
|
29
29
|
* import { TransferClient, CreateWorkflowCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
30
30
|
* // const { TransferClient, CreateWorkflowCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
31
31
|
* const client = new TransferClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CreateWorkflowRequest
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
34
|
-
* Steps: [ // required
|
|
35
|
-
* {
|
|
34
|
+
* Steps: [ // WorkflowSteps // required
|
|
35
|
+
* { // WorkflowStep
|
|
36
36
|
* Type: "COPY" || "CUSTOM" || "TAG" || "DELETE" || "DECRYPT",
|
|
37
|
-
* CopyStepDetails: {
|
|
37
|
+
* CopyStepDetails: { // CopyStepDetails
|
|
38
38
|
* Name: "STRING_VALUE",
|
|
39
|
-
* DestinationFileLocation: {
|
|
40
|
-
* S3FileLocation: {
|
|
39
|
+
* DestinationFileLocation: { // InputFileLocation
|
|
40
|
+
* S3FileLocation: { // S3InputFileLocation
|
|
41
41
|
* Bucket: "STRING_VALUE",
|
|
42
42
|
* Key: "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
|
-
* EfsFileLocation: {
|
|
44
|
+
* EfsFileLocation: { // EfsFileLocation
|
|
45
45
|
* FileSystemId: "STRING_VALUE",
|
|
46
46
|
* Path: "STRING_VALUE",
|
|
47
47
|
* },
|
|
@@ -49,27 +49,27 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M
|
|
|
49
49
|
* OverwriteExisting: "TRUE" || "FALSE",
|
|
50
50
|
* SourceFileLocation: "STRING_VALUE",
|
|
51
51
|
* },
|
|
52
|
-
* CustomStepDetails: {
|
|
52
|
+
* CustomStepDetails: { // CustomStepDetails
|
|
53
53
|
* Name: "STRING_VALUE",
|
|
54
54
|
* Target: "STRING_VALUE",
|
|
55
55
|
* TimeoutSeconds: Number("int"),
|
|
56
56
|
* SourceFileLocation: "STRING_VALUE",
|
|
57
57
|
* },
|
|
58
|
-
* DeleteStepDetails: {
|
|
58
|
+
* DeleteStepDetails: { // DeleteStepDetails
|
|
59
59
|
* Name: "STRING_VALUE",
|
|
60
60
|
* SourceFileLocation: "STRING_VALUE",
|
|
61
61
|
* },
|
|
62
|
-
* TagStepDetails: {
|
|
62
|
+
* TagStepDetails: { // TagStepDetails
|
|
63
63
|
* Name: "STRING_VALUE",
|
|
64
|
-
* Tags: [
|
|
65
|
-
* {
|
|
64
|
+
* Tags: [ // S3Tags
|
|
65
|
+
* { // S3Tag
|
|
66
66
|
* Key: "STRING_VALUE", // required
|
|
67
67
|
* Value: "STRING_VALUE", // required
|
|
68
68
|
* },
|
|
69
69
|
* ],
|
|
70
70
|
* SourceFileLocation: "STRING_VALUE",
|
|
71
71
|
* },
|
|
72
|
-
* DecryptStepDetails: {
|
|
72
|
+
* DecryptStepDetails: { // DecryptStepDetails
|
|
73
73
|
* Name: "STRING_VALUE",
|
|
74
74
|
* Type: "PGP", // required
|
|
75
75
|
* SourceFileLocation: "STRING_VALUE",
|
|
@@ -143,8 +143,8 @@ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __M
|
|
|
143
143
|
* },
|
|
144
144
|
* },
|
|
145
145
|
* ],
|
|
146
|
-
* Tags: [
|
|
147
|
-
* {
|
|
146
|
+
* Tags: [ // Tags
|
|
147
|
+
* { // Tag
|
|
148
148
|
* Key: "STRING_VALUE", // required
|
|
149
149
|
* Value: "STRING_VALUE", // required
|
|
150
150
|
* },
|
|
@@ -27,7 +27,7 @@ export interface DeleteAccessCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { TransferClient, DeleteAccessCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
28
28
|
* // const { TransferClient, DeleteAccessCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
29
29
|
* const client = new TransferClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteAccessRequest
|
|
31
31
|
* ServerId: "STRING_VALUE", // required
|
|
32
32
|
* ExternalId: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteAgreementCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { TransferClient, DeleteAgreementCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, DeleteAgreementCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteAgreementRequest
|
|
30
30
|
* AgreementId: "STRING_VALUE", // required
|
|
31
31
|
* ServerId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -27,7 +27,7 @@ export interface DeleteCertificateCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { TransferClient, DeleteCertificateCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
28
28
|
* // const { TransferClient, DeleteCertificateCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
29
29
|
* const client = new TransferClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteCertificateRequest
|
|
31
31
|
* CertificateId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteCertificateCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteConnectorCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { TransferClient, DeleteConnectorCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, DeleteConnectorCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteConnectorRequest
|
|
30
30
|
* ConnectorId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteConnectorCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteHostKeyCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { TransferClient, DeleteHostKeyCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, DeleteHostKeyCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteHostKeyRequest
|
|
30
30
|
* ServerId: "STRING_VALUE", // required
|
|
31
31
|
* HostKeyId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteProfileCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { TransferClient, DeleteProfileCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, DeleteProfileCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteProfileRequest
|
|
30
30
|
* ProfileId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteProfileCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DeleteServerCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { TransferClient, DeleteServerCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
28
28
|
* // const { TransferClient, DeleteServerCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
29
29
|
* const client = new TransferClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteServerRequest
|
|
31
31
|
* ServerId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteServerCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DeleteSshPublicKeyCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { TransferClient, DeleteSshPublicKeyCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, DeleteSshPublicKeyCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteSshPublicKeyRequest
|
|
30
30
|
* ServerId: "STRING_VALUE", // required
|
|
31
31
|
* SshPublicKeyId: "STRING_VALUE", // required
|
|
32
32
|
* UserName: "STRING_VALUE", // required
|
|
@@ -30,7 +30,7 @@ export interface DeleteUserCommandOutput extends __MetadataBearer {
|
|
|
30
30
|
* import { TransferClient, DeleteUserCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
31
31
|
* // const { TransferClient, DeleteUserCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
32
32
|
* const client = new TransferClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteUserRequest
|
|
34
34
|
* ServerId: "STRING_VALUE", // required
|
|
35
35
|
* UserName: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteWorkflowCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { TransferClient, DeleteWorkflowCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, DeleteWorkflowCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteWorkflowRequest
|
|
30
30
|
* WorkflowId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteWorkflowCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface DescribeAccessCommandOutput extends DescribeAccessResponse, __M
|
|
|
30
30
|
* import { TransferClient, DescribeAccessCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
31
31
|
* // const { TransferClient, DescribeAccessCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
32
32
|
* const client = new TransferClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DescribeAccessRequest
|
|
34
34
|
* ServerId: "STRING_VALUE", // required
|
|
35
35
|
* ExternalId: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeAgreementCommandOutput extends DescribeAgreementRespons
|
|
|
26
26
|
* import { TransferClient, DescribeAgreementCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, DescribeAgreementCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeAgreementRequest
|
|
30
30
|
* AgreementId: "STRING_VALUE", // required
|
|
31
31
|
* ServerId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeCertificateCommandOutput extends DescribeCertificateRes
|
|
|
26
26
|
* import { TransferClient, DescribeCertificateCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, DescribeCertificateCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeCertificateRequest
|
|
30
30
|
* CertificateId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeCertificateCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
|
|
|
27
27
|
* import { TransferClient, DescribeConnectorCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
28
28
|
* // const { TransferClient, DescribeConnectorCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
29
29
|
* const client = new TransferClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DescribeConnectorRequest
|
|
31
31
|
* ConnectorId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeConnectorCommand(input);
|
|
@@ -26,7 +26,7 @@ export interface DescribeExecutionCommandOutput extends DescribeExecutionRespons
|
|
|
26
26
|
* import { TransferClient, DescribeExecutionCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, DescribeExecutionCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeExecutionRequest
|
|
30
30
|
* ExecutionId: "STRING_VALUE", // required
|
|
31
31
|
* WorkflowId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeHostKeyCommandOutput extends DescribeHostKeyResponse, _
|
|
|
26
26
|
* import { TransferClient, DescribeHostKeyCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, DescribeHostKeyCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeHostKeyRequest
|
|
30
30
|
* ServerId: "STRING_VALUE", // required
|
|
31
31
|
* HostKeyId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeProfileCommandOutput extends DescribeProfileResponse, _
|
|
|
26
26
|
* import { TransferClient, DescribeProfileCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, DescribeProfileCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeProfileRequest
|
|
30
30
|
* ProfileId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeProfileCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface DescribeSecurityPolicyCommandOutput extends DescribeSecurityPol
|
|
|
29
29
|
* import { TransferClient, DescribeSecurityPolicyCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
30
30
|
* // const { TransferClient, DescribeSecurityPolicyCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
31
31
|
* const client = new TransferClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DescribeSecurityPolicyRequest
|
|
33
33
|
* SecurityPolicyName: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DescribeSecurityPolicyCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface DescribeServerCommandOutput extends DescribeServerResponse, __M
|
|
|
30
30
|
* import { TransferClient, DescribeServerCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
31
31
|
* // const { TransferClient, DescribeServerCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
32
32
|
* const client = new TransferClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DescribeServerRequest
|
|
34
34
|
* ServerId: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DescribeServerCommand(input);
|
|
@@ -29,7 +29,7 @@ export interface DescribeUserCommandOutput extends DescribeUserResponse, __Metad
|
|
|
29
29
|
* import { TransferClient, DescribeUserCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
30
30
|
* // const { TransferClient, DescribeUserCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
31
31
|
* const client = new TransferClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // DescribeUserRequest
|
|
33
33
|
* ServerId: "STRING_VALUE", // required
|
|
34
34
|
* UserName: "STRING_VALUE", // required
|
|
35
35
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DescribeWorkflowCommandOutput extends DescribeWorkflowResponse,
|
|
|
26
26
|
* import { TransferClient, DescribeWorkflowCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, DescribeWorkflowCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DescribeWorkflowRequest
|
|
30
30
|
* WorkflowId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeWorkflowCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface ImportCertificateCommandOutput extends ImportCertificateRespons
|
|
|
28
28
|
* import { TransferClient, ImportCertificateCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
29
29
|
* // const { TransferClient, ImportCertificateCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
30
30
|
* const client = new TransferClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ImportCertificateRequest
|
|
32
32
|
* Usage: "SIGNING" || "ENCRYPTION", // required
|
|
33
33
|
* Certificate: "STRING_VALUE", // required
|
|
34
34
|
* CertificateChain: "STRING_VALUE",
|
|
@@ -36,8 +36,8 @@ export interface ImportCertificateCommandOutput extends ImportCertificateRespons
|
|
|
36
36
|
* ActiveDate: new Date("TIMESTAMP"),
|
|
37
37
|
* InactiveDate: new Date("TIMESTAMP"),
|
|
38
38
|
* Description: "STRING_VALUE",
|
|
39
|
-
* Tags: [
|
|
40
|
-
* {
|
|
39
|
+
* Tags: [ // Tags
|
|
40
|
+
* { // Tag
|
|
41
41
|
* Key: "STRING_VALUE", // required
|
|
42
42
|
* Value: "STRING_VALUE", // required
|
|
43
43
|
* },
|
|
@@ -27,12 +27,12 @@ export interface ImportHostKeyCommandOutput extends ImportHostKeyResponse, __Met
|
|
|
27
27
|
* import { TransferClient, ImportHostKeyCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
28
28
|
* // const { TransferClient, ImportHostKeyCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
29
29
|
* const client = new TransferClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ImportHostKeyRequest
|
|
31
31
|
* ServerId: "STRING_VALUE", // required
|
|
32
32
|
* HostKeyBody: "STRING_VALUE", // required
|
|
33
33
|
* Description: "STRING_VALUE",
|
|
34
|
-
* Tags: [
|
|
35
|
-
* {
|
|
34
|
+
* Tags: [ // Tags
|
|
35
|
+
* { // Tag
|
|
36
36
|
* Key: "STRING_VALUE", // required
|
|
37
37
|
* Value: "STRING_VALUE", // required
|
|
38
38
|
* },
|
|
@@ -30,7 +30,7 @@ export interface ImportSshPublicKeyCommandOutput extends ImportSshPublicKeyRespo
|
|
|
30
30
|
* import { TransferClient, ImportSshPublicKeyCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
31
31
|
* // const { TransferClient, ImportSshPublicKeyCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
32
32
|
* const client = new TransferClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ImportSshPublicKeyRequest
|
|
34
34
|
* ServerId: "STRING_VALUE", // required
|
|
35
35
|
* SshPublicKeyBody: "STRING_VALUE", // required
|
|
36
36
|
* UserName: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface ListAccessesCommandOutput extends ListAccessesResponse, __Metad
|
|
|
26
26
|
* import { TransferClient, ListAccessesCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, ListAccessesCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListAccessesRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* ServerId: "STRING_VALUE", // required
|
|
@@ -30,7 +30,7 @@ export interface ListAgreementsCommandOutput extends ListAgreementsResponse, __M
|
|
|
30
30
|
* import { TransferClient, ListAgreementsCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
31
31
|
* // const { TransferClient, ListAgreementsCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
32
32
|
* const client = new TransferClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ListAgreementsRequest
|
|
34
34
|
* MaxResults: Number("int"),
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
36
36
|
* ServerId: "STRING_VALUE", // required
|
|
@@ -30,7 +30,7 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResponse,
|
|
|
30
30
|
* import { TransferClient, ListCertificatesCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
31
31
|
* // const { TransferClient, ListCertificatesCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
32
32
|
* const client = new TransferClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ListCertificatesRequest
|
|
34
34
|
* MaxResults: Number("int"),
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
36
36
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
|
|
|
26
26
|
* import { TransferClient, ListConnectorsCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, ListConnectorsCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListConnectorsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListExecutionsCommandOutput extends ListExecutionsResponse, __M
|
|
|
26
26
|
* import { TransferClient, ListExecutionsCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, ListExecutionsCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListExecutionsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* WorkflowId: "STRING_VALUE", // required
|
|
@@ -27,7 +27,7 @@ export interface ListHostKeysCommandOutput extends ListHostKeysResponse, __Metad
|
|
|
27
27
|
* import { TransferClient, ListHostKeysCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
28
28
|
* // const { TransferClient, ListHostKeysCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
29
29
|
* const client = new TransferClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListHostKeysRequest
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* ServerId: "STRING_VALUE", // required
|
|
@@ -29,7 +29,7 @@ export interface ListProfilesCommandOutput extends ListProfilesResponse, __Metad
|
|
|
29
29
|
* import { TransferClient, ListProfilesCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
30
30
|
* // const { TransferClient, ListProfilesCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
31
31
|
* const client = new TransferClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // ListProfilesRequest
|
|
33
33
|
* MaxResults: Number("int"),
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
35
35
|
* ProfileType: "LOCAL" || "PARTNER",
|
|
@@ -27,7 +27,7 @@ export interface ListSecurityPoliciesCommandOutput extends ListSecurityPoliciesR
|
|
|
27
27
|
* import { TransferClient, ListSecurityPoliciesCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
28
28
|
* // const { TransferClient, ListSecurityPoliciesCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
29
29
|
* const client = new TransferClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListSecurityPoliciesRequest
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListServersCommandOutput extends ListServersResponse, __Metadat
|
|
|
27
27
|
* import { TransferClient, ListServersCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
28
28
|
* // const { TransferClient, ListServersCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
29
29
|
* const client = new TransferClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListServersRequest
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
27
27
|
* import { TransferClient, ListTagsForResourceCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
28
28
|
* // const { TransferClient, ListTagsForResourceCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
29
29
|
* const client = new TransferClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListTagsForResourceRequest
|
|
31
31
|
* Arn: "STRING_VALUE", // required
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
33
|
* NextToken: "STRING_VALUE",
|