@aws-sdk/client-datasync 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 +213 -212
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +212 -0
- package/dist-es/models/errors.js +31 -0
- package/dist-es/models/models_0.js +1 -243
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +556 -0
- package/dist-types/models/errors.d.ts +30 -0
- package/dist-types/models/models_0.d.ts +1 -586
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +277 -0
- package/dist-types/ts3.4/models/errors.d.ts +17 -0
- package/dist-types/ts3.4/models/models_0.d.ts +45 -294
- 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,63 +1,64 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
AgentStatus,
|
|
3
|
+
Atime,
|
|
4
|
+
AzureAccessTier,
|
|
5
|
+
AzureBlobAuthenticationType,
|
|
6
|
+
AzureBlobType,
|
|
7
|
+
EfsInTransitEncryption,
|
|
8
|
+
EndpointType,
|
|
9
|
+
FilterType,
|
|
10
|
+
Gid,
|
|
11
|
+
HdfsAuthenticationType,
|
|
12
|
+
HdfsDataTransferProtection,
|
|
13
|
+
HdfsRpcProtection,
|
|
14
|
+
LocationFilterName,
|
|
15
|
+
LogLevel,
|
|
16
|
+
ManifestAction,
|
|
17
|
+
ManifestFormat,
|
|
18
|
+
Mtime,
|
|
19
|
+
NfsVersion,
|
|
20
|
+
ObjectStorageServerProtocol,
|
|
21
|
+
ObjectTags,
|
|
22
|
+
ObjectVersionIds,
|
|
23
|
+
Operator,
|
|
24
|
+
OverwriteMode,
|
|
25
|
+
PhaseStatus,
|
|
26
|
+
PosixPermissions,
|
|
27
|
+
PreserveDeletedFiles,
|
|
28
|
+
PreserveDevices,
|
|
29
|
+
ReportLevel,
|
|
30
|
+
ReportOutputType,
|
|
31
|
+
S3StorageClass,
|
|
32
|
+
ScheduleDisabledBy,
|
|
33
|
+
ScheduleStatus,
|
|
34
|
+
SmbAuthenticationType,
|
|
35
|
+
SmbSecurityDescriptorCopyFlags,
|
|
36
|
+
SmbVersion,
|
|
37
|
+
TaskExecutionStatus,
|
|
38
|
+
TaskFilterName,
|
|
39
|
+
TaskMode,
|
|
40
|
+
TaskQueueing,
|
|
41
|
+
TaskStatus,
|
|
42
|
+
TransferMode,
|
|
43
|
+
Uid,
|
|
44
|
+
VerifyMode,
|
|
45
|
+
} from "./enums";
|
|
3
46
|
export interface Platform {
|
|
4
47
|
Version?: string | undefined;
|
|
5
48
|
}
|
|
6
|
-
export declare const AgentStatus: {
|
|
7
|
-
readonly OFFLINE: "OFFLINE";
|
|
8
|
-
readonly ONLINE: "ONLINE";
|
|
9
|
-
};
|
|
10
|
-
export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
|
|
11
49
|
export interface AgentListEntry {
|
|
12
50
|
AgentArn?: string | undefined;
|
|
13
51
|
Name?: string | undefined;
|
|
14
52
|
Status?: AgentStatus | undefined;
|
|
15
53
|
Platform?: Platform | undefined;
|
|
16
54
|
}
|
|
17
|
-
export declare const Atime: {
|
|
18
|
-
readonly BEST_EFFORT: "BEST_EFFORT";
|
|
19
|
-
readonly NONE: "NONE";
|
|
20
|
-
};
|
|
21
|
-
export type Atime = (typeof Atime)[keyof typeof Atime];
|
|
22
|
-
export declare const AzureAccessTier: {
|
|
23
|
-
readonly ARCHIVE: "ARCHIVE";
|
|
24
|
-
readonly COOL: "COOL";
|
|
25
|
-
readonly HOT: "HOT";
|
|
26
|
-
};
|
|
27
|
-
export type AzureAccessTier =
|
|
28
|
-
(typeof AzureAccessTier)[keyof typeof AzureAccessTier];
|
|
29
|
-
export declare const AzureBlobAuthenticationType: {
|
|
30
|
-
readonly NONE: "NONE";
|
|
31
|
-
readonly SAS: "SAS";
|
|
32
|
-
};
|
|
33
|
-
export type AzureBlobAuthenticationType =
|
|
34
|
-
(typeof AzureBlobAuthenticationType)[keyof typeof AzureBlobAuthenticationType];
|
|
35
55
|
export interface AzureBlobSasConfiguration {
|
|
36
56
|
Token: string | undefined;
|
|
37
57
|
}
|
|
38
|
-
export declare const AzureBlobType: {
|
|
39
|
-
readonly BLOCK: "BLOCK";
|
|
40
|
-
};
|
|
41
|
-
export type AzureBlobType = (typeof AzureBlobType)[keyof typeof AzureBlobType];
|
|
42
58
|
export interface CancelTaskExecutionRequest {
|
|
43
59
|
TaskExecutionArn: string | undefined;
|
|
44
60
|
}
|
|
45
61
|
export interface CancelTaskExecutionResponse {}
|
|
46
|
-
export declare class InternalException extends __BaseException {
|
|
47
|
-
readonly name: "InternalException";
|
|
48
|
-
readonly $fault: "server";
|
|
49
|
-
errorCode?: string | undefined;
|
|
50
|
-
constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
|
|
51
|
-
}
|
|
52
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
53
|
-
readonly name: "InvalidRequestException";
|
|
54
|
-
readonly $fault: "client";
|
|
55
|
-
errorCode?: string | undefined;
|
|
56
|
-
datasyncErrorCode?: string | undefined;
|
|
57
|
-
constructor(
|
|
58
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
59
|
-
);
|
|
60
|
-
}
|
|
61
62
|
export interface CmkSecretConfig {
|
|
62
63
|
SecretArn?: string | undefined;
|
|
63
64
|
KmsKeyArn?: string | undefined;
|
|
@@ -100,12 +101,6 @@ export interface Ec2Config {
|
|
|
100
101
|
SubnetArn: string | undefined;
|
|
101
102
|
SecurityGroupArns: string[] | undefined;
|
|
102
103
|
}
|
|
103
|
-
export declare const EfsInTransitEncryption: {
|
|
104
|
-
readonly NONE: "NONE";
|
|
105
|
-
readonly TLS1_2: "TLS1_2";
|
|
106
|
-
};
|
|
107
|
-
export type EfsInTransitEncryption =
|
|
108
|
-
(typeof EfsInTransitEncryption)[keyof typeof EfsInTransitEncryption];
|
|
109
104
|
export interface CreateLocationEfsRequest {
|
|
110
105
|
Subdirectory?: string | undefined;
|
|
111
106
|
EfsFilesystemArn: string | undefined;
|
|
@@ -127,27 +122,12 @@ export interface CreateLocationFsxLustreRequest {
|
|
|
127
122
|
export interface CreateLocationFsxLustreResponse {
|
|
128
123
|
LocationArn?: string | undefined;
|
|
129
124
|
}
|
|
130
|
-
export declare const NfsVersion: {
|
|
131
|
-
readonly AUTOMATIC: "AUTOMATIC";
|
|
132
|
-
readonly NFS3: "NFS3";
|
|
133
|
-
readonly NFS4_0: "NFS4_0";
|
|
134
|
-
readonly NFS4_1: "NFS4_1";
|
|
135
|
-
};
|
|
136
|
-
export type NfsVersion = (typeof NfsVersion)[keyof typeof NfsVersion];
|
|
137
125
|
export interface NfsMountOptions {
|
|
138
126
|
Version?: NfsVersion | undefined;
|
|
139
127
|
}
|
|
140
128
|
export interface FsxProtocolNfs {
|
|
141
129
|
MountOptions?: NfsMountOptions | undefined;
|
|
142
130
|
}
|
|
143
|
-
export declare const SmbVersion: {
|
|
144
|
-
readonly AUTOMATIC: "AUTOMATIC";
|
|
145
|
-
readonly SMB1: "SMB1";
|
|
146
|
-
readonly SMB2: "SMB2";
|
|
147
|
-
readonly SMB2_0: "SMB2_0";
|
|
148
|
-
readonly SMB3: "SMB3";
|
|
149
|
-
};
|
|
150
|
-
export type SmbVersion = (typeof SmbVersion)[keyof typeof SmbVersion];
|
|
151
131
|
export interface SmbMountOptions {
|
|
152
132
|
Version?: SmbVersion | undefined;
|
|
153
133
|
}
|
|
@@ -193,32 +173,10 @@ export interface CreateLocationFsxWindowsRequest {
|
|
|
193
173
|
export interface CreateLocationFsxWindowsResponse {
|
|
194
174
|
LocationArn?: string | undefined;
|
|
195
175
|
}
|
|
196
|
-
export declare const HdfsAuthenticationType: {
|
|
197
|
-
readonly KERBEROS: "KERBEROS";
|
|
198
|
-
readonly SIMPLE: "SIMPLE";
|
|
199
|
-
};
|
|
200
|
-
export type HdfsAuthenticationType =
|
|
201
|
-
(typeof HdfsAuthenticationType)[keyof typeof HdfsAuthenticationType];
|
|
202
176
|
export interface HdfsNameNode {
|
|
203
177
|
Hostname: string | undefined;
|
|
204
178
|
Port: number | undefined;
|
|
205
179
|
}
|
|
206
|
-
export declare const HdfsDataTransferProtection: {
|
|
207
|
-
readonly AUTHENTICATION: "AUTHENTICATION";
|
|
208
|
-
readonly DISABLED: "DISABLED";
|
|
209
|
-
readonly INTEGRITY: "INTEGRITY";
|
|
210
|
-
readonly PRIVACY: "PRIVACY";
|
|
211
|
-
};
|
|
212
|
-
export type HdfsDataTransferProtection =
|
|
213
|
-
(typeof HdfsDataTransferProtection)[keyof typeof HdfsDataTransferProtection];
|
|
214
|
-
export declare const HdfsRpcProtection: {
|
|
215
|
-
readonly AUTHENTICATION: "AUTHENTICATION";
|
|
216
|
-
readonly DISABLED: "DISABLED";
|
|
217
|
-
readonly INTEGRITY: "INTEGRITY";
|
|
218
|
-
readonly PRIVACY: "PRIVACY";
|
|
219
|
-
};
|
|
220
|
-
export type HdfsRpcProtection =
|
|
221
|
-
(typeof HdfsRpcProtection)[keyof typeof HdfsRpcProtection];
|
|
222
180
|
export interface QopConfiguration {
|
|
223
181
|
RpcProtection?: HdfsRpcProtection | undefined;
|
|
224
182
|
DataTransferProtection?: HdfsDataTransferProtection | undefined;
|
|
@@ -254,12 +212,6 @@ export interface CreateLocationNfsRequest {
|
|
|
254
212
|
export interface CreateLocationNfsResponse {
|
|
255
213
|
LocationArn?: string | undefined;
|
|
256
214
|
}
|
|
257
|
-
export declare const ObjectStorageServerProtocol: {
|
|
258
|
-
readonly HTTP: "HTTP";
|
|
259
|
-
readonly HTTPS: "HTTPS";
|
|
260
|
-
};
|
|
261
|
-
export type ObjectStorageServerProtocol =
|
|
262
|
-
(typeof ObjectStorageServerProtocol)[keyof typeof ObjectStorageServerProtocol];
|
|
263
215
|
export interface CreateLocationObjectStorageRequest {
|
|
264
216
|
ServerHostname: string | undefined;
|
|
265
217
|
ServerPort?: number | undefined;
|
|
@@ -280,18 +232,6 @@ export interface CreateLocationObjectStorageResponse {
|
|
|
280
232
|
export interface S3Config {
|
|
281
233
|
BucketAccessRoleArn: string | undefined;
|
|
282
234
|
}
|
|
283
|
-
export declare const S3StorageClass: {
|
|
284
|
-
readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
|
|
285
|
-
readonly GLACIER: "GLACIER";
|
|
286
|
-
readonly GLACIER_INSTANT_RETRIEVAL: "GLACIER_INSTANT_RETRIEVAL";
|
|
287
|
-
readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
|
|
288
|
-
readonly ONEZONE_IA: "ONEZONE_IA";
|
|
289
|
-
readonly OUTPOSTS: "OUTPOSTS";
|
|
290
|
-
readonly STANDARD: "STANDARD";
|
|
291
|
-
readonly STANDARD_IA: "STANDARD_IA";
|
|
292
|
-
};
|
|
293
|
-
export type S3StorageClass =
|
|
294
|
-
(typeof S3StorageClass)[keyof typeof S3StorageClass];
|
|
295
235
|
export interface CreateLocationS3Request {
|
|
296
236
|
Subdirectory?: string | undefined;
|
|
297
237
|
S3BucketArn: string | undefined;
|
|
@@ -303,12 +243,6 @@ export interface CreateLocationS3Request {
|
|
|
303
243
|
export interface CreateLocationS3Response {
|
|
304
244
|
LocationArn?: string | undefined;
|
|
305
245
|
}
|
|
306
|
-
export declare const SmbAuthenticationType: {
|
|
307
|
-
readonly KERBEROS: "KERBEROS";
|
|
308
|
-
readonly NTLM: "NTLM";
|
|
309
|
-
};
|
|
310
|
-
export type SmbAuthenticationType =
|
|
311
|
-
(typeof SmbAuthenticationType)[keyof typeof SmbAuthenticationType];
|
|
312
246
|
export interface CreateLocationSmbRequest {
|
|
313
247
|
Subdirectory: string | undefined;
|
|
314
248
|
ServerHostname: string | undefined;
|
|
@@ -327,24 +261,10 @@ export interface CreateLocationSmbRequest {
|
|
|
327
261
|
export interface CreateLocationSmbResponse {
|
|
328
262
|
LocationArn?: string | undefined;
|
|
329
263
|
}
|
|
330
|
-
export declare const FilterType: {
|
|
331
|
-
readonly SIMPLE_PATTERN: "SIMPLE_PATTERN";
|
|
332
|
-
};
|
|
333
|
-
export type FilterType = (typeof FilterType)[keyof typeof FilterType];
|
|
334
264
|
export interface FilterRule {
|
|
335
265
|
FilterType?: FilterType | undefined;
|
|
336
266
|
Value?: string | undefined;
|
|
337
267
|
}
|
|
338
|
-
export declare const ManifestAction: {
|
|
339
|
-
readonly TRANSFER: "TRANSFER";
|
|
340
|
-
};
|
|
341
|
-
export type ManifestAction =
|
|
342
|
-
(typeof ManifestAction)[keyof typeof ManifestAction];
|
|
343
|
-
export declare const ManifestFormat: {
|
|
344
|
-
readonly CSV: "CSV";
|
|
345
|
-
};
|
|
346
|
-
export type ManifestFormat =
|
|
347
|
-
(typeof ManifestFormat)[keyof typeof ManifestFormat];
|
|
348
268
|
export interface S3ManifestConfig {
|
|
349
269
|
ManifestObjectPath: string | undefined;
|
|
350
270
|
BucketAccessRoleArn: string | undefined;
|
|
@@ -359,82 +279,6 @@ export interface ManifestConfig {
|
|
|
359
279
|
Format?: ManifestFormat | undefined;
|
|
360
280
|
Source?: SourceManifestConfig | undefined;
|
|
361
281
|
}
|
|
362
|
-
export declare const Gid: {
|
|
363
|
-
readonly BOTH: "BOTH";
|
|
364
|
-
readonly INT_VALUE: "INT_VALUE";
|
|
365
|
-
readonly NAME: "NAME";
|
|
366
|
-
readonly NONE: "NONE";
|
|
367
|
-
};
|
|
368
|
-
export type Gid = (typeof Gid)[keyof typeof Gid];
|
|
369
|
-
export declare const LogLevel: {
|
|
370
|
-
readonly BASIC: "BASIC";
|
|
371
|
-
readonly OFF: "OFF";
|
|
372
|
-
readonly TRANSFER: "TRANSFER";
|
|
373
|
-
};
|
|
374
|
-
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
375
|
-
export declare const Mtime: {
|
|
376
|
-
readonly NONE: "NONE";
|
|
377
|
-
readonly PRESERVE: "PRESERVE";
|
|
378
|
-
};
|
|
379
|
-
export type Mtime = (typeof Mtime)[keyof typeof Mtime];
|
|
380
|
-
export declare const ObjectTags: {
|
|
381
|
-
readonly NONE: "NONE";
|
|
382
|
-
readonly PRESERVE: "PRESERVE";
|
|
383
|
-
};
|
|
384
|
-
export type ObjectTags = (typeof ObjectTags)[keyof typeof ObjectTags];
|
|
385
|
-
export declare const OverwriteMode: {
|
|
386
|
-
readonly ALWAYS: "ALWAYS";
|
|
387
|
-
readonly NEVER: "NEVER";
|
|
388
|
-
};
|
|
389
|
-
export type OverwriteMode = (typeof OverwriteMode)[keyof typeof OverwriteMode];
|
|
390
|
-
export declare const PosixPermissions: {
|
|
391
|
-
readonly NONE: "NONE";
|
|
392
|
-
readonly PRESERVE: "PRESERVE";
|
|
393
|
-
};
|
|
394
|
-
export type PosixPermissions =
|
|
395
|
-
(typeof PosixPermissions)[keyof typeof PosixPermissions];
|
|
396
|
-
export declare const PreserveDeletedFiles: {
|
|
397
|
-
readonly PRESERVE: "PRESERVE";
|
|
398
|
-
readonly REMOVE: "REMOVE";
|
|
399
|
-
};
|
|
400
|
-
export type PreserveDeletedFiles =
|
|
401
|
-
(typeof PreserveDeletedFiles)[keyof typeof PreserveDeletedFiles];
|
|
402
|
-
export declare const PreserveDevices: {
|
|
403
|
-
readonly NONE: "NONE";
|
|
404
|
-
readonly PRESERVE: "PRESERVE";
|
|
405
|
-
};
|
|
406
|
-
export type PreserveDevices =
|
|
407
|
-
(typeof PreserveDevices)[keyof typeof PreserveDevices];
|
|
408
|
-
export declare const SmbSecurityDescriptorCopyFlags: {
|
|
409
|
-
readonly NONE: "NONE";
|
|
410
|
-
readonly OWNER_DACL: "OWNER_DACL";
|
|
411
|
-
readonly OWNER_DACL_SACL: "OWNER_DACL_SACL";
|
|
412
|
-
};
|
|
413
|
-
export type SmbSecurityDescriptorCopyFlags =
|
|
414
|
-
(typeof SmbSecurityDescriptorCopyFlags)[keyof typeof SmbSecurityDescriptorCopyFlags];
|
|
415
|
-
export declare const TaskQueueing: {
|
|
416
|
-
readonly DISABLED: "DISABLED";
|
|
417
|
-
readonly ENABLED: "ENABLED";
|
|
418
|
-
};
|
|
419
|
-
export type TaskQueueing = (typeof TaskQueueing)[keyof typeof TaskQueueing];
|
|
420
|
-
export declare const TransferMode: {
|
|
421
|
-
readonly ALL: "ALL";
|
|
422
|
-
readonly CHANGED: "CHANGED";
|
|
423
|
-
};
|
|
424
|
-
export type TransferMode = (typeof TransferMode)[keyof typeof TransferMode];
|
|
425
|
-
export declare const Uid: {
|
|
426
|
-
readonly BOTH: "BOTH";
|
|
427
|
-
readonly INT_VALUE: "INT_VALUE";
|
|
428
|
-
readonly NAME: "NAME";
|
|
429
|
-
readonly NONE: "NONE";
|
|
430
|
-
};
|
|
431
|
-
export type Uid = (typeof Uid)[keyof typeof Uid];
|
|
432
|
-
export declare const VerifyMode: {
|
|
433
|
-
readonly NONE: "NONE";
|
|
434
|
-
readonly ONLY_FILES_TRANSFERRED: "ONLY_FILES_TRANSFERRED";
|
|
435
|
-
readonly POINT_IN_TIME_CONSISTENT: "POINT_IN_TIME_CONSISTENT";
|
|
436
|
-
};
|
|
437
|
-
export type VerifyMode = (typeof VerifyMode)[keyof typeof VerifyMode];
|
|
438
282
|
export interface Options {
|
|
439
283
|
VerifyMode?: VerifyMode | undefined;
|
|
440
284
|
OverwriteMode?: OverwriteMode | undefined;
|
|
@@ -452,21 +296,10 @@ export interface Options {
|
|
|
452
296
|
SecurityDescriptorCopyFlags?: SmbSecurityDescriptorCopyFlags | undefined;
|
|
453
297
|
ObjectTags?: ObjectTags | undefined;
|
|
454
298
|
}
|
|
455
|
-
export declare const ScheduleStatus: {
|
|
456
|
-
readonly DISABLED: "DISABLED";
|
|
457
|
-
readonly ENABLED: "ENABLED";
|
|
458
|
-
};
|
|
459
|
-
export type ScheduleStatus =
|
|
460
|
-
(typeof ScheduleStatus)[keyof typeof ScheduleStatus];
|
|
461
299
|
export interface TaskSchedule {
|
|
462
300
|
ScheduleExpression: string | undefined;
|
|
463
301
|
Status?: ScheduleStatus | undefined;
|
|
464
302
|
}
|
|
465
|
-
export declare const TaskMode: {
|
|
466
|
-
readonly BASIC: "BASIC";
|
|
467
|
-
readonly ENHANCED: "ENHANCED";
|
|
468
|
-
};
|
|
469
|
-
export type TaskMode = (typeof TaskMode)[keyof typeof TaskMode];
|
|
470
303
|
export interface ReportDestinationS3 {
|
|
471
304
|
Subdirectory?: string | undefined;
|
|
472
305
|
S3BucketArn: string | undefined;
|
|
@@ -475,23 +308,6 @@ export interface ReportDestinationS3 {
|
|
|
475
308
|
export interface ReportDestination {
|
|
476
309
|
S3?: ReportDestinationS3 | undefined;
|
|
477
310
|
}
|
|
478
|
-
export declare const ObjectVersionIds: {
|
|
479
|
-
readonly INCLUDE: "INCLUDE";
|
|
480
|
-
readonly NONE: "NONE";
|
|
481
|
-
};
|
|
482
|
-
export type ObjectVersionIds =
|
|
483
|
-
(typeof ObjectVersionIds)[keyof typeof ObjectVersionIds];
|
|
484
|
-
export declare const ReportOutputType: {
|
|
485
|
-
readonly STANDARD: "STANDARD";
|
|
486
|
-
readonly SUMMARY_ONLY: "SUMMARY_ONLY";
|
|
487
|
-
};
|
|
488
|
-
export type ReportOutputType =
|
|
489
|
-
(typeof ReportOutputType)[keyof typeof ReportOutputType];
|
|
490
|
-
export declare const ReportLevel: {
|
|
491
|
-
readonly ERRORS_ONLY: "ERRORS_ONLY";
|
|
492
|
-
readonly SUCCESSES_AND_ERRORS: "SUCCESSES_AND_ERRORS";
|
|
493
|
-
};
|
|
494
|
-
export type ReportLevel = (typeof ReportLevel)[keyof typeof ReportLevel];
|
|
495
311
|
export interface ReportOverride {
|
|
496
312
|
ReportLevel?: ReportLevel | undefined;
|
|
497
313
|
}
|
|
@@ -540,13 +356,6 @@ export interface DeleteTaskResponse {}
|
|
|
540
356
|
export interface DescribeAgentRequest {
|
|
541
357
|
AgentArn: string | undefined;
|
|
542
358
|
}
|
|
543
|
-
export declare const EndpointType: {
|
|
544
|
-
readonly FIPS: "FIPS";
|
|
545
|
-
readonly FIPS_PRIVATE_LINK: "FIPS_PRIVATE_LINK";
|
|
546
|
-
readonly PRIVATE_LINK: "PRIVATE_LINK";
|
|
547
|
-
readonly PUBLIC: "PUBLIC";
|
|
548
|
-
};
|
|
549
|
-
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
|
|
550
359
|
export interface PrivateLinkConfig {
|
|
551
360
|
VpcEndpointId?: string | undefined;
|
|
552
361
|
PrivateLinkEndpoint?: string | undefined;
|
|
@@ -707,25 +516,11 @@ export interface DescribeLocationSmbResponse {
|
|
|
707
516
|
export interface DescribeTaskRequest {
|
|
708
517
|
TaskArn: string | undefined;
|
|
709
518
|
}
|
|
710
|
-
export declare const ScheduleDisabledBy: {
|
|
711
|
-
readonly SERVICE: "SERVICE";
|
|
712
|
-
readonly USER: "USER";
|
|
713
|
-
};
|
|
714
|
-
export type ScheduleDisabledBy =
|
|
715
|
-
(typeof ScheduleDisabledBy)[keyof typeof ScheduleDisabledBy];
|
|
716
519
|
export interface TaskScheduleDetails {
|
|
717
520
|
StatusUpdateTime?: Date | undefined;
|
|
718
521
|
DisabledReason?: string | undefined;
|
|
719
522
|
DisabledBy?: ScheduleDisabledBy | undefined;
|
|
720
523
|
}
|
|
721
|
-
export declare const TaskStatus: {
|
|
722
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
723
|
-
readonly CREATING: "CREATING";
|
|
724
|
-
readonly QUEUED: "QUEUED";
|
|
725
|
-
readonly RUNNING: "RUNNING";
|
|
726
|
-
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
727
|
-
};
|
|
728
|
-
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
729
524
|
export interface DescribeTaskResponse {
|
|
730
525
|
TaskArn?: string | undefined;
|
|
731
526
|
Status?: TaskStatus | undefined;
|
|
@@ -761,12 +556,6 @@ export interface TaskExecutionFilesListedDetail {
|
|
|
761
556
|
AtSource?: number | undefined;
|
|
762
557
|
AtDestinationForDelete?: number | undefined;
|
|
763
558
|
}
|
|
764
|
-
export declare const PhaseStatus: {
|
|
765
|
-
readonly ERROR: "ERROR";
|
|
766
|
-
readonly PENDING: "PENDING";
|
|
767
|
-
readonly SUCCESS: "SUCCESS";
|
|
768
|
-
};
|
|
769
|
-
export type PhaseStatus = (typeof PhaseStatus)[keyof typeof PhaseStatus];
|
|
770
559
|
export interface ReportResult {
|
|
771
560
|
Status?: PhaseStatus | undefined;
|
|
772
561
|
ErrorCode?: string | undefined;
|
|
@@ -783,18 +572,6 @@ export interface TaskExecutionResultDetail {
|
|
|
783
572
|
ErrorCode?: string | undefined;
|
|
784
573
|
ErrorDetail?: string | undefined;
|
|
785
574
|
}
|
|
786
|
-
export declare const TaskExecutionStatus: {
|
|
787
|
-
readonly CANCELLING: "CANCELLING";
|
|
788
|
-
readonly ERROR: "ERROR";
|
|
789
|
-
readonly LAUNCHING: "LAUNCHING";
|
|
790
|
-
readonly PREPARING: "PREPARING";
|
|
791
|
-
readonly QUEUED: "QUEUED";
|
|
792
|
-
readonly SUCCESS: "SUCCESS";
|
|
793
|
-
readonly TRANSFERRING: "TRANSFERRING";
|
|
794
|
-
readonly VERIFYING: "VERIFYING";
|
|
795
|
-
};
|
|
796
|
-
export type TaskExecutionStatus =
|
|
797
|
-
(typeof TaskExecutionStatus)[keyof typeof TaskExecutionStatus];
|
|
798
575
|
export interface DescribeTaskExecutionResponse {
|
|
799
576
|
TaskExecutionArn?: string | undefined;
|
|
800
577
|
Status?: TaskExecutionStatus | undefined;
|
|
@@ -831,26 +608,6 @@ export interface ListAgentsResponse {
|
|
|
831
608
|
Agents?: AgentListEntry[] | undefined;
|
|
832
609
|
NextToken?: string | undefined;
|
|
833
610
|
}
|
|
834
|
-
export declare const LocationFilterName: {
|
|
835
|
-
readonly CreationTime: "CreationTime";
|
|
836
|
-
readonly LocationType: "LocationType";
|
|
837
|
-
readonly LocationUri: "LocationUri";
|
|
838
|
-
};
|
|
839
|
-
export type LocationFilterName =
|
|
840
|
-
(typeof LocationFilterName)[keyof typeof LocationFilterName];
|
|
841
|
-
export declare const Operator: {
|
|
842
|
-
readonly BEGINS_WITH: "BeginsWith";
|
|
843
|
-
readonly CONTAINS: "Contains";
|
|
844
|
-
readonly EQ: "Equals";
|
|
845
|
-
readonly GE: "GreaterThanOrEqual";
|
|
846
|
-
readonly GT: "GreaterThan";
|
|
847
|
-
readonly IN: "In";
|
|
848
|
-
readonly LE: "LessThanOrEqual";
|
|
849
|
-
readonly LT: "LessThan";
|
|
850
|
-
readonly NE: "NotEquals";
|
|
851
|
-
readonly NOT_CONTAINS: "NotContains";
|
|
852
|
-
};
|
|
853
|
-
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
854
611
|
export interface LocationFilter {
|
|
855
612
|
Name: LocationFilterName | undefined;
|
|
856
613
|
Values: string[] | undefined;
|
|
@@ -892,12 +649,6 @@ export interface ListTaskExecutionsResponse {
|
|
|
892
649
|
TaskExecutions?: TaskExecutionListEntry[] | undefined;
|
|
893
650
|
NextToken?: string | undefined;
|
|
894
651
|
}
|
|
895
|
-
export declare const TaskFilterName: {
|
|
896
|
-
readonly CreationTime: "CreationTime";
|
|
897
|
-
readonly LocationId: "LocationId";
|
|
898
|
-
};
|
|
899
|
-
export type TaskFilterName =
|
|
900
|
-
(typeof TaskFilterName)[keyof typeof TaskFilterName];
|
|
901
652
|
export interface TaskFilter {
|
|
902
653
|
Name: TaskFilterName | undefined;
|
|
903
654
|
Values: string[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-datasync",
|
|
3
3
|
"description": "AWS SDK for JavaScript Datasync 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-datasync",
|
|
@@ -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";
|