@aws-sdk/client-datasync 3.507.0 → 3.511.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 (34) hide show
  1. package/dist-cjs/index.js +12 -0
  2. package/dist-es/models/models_0.js +6 -0
  3. package/dist-es/protocols/Aws_json1_1.js +2 -0
  4. package/dist-types/commands/CreateLocationAzureBlobCommand.d.ts +3 -1
  5. package/dist-types/commands/CreateLocationEfsCommand.d.ts +6 -2
  6. package/dist-types/commands/CreateLocationFsxLustreCommand.d.ts +5 -1
  7. package/dist-types/commands/CreateLocationFsxOntapCommand.d.ts +4 -2
  8. package/dist-types/commands/CreateLocationFsxOpenZfsCommand.d.ts +5 -1
  9. package/dist-types/commands/CreateLocationFsxWindowsCommand.d.ts +6 -2
  10. package/dist-types/commands/CreateLocationHdfsCommand.d.ts +6 -1
  11. package/dist-types/commands/CreateLocationNfsCommand.d.ts +6 -3
  12. package/dist-types/commands/CreateLocationObjectStorageCommand.d.ts +4 -3
  13. package/dist-types/commands/CreateLocationS3Command.d.ts +4 -3
  14. package/dist-types/commands/CreateLocationSmbCommand.d.ts +5 -2
  15. package/dist-types/commands/CreateTaskCommand.d.ts +12 -0
  16. package/dist-types/commands/DeleteLocationCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteTaskCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeLocationEfsCommand.d.ts +1 -2
  19. package/dist-types/commands/DescribeLocationFsxLustreCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeLocationFsxOntapCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeLocationFsxOpenZfsCommand.d.ts +1 -1
  22. package/dist-types/commands/DescribeLocationFsxWindowsCommand.d.ts +1 -2
  23. package/dist-types/commands/DescribeLocationHdfsCommand.d.ts +2 -2
  24. package/dist-types/commands/DescribeLocationObjectStorageCommand.d.ts +2 -2
  25. package/dist-types/commands/DescribeLocationS3Command.d.ts +2 -1
  26. package/dist-types/commands/DescribeLocationSmbCommand.d.ts +2 -1
  27. package/dist-types/commands/DescribeTaskCommand.d.ts +12 -0
  28. package/dist-types/commands/DescribeTaskExecutionCommand.d.ts +13 -1
  29. package/dist-types/commands/ListTaskExecutionsCommand.d.ts +1 -1
  30. package/dist-types/commands/StartTaskExecutionCommand.d.ts +17 -5
  31. package/dist-types/commands/UpdateTaskCommand.d.ts +13 -1
  32. package/dist-types/models/models_0.d.ts +484 -276
  33. package/dist-types/ts3.4/models/models_0.d.ts +31 -2
  34. package/package.json +14 -14
@@ -343,6 +343,30 @@ export interface FilterRule {
343
343
  FilterType?: FilterType;
344
344
  Value?: string;
345
345
  }
346
+ export declare const ManifestAction: {
347
+ readonly TRANSFER: "TRANSFER";
348
+ };
349
+ export type ManifestAction =
350
+ (typeof ManifestAction)[keyof typeof ManifestAction];
351
+ export declare const ManifestFormat: {
352
+ readonly CSV: "CSV";
353
+ };
354
+ export type ManifestFormat =
355
+ (typeof ManifestFormat)[keyof typeof ManifestFormat];
356
+ export interface S3ManifestConfig {
357
+ ManifestObjectPath: string | undefined;
358
+ BucketAccessRoleArn: string | undefined;
359
+ S3BucketArn: string | undefined;
360
+ ManifestObjectVersionId?: string;
361
+ }
362
+ export interface SourceManifestConfig {
363
+ S3: S3ManifestConfig | undefined;
364
+ }
365
+ export interface ManifestConfig {
366
+ Action?: ManifestAction;
367
+ Format?: ManifestFormat;
368
+ Source?: SourceManifestConfig;
369
+ }
346
370
  export declare const Gid: {
347
371
  readonly BOTH: "BOTH";
348
372
  readonly INT_VALUE: "INT_VALUE";
@@ -490,6 +514,7 @@ export interface CreateTaskRequest {
490
514
  Schedule?: TaskSchedule;
491
515
  Tags?: TagListEntry[];
492
516
  Includes?: FilterRule[];
517
+ ManifestConfig?: ManifestConfig;
493
518
  TaskReportConfig?: TaskReportConfig;
494
519
  }
495
520
  export interface CreateTaskResponse {
@@ -877,6 +902,7 @@ export interface DescribeTaskResponse {
877
902
  ErrorDetail?: string;
878
903
  CreationTime?: Date;
879
904
  Includes?: FilterRule[];
905
+ ManifestConfig?: ManifestConfig;
880
906
  TaskReportConfig?: TaskReportConfig;
881
907
  }
882
908
  export interface DescribeTaskExecutionRequest {
@@ -921,14 +947,15 @@ export interface DescribeTaskExecutionResponse {
921
947
  Options?: Options;
922
948
  Excludes?: FilterRule[];
923
949
  Includes?: FilterRule[];
950
+ ManifestConfig?: ManifestConfig;
924
951
  StartTime?: Date;
925
952
  EstimatedFilesToTransfer?: number;
926
953
  EstimatedBytesToTransfer?: number;
927
954
  FilesTransferred?: number;
928
955
  BytesWritten?: number;
929
956
  BytesTransferred?: number;
930
- Result?: TaskExecutionResultDetail;
931
957
  BytesCompressed?: number;
958
+ Result?: TaskExecutionResultDetail;
932
959
  TaskReportConfig?: TaskReportConfig;
933
960
  FilesDeleted?: number;
934
961
  FilesSkipped?: number;
@@ -1078,8 +1105,9 @@ export interface StartTaskExecutionRequest {
1078
1105
  OverrideOptions?: Options;
1079
1106
  Includes?: FilterRule[];
1080
1107
  Excludes?: FilterRule[];
1081
- Tags?: TagListEntry[];
1108
+ ManifestConfig?: ManifestConfig;
1082
1109
  TaskReportConfig?: TaskReportConfig;
1110
+ Tags?: TagListEntry[];
1083
1111
  }
1084
1112
  export interface StartTaskExecutionResponse {
1085
1113
  TaskExecutionArn?: string;
@@ -1179,6 +1207,7 @@ export interface UpdateTaskRequest {
1179
1207
  Name?: string;
1180
1208
  CloudWatchLogGroupArn?: string;
1181
1209
  Includes?: FilterRule[];
1210
+ ManifestConfig?: ManifestConfig;
1182
1211
  TaskReportConfig?: TaskReportConfig;
1183
1212
  }
1184
1213
  export interface UpdateTaskResponse {}
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.507.0",
4
+ "version": "3.511.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,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.507.0",
24
- "@aws-sdk/core": "3.496.0",
25
- "@aws-sdk/credential-provider-node": "3.507.0",
26
- "@aws-sdk/middleware-host-header": "3.502.0",
27
- "@aws-sdk/middleware-logger": "3.502.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.502.0",
29
- "@aws-sdk/middleware-signing": "3.502.0",
30
- "@aws-sdk/middleware-user-agent": "3.502.0",
31
- "@aws-sdk/region-config-resolver": "3.502.0",
32
- "@aws-sdk/types": "3.502.0",
33
- "@aws-sdk/util-endpoints": "3.502.0",
34
- "@aws-sdk/util-user-agent-browser": "3.502.0",
35
- "@aws-sdk/util-user-agent-node": "3.502.0",
23
+ "@aws-sdk/client-sts": "3.511.0",
24
+ "@aws-sdk/core": "3.511.0",
25
+ "@aws-sdk/credential-provider-node": "3.511.0",
26
+ "@aws-sdk/middleware-host-header": "3.511.0",
27
+ "@aws-sdk/middleware-logger": "3.511.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.511.0",
29
+ "@aws-sdk/middleware-signing": "3.511.0",
30
+ "@aws-sdk/middleware-user-agent": "3.511.0",
31
+ "@aws-sdk/region-config-resolver": "3.511.0",
32
+ "@aws-sdk/types": "3.511.0",
33
+ "@aws-sdk/util-endpoints": "3.511.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.511.0",
35
+ "@aws-sdk/util-user-agent-node": "3.511.0",
36
36
  "@smithy/config-resolver": "^2.1.1",
37
37
  "@smithy/core": "^1.3.1",
38
38
  "@smithy/fetch-http-handler": "^2.4.1",