@aws-sdk/client-datasync 3.321.1 → 3.326.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-types/commands/AddStorageSystemCommand.d.ts +6 -0
- package/dist-types/commands/CancelTaskExecutionCommand.d.ts +4 -0
- package/dist-types/commands/CreateAgentCommand.d.ts +6 -0
- package/dist-types/commands/CreateLocationEfsCommand.d.ts +6 -0
- package/dist-types/commands/CreateLocationFsxLustreCommand.d.ts +6 -0
- package/dist-types/commands/CreateLocationFsxOntapCommand.d.ts +6 -0
- package/dist-types/commands/CreateLocationFsxOpenZfsCommand.d.ts +6 -0
- package/dist-types/commands/CreateLocationFsxWindowsCommand.d.ts +6 -0
- package/dist-types/commands/CreateLocationHdfsCommand.d.ts +6 -0
- package/dist-types/commands/CreateLocationNfsCommand.d.ts +6 -0
- package/dist-types/commands/CreateLocationObjectStorageCommand.d.ts +6 -0
- package/dist-types/commands/CreateLocationS3Command.d.ts +6 -0
- package/dist-types/commands/CreateLocationSmbCommand.d.ts +6 -0
- package/dist-types/commands/CreateTaskCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAgentCommand.d.ts +4 -0
- package/dist-types/commands/DeleteLocationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteTaskCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAgentCommand.d.ts +21 -0
- package/dist-types/commands/DescribeDiscoveryJobCommand.d.ts +11 -0
- package/dist-types/commands/DescribeLocationEfsCommand.d.ts +17 -0
- package/dist-types/commands/DescribeLocationFsxLustreCommand.d.ts +11 -0
- package/dist-types/commands/DescribeLocationFsxOntapCommand.d.ts +28 -0
- package/dist-types/commands/DescribeLocationFsxOpenZfsCommand.d.ts +26 -0
- package/dist-types/commands/DescribeLocationFsxWindowsCommand.d.ts +13 -0
- package/dist-types/commands/DescribeLocationHdfsCommand.d.ts +27 -0
- package/dist-types/commands/DescribeLocationNfsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLocationObjectStorageCommand.d.ts +15 -0
- package/dist-types/commands/DescribeLocationS3Command.d.ts +15 -0
- package/dist-types/commands/DescribeLocationSmbCommand.d.ts +16 -0
- package/dist-types/commands/DescribeStorageSystemCommand.d.ts +20 -0
- package/dist-types/commands/DescribeStorageSystemResourceMetricsCommand.d.ts +37 -0
- package/dist-types/commands/DescribeStorageSystemResourcesCommand.d.ts +119 -0
- package/dist-types/commands/DescribeTaskCommand.d.ts +53 -0
- package/dist-types/commands/DescribeTaskExecutionCommand.d.ts +54 -0
- package/dist-types/commands/GenerateRecommendationsCommand.d.ts +4 -0
- package/dist-types/commands/ListAgentsCommand.d.ts +13 -0
- package/dist-types/commands/ListDiscoveryJobsCommand.d.ts +12 -0
- package/dist-types/commands/ListLocationsCommand.d.ts +12 -0
- package/dist-types/commands/ListStorageSystemsCommand.d.ts +12 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
- package/dist-types/commands/ListTaskExecutionsCommand.d.ts +12 -0
- package/dist-types/commands/ListTasksCommand.d.ts +13 -0
- package/dist-types/commands/RemoveStorageSystemCommand.d.ts +4 -0
- package/dist-types/commands/StartDiscoveryJobCommand.d.ts +6 -0
- package/dist-types/commands/StartTaskExecutionCommand.d.ts +6 -0
- package/dist-types/commands/StopDiscoveryJobCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAgentCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDiscoveryJobCommand.d.ts +4 -0
- package/dist-types/commands/UpdateLocationHdfsCommand.d.ts +4 -0
- package/dist-types/commands/UpdateLocationNfsCommand.d.ts +4 -0
- package/dist-types/commands/UpdateLocationObjectStorageCommand.d.ts +4 -0
- package/dist-types/commands/UpdateLocationSmbCommand.d.ts +4 -0
- package/dist-types/commands/UpdateStorageSystemCommand.d.ts +4 -0
- package/dist-types/commands/UpdateTaskCommand.d.ts +4 -0
- package/dist-types/commands/UpdateTaskExecutionCommand.d.ts +4 -0
- package/package.json +16 -16
|
@@ -32,6 +32,8 @@ export interface RemoveStorageSystemCommandOutput extends RemoveStorageSystemRes
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new RemoveStorageSystemCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param RemoveStorageSystemCommandInput - {@link RemoveStorageSystemCommandInput}
|
|
@@ -47,6 +49,8 @@ export interface RemoveStorageSystemCommandOutput extends RemoveStorageSystemRes
|
|
|
47
49
|
* @throws {@link InvalidRequestException} (client fault)
|
|
48
50
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
49
51
|
*
|
|
52
|
+
* @throws {@link DataSyncServiceException}
|
|
53
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
50
54
|
*
|
|
51
55
|
*/
|
|
52
56
|
export declare class RemoveStorageSystemCommand extends $Command<RemoveStorageSystemCommandInput, RemoveStorageSystemCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -41,6 +41,10 @@ export interface StartDiscoveryJobCommandOutput extends StartDiscoveryJobRespons
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new StartDiscoveryJobCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // StartDiscoveryJobResponse
|
|
45
|
+
* // DiscoveryJobArn: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
44
48
|
* ```
|
|
45
49
|
*
|
|
46
50
|
* @param StartDiscoveryJobCommandInput - {@link StartDiscoveryJobCommandInput}
|
|
@@ -56,6 +60,8 @@ export interface StartDiscoveryJobCommandOutput extends StartDiscoveryJobRespons
|
|
|
56
60
|
* @throws {@link InvalidRequestException} (client fault)
|
|
57
61
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
58
62
|
*
|
|
63
|
+
* @throws {@link DataSyncServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
59
65
|
*
|
|
60
66
|
*/
|
|
61
67
|
export declare class StartDiscoveryJobCommand extends $Command<StartDiscoveryJobCommandInput, StartDiscoveryJobCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -74,6 +74,10 @@ export interface StartTaskExecutionCommandOutput extends StartTaskExecutionRespo
|
|
|
74
74
|
* };
|
|
75
75
|
* const command = new StartTaskExecutionCommand(input);
|
|
76
76
|
* const response = await client.send(command);
|
|
77
|
+
* // { // StartTaskExecutionResponse
|
|
78
|
+
* // TaskExecutionArn: "STRING_VALUE",
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
77
81
|
* ```
|
|
78
82
|
*
|
|
79
83
|
* @param StartTaskExecutionCommandInput - {@link StartTaskExecutionCommandInput}
|
|
@@ -89,6 +93,8 @@ export interface StartTaskExecutionCommandOutput extends StartTaskExecutionRespo
|
|
|
89
93
|
* @throws {@link InvalidRequestException} (client fault)
|
|
90
94
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
91
95
|
*
|
|
96
|
+
* @throws {@link DataSyncServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
92
98
|
*
|
|
93
99
|
*/
|
|
94
100
|
export declare class StartTaskExecutionCommand extends $Command<StartTaskExecutionCommandInput, StartTaskExecutionCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface StopDiscoveryJobCommandOutput extends StopDiscoveryJobResponse,
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new StopDiscoveryJobCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param StopDiscoveryJobCommandInput - {@link StopDiscoveryJobCommandInput}
|
|
@@ -49,6 +51,8 @@ export interface StopDiscoveryJobCommandOutput extends StopDiscoveryJobResponse,
|
|
|
49
51
|
* @throws {@link InvalidRequestException} (client fault)
|
|
50
52
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
51
53
|
*
|
|
54
|
+
* @throws {@link DataSyncServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
52
56
|
*
|
|
53
57
|
*/
|
|
54
58
|
export declare class StopDiscoveryJobCommand extends $Command<StopDiscoveryJobCommandInput, StopDiscoveryJobCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -40,6 +40,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new TagResourceCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // {};
|
|
44
|
+
*
|
|
43
45
|
* ```
|
|
44
46
|
*
|
|
45
47
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
55
57
|
* @throws {@link InvalidRequestException} (client fault)
|
|
56
58
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link DataSyncServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -49,6 +51,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
49
51
|
* @throws {@link InvalidRequestException} (client fault)
|
|
50
52
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
51
53
|
*
|
|
54
|
+
* @throws {@link DataSyncServiceException}
|
|
55
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
52
56
|
*
|
|
53
57
|
*/
|
|
54
58
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface UpdateAgentCommandOutput extends UpdateAgentResponse, __Metadat
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateAgentCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param UpdateAgentCommandInput - {@link UpdateAgentCommandInput}
|
|
@@ -47,6 +49,8 @@ export interface UpdateAgentCommandOutput extends UpdateAgentResponse, __Metadat
|
|
|
47
49
|
* @throws {@link InvalidRequestException} (client fault)
|
|
48
50
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
49
51
|
*
|
|
52
|
+
* @throws {@link DataSyncServiceException}
|
|
53
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
50
54
|
*
|
|
51
55
|
*/
|
|
52
56
|
export declare class UpdateAgentCommand extends $Command<UpdateAgentCommandInput, UpdateAgentCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface UpdateDiscoveryJobCommandOutput extends UpdateDiscoveryJobRespo
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateDiscoveryJobCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param UpdateDiscoveryJobCommandInput - {@link UpdateDiscoveryJobCommandInput}
|
|
@@ -47,6 +49,8 @@ export interface UpdateDiscoveryJobCommandOutput extends UpdateDiscoveryJobRespo
|
|
|
47
49
|
* @throws {@link InvalidRequestException} (client fault)
|
|
48
50
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
49
51
|
*
|
|
52
|
+
* @throws {@link DataSyncServiceException}
|
|
53
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
50
54
|
*
|
|
51
55
|
*/
|
|
52
56
|
export declare class UpdateDiscoveryJobCommand extends $Command<UpdateDiscoveryJobCommandInput, UpdateDiscoveryJobCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -54,6 +54,8 @@ export interface UpdateLocationHdfsCommandOutput extends UpdateLocationHdfsRespo
|
|
|
54
54
|
* };
|
|
55
55
|
* const command = new UpdateLocationHdfsCommand(input);
|
|
56
56
|
* const response = await client.send(command);
|
|
57
|
+
* // {};
|
|
58
|
+
*
|
|
57
59
|
* ```
|
|
58
60
|
*
|
|
59
61
|
* @param UpdateLocationHdfsCommandInput - {@link UpdateLocationHdfsCommandInput}
|
|
@@ -69,6 +71,8 @@ export interface UpdateLocationHdfsCommandOutput extends UpdateLocationHdfsRespo
|
|
|
69
71
|
* @throws {@link InvalidRequestException} (client fault)
|
|
70
72
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
71
73
|
*
|
|
74
|
+
* @throws {@link DataSyncServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
72
76
|
*
|
|
73
77
|
*/
|
|
74
78
|
export declare class UpdateLocationHdfsCommand extends $Command<UpdateLocationHdfsCommandInput, UpdateLocationHdfsCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -42,6 +42,8 @@ export interface UpdateLocationNfsCommandOutput extends UpdateLocationNfsRespons
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new UpdateLocationNfsCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // {};
|
|
46
|
+
*
|
|
45
47
|
* ```
|
|
46
48
|
*
|
|
47
49
|
* @param UpdateLocationNfsCommandInput - {@link UpdateLocationNfsCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface UpdateLocationNfsCommandOutput extends UpdateLocationNfsRespons
|
|
|
57
59
|
* @throws {@link InvalidRequestException} (client fault)
|
|
58
60
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link DataSyncServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class UpdateLocationNfsCommand extends $Command<UpdateLocationNfsCommandInput, UpdateLocationNfsCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -43,6 +43,8 @@ export interface UpdateLocationObjectStorageCommandOutput extends UpdateLocation
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new UpdateLocationObjectStorageCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // {};
|
|
47
|
+
*
|
|
46
48
|
* ```
|
|
47
49
|
*
|
|
48
50
|
* @param UpdateLocationObjectStorageCommandInput - {@link UpdateLocationObjectStorageCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface UpdateLocationObjectStorageCommandOutput extends UpdateLocation
|
|
|
58
60
|
* @throws {@link InvalidRequestException} (client fault)
|
|
59
61
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link DataSyncServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class UpdateLocationObjectStorageCommand extends $Command<UpdateLocationObjectStorageCommandInput, UpdateLocationObjectStorageCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -43,6 +43,8 @@ export interface UpdateLocationSmbCommandOutput extends UpdateLocationSmbRespons
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new UpdateLocationSmbCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // {};
|
|
47
|
+
*
|
|
46
48
|
* ```
|
|
47
49
|
*
|
|
48
50
|
* @param UpdateLocationSmbCommandInput - {@link UpdateLocationSmbCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface UpdateLocationSmbCommandOutput extends UpdateLocationSmbRespons
|
|
|
58
60
|
* @throws {@link InvalidRequestException} (client fault)
|
|
59
61
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link DataSyncServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class UpdateLocationSmbCommand extends $Command<UpdateLocationSmbCommandInput, UpdateLocationSmbCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -45,6 +45,8 @@ export interface UpdateStorageSystemCommandOutput extends UpdateStorageSystemRes
|
|
|
45
45
|
* };
|
|
46
46
|
* const command = new UpdateStorageSystemCommand(input);
|
|
47
47
|
* const response = await client.send(command);
|
|
48
|
+
* // {};
|
|
49
|
+
*
|
|
48
50
|
* ```
|
|
49
51
|
*
|
|
50
52
|
* @param UpdateStorageSystemCommandInput - {@link UpdateStorageSystemCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface UpdateStorageSystemCommandOutput extends UpdateStorageSystemRes
|
|
|
60
62
|
* @throws {@link InvalidRequestException} (client fault)
|
|
61
63
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link DataSyncServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class UpdateStorageSystemCommand extends $Command<UpdateStorageSystemCommandInput, UpdateStorageSystemCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -65,6 +65,8 @@ export interface UpdateTaskCommandOutput extends UpdateTaskResponse, __MetadataB
|
|
|
65
65
|
* };
|
|
66
66
|
* const command = new UpdateTaskCommand(input);
|
|
67
67
|
* const response = await client.send(command);
|
|
68
|
+
* // {};
|
|
69
|
+
*
|
|
68
70
|
* ```
|
|
69
71
|
*
|
|
70
72
|
* @param UpdateTaskCommandInput - {@link UpdateTaskCommandInput}
|
|
@@ -80,6 +82,8 @@ export interface UpdateTaskCommandOutput extends UpdateTaskResponse, __MetadataB
|
|
|
80
82
|
* @throws {@link InvalidRequestException} (client fault)
|
|
81
83
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
82
84
|
*
|
|
85
|
+
* @throws {@link DataSyncServiceException}
|
|
86
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
83
87
|
*
|
|
84
88
|
*/
|
|
85
89
|
export declare class UpdateTaskCommand extends $Command<UpdateTaskCommandInput, UpdateTaskCommandOutput, DataSyncClientResolvedConfig> {
|
|
@@ -55,6 +55,8 @@ export interface UpdateTaskExecutionCommandOutput extends UpdateTaskExecutionRes
|
|
|
55
55
|
* };
|
|
56
56
|
* const command = new UpdateTaskExecutionCommand(input);
|
|
57
57
|
* const response = await client.send(command);
|
|
58
|
+
* // {};
|
|
59
|
+
*
|
|
58
60
|
* ```
|
|
59
61
|
*
|
|
60
62
|
* @param UpdateTaskExecutionCommandInput - {@link UpdateTaskExecutionCommandInput}
|
|
@@ -70,6 +72,8 @@ export interface UpdateTaskExecutionCommandOutput extends UpdateTaskExecutionRes
|
|
|
70
72
|
* @throws {@link InvalidRequestException} (client fault)
|
|
71
73
|
* <p>This exception is thrown when the client submits a malformed request.</p>
|
|
72
74
|
*
|
|
75
|
+
* @throws {@link DataSyncServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from DataSync service.</p>
|
|
73
77
|
*
|
|
74
78
|
*/
|
|
75
79
|
export declare class UpdateTaskExecutionCommand extends $Command<UpdateTaskExecutionCommandInput, UpdateTaskExecutionCommandOutput, DataSyncClientResolvedConfig> {
|
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.326.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,33 +21,33 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
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.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|