@aws-sdk/client-elasticsearch-service 3.204.0 → 3.208.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/ElasticsearchService.js +135 -0
- package/dist-cjs/commands/AuthorizeVpcEndpointAccessCommand.js +46 -0
- package/dist-cjs/commands/CreateVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/DeleteVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/DescribeVpcEndpointsCommand.js +46 -0
- package/dist-cjs/commands/ListVpcEndpointAccessCommand.js +46 -0
- package/dist-cjs/commands/ListVpcEndpointsCommand.js +46 -0
- package/dist-cjs/commands/ListVpcEndpointsForDomainCommand.js +46 -0
- package/dist-cjs/commands/RevokeVpcEndpointAccessCommand.js +46 -0
- package/dist-cjs/commands/UpdateVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/index.js +9 -0
- package/dist-cjs/models/models_0.js +249 -4
- package/dist-cjs/protocols/Aws_restJson1.js +764 -72
- package/dist-es/ElasticsearchService.js +135 -0
- package/dist-es/commands/AuthorizeVpcEndpointAccessCommand.js +42 -0
- package/dist-es/commands/CreateVpcEndpointCommand.js +42 -0
- package/dist-es/commands/DeleteVpcEndpointCommand.js +42 -0
- package/dist-es/commands/DescribeVpcEndpointsCommand.js +42 -0
- package/dist-es/commands/ListVpcEndpointAccessCommand.js +42 -0
- package/dist-es/commands/ListVpcEndpointsCommand.js +42 -0
- package/dist-es/commands/ListVpcEndpointsForDomainCommand.js +42 -0
- package/dist-es/commands/RevokeVpcEndpointAccessCommand.js +42 -0
- package/dist-es/commands/UpdateVpcEndpointCommand.js +42 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +222 -0
- package/dist-es/protocols/Aws_restJson1.js +741 -67
- package/dist-types/ElasticsearchService.d.ts +65 -0
- package/dist-types/ElasticsearchServiceClient.d.ts +11 -2
- package/dist-types/commands/AuthorizeVpcEndpointAccessCommand.d.ts +37 -0
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +37 -0
- package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +37 -0
- package/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +37 -0
- package/dist-types/commands/ListVpcEndpointAccessCommand.d.ts +38 -0
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +37 -0
- package/dist-types/commands/ListVpcEndpointsForDomainCommand.d.ts +37 -0
- package/dist-types/commands/RevokeVpcEndpointAccessCommand.d.ts +38 -0
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +523 -12
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/ElasticsearchService.d.ts +153 -0
- package/dist-types/ts3.4/ElasticsearchServiceClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/AuthorizeVpcEndpointAccessCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeVpcEndpointsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListVpcEndpointAccessCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListVpcEndpointsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListVpcEndpointsForDomainCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/RevokeVpcEndpointAccessCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +291 -104
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
- package/package.json +35 -35
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
AssociatePackageCommandInput,
|
|
16
16
|
AssociatePackageCommandOutput,
|
|
17
17
|
} from "../commands/AssociatePackageCommand";
|
|
18
|
+
import {
|
|
19
|
+
AuthorizeVpcEndpointAccessCommandInput,
|
|
20
|
+
AuthorizeVpcEndpointAccessCommandOutput,
|
|
21
|
+
} from "../commands/AuthorizeVpcEndpointAccessCommand";
|
|
18
22
|
import {
|
|
19
23
|
CancelElasticsearchServiceSoftwareUpdateCommandInput,
|
|
20
24
|
CancelElasticsearchServiceSoftwareUpdateCommandOutput,
|
|
@@ -31,6 +35,10 @@ import {
|
|
|
31
35
|
CreatePackageCommandInput,
|
|
32
36
|
CreatePackageCommandOutput,
|
|
33
37
|
} from "../commands/CreatePackageCommand";
|
|
38
|
+
import {
|
|
39
|
+
CreateVpcEndpointCommandInput,
|
|
40
|
+
CreateVpcEndpointCommandOutput,
|
|
41
|
+
} from "../commands/CreateVpcEndpointCommand";
|
|
34
42
|
import {
|
|
35
43
|
DeleteElasticsearchDomainCommandInput,
|
|
36
44
|
DeleteElasticsearchDomainCommandOutput,
|
|
@@ -51,6 +59,10 @@ import {
|
|
|
51
59
|
DeletePackageCommandInput,
|
|
52
60
|
DeletePackageCommandOutput,
|
|
53
61
|
} from "../commands/DeletePackageCommand";
|
|
62
|
+
import {
|
|
63
|
+
DeleteVpcEndpointCommandInput,
|
|
64
|
+
DeleteVpcEndpointCommandOutput,
|
|
65
|
+
} from "../commands/DeleteVpcEndpointCommand";
|
|
54
66
|
import {
|
|
55
67
|
DescribeDomainAutoTunesCommandInput,
|
|
56
68
|
DescribeDomainAutoTunesCommandOutput,
|
|
@@ -95,6 +107,10 @@ import {
|
|
|
95
107
|
DescribeReservedElasticsearchInstancesCommandInput,
|
|
96
108
|
DescribeReservedElasticsearchInstancesCommandOutput,
|
|
97
109
|
} from "../commands/DescribeReservedElasticsearchInstancesCommand";
|
|
110
|
+
import {
|
|
111
|
+
DescribeVpcEndpointsCommandInput,
|
|
112
|
+
DescribeVpcEndpointsCommandOutput,
|
|
113
|
+
} from "../commands/DescribeVpcEndpointsCommand";
|
|
98
114
|
import {
|
|
99
115
|
DissociatePackageCommandInput,
|
|
100
116
|
DissociatePackageCommandOutput,
|
|
@@ -139,6 +155,18 @@ import {
|
|
|
139
155
|
ListTagsCommandInput,
|
|
140
156
|
ListTagsCommandOutput,
|
|
141
157
|
} from "../commands/ListTagsCommand";
|
|
158
|
+
import {
|
|
159
|
+
ListVpcEndpointAccessCommandInput,
|
|
160
|
+
ListVpcEndpointAccessCommandOutput,
|
|
161
|
+
} from "../commands/ListVpcEndpointAccessCommand";
|
|
162
|
+
import {
|
|
163
|
+
ListVpcEndpointsCommandInput,
|
|
164
|
+
ListVpcEndpointsCommandOutput,
|
|
165
|
+
} from "../commands/ListVpcEndpointsCommand";
|
|
166
|
+
import {
|
|
167
|
+
ListVpcEndpointsForDomainCommandInput,
|
|
168
|
+
ListVpcEndpointsForDomainCommandOutput,
|
|
169
|
+
} from "../commands/ListVpcEndpointsForDomainCommand";
|
|
142
170
|
import {
|
|
143
171
|
PurchaseReservedElasticsearchInstanceOfferingCommandInput,
|
|
144
172
|
PurchaseReservedElasticsearchInstanceOfferingCommandOutput,
|
|
@@ -151,6 +179,10 @@ import {
|
|
|
151
179
|
RemoveTagsCommandInput,
|
|
152
180
|
RemoveTagsCommandOutput,
|
|
153
181
|
} from "../commands/RemoveTagsCommand";
|
|
182
|
+
import {
|
|
183
|
+
RevokeVpcEndpointAccessCommandInput,
|
|
184
|
+
RevokeVpcEndpointAccessCommandOutput,
|
|
185
|
+
} from "../commands/RevokeVpcEndpointAccessCommand";
|
|
154
186
|
import {
|
|
155
187
|
StartElasticsearchServiceSoftwareUpdateCommandInput,
|
|
156
188
|
StartElasticsearchServiceSoftwareUpdateCommandOutput,
|
|
@@ -163,6 +195,10 @@ import {
|
|
|
163
195
|
UpdatePackageCommandInput,
|
|
164
196
|
UpdatePackageCommandOutput,
|
|
165
197
|
} from "../commands/UpdatePackageCommand";
|
|
198
|
+
import {
|
|
199
|
+
UpdateVpcEndpointCommandInput,
|
|
200
|
+
UpdateVpcEndpointCommandOutput,
|
|
201
|
+
} from "../commands/UpdateVpcEndpointCommand";
|
|
166
202
|
import {
|
|
167
203
|
UpgradeElasticsearchDomainCommandInput,
|
|
168
204
|
UpgradeElasticsearchDomainCommandOutput,
|
|
@@ -179,6 +215,10 @@ export declare const serializeAws_restJson1AssociatePackageCommand: (
|
|
|
179
215
|
input: AssociatePackageCommandInput,
|
|
180
216
|
context: __SerdeContext
|
|
181
217
|
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const serializeAws_restJson1AuthorizeVpcEndpointAccessCommand: (
|
|
219
|
+
input: AuthorizeVpcEndpointAccessCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
182
222
|
export declare const serializeAws_restJson1CancelElasticsearchServiceSoftwareUpdateCommand: (
|
|
183
223
|
input: CancelElasticsearchServiceSoftwareUpdateCommandInput,
|
|
184
224
|
context: __SerdeContext
|
|
@@ -195,6 +235,10 @@ export declare const serializeAws_restJson1CreatePackageCommand: (
|
|
|
195
235
|
input: CreatePackageCommandInput,
|
|
196
236
|
context: __SerdeContext
|
|
197
237
|
) => Promise<__HttpRequest>;
|
|
238
|
+
export declare const serializeAws_restJson1CreateVpcEndpointCommand: (
|
|
239
|
+
input: CreateVpcEndpointCommandInput,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<__HttpRequest>;
|
|
198
242
|
export declare const serializeAws_restJson1DeleteElasticsearchDomainCommand: (
|
|
199
243
|
input: DeleteElasticsearchDomainCommandInput,
|
|
200
244
|
context: __SerdeContext
|
|
@@ -215,6 +259,10 @@ export declare const serializeAws_restJson1DeletePackageCommand: (
|
|
|
215
259
|
input: DeletePackageCommandInput,
|
|
216
260
|
context: __SerdeContext
|
|
217
261
|
) => Promise<__HttpRequest>;
|
|
262
|
+
export declare const serializeAws_restJson1DeleteVpcEndpointCommand: (
|
|
263
|
+
input: DeleteVpcEndpointCommandInput,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<__HttpRequest>;
|
|
218
266
|
export declare const serializeAws_restJson1DescribeDomainAutoTunesCommand: (
|
|
219
267
|
input: DescribeDomainAutoTunesCommandInput,
|
|
220
268
|
context: __SerdeContext
|
|
@@ -259,6 +307,10 @@ export declare const serializeAws_restJson1DescribeReservedElasticsearchInstance
|
|
|
259
307
|
input: DescribeReservedElasticsearchInstancesCommandInput,
|
|
260
308
|
context: __SerdeContext
|
|
261
309
|
) => Promise<__HttpRequest>;
|
|
310
|
+
export declare const serializeAws_restJson1DescribeVpcEndpointsCommand: (
|
|
311
|
+
input: DescribeVpcEndpointsCommandInput,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<__HttpRequest>;
|
|
262
314
|
export declare const serializeAws_restJson1DissociatePackageCommand: (
|
|
263
315
|
input: DissociatePackageCommandInput,
|
|
264
316
|
context: __SerdeContext
|
|
@@ -303,6 +355,18 @@ export declare const serializeAws_restJson1ListTagsCommand: (
|
|
|
303
355
|
input: ListTagsCommandInput,
|
|
304
356
|
context: __SerdeContext
|
|
305
357
|
) => Promise<__HttpRequest>;
|
|
358
|
+
export declare const serializeAws_restJson1ListVpcEndpointAccessCommand: (
|
|
359
|
+
input: ListVpcEndpointAccessCommandInput,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<__HttpRequest>;
|
|
362
|
+
export declare const serializeAws_restJson1ListVpcEndpointsCommand: (
|
|
363
|
+
input: ListVpcEndpointsCommandInput,
|
|
364
|
+
context: __SerdeContext
|
|
365
|
+
) => Promise<__HttpRequest>;
|
|
366
|
+
export declare const serializeAws_restJson1ListVpcEndpointsForDomainCommand: (
|
|
367
|
+
input: ListVpcEndpointsForDomainCommandInput,
|
|
368
|
+
context: __SerdeContext
|
|
369
|
+
) => Promise<__HttpRequest>;
|
|
306
370
|
export declare const serializeAws_restJson1PurchaseReservedElasticsearchInstanceOfferingCommand: (
|
|
307
371
|
input: PurchaseReservedElasticsearchInstanceOfferingCommandInput,
|
|
308
372
|
context: __SerdeContext
|
|
@@ -315,6 +379,10 @@ export declare const serializeAws_restJson1RemoveTagsCommand: (
|
|
|
315
379
|
input: RemoveTagsCommandInput,
|
|
316
380
|
context: __SerdeContext
|
|
317
381
|
) => Promise<__HttpRequest>;
|
|
382
|
+
export declare const serializeAws_restJson1RevokeVpcEndpointAccessCommand: (
|
|
383
|
+
input: RevokeVpcEndpointAccessCommandInput,
|
|
384
|
+
context: __SerdeContext
|
|
385
|
+
) => Promise<__HttpRequest>;
|
|
318
386
|
export declare const serializeAws_restJson1StartElasticsearchServiceSoftwareUpdateCommand: (
|
|
319
387
|
input: StartElasticsearchServiceSoftwareUpdateCommandInput,
|
|
320
388
|
context: __SerdeContext
|
|
@@ -327,6 +395,10 @@ export declare const serializeAws_restJson1UpdatePackageCommand: (
|
|
|
327
395
|
input: UpdatePackageCommandInput,
|
|
328
396
|
context: __SerdeContext
|
|
329
397
|
) => Promise<__HttpRequest>;
|
|
398
|
+
export declare const serializeAws_restJson1UpdateVpcEndpointCommand: (
|
|
399
|
+
input: UpdateVpcEndpointCommandInput,
|
|
400
|
+
context: __SerdeContext
|
|
401
|
+
) => Promise<__HttpRequest>;
|
|
330
402
|
export declare const serializeAws_restJson1UpgradeElasticsearchDomainCommand: (
|
|
331
403
|
input: UpgradeElasticsearchDomainCommandInput,
|
|
332
404
|
context: __SerdeContext
|
|
@@ -343,6 +415,10 @@ export declare const deserializeAws_restJson1AssociatePackageCommand: (
|
|
|
343
415
|
output: __HttpResponse,
|
|
344
416
|
context: __SerdeContext
|
|
345
417
|
) => Promise<AssociatePackageCommandOutput>;
|
|
418
|
+
export declare const deserializeAws_restJson1AuthorizeVpcEndpointAccessCommand: (
|
|
419
|
+
output: __HttpResponse,
|
|
420
|
+
context: __SerdeContext
|
|
421
|
+
) => Promise<AuthorizeVpcEndpointAccessCommandOutput>;
|
|
346
422
|
export declare const deserializeAws_restJson1CancelElasticsearchServiceSoftwareUpdateCommand: (
|
|
347
423
|
output: __HttpResponse,
|
|
348
424
|
context: __SerdeContext
|
|
@@ -359,6 +435,10 @@ export declare const deserializeAws_restJson1CreatePackageCommand: (
|
|
|
359
435
|
output: __HttpResponse,
|
|
360
436
|
context: __SerdeContext
|
|
361
437
|
) => Promise<CreatePackageCommandOutput>;
|
|
438
|
+
export declare const deserializeAws_restJson1CreateVpcEndpointCommand: (
|
|
439
|
+
output: __HttpResponse,
|
|
440
|
+
context: __SerdeContext
|
|
441
|
+
) => Promise<CreateVpcEndpointCommandOutput>;
|
|
362
442
|
export declare const deserializeAws_restJson1DeleteElasticsearchDomainCommand: (
|
|
363
443
|
output: __HttpResponse,
|
|
364
444
|
context: __SerdeContext
|
|
@@ -379,6 +459,10 @@ export declare const deserializeAws_restJson1DeletePackageCommand: (
|
|
|
379
459
|
output: __HttpResponse,
|
|
380
460
|
context: __SerdeContext
|
|
381
461
|
) => Promise<DeletePackageCommandOutput>;
|
|
462
|
+
export declare const deserializeAws_restJson1DeleteVpcEndpointCommand: (
|
|
463
|
+
output: __HttpResponse,
|
|
464
|
+
context: __SerdeContext
|
|
465
|
+
) => Promise<DeleteVpcEndpointCommandOutput>;
|
|
382
466
|
export declare const deserializeAws_restJson1DescribeDomainAutoTunesCommand: (
|
|
383
467
|
output: __HttpResponse,
|
|
384
468
|
context: __SerdeContext
|
|
@@ -423,6 +507,10 @@ export declare const deserializeAws_restJson1DescribeReservedElasticsearchInstan
|
|
|
423
507
|
output: __HttpResponse,
|
|
424
508
|
context: __SerdeContext
|
|
425
509
|
) => Promise<DescribeReservedElasticsearchInstancesCommandOutput>;
|
|
510
|
+
export declare const deserializeAws_restJson1DescribeVpcEndpointsCommand: (
|
|
511
|
+
output: __HttpResponse,
|
|
512
|
+
context: __SerdeContext
|
|
513
|
+
) => Promise<DescribeVpcEndpointsCommandOutput>;
|
|
426
514
|
export declare const deserializeAws_restJson1DissociatePackageCommand: (
|
|
427
515
|
output: __HttpResponse,
|
|
428
516
|
context: __SerdeContext
|
|
@@ -467,6 +555,18 @@ export declare const deserializeAws_restJson1ListTagsCommand: (
|
|
|
467
555
|
output: __HttpResponse,
|
|
468
556
|
context: __SerdeContext
|
|
469
557
|
) => Promise<ListTagsCommandOutput>;
|
|
558
|
+
export declare const deserializeAws_restJson1ListVpcEndpointAccessCommand: (
|
|
559
|
+
output: __HttpResponse,
|
|
560
|
+
context: __SerdeContext
|
|
561
|
+
) => Promise<ListVpcEndpointAccessCommandOutput>;
|
|
562
|
+
export declare const deserializeAws_restJson1ListVpcEndpointsCommand: (
|
|
563
|
+
output: __HttpResponse,
|
|
564
|
+
context: __SerdeContext
|
|
565
|
+
) => Promise<ListVpcEndpointsCommandOutput>;
|
|
566
|
+
export declare const deserializeAws_restJson1ListVpcEndpointsForDomainCommand: (
|
|
567
|
+
output: __HttpResponse,
|
|
568
|
+
context: __SerdeContext
|
|
569
|
+
) => Promise<ListVpcEndpointsForDomainCommandOutput>;
|
|
470
570
|
export declare const deserializeAws_restJson1PurchaseReservedElasticsearchInstanceOfferingCommand: (
|
|
471
571
|
output: __HttpResponse,
|
|
472
572
|
context: __SerdeContext
|
|
@@ -479,6 +579,10 @@ export declare const deserializeAws_restJson1RemoveTagsCommand: (
|
|
|
479
579
|
output: __HttpResponse,
|
|
480
580
|
context: __SerdeContext
|
|
481
581
|
) => Promise<RemoveTagsCommandOutput>;
|
|
582
|
+
export declare const deserializeAws_restJson1RevokeVpcEndpointAccessCommand: (
|
|
583
|
+
output: __HttpResponse,
|
|
584
|
+
context: __SerdeContext
|
|
585
|
+
) => Promise<RevokeVpcEndpointAccessCommandOutput>;
|
|
482
586
|
export declare const deserializeAws_restJson1StartElasticsearchServiceSoftwareUpdateCommand: (
|
|
483
587
|
output: __HttpResponse,
|
|
484
588
|
context: __SerdeContext
|
|
@@ -491,6 +595,10 @@ export declare const deserializeAws_restJson1UpdatePackageCommand: (
|
|
|
491
595
|
output: __HttpResponse,
|
|
492
596
|
context: __SerdeContext
|
|
493
597
|
) => Promise<UpdatePackageCommandOutput>;
|
|
598
|
+
export declare const deserializeAws_restJson1UpdateVpcEndpointCommand: (
|
|
599
|
+
output: __HttpResponse,
|
|
600
|
+
context: __SerdeContext
|
|
601
|
+
) => Promise<UpdateVpcEndpointCommandOutput>;
|
|
494
602
|
export declare const deserializeAws_restJson1UpgradeElasticsearchDomainCommand: (
|
|
495
603
|
output: __HttpResponse,
|
|
496
604
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-elasticsearch-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Elasticsearch Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.208.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",
|
|
@@ -19,46 +19,46 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
44
|
-
"@aws-sdk/util-base64": "3.
|
|
45
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
46
|
-
"@aws-sdk/util-base64-node": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.208.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.208.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.208.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.208.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.208.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.208.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.208.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.208.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.208.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.208.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.208.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.208.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.208.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.208.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.208.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.208.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.208.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.208.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.208.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.208.0",
|
|
42
|
+
"@aws-sdk/types": "3.208.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.208.0",
|
|
44
|
+
"@aws-sdk/util-base64": "3.208.0",
|
|
45
|
+
"@aws-sdk/util-base64-browser": "3.208.0",
|
|
46
|
+
"@aws-sdk/util-base64-node": "3.208.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.208.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.208.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.208.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.208.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.208.0",
|
|
54
54
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
55
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
55
|
+
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
56
56
|
"tslib": "^2.3.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
59
|
+
"@aws-sdk/service-client-documentation-generator": "3.208.0",
|
|
60
60
|
"@tsconfig/node14": "1.0.3",
|
|
61
|
-
"@types/node": "^
|
|
61
|
+
"@types/node": "^14.14.31",
|
|
62
62
|
"concurrently": "7.0.0",
|
|
63
63
|
"downlevel-dts": "0.10.1",
|
|
64
64
|
"rimraf": "3.0.2",
|