@aws-sdk/client-datasync 3.507.0 → 3.509.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 +12 -0
- package/dist-es/models/models_0.js +6 -0
- package/dist-es/protocols/Aws_json1_1.js +2 -0
- package/dist-types/commands/CreateLocationAzureBlobCommand.d.ts +3 -1
- package/dist-types/commands/CreateLocationEfsCommand.d.ts +6 -2
- package/dist-types/commands/CreateLocationFsxLustreCommand.d.ts +5 -1
- package/dist-types/commands/CreateLocationFsxOntapCommand.d.ts +4 -2
- package/dist-types/commands/CreateLocationFsxOpenZfsCommand.d.ts +5 -1
- package/dist-types/commands/CreateLocationFsxWindowsCommand.d.ts +6 -2
- package/dist-types/commands/CreateLocationHdfsCommand.d.ts +6 -1
- package/dist-types/commands/CreateLocationNfsCommand.d.ts +6 -3
- package/dist-types/commands/CreateLocationObjectStorageCommand.d.ts +4 -3
- package/dist-types/commands/CreateLocationS3Command.d.ts +4 -3
- package/dist-types/commands/CreateLocationSmbCommand.d.ts +5 -2
- package/dist-types/commands/CreateTaskCommand.d.ts +12 -0
- package/dist-types/commands/DeleteLocationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTaskCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLocationEfsCommand.d.ts +1 -2
- 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 -2
- package/dist-types/commands/DescribeLocationHdfsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeLocationObjectStorageCommand.d.ts +2 -2
- package/dist-types/commands/DescribeLocationS3Command.d.ts +2 -1
- package/dist-types/commands/DescribeLocationSmbCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTaskCommand.d.ts +12 -0
- package/dist-types/commands/DescribeTaskExecutionCommand.d.ts +13 -1
- package/dist-types/commands/ListTaskExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/StartTaskExecutionCommand.d.ts +17 -5
- package/dist-types/commands/UpdateTaskCommand.d.ts +13 -1
- package/dist-types/models/models_0.d.ts +484 -276
- package/dist-types/ts3.4/models/models_0.d.ts +31 -2
- package/package.json +2 -2
|
@@ -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
|
-
|
|
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.
|
|
4
|
+
"version": "3.509.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",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
23
|
"@aws-sdk/client-sts": "3.507.0",
|
|
24
24
|
"@aws-sdk/core": "3.496.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.509.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.502.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.502.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.502.0",
|