@aws-sdk/client-transfer 3.300.0 → 3.301.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 +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/package.json +3 -3
|
@@ -31,20 +31,20 @@ export interface CreateAccessCommandOutput extends CreateAccessResponse, __Metad
|
|
|
31
31
|
* import { TransferClient, CreateAccessCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
32
32
|
* // const { TransferClient, CreateAccessCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
33
33
|
* const client = new TransferClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // CreateAccessRequest
|
|
35
35
|
* HomeDirectory: "STRING_VALUE",
|
|
36
36
|
* HomeDirectoryType: "PATH" || "LOGICAL",
|
|
37
|
-
* HomeDirectoryMappings: [
|
|
38
|
-
* {
|
|
37
|
+
* HomeDirectoryMappings: [ // HomeDirectoryMappings
|
|
38
|
+
* { // HomeDirectoryMapEntry
|
|
39
39
|
* Entry: "STRING_VALUE", // required
|
|
40
40
|
* Target: "STRING_VALUE", // required
|
|
41
41
|
* },
|
|
42
42
|
* ],
|
|
43
43
|
* Policy: "STRING_VALUE",
|
|
44
|
-
* PosixProfile: {
|
|
44
|
+
* PosixProfile: { // PosixProfile
|
|
45
45
|
* Uid: Number("long"), // required
|
|
46
46
|
* Gid: Number("long"), // required
|
|
47
|
-
* SecondaryGids: [
|
|
47
|
+
* SecondaryGids: [ // SecondaryGids
|
|
48
48
|
* Number("long"),
|
|
49
49
|
* ],
|
|
50
50
|
* },
|
|
@@ -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",
|
|
@@ -27,7 +27,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea
|
|
|
27
27
|
* import { TransferClient, ListUsersCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
28
28
|
* // const { TransferClient, ListUsersCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
29
29
|
* const client = new TransferClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListUsersRequest
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* ServerId: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ export interface ListWorkflowsCommandOutput extends ListWorkflowsResponse, __Met
|
|
|
26
26
|
* import { TransferClient, ListWorkflowsCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, ListWorkflowsCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListWorkflowsRequest
|
|
30
30
|
* MaxResults: Number("int"),
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -30,7 +30,7 @@ export interface SendWorkflowStepStateCommandOutput extends SendWorkflowStepStat
|
|
|
30
30
|
* import { TransferClient, SendWorkflowStepStateCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
31
31
|
* // const { TransferClient, SendWorkflowStepStateCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
32
32
|
* const client = new TransferClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // SendWorkflowStepStateRequest
|
|
34
34
|
* WorkflowId: "STRING_VALUE", // required
|
|
35
35
|
* ExecutionId: "STRING_VALUE", // required
|
|
36
36
|
* Token: "STRING_VALUE", // required
|
|
@@ -27,9 +27,9 @@ export interface StartFileTransferCommandOutput extends StartFileTransferRespons
|
|
|
27
27
|
* import { TransferClient, StartFileTransferCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
28
28
|
* // const { TransferClient, StartFileTransferCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
29
29
|
* const client = new TransferClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // StartFileTransferRequest
|
|
31
31
|
* ConnectorId: "STRING_VALUE", // required
|
|
32
|
-
* SendFilePaths: [ // required
|
|
32
|
+
* SendFilePaths: [ // FilePaths // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -32,7 +32,7 @@ export interface StartServerCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* import { TransferClient, StartServerCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
33
33
|
* // const { TransferClient, StartServerCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
34
34
|
* const client = new TransferClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // StartServerRequest
|
|
36
36
|
* ServerId: "STRING_VALUE", // required
|
|
37
37
|
* };
|
|
38
38
|
* const command = new StartServerCommand(input);
|
|
@@ -37,7 +37,7 @@ export interface StopServerCommandOutput extends __MetadataBearer {
|
|
|
37
37
|
* import { TransferClient, StopServerCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
38
38
|
* // const { TransferClient, StopServerCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
39
39
|
* const client = new TransferClient(config);
|
|
40
|
-
* const input = {
|
|
40
|
+
* const input = { // StopServerRequest
|
|
41
41
|
* ServerId: "STRING_VALUE", // required
|
|
42
42
|
* };
|
|
43
43
|
* const command = new StopServerCommand(input);
|
|
@@ -28,10 +28,10 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { TransferClient, TagResourceCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
29
29
|
* // const { TransferClient, TagResourceCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
30
30
|
* const client = new TransferClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // TagResourceRequest
|
|
32
32
|
* Arn: "STRING_VALUE", // required
|
|
33
|
-
* Tags: [ // required
|
|
34
|
-
* {
|
|
33
|
+
* Tags: [ // Tags // required
|
|
34
|
+
* { // Tag
|
|
35
35
|
* Key: "STRING_VALUE", // required
|
|
36
36
|
* Value: "STRING_VALUE", // required
|
|
37
37
|
* },
|
|
@@ -64,7 +64,7 @@ export interface TestIdentityProviderCommandOutput extends TestIdentityProviderR
|
|
|
64
64
|
* import { TransferClient, TestIdentityProviderCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
65
65
|
* // const { TransferClient, TestIdentityProviderCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
66
66
|
* const client = new TransferClient(config);
|
|
67
|
-
* const input = {
|
|
67
|
+
* const input = { // TestIdentityProviderRequest
|
|
68
68
|
* ServerId: "STRING_VALUE", // required
|
|
69
69
|
* ServerProtocol: "SFTP" || "FTP" || "FTPS" || "AS2",
|
|
70
70
|
* SourceIp: "STRING_VALUE",
|
|
@@ -28,9 +28,9 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { TransferClient, UntagResourceCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
29
29
|
* // const { TransferClient, UntagResourceCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
30
30
|
* const client = new TransferClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UntagResourceRequest
|
|
32
32
|
* Arn: "STRING_VALUE", // required
|
|
33
|
-
* TagKeys: [ // required
|
|
33
|
+
* TagKeys: [ // TagKeys // required
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* };
|
|
@@ -27,20 +27,20 @@ export interface UpdateAccessCommandOutput extends UpdateAccessResponse, __Metad
|
|
|
27
27
|
* import { TransferClient, UpdateAccessCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
28
28
|
* // const { TransferClient, UpdateAccessCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
29
29
|
* const client = new TransferClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateAccessRequest
|
|
31
31
|
* HomeDirectory: "STRING_VALUE",
|
|
32
32
|
* HomeDirectoryType: "PATH" || "LOGICAL",
|
|
33
|
-
* HomeDirectoryMappings: [
|
|
34
|
-
* {
|
|
33
|
+
* HomeDirectoryMappings: [ // HomeDirectoryMappings
|
|
34
|
+
* { // HomeDirectoryMapEntry
|
|
35
35
|
* Entry: "STRING_VALUE", // required
|
|
36
36
|
* Target: "STRING_VALUE", // required
|
|
37
37
|
* },
|
|
38
38
|
* ],
|
|
39
39
|
* Policy: "STRING_VALUE",
|
|
40
|
-
* PosixProfile: {
|
|
40
|
+
* PosixProfile: { // PosixProfile
|
|
41
41
|
* Uid: Number("long"), // required
|
|
42
42
|
* Gid: Number("long"), // required
|
|
43
|
-
* SecondaryGids: [
|
|
43
|
+
* SecondaryGids: [ // SecondaryGids
|
|
44
44
|
* Number("long"),
|
|
45
45
|
* ],
|
|
46
46
|
* },
|
|
@@ -28,7 +28,7 @@ export interface UpdateAgreementCommandOutput extends UpdateAgreementResponse, _
|
|
|
28
28
|
* import { TransferClient, UpdateAgreementCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
29
29
|
* // const { TransferClient, UpdateAgreementCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
30
30
|
* const client = new TransferClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateAgreementRequest
|
|
32
32
|
* AgreementId: "STRING_VALUE", // required
|
|
33
33
|
* ServerId: "STRING_VALUE", // required
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface UpdateCertificateCommandOutput extends UpdateCertificateRespons
|
|
|
26
26
|
* import { TransferClient, UpdateCertificateCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
27
27
|
* // const { TransferClient, UpdateCertificateCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
28
28
|
* const client = new TransferClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateCertificateRequest
|
|
30
30
|
* CertificateId: "STRING_VALUE", // required
|
|
31
31
|
* ActiveDate: new Date("TIMESTAMP"),
|
|
32
32
|
* InactiveDate: new Date("TIMESTAMP"),
|
|
@@ -28,10 +28,10 @@ export interface UpdateConnectorCommandOutput extends UpdateConnectorResponse, _
|
|
|
28
28
|
* import { TransferClient, UpdateConnectorCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
29
29
|
* // const { TransferClient, UpdateConnectorCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
30
30
|
* const client = new TransferClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateConnectorRequest
|
|
32
32
|
* ConnectorId: "STRING_VALUE", // required
|
|
33
33
|
* Url: "STRING_VALUE",
|
|
34
|
-
* As2Config: {
|
|
34
|
+
* As2Config: { // As2ConnectorConfig
|
|
35
35
|
* LocalProfileId: "STRING_VALUE",
|
|
36
36
|
* PartnerProfileId: "STRING_VALUE",
|
|
37
37
|
* MessageSubject: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface UpdateHostKeyCommandOutput extends UpdateHostKeyResponse, __Met
|
|
|
27
27
|
* import { TransferClient, UpdateHostKeyCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
28
28
|
* // const { TransferClient, UpdateHostKeyCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
29
29
|
* const client = new TransferClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateHostKeyRequest
|
|
31
31
|
* ServerId: "STRING_VALUE", // required
|
|
32
32
|
* HostKeyId: "STRING_VALUE", // required
|
|
33
33
|
* Description: "STRING_VALUE", // required
|
|
@@ -28,9 +28,9 @@ export interface UpdateProfileCommandOutput extends UpdateProfileResponse, __Met
|
|
|
28
28
|
* import { TransferClient, UpdateProfileCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
29
29
|
* // const { TransferClient, UpdateProfileCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
30
30
|
* const client = new TransferClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateProfileRequest
|
|
32
32
|
* ProfileId: "STRING_VALUE", // required
|
|
33
|
-
* CertificateIds: [
|
|
33
|
+
* CertificateIds: [ // CertificateIds
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* };
|
|
@@ -29,32 +29,32 @@ export interface UpdateServerCommandOutput extends UpdateServerResponse, __Metad
|
|
|
29
29
|
* import { TransferClient, UpdateServerCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
30
30
|
* // const { TransferClient, UpdateServerCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
31
31
|
* const client = new TransferClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // UpdateServerRequest
|
|
33
33
|
* Certificate: "STRING_VALUE",
|
|
34
|
-
* ProtocolDetails: {
|
|
34
|
+
* ProtocolDetails: { // ProtocolDetails
|
|
35
35
|
* PassiveIp: "STRING_VALUE",
|
|
36
36
|
* TlsSessionResumptionMode: "DISABLED" || "ENABLED" || "ENFORCED",
|
|
37
37
|
* SetStatOption: "DEFAULT" || "ENABLE_NO_OP",
|
|
38
|
-
* As2Transports: [
|
|
38
|
+
* As2Transports: [ // As2Transports
|
|
39
39
|
* "HTTP",
|
|
40
40
|
* ],
|
|
41
41
|
* },
|
|
42
|
-
* EndpointDetails: {
|
|
43
|
-
* AddressAllocationIds: [
|
|
42
|
+
* EndpointDetails: { // EndpointDetails
|
|
43
|
+
* AddressAllocationIds: [ // AddressAllocationIds
|
|
44
44
|
* "STRING_VALUE",
|
|
45
45
|
* ],
|
|
46
|
-
* SubnetIds: [
|
|
46
|
+
* SubnetIds: [ // SubnetIds
|
|
47
47
|
* "STRING_VALUE",
|
|
48
48
|
* ],
|
|
49
49
|
* VpcEndpointId: "STRING_VALUE",
|
|
50
50
|
* VpcId: "STRING_VALUE",
|
|
51
|
-
* SecurityGroupIds: [
|
|
51
|
+
* SecurityGroupIds: [ // SecurityGroupIds
|
|
52
52
|
* "STRING_VALUE",
|
|
53
53
|
* ],
|
|
54
54
|
* },
|
|
55
55
|
* EndpointType: "PUBLIC" || "VPC" || "VPC_ENDPOINT",
|
|
56
56
|
* HostKey: "STRING_VALUE",
|
|
57
|
-
* IdentityProviderDetails: {
|
|
57
|
+
* IdentityProviderDetails: { // IdentityProviderDetails
|
|
58
58
|
* Url: "STRING_VALUE",
|
|
59
59
|
* InvocationRole: "STRING_VALUE",
|
|
60
60
|
* DirectoryId: "STRING_VALUE",
|
|
@@ -63,19 +63,19 @@ export interface UpdateServerCommandOutput extends UpdateServerResponse, __Metad
|
|
|
63
63
|
* LoggingRole: "STRING_VALUE",
|
|
64
64
|
* PostAuthenticationLoginBanner: "STRING_VALUE",
|
|
65
65
|
* PreAuthenticationLoginBanner: "STRING_VALUE",
|
|
66
|
-
* Protocols: [
|
|
66
|
+
* Protocols: [ // Protocols
|
|
67
67
|
* "SFTP" || "FTP" || "FTPS" || "AS2",
|
|
68
68
|
* ],
|
|
69
69
|
* SecurityPolicyName: "STRING_VALUE",
|
|
70
70
|
* ServerId: "STRING_VALUE", // required
|
|
71
|
-
* WorkflowDetails: {
|
|
72
|
-
* OnUpload: [
|
|
73
|
-
* {
|
|
71
|
+
* WorkflowDetails: { // WorkflowDetails
|
|
72
|
+
* OnUpload: [ // OnUploadWorkflowDetails
|
|
73
|
+
* { // WorkflowDetail
|
|
74
74
|
* WorkflowId: "STRING_VALUE", // required
|
|
75
75
|
* ExecutionRole: "STRING_VALUE", // required
|
|
76
76
|
* },
|
|
77
77
|
* ],
|
|
78
|
-
* OnPartialUpload: [
|
|
78
|
+
* OnPartialUpload: [ // OnPartialUploadWorkflowDetails
|
|
79
79
|
* {
|
|
80
80
|
* WorkflowId: "STRING_VALUE", // required
|
|
81
81
|
* ExecutionRole: "STRING_VALUE", // required
|
|
@@ -30,20 +30,20 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB
|
|
|
30
30
|
* import { TransferClient, UpdateUserCommand } from "@aws-sdk/client-transfer"; // ES Modules import
|
|
31
31
|
* // const { TransferClient, UpdateUserCommand } = require("@aws-sdk/client-transfer"); // CommonJS import
|
|
32
32
|
* const client = new TransferClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // UpdateUserRequest
|
|
34
34
|
* HomeDirectory: "STRING_VALUE",
|
|
35
35
|
* HomeDirectoryType: "PATH" || "LOGICAL",
|
|
36
|
-
* HomeDirectoryMappings: [
|
|
37
|
-
* {
|
|
36
|
+
* HomeDirectoryMappings: [ // HomeDirectoryMappings
|
|
37
|
+
* { // HomeDirectoryMapEntry
|
|
38
38
|
* Entry: "STRING_VALUE", // required
|
|
39
39
|
* Target: "STRING_VALUE", // required
|
|
40
40
|
* },
|
|
41
41
|
* ],
|
|
42
42
|
* Policy: "STRING_VALUE",
|
|
43
|
-
* PosixProfile: {
|
|
43
|
+
* PosixProfile: { // PosixProfile
|
|
44
44
|
* Uid: Number("long"), // required
|
|
45
45
|
* Gid: Number("long"), // required
|
|
46
|
-
* SecondaryGids: [
|
|
46
|
+
* SecondaryGids: [ // SecondaryGids
|
|
47
47
|
* Number("long"),
|
|
48
48
|
* ],
|
|
49
49
|
* },
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-transfer",
|
|
3
3
|
"description": "AWS SDK for JavaScript Transfer Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|