@aws-sdk/client-transfer 3.933.0 → 3.935.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/index.js +189 -188
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +188 -0
- package/dist-es/models/errors.js +135 -0
- package/dist-es/models/models_0.js +1 -323
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +492 -0
- package/dist-types/models/errors.d.ts +123 -0
- package/dist-types/models/models_0.d.ts +1 -615
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +251 -0
- package/dist-types/ts3.4/models/errors.d.ts +76 -0
- package/dist-types/ts3.4/models/models_0.d.ts +40 -327
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,13 +1,43 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import {
|
|
2
|
+
AgreementStatusType,
|
|
3
|
+
As2Transport,
|
|
4
|
+
CertificateStatusType,
|
|
5
|
+
CertificateType,
|
|
6
|
+
CertificateUsageType,
|
|
7
|
+
CompressionEnum,
|
|
8
|
+
ConnectorEgressType,
|
|
9
|
+
ConnectorStatus,
|
|
10
|
+
CustomStepStatus,
|
|
11
|
+
DirectoryListingOptimization,
|
|
12
|
+
Domain,
|
|
13
|
+
EncryptionAlg,
|
|
14
|
+
EncryptionType,
|
|
15
|
+
EndpointType,
|
|
16
|
+
EnforceMessageSigningType,
|
|
17
|
+
ExecutionErrorType,
|
|
18
|
+
ExecutionStatus,
|
|
19
|
+
HomeDirectoryType,
|
|
20
|
+
IdentityProviderType,
|
|
21
|
+
IpAddressType,
|
|
22
|
+
MapType,
|
|
23
|
+
MdnResponse,
|
|
24
|
+
MdnSigningAlg,
|
|
25
|
+
OverwriteExisting,
|
|
26
|
+
PreserveContentType,
|
|
27
|
+
PreserveFilenameType,
|
|
28
|
+
ProfileType,
|
|
29
|
+
Protocol,
|
|
30
|
+
SecurityPolicyProtocol,
|
|
31
|
+
SecurityPolicyResourceType,
|
|
32
|
+
SetStatOption,
|
|
33
|
+
SftpAuthenticationMethods,
|
|
34
|
+
SigningAlg,
|
|
35
|
+
State,
|
|
36
|
+
TlsSessionResumptionMode,
|
|
37
|
+
TransferTableStatus,
|
|
38
|
+
WebAppEndpointPolicy,
|
|
39
|
+
WorkflowStepType,
|
|
40
|
+
} from "./enums";
|
|
11
41
|
export interface CustomDirectoriesType {
|
|
12
42
|
FailedFilesDirectory: string | undefined;
|
|
13
43
|
MdnFilesDirectory: string | undefined;
|
|
@@ -15,24 +45,6 @@ export interface CustomDirectoriesType {
|
|
|
15
45
|
StatusFilesDirectory: string | undefined;
|
|
16
46
|
TemporaryFilesDirectory: string | undefined;
|
|
17
47
|
}
|
|
18
|
-
export declare const EnforceMessageSigningType: {
|
|
19
|
-
readonly DISABLED: "DISABLED";
|
|
20
|
-
readonly ENABLED: "ENABLED";
|
|
21
|
-
};
|
|
22
|
-
export type EnforceMessageSigningType =
|
|
23
|
-
(typeof EnforceMessageSigningType)[keyof typeof EnforceMessageSigningType];
|
|
24
|
-
export declare const PreserveFilenameType: {
|
|
25
|
-
readonly DISABLED: "DISABLED";
|
|
26
|
-
readonly ENABLED: "ENABLED";
|
|
27
|
-
};
|
|
28
|
-
export type PreserveFilenameType =
|
|
29
|
-
(typeof PreserveFilenameType)[keyof typeof PreserveFilenameType];
|
|
30
|
-
export declare const AgreementStatusType: {
|
|
31
|
-
readonly ACTIVE: "ACTIVE";
|
|
32
|
-
readonly INACTIVE: "INACTIVE";
|
|
33
|
-
};
|
|
34
|
-
export type AgreementStatusType =
|
|
35
|
-
(typeof AgreementStatusType)[keyof typeof AgreementStatusType];
|
|
36
48
|
export interface Tag {
|
|
37
49
|
Key: string | undefined;
|
|
38
50
|
Value: string | undefined;
|
|
@@ -53,58 +65,6 @@ export interface CreateAgreementRequest {
|
|
|
53
65
|
export interface CreateAgreementResponse {
|
|
54
66
|
AgreementId: string | undefined;
|
|
55
67
|
}
|
|
56
|
-
export declare class InternalServiceError extends __BaseException {
|
|
57
|
-
readonly name: "InternalServiceError";
|
|
58
|
-
readonly $fault: "server";
|
|
59
|
-
Message: string | undefined;
|
|
60
|
-
constructor(
|
|
61
|
-
opts: __ExceptionOptionType<InternalServiceError, __BaseException>
|
|
62
|
-
);
|
|
63
|
-
}
|
|
64
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
65
|
-
readonly name: "InvalidRequestException";
|
|
66
|
-
readonly $fault: "client";
|
|
67
|
-
Message: string | undefined;
|
|
68
|
-
constructor(
|
|
69
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
70
|
-
);
|
|
71
|
-
}
|
|
72
|
-
export declare class ResourceExistsException extends __BaseException {
|
|
73
|
-
readonly name: "ResourceExistsException";
|
|
74
|
-
readonly $fault: "client";
|
|
75
|
-
Message: string | undefined;
|
|
76
|
-
Resource: string | undefined;
|
|
77
|
-
ResourceType: string | undefined;
|
|
78
|
-
constructor(
|
|
79
|
-
opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
|
|
80
|
-
);
|
|
81
|
-
}
|
|
82
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
83
|
-
readonly name: "ResourceNotFoundException";
|
|
84
|
-
readonly $fault: "client";
|
|
85
|
-
Message: string | undefined;
|
|
86
|
-
Resource: string | undefined;
|
|
87
|
-
ResourceType: string | undefined;
|
|
88
|
-
constructor(
|
|
89
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
90
|
-
);
|
|
91
|
-
}
|
|
92
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
93
|
-
readonly name: "ServiceUnavailableException";
|
|
94
|
-
readonly $fault: "server";
|
|
95
|
-
Message?: string | undefined;
|
|
96
|
-
constructor(
|
|
97
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
98
|
-
);
|
|
99
|
-
}
|
|
100
|
-
export declare class ThrottlingException extends __BaseException {
|
|
101
|
-
readonly name: "ThrottlingException";
|
|
102
|
-
readonly $fault: "client";
|
|
103
|
-
RetryAfterSeconds?: string | undefined;
|
|
104
|
-
constructor(
|
|
105
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
106
|
-
);
|
|
107
|
-
}
|
|
108
68
|
export interface DeleteAgreementRequest {
|
|
109
69
|
AgreementId: string | undefined;
|
|
110
70
|
ServerId: string | undefined;
|
|
@@ -131,14 +91,6 @@ export interface DescribedAgreement {
|
|
|
131
91
|
export interface DescribeAgreementResponse {
|
|
132
92
|
Agreement: DescribedAgreement | undefined;
|
|
133
93
|
}
|
|
134
|
-
export declare class InvalidNextTokenException extends __BaseException {
|
|
135
|
-
readonly name: "InvalidNextTokenException";
|
|
136
|
-
readonly $fault: "client";
|
|
137
|
-
Message: string | undefined;
|
|
138
|
-
constructor(
|
|
139
|
-
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
140
|
-
);
|
|
141
|
-
}
|
|
142
94
|
export interface ListAgreementsRequest {
|
|
143
95
|
MaxResults?: number | undefined;
|
|
144
96
|
NextToken?: string | undefined;
|
|
@@ -173,48 +125,6 @@ export interface UpdateAgreementRequest {
|
|
|
173
125
|
export interface UpdateAgreementResponse {
|
|
174
126
|
AgreementId: string | undefined;
|
|
175
127
|
}
|
|
176
|
-
export declare const CompressionEnum: {
|
|
177
|
-
readonly DISABLED: "DISABLED";
|
|
178
|
-
readonly ZLIB: "ZLIB";
|
|
179
|
-
};
|
|
180
|
-
export type CompressionEnum =
|
|
181
|
-
(typeof CompressionEnum)[keyof typeof CompressionEnum];
|
|
182
|
-
export declare const EncryptionAlg: {
|
|
183
|
-
readonly AES128_CBC: "AES128_CBC";
|
|
184
|
-
readonly AES192_CBC: "AES192_CBC";
|
|
185
|
-
readonly AES256_CBC: "AES256_CBC";
|
|
186
|
-
readonly DES_EDE3_CBC: "DES_EDE3_CBC";
|
|
187
|
-
readonly NONE: "NONE";
|
|
188
|
-
};
|
|
189
|
-
export type EncryptionAlg = (typeof EncryptionAlg)[keyof typeof EncryptionAlg];
|
|
190
|
-
export declare const MdnResponse: {
|
|
191
|
-
readonly NONE: "NONE";
|
|
192
|
-
readonly SYNC: "SYNC";
|
|
193
|
-
};
|
|
194
|
-
export type MdnResponse = (typeof MdnResponse)[keyof typeof MdnResponse];
|
|
195
|
-
export declare const MdnSigningAlg: {
|
|
196
|
-
readonly DEFAULT: "DEFAULT";
|
|
197
|
-
readonly NONE: "NONE";
|
|
198
|
-
readonly SHA1: "SHA1";
|
|
199
|
-
readonly SHA256: "SHA256";
|
|
200
|
-
readonly SHA384: "SHA384";
|
|
201
|
-
readonly SHA512: "SHA512";
|
|
202
|
-
};
|
|
203
|
-
export type MdnSigningAlg = (typeof MdnSigningAlg)[keyof typeof MdnSigningAlg];
|
|
204
|
-
export declare const PreserveContentType: {
|
|
205
|
-
readonly DISABLED: "DISABLED";
|
|
206
|
-
readonly ENABLED: "ENABLED";
|
|
207
|
-
};
|
|
208
|
-
export type PreserveContentType =
|
|
209
|
-
(typeof PreserveContentType)[keyof typeof PreserveContentType];
|
|
210
|
-
export declare const SigningAlg: {
|
|
211
|
-
readonly NONE: "NONE";
|
|
212
|
-
readonly SHA1: "SHA1";
|
|
213
|
-
readonly SHA256: "SHA256";
|
|
214
|
-
readonly SHA384: "SHA384";
|
|
215
|
-
readonly SHA512: "SHA512";
|
|
216
|
-
};
|
|
217
|
-
export type SigningAlg = (typeof SigningAlg)[keyof typeof SigningAlg];
|
|
218
128
|
export interface As2ConnectorConfig {
|
|
219
129
|
LocalProfileId?: string | undefined;
|
|
220
130
|
PartnerProfileId?: string | undefined;
|
|
@@ -227,36 +137,12 @@ export interface As2ConnectorConfig {
|
|
|
227
137
|
BasicAuthSecretId?: string | undefined;
|
|
228
138
|
PreserveContentType?: PreserveContentType | undefined;
|
|
229
139
|
}
|
|
230
|
-
export declare const As2Transport: {
|
|
231
|
-
readonly HTTP: "HTTP";
|
|
232
|
-
};
|
|
233
|
-
export type As2Transport = (typeof As2Transport)[keyof typeof As2Transport];
|
|
234
140
|
export interface DeleteCertificateRequest {
|
|
235
141
|
CertificateId: string | undefined;
|
|
236
142
|
}
|
|
237
143
|
export interface DescribeCertificateRequest {
|
|
238
144
|
CertificateId: string | undefined;
|
|
239
145
|
}
|
|
240
|
-
export declare const CertificateStatusType: {
|
|
241
|
-
readonly ACTIVE: "ACTIVE";
|
|
242
|
-
readonly INACTIVE: "INACTIVE";
|
|
243
|
-
readonly PENDING_ROTATION: "PENDING_ROTATION";
|
|
244
|
-
};
|
|
245
|
-
export type CertificateStatusType =
|
|
246
|
-
(typeof CertificateStatusType)[keyof typeof CertificateStatusType];
|
|
247
|
-
export declare const CertificateType: {
|
|
248
|
-
readonly CERTIFICATE: "CERTIFICATE";
|
|
249
|
-
readonly CERTIFICATE_WITH_PRIVATE_KEY: "CERTIFICATE_WITH_PRIVATE_KEY";
|
|
250
|
-
};
|
|
251
|
-
export type CertificateType =
|
|
252
|
-
(typeof CertificateType)[keyof typeof CertificateType];
|
|
253
|
-
export declare const CertificateUsageType: {
|
|
254
|
-
readonly ENCRYPTION: "ENCRYPTION";
|
|
255
|
-
readonly SIGNING: "SIGNING";
|
|
256
|
-
readonly TLS: "TLS";
|
|
257
|
-
};
|
|
258
|
-
export type CertificateUsageType =
|
|
259
|
-
(typeof CertificateUsageType)[keyof typeof CertificateUsageType];
|
|
260
146
|
export interface DescribedCertificate {
|
|
261
147
|
Arn: string | undefined;
|
|
262
148
|
CertificateId?: string | undefined;
|
|
@@ -316,12 +202,6 @@ export interface UpdateCertificateRequest {
|
|
|
316
202
|
export interface UpdateCertificateResponse {
|
|
317
203
|
CertificateId: string | undefined;
|
|
318
204
|
}
|
|
319
|
-
export declare class ConflictException extends __BaseException {
|
|
320
|
-
readonly name: "ConflictException";
|
|
321
|
-
readonly $fault: "client";
|
|
322
|
-
Message: string | undefined;
|
|
323
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
324
|
-
}
|
|
325
205
|
export interface ConnectorVpcLatticeEgressConfig {
|
|
326
206
|
ResourceConfigurationArn: string | undefined;
|
|
327
207
|
PortNumber?: number | undefined;
|
|
@@ -343,20 +223,6 @@ export declare namespace ConnectorEgressConfig {
|
|
|
343
223
|
_: (name: string, value: any) => T;
|
|
344
224
|
}
|
|
345
225
|
}
|
|
346
|
-
export declare const ConnectorEgressType: {
|
|
347
|
-
readonly SERVICE_MANAGED: "SERVICE_MANAGED";
|
|
348
|
-
readonly VPC_LATTICE: "VPC_LATTICE";
|
|
349
|
-
};
|
|
350
|
-
export type ConnectorEgressType =
|
|
351
|
-
(typeof ConnectorEgressType)[keyof typeof ConnectorEgressType];
|
|
352
|
-
export declare const TransferTableStatus: {
|
|
353
|
-
readonly COMPLETED: "COMPLETED";
|
|
354
|
-
readonly FAILED: "FAILED";
|
|
355
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
356
|
-
readonly QUEUED: "QUEUED";
|
|
357
|
-
};
|
|
358
|
-
export type TransferTableStatus =
|
|
359
|
-
(typeof TransferTableStatus)[keyof typeof TransferTableStatus];
|
|
360
226
|
export interface ConnectorFileTransferResult {
|
|
361
227
|
FilePath: string | undefined;
|
|
362
228
|
StatusCode: TransferTableStatus | undefined;
|
|
@@ -408,13 +274,6 @@ export declare namespace DescribedConnectorEgressConfig {
|
|
|
408
274
|
_: (name: string, value: any) => T;
|
|
409
275
|
}
|
|
410
276
|
}
|
|
411
|
-
export declare const ConnectorStatus: {
|
|
412
|
-
readonly ACTIVE: "ACTIVE";
|
|
413
|
-
readonly ERRORED: "ERRORED";
|
|
414
|
-
readonly PENDING: "PENDING";
|
|
415
|
-
};
|
|
416
|
-
export type ConnectorStatus =
|
|
417
|
-
(typeof ConnectorStatus)[keyof typeof ConnectorStatus];
|
|
418
277
|
export interface DescribedConnector {
|
|
419
278
|
Arn: string | undefined;
|
|
420
279
|
ConnectorId?: string | undefined;
|
|
@@ -493,34 +352,17 @@ export interface InputFileLocation {
|
|
|
493
352
|
S3FileLocation?: S3InputFileLocation | undefined;
|
|
494
353
|
EfsFileLocation?: EfsFileLocation | undefined;
|
|
495
354
|
}
|
|
496
|
-
export declare const OverwriteExisting: {
|
|
497
|
-
readonly FALSE: "FALSE";
|
|
498
|
-
readonly TRUE: "TRUE";
|
|
499
|
-
};
|
|
500
|
-
export type OverwriteExisting =
|
|
501
|
-
(typeof OverwriteExisting)[keyof typeof OverwriteExisting];
|
|
502
355
|
export interface CopyStepDetails {
|
|
503
356
|
Name?: string | undefined;
|
|
504
357
|
DestinationFileLocation?: InputFileLocation | undefined;
|
|
505
358
|
OverwriteExisting?: OverwriteExisting | undefined;
|
|
506
359
|
SourceFileLocation?: string | undefined;
|
|
507
360
|
}
|
|
508
|
-
export declare const MapType: {
|
|
509
|
-
readonly DIRECTORY: "DIRECTORY";
|
|
510
|
-
readonly FILE: "FILE";
|
|
511
|
-
};
|
|
512
|
-
export type MapType = (typeof MapType)[keyof typeof MapType];
|
|
513
361
|
export interface HomeDirectoryMapEntry {
|
|
514
362
|
Entry: string | undefined;
|
|
515
363
|
Target: string | undefined;
|
|
516
364
|
Type?: MapType | undefined;
|
|
517
365
|
}
|
|
518
|
-
export declare const HomeDirectoryType: {
|
|
519
|
-
readonly LOGICAL: "LOGICAL";
|
|
520
|
-
readonly PATH: "PATH";
|
|
521
|
-
};
|
|
522
|
-
export type HomeDirectoryType =
|
|
523
|
-
(typeof HomeDirectoryType)[keyof typeof HomeDirectoryType];
|
|
524
366
|
export interface PosixProfile {
|
|
525
367
|
Uid: number | undefined;
|
|
526
368
|
Gid: number | undefined;
|
|
@@ -540,11 +382,6 @@ export interface CreateAccessResponse {
|
|
|
540
382
|
ServerId: string | undefined;
|
|
541
383
|
ExternalId: string | undefined;
|
|
542
384
|
}
|
|
543
|
-
export declare const ProfileType: {
|
|
544
|
-
readonly LOCAL: "LOCAL";
|
|
545
|
-
readonly PARTNER: "PARTNER";
|
|
546
|
-
};
|
|
547
|
-
export type ProfileType = (typeof ProfileType)[keyof typeof ProfileType];
|
|
548
385
|
export interface CreateProfileRequest {
|
|
549
386
|
As2Id: string | undefined;
|
|
550
387
|
ProfileType: ProfileType | undefined;
|
|
@@ -554,11 +391,6 @@ export interface CreateProfileRequest {
|
|
|
554
391
|
export interface CreateProfileResponse {
|
|
555
392
|
ProfileId: string | undefined;
|
|
556
393
|
}
|
|
557
|
-
export declare const Domain: {
|
|
558
|
-
readonly EFS: "EFS";
|
|
559
|
-
readonly S3: "S3";
|
|
560
|
-
};
|
|
561
|
-
export type Domain = (typeof Domain)[keyof typeof Domain];
|
|
562
394
|
export interface EndpointDetails {
|
|
563
395
|
AddressAllocationIds?: string[] | undefined;
|
|
564
396
|
SubnetIds?: string[] | undefined;
|
|
@@ -566,20 +398,6 @@ export interface EndpointDetails {
|
|
|
566
398
|
VpcId?: string | undefined;
|
|
567
399
|
SecurityGroupIds?: string[] | undefined;
|
|
568
400
|
}
|
|
569
|
-
export declare const EndpointType: {
|
|
570
|
-
readonly PUBLIC: "PUBLIC";
|
|
571
|
-
readonly VPC: "VPC";
|
|
572
|
-
readonly VPC_ENDPOINT: "VPC_ENDPOINT";
|
|
573
|
-
};
|
|
574
|
-
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
|
|
575
|
-
export declare const SftpAuthenticationMethods: {
|
|
576
|
-
readonly PASSWORD: "PASSWORD";
|
|
577
|
-
readonly PUBLIC_KEY: "PUBLIC_KEY";
|
|
578
|
-
readonly PUBLIC_KEY_AND_PASSWORD: "PUBLIC_KEY_AND_PASSWORD";
|
|
579
|
-
readonly PUBLIC_KEY_OR_PASSWORD: "PUBLIC_KEY_OR_PASSWORD";
|
|
580
|
-
};
|
|
581
|
-
export type SftpAuthenticationMethods =
|
|
582
|
-
(typeof SftpAuthenticationMethods)[keyof typeof SftpAuthenticationMethods];
|
|
583
401
|
export interface IdentityProviderDetails {
|
|
584
402
|
Url?: string | undefined;
|
|
585
403
|
InvocationRole?: string | undefined;
|
|
@@ -587,50 +405,12 @@ export interface IdentityProviderDetails {
|
|
|
587
405
|
Function?: string | undefined;
|
|
588
406
|
SftpAuthenticationMethods?: SftpAuthenticationMethods | undefined;
|
|
589
407
|
}
|
|
590
|
-
export declare const IdentityProviderType: {
|
|
591
|
-
readonly API_GATEWAY: "API_GATEWAY";
|
|
592
|
-
readonly AWS_DIRECTORY_SERVICE: "AWS_DIRECTORY_SERVICE";
|
|
593
|
-
readonly AWS_LAMBDA: "AWS_LAMBDA";
|
|
594
|
-
readonly SERVICE_MANAGED: "SERVICE_MANAGED";
|
|
595
|
-
};
|
|
596
|
-
export type IdentityProviderType =
|
|
597
|
-
(typeof IdentityProviderType)[keyof typeof IdentityProviderType];
|
|
598
|
-
export declare const IpAddressType: {
|
|
599
|
-
readonly DUALSTACK: "DUALSTACK";
|
|
600
|
-
readonly IPV4: "IPV4";
|
|
601
|
-
};
|
|
602
|
-
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
603
|
-
export declare const SetStatOption: {
|
|
604
|
-
readonly DEFAULT: "DEFAULT";
|
|
605
|
-
readonly ENABLE_NO_OP: "ENABLE_NO_OP";
|
|
606
|
-
};
|
|
607
|
-
export type SetStatOption = (typeof SetStatOption)[keyof typeof SetStatOption];
|
|
608
|
-
export declare const TlsSessionResumptionMode: {
|
|
609
|
-
readonly DISABLED: "DISABLED";
|
|
610
|
-
readonly ENABLED: "ENABLED";
|
|
611
|
-
readonly ENFORCED: "ENFORCED";
|
|
612
|
-
};
|
|
613
|
-
export type TlsSessionResumptionMode =
|
|
614
|
-
(typeof TlsSessionResumptionMode)[keyof typeof TlsSessionResumptionMode];
|
|
615
408
|
export interface ProtocolDetails {
|
|
616
409
|
PassiveIp?: string | undefined;
|
|
617
410
|
TlsSessionResumptionMode?: TlsSessionResumptionMode | undefined;
|
|
618
411
|
SetStatOption?: SetStatOption | undefined;
|
|
619
412
|
As2Transports?: As2Transport[] | undefined;
|
|
620
413
|
}
|
|
621
|
-
export declare const Protocol: {
|
|
622
|
-
readonly AS2: "AS2";
|
|
623
|
-
readonly FTP: "FTP";
|
|
624
|
-
readonly FTPS: "FTPS";
|
|
625
|
-
readonly SFTP: "SFTP";
|
|
626
|
-
};
|
|
627
|
-
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
628
|
-
export declare const DirectoryListingOptimization: {
|
|
629
|
-
readonly DISABLED: "DISABLED";
|
|
630
|
-
readonly ENABLED: "ENABLED";
|
|
631
|
-
};
|
|
632
|
-
export type DirectoryListingOptimization =
|
|
633
|
-
(typeof DirectoryListingOptimization)[keyof typeof DirectoryListingOptimization];
|
|
634
414
|
export interface S3StorageOptions {
|
|
635
415
|
DirectoryListingOptimization?: DirectoryListingOptimization | undefined;
|
|
636
416
|
}
|
|
@@ -702,12 +482,6 @@ export declare namespace WebAppIdentityProviderDetails {
|
|
|
702
482
|
_: (name: string, value: any) => T;
|
|
703
483
|
}
|
|
704
484
|
}
|
|
705
|
-
export declare const WebAppEndpointPolicy: {
|
|
706
|
-
readonly FIPS: "FIPS";
|
|
707
|
-
readonly STANDARD: "STANDARD";
|
|
708
|
-
};
|
|
709
|
-
export type WebAppEndpointPolicy =
|
|
710
|
-
(typeof WebAppEndpointPolicy)[keyof typeof WebAppEndpointPolicy];
|
|
711
485
|
export type WebAppUnits =
|
|
712
486
|
| WebAppUnits.ProvisionedMember
|
|
713
487
|
| WebAppUnits.$UnknownMember;
|
|
@@ -741,11 +515,6 @@ export interface CustomStepDetails {
|
|
|
741
515
|
TimeoutSeconds?: number | undefined;
|
|
742
516
|
SourceFileLocation?: string | undefined;
|
|
743
517
|
}
|
|
744
|
-
export declare const EncryptionType: {
|
|
745
|
-
readonly PGP: "PGP";
|
|
746
|
-
};
|
|
747
|
-
export type EncryptionType =
|
|
748
|
-
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
749
518
|
export interface DecryptStepDetails {
|
|
750
519
|
Name?: string | undefined;
|
|
751
520
|
Type: EncryptionType | undefined;
|
|
@@ -766,15 +535,6 @@ export interface TagStepDetails {
|
|
|
766
535
|
Tags?: S3Tag[] | undefined;
|
|
767
536
|
SourceFileLocation?: string | undefined;
|
|
768
537
|
}
|
|
769
|
-
export declare const WorkflowStepType: {
|
|
770
|
-
readonly COPY: "COPY";
|
|
771
|
-
readonly CUSTOM: "CUSTOM";
|
|
772
|
-
readonly DECRYPT: "DECRYPT";
|
|
773
|
-
readonly DELETE: "DELETE";
|
|
774
|
-
readonly TAG: "TAG";
|
|
775
|
-
};
|
|
776
|
-
export type WorkflowStepType =
|
|
777
|
-
(typeof WorkflowStepType)[keyof typeof WorkflowStepType];
|
|
778
538
|
export interface WorkflowStep {
|
|
779
539
|
Type?: WorkflowStepType | undefined;
|
|
780
540
|
CopyStepDetails?: CopyStepDetails | undefined;
|
|
@@ -792,12 +552,6 @@ export interface CreateWorkflowRequest {
|
|
|
792
552
|
export interface CreateWorkflowResponse {
|
|
793
553
|
WorkflowId: string | undefined;
|
|
794
554
|
}
|
|
795
|
-
export declare const CustomStepStatus: {
|
|
796
|
-
readonly FAILURE: "FAILURE";
|
|
797
|
-
readonly SUCCESS: "SUCCESS";
|
|
798
|
-
};
|
|
799
|
-
export type CustomStepStatus =
|
|
800
|
-
(typeof CustomStepStatus)[keyof typeof CustomStepStatus];
|
|
801
555
|
export interface DeleteAccessRequest {
|
|
802
556
|
ServerId: string | undefined;
|
|
803
557
|
ExternalId: string | undefined;
|
|
@@ -861,18 +615,6 @@ export interface LoggingConfiguration {
|
|
|
861
615
|
LoggingRole?: string | undefined;
|
|
862
616
|
LogGroupName?: string | undefined;
|
|
863
617
|
}
|
|
864
|
-
export declare const ExecutionErrorType: {
|
|
865
|
-
readonly ALREADY_EXISTS: "ALREADY_EXISTS";
|
|
866
|
-
readonly BAD_REQUEST: "BAD_REQUEST";
|
|
867
|
-
readonly CUSTOM_STEP_FAILED: "CUSTOM_STEP_FAILED";
|
|
868
|
-
readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
|
|
869
|
-
readonly NOT_FOUND: "NOT_FOUND";
|
|
870
|
-
readonly PERMISSION_DENIED: "PERMISSION_DENIED";
|
|
871
|
-
readonly THROTTLED: "THROTTLED";
|
|
872
|
-
readonly TIMEOUT: "TIMEOUT";
|
|
873
|
-
};
|
|
874
|
-
export type ExecutionErrorType =
|
|
875
|
-
(typeof ExecutionErrorType)[keyof typeof ExecutionErrorType];
|
|
876
618
|
export interface ExecutionError {
|
|
877
619
|
Type: ExecutionErrorType | undefined;
|
|
878
620
|
Message: string | undefined;
|
|
@@ -894,14 +636,6 @@ export interface UserDetails {
|
|
|
894
636
|
export interface ServiceMetadata {
|
|
895
637
|
UserDetails: UserDetails | undefined;
|
|
896
638
|
}
|
|
897
|
-
export declare const ExecutionStatus: {
|
|
898
|
-
readonly COMPLETED: "COMPLETED";
|
|
899
|
-
readonly EXCEPTION: "EXCEPTION";
|
|
900
|
-
readonly HANDLING_EXCEPTION: "HANDLING_EXCEPTION";
|
|
901
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
902
|
-
};
|
|
903
|
-
export type ExecutionStatus =
|
|
904
|
-
(typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
905
639
|
export interface DescribedExecution {
|
|
906
640
|
ExecutionId?: string | undefined;
|
|
907
641
|
InitialFileLocation?: FileLocation | undefined;
|
|
@@ -934,18 +668,6 @@ export interface DescribedProfile {
|
|
|
934
668
|
CertificateIds?: string[] | undefined;
|
|
935
669
|
Tags?: Tag[] | undefined;
|
|
936
670
|
}
|
|
937
|
-
export declare const SecurityPolicyProtocol: {
|
|
938
|
-
readonly FTPS: "FTPS";
|
|
939
|
-
readonly SFTP: "SFTP";
|
|
940
|
-
};
|
|
941
|
-
export type SecurityPolicyProtocol =
|
|
942
|
-
(typeof SecurityPolicyProtocol)[keyof typeof SecurityPolicyProtocol];
|
|
943
|
-
export declare const SecurityPolicyResourceType: {
|
|
944
|
-
readonly CONNECTOR: "CONNECTOR";
|
|
945
|
-
readonly SERVER: "SERVER";
|
|
946
|
-
};
|
|
947
|
-
export type SecurityPolicyResourceType =
|
|
948
|
-
(typeof SecurityPolicyResourceType)[keyof typeof SecurityPolicyResourceType];
|
|
949
671
|
export interface DescribedSecurityPolicy {
|
|
950
672
|
Fips?: boolean | undefined;
|
|
951
673
|
SecurityPolicyName: string | undefined;
|
|
@@ -957,15 +679,6 @@ export interface DescribedSecurityPolicy {
|
|
|
957
679
|
Type?: SecurityPolicyResourceType | undefined;
|
|
958
680
|
Protocols?: SecurityPolicyProtocol[] | undefined;
|
|
959
681
|
}
|
|
960
|
-
export declare const State: {
|
|
961
|
-
readonly OFFLINE: "OFFLINE";
|
|
962
|
-
readonly ONLINE: "ONLINE";
|
|
963
|
-
readonly STARTING: "STARTING";
|
|
964
|
-
readonly START_FAILED: "START_FAILED";
|
|
965
|
-
readonly STOPPING: "STOPPING";
|
|
966
|
-
readonly STOP_FAILED: "STOP_FAILED";
|
|
967
|
-
};
|
|
968
|
-
export type State = (typeof State)[keyof typeof State];
|
|
969
682
|
export interface DescribedServer {
|
|
970
683
|
Arn: string | undefined;
|
|
971
684
|
Certificate?: string | undefined;
|
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.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-transfer",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|