@aws-sdk/client-lakeformation 3.282.0 → 3.288.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 +16 -0
- package/dist-cjs/LakeFormation.js +30 -0
- package/dist-cjs/commands/GetDataCellsFilterCommand.js +46 -0
- package/dist-cjs/commands/UpdateDataCellsFilterCommand.js +46 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +19 -3
- package/dist-cjs/pagination/GetEffectivePermissionsForPathPaginator.js +1 -8
- package/dist-cjs/pagination/GetTableObjectsPaginator.js +1 -8
- package/dist-cjs/pagination/GetWorkUnitsPaginator.js +1 -8
- package/dist-cjs/pagination/ListDataCellsFilterPaginator.js +1 -8
- package/dist-cjs/pagination/ListLFTagsPaginator.js +1 -8
- package/dist-cjs/pagination/ListPermissionsPaginator.js +1 -8
- package/dist-cjs/pagination/ListResourcesPaginator.js +1 -8
- package/dist-cjs/pagination/ListTableStorageOptimizersPaginator.js +1 -8
- package/dist-cjs/pagination/ListTransactionsPaginator.js +1 -8
- package/dist-cjs/pagination/SearchDatabasesByLFTagsPaginator.js +1 -8
- package/dist-cjs/pagination/SearchTablesByLFTagsPaginator.js +1 -8
- package/dist-cjs/protocols/Aws_restJson1.js +141 -2
- package/dist-es/LakeFormation.js +30 -0
- package/dist-es/commands/GetDataCellsFilterCommand.js +42 -0
- package/dist-es/commands/UpdateDataCellsFilterCommand.js +42 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +12 -0
- package/dist-es/pagination/GetEffectivePermissionsForPathPaginator.js +1 -8
- package/dist-es/pagination/GetTableObjectsPaginator.js +1 -8
- package/dist-es/pagination/GetWorkUnitsPaginator.js +1 -8
- package/dist-es/pagination/ListDataCellsFilterPaginator.js +1 -8
- package/dist-es/pagination/ListLFTagsPaginator.js +1 -8
- package/dist-es/pagination/ListPermissionsPaginator.js +1 -8
- package/dist-es/pagination/ListResourcesPaginator.js +1 -8
- package/dist-es/pagination/ListTableStorageOptimizersPaginator.js +1 -8
- package/dist-es/pagination/ListTransactionsPaginator.js +1 -8
- package/dist-es/pagination/SearchDatabasesByLFTagsPaginator.js +1 -8
- package/dist-es/pagination/SearchTablesByLFTagsPaginator.js +1 -8
- package/dist-es/protocols/Aws_restJson1.js +135 -0
- package/dist-types/LakeFormation.d.ts +15 -1
- package/dist-types/LakeFormationClient.d.ts +4 -2
- package/dist-types/commands/GetDataCellsFilterCommand.d.ts +43 -0
- package/dist-types/commands/GrantPermissionsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDataCellsFilterCommand.d.ts +43 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +49 -0
- package/dist-types/pagination/Interfaces.d.ts +1 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/ts3.4/LakeFormation.d.ts +34 -0
- package/dist-types/ts3.4/LakeFormationClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetDataCellsFilterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateDataCellsFilterCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +26 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +9 -9
|
@@ -59,6 +59,10 @@ import {
|
|
|
59
59
|
ExtendTransactionCommandInput,
|
|
60
60
|
ExtendTransactionCommandOutput,
|
|
61
61
|
} from "./commands/ExtendTransactionCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetDataCellsFilterCommandInput,
|
|
64
|
+
GetDataCellsFilterCommandOutput,
|
|
65
|
+
} from "./commands/GetDataCellsFilterCommand";
|
|
62
66
|
import {
|
|
63
67
|
GetDataLakeSettingsCommandInput,
|
|
64
68
|
GetDataLakeSettingsCommandOutput,
|
|
@@ -163,6 +167,10 @@ import {
|
|
|
163
167
|
StartTransactionCommandInput,
|
|
164
168
|
StartTransactionCommandOutput,
|
|
165
169
|
} from "./commands/StartTransactionCommand";
|
|
170
|
+
import {
|
|
171
|
+
UpdateDataCellsFilterCommandInput,
|
|
172
|
+
UpdateDataCellsFilterCommandOutput,
|
|
173
|
+
} from "./commands/UpdateDataCellsFilterCommand";
|
|
166
174
|
import {
|
|
167
175
|
UpdateLFTagCommandInput,
|
|
168
176
|
UpdateLFTagCommandOutput,
|
|
@@ -376,6 +384,19 @@ export declare class LakeFormation extends LakeFormationClient {
|
|
|
376
384
|
options: __HttpHandlerOptions,
|
|
377
385
|
cb: (err: any, data?: ExtendTransactionCommandOutput) => void
|
|
378
386
|
): void;
|
|
387
|
+
getDataCellsFilter(
|
|
388
|
+
args: GetDataCellsFilterCommandInput,
|
|
389
|
+
options?: __HttpHandlerOptions
|
|
390
|
+
): Promise<GetDataCellsFilterCommandOutput>;
|
|
391
|
+
getDataCellsFilter(
|
|
392
|
+
args: GetDataCellsFilterCommandInput,
|
|
393
|
+
cb: (err: any, data?: GetDataCellsFilterCommandOutput) => void
|
|
394
|
+
): void;
|
|
395
|
+
getDataCellsFilter(
|
|
396
|
+
args: GetDataCellsFilterCommandInput,
|
|
397
|
+
options: __HttpHandlerOptions,
|
|
398
|
+
cb: (err: any, data?: GetDataCellsFilterCommandOutput) => void
|
|
399
|
+
): void;
|
|
379
400
|
getDataLakeSettings(
|
|
380
401
|
args: GetDataLakeSettingsCommandInput,
|
|
381
402
|
options?: __HttpHandlerOptions
|
|
@@ -720,6 +741,19 @@ export declare class LakeFormation extends LakeFormationClient {
|
|
|
720
741
|
options: __HttpHandlerOptions,
|
|
721
742
|
cb: (err: any, data?: StartTransactionCommandOutput) => void
|
|
722
743
|
): void;
|
|
744
|
+
updateDataCellsFilter(
|
|
745
|
+
args: UpdateDataCellsFilterCommandInput,
|
|
746
|
+
options?: __HttpHandlerOptions
|
|
747
|
+
): Promise<UpdateDataCellsFilterCommandOutput>;
|
|
748
|
+
updateDataCellsFilter(
|
|
749
|
+
args: UpdateDataCellsFilterCommandInput,
|
|
750
|
+
cb: (err: any, data?: UpdateDataCellsFilterCommandOutput) => void
|
|
751
|
+
): void;
|
|
752
|
+
updateDataCellsFilter(
|
|
753
|
+
args: UpdateDataCellsFilterCommandInput,
|
|
754
|
+
options: __HttpHandlerOptions,
|
|
755
|
+
cb: (err: any, data?: UpdateDataCellsFilterCommandOutput) => void
|
|
756
|
+
): void;
|
|
723
757
|
updateLFTag(
|
|
724
758
|
args: UpdateLFTagCommandInput,
|
|
725
759
|
options?: __HttpHandlerOptions
|
|
@@ -105,6 +105,10 @@ import {
|
|
|
105
105
|
ExtendTransactionCommandInput,
|
|
106
106
|
ExtendTransactionCommandOutput,
|
|
107
107
|
} from "./commands/ExtendTransactionCommand";
|
|
108
|
+
import {
|
|
109
|
+
GetDataCellsFilterCommandInput,
|
|
110
|
+
GetDataCellsFilterCommandOutput,
|
|
111
|
+
} from "./commands/GetDataCellsFilterCommand";
|
|
108
112
|
import {
|
|
109
113
|
GetDataLakeSettingsCommandInput,
|
|
110
114
|
GetDataLakeSettingsCommandOutput,
|
|
@@ -209,6 +213,10 @@ import {
|
|
|
209
213
|
StartTransactionCommandInput,
|
|
210
214
|
StartTransactionCommandOutput,
|
|
211
215
|
} from "./commands/StartTransactionCommand";
|
|
216
|
+
import {
|
|
217
|
+
UpdateDataCellsFilterCommandInput,
|
|
218
|
+
UpdateDataCellsFilterCommandOutput,
|
|
219
|
+
} from "./commands/UpdateDataCellsFilterCommand";
|
|
212
220
|
import {
|
|
213
221
|
UpdateLFTagCommandInput,
|
|
214
222
|
UpdateLFTagCommandOutput,
|
|
@@ -246,6 +254,7 @@ export declare type ServiceInputTypes =
|
|
|
246
254
|
| DescribeResourceCommandInput
|
|
247
255
|
| DescribeTransactionCommandInput
|
|
248
256
|
| ExtendTransactionCommandInput
|
|
257
|
+
| GetDataCellsFilterCommandInput
|
|
249
258
|
| GetDataLakeSettingsCommandInput
|
|
250
259
|
| GetEffectivePermissionsForPathCommandInput
|
|
251
260
|
| GetLFTagCommandInput
|
|
@@ -272,6 +281,7 @@ export declare type ServiceInputTypes =
|
|
|
272
281
|
| SearchTablesByLFTagsCommandInput
|
|
273
282
|
| StartQueryPlanningCommandInput
|
|
274
283
|
| StartTransactionCommandInput
|
|
284
|
+
| UpdateDataCellsFilterCommandInput
|
|
275
285
|
| UpdateLFTagCommandInput
|
|
276
286
|
| UpdateResourceCommandInput
|
|
277
287
|
| UpdateTableObjectsCommandInput
|
|
@@ -292,6 +302,7 @@ export declare type ServiceOutputTypes =
|
|
|
292
302
|
| DescribeResourceCommandOutput
|
|
293
303
|
| DescribeTransactionCommandOutput
|
|
294
304
|
| ExtendTransactionCommandOutput
|
|
305
|
+
| GetDataCellsFilterCommandOutput
|
|
295
306
|
| GetDataLakeSettingsCommandOutput
|
|
296
307
|
| GetEffectivePermissionsForPathCommandOutput
|
|
297
308
|
| GetLFTagCommandOutput
|
|
@@ -318,6 +329,7 @@ export declare type ServiceOutputTypes =
|
|
|
318
329
|
| SearchTablesByLFTagsCommandOutput
|
|
319
330
|
| StartQueryPlanningCommandOutput
|
|
320
331
|
| StartTransactionCommandOutput
|
|
332
|
+
| UpdateDataCellsFilterCommandOutput
|
|
321
333
|
| UpdateLFTagCommandOutput
|
|
322
334
|
| UpdateResourceCommandOutput
|
|
323
335
|
| UpdateTableObjectsCommandOutput
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
LakeFormationClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LakeFormationClient";
|
|
14
|
+
import {
|
|
15
|
+
GetDataCellsFilterRequest,
|
|
16
|
+
GetDataCellsFilterResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface GetDataCellsFilterCommandInput
|
|
19
|
+
extends GetDataCellsFilterRequest {}
|
|
20
|
+
export interface GetDataCellsFilterCommandOutput
|
|
21
|
+
extends GetDataCellsFilterResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetDataCellsFilterCommand extends $Command<
|
|
24
|
+
GetDataCellsFilterCommandInput,
|
|
25
|
+
GetDataCellsFilterCommandOutput,
|
|
26
|
+
LakeFormationClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetDataCellsFilterCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetDataCellsFilterCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: LakeFormationClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetDataCellsFilterCommandInput, GetDataCellsFilterCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
LakeFormationClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../LakeFormationClient";
|
|
14
|
+
import {
|
|
15
|
+
UpdateDataCellsFilterRequest,
|
|
16
|
+
UpdateDataCellsFilterResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface UpdateDataCellsFilterCommandInput
|
|
19
|
+
extends UpdateDataCellsFilterRequest {}
|
|
20
|
+
export interface UpdateDataCellsFilterCommandOutput
|
|
21
|
+
extends UpdateDataCellsFilterResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UpdateDataCellsFilterCommand extends $Command<
|
|
24
|
+
UpdateDataCellsFilterCommandInput,
|
|
25
|
+
UpdateDataCellsFilterCommandOutput,
|
|
26
|
+
LakeFormationClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateDataCellsFilterCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UpdateDataCellsFilterCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: LakeFormationClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateDataCellsFilterCommandInput,
|
|
37
|
+
UpdateDataCellsFilterCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -13,6 +13,7 @@ export * from "./DeregisterResourceCommand";
|
|
|
13
13
|
export * from "./DescribeResourceCommand";
|
|
14
14
|
export * from "./DescribeTransactionCommand";
|
|
15
15
|
export * from "./ExtendTransactionCommand";
|
|
16
|
+
export * from "./GetDataCellsFilterCommand";
|
|
16
17
|
export * from "./GetDataLakeSettingsCommand";
|
|
17
18
|
export * from "./GetEffectivePermissionsForPathCommand";
|
|
18
19
|
export * from "./GetLFTagCommand";
|
|
@@ -39,6 +40,7 @@ export * from "./SearchDatabasesByLFTagsCommand";
|
|
|
39
40
|
export * from "./SearchTablesByLFTagsCommand";
|
|
40
41
|
export * from "./StartQueryPlanningCommand";
|
|
41
42
|
export * from "./StartTransactionCommand";
|
|
43
|
+
export * from "./UpdateDataCellsFilterCommand";
|
|
42
44
|
export * from "./UpdateLFTagCommand";
|
|
43
45
|
export * from "./UpdateResourceCommand";
|
|
44
46
|
export * from "./UpdateTableObjectsCommand";
|
|
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
27
27
|
defaultSigningName: string;
|
|
28
28
|
};
|
|
29
29
|
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
-
Region
|
|
30
|
+
Region?: string;
|
|
31
31
|
UseDualStack?: boolean;
|
|
32
32
|
UseFIPS?: boolean;
|
|
33
33
|
Endpoint?: string;
|
|
@@ -260,6 +260,7 @@ export interface DataCellsFilter {
|
|
|
260
260
|
RowFilter?: RowFilter;
|
|
261
261
|
ColumnNames?: string[];
|
|
262
262
|
ColumnWildcard?: ColumnWildcard;
|
|
263
|
+
VersionId?: string;
|
|
263
264
|
}
|
|
264
265
|
export interface CreateDataCellsFilterRequest {
|
|
265
266
|
TableData: DataCellsFilter | undefined;
|
|
@@ -345,6 +346,15 @@ export interface ExtendTransactionRequest {
|
|
|
345
346
|
TransactionId?: string;
|
|
346
347
|
}
|
|
347
348
|
export interface ExtendTransactionResponse {}
|
|
349
|
+
export interface GetDataCellsFilterRequest {
|
|
350
|
+
TableCatalogId: string | undefined;
|
|
351
|
+
DatabaseName: string | undefined;
|
|
352
|
+
TableName: string | undefined;
|
|
353
|
+
Name: string | undefined;
|
|
354
|
+
}
|
|
355
|
+
export interface GetDataCellsFilterResponse {
|
|
356
|
+
DataCellsFilter?: DataCellsFilter;
|
|
357
|
+
}
|
|
348
358
|
export interface GetDataLakeSettingsRequest {
|
|
349
359
|
CatalogId?: string;
|
|
350
360
|
}
|
|
@@ -779,6 +789,10 @@ export interface StartTransactionRequest {
|
|
|
779
789
|
export interface StartTransactionResponse {
|
|
780
790
|
TransactionId?: string;
|
|
781
791
|
}
|
|
792
|
+
export interface UpdateDataCellsFilterRequest {
|
|
793
|
+
TableData: DataCellsFilter | undefined;
|
|
794
|
+
}
|
|
795
|
+
export interface UpdateDataCellsFilterResponse {}
|
|
782
796
|
export interface UpdateLFTagRequest {
|
|
783
797
|
CatalogId?: string;
|
|
784
798
|
TagKey: string | undefined;
|
|
@@ -969,6 +983,12 @@ export declare const ExtendTransactionRequestFilterSensitiveLog: (
|
|
|
969
983
|
export declare const ExtendTransactionResponseFilterSensitiveLog: (
|
|
970
984
|
obj: ExtendTransactionResponse
|
|
971
985
|
) => any;
|
|
986
|
+
export declare const GetDataCellsFilterRequestFilterSensitiveLog: (
|
|
987
|
+
obj: GetDataCellsFilterRequest
|
|
988
|
+
) => any;
|
|
989
|
+
export declare const GetDataCellsFilterResponseFilterSensitiveLog: (
|
|
990
|
+
obj: GetDataCellsFilterResponse
|
|
991
|
+
) => any;
|
|
972
992
|
export declare const GetDataLakeSettingsRequestFilterSensitiveLog: (
|
|
973
993
|
obj: GetDataLakeSettingsRequest
|
|
974
994
|
) => any;
|
|
@@ -1165,6 +1185,12 @@ export declare const StartTransactionRequestFilterSensitiveLog: (
|
|
|
1165
1185
|
export declare const StartTransactionResponseFilterSensitiveLog: (
|
|
1166
1186
|
obj: StartTransactionResponse
|
|
1167
1187
|
) => any;
|
|
1188
|
+
export declare const UpdateDataCellsFilterRequestFilterSensitiveLog: (
|
|
1189
|
+
obj: UpdateDataCellsFilterRequest
|
|
1190
|
+
) => any;
|
|
1191
|
+
export declare const UpdateDataCellsFilterResponseFilterSensitiveLog: (
|
|
1192
|
+
obj: UpdateDataCellsFilterResponse
|
|
1193
|
+
) => any;
|
|
1168
1194
|
export declare const UpdateLFTagRequestFilterSensitiveLog: (
|
|
1169
1195
|
obj: UpdateLFTagRequest
|
|
1170
1196
|
) => any;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { LakeFormation } from "../LakeFormation";
|
|
3
2
|
import { LakeFormationClient } from "../LakeFormationClient";
|
|
4
3
|
export interface LakeFormationPaginationConfiguration
|
|
5
4
|
extends PaginationConfiguration {
|
|
6
|
-
client:
|
|
5
|
+
client: LakeFormationClient;
|
|
7
6
|
}
|
|
@@ -66,6 +66,10 @@ import {
|
|
|
66
66
|
ExtendTransactionCommandInput,
|
|
67
67
|
ExtendTransactionCommandOutput,
|
|
68
68
|
} from "../commands/ExtendTransactionCommand";
|
|
69
|
+
import {
|
|
70
|
+
GetDataCellsFilterCommandInput,
|
|
71
|
+
GetDataCellsFilterCommandOutput,
|
|
72
|
+
} from "../commands/GetDataCellsFilterCommand";
|
|
69
73
|
import {
|
|
70
74
|
GetDataLakeSettingsCommandInput,
|
|
71
75
|
GetDataLakeSettingsCommandOutput,
|
|
@@ -170,6 +174,10 @@ import {
|
|
|
170
174
|
StartTransactionCommandInput,
|
|
171
175
|
StartTransactionCommandOutput,
|
|
172
176
|
} from "../commands/StartTransactionCommand";
|
|
177
|
+
import {
|
|
178
|
+
UpdateDataCellsFilterCommandInput,
|
|
179
|
+
UpdateDataCellsFilterCommandOutput,
|
|
180
|
+
} from "../commands/UpdateDataCellsFilterCommand";
|
|
173
181
|
import {
|
|
174
182
|
UpdateLFTagCommandInput,
|
|
175
183
|
UpdateLFTagCommandOutput,
|
|
@@ -246,6 +254,10 @@ export declare const serializeAws_restJson1ExtendTransactionCommand: (
|
|
|
246
254
|
input: ExtendTransactionCommandInput,
|
|
247
255
|
context: __SerdeContext
|
|
248
256
|
) => Promise<__HttpRequest>;
|
|
257
|
+
export declare const serializeAws_restJson1GetDataCellsFilterCommand: (
|
|
258
|
+
input: GetDataCellsFilterCommandInput,
|
|
259
|
+
context: __SerdeContext
|
|
260
|
+
) => Promise<__HttpRequest>;
|
|
249
261
|
export declare const serializeAws_restJson1GetDataLakeSettingsCommand: (
|
|
250
262
|
input: GetDataLakeSettingsCommandInput,
|
|
251
263
|
context: __SerdeContext
|
|
@@ -350,6 +362,10 @@ export declare const serializeAws_restJson1StartTransactionCommand: (
|
|
|
350
362
|
input: StartTransactionCommandInput,
|
|
351
363
|
context: __SerdeContext
|
|
352
364
|
) => Promise<__HttpRequest>;
|
|
365
|
+
export declare const serializeAws_restJson1UpdateDataCellsFilterCommand: (
|
|
366
|
+
input: UpdateDataCellsFilterCommandInput,
|
|
367
|
+
context: __SerdeContext
|
|
368
|
+
) => Promise<__HttpRequest>;
|
|
353
369
|
export declare const serializeAws_restJson1UpdateLFTagCommand: (
|
|
354
370
|
input: UpdateLFTagCommandInput,
|
|
355
371
|
context: __SerdeContext
|
|
@@ -426,6 +442,10 @@ export declare const deserializeAws_restJson1ExtendTransactionCommand: (
|
|
|
426
442
|
output: __HttpResponse,
|
|
427
443
|
context: __SerdeContext
|
|
428
444
|
) => Promise<ExtendTransactionCommandOutput>;
|
|
445
|
+
export declare const deserializeAws_restJson1GetDataCellsFilterCommand: (
|
|
446
|
+
output: __HttpResponse,
|
|
447
|
+
context: __SerdeContext
|
|
448
|
+
) => Promise<GetDataCellsFilterCommandOutput>;
|
|
429
449
|
export declare const deserializeAws_restJson1GetDataLakeSettingsCommand: (
|
|
430
450
|
output: __HttpResponse,
|
|
431
451
|
context: __SerdeContext
|
|
@@ -530,6 +550,10 @@ export declare const deserializeAws_restJson1StartTransactionCommand: (
|
|
|
530
550
|
output: __HttpResponse,
|
|
531
551
|
context: __SerdeContext
|
|
532
552
|
) => Promise<StartTransactionCommandOutput>;
|
|
553
|
+
export declare const deserializeAws_restJson1UpdateDataCellsFilterCommand: (
|
|
554
|
+
output: __HttpResponse,
|
|
555
|
+
context: __SerdeContext
|
|
556
|
+
) => Promise<UpdateDataCellsFilterCommandOutput>;
|
|
533
557
|
export declare const deserializeAws_restJson1UpdateLFTagCommand: (
|
|
534
558
|
output: __HttpResponse,
|
|
535
559
|
context: __SerdeContext
|
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.288.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",
|
|
@@ -20,23 +20,23 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.288.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.287.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.288.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.282.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.272.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
29
29
|
"@aws-sdk/middleware-content-length": "3.282.0",
|
|
30
30
|
"@aws-sdk/middleware-endpoint": "3.282.0",
|
|
31
31
|
"@aws-sdk/middleware-host-header": "3.282.0",
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.288.0",
|
|
33
33
|
"@aws-sdk/middleware-recursion-detection": "3.282.0",
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.287.0",
|
|
35
35
|
"@aws-sdk/middleware-serde": "3.272.0",
|
|
36
36
|
"@aws-sdk/middleware-signing": "3.282.0",
|
|
37
37
|
"@aws-sdk/middleware-stack": "3.272.0",
|
|
38
38
|
"@aws-sdk/middleware-user-agent": "3.282.0",
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.287.0",
|
|
40
40
|
"@aws-sdk/node-http-handler": "3.282.0",
|
|
41
41
|
"@aws-sdk/protocol-http": "3.282.0",
|
|
42
42
|
"@aws-sdk/smithy-client": "3.279.0",
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.287.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.272.0",
|
|
52
52
|
"@aws-sdk/util-stream-browser": "3.282.0",
|
|
53
53
|
"@aws-sdk/util-stream-node": "3.282.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-browser": "3.282.0",
|
|
55
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
55
|
+
"@aws-sdk/util-user-agent-node": "3.287.0",
|
|
56
56
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
57
57
|
"tslib": "^2.3.1"
|
|
58
58
|
},
|