@aws-sdk/client-lakeformation 3.199.0 → 3.201.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/CHANGELOG.md +19 -0
- package/dist-cjs/endpoint/EndpointParameters.js +2 -3
- package/dist-cjs/protocols/Aws_restJson1.js +52 -56
- package/dist-cjs/runtimeConfig.browser.js +17 -17
- package/dist-cjs/runtimeConfig.js +21 -20
- package/dist-cjs/runtimeConfig.native.js +1 -2
- package/dist-cjs/runtimeConfig.shared.js +8 -11
- package/package.json +35 -35
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.201.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.200.0...v3.201.0) (2022-11-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* end support for Node.js 12.x ([#4123](https://github.com/aws/aws-sdk-js-v3/issues/4123)) ([83f913e](https://github.com/aws/aws-sdk-js-v3/commit/83f913ec2ac3878d8726c6964f585550dc5caf3e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.200.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.199.0...v3.200.0) (2022-10-31)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-lakeformation
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [3.199.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.198.0...v3.199.0) (2022-10-28)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @aws-sdk/client-lakeformation
|
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveClientEndpointParameters = void 0;
|
|
4
4
|
const resolveClientEndpointParameters = (options) => {
|
|
5
|
-
var _a, _b;
|
|
6
5
|
return {
|
|
7
6
|
...options,
|
|
8
|
-
useDualstackEndpoint:
|
|
9
|
-
useFipsEndpoint:
|
|
7
|
+
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
8
|
+
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
10
9
|
defaultSigningName: "lakeformation",
|
|
11
10
|
};
|
|
12
11
|
};
|
|
@@ -11,7 +11,7 @@ const serializeAws_restJson1AddLFTagsToResourceCommand = async (input, context)
|
|
|
11
11
|
const headers = {
|
|
12
12
|
"content-type": "application/json",
|
|
13
13
|
};
|
|
14
|
-
const resolvedPath = `${
|
|
14
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/AddLFTagsToResource";
|
|
15
15
|
let body;
|
|
16
16
|
body = JSON.stringify({
|
|
17
17
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -34,7 +34,7 @@ const serializeAws_restJson1AssumeDecoratedRoleWithSAMLCommand = async (input, c
|
|
|
34
34
|
const headers = {
|
|
35
35
|
"content-type": "application/json",
|
|
36
36
|
};
|
|
37
|
-
const resolvedPath = `${
|
|
37
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/AssumeDecoratedRoleWithSAML";
|
|
38
38
|
let body;
|
|
39
39
|
body = JSON.stringify({
|
|
40
40
|
...(input.DurationSeconds != null && { DurationSeconds: input.DurationSeconds }),
|
|
@@ -58,7 +58,7 @@ const serializeAws_restJson1BatchGrantPermissionsCommand = async (input, context
|
|
|
58
58
|
const headers = {
|
|
59
59
|
"content-type": "application/json",
|
|
60
60
|
};
|
|
61
|
-
const resolvedPath = `${
|
|
61
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/BatchGrantPermissions";
|
|
62
62
|
let body;
|
|
63
63
|
body = JSON.stringify({
|
|
64
64
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -82,7 +82,7 @@ const serializeAws_restJson1BatchRevokePermissionsCommand = async (input, contex
|
|
|
82
82
|
const headers = {
|
|
83
83
|
"content-type": "application/json",
|
|
84
84
|
};
|
|
85
|
-
const resolvedPath = `${
|
|
85
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/BatchRevokePermissions";
|
|
86
86
|
let body;
|
|
87
87
|
body = JSON.stringify({
|
|
88
88
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -106,7 +106,7 @@ const serializeAws_restJson1CancelTransactionCommand = async (input, context) =>
|
|
|
106
106
|
const headers = {
|
|
107
107
|
"content-type": "application/json",
|
|
108
108
|
};
|
|
109
|
-
const resolvedPath = `${
|
|
109
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/CancelTransaction";
|
|
110
110
|
let body;
|
|
111
111
|
body = JSON.stringify({
|
|
112
112
|
...(input.TransactionId != null && { TransactionId: input.TransactionId }),
|
|
@@ -127,7 +127,7 @@ const serializeAws_restJson1CommitTransactionCommand = async (input, context) =>
|
|
|
127
127
|
const headers = {
|
|
128
128
|
"content-type": "application/json",
|
|
129
129
|
};
|
|
130
|
-
const resolvedPath = `${
|
|
130
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/CommitTransaction";
|
|
131
131
|
let body;
|
|
132
132
|
body = JSON.stringify({
|
|
133
133
|
...(input.TransactionId != null && { TransactionId: input.TransactionId }),
|
|
@@ -148,7 +148,7 @@ const serializeAws_restJson1CreateDataCellsFilterCommand = async (input, context
|
|
|
148
148
|
const headers = {
|
|
149
149
|
"content-type": "application/json",
|
|
150
150
|
};
|
|
151
|
-
const resolvedPath = `${
|
|
151
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/CreateDataCellsFilter";
|
|
152
152
|
let body;
|
|
153
153
|
body = JSON.stringify({
|
|
154
154
|
...(input.TableData != null && { TableData: serializeAws_restJson1DataCellsFilter(input.TableData, context) }),
|
|
@@ -169,7 +169,7 @@ const serializeAws_restJson1CreateLFTagCommand = async (input, context) => {
|
|
|
169
169
|
const headers = {
|
|
170
170
|
"content-type": "application/json",
|
|
171
171
|
};
|
|
172
|
-
const resolvedPath = `${
|
|
172
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/CreateLFTag";
|
|
173
173
|
let body;
|
|
174
174
|
body = JSON.stringify({
|
|
175
175
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -192,7 +192,7 @@ const serializeAws_restJson1DeleteDataCellsFilterCommand = async (input, context
|
|
|
192
192
|
const headers = {
|
|
193
193
|
"content-type": "application/json",
|
|
194
194
|
};
|
|
195
|
-
const resolvedPath = `${
|
|
195
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/DeleteDataCellsFilter";
|
|
196
196
|
let body;
|
|
197
197
|
body = JSON.stringify({
|
|
198
198
|
...(input.DatabaseName != null && { DatabaseName: input.DatabaseName }),
|
|
@@ -216,7 +216,7 @@ const serializeAws_restJson1DeleteLFTagCommand = async (input, context) => {
|
|
|
216
216
|
const headers = {
|
|
217
217
|
"content-type": "application/json",
|
|
218
218
|
};
|
|
219
|
-
const resolvedPath = `${
|
|
219
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/DeleteLFTag";
|
|
220
220
|
let body;
|
|
221
221
|
body = JSON.stringify({
|
|
222
222
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -238,7 +238,7 @@ const serializeAws_restJson1DeleteObjectsOnCancelCommand = async (input, context
|
|
|
238
238
|
const headers = {
|
|
239
239
|
"content-type": "application/json",
|
|
240
240
|
};
|
|
241
|
-
const resolvedPath = `${
|
|
241
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/DeleteObjectsOnCancel";
|
|
242
242
|
let body;
|
|
243
243
|
body = JSON.stringify({
|
|
244
244
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -263,7 +263,7 @@ const serializeAws_restJson1DeregisterResourceCommand = async (input, context) =
|
|
|
263
263
|
const headers = {
|
|
264
264
|
"content-type": "application/json",
|
|
265
265
|
};
|
|
266
|
-
const resolvedPath = `${
|
|
266
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/DeregisterResource";
|
|
267
267
|
let body;
|
|
268
268
|
body = JSON.stringify({
|
|
269
269
|
...(input.ResourceArn != null && { ResourceArn: input.ResourceArn }),
|
|
@@ -284,7 +284,7 @@ const serializeAws_restJson1DescribeResourceCommand = async (input, context) =>
|
|
|
284
284
|
const headers = {
|
|
285
285
|
"content-type": "application/json",
|
|
286
286
|
};
|
|
287
|
-
const resolvedPath = `${
|
|
287
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/DescribeResource";
|
|
288
288
|
let body;
|
|
289
289
|
body = JSON.stringify({
|
|
290
290
|
...(input.ResourceArn != null && { ResourceArn: input.ResourceArn }),
|
|
@@ -305,7 +305,7 @@ const serializeAws_restJson1DescribeTransactionCommand = async (input, context)
|
|
|
305
305
|
const headers = {
|
|
306
306
|
"content-type": "application/json",
|
|
307
307
|
};
|
|
308
|
-
const resolvedPath = `${
|
|
308
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/DescribeTransaction";
|
|
309
309
|
let body;
|
|
310
310
|
body = JSON.stringify({
|
|
311
311
|
...(input.TransactionId != null && { TransactionId: input.TransactionId }),
|
|
@@ -326,7 +326,7 @@ const serializeAws_restJson1ExtendTransactionCommand = async (input, context) =>
|
|
|
326
326
|
const headers = {
|
|
327
327
|
"content-type": "application/json",
|
|
328
328
|
};
|
|
329
|
-
const resolvedPath = `${
|
|
329
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/ExtendTransaction";
|
|
330
330
|
let body;
|
|
331
331
|
body = JSON.stringify({
|
|
332
332
|
...(input.TransactionId != null && { TransactionId: input.TransactionId }),
|
|
@@ -347,7 +347,7 @@ const serializeAws_restJson1GetDataLakeSettingsCommand = async (input, context)
|
|
|
347
347
|
const headers = {
|
|
348
348
|
"content-type": "application/json",
|
|
349
349
|
};
|
|
350
|
-
const resolvedPath = `${
|
|
350
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/GetDataLakeSettings";
|
|
351
351
|
let body;
|
|
352
352
|
body = JSON.stringify({
|
|
353
353
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -368,7 +368,7 @@ const serializeAws_restJson1GetEffectivePermissionsForPathCommand = async (input
|
|
|
368
368
|
const headers = {
|
|
369
369
|
"content-type": "application/json",
|
|
370
370
|
};
|
|
371
|
-
const resolvedPath = `${
|
|
371
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/GetEffectivePermissionsForPath";
|
|
372
372
|
let body;
|
|
373
373
|
body = JSON.stringify({
|
|
374
374
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -392,7 +392,7 @@ const serializeAws_restJson1GetLFTagCommand = async (input, context) => {
|
|
|
392
392
|
const headers = {
|
|
393
393
|
"content-type": "application/json",
|
|
394
394
|
};
|
|
395
|
-
const resolvedPath = `${
|
|
395
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/GetLFTag";
|
|
396
396
|
let body;
|
|
397
397
|
body = JSON.stringify({
|
|
398
398
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -414,7 +414,7 @@ const serializeAws_restJson1GetQueryStateCommand = async (input, context) => {
|
|
|
414
414
|
const headers = {
|
|
415
415
|
"content-type": "application/json",
|
|
416
416
|
};
|
|
417
|
-
const resolvedPath = `${
|
|
417
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/GetQueryState";
|
|
418
418
|
let body;
|
|
419
419
|
body = JSON.stringify({
|
|
420
420
|
...(input.QueryId != null && { QueryId: input.QueryId }),
|
|
@@ -442,7 +442,7 @@ const serializeAws_restJson1GetQueryStatisticsCommand = async (input, context) =
|
|
|
442
442
|
const headers = {
|
|
443
443
|
"content-type": "application/json",
|
|
444
444
|
};
|
|
445
|
-
const resolvedPath = `${
|
|
445
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/GetQueryStatistics";
|
|
446
446
|
let body;
|
|
447
447
|
body = JSON.stringify({
|
|
448
448
|
...(input.QueryId != null && { QueryId: input.QueryId }),
|
|
@@ -470,7 +470,7 @@ const serializeAws_restJson1GetResourceLFTagsCommand = async (input, context) =>
|
|
|
470
470
|
const headers = {
|
|
471
471
|
"content-type": "application/json",
|
|
472
472
|
};
|
|
473
|
-
const resolvedPath = `${
|
|
473
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/GetResourceLFTags";
|
|
474
474
|
let body;
|
|
475
475
|
body = JSON.stringify({
|
|
476
476
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -493,7 +493,7 @@ const serializeAws_restJson1GetTableObjectsCommand = async (input, context) => {
|
|
|
493
493
|
const headers = {
|
|
494
494
|
"content-type": "application/json",
|
|
495
495
|
};
|
|
496
|
-
const resolvedPath = `${
|
|
496
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/GetTableObjects";
|
|
497
497
|
let body;
|
|
498
498
|
body = JSON.stringify({
|
|
499
499
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -521,7 +521,7 @@ const serializeAws_restJson1GetTemporaryGluePartitionCredentialsCommand = async
|
|
|
521
521
|
const headers = {
|
|
522
522
|
"content-type": "application/json",
|
|
523
523
|
};
|
|
524
|
-
const resolvedPath = `${
|
|
524
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/GetTemporaryGluePartitionCredentials";
|
|
525
525
|
let body;
|
|
526
526
|
body = JSON.stringify({
|
|
527
527
|
...(input.AuditContext != null && {
|
|
@@ -551,7 +551,7 @@ const serializeAws_restJson1GetTemporaryGlueTableCredentialsCommand = async (inp
|
|
|
551
551
|
const headers = {
|
|
552
552
|
"content-type": "application/json",
|
|
553
553
|
};
|
|
554
|
-
const resolvedPath = `${
|
|
554
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/GetTemporaryGlueTableCredentials";
|
|
555
555
|
let body;
|
|
556
556
|
body = JSON.stringify({
|
|
557
557
|
...(input.AuditContext != null && {
|
|
@@ -580,7 +580,7 @@ const serializeAws_restJson1GetWorkUnitResultsCommand = async (input, context) =
|
|
|
580
580
|
const headers = {
|
|
581
581
|
"content-type": "application/json",
|
|
582
582
|
};
|
|
583
|
-
const resolvedPath = `${
|
|
583
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/GetWorkUnitResults";
|
|
584
584
|
let body;
|
|
585
585
|
body = JSON.stringify({
|
|
586
586
|
...(input.QueryId != null && { QueryId: input.QueryId }),
|
|
@@ -610,7 +610,7 @@ const serializeAws_restJson1GetWorkUnitsCommand = async (input, context) => {
|
|
|
610
610
|
const headers = {
|
|
611
611
|
"content-type": "application/json",
|
|
612
612
|
};
|
|
613
|
-
const resolvedPath = `${
|
|
613
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/GetWorkUnits";
|
|
614
614
|
let body;
|
|
615
615
|
body = JSON.stringify({
|
|
616
616
|
...(input.NextToken != null && { NextToken: input.NextToken }),
|
|
@@ -640,7 +640,7 @@ const serializeAws_restJson1GrantPermissionsCommand = async (input, context) =>
|
|
|
640
640
|
const headers = {
|
|
641
641
|
"content-type": "application/json",
|
|
642
642
|
};
|
|
643
|
-
const resolvedPath = `${
|
|
643
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/GrantPermissions";
|
|
644
644
|
let body;
|
|
645
645
|
body = JSON.stringify({
|
|
646
646
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -667,7 +667,7 @@ const serializeAws_restJson1ListDataCellsFilterCommand = async (input, context)
|
|
|
667
667
|
const headers = {
|
|
668
668
|
"content-type": "application/json",
|
|
669
669
|
};
|
|
670
|
-
const resolvedPath = `${
|
|
670
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/ListDataCellsFilter";
|
|
671
671
|
let body;
|
|
672
672
|
body = JSON.stringify({
|
|
673
673
|
...(input.MaxResults != null && { MaxResults: input.MaxResults }),
|
|
@@ -690,7 +690,7 @@ const serializeAws_restJson1ListLFTagsCommand = async (input, context) => {
|
|
|
690
690
|
const headers = {
|
|
691
691
|
"content-type": "application/json",
|
|
692
692
|
};
|
|
693
|
-
const resolvedPath = `${
|
|
693
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/ListLFTags";
|
|
694
694
|
let body;
|
|
695
695
|
body = JSON.stringify({
|
|
696
696
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -714,7 +714,7 @@ const serializeAws_restJson1ListPermissionsCommand = async (input, context) => {
|
|
|
714
714
|
const headers = {
|
|
715
715
|
"content-type": "application/json",
|
|
716
716
|
};
|
|
717
|
-
const resolvedPath = `${
|
|
717
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/ListPermissions";
|
|
718
718
|
let body;
|
|
719
719
|
body = JSON.stringify({
|
|
720
720
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -741,7 +741,7 @@ const serializeAws_restJson1ListResourcesCommand = async (input, context) => {
|
|
|
741
741
|
const headers = {
|
|
742
742
|
"content-type": "application/json",
|
|
743
743
|
};
|
|
744
|
-
const resolvedPath = `${
|
|
744
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/ListResources";
|
|
745
745
|
let body;
|
|
746
746
|
body = JSON.stringify({
|
|
747
747
|
...(input.FilterConditionList != null && {
|
|
@@ -766,7 +766,7 @@ const serializeAws_restJson1ListTableStorageOptimizersCommand = async (input, co
|
|
|
766
766
|
const headers = {
|
|
767
767
|
"content-type": "application/json",
|
|
768
768
|
};
|
|
769
|
-
const resolvedPath = `${
|
|
769
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/ListTableStorageOptimizers";
|
|
770
770
|
let body;
|
|
771
771
|
body = JSON.stringify({
|
|
772
772
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -792,7 +792,7 @@ const serializeAws_restJson1ListTransactionsCommand = async (input, context) =>
|
|
|
792
792
|
const headers = {
|
|
793
793
|
"content-type": "application/json",
|
|
794
794
|
};
|
|
795
|
-
const resolvedPath = `${
|
|
795
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/ListTransactions";
|
|
796
796
|
let body;
|
|
797
797
|
body = JSON.stringify({
|
|
798
798
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -816,7 +816,7 @@ const serializeAws_restJson1PutDataLakeSettingsCommand = async (input, context)
|
|
|
816
816
|
const headers = {
|
|
817
817
|
"content-type": "application/json",
|
|
818
818
|
};
|
|
819
|
-
const resolvedPath = `${
|
|
819
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/PutDataLakeSettings";
|
|
820
820
|
let body;
|
|
821
821
|
body = JSON.stringify({
|
|
822
822
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -840,7 +840,7 @@ const serializeAws_restJson1RegisterResourceCommand = async (input, context) =>
|
|
|
840
840
|
const headers = {
|
|
841
841
|
"content-type": "application/json",
|
|
842
842
|
};
|
|
843
|
-
const resolvedPath = `${
|
|
843
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/RegisterResource";
|
|
844
844
|
let body;
|
|
845
845
|
body = JSON.stringify({
|
|
846
846
|
...(input.ResourceArn != null && { ResourceArn: input.ResourceArn }),
|
|
@@ -863,7 +863,7 @@ const serializeAws_restJson1RemoveLFTagsFromResourceCommand = async (input, cont
|
|
|
863
863
|
const headers = {
|
|
864
864
|
"content-type": "application/json",
|
|
865
865
|
};
|
|
866
|
-
const resolvedPath = `${
|
|
866
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/RemoveLFTagsFromResource";
|
|
867
867
|
let body;
|
|
868
868
|
body = JSON.stringify({
|
|
869
869
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -886,7 +886,7 @@ const serializeAws_restJson1RevokePermissionsCommand = async (input, context) =>
|
|
|
886
886
|
const headers = {
|
|
887
887
|
"content-type": "application/json",
|
|
888
888
|
};
|
|
889
|
-
const resolvedPath = `${
|
|
889
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/RevokePermissions";
|
|
890
890
|
let body;
|
|
891
891
|
body = JSON.stringify({
|
|
892
892
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -913,7 +913,7 @@ const serializeAws_restJson1SearchDatabasesByLFTagsCommand = async (input, conte
|
|
|
913
913
|
const headers = {
|
|
914
914
|
"content-type": "application/json",
|
|
915
915
|
};
|
|
916
|
-
const resolvedPath = `${
|
|
916
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/SearchDatabasesByLFTags";
|
|
917
917
|
let body;
|
|
918
918
|
body = JSON.stringify({
|
|
919
919
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -937,7 +937,7 @@ const serializeAws_restJson1SearchTablesByLFTagsCommand = async (input, context)
|
|
|
937
937
|
const headers = {
|
|
938
938
|
"content-type": "application/json",
|
|
939
939
|
};
|
|
940
|
-
const resolvedPath = `${
|
|
940
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/SearchTablesByLFTags";
|
|
941
941
|
let body;
|
|
942
942
|
body = JSON.stringify({
|
|
943
943
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -961,7 +961,7 @@ const serializeAws_restJson1StartQueryPlanningCommand = async (input, context) =
|
|
|
961
961
|
const headers = {
|
|
962
962
|
"content-type": "application/json",
|
|
963
963
|
};
|
|
964
|
-
const resolvedPath = `${
|
|
964
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/StartQueryPlanning";
|
|
965
965
|
let body;
|
|
966
966
|
body = JSON.stringify({
|
|
967
967
|
...(input.QueryPlanningContext != null && {
|
|
@@ -992,7 +992,7 @@ const serializeAws_restJson1StartTransactionCommand = async (input, context) =>
|
|
|
992
992
|
const headers = {
|
|
993
993
|
"content-type": "application/json",
|
|
994
994
|
};
|
|
995
|
-
const resolvedPath = `${
|
|
995
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/StartTransaction";
|
|
996
996
|
let body;
|
|
997
997
|
body = JSON.stringify({
|
|
998
998
|
...(input.TransactionType != null && { TransactionType: input.TransactionType }),
|
|
@@ -1013,7 +1013,7 @@ const serializeAws_restJson1UpdateLFTagCommand = async (input, context) => {
|
|
|
1013
1013
|
const headers = {
|
|
1014
1014
|
"content-type": "application/json",
|
|
1015
1015
|
};
|
|
1016
|
-
const resolvedPath = `${
|
|
1016
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/UpdateLFTag";
|
|
1017
1017
|
let body;
|
|
1018
1018
|
body = JSON.stringify({
|
|
1019
1019
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -1041,7 +1041,7 @@ const serializeAws_restJson1UpdateResourceCommand = async (input, context) => {
|
|
|
1041
1041
|
const headers = {
|
|
1042
1042
|
"content-type": "application/json",
|
|
1043
1043
|
};
|
|
1044
|
-
const resolvedPath = `${
|
|
1044
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/UpdateResource";
|
|
1045
1045
|
let body;
|
|
1046
1046
|
body = JSON.stringify({
|
|
1047
1047
|
...(input.ResourceArn != null && { ResourceArn: input.ResourceArn }),
|
|
@@ -1063,7 +1063,7 @@ const serializeAws_restJson1UpdateTableObjectsCommand = async (input, context) =
|
|
|
1063
1063
|
const headers = {
|
|
1064
1064
|
"content-type": "application/json",
|
|
1065
1065
|
};
|
|
1066
|
-
const resolvedPath = `${
|
|
1066
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/UpdateTableObjects";
|
|
1067
1067
|
let body;
|
|
1068
1068
|
body = JSON.stringify({
|
|
1069
1069
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -1090,7 +1090,7 @@ const serializeAws_restJson1UpdateTableStorageOptimizerCommand = async (input, c
|
|
|
1090
1090
|
const headers = {
|
|
1091
1091
|
"content-type": "application/json",
|
|
1092
1092
|
};
|
|
1093
|
-
const resolvedPath = `${
|
|
1093
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/UpdateTableStorageOptimizer";
|
|
1094
1094
|
let body;
|
|
1095
1095
|
body = JSON.stringify({
|
|
1096
1096
|
...(input.CatalogId != null && { CatalogId: input.CatalogId }),
|
|
@@ -4375,15 +4375,12 @@ const deserializeAws_restJson1WorkUnitRangeList = (output, context) => {
|
|
|
4375
4375
|
});
|
|
4376
4376
|
return retVal;
|
|
4377
4377
|
};
|
|
4378
|
-
const deserializeMetadata = (output) => {
|
|
4379
|
-
|
|
4380
|
-
|
|
4381
|
-
|
|
4382
|
-
|
|
4383
|
-
|
|
4384
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
4385
|
-
});
|
|
4386
|
-
};
|
|
4378
|
+
const deserializeMetadata = (output) => ({
|
|
4379
|
+
httpStatusCode: output.statusCode,
|
|
4380
|
+
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
4381
|
+
extendedRequestId: output.headers["x-amz-id-2"],
|
|
4382
|
+
cfId: output.headers["x-amz-cf-id"],
|
|
4383
|
+
});
|
|
4387
4384
|
const collectBody = (streamBody = new Uint8Array(), context) => {
|
|
4388
4385
|
if (streamBody instanceof Uint8Array) {
|
|
4389
4386
|
return Promise.resolve(streamBody);
|
|
@@ -4403,9 +4400,8 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
4403
4400
|
return {};
|
|
4404
4401
|
});
|
|
4405
4402
|
const parseErrorBody = async (errorBody, context) => {
|
|
4406
|
-
var _a;
|
|
4407
4403
|
const value = await parseBody(errorBody, context);
|
|
4408
|
-
value.message =
|
|
4404
|
+
value.message = value.message ?? value.Message;
|
|
4409
4405
|
return value;
|
|
4410
4406
|
};
|
|
4411
4407
|
const loadRestJsonErrorCode = (output, data) => {
|
|
@@ -17,7 +17,6 @@ const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
|
17
17
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
18
18
|
const util_defaults_mode_browser_1 = require("@aws-sdk/util-defaults-mode-browser");
|
|
19
19
|
const getRuntimeConfig = (config) => {
|
|
20
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
|
|
21
20
|
const defaultsMode = (0, util_defaults_mode_browser_1.resolveDefaultsModeConfig)(config);
|
|
22
21
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
23
22
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
@@ -26,22 +25,23 @@ const getRuntimeConfig = (config) => {
|
|
|
26
25
|
...config,
|
|
27
26
|
runtime: "browser",
|
|
28
27
|
defaultsMode,
|
|
29
|
-
base64Decoder:
|
|
30
|
-
base64Encoder:
|
|
31
|
-
bodyLengthChecker:
|
|
32
|
-
credentialDefaultProvider:
|
|
33
|
-
defaultUserAgentProvider:
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
28
|
+
base64Decoder: config?.base64Decoder ?? util_base64_browser_1.fromBase64,
|
|
29
|
+
base64Encoder: config?.base64Encoder ?? util_base64_browser_1.toBase64,
|
|
30
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength,
|
|
31
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
32
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
33
|
+
(0, util_user_agent_browser_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
34
|
+
maxAttempts: config?.maxAttempts ?? middleware_retry_1.DEFAULT_MAX_ATTEMPTS,
|
|
35
|
+
region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"),
|
|
36
|
+
requestHandler: config?.requestHandler ?? new fetch_http_handler_1.FetchHttpHandler(defaultConfigProvider),
|
|
37
|
+
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || middleware_retry_1.DEFAULT_RETRY_MODE),
|
|
38
|
+
sdkStreamMixin: config?.sdkStreamMixin ?? util_stream_browser_1.sdkStreamMixin,
|
|
39
|
+
sha256: config?.sha256 ?? sha256_browser_1.Sha256,
|
|
40
|
+
streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector,
|
|
41
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
42
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_FIPS_ENDPOINT)),
|
|
43
|
+
utf8Decoder: config?.utf8Decoder ?? util_utf8_browser_1.fromUtf8,
|
|
44
|
+
utf8Encoder: config?.utf8Encoder ?? util_utf8_browser_1.toUtf8,
|
|
45
45
|
};
|
|
46
46
|
};
|
|
47
47
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -20,7 +20,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
20
20
|
const util_defaults_mode_node_1 = require("@aws-sdk/util-defaults-mode-node");
|
|
21
21
|
const smithy_client_2 = require("@aws-sdk/smithy-client");
|
|
22
22
|
const getRuntimeConfig = (config) => {
|
|
23
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
|
|
24
23
|
(0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version);
|
|
25
24
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
26
25
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
@@ -30,25 +29,27 @@ const getRuntimeConfig = (config) => {
|
|
|
30
29
|
...config,
|
|
31
30
|
runtime: "node",
|
|
32
31
|
defaultsMode,
|
|
33
|
-
base64Decoder:
|
|
34
|
-
base64Encoder:
|
|
35
|
-
bodyLengthChecker:
|
|
36
|
-
credentialDefaultProvider:
|
|
37
|
-
defaultUserAgentProvider:
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
32
|
+
base64Decoder: config?.base64Decoder ?? util_base64_node_1.fromBase64,
|
|
33
|
+
base64Encoder: config?.base64Encoder ?? util_base64_node_1.toBase64,
|
|
34
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
35
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? (0, client_sts_1.decorateDefaultCredentialProvider)(credential_provider_node_1.defaultProvider),
|
|
36
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
37
|
+
(0, util_user_agent_node_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
38
|
+
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
39
|
+
region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
40
|
+
requestHandler: config?.requestHandler ?? new node_http_handler_1.NodeHttpHandler(defaultConfigProvider),
|
|
41
|
+
retryMode: config?.retryMode ??
|
|
42
|
+
(0, node_config_provider_1.loadConfig)({
|
|
43
|
+
...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
44
|
+
default: async () => (await defaultConfigProvider()).retryMode || middleware_retry_1.DEFAULT_RETRY_MODE,
|
|
45
|
+
}),
|
|
46
|
+
sdkStreamMixin: config?.sdkStreamMixin ?? util_stream_node_1.sdkStreamMixin,
|
|
47
|
+
sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
|
|
48
|
+
streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
|
|
49
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
50
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
51
|
+
utf8Decoder: config?.utf8Decoder ?? util_utf8_node_1.fromUtf8,
|
|
52
|
+
utf8Encoder: config?.utf8Encoder ?? util_utf8_node_1.toUtf8,
|
|
52
53
|
};
|
|
53
54
|
};
|
|
54
55
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -4,13 +4,12 @@ exports.getRuntimeConfig = void 0;
|
|
|
4
4
|
const sha256_js_1 = require("@aws-crypto/sha256-js");
|
|
5
5
|
const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
|
|
6
6
|
const getRuntimeConfig = (config) => {
|
|
7
|
-
var _a;
|
|
8
7
|
const browserDefaults = (0, runtimeConfig_browser_1.getRuntimeConfig)(config);
|
|
9
8
|
return {
|
|
10
9
|
...browserDefaults,
|
|
11
10
|
...config,
|
|
12
11
|
runtime: "react-native",
|
|
13
|
-
sha256:
|
|
12
|
+
sha256: config?.sha256 ?? sha256_js_1.Sha256,
|
|
14
13
|
};
|
|
15
14
|
};
|
|
16
15
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -3,15 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const url_parser_1 = require("@aws-sdk/url-parser");
|
|
5
5
|
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
6
|
-
const getRuntimeConfig = (config) => {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
urlParser: (_e = config === null || config === void 0 ? void 0 : config.urlParser) !== null && _e !== void 0 ? _e : url_parser_1.parseUrl,
|
|
15
|
-
});
|
|
16
|
-
};
|
|
6
|
+
const getRuntimeConfig = (config) => ({
|
|
7
|
+
apiVersion: "2017-03-31",
|
|
8
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
9
|
+
endpointProvider: config?.endpointProvider ?? endpointResolver_1.defaultEndpointResolver,
|
|
10
|
+
logger: config?.logger ?? {},
|
|
11
|
+
serviceId: config?.serviceId ?? "LakeFormation",
|
|
12
|
+
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
13
|
+
});
|
|
17
14
|
exports.getRuntimeConfig = getRuntimeConfig;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lakeformation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lakeformation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.201.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.
|
|
22
|
+
"@aws-sdk/client-sts": "3.201.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.201.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.201.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.201.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.201.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.201.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.201.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.201.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.201.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.201.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.201.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.201.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.201.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.201.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.201.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.201.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.201.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.201.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.201.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.201.0",
|
|
42
|
+
"@aws-sdk/types": "3.201.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.201.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.188.0",
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
45
|
+
"@aws-sdk/util-base64-node": "3.201.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-stream-browser": "3.
|
|
52
|
-
"@aws-sdk/util-stream-node": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.201.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.201.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.201.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.201.0",
|
|
51
|
+
"@aws-sdk/util-stream-browser": "3.201.0",
|
|
52
|
+
"@aws-sdk/util-stream-node": "3.201.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.201.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.201.0",
|
|
55
55
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
56
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
56
|
+
"@aws-sdk/util-utf8-node": "3.201.0",
|
|
57
57
|
"tslib": "^2.3.1"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@aws-sdk/service-client-documentation-generator": "3.188.0",
|
|
61
|
-
"@tsconfig/
|
|
61
|
+
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^12.7.5",
|
|
63
63
|
"concurrently": "7.0.0",
|
|
64
64
|
"downlevel-dts": "0.10.1",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
}
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|
|
75
|
-
"node": ">=
|
|
75
|
+
"node": ">=14.0.0"
|
|
76
76
|
},
|
|
77
77
|
"typesVersions": {
|
|
78
78
|
"<4.0": {
|