@aws-sdk/client-drs 3.348.0 → 3.352.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/README.md +71 -7
- package/dist-cjs/Drs.js +16 -0
- package/dist-cjs/commands/AssociateSourceNetworkStackCommand.js +47 -0
- package/dist-cjs/commands/CreateSourceNetworkCommand.js +47 -0
- package/dist-cjs/commands/DeleteSourceNetworkCommand.js +46 -0
- package/dist-cjs/commands/DescribeSourceNetworksCommand.js +47 -0
- package/dist-cjs/commands/ExportSourceNetworkCfnTemplateCommand.js +46 -0
- package/dist-cjs/commands/StartSourceNetworkRecoveryCommand.js +47 -0
- package/dist-cjs/commands/StartSourceNetworkReplicationCommand.js +47 -0
- package/dist-cjs/commands/StopSourceNetworkReplicationCommand.js +47 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/models/models_0.js +197 -96
- package/dist-cjs/pagination/DescribeSourceNetworksPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +595 -2
- package/dist-es/Drs.js +16 -0
- package/dist-es/commands/AssociateSourceNetworkStackCommand.js +43 -0
- package/dist-es/commands/CreateSourceNetworkCommand.js +43 -0
- package/dist-es/commands/DeleteSourceNetworkCommand.js +42 -0
- package/dist-es/commands/DescribeSourceNetworksCommand.js +43 -0
- package/dist-es/commands/ExportSourceNetworkCfnTemplateCommand.js +42 -0
- package/dist-es/commands/StartSourceNetworkRecoveryCommand.js +43 -0
- package/dist-es/commands/StartSourceNetworkReplicationCommand.js +43 -0
- package/dist-es/commands/StopSourceNetworkReplicationCommand.js +43 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +184 -93
- package/dist-es/pagination/DescribeSourceNetworksPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +578 -1
- package/dist-types/Drs.d.ts +56 -0
- package/dist-types/DrsClient.d.ts +10 -2
- package/dist-types/commands/AssociateSourceNetworkStackCommand.d.ts +121 -0
- package/dist-types/commands/CreateExtendedSourceServerCommand.d.ts +1 -0
- package/dist-types/commands/CreateLaunchConfigurationTemplateCommand.d.ts +2 -0
- package/dist-types/commands/CreateSourceNetworkCommand.d.ts +99 -0
- package/dist-types/commands/DeleteSourceNetworkCommand.d.ts +86 -0
- package/dist-types/commands/DescribeJobLogItemsCommand.d.ts +8 -0
- package/dist-types/commands/DescribeJobsCommand.d.ts +8 -0
- package/dist-types/commands/DescribeLaunchConfigurationTemplatesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeSourceNetworksCommand.d.ts +114 -0
- package/dist-types/commands/DescribeSourceServersCommand.d.ts +1 -0
- package/dist-types/commands/DisconnectSourceServerCommand.d.ts +1 -0
- package/dist-types/commands/ExportSourceNetworkCfnTemplateCommand.d.ts +91 -0
- package/dist-types/commands/RetryDataReplicationCommand.d.ts +1 -0
- package/dist-types/commands/StartFailbackLaunchCommand.d.ts +8 -0
- package/dist-types/commands/StartRecoveryCommand.d.ts +8 -0
- package/dist-types/commands/StartReplicationCommand.d.ts +1 -0
- package/dist-types/commands/StartSourceNetworkRecoveryCommand.d.ts +126 -0
- package/dist-types/commands/StartSourceNetworkReplicationCommand.d.ts +106 -0
- package/dist-types/commands/StopReplicationCommand.d.ts +1 -0
- package/dist-types/commands/StopSourceNetworkReplicationCommand.d.ts +109 -0
- package/dist-types/commands/TerminateRecoveryInstancesCommand.d.ts +8 -0
- package/dist-types/commands/UpdateLaunchConfigurationTemplateCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +802 -325
- package/dist-types/pagination/DescribeSourceNetworksPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +72 -0
- package/dist-types/ts3.4/Drs.d.ts +136 -0
- package/dist-types/ts3.4/DrsClient.d.ts +48 -0
- package/dist-types/ts3.4/commands/AssociateSourceNetworkStackCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateSourceNetworkCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteSourceNetworkCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeSourceNetworksCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ExportSourceNetworkCfnTemplateCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartSourceNetworkRecoveryCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StartSourceNetworkReplicationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/StopSourceNetworkReplicationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +313 -116
- package/dist-types/ts3.4/pagination/DescribeSourceNetworksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +96 -0
- package/package.json +6 -6
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
HttpResponse as __HttpResponse,
|
|
4
4
|
} from "@smithy/protocol-http";
|
|
5
5
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
AssociateSourceNetworkStackCommandInput,
|
|
8
|
+
AssociateSourceNetworkStackCommandOutput,
|
|
9
|
+
} from "../commands/AssociateSourceNetworkStackCommand";
|
|
6
10
|
import {
|
|
7
11
|
CreateExtendedSourceServerCommandInput,
|
|
8
12
|
CreateExtendedSourceServerCommandOutput,
|
|
@@ -15,6 +19,10 @@ import {
|
|
|
15
19
|
CreateReplicationConfigurationTemplateCommandInput,
|
|
16
20
|
CreateReplicationConfigurationTemplateCommandOutput,
|
|
17
21
|
} from "../commands/CreateReplicationConfigurationTemplateCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateSourceNetworkCommandInput,
|
|
24
|
+
CreateSourceNetworkCommandOutput,
|
|
25
|
+
} from "../commands/CreateSourceNetworkCommand";
|
|
18
26
|
import {
|
|
19
27
|
DeleteJobCommandInput,
|
|
20
28
|
DeleteJobCommandOutput,
|
|
@@ -31,6 +39,10 @@ import {
|
|
|
31
39
|
DeleteReplicationConfigurationTemplateCommandInput,
|
|
32
40
|
DeleteReplicationConfigurationTemplateCommandOutput,
|
|
33
41
|
} from "../commands/DeleteReplicationConfigurationTemplateCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteSourceNetworkCommandInput,
|
|
44
|
+
DeleteSourceNetworkCommandOutput,
|
|
45
|
+
} from "../commands/DeleteSourceNetworkCommand";
|
|
34
46
|
import {
|
|
35
47
|
DeleteSourceServerCommandInput,
|
|
36
48
|
DeleteSourceServerCommandOutput,
|
|
@@ -59,6 +71,10 @@ import {
|
|
|
59
71
|
DescribeReplicationConfigurationTemplatesCommandInput,
|
|
60
72
|
DescribeReplicationConfigurationTemplatesCommandOutput,
|
|
61
73
|
} from "../commands/DescribeReplicationConfigurationTemplatesCommand";
|
|
74
|
+
import {
|
|
75
|
+
DescribeSourceNetworksCommandInput,
|
|
76
|
+
DescribeSourceNetworksCommandOutput,
|
|
77
|
+
} from "../commands/DescribeSourceNetworksCommand";
|
|
62
78
|
import {
|
|
63
79
|
DescribeSourceServersCommandInput,
|
|
64
80
|
DescribeSourceServersCommandOutput,
|
|
@@ -71,6 +87,10 @@ import {
|
|
|
71
87
|
DisconnectSourceServerCommandInput,
|
|
72
88
|
DisconnectSourceServerCommandOutput,
|
|
73
89
|
} from "../commands/DisconnectSourceServerCommand";
|
|
90
|
+
import {
|
|
91
|
+
ExportSourceNetworkCfnTemplateCommandInput,
|
|
92
|
+
ExportSourceNetworkCfnTemplateCommandOutput,
|
|
93
|
+
} from "../commands/ExportSourceNetworkCfnTemplateCommand";
|
|
74
94
|
import {
|
|
75
95
|
GetFailbackReplicationConfigurationCommandInput,
|
|
76
96
|
GetFailbackReplicationConfigurationCommandOutput,
|
|
@@ -119,6 +139,14 @@ import {
|
|
|
119
139
|
StartReplicationCommandInput,
|
|
120
140
|
StartReplicationCommandOutput,
|
|
121
141
|
} from "../commands/StartReplicationCommand";
|
|
142
|
+
import {
|
|
143
|
+
StartSourceNetworkRecoveryCommandInput,
|
|
144
|
+
StartSourceNetworkRecoveryCommandOutput,
|
|
145
|
+
} from "../commands/StartSourceNetworkRecoveryCommand";
|
|
146
|
+
import {
|
|
147
|
+
StartSourceNetworkReplicationCommandInput,
|
|
148
|
+
StartSourceNetworkReplicationCommandOutput,
|
|
149
|
+
} from "../commands/StartSourceNetworkReplicationCommand";
|
|
122
150
|
import {
|
|
123
151
|
StopFailbackCommandInput,
|
|
124
152
|
StopFailbackCommandOutput,
|
|
@@ -127,6 +155,10 @@ import {
|
|
|
127
155
|
StopReplicationCommandInput,
|
|
128
156
|
StopReplicationCommandOutput,
|
|
129
157
|
} from "../commands/StopReplicationCommand";
|
|
158
|
+
import {
|
|
159
|
+
StopSourceNetworkReplicationCommandInput,
|
|
160
|
+
StopSourceNetworkReplicationCommandOutput,
|
|
161
|
+
} from "../commands/StopSourceNetworkReplicationCommand";
|
|
130
162
|
import {
|
|
131
163
|
TagResourceCommandInput,
|
|
132
164
|
TagResourceCommandOutput,
|
|
@@ -159,6 +191,10 @@ import {
|
|
|
159
191
|
UpdateReplicationConfigurationTemplateCommandInput,
|
|
160
192
|
UpdateReplicationConfigurationTemplateCommandOutput,
|
|
161
193
|
} from "../commands/UpdateReplicationConfigurationTemplateCommand";
|
|
194
|
+
export declare const se_AssociateSourceNetworkStackCommand: (
|
|
195
|
+
input: AssociateSourceNetworkStackCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
162
198
|
export declare const se_CreateExtendedSourceServerCommand: (
|
|
163
199
|
input: CreateExtendedSourceServerCommandInput,
|
|
164
200
|
context: __SerdeContext
|
|
@@ -171,6 +207,10 @@ export declare const se_CreateReplicationConfigurationTemplateCommand: (
|
|
|
171
207
|
input: CreateReplicationConfigurationTemplateCommandInput,
|
|
172
208
|
context: __SerdeContext
|
|
173
209
|
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const se_CreateSourceNetworkCommand: (
|
|
211
|
+
input: CreateSourceNetworkCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
174
214
|
export declare const se_DeleteJobCommand: (
|
|
175
215
|
input: DeleteJobCommandInput,
|
|
176
216
|
context: __SerdeContext
|
|
@@ -187,6 +227,10 @@ export declare const se_DeleteReplicationConfigurationTemplateCommand: (
|
|
|
187
227
|
input: DeleteReplicationConfigurationTemplateCommandInput,
|
|
188
228
|
context: __SerdeContext
|
|
189
229
|
) => Promise<__HttpRequest>;
|
|
230
|
+
export declare const se_DeleteSourceNetworkCommand: (
|
|
231
|
+
input: DeleteSourceNetworkCommandInput,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<__HttpRequest>;
|
|
190
234
|
export declare const se_DeleteSourceServerCommand: (
|
|
191
235
|
input: DeleteSourceServerCommandInput,
|
|
192
236
|
context: __SerdeContext
|
|
@@ -215,6 +259,10 @@ export declare const se_DescribeReplicationConfigurationTemplatesCommand: (
|
|
|
215
259
|
input: DescribeReplicationConfigurationTemplatesCommandInput,
|
|
216
260
|
context: __SerdeContext
|
|
217
261
|
) => Promise<__HttpRequest>;
|
|
262
|
+
export declare const se_DescribeSourceNetworksCommand: (
|
|
263
|
+
input: DescribeSourceNetworksCommandInput,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<__HttpRequest>;
|
|
218
266
|
export declare const se_DescribeSourceServersCommand: (
|
|
219
267
|
input: DescribeSourceServersCommandInput,
|
|
220
268
|
context: __SerdeContext
|
|
@@ -227,6 +275,10 @@ export declare const se_DisconnectSourceServerCommand: (
|
|
|
227
275
|
input: DisconnectSourceServerCommandInput,
|
|
228
276
|
context: __SerdeContext
|
|
229
277
|
) => Promise<__HttpRequest>;
|
|
278
|
+
export declare const se_ExportSourceNetworkCfnTemplateCommand: (
|
|
279
|
+
input: ExportSourceNetworkCfnTemplateCommandInput,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<__HttpRequest>;
|
|
230
282
|
export declare const se_GetFailbackReplicationConfigurationCommand: (
|
|
231
283
|
input: GetFailbackReplicationConfigurationCommandInput,
|
|
232
284
|
context: __SerdeContext
|
|
@@ -275,6 +327,14 @@ export declare const se_StartReplicationCommand: (
|
|
|
275
327
|
input: StartReplicationCommandInput,
|
|
276
328
|
context: __SerdeContext
|
|
277
329
|
) => Promise<__HttpRequest>;
|
|
330
|
+
export declare const se_StartSourceNetworkRecoveryCommand: (
|
|
331
|
+
input: StartSourceNetworkRecoveryCommandInput,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<__HttpRequest>;
|
|
334
|
+
export declare const se_StartSourceNetworkReplicationCommand: (
|
|
335
|
+
input: StartSourceNetworkReplicationCommandInput,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<__HttpRequest>;
|
|
278
338
|
export declare const se_StopFailbackCommand: (
|
|
279
339
|
input: StopFailbackCommandInput,
|
|
280
340
|
context: __SerdeContext
|
|
@@ -283,6 +343,10 @@ export declare const se_StopReplicationCommand: (
|
|
|
283
343
|
input: StopReplicationCommandInput,
|
|
284
344
|
context: __SerdeContext
|
|
285
345
|
) => Promise<__HttpRequest>;
|
|
346
|
+
export declare const se_StopSourceNetworkReplicationCommand: (
|
|
347
|
+
input: StopSourceNetworkReplicationCommandInput,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<__HttpRequest>;
|
|
286
350
|
export declare const se_TagResourceCommand: (
|
|
287
351
|
input: TagResourceCommandInput,
|
|
288
352
|
context: __SerdeContext
|
|
@@ -315,6 +379,10 @@ export declare const se_UpdateReplicationConfigurationTemplateCommand: (
|
|
|
315
379
|
input: UpdateReplicationConfigurationTemplateCommandInput,
|
|
316
380
|
context: __SerdeContext
|
|
317
381
|
) => Promise<__HttpRequest>;
|
|
382
|
+
export declare const de_AssociateSourceNetworkStackCommand: (
|
|
383
|
+
output: __HttpResponse,
|
|
384
|
+
context: __SerdeContext
|
|
385
|
+
) => Promise<AssociateSourceNetworkStackCommandOutput>;
|
|
318
386
|
export declare const de_CreateExtendedSourceServerCommand: (
|
|
319
387
|
output: __HttpResponse,
|
|
320
388
|
context: __SerdeContext
|
|
@@ -327,6 +395,10 @@ export declare const de_CreateReplicationConfigurationTemplateCommand: (
|
|
|
327
395
|
output: __HttpResponse,
|
|
328
396
|
context: __SerdeContext
|
|
329
397
|
) => Promise<CreateReplicationConfigurationTemplateCommandOutput>;
|
|
398
|
+
export declare const de_CreateSourceNetworkCommand: (
|
|
399
|
+
output: __HttpResponse,
|
|
400
|
+
context: __SerdeContext
|
|
401
|
+
) => Promise<CreateSourceNetworkCommandOutput>;
|
|
330
402
|
export declare const de_DeleteJobCommand: (
|
|
331
403
|
output: __HttpResponse,
|
|
332
404
|
context: __SerdeContext
|
|
@@ -343,6 +415,10 @@ export declare const de_DeleteReplicationConfigurationTemplateCommand: (
|
|
|
343
415
|
output: __HttpResponse,
|
|
344
416
|
context: __SerdeContext
|
|
345
417
|
) => Promise<DeleteReplicationConfigurationTemplateCommandOutput>;
|
|
418
|
+
export declare const de_DeleteSourceNetworkCommand: (
|
|
419
|
+
output: __HttpResponse,
|
|
420
|
+
context: __SerdeContext
|
|
421
|
+
) => Promise<DeleteSourceNetworkCommandOutput>;
|
|
346
422
|
export declare const de_DeleteSourceServerCommand: (
|
|
347
423
|
output: __HttpResponse,
|
|
348
424
|
context: __SerdeContext
|
|
@@ -371,6 +447,10 @@ export declare const de_DescribeReplicationConfigurationTemplatesCommand: (
|
|
|
371
447
|
output: __HttpResponse,
|
|
372
448
|
context: __SerdeContext
|
|
373
449
|
) => Promise<DescribeReplicationConfigurationTemplatesCommandOutput>;
|
|
450
|
+
export declare const de_DescribeSourceNetworksCommand: (
|
|
451
|
+
output: __HttpResponse,
|
|
452
|
+
context: __SerdeContext
|
|
453
|
+
) => Promise<DescribeSourceNetworksCommandOutput>;
|
|
374
454
|
export declare const de_DescribeSourceServersCommand: (
|
|
375
455
|
output: __HttpResponse,
|
|
376
456
|
context: __SerdeContext
|
|
@@ -383,6 +463,10 @@ export declare const de_DisconnectSourceServerCommand: (
|
|
|
383
463
|
output: __HttpResponse,
|
|
384
464
|
context: __SerdeContext
|
|
385
465
|
) => Promise<DisconnectSourceServerCommandOutput>;
|
|
466
|
+
export declare const de_ExportSourceNetworkCfnTemplateCommand: (
|
|
467
|
+
output: __HttpResponse,
|
|
468
|
+
context: __SerdeContext
|
|
469
|
+
) => Promise<ExportSourceNetworkCfnTemplateCommandOutput>;
|
|
386
470
|
export declare const de_GetFailbackReplicationConfigurationCommand: (
|
|
387
471
|
output: __HttpResponse,
|
|
388
472
|
context: __SerdeContext
|
|
@@ -431,6 +515,14 @@ export declare const de_StartReplicationCommand: (
|
|
|
431
515
|
output: __HttpResponse,
|
|
432
516
|
context: __SerdeContext
|
|
433
517
|
) => Promise<StartReplicationCommandOutput>;
|
|
518
|
+
export declare const de_StartSourceNetworkRecoveryCommand: (
|
|
519
|
+
output: __HttpResponse,
|
|
520
|
+
context: __SerdeContext
|
|
521
|
+
) => Promise<StartSourceNetworkRecoveryCommandOutput>;
|
|
522
|
+
export declare const de_StartSourceNetworkReplicationCommand: (
|
|
523
|
+
output: __HttpResponse,
|
|
524
|
+
context: __SerdeContext
|
|
525
|
+
) => Promise<StartSourceNetworkReplicationCommandOutput>;
|
|
434
526
|
export declare const de_StopFailbackCommand: (
|
|
435
527
|
output: __HttpResponse,
|
|
436
528
|
context: __SerdeContext
|
|
@@ -439,6 +531,10 @@ export declare const de_StopReplicationCommand: (
|
|
|
439
531
|
output: __HttpResponse,
|
|
440
532
|
context: __SerdeContext
|
|
441
533
|
) => Promise<StopReplicationCommandOutput>;
|
|
534
|
+
export declare const de_StopSourceNetworkReplicationCommand: (
|
|
535
|
+
output: __HttpResponse,
|
|
536
|
+
context: __SerdeContext
|
|
537
|
+
) => Promise<StopSourceNetworkReplicationCommandOutput>;
|
|
442
538
|
export declare const de_TagResourceCommand: (
|
|
443
539
|
output: __HttpResponse,
|
|
444
540
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-drs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Drs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.352.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.352.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.347.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.352.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.347.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.347.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.347.0",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.347.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.347.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.347.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.352.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.347.0",
|
|
41
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
+
"@aws-sdk/node-http-handler": "3.350.0",
|
|
42
42
|
"@aws-sdk/smithy-client": "3.347.0",
|
|
43
43
|
"@aws-sdk/types": "3.347.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.347.0",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.347.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-node": "3.347.0",
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.352.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.347.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-browser": "3.347.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-node": "3.347.0",
|