@aws-sdk/client-datasync 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 +164 -195
- package/dist-es/models/models_0.js +164 -195
- package/dist-types/commands/CancelTaskExecutionCommand.d.ts +1 -1
- package/dist-types/commands/CreateAgentCommand.d.ts +5 -5
- package/dist-types/commands/CreateLocationEfsCommand.d.ts +5 -5
- package/dist-types/commands/CreateLocationFsxLustreCommand.d.ts +4 -4
- package/dist-types/commands/CreateLocationFsxOntapCommand.d.ts +9 -9
- package/dist-types/commands/CreateLocationFsxOpenZfsCommand.d.ts +9 -9
- package/dist-types/commands/CreateLocationFsxWindowsCommand.d.ts +4 -4
- package/dist-types/commands/CreateLocationHdfsCommand.d.ts +7 -7
- package/dist-types/commands/CreateLocationNfsCommand.d.ts +6 -6
- package/dist-types/commands/CreateLocationObjectStorageCommand.d.ts +4 -4
- package/dist-types/commands/CreateLocationS3Command.d.ts +5 -5
- package/dist-types/commands/CreateLocationSmbCommand.d.ts +5 -5
- package/dist-types/commands/CreateTaskCommand.d.ts +7 -7
- package/dist-types/commands/DeleteAgentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLocationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTaskCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAgentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationEfsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationFsxLustreCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationFsxOntapCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationFsxOpenZfsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationFsxWindowsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationHdfsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationNfsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationObjectStorageCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationS3Command.d.ts +1 -1
- package/dist-types/commands/DescribeLocationSmbCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTaskCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTaskExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListAgentsCommand.d.ts +1 -1
- package/dist-types/commands/ListLocationsCommand.d.ts +4 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTaskExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTasksCommand.d.ts +4 -4
- package/dist-types/commands/StartTaskExecutionCommand.d.ts +6 -6
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAgentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateLocationHdfsCommand.d.ts +5 -5
- package/dist-types/commands/UpdateLocationNfsCommand.d.ts +4 -4
- package/dist-types/commands/UpdateLocationObjectStorageCommand.d.ts +2 -2
- package/dist-types/commands/UpdateLocationSmbCommand.d.ts +3 -3
- package/dist-types/commands/UpdateTaskCommand.d.ts +5 -5
- package/dist-types/commands/UpdateTaskExecutionCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +319 -164
- package/dist-types/ts3.4/models/models_0.d.ts +208 -164
- package/package.json +34 -34
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { DataSyncServiceException as __BaseException } from "./DataSyncServiceException";
|
|
3
|
-
export declare
|
|
4
|
-
OFFLINE
|
|
5
|
-
ONLINE
|
|
6
|
-
}
|
|
3
|
+
export declare const AgentStatus: {
|
|
4
|
+
readonly OFFLINE: "OFFLINE";
|
|
5
|
+
readonly ONLINE: "ONLINE";
|
|
6
|
+
};
|
|
7
|
+
export type AgentStatus = (typeof AgentStatus)[keyof typeof AgentStatus];
|
|
7
8
|
export interface AgentListEntry {
|
|
8
9
|
AgentArn?: string;
|
|
9
10
|
Name?: string;
|
|
10
11
|
Status?: AgentStatus | string;
|
|
11
12
|
}
|
|
12
|
-
export declare
|
|
13
|
-
BEST_EFFORT
|
|
14
|
-
NONE
|
|
15
|
-
}
|
|
13
|
+
export declare const Atime: {
|
|
14
|
+
readonly BEST_EFFORT: "BEST_EFFORT";
|
|
15
|
+
readonly NONE: "NONE";
|
|
16
|
+
};
|
|
17
|
+
export type Atime = (typeof Atime)[keyof typeof Atime];
|
|
16
18
|
export interface CancelTaskExecutionRequest {
|
|
17
19
|
TaskExecutionArn: string | undefined;
|
|
18
20
|
}
|
|
@@ -51,10 +53,12 @@ export interface Ec2Config {
|
|
|
51
53
|
SubnetArn: string | undefined;
|
|
52
54
|
SecurityGroupArns: string[] | undefined;
|
|
53
55
|
}
|
|
54
|
-
export declare
|
|
55
|
-
NONE
|
|
56
|
-
TLS1_2
|
|
57
|
-
}
|
|
56
|
+
export declare const EfsInTransitEncryption: {
|
|
57
|
+
readonly NONE: "NONE";
|
|
58
|
+
readonly TLS1_2: "TLS1_2";
|
|
59
|
+
};
|
|
60
|
+
export type EfsInTransitEncryption =
|
|
61
|
+
(typeof EfsInTransitEncryption)[keyof typeof EfsInTransitEncryption];
|
|
58
62
|
export interface CreateLocationEfsRequest {
|
|
59
63
|
Subdirectory?: string;
|
|
60
64
|
EfsFilesystemArn: string | undefined;
|
|
@@ -76,25 +80,27 @@ export interface CreateLocationFsxLustreRequest {
|
|
|
76
80
|
export interface CreateLocationFsxLustreResponse {
|
|
77
81
|
LocationArn?: string;
|
|
78
82
|
}
|
|
79
|
-
export declare
|
|
80
|
-
AUTOMATIC
|
|
81
|
-
NFS3
|
|
82
|
-
NFS4_0
|
|
83
|
-
NFS4_1
|
|
84
|
-
}
|
|
83
|
+
export declare const NfsVersion: {
|
|
84
|
+
readonly AUTOMATIC: "AUTOMATIC";
|
|
85
|
+
readonly NFS3: "NFS3";
|
|
86
|
+
readonly NFS4_0: "NFS4_0";
|
|
87
|
+
readonly NFS4_1: "NFS4_1";
|
|
88
|
+
};
|
|
89
|
+
export type NfsVersion = (typeof NfsVersion)[keyof typeof NfsVersion];
|
|
85
90
|
export interface NfsMountOptions {
|
|
86
91
|
Version?: NfsVersion | string;
|
|
87
92
|
}
|
|
88
93
|
export interface FsxProtocolNfs {
|
|
89
94
|
MountOptions?: NfsMountOptions;
|
|
90
95
|
}
|
|
91
|
-
export declare
|
|
92
|
-
AUTOMATIC
|
|
93
|
-
SMB1
|
|
94
|
-
SMB2
|
|
95
|
-
SMB2_0
|
|
96
|
-
SMB3
|
|
97
|
-
}
|
|
96
|
+
export declare const SmbVersion: {
|
|
97
|
+
readonly AUTOMATIC: "AUTOMATIC";
|
|
98
|
+
readonly SMB1: "SMB1";
|
|
99
|
+
readonly SMB2: "SMB2";
|
|
100
|
+
readonly SMB2_0: "SMB2_0";
|
|
101
|
+
readonly SMB3: "SMB3";
|
|
102
|
+
};
|
|
103
|
+
export type SmbVersion = (typeof SmbVersion)[keyof typeof SmbVersion];
|
|
98
104
|
export interface SmbMountOptions {
|
|
99
105
|
Version?: SmbVersion | string;
|
|
100
106
|
}
|
|
@@ -140,26 +146,32 @@ export interface CreateLocationFsxWindowsRequest {
|
|
|
140
146
|
export interface CreateLocationFsxWindowsResponse {
|
|
141
147
|
LocationArn?: string;
|
|
142
148
|
}
|
|
143
|
-
export declare
|
|
144
|
-
KERBEROS
|
|
145
|
-
SIMPLE
|
|
146
|
-
}
|
|
149
|
+
export declare const HdfsAuthenticationType: {
|
|
150
|
+
readonly KERBEROS: "KERBEROS";
|
|
151
|
+
readonly SIMPLE: "SIMPLE";
|
|
152
|
+
};
|
|
153
|
+
export type HdfsAuthenticationType =
|
|
154
|
+
(typeof HdfsAuthenticationType)[keyof typeof HdfsAuthenticationType];
|
|
147
155
|
export interface HdfsNameNode {
|
|
148
156
|
Hostname: string | undefined;
|
|
149
157
|
Port: number | undefined;
|
|
150
158
|
}
|
|
151
|
-
export declare
|
|
152
|
-
AUTHENTICATION
|
|
153
|
-
DISABLED
|
|
154
|
-
INTEGRITY
|
|
155
|
-
PRIVACY
|
|
156
|
-
}
|
|
157
|
-
export
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
159
|
+
export declare const HdfsDataTransferProtection: {
|
|
160
|
+
readonly AUTHENTICATION: "AUTHENTICATION";
|
|
161
|
+
readonly DISABLED: "DISABLED";
|
|
162
|
+
readonly INTEGRITY: "INTEGRITY";
|
|
163
|
+
readonly PRIVACY: "PRIVACY";
|
|
164
|
+
};
|
|
165
|
+
export type HdfsDataTransferProtection =
|
|
166
|
+
(typeof HdfsDataTransferProtection)[keyof typeof HdfsDataTransferProtection];
|
|
167
|
+
export declare const HdfsRpcProtection: {
|
|
168
|
+
readonly AUTHENTICATION: "AUTHENTICATION";
|
|
169
|
+
readonly DISABLED: "DISABLED";
|
|
170
|
+
readonly INTEGRITY: "INTEGRITY";
|
|
171
|
+
readonly PRIVACY: "PRIVACY";
|
|
172
|
+
};
|
|
173
|
+
export type HdfsRpcProtection =
|
|
174
|
+
(typeof HdfsRpcProtection)[keyof typeof HdfsRpcProtection];
|
|
163
175
|
export interface QopConfiguration {
|
|
164
176
|
RpcProtection?: HdfsRpcProtection | string;
|
|
165
177
|
DataTransferProtection?: HdfsDataTransferProtection | string;
|
|
@@ -195,10 +207,12 @@ export interface CreateLocationNfsRequest {
|
|
|
195
207
|
export interface CreateLocationNfsResponse {
|
|
196
208
|
LocationArn?: string;
|
|
197
209
|
}
|
|
198
|
-
export declare
|
|
199
|
-
HTTP
|
|
200
|
-
HTTPS
|
|
201
|
-
}
|
|
210
|
+
export declare const ObjectStorageServerProtocol: {
|
|
211
|
+
readonly HTTP: "HTTP";
|
|
212
|
+
readonly HTTPS: "HTTPS";
|
|
213
|
+
};
|
|
214
|
+
export type ObjectStorageServerProtocol =
|
|
215
|
+
(typeof ObjectStorageServerProtocol)[keyof typeof ObjectStorageServerProtocol];
|
|
202
216
|
export interface CreateLocationObjectStorageRequest {
|
|
203
217
|
ServerHostname: string | undefined;
|
|
204
218
|
ServerPort?: number;
|
|
@@ -217,16 +231,18 @@ export interface CreateLocationObjectStorageResponse {
|
|
|
217
231
|
export interface S3Config {
|
|
218
232
|
BucketAccessRoleArn: string | undefined;
|
|
219
233
|
}
|
|
220
|
-
export declare
|
|
221
|
-
DEEP_ARCHIVE
|
|
222
|
-
GLACIER
|
|
223
|
-
GLACIER_INSTANT_RETRIEVAL
|
|
224
|
-
INTELLIGENT_TIERING
|
|
225
|
-
ONEZONE_IA
|
|
226
|
-
OUTPOSTS
|
|
227
|
-
STANDARD
|
|
228
|
-
STANDARD_IA
|
|
229
|
-
}
|
|
234
|
+
export declare const S3StorageClass: {
|
|
235
|
+
readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
|
|
236
|
+
readonly GLACIER: "GLACIER";
|
|
237
|
+
readonly GLACIER_INSTANT_RETRIEVAL: "GLACIER_INSTANT_RETRIEVAL";
|
|
238
|
+
readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
|
|
239
|
+
readonly ONEZONE_IA: "ONEZONE_IA";
|
|
240
|
+
readonly OUTPOSTS: "OUTPOSTS";
|
|
241
|
+
readonly STANDARD: "STANDARD";
|
|
242
|
+
readonly STANDARD_IA: "STANDARD_IA";
|
|
243
|
+
};
|
|
244
|
+
export type S3StorageClass =
|
|
245
|
+
(typeof S3StorageClass)[keyof typeof S3StorageClass];
|
|
230
246
|
export interface CreateLocationS3Request {
|
|
231
247
|
Subdirectory?: string;
|
|
232
248
|
S3BucketArn: string | undefined;
|
|
@@ -251,72 +267,90 @@ export interface CreateLocationSmbRequest {
|
|
|
251
267
|
export interface CreateLocationSmbResponse {
|
|
252
268
|
LocationArn?: string;
|
|
253
269
|
}
|
|
254
|
-
export declare
|
|
255
|
-
SIMPLE_PATTERN
|
|
256
|
-
}
|
|
270
|
+
export declare const FilterType: {
|
|
271
|
+
readonly SIMPLE_PATTERN: "SIMPLE_PATTERN";
|
|
272
|
+
};
|
|
273
|
+
export type FilterType = (typeof FilterType)[keyof typeof FilterType];
|
|
257
274
|
export interface FilterRule {
|
|
258
275
|
FilterType?: FilterType | string;
|
|
259
276
|
Value?: string;
|
|
260
277
|
}
|
|
261
|
-
export declare
|
|
262
|
-
BOTH
|
|
263
|
-
INT_VALUE
|
|
264
|
-
NAME
|
|
265
|
-
NONE
|
|
266
|
-
}
|
|
267
|
-
export
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
export declare
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
}
|
|
288
|
-
export
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
export declare
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
}
|
|
305
|
-
export
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
278
|
+
export declare const Gid: {
|
|
279
|
+
readonly BOTH: "BOTH";
|
|
280
|
+
readonly INT_VALUE: "INT_VALUE";
|
|
281
|
+
readonly NAME: "NAME";
|
|
282
|
+
readonly NONE: "NONE";
|
|
283
|
+
};
|
|
284
|
+
export type Gid = (typeof Gid)[keyof typeof Gid];
|
|
285
|
+
export declare const LogLevel: {
|
|
286
|
+
readonly BASIC: "BASIC";
|
|
287
|
+
readonly OFF: "OFF";
|
|
288
|
+
readonly TRANSFER: "TRANSFER";
|
|
289
|
+
};
|
|
290
|
+
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
291
|
+
export declare const Mtime: {
|
|
292
|
+
readonly NONE: "NONE";
|
|
293
|
+
readonly PRESERVE: "PRESERVE";
|
|
294
|
+
};
|
|
295
|
+
export type Mtime = (typeof Mtime)[keyof typeof Mtime];
|
|
296
|
+
export declare const ObjectTags: {
|
|
297
|
+
readonly NONE: "NONE";
|
|
298
|
+
readonly PRESERVE: "PRESERVE";
|
|
299
|
+
};
|
|
300
|
+
export type ObjectTags = (typeof ObjectTags)[keyof typeof ObjectTags];
|
|
301
|
+
export declare const OverwriteMode: {
|
|
302
|
+
readonly ALWAYS: "ALWAYS";
|
|
303
|
+
readonly NEVER: "NEVER";
|
|
304
|
+
};
|
|
305
|
+
export type OverwriteMode = (typeof OverwriteMode)[keyof typeof OverwriteMode];
|
|
306
|
+
export declare const PosixPermissions: {
|
|
307
|
+
readonly NONE: "NONE";
|
|
308
|
+
readonly PRESERVE: "PRESERVE";
|
|
309
|
+
};
|
|
310
|
+
export type PosixPermissions =
|
|
311
|
+
(typeof PosixPermissions)[keyof typeof PosixPermissions];
|
|
312
|
+
export declare const PreserveDeletedFiles: {
|
|
313
|
+
readonly PRESERVE: "PRESERVE";
|
|
314
|
+
readonly REMOVE: "REMOVE";
|
|
315
|
+
};
|
|
316
|
+
export type PreserveDeletedFiles =
|
|
317
|
+
(typeof PreserveDeletedFiles)[keyof typeof PreserveDeletedFiles];
|
|
318
|
+
export declare const PreserveDevices: {
|
|
319
|
+
readonly NONE: "NONE";
|
|
320
|
+
readonly PRESERVE: "PRESERVE";
|
|
321
|
+
};
|
|
322
|
+
export type PreserveDevices =
|
|
323
|
+
(typeof PreserveDevices)[keyof typeof PreserveDevices];
|
|
324
|
+
export declare const SmbSecurityDescriptorCopyFlags: {
|
|
325
|
+
readonly NONE: "NONE";
|
|
326
|
+
readonly OWNER_DACL: "OWNER_DACL";
|
|
327
|
+
readonly OWNER_DACL_SACL: "OWNER_DACL_SACL";
|
|
328
|
+
};
|
|
329
|
+
export type SmbSecurityDescriptorCopyFlags =
|
|
330
|
+
(typeof SmbSecurityDescriptorCopyFlags)[keyof typeof SmbSecurityDescriptorCopyFlags];
|
|
331
|
+
export declare const TaskQueueing: {
|
|
332
|
+
readonly DISABLED: "DISABLED";
|
|
333
|
+
readonly ENABLED: "ENABLED";
|
|
334
|
+
};
|
|
335
|
+
export type TaskQueueing = (typeof TaskQueueing)[keyof typeof TaskQueueing];
|
|
336
|
+
export declare const TransferMode: {
|
|
337
|
+
readonly ALL: "ALL";
|
|
338
|
+
readonly CHANGED: "CHANGED";
|
|
339
|
+
};
|
|
340
|
+
export type TransferMode = (typeof TransferMode)[keyof typeof TransferMode];
|
|
341
|
+
export declare const Uid: {
|
|
342
|
+
readonly BOTH: "BOTH";
|
|
343
|
+
readonly INT_VALUE: "INT_VALUE";
|
|
344
|
+
readonly NAME: "NAME";
|
|
345
|
+
readonly NONE: "NONE";
|
|
346
|
+
};
|
|
347
|
+
export type Uid = (typeof Uid)[keyof typeof Uid];
|
|
348
|
+
export declare const VerifyMode: {
|
|
349
|
+
readonly NONE: "NONE";
|
|
350
|
+
readonly ONLY_FILES_TRANSFERRED: "ONLY_FILES_TRANSFERRED";
|
|
351
|
+
readonly POINT_IN_TIME_CONSISTENT: "POINT_IN_TIME_CONSISTENT";
|
|
352
|
+
};
|
|
353
|
+
export type VerifyMode = (typeof VerifyMode)[keyof typeof VerifyMode];
|
|
320
354
|
export interface Options {
|
|
321
355
|
VerifyMode?: VerifyMode | string;
|
|
322
356
|
OverwriteMode?: OverwriteMode | string;
|
|
@@ -366,11 +400,12 @@ export interface DeleteTaskResponse {}
|
|
|
366
400
|
export interface DescribeAgentRequest {
|
|
367
401
|
AgentArn: string | undefined;
|
|
368
402
|
}
|
|
369
|
-
export declare
|
|
370
|
-
FIPS
|
|
371
|
-
PRIVATE_LINK
|
|
372
|
-
PUBLIC
|
|
373
|
-
}
|
|
403
|
+
export declare const EndpointType: {
|
|
404
|
+
readonly FIPS: "FIPS";
|
|
405
|
+
readonly PRIVATE_LINK: "PRIVATE_LINK";
|
|
406
|
+
readonly PUBLIC: "PUBLIC";
|
|
407
|
+
};
|
|
408
|
+
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
|
|
374
409
|
export interface PrivateLinkConfig {
|
|
375
410
|
VpcEndpointId?: string;
|
|
376
411
|
PrivateLinkEndpoint?: string;
|
|
@@ -506,13 +541,14 @@ export interface DescribeLocationSmbResponse {
|
|
|
506
541
|
export interface DescribeTaskRequest {
|
|
507
542
|
TaskArn: string | undefined;
|
|
508
543
|
}
|
|
509
|
-
export declare
|
|
510
|
-
AVAILABLE
|
|
511
|
-
CREATING
|
|
512
|
-
QUEUED
|
|
513
|
-
RUNNING
|
|
514
|
-
UNAVAILABLE
|
|
515
|
-
}
|
|
544
|
+
export declare const TaskStatus: {
|
|
545
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
546
|
+
readonly CREATING: "CREATING";
|
|
547
|
+
readonly QUEUED: "QUEUED";
|
|
548
|
+
readonly RUNNING: "RUNNING";
|
|
549
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
550
|
+
};
|
|
551
|
+
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
516
552
|
export interface DescribeTaskResponse {
|
|
517
553
|
TaskArn?: string;
|
|
518
554
|
Status?: TaskStatus | string;
|
|
@@ -534,11 +570,12 @@ export interface DescribeTaskResponse {
|
|
|
534
570
|
export interface DescribeTaskExecutionRequest {
|
|
535
571
|
TaskExecutionArn: string | undefined;
|
|
536
572
|
}
|
|
537
|
-
export declare
|
|
538
|
-
ERROR
|
|
539
|
-
PENDING
|
|
540
|
-
SUCCESS
|
|
541
|
-
}
|
|
573
|
+
export declare const PhaseStatus: {
|
|
574
|
+
readonly ERROR: "ERROR";
|
|
575
|
+
readonly PENDING: "PENDING";
|
|
576
|
+
readonly SUCCESS: "SUCCESS";
|
|
577
|
+
};
|
|
578
|
+
export type PhaseStatus = (typeof PhaseStatus)[keyof typeof PhaseStatus];
|
|
542
579
|
export interface TaskExecutionResultDetail {
|
|
543
580
|
PrepareDuration?: number;
|
|
544
581
|
PrepareStatus?: PhaseStatus | string;
|
|
@@ -550,15 +587,17 @@ export interface TaskExecutionResultDetail {
|
|
|
550
587
|
ErrorCode?: string;
|
|
551
588
|
ErrorDetail?: string;
|
|
552
589
|
}
|
|
553
|
-
export declare
|
|
554
|
-
ERROR
|
|
555
|
-
LAUNCHING
|
|
556
|
-
PREPARING
|
|
557
|
-
QUEUED
|
|
558
|
-
SUCCESS
|
|
559
|
-
TRANSFERRING
|
|
560
|
-
VERIFYING
|
|
561
|
-
}
|
|
590
|
+
export declare const TaskExecutionStatus: {
|
|
591
|
+
readonly ERROR: "ERROR";
|
|
592
|
+
readonly LAUNCHING: "LAUNCHING";
|
|
593
|
+
readonly PREPARING: "PREPARING";
|
|
594
|
+
readonly QUEUED: "QUEUED";
|
|
595
|
+
readonly SUCCESS: "SUCCESS";
|
|
596
|
+
readonly TRANSFERRING: "TRANSFERRING";
|
|
597
|
+
readonly VERIFYING: "VERIFYING";
|
|
598
|
+
};
|
|
599
|
+
export type TaskExecutionStatus =
|
|
600
|
+
(typeof TaskExecutionStatus)[keyof typeof TaskExecutionStatus];
|
|
562
601
|
export interface DescribeTaskExecutionResponse {
|
|
563
602
|
TaskExecutionArn?: string;
|
|
564
603
|
Status?: TaskExecutionStatus | string;
|
|
@@ -582,23 +621,26 @@ export interface ListAgentsResponse {
|
|
|
582
621
|
Agents?: AgentListEntry[];
|
|
583
622
|
NextToken?: string;
|
|
584
623
|
}
|
|
585
|
-
export declare
|
|
586
|
-
CreationTime
|
|
587
|
-
LocationType
|
|
588
|
-
LocationUri
|
|
589
|
-
}
|
|
590
|
-
export
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
624
|
+
export declare const LocationFilterName: {
|
|
625
|
+
readonly CreationTime: "CreationTime";
|
|
626
|
+
readonly LocationType: "LocationType";
|
|
627
|
+
readonly LocationUri: "LocationUri";
|
|
628
|
+
};
|
|
629
|
+
export type LocationFilterName =
|
|
630
|
+
(typeof LocationFilterName)[keyof typeof LocationFilterName];
|
|
631
|
+
export declare const Operator: {
|
|
632
|
+
readonly BEGINS_WITH: "BeginsWith";
|
|
633
|
+
readonly CONTAINS: "Contains";
|
|
634
|
+
readonly EQ: "Equals";
|
|
635
|
+
readonly GE: "GreaterThanOrEqual";
|
|
636
|
+
readonly GT: "GreaterThan";
|
|
637
|
+
readonly IN: "In";
|
|
638
|
+
readonly LE: "LessThanOrEqual";
|
|
639
|
+
readonly LT: "LessThan";
|
|
640
|
+
readonly NE: "NotEquals";
|
|
641
|
+
readonly NOT_CONTAINS: "NotContains";
|
|
642
|
+
};
|
|
643
|
+
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
602
644
|
export interface LocationFilter {
|
|
603
645
|
Name: LocationFilterName | string | undefined;
|
|
604
646
|
Values: string[] | undefined;
|
|
@@ -639,10 +681,12 @@ export interface ListTaskExecutionsResponse {
|
|
|
639
681
|
TaskExecutions?: TaskExecutionListEntry[];
|
|
640
682
|
NextToken?: string;
|
|
641
683
|
}
|
|
642
|
-
export declare
|
|
643
|
-
CreationTime
|
|
644
|
-
LocationId
|
|
645
|
-
}
|
|
684
|
+
export declare const TaskFilterName: {
|
|
685
|
+
readonly CreationTime: "CreationTime";
|
|
686
|
+
readonly LocationId: "LocationId";
|
|
687
|
+
};
|
|
688
|
+
export type TaskFilterName =
|
|
689
|
+
(typeof TaskFilterName)[keyof typeof TaskFilterName];
|
|
646
690
|
export interface TaskFilter {
|
|
647
691
|
Name: TaskFilterName | string | undefined;
|
|
648
692
|
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.303.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
42
|
-
"@aws-sdk/protocol-http": "3.
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
44
|
-
"@aws-sdk/types": "3.
|
|
45
|
-
"@aws-sdk/url-parser": "3.
|
|
46
|
-
"@aws-sdk/util-base64": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
-
"@aws-sdk/util-utf8": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.303.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.303.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.303.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.303.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.303.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.303.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.303.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.303.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.303.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.303.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.303.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.303.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.303.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.303.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.303.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.303.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.303.0",
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.303.0",
|
|
42
|
+
"@aws-sdk/protocol-http": "3.303.0",
|
|
43
|
+
"@aws-sdk/smithy-client": "3.303.0",
|
|
44
|
+
"@aws-sdk/types": "3.303.0",
|
|
45
|
+
"@aws-sdk/url-parser": "3.303.0",
|
|
46
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.303.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.303.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.303.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.303.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.303.0",
|
|
55
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
61
|
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|