@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.
Files changed (49) hide show
  1. package/dist-cjs/models/models_0.js +164 -195
  2. package/dist-es/models/models_0.js +164 -195
  3. package/dist-types/commands/CancelTaskExecutionCommand.d.ts +1 -1
  4. package/dist-types/commands/CreateAgentCommand.d.ts +5 -5
  5. package/dist-types/commands/CreateLocationEfsCommand.d.ts +5 -5
  6. package/dist-types/commands/CreateLocationFsxLustreCommand.d.ts +4 -4
  7. package/dist-types/commands/CreateLocationFsxOntapCommand.d.ts +9 -9
  8. package/dist-types/commands/CreateLocationFsxOpenZfsCommand.d.ts +9 -9
  9. package/dist-types/commands/CreateLocationFsxWindowsCommand.d.ts +4 -4
  10. package/dist-types/commands/CreateLocationHdfsCommand.d.ts +7 -7
  11. package/dist-types/commands/CreateLocationNfsCommand.d.ts +6 -6
  12. package/dist-types/commands/CreateLocationObjectStorageCommand.d.ts +4 -4
  13. package/dist-types/commands/CreateLocationS3Command.d.ts +5 -5
  14. package/dist-types/commands/CreateLocationSmbCommand.d.ts +5 -5
  15. package/dist-types/commands/CreateTaskCommand.d.ts +7 -7
  16. package/dist-types/commands/DeleteAgentCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteLocationCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteTaskCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeAgentCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeLocationEfsCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeLocationFsxLustreCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeLocationFsxOntapCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeLocationFsxOpenZfsCommand.d.ts +1 -1
  24. package/dist-types/commands/DescribeLocationFsxWindowsCommand.d.ts +1 -1
  25. package/dist-types/commands/DescribeLocationHdfsCommand.d.ts +1 -1
  26. package/dist-types/commands/DescribeLocationNfsCommand.d.ts +1 -1
  27. package/dist-types/commands/DescribeLocationObjectStorageCommand.d.ts +1 -1
  28. package/dist-types/commands/DescribeLocationS3Command.d.ts +1 -1
  29. package/dist-types/commands/DescribeLocationSmbCommand.d.ts +1 -1
  30. package/dist-types/commands/DescribeTaskCommand.d.ts +1 -1
  31. package/dist-types/commands/DescribeTaskExecutionCommand.d.ts +1 -1
  32. package/dist-types/commands/ListAgentsCommand.d.ts +1 -1
  33. package/dist-types/commands/ListLocationsCommand.d.ts +4 -4
  34. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  35. package/dist-types/commands/ListTaskExecutionsCommand.d.ts +1 -1
  36. package/dist-types/commands/ListTasksCommand.d.ts +4 -4
  37. package/dist-types/commands/StartTaskExecutionCommand.d.ts +6 -6
  38. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  39. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  40. package/dist-types/commands/UpdateAgentCommand.d.ts +1 -1
  41. package/dist-types/commands/UpdateLocationHdfsCommand.d.ts +5 -5
  42. package/dist-types/commands/UpdateLocationNfsCommand.d.ts +4 -4
  43. package/dist-types/commands/UpdateLocationObjectStorageCommand.d.ts +2 -2
  44. package/dist-types/commands/UpdateLocationSmbCommand.d.ts +3 -3
  45. package/dist-types/commands/UpdateTaskCommand.d.ts +5 -5
  46. package/dist-types/commands/UpdateTaskExecutionCommand.d.ts +2 -2
  47. package/dist-types/models/models_0.d.ts +319 -164
  48. package/dist-types/ts3.4/models/models_0.d.ts +208 -164
  49. 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 enum AgentStatus {
4
- OFFLINE = "OFFLINE",
5
- ONLINE = "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 enum Atime {
13
- BEST_EFFORT = "BEST_EFFORT",
14
- NONE = "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 enum EfsInTransitEncryption {
55
- NONE = "NONE",
56
- TLS1_2 = "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 enum NfsVersion {
80
- AUTOMATIC = "AUTOMATIC",
81
- NFS3 = "NFS3",
82
- NFS4_0 = "NFS4_0",
83
- NFS4_1 = "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 enum SmbVersion {
92
- AUTOMATIC = "AUTOMATIC",
93
- SMB1 = "SMB1",
94
- SMB2 = "SMB2",
95
- SMB2_0 = "SMB2_0",
96
- SMB3 = "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 enum HdfsAuthenticationType {
144
- KERBEROS = "KERBEROS",
145
- SIMPLE = "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 enum HdfsDataTransferProtection {
152
- AUTHENTICATION = "AUTHENTICATION",
153
- DISABLED = "DISABLED",
154
- INTEGRITY = "INTEGRITY",
155
- PRIVACY = "PRIVACY",
156
- }
157
- export declare enum HdfsRpcProtection {
158
- AUTHENTICATION = "AUTHENTICATION",
159
- DISABLED = "DISABLED",
160
- INTEGRITY = "INTEGRITY",
161
- PRIVACY = "PRIVACY",
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 enum ObjectStorageServerProtocol {
199
- HTTP = "HTTP",
200
- HTTPS = "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 enum S3StorageClass {
221
- DEEP_ARCHIVE = "DEEP_ARCHIVE",
222
- GLACIER = "GLACIER",
223
- GLACIER_INSTANT_RETRIEVAL = "GLACIER_INSTANT_RETRIEVAL",
224
- INTELLIGENT_TIERING = "INTELLIGENT_TIERING",
225
- ONEZONE_IA = "ONEZONE_IA",
226
- OUTPOSTS = "OUTPOSTS",
227
- STANDARD = "STANDARD",
228
- STANDARD_IA = "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 enum FilterType {
255
- SIMPLE_PATTERN = "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 enum Gid {
262
- BOTH = "BOTH",
263
- INT_VALUE = "INT_VALUE",
264
- NAME = "NAME",
265
- NONE = "NONE",
266
- }
267
- export declare enum LogLevel {
268
- BASIC = "BASIC",
269
- OFF = "OFF",
270
- TRANSFER = "TRANSFER",
271
- }
272
- export declare enum Mtime {
273
- NONE = "NONE",
274
- PRESERVE = "PRESERVE",
275
- }
276
- export declare enum ObjectTags {
277
- NONE = "NONE",
278
- PRESERVE = "PRESERVE",
279
- }
280
- export declare enum OverwriteMode {
281
- ALWAYS = "ALWAYS",
282
- NEVER = "NEVER",
283
- }
284
- export declare enum PosixPermissions {
285
- NONE = "NONE",
286
- PRESERVE = "PRESERVE",
287
- }
288
- export declare enum PreserveDeletedFiles {
289
- PRESERVE = "PRESERVE",
290
- REMOVE = "REMOVE",
291
- }
292
- export declare enum PreserveDevices {
293
- NONE = "NONE",
294
- PRESERVE = "PRESERVE",
295
- }
296
- export declare enum SmbSecurityDescriptorCopyFlags {
297
- NONE = "NONE",
298
- OWNER_DACL = "OWNER_DACL",
299
- OWNER_DACL_SACL = "OWNER_DACL_SACL",
300
- }
301
- export declare enum TaskQueueing {
302
- DISABLED = "DISABLED",
303
- ENABLED = "ENABLED",
304
- }
305
- export declare enum TransferMode {
306
- ALL = "ALL",
307
- CHANGED = "CHANGED",
308
- }
309
- export declare enum Uid {
310
- BOTH = "BOTH",
311
- INT_VALUE = "INT_VALUE",
312
- NAME = "NAME",
313
- NONE = "NONE",
314
- }
315
- export declare enum VerifyMode {
316
- NONE = "NONE",
317
- ONLY_FILES_TRANSFERRED = "ONLY_FILES_TRANSFERRED",
318
- POINT_IN_TIME_CONSISTENT = "POINT_IN_TIME_CONSISTENT",
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 enum EndpointType {
370
- FIPS = "FIPS",
371
- PRIVATE_LINK = "PRIVATE_LINK",
372
- PUBLIC = "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 enum TaskStatus {
510
- AVAILABLE = "AVAILABLE",
511
- CREATING = "CREATING",
512
- QUEUED = "QUEUED",
513
- RUNNING = "RUNNING",
514
- UNAVAILABLE = "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 enum PhaseStatus {
538
- ERROR = "ERROR",
539
- PENDING = "PENDING",
540
- SUCCESS = "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 enum TaskExecutionStatus {
554
- ERROR = "ERROR",
555
- LAUNCHING = "LAUNCHING",
556
- PREPARING = "PREPARING",
557
- QUEUED = "QUEUED",
558
- SUCCESS = "SUCCESS",
559
- TRANSFERRING = "TRANSFERRING",
560
- VERIFYING = "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 enum LocationFilterName {
586
- CreationTime = "CreationTime",
587
- LocationType = "LocationType",
588
- LocationUri = "LocationUri",
589
- }
590
- export declare enum Operator {
591
- BEGINS_WITH = "BeginsWith",
592
- CONTAINS = "Contains",
593
- EQ = "Equals",
594
- GE = "GreaterThanOrEqual",
595
- GT = "GreaterThan",
596
- IN = "In",
597
- LE = "LessThanOrEqual",
598
- LT = "LessThan",
599
- NE = "NotEquals",
600
- NOT_CONTAINS = "NotContains",
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 enum TaskFilterName {
643
- CreationTime = "CreationTime",
644
- LocationId = "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.300.0",
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.300.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
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.295.0",
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",