@aws-sdk/client-transfer 3.577.0 → 3.582.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 +113 -113
- package/dist-es/models/models_0.js +93 -93
- package/dist-types/models/models_0.d.ts +3931 -3885
- package/dist-types/ts3.4/models/models_0.d.ts +306 -306
- package/package.json +11 -11
|
@@ -14,6 +14,137 @@ export declare const AgreementStatusType: {
|
|
|
14
14
|
};
|
|
15
15
|
export type AgreementStatusType =
|
|
16
16
|
(typeof AgreementStatusType)[keyof typeof AgreementStatusType];
|
|
17
|
+
export interface Tag {
|
|
18
|
+
Key: string | undefined;
|
|
19
|
+
Value: string | undefined;
|
|
20
|
+
}
|
|
21
|
+
export interface CreateAgreementRequest {
|
|
22
|
+
Description?: string;
|
|
23
|
+
ServerId: string | undefined;
|
|
24
|
+
LocalProfileId: string | undefined;
|
|
25
|
+
PartnerProfileId: string | undefined;
|
|
26
|
+
BaseDirectory: string | undefined;
|
|
27
|
+
AccessRole: string | undefined;
|
|
28
|
+
Status?: AgreementStatusType;
|
|
29
|
+
Tags?: Tag[];
|
|
30
|
+
}
|
|
31
|
+
export interface CreateAgreementResponse {
|
|
32
|
+
AgreementId: string | undefined;
|
|
33
|
+
}
|
|
34
|
+
export declare class InternalServiceError extends __BaseException {
|
|
35
|
+
readonly name: "InternalServiceError";
|
|
36
|
+
readonly $fault: "server";
|
|
37
|
+
Message: string | undefined;
|
|
38
|
+
constructor(
|
|
39
|
+
opts: __ExceptionOptionType<InternalServiceError, __BaseException>
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
43
|
+
readonly name: "InvalidRequestException";
|
|
44
|
+
readonly $fault: "client";
|
|
45
|
+
Message: string | undefined;
|
|
46
|
+
constructor(
|
|
47
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
export declare class ResourceExistsException extends __BaseException {
|
|
51
|
+
readonly name: "ResourceExistsException";
|
|
52
|
+
readonly $fault: "client";
|
|
53
|
+
Message: string | undefined;
|
|
54
|
+
Resource: string | undefined;
|
|
55
|
+
ResourceType: string | undefined;
|
|
56
|
+
constructor(
|
|
57
|
+
opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
61
|
+
readonly name: "ResourceNotFoundException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
Message: string | undefined;
|
|
64
|
+
Resource: string | undefined;
|
|
65
|
+
ResourceType: string | undefined;
|
|
66
|
+
constructor(
|
|
67
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
68
|
+
);
|
|
69
|
+
}
|
|
70
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
71
|
+
readonly name: "ServiceUnavailableException";
|
|
72
|
+
readonly $fault: "server";
|
|
73
|
+
Message?: string;
|
|
74
|
+
constructor(
|
|
75
|
+
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
76
|
+
);
|
|
77
|
+
}
|
|
78
|
+
export declare class ThrottlingException extends __BaseException {
|
|
79
|
+
readonly name: "ThrottlingException";
|
|
80
|
+
readonly $fault: "client";
|
|
81
|
+
RetryAfterSeconds?: string;
|
|
82
|
+
constructor(
|
|
83
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
export interface DeleteAgreementRequest {
|
|
87
|
+
AgreementId: string | undefined;
|
|
88
|
+
ServerId: string | undefined;
|
|
89
|
+
}
|
|
90
|
+
export interface DescribeAgreementRequest {
|
|
91
|
+
AgreementId: string | undefined;
|
|
92
|
+
ServerId: string | undefined;
|
|
93
|
+
}
|
|
94
|
+
export interface DescribedAgreement {
|
|
95
|
+
Arn: string | undefined;
|
|
96
|
+
AgreementId?: string;
|
|
97
|
+
Description?: string;
|
|
98
|
+
Status?: AgreementStatusType;
|
|
99
|
+
ServerId?: string;
|
|
100
|
+
LocalProfileId?: string;
|
|
101
|
+
PartnerProfileId?: string;
|
|
102
|
+
BaseDirectory?: string;
|
|
103
|
+
AccessRole?: string;
|
|
104
|
+
Tags?: Tag[];
|
|
105
|
+
}
|
|
106
|
+
export interface DescribeAgreementResponse {
|
|
107
|
+
Agreement: DescribedAgreement | undefined;
|
|
108
|
+
}
|
|
109
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
110
|
+
readonly name: "InvalidNextTokenException";
|
|
111
|
+
readonly $fault: "client";
|
|
112
|
+
Message: string | undefined;
|
|
113
|
+
constructor(
|
|
114
|
+
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
115
|
+
);
|
|
116
|
+
}
|
|
117
|
+
export interface ListAgreementsRequest {
|
|
118
|
+
MaxResults?: number;
|
|
119
|
+
NextToken?: string;
|
|
120
|
+
ServerId: string | undefined;
|
|
121
|
+
}
|
|
122
|
+
export interface ListedAgreement {
|
|
123
|
+
Arn?: string;
|
|
124
|
+
AgreementId?: string;
|
|
125
|
+
Description?: string;
|
|
126
|
+
Status?: AgreementStatusType;
|
|
127
|
+
ServerId?: string;
|
|
128
|
+
LocalProfileId?: string;
|
|
129
|
+
PartnerProfileId?: string;
|
|
130
|
+
}
|
|
131
|
+
export interface ListAgreementsResponse {
|
|
132
|
+
NextToken?: string;
|
|
133
|
+
Agreements: ListedAgreement[] | undefined;
|
|
134
|
+
}
|
|
135
|
+
export interface UpdateAgreementRequest {
|
|
136
|
+
AgreementId: string | undefined;
|
|
137
|
+
ServerId: string | undefined;
|
|
138
|
+
Description?: string;
|
|
139
|
+
Status?: AgreementStatusType;
|
|
140
|
+
LocalProfileId?: string;
|
|
141
|
+
PartnerProfileId?: string;
|
|
142
|
+
BaseDirectory?: string;
|
|
143
|
+
AccessRole?: string;
|
|
144
|
+
}
|
|
145
|
+
export interface UpdateAgreementResponse {
|
|
146
|
+
AgreementId: string | undefined;
|
|
147
|
+
}
|
|
17
148
|
export declare const CompressionEnum: {
|
|
18
149
|
readonly DISABLED: "DISABLED";
|
|
19
150
|
readonly ZLIB: "ZLIB";
|
|
@@ -65,6 +196,12 @@ export declare const As2Transport: {
|
|
|
65
196
|
readonly HTTP: "HTTP";
|
|
66
197
|
};
|
|
67
198
|
export type As2Transport = (typeof As2Transport)[keyof typeof As2Transport];
|
|
199
|
+
export interface DeleteCertificateRequest {
|
|
200
|
+
CertificateId: string | undefined;
|
|
201
|
+
}
|
|
202
|
+
export interface DescribeCertificateRequest {
|
|
203
|
+
CertificateId: string | undefined;
|
|
204
|
+
}
|
|
68
205
|
export declare const CertificateStatusType: {
|
|
69
206
|
readonly ACTIVE: "ACTIVE";
|
|
70
207
|
readonly INACTIVE: "INACTIVE";
|
|
@@ -85,12 +222,133 @@ export declare const CertificateUsageType: {
|
|
|
85
222
|
};
|
|
86
223
|
export type CertificateUsageType =
|
|
87
224
|
(typeof CertificateUsageType)[keyof typeof CertificateUsageType];
|
|
225
|
+
export interface DescribedCertificate {
|
|
226
|
+
Arn: string | undefined;
|
|
227
|
+
CertificateId?: string;
|
|
228
|
+
Usage?: CertificateUsageType;
|
|
229
|
+
Status?: CertificateStatusType;
|
|
230
|
+
Certificate?: string;
|
|
231
|
+
CertificateChain?: string;
|
|
232
|
+
ActiveDate?: Date;
|
|
233
|
+
InactiveDate?: Date;
|
|
234
|
+
Serial?: string;
|
|
235
|
+
NotBeforeDate?: Date;
|
|
236
|
+
NotAfterDate?: Date;
|
|
237
|
+
Type?: CertificateType;
|
|
238
|
+
Description?: string;
|
|
239
|
+
Tags?: Tag[];
|
|
240
|
+
}
|
|
241
|
+
export interface DescribeCertificateResponse {
|
|
242
|
+
Certificate: DescribedCertificate | undefined;
|
|
243
|
+
}
|
|
244
|
+
export interface ImportCertificateRequest {
|
|
245
|
+
Usage: CertificateUsageType | undefined;
|
|
246
|
+
Certificate: string | undefined;
|
|
247
|
+
CertificateChain?: string;
|
|
248
|
+
PrivateKey?: string;
|
|
249
|
+
ActiveDate?: Date;
|
|
250
|
+
InactiveDate?: Date;
|
|
251
|
+
Description?: string;
|
|
252
|
+
Tags?: Tag[];
|
|
253
|
+
}
|
|
254
|
+
export interface ImportCertificateResponse {
|
|
255
|
+
CertificateId: string | undefined;
|
|
256
|
+
}
|
|
257
|
+
export interface ListCertificatesRequest {
|
|
258
|
+
MaxResults?: number;
|
|
259
|
+
NextToken?: string;
|
|
260
|
+
}
|
|
261
|
+
export interface ListedCertificate {
|
|
262
|
+
Arn?: string;
|
|
263
|
+
CertificateId?: string;
|
|
264
|
+
Usage?: CertificateUsageType;
|
|
265
|
+
Status?: CertificateStatusType;
|
|
266
|
+
ActiveDate?: Date;
|
|
267
|
+
InactiveDate?: Date;
|
|
268
|
+
Type?: CertificateType;
|
|
269
|
+
Description?: string;
|
|
270
|
+
}
|
|
271
|
+
export interface ListCertificatesResponse {
|
|
272
|
+
NextToken?: string;
|
|
273
|
+
Certificates: ListedCertificate[] | undefined;
|
|
274
|
+
}
|
|
275
|
+
export interface UpdateCertificateRequest {
|
|
276
|
+
CertificateId: string | undefined;
|
|
277
|
+
ActiveDate?: Date;
|
|
278
|
+
InactiveDate?: Date;
|
|
279
|
+
Description?: string;
|
|
280
|
+
}
|
|
281
|
+
export interface UpdateCertificateResponse {
|
|
282
|
+
CertificateId: string | undefined;
|
|
283
|
+
}
|
|
88
284
|
export declare class ConflictException extends __BaseException {
|
|
89
285
|
readonly name: "ConflictException";
|
|
90
286
|
readonly $fault: "client";
|
|
91
287
|
Message: string | undefined;
|
|
92
288
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
93
289
|
}
|
|
290
|
+
export interface SftpConnectorConfig {
|
|
291
|
+
UserSecretId?: string;
|
|
292
|
+
TrustedHostKeys?: string[];
|
|
293
|
+
}
|
|
294
|
+
export interface CreateConnectorRequest {
|
|
295
|
+
Url: string | undefined;
|
|
296
|
+
As2Config?: As2ConnectorConfig;
|
|
297
|
+
AccessRole: string | undefined;
|
|
298
|
+
LoggingRole?: string;
|
|
299
|
+
Tags?: Tag[];
|
|
300
|
+
SftpConfig?: SftpConnectorConfig;
|
|
301
|
+
SecurityPolicyName?: string;
|
|
302
|
+
}
|
|
303
|
+
export interface CreateConnectorResponse {
|
|
304
|
+
ConnectorId: string | undefined;
|
|
305
|
+
}
|
|
306
|
+
export interface DeleteConnectorRequest {
|
|
307
|
+
ConnectorId: string | undefined;
|
|
308
|
+
}
|
|
309
|
+
export interface DescribeConnectorRequest {
|
|
310
|
+
ConnectorId: string | undefined;
|
|
311
|
+
}
|
|
312
|
+
export interface DescribedConnector {
|
|
313
|
+
Arn: string | undefined;
|
|
314
|
+
ConnectorId?: string;
|
|
315
|
+
Url?: string;
|
|
316
|
+
As2Config?: As2ConnectorConfig;
|
|
317
|
+
AccessRole?: string;
|
|
318
|
+
LoggingRole?: string;
|
|
319
|
+
Tags?: Tag[];
|
|
320
|
+
SftpConfig?: SftpConnectorConfig;
|
|
321
|
+
ServiceManagedEgressIpAddresses?: string[];
|
|
322
|
+
SecurityPolicyName?: string;
|
|
323
|
+
}
|
|
324
|
+
export interface DescribeConnectorResponse {
|
|
325
|
+
Connector: DescribedConnector | undefined;
|
|
326
|
+
}
|
|
327
|
+
export interface ListConnectorsRequest {
|
|
328
|
+
MaxResults?: number;
|
|
329
|
+
NextToken?: string;
|
|
330
|
+
}
|
|
331
|
+
export interface ListedConnector {
|
|
332
|
+
Arn?: string;
|
|
333
|
+
ConnectorId?: string;
|
|
334
|
+
Url?: string;
|
|
335
|
+
}
|
|
336
|
+
export interface ListConnectorsResponse {
|
|
337
|
+
NextToken?: string;
|
|
338
|
+
Connectors: ListedConnector[] | undefined;
|
|
339
|
+
}
|
|
340
|
+
export interface UpdateConnectorRequest {
|
|
341
|
+
ConnectorId: string | undefined;
|
|
342
|
+
Url?: string;
|
|
343
|
+
As2Config?: As2ConnectorConfig;
|
|
344
|
+
AccessRole?: string;
|
|
345
|
+
LoggingRole?: string;
|
|
346
|
+
SftpConfig?: SftpConnectorConfig;
|
|
347
|
+
SecurityPolicyName?: string;
|
|
348
|
+
}
|
|
349
|
+
export interface UpdateConnectorResponse {
|
|
350
|
+
ConnectorId: string | undefined;
|
|
351
|
+
}
|
|
94
352
|
export interface EfsFileLocation {
|
|
95
353
|
FileSystemId?: string;
|
|
96
354
|
Path?: string;
|
|
@@ -133,107 +391,22 @@ export type HomeDirectoryType =
|
|
|
133
391
|
(typeof HomeDirectoryType)[keyof typeof HomeDirectoryType];
|
|
134
392
|
export interface PosixProfile {
|
|
135
393
|
Uid: number | undefined;
|
|
136
|
-
Gid: number | undefined;
|
|
137
|
-
SecondaryGids?: number[];
|
|
138
|
-
}
|
|
139
|
-
export interface CreateAccessRequest {
|
|
140
|
-
HomeDirectory?: string;
|
|
141
|
-
HomeDirectoryType?: HomeDirectoryType;
|
|
142
|
-
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
143
|
-
Policy?: string;
|
|
144
|
-
PosixProfile?: PosixProfile;
|
|
145
|
-
Role: string | undefined;
|
|
146
|
-
ServerId: string | undefined;
|
|
147
|
-
ExternalId: string | undefined;
|
|
148
|
-
}
|
|
149
|
-
export interface CreateAccessResponse {
|
|
150
|
-
ServerId: string | undefined;
|
|
151
|
-
ExternalId: string | undefined;
|
|
152
|
-
}
|
|
153
|
-
export declare class InternalServiceError extends __BaseException {
|
|
154
|
-
readonly name: "InternalServiceError";
|
|
155
|
-
readonly $fault: "server";
|
|
156
|
-
Message: string | undefined;
|
|
157
|
-
constructor(
|
|
158
|
-
opts: __ExceptionOptionType<InternalServiceError, __BaseException>
|
|
159
|
-
);
|
|
160
|
-
}
|
|
161
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
162
|
-
readonly name: "InvalidRequestException";
|
|
163
|
-
readonly $fault: "client";
|
|
164
|
-
Message: string | undefined;
|
|
165
|
-
constructor(
|
|
166
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
167
|
-
);
|
|
168
|
-
}
|
|
169
|
-
export declare class ResourceExistsException extends __BaseException {
|
|
170
|
-
readonly name: "ResourceExistsException";
|
|
171
|
-
readonly $fault: "client";
|
|
172
|
-
Message: string | undefined;
|
|
173
|
-
Resource: string | undefined;
|
|
174
|
-
ResourceType: string | undefined;
|
|
175
|
-
constructor(
|
|
176
|
-
opts: __ExceptionOptionType<ResourceExistsException, __BaseException>
|
|
177
|
-
);
|
|
178
|
-
}
|
|
179
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
180
|
-
readonly name: "ResourceNotFoundException";
|
|
181
|
-
readonly $fault: "client";
|
|
182
|
-
Message: string | undefined;
|
|
183
|
-
Resource: string | undefined;
|
|
184
|
-
ResourceType: string | undefined;
|
|
185
|
-
constructor(
|
|
186
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
187
|
-
);
|
|
188
|
-
}
|
|
189
|
-
export declare class ServiceUnavailableException extends __BaseException {
|
|
190
|
-
readonly name: "ServiceUnavailableException";
|
|
191
|
-
readonly $fault: "server";
|
|
192
|
-
Message?: string;
|
|
193
|
-
constructor(
|
|
194
|
-
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
195
|
-
);
|
|
196
|
-
}
|
|
197
|
-
export interface Tag {
|
|
198
|
-
Key: string | undefined;
|
|
199
|
-
Value: string | undefined;
|
|
200
|
-
}
|
|
201
|
-
export interface CreateAgreementRequest {
|
|
202
|
-
Description?: string;
|
|
203
|
-
ServerId: string | undefined;
|
|
204
|
-
LocalProfileId: string | undefined;
|
|
205
|
-
PartnerProfileId: string | undefined;
|
|
206
|
-
BaseDirectory: string | undefined;
|
|
207
|
-
AccessRole: string | undefined;
|
|
208
|
-
Status?: AgreementStatusType;
|
|
209
|
-
Tags?: Tag[];
|
|
210
|
-
}
|
|
211
|
-
export interface CreateAgreementResponse {
|
|
212
|
-
AgreementId: string | undefined;
|
|
213
|
-
}
|
|
214
|
-
export declare class ThrottlingException extends __BaseException {
|
|
215
|
-
readonly name: "ThrottlingException";
|
|
216
|
-
readonly $fault: "client";
|
|
217
|
-
RetryAfterSeconds?: string;
|
|
218
|
-
constructor(
|
|
219
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
220
|
-
);
|
|
221
|
-
}
|
|
222
|
-
export interface SftpConnectorConfig {
|
|
223
|
-
UserSecretId?: string;
|
|
224
|
-
TrustedHostKeys?: string[];
|
|
225
|
-
}
|
|
226
|
-
export interface CreateConnectorRequest {
|
|
227
|
-
Url: string | undefined;
|
|
228
|
-
As2Config?: As2ConnectorConfig;
|
|
229
|
-
AccessRole: string | undefined;
|
|
230
|
-
LoggingRole?: string;
|
|
231
|
-
Tags?: Tag[];
|
|
232
|
-
SftpConfig?: SftpConnectorConfig;
|
|
233
|
-
SecurityPolicyName?: string;
|
|
394
|
+
Gid: number | undefined;
|
|
395
|
+
SecondaryGids?: number[];
|
|
234
396
|
}
|
|
235
|
-
export interface
|
|
236
|
-
|
|
397
|
+
export interface CreateAccessRequest {
|
|
398
|
+
HomeDirectory?: string;
|
|
399
|
+
HomeDirectoryType?: HomeDirectoryType;
|
|
400
|
+
HomeDirectoryMappings?: HomeDirectoryMapEntry[];
|
|
401
|
+
Policy?: string;
|
|
402
|
+
PosixProfile?: PosixProfile;
|
|
403
|
+
Role: string | undefined;
|
|
404
|
+
ServerId: string | undefined;
|
|
405
|
+
ExternalId: string | undefined;
|
|
406
|
+
}
|
|
407
|
+
export interface CreateAccessResponse {
|
|
408
|
+
ServerId: string | undefined;
|
|
409
|
+
ExternalId: string | undefined;
|
|
237
410
|
}
|
|
238
411
|
export declare const ProfileType: {
|
|
239
412
|
readonly LOCAL: "LOCAL";
|
|
@@ -437,16 +610,6 @@ export interface DeleteAccessRequest {
|
|
|
437
610
|
ServerId: string | undefined;
|
|
438
611
|
ExternalId: string | undefined;
|
|
439
612
|
}
|
|
440
|
-
export interface DeleteAgreementRequest {
|
|
441
|
-
AgreementId: string | undefined;
|
|
442
|
-
ServerId: string | undefined;
|
|
443
|
-
}
|
|
444
|
-
export interface DeleteCertificateRequest {
|
|
445
|
-
CertificateId: string | undefined;
|
|
446
|
-
}
|
|
447
|
-
export interface DeleteConnectorRequest {
|
|
448
|
-
ConnectorId: string | undefined;
|
|
449
|
-
}
|
|
450
613
|
export interface DeleteHostKeyRequest {
|
|
451
614
|
ServerId: string | undefined;
|
|
452
615
|
HostKeyId: string | undefined;
|
|
@@ -486,65 +649,6 @@ export interface DescribeAccessResponse {
|
|
|
486
649
|
ServerId: string | undefined;
|
|
487
650
|
Access: DescribedAccess | undefined;
|
|
488
651
|
}
|
|
489
|
-
export interface DescribeAgreementRequest {
|
|
490
|
-
AgreementId: string | undefined;
|
|
491
|
-
ServerId: string | undefined;
|
|
492
|
-
}
|
|
493
|
-
export interface DescribedAgreement {
|
|
494
|
-
Arn: string | undefined;
|
|
495
|
-
AgreementId?: string;
|
|
496
|
-
Description?: string;
|
|
497
|
-
Status?: AgreementStatusType;
|
|
498
|
-
ServerId?: string;
|
|
499
|
-
LocalProfileId?: string;
|
|
500
|
-
PartnerProfileId?: string;
|
|
501
|
-
BaseDirectory?: string;
|
|
502
|
-
AccessRole?: string;
|
|
503
|
-
Tags?: Tag[];
|
|
504
|
-
}
|
|
505
|
-
export interface DescribeAgreementResponse {
|
|
506
|
-
Agreement: DescribedAgreement | undefined;
|
|
507
|
-
}
|
|
508
|
-
export interface DescribeCertificateRequest {
|
|
509
|
-
CertificateId: string | undefined;
|
|
510
|
-
}
|
|
511
|
-
export interface DescribedCertificate {
|
|
512
|
-
Arn: string | undefined;
|
|
513
|
-
CertificateId?: string;
|
|
514
|
-
Usage?: CertificateUsageType;
|
|
515
|
-
Status?: CertificateStatusType;
|
|
516
|
-
Certificate?: string;
|
|
517
|
-
CertificateChain?: string;
|
|
518
|
-
ActiveDate?: Date;
|
|
519
|
-
InactiveDate?: Date;
|
|
520
|
-
Serial?: string;
|
|
521
|
-
NotBeforeDate?: Date;
|
|
522
|
-
NotAfterDate?: Date;
|
|
523
|
-
Type?: CertificateType;
|
|
524
|
-
Description?: string;
|
|
525
|
-
Tags?: Tag[];
|
|
526
|
-
}
|
|
527
|
-
export interface DescribeCertificateResponse {
|
|
528
|
-
Certificate: DescribedCertificate | undefined;
|
|
529
|
-
}
|
|
530
|
-
export interface DescribeConnectorRequest {
|
|
531
|
-
ConnectorId: string | undefined;
|
|
532
|
-
}
|
|
533
|
-
export interface DescribedConnector {
|
|
534
|
-
Arn: string | undefined;
|
|
535
|
-
ConnectorId?: string;
|
|
536
|
-
Url?: string;
|
|
537
|
-
As2Config?: As2ConnectorConfig;
|
|
538
|
-
AccessRole?: string;
|
|
539
|
-
LoggingRole?: string;
|
|
540
|
-
Tags?: Tag[];
|
|
541
|
-
SftpConfig?: SftpConnectorConfig;
|
|
542
|
-
ServiceManagedEgressIpAddresses?: string[];
|
|
543
|
-
SecurityPolicyName?: string;
|
|
544
|
-
}
|
|
545
|
-
export interface DescribeConnectorResponse {
|
|
546
|
-
Connector: DescribedConnector | undefined;
|
|
547
|
-
}
|
|
548
652
|
export interface S3FileLocation {
|
|
549
653
|
Bucket?: string;
|
|
550
654
|
Key?: string;
|
|
@@ -755,19 +859,6 @@ export interface DescribeWorkflowRequest {
|
|
|
755
859
|
export interface DescribeWorkflowResponse {
|
|
756
860
|
Workflow: DescribedWorkflow | undefined;
|
|
757
861
|
}
|
|
758
|
-
export interface ImportCertificateRequest {
|
|
759
|
-
Usage: CertificateUsageType | undefined;
|
|
760
|
-
Certificate: string | undefined;
|
|
761
|
-
CertificateChain?: string;
|
|
762
|
-
PrivateKey?: string;
|
|
763
|
-
ActiveDate?: Date;
|
|
764
|
-
InactiveDate?: Date;
|
|
765
|
-
Description?: string;
|
|
766
|
-
Tags?: Tag[];
|
|
767
|
-
}
|
|
768
|
-
export interface ImportCertificateResponse {
|
|
769
|
-
CertificateId: string | undefined;
|
|
770
|
-
}
|
|
771
862
|
export interface ImportHostKeyRequest {
|
|
772
863
|
ServerId: string | undefined;
|
|
773
864
|
HostKeyBody: string | undefined;
|
|
@@ -788,14 +879,6 @@ export interface ImportSshPublicKeyResponse {
|
|
|
788
879
|
SshPublicKeyId: string | undefined;
|
|
789
880
|
UserName: string | undefined;
|
|
790
881
|
}
|
|
791
|
-
export declare class InvalidNextTokenException extends __BaseException {
|
|
792
|
-
readonly name: "InvalidNextTokenException";
|
|
793
|
-
readonly $fault: "client";
|
|
794
|
-
Message: string | undefined;
|
|
795
|
-
constructor(
|
|
796
|
-
opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
|
|
797
|
-
);
|
|
798
|
-
}
|
|
799
882
|
export interface ListAccessesRequest {
|
|
800
883
|
MaxResults?: number;
|
|
801
884
|
NextToken?: string;
|
|
@@ -812,55 +895,6 @@ export interface ListAccessesResponse {
|
|
|
812
895
|
ServerId: string | undefined;
|
|
813
896
|
Accesses: ListedAccess[] | undefined;
|
|
814
897
|
}
|
|
815
|
-
export interface ListAgreementsRequest {
|
|
816
|
-
MaxResults?: number;
|
|
817
|
-
NextToken?: string;
|
|
818
|
-
ServerId: string | undefined;
|
|
819
|
-
}
|
|
820
|
-
export interface ListedAgreement {
|
|
821
|
-
Arn?: string;
|
|
822
|
-
AgreementId?: string;
|
|
823
|
-
Description?: string;
|
|
824
|
-
Status?: AgreementStatusType;
|
|
825
|
-
ServerId?: string;
|
|
826
|
-
LocalProfileId?: string;
|
|
827
|
-
PartnerProfileId?: string;
|
|
828
|
-
}
|
|
829
|
-
export interface ListAgreementsResponse {
|
|
830
|
-
NextToken?: string;
|
|
831
|
-
Agreements: ListedAgreement[] | undefined;
|
|
832
|
-
}
|
|
833
|
-
export interface ListCertificatesRequest {
|
|
834
|
-
MaxResults?: number;
|
|
835
|
-
NextToken?: string;
|
|
836
|
-
}
|
|
837
|
-
export interface ListedCertificate {
|
|
838
|
-
Arn?: string;
|
|
839
|
-
CertificateId?: string;
|
|
840
|
-
Usage?: CertificateUsageType;
|
|
841
|
-
Status?: CertificateStatusType;
|
|
842
|
-
ActiveDate?: Date;
|
|
843
|
-
InactiveDate?: Date;
|
|
844
|
-
Type?: CertificateType;
|
|
845
|
-
Description?: string;
|
|
846
|
-
}
|
|
847
|
-
export interface ListCertificatesResponse {
|
|
848
|
-
NextToken?: string;
|
|
849
|
-
Certificates: ListedCertificate[] | undefined;
|
|
850
|
-
}
|
|
851
|
-
export interface ListConnectorsRequest {
|
|
852
|
-
MaxResults?: number;
|
|
853
|
-
NextToken?: string;
|
|
854
|
-
}
|
|
855
|
-
export interface ListedConnector {
|
|
856
|
-
Arn?: string;
|
|
857
|
-
ConnectorId?: string;
|
|
858
|
-
Url?: string;
|
|
859
|
-
}
|
|
860
|
-
export interface ListConnectorsResponse {
|
|
861
|
-
NextToken?: string;
|
|
862
|
-
Connectors: ListedConnector[] | undefined;
|
|
863
|
-
}
|
|
864
898
|
export interface ListedExecution {
|
|
865
899
|
ExecutionId?: string;
|
|
866
900
|
InitialFileLocation?: FileLocation;
|
|
@@ -977,6 +1011,13 @@ export interface ListWorkflowsResponse {
|
|
|
977
1011
|
NextToken?: string;
|
|
978
1012
|
Workflows: ListedWorkflow[] | undefined;
|
|
979
1013
|
}
|
|
1014
|
+
export interface UpdateProfileRequest {
|
|
1015
|
+
ProfileId: string | undefined;
|
|
1016
|
+
CertificateIds?: string[];
|
|
1017
|
+
}
|
|
1018
|
+
export interface UpdateProfileResponse {
|
|
1019
|
+
ProfileId: string | undefined;
|
|
1020
|
+
}
|
|
980
1021
|
export interface SendWorkflowStepStateRequest {
|
|
981
1022
|
WorkflowId: string | undefined;
|
|
982
1023
|
ExecutionId: string | undefined;
|
|
@@ -984,6 +1025,26 @@ export interface SendWorkflowStepStateRequest {
|
|
|
984
1025
|
Status: CustomStepStatus | undefined;
|
|
985
1026
|
}
|
|
986
1027
|
export interface SendWorkflowStepStateResponse {}
|
|
1028
|
+
export interface UpdateServerRequest {
|
|
1029
|
+
Certificate?: string;
|
|
1030
|
+
ProtocolDetails?: ProtocolDetails;
|
|
1031
|
+
EndpointDetails?: EndpointDetails;
|
|
1032
|
+
EndpointType?: EndpointType;
|
|
1033
|
+
HostKey?: string;
|
|
1034
|
+
IdentityProviderDetails?: IdentityProviderDetails;
|
|
1035
|
+
LoggingRole?: string;
|
|
1036
|
+
PostAuthenticationLoginBanner?: string;
|
|
1037
|
+
PreAuthenticationLoginBanner?: string;
|
|
1038
|
+
Protocols?: Protocol[];
|
|
1039
|
+
SecurityPolicyName?: string;
|
|
1040
|
+
ServerId: string | undefined;
|
|
1041
|
+
WorkflowDetails?: WorkflowDetails;
|
|
1042
|
+
StructuredLogDestinations?: string[];
|
|
1043
|
+
S3StorageOptions?: S3StorageOptions;
|
|
1044
|
+
}
|
|
1045
|
+
export interface UpdateServerResponse {
|
|
1046
|
+
ServerId: string | undefined;
|
|
1047
|
+
}
|
|
987
1048
|
export interface StartDirectoryListingRequest {
|
|
988
1049
|
ConnectorId: string | undefined;
|
|
989
1050
|
RemoteDirectoryPath: string | undefined;
|
|
@@ -1053,40 +1114,6 @@ export interface UpdateAccessResponse {
|
|
|
1053
1114
|
ServerId: string | undefined;
|
|
1054
1115
|
ExternalId: string | undefined;
|
|
1055
1116
|
}
|
|
1056
|
-
export interface UpdateAgreementRequest {
|
|
1057
|
-
AgreementId: string | undefined;
|
|
1058
|
-
ServerId: string | undefined;
|
|
1059
|
-
Description?: string;
|
|
1060
|
-
Status?: AgreementStatusType;
|
|
1061
|
-
LocalProfileId?: string;
|
|
1062
|
-
PartnerProfileId?: string;
|
|
1063
|
-
BaseDirectory?: string;
|
|
1064
|
-
AccessRole?: string;
|
|
1065
|
-
}
|
|
1066
|
-
export interface UpdateAgreementResponse {
|
|
1067
|
-
AgreementId: string | undefined;
|
|
1068
|
-
}
|
|
1069
|
-
export interface UpdateCertificateRequest {
|
|
1070
|
-
CertificateId: string | undefined;
|
|
1071
|
-
ActiveDate?: Date;
|
|
1072
|
-
InactiveDate?: Date;
|
|
1073
|
-
Description?: string;
|
|
1074
|
-
}
|
|
1075
|
-
export interface UpdateCertificateResponse {
|
|
1076
|
-
CertificateId: string | undefined;
|
|
1077
|
-
}
|
|
1078
|
-
export interface UpdateConnectorRequest {
|
|
1079
|
-
ConnectorId: string | undefined;
|
|
1080
|
-
Url?: string;
|
|
1081
|
-
As2Config?: As2ConnectorConfig;
|
|
1082
|
-
AccessRole?: string;
|
|
1083
|
-
LoggingRole?: string;
|
|
1084
|
-
SftpConfig?: SftpConnectorConfig;
|
|
1085
|
-
SecurityPolicyName?: string;
|
|
1086
|
-
}
|
|
1087
|
-
export interface UpdateConnectorResponse {
|
|
1088
|
-
ConnectorId: string | undefined;
|
|
1089
|
-
}
|
|
1090
1117
|
export interface UpdateHostKeyRequest {
|
|
1091
1118
|
ServerId: string | undefined;
|
|
1092
1119
|
HostKeyId: string | undefined;
|
|
@@ -1096,33 +1123,6 @@ export interface UpdateHostKeyResponse {
|
|
|
1096
1123
|
ServerId: string | undefined;
|
|
1097
1124
|
HostKeyId: string | undefined;
|
|
1098
1125
|
}
|
|
1099
|
-
export interface UpdateProfileRequest {
|
|
1100
|
-
ProfileId: string | undefined;
|
|
1101
|
-
CertificateIds?: string[];
|
|
1102
|
-
}
|
|
1103
|
-
export interface UpdateProfileResponse {
|
|
1104
|
-
ProfileId: string | undefined;
|
|
1105
|
-
}
|
|
1106
|
-
export interface UpdateServerRequest {
|
|
1107
|
-
Certificate?: string;
|
|
1108
|
-
ProtocolDetails?: ProtocolDetails;
|
|
1109
|
-
EndpointDetails?: EndpointDetails;
|
|
1110
|
-
EndpointType?: EndpointType;
|
|
1111
|
-
HostKey?: string;
|
|
1112
|
-
IdentityProviderDetails?: IdentityProviderDetails;
|
|
1113
|
-
LoggingRole?: string;
|
|
1114
|
-
PostAuthenticationLoginBanner?: string;
|
|
1115
|
-
PreAuthenticationLoginBanner?: string;
|
|
1116
|
-
Protocols?: Protocol[];
|
|
1117
|
-
SecurityPolicyName?: string;
|
|
1118
|
-
ServerId: string | undefined;
|
|
1119
|
-
WorkflowDetails?: WorkflowDetails;
|
|
1120
|
-
StructuredLogDestinations?: string[];
|
|
1121
|
-
S3StorageOptions?: S3StorageOptions;
|
|
1122
|
-
}
|
|
1123
|
-
export interface UpdateServerResponse {
|
|
1124
|
-
ServerId: string | undefined;
|
|
1125
|
-
}
|
|
1126
1126
|
export interface UpdateUserRequest {
|
|
1127
1127
|
HomeDirectory?: string;
|
|
1128
1128
|
HomeDirectoryType?: HomeDirectoryType;
|
|
@@ -1137,9 +1137,6 @@ export interface UpdateUserResponse {
|
|
|
1137
1137
|
ServerId: string | undefined;
|
|
1138
1138
|
UserName: string | undefined;
|
|
1139
1139
|
}
|
|
1140
|
-
export declare const CreateServerRequestFilterSensitiveLog: (
|
|
1141
|
-
obj: CreateServerRequest
|
|
1142
|
-
) => any;
|
|
1143
1140
|
export declare const DescribedCertificateFilterSensitiveLog: (
|
|
1144
1141
|
obj: DescribedCertificate
|
|
1145
1142
|
) => any;
|
|
@@ -1149,12 +1146,15 @@ export declare const DescribeCertificateResponseFilterSensitiveLog: (
|
|
|
1149
1146
|
export declare const ImportCertificateRequestFilterSensitiveLog: (
|
|
1150
1147
|
obj: ImportCertificateRequest
|
|
1151
1148
|
) => any;
|
|
1149
|
+
export declare const CreateServerRequestFilterSensitiveLog: (
|
|
1150
|
+
obj: CreateServerRequest
|
|
1151
|
+
) => any;
|
|
1152
1152
|
export declare const ImportHostKeyRequestFilterSensitiveLog: (
|
|
1153
1153
|
obj: ImportHostKeyRequest
|
|
1154
1154
|
) => any;
|
|
1155
|
-
export declare const TestIdentityProviderRequestFilterSensitiveLog: (
|
|
1156
|
-
obj: TestIdentityProviderRequest
|
|
1157
|
-
) => any;
|
|
1158
1155
|
export declare const UpdateServerRequestFilterSensitiveLog: (
|
|
1159
1156
|
obj: UpdateServerRequest
|
|
1160
1157
|
) => any;
|
|
1158
|
+
export declare const TestIdentityProviderRequestFilterSensitiveLog: (
|
|
1159
|
+
obj: TestIdentityProviderRequest
|
|
1160
|
+
) => any;
|