@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
|
@@ -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
|
* },
|