@aws-sdk/client-data-pipeline 3.299.0 → 3.300.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/ActivatePipelineCommand.d.ts +10 -0
- package/dist-types/commands/AddTagsCommand.d.ts +9 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +11 -0
- package/dist-types/commands/DeactivatePipelineCommand.d.ts +4 -0
- package/dist-types/commands/DeletePipelineCommand.d.ts +3 -0
- package/dist-types/commands/DescribeObjectsCommand.d.ts +8 -0
- package/dist-types/commands/DescribePipelinesCommand.d.ts +5 -0
- package/dist-types/commands/EvaluateExpressionCommand.d.ts +5 -0
- package/dist-types/commands/GetPipelineDefinitionCommand.d.ts +4 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +3 -0
- package/dist-types/commands/PollForTaskCommand.d.ts +8 -0
- package/dist-types/commands/PutPipelineDefinitionCommand.d.ts +33 -0
- package/dist-types/commands/QueryObjectsCommand.d.ts +19 -0
- package/dist-types/commands/RemoveTagsCommand.d.ts +6 -0
- package/dist-types/commands/ReportTaskProgressCommand.d.ts +10 -0
- package/dist-types/commands/ReportTaskRunnerHeartbeatCommand.d.ts +5 -0
- package/dist-types/commands/SetStatusCommand.d.ts +7 -0
- package/dist-types/commands/SetTaskStatusCommand.d.ts +7 -0
- package/dist-types/commands/ValidatePipelineDefinitionCommand.d.ts +33 -0
- package/package.json +8 -8
|
@@ -56,6 +56,16 @@ export interface ActivatePipelineCommandOutput extends ActivatePipelineOutput, _
|
|
|
56
56
|
* import { DataPipelineClient, ActivatePipelineCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
57
57
|
* // const { DataPipelineClient, ActivatePipelineCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
58
58
|
* const client = new DataPipelineClient(config);
|
|
59
|
+
* const input = {
|
|
60
|
+
* pipelineId: "STRING_VALUE", // required
|
|
61
|
+
* parameterValues: [
|
|
62
|
+
* {
|
|
63
|
+
* id: "STRING_VALUE", // required
|
|
64
|
+
* stringValue: "STRING_VALUE", // required
|
|
65
|
+
* },
|
|
66
|
+
* ],
|
|
67
|
+
* startTimestamp: new Date("TIMESTAMP"),
|
|
68
|
+
* };
|
|
59
69
|
* const command = new ActivatePipelineCommand(input);
|
|
60
70
|
* const response = await client.send(command);
|
|
61
71
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
|
26
26
|
* import { DataPipelineClient, AddTagsCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
27
27
|
* // const { DataPipelineClient, AddTagsCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
28
28
|
* const client = new DataPipelineClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* pipelineId: "STRING_VALUE", // required
|
|
31
|
+
* tags: [ // required
|
|
32
|
+
* {
|
|
33
|
+
* key: "STRING_VALUE", // required
|
|
34
|
+
* value: "STRING_VALUE", // required
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* };
|
|
29
38
|
* const command = new AddTagsCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -56,6 +56,17 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
|
|
|
56
56
|
* import { DataPipelineClient, CreatePipelineCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
57
57
|
* // const { DataPipelineClient, CreatePipelineCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
58
58
|
* const client = new DataPipelineClient(config);
|
|
59
|
+
* const input = {
|
|
60
|
+
* name: "STRING_VALUE", // required
|
|
61
|
+
* uniqueId: "STRING_VALUE", // required
|
|
62
|
+
* description: "STRING_VALUE",
|
|
63
|
+
* tags: [
|
|
64
|
+
* {
|
|
65
|
+
* key: "STRING_VALUE", // required
|
|
66
|
+
* value: "STRING_VALUE", // required
|
|
67
|
+
* },
|
|
68
|
+
* ],
|
|
69
|
+
* };
|
|
59
70
|
* const command = new CreatePipelineCommand(input);
|
|
60
71
|
* const response = await client.send(command);
|
|
61
72
|
* ```
|
|
@@ -29,6 +29,10 @@ export interface DeactivatePipelineCommandOutput extends DeactivatePipelineOutpu
|
|
|
29
29
|
* import { DataPipelineClient, DeactivatePipelineCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
30
30
|
* // const { DataPipelineClient, DeactivatePipelineCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
31
31
|
* const client = new DataPipelineClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* pipelineId: "STRING_VALUE", // required
|
|
34
|
+
* cancelActive: true || false,
|
|
35
|
+
* };
|
|
32
36
|
* const command = new DeactivatePipelineCommand(input);
|
|
33
37
|
* const response = await client.send(command);
|
|
34
38
|
* ```
|
|
@@ -57,6 +57,9 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {
|
|
|
57
57
|
* import { DataPipelineClient, DeletePipelineCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
58
58
|
* // const { DataPipelineClient, DeletePipelineCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
59
59
|
* const client = new DataPipelineClient(config);
|
|
60
|
+
* const input = {
|
|
61
|
+
* pipelineId: "STRING_VALUE", // required
|
|
62
|
+
* };
|
|
60
63
|
* const command = new DeletePipelineCommand(input);
|
|
61
64
|
* const response = await client.send(command);
|
|
62
65
|
* ```
|
|
@@ -84,6 +84,14 @@ export interface DescribeObjectsCommandOutput extends DescribeObjectsOutput, __M
|
|
|
84
84
|
* import { DataPipelineClient, DescribeObjectsCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
85
85
|
* // const { DataPipelineClient, DescribeObjectsCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
86
86
|
* const client = new DataPipelineClient(config);
|
|
87
|
+
* const input = {
|
|
88
|
+
* pipelineId: "STRING_VALUE", // required
|
|
89
|
+
* objectIds: [ // required
|
|
90
|
+
* "STRING_VALUE",
|
|
91
|
+
* ],
|
|
92
|
+
* evaluateExpressions: true || false,
|
|
93
|
+
* marker: "STRING_VALUE",
|
|
94
|
+
* };
|
|
87
95
|
* const command = new DescribeObjectsCommand(input);
|
|
88
96
|
* const response = await client.send(command);
|
|
89
97
|
* ```
|
|
@@ -87,6 +87,11 @@ export interface DescribePipelinesCommandOutput extends DescribePipelinesOutput,
|
|
|
87
87
|
* import { DataPipelineClient, DescribePipelinesCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
88
88
|
* // const { DataPipelineClient, DescribePipelinesCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
89
89
|
* const client = new DataPipelineClient(config);
|
|
90
|
+
* const input = {
|
|
91
|
+
* pipelineIds: [ // required
|
|
92
|
+
* "STRING_VALUE",
|
|
93
|
+
* ],
|
|
94
|
+
* };
|
|
90
95
|
* const command = new DescribePipelinesCommand(input);
|
|
91
96
|
* const response = await client.send(command);
|
|
92
97
|
* ```
|
|
@@ -56,6 +56,11 @@ export interface EvaluateExpressionCommandOutput extends EvaluateExpressionOutpu
|
|
|
56
56
|
* import { DataPipelineClient, EvaluateExpressionCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
57
57
|
* // const { DataPipelineClient, EvaluateExpressionCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
58
58
|
* const client = new DataPipelineClient(config);
|
|
59
|
+
* const input = {
|
|
60
|
+
* pipelineId: "STRING_VALUE", // required
|
|
61
|
+
* objectId: "STRING_VALUE", // required
|
|
62
|
+
* expression: "STRING_VALUE", // required
|
|
63
|
+
* };
|
|
59
64
|
* const command = new EvaluateExpressionCommand(input);
|
|
60
65
|
* const response = await client.send(command);
|
|
61
66
|
* ```
|
|
@@ -90,6 +90,10 @@ export interface GetPipelineDefinitionCommandOutput extends GetPipelineDefinitio
|
|
|
90
90
|
* import { DataPipelineClient, GetPipelineDefinitionCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
91
91
|
* // const { DataPipelineClient, GetPipelineDefinitionCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
92
92
|
* const client = new DataPipelineClient(config);
|
|
93
|
+
* const input = {
|
|
94
|
+
* pipelineId: "STRING_VALUE", // required
|
|
95
|
+
* version: "STRING_VALUE",
|
|
96
|
+
* };
|
|
93
97
|
* const command = new GetPipelineDefinitionCommand(input);
|
|
94
98
|
* const response = await client.send(command);
|
|
95
99
|
* ```
|
|
@@ -57,6 +57,9 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
|
|
|
57
57
|
* import { DataPipelineClient, ListPipelinesCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
58
58
|
* // const { DataPipelineClient, ListPipelinesCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
59
59
|
* const client = new DataPipelineClient(config);
|
|
60
|
+
* const input = {
|
|
61
|
+
* marker: "STRING_VALUE",
|
|
62
|
+
* };
|
|
60
63
|
* const command = new ListPipelinesCommand(input);
|
|
61
64
|
* const response = await client.send(command);
|
|
62
65
|
* ```
|
|
@@ -104,6 +104,14 @@ export interface PollForTaskCommandOutput extends PollForTaskOutput, __MetadataB
|
|
|
104
104
|
* import { DataPipelineClient, PollForTaskCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
105
105
|
* // const { DataPipelineClient, PollForTaskCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
106
106
|
* const client = new DataPipelineClient(config);
|
|
107
|
+
* const input = {
|
|
108
|
+
* workerGroup: "STRING_VALUE", // required
|
|
109
|
+
* hostname: "STRING_VALUE",
|
|
110
|
+
* instanceIdentity: {
|
|
111
|
+
* document: "STRING_VALUE",
|
|
112
|
+
* signature: "STRING_VALUE",
|
|
113
|
+
* },
|
|
114
|
+
* };
|
|
107
115
|
* const command = new PollForTaskCommand(input);
|
|
108
116
|
* const response = await client.send(command);
|
|
109
117
|
* ```
|
|
@@ -185,6 +185,39 @@ export interface PutPipelineDefinitionCommandOutput extends PutPipelineDefinitio
|
|
|
185
185
|
* import { DataPipelineClient, PutPipelineDefinitionCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
186
186
|
* // const { DataPipelineClient, PutPipelineDefinitionCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
187
187
|
* const client = new DataPipelineClient(config);
|
|
188
|
+
* const input = {
|
|
189
|
+
* pipelineId: "STRING_VALUE", // required
|
|
190
|
+
* pipelineObjects: [ // required
|
|
191
|
+
* {
|
|
192
|
+
* id: "STRING_VALUE", // required
|
|
193
|
+
* name: "STRING_VALUE", // required
|
|
194
|
+
* fields: [ // required
|
|
195
|
+
* {
|
|
196
|
+
* key: "STRING_VALUE", // required
|
|
197
|
+
* stringValue: "STRING_VALUE",
|
|
198
|
+
* refValue: "STRING_VALUE",
|
|
199
|
+
* },
|
|
200
|
+
* ],
|
|
201
|
+
* },
|
|
202
|
+
* ],
|
|
203
|
+
* parameterObjects: [
|
|
204
|
+
* {
|
|
205
|
+
* id: "STRING_VALUE", // required
|
|
206
|
+
* attributes: [ // required
|
|
207
|
+
* {
|
|
208
|
+
* key: "STRING_VALUE", // required
|
|
209
|
+
* stringValue: "STRING_VALUE", // required
|
|
210
|
+
* },
|
|
211
|
+
* ],
|
|
212
|
+
* },
|
|
213
|
+
* ],
|
|
214
|
+
* parameterValues: [
|
|
215
|
+
* {
|
|
216
|
+
* id: "STRING_VALUE", // required
|
|
217
|
+
* stringValue: "STRING_VALUE", // required
|
|
218
|
+
* },
|
|
219
|
+
* ],
|
|
220
|
+
* };
|
|
188
221
|
* const command = new PutPipelineDefinitionCommand(input);
|
|
189
222
|
* const response = await client.send(command);
|
|
190
223
|
* ```
|
|
@@ -64,6 +64,25 @@ export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __Metadat
|
|
|
64
64
|
* import { DataPipelineClient, QueryObjectsCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
65
65
|
* // const { DataPipelineClient, QueryObjectsCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
66
66
|
* const client = new DataPipelineClient(config);
|
|
67
|
+
* const input = {
|
|
68
|
+
* pipelineId: "STRING_VALUE", // required
|
|
69
|
+
* query: {
|
|
70
|
+
* selectors: [
|
|
71
|
+
* {
|
|
72
|
+
* fieldName: "STRING_VALUE",
|
|
73
|
+
* operator: {
|
|
74
|
+
* type: "STRING_VALUE",
|
|
75
|
+
* values: [
|
|
76
|
+
* "STRING_VALUE",
|
|
77
|
+
* ],
|
|
78
|
+
* },
|
|
79
|
+
* },
|
|
80
|
+
* ],
|
|
81
|
+
* },
|
|
82
|
+
* sphere: "STRING_VALUE", // required
|
|
83
|
+
* marker: "STRING_VALUE",
|
|
84
|
+
* limit: Number("int"),
|
|
85
|
+
* };
|
|
67
86
|
* const command = new QueryObjectsCommand(input);
|
|
68
87
|
* const response = await client.send(command);
|
|
69
88
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
|
|
|
26
26
|
* import { DataPipelineClient, RemoveTagsCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
27
27
|
* // const { DataPipelineClient, RemoveTagsCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
28
28
|
* const client = new DataPipelineClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* pipelineId: "STRING_VALUE", // required
|
|
31
|
+
* tagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new RemoveTagsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -63,6 +63,16 @@ export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutpu
|
|
|
63
63
|
* import { DataPipelineClient, ReportTaskProgressCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
64
64
|
* // const { DataPipelineClient, ReportTaskProgressCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
65
65
|
* const client = new DataPipelineClient(config);
|
|
66
|
+
* const input = {
|
|
67
|
+
* taskId: "STRING_VALUE", // required
|
|
68
|
+
* fields: [
|
|
69
|
+
* {
|
|
70
|
+
* key: "STRING_VALUE", // required
|
|
71
|
+
* stringValue: "STRING_VALUE",
|
|
72
|
+
* refValue: "STRING_VALUE",
|
|
73
|
+
* },
|
|
74
|
+
* ],
|
|
75
|
+
* };
|
|
66
76
|
* const command = new ReportTaskProgressCommand(input);
|
|
67
77
|
* const response = await client.send(command);
|
|
68
78
|
* ```
|
|
@@ -58,6 +58,11 @@ export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunner
|
|
|
58
58
|
* import { DataPipelineClient, ReportTaskRunnerHeartbeatCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
59
59
|
* // const { DataPipelineClient, ReportTaskRunnerHeartbeatCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
60
60
|
* const client = new DataPipelineClient(config);
|
|
61
|
+
* const input = {
|
|
62
|
+
* taskrunnerId: "STRING_VALUE", // required
|
|
63
|
+
* workerGroup: "STRING_VALUE",
|
|
64
|
+
* hostname: "STRING_VALUE",
|
|
65
|
+
* };
|
|
61
66
|
* const command = new ReportTaskRunnerHeartbeatCommand(input);
|
|
62
67
|
* const response = await client.send(command);
|
|
63
68
|
* ```
|
|
@@ -58,6 +58,13 @@ export interface SetStatusCommandOutput extends __MetadataBearer {
|
|
|
58
58
|
* import { DataPipelineClient, SetStatusCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
59
59
|
* // const { DataPipelineClient, SetStatusCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
60
60
|
* const client = new DataPipelineClient(config);
|
|
61
|
+
* const input = {
|
|
62
|
+
* pipelineId: "STRING_VALUE", // required
|
|
63
|
+
* objectIds: [ // required
|
|
64
|
+
* "STRING_VALUE",
|
|
65
|
+
* ],
|
|
66
|
+
* status: "STRING_VALUE", // required
|
|
67
|
+
* };
|
|
61
68
|
* const command = new SetStatusCommand(input);
|
|
62
69
|
* const response = await client.send(command);
|
|
63
70
|
* ```
|
|
@@ -56,6 +56,13 @@ export interface SetTaskStatusCommandOutput extends SetTaskStatusOutput, __Metad
|
|
|
56
56
|
* import { DataPipelineClient, SetTaskStatusCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
57
57
|
* // const { DataPipelineClient, SetTaskStatusCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
58
58
|
* const client = new DataPipelineClient(config);
|
|
59
|
+
* const input = {
|
|
60
|
+
* taskId: "STRING_VALUE", // required
|
|
61
|
+
* taskStatus: "STRING_VALUE", // required
|
|
62
|
+
* errorId: "STRING_VALUE",
|
|
63
|
+
* errorMessage: "STRING_VALUE",
|
|
64
|
+
* errorStackTrace: "STRING_VALUE",
|
|
65
|
+
* };
|
|
59
66
|
* const command = new SetTaskStatusCommand(input);
|
|
60
67
|
* const response = await client.send(command);
|
|
61
68
|
* ```
|
|
@@ -177,6 +177,39 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
|
|
|
177
177
|
* import { DataPipelineClient, ValidatePipelineDefinitionCommand } from "@aws-sdk/client-data-pipeline"; // ES Modules import
|
|
178
178
|
* // const { DataPipelineClient, ValidatePipelineDefinitionCommand } = require("@aws-sdk/client-data-pipeline"); // CommonJS import
|
|
179
179
|
* const client = new DataPipelineClient(config);
|
|
180
|
+
* const input = {
|
|
181
|
+
* pipelineId: "STRING_VALUE", // required
|
|
182
|
+
* pipelineObjects: [ // required
|
|
183
|
+
* {
|
|
184
|
+
* id: "STRING_VALUE", // required
|
|
185
|
+
* name: "STRING_VALUE", // required
|
|
186
|
+
* fields: [ // required
|
|
187
|
+
* {
|
|
188
|
+
* key: "STRING_VALUE", // required
|
|
189
|
+
* stringValue: "STRING_VALUE",
|
|
190
|
+
* refValue: "STRING_VALUE",
|
|
191
|
+
* },
|
|
192
|
+
* ],
|
|
193
|
+
* },
|
|
194
|
+
* ],
|
|
195
|
+
* parameterObjects: [
|
|
196
|
+
* {
|
|
197
|
+
* id: "STRING_VALUE", // required
|
|
198
|
+
* attributes: [ // required
|
|
199
|
+
* {
|
|
200
|
+
* key: "STRING_VALUE", // required
|
|
201
|
+
* stringValue: "STRING_VALUE", // required
|
|
202
|
+
* },
|
|
203
|
+
* ],
|
|
204
|
+
* },
|
|
205
|
+
* ],
|
|
206
|
+
* parameterValues: [
|
|
207
|
+
* {
|
|
208
|
+
* id: "STRING_VALUE", // required
|
|
209
|
+
* stringValue: "STRING_VALUE", // required
|
|
210
|
+
* },
|
|
211
|
+
* ],
|
|
212
|
+
* };
|
|
180
213
|
* const command = new ValidatePipelineDefinitionCommand(input);
|
|
181
214
|
* const response = await client.send(command);
|
|
182
215
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-data-pipeline",
|
|
3
3
|
"description": "AWS SDK for JavaScript Data Pipeline Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.300.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,9 +21,9 @@
|
|
|
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.
|
|
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
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|