@aws-sdk/client-s3tables 3.787.0 → 3.796.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.
Files changed (45) hide show
  1. package/README.md +33 -1
  2. package/dist-cjs/S3Tables.js +8 -0
  3. package/dist-cjs/commands/DeleteTableBucketEncryptionCommand.js +26 -0
  4. package/dist-cjs/commands/GetTableBucketEncryptionCommand.js +26 -0
  5. package/dist-cjs/commands/GetTableEncryptionCommand.js +26 -0
  6. package/dist-cjs/commands/PutTableBucketEncryptionCommand.js +26 -0
  7. package/dist-cjs/commands/index.js +4 -0
  8. package/dist-cjs/models/models_0.js +5 -1
  9. package/dist-cjs/protocols/Aws_restJson1.js +113 -2
  10. package/dist-es/S3Tables.js +8 -0
  11. package/dist-es/commands/DeleteTableBucketEncryptionCommand.js +22 -0
  12. package/dist-es/commands/GetTableBucketEncryptionCommand.js +22 -0
  13. package/dist-es/commands/GetTableEncryptionCommand.js +22 -0
  14. package/dist-es/commands/PutTableBucketEncryptionCommand.js +22 -0
  15. package/dist-es/commands/index.js +4 -0
  16. package/dist-es/models/models_0.js +4 -0
  17. package/dist-es/protocols/Aws_restJson1.js +103 -0
  18. package/dist-types/S3Tables.d.ts +29 -1
  19. package/dist-types/S3TablesClient.d.ts +7 -3
  20. package/dist-types/commands/CreateTableBucketCommand.d.ts +12 -1
  21. package/dist-types/commands/CreateTableCommand.d.ts +16 -2
  22. package/dist-types/commands/DeleteTableBucketEncryptionCommand.d.ts +95 -0
  23. package/dist-types/commands/GetNamespaceCommand.d.ts +2 -0
  24. package/dist-types/commands/GetTableBucketCommand.d.ts +1 -0
  25. package/dist-types/commands/GetTableBucketEncryptionCommand.d.ts +99 -0
  26. package/dist-types/commands/GetTableCommand.d.ts +2 -0
  27. package/dist-types/commands/GetTableEncryptionCommand.d.ts +101 -0
  28. package/dist-types/commands/ListNamespacesCommand.d.ts +2 -0
  29. package/dist-types/commands/ListTableBucketsCommand.d.ts +1 -0
  30. package/dist-types/commands/ListTablesCommand.d.ts +2 -0
  31. package/dist-types/commands/PutTableBucketEncryptionCommand.d.ts +103 -0
  32. package/dist-types/commands/index.d.ts +4 -0
  33. package/dist-types/index.d.ts +1 -1
  34. package/dist-types/models/models_0.d.ts +171 -12
  35. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  36. package/dist-types/ts3.4/S3Tables.d.ts +68 -0
  37. package/dist-types/ts3.4/S3TablesClient.d.ts +24 -0
  38. package/dist-types/ts3.4/commands/DeleteTableBucketEncryptionCommand.d.ts +47 -0
  39. package/dist-types/ts3.4/commands/GetTableBucketEncryptionCommand.d.ts +51 -0
  40. package/dist-types/ts3.4/commands/GetTableEncryptionCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/PutTableBucketEncryptionCommand.d.ts +47 -0
  42. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +42 -0
  44. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  45. package/package.json +5 -5
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetTableBucketEncryptionRequest,
5
+ GetTableBucketEncryptionResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3TablesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3TablesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTableBucketEncryptionCommandInput
15
+ extends GetTableBucketEncryptionRequest {}
16
+ export interface GetTableBucketEncryptionCommandOutput
17
+ extends GetTableBucketEncryptionResponse,
18
+ __MetadataBearer {}
19
+ declare const GetTableBucketEncryptionCommand_base: {
20
+ new (
21
+ input: GetTableBucketEncryptionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetTableBucketEncryptionCommandInput,
24
+ GetTableBucketEncryptionCommandOutput,
25
+ S3TablesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetTableBucketEncryptionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetTableBucketEncryptionCommandInput,
33
+ GetTableBucketEncryptionCommandOutput,
34
+ S3TablesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetTableBucketEncryptionCommand extends GetTableBucketEncryptionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetTableBucketEncryptionRequest;
44
+ output: GetTableBucketEncryptionResponse;
45
+ };
46
+ sdk: {
47
+ input: GetTableBucketEncryptionCommandInput;
48
+ output: GetTableBucketEncryptionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetTableEncryptionRequest,
5
+ GetTableEncryptionResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ S3TablesClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../S3TablesClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTableEncryptionCommandInput
15
+ extends GetTableEncryptionRequest {}
16
+ export interface GetTableEncryptionCommandOutput
17
+ extends GetTableEncryptionResponse,
18
+ __MetadataBearer {}
19
+ declare const GetTableEncryptionCommand_base: {
20
+ new (
21
+ input: GetTableEncryptionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetTableEncryptionCommandInput,
24
+ GetTableEncryptionCommandOutput,
25
+ S3TablesClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetTableEncryptionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetTableEncryptionCommandInput,
33
+ GetTableEncryptionCommandOutput,
34
+ S3TablesClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetTableEncryptionCommand extends GetTableEncryptionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetTableEncryptionRequest;
44
+ output: GetTableEncryptionResponse;
45
+ };
46
+ sdk: {
47
+ input: GetTableEncryptionCommandInput;
48
+ output: GetTableEncryptionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { PutTableBucketEncryptionRequest } from "../models/models_0";
4
+ import {
5
+ S3TablesClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../S3TablesClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface PutTableBucketEncryptionCommandInput
12
+ extends PutTableBucketEncryptionRequest {}
13
+ export interface PutTableBucketEncryptionCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const PutTableBucketEncryptionCommand_base: {
16
+ new (
17
+ input: PutTableBucketEncryptionCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ PutTableBucketEncryptionCommandInput,
20
+ PutTableBucketEncryptionCommandOutput,
21
+ S3TablesClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: PutTableBucketEncryptionCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ PutTableBucketEncryptionCommandInput,
29
+ PutTableBucketEncryptionCommandOutput,
30
+ S3TablesClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class PutTableBucketEncryptionCommand extends PutTableBucketEncryptionCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: PutTableBucketEncryptionRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: PutTableBucketEncryptionCommandInput;
44
+ output: PutTableBucketEncryptionCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -3,14 +3,17 @@ export * from "./CreateTableBucketCommand";
3
3
  export * from "./CreateTableCommand";
4
4
  export * from "./DeleteNamespaceCommand";
5
5
  export * from "./DeleteTableBucketCommand";
6
+ export * from "./DeleteTableBucketEncryptionCommand";
6
7
  export * from "./DeleteTableBucketPolicyCommand";
7
8
  export * from "./DeleteTableCommand";
8
9
  export * from "./DeleteTablePolicyCommand";
9
10
  export * from "./GetNamespaceCommand";
10
11
  export * from "./GetTableBucketCommand";
12
+ export * from "./GetTableBucketEncryptionCommand";
11
13
  export * from "./GetTableBucketMaintenanceConfigurationCommand";
12
14
  export * from "./GetTableBucketPolicyCommand";
13
15
  export * from "./GetTableCommand";
16
+ export * from "./GetTableEncryptionCommand";
14
17
  export * from "./GetTableMaintenanceConfigurationCommand";
15
18
  export * from "./GetTableMaintenanceJobStatusCommand";
16
19
  export * from "./GetTableMetadataLocationCommand";
@@ -18,6 +21,7 @@ export * from "./GetTablePolicyCommand";
18
21
  export * from "./ListNamespacesCommand";
19
22
  export * from "./ListTableBucketsCommand";
20
23
  export * from "./ListTablesCommand";
24
+ export * from "./PutTableBucketEncryptionCommand";
21
25
  export * from "./PutTableBucketMaintenanceConfigurationCommand";
22
26
  export * from "./PutTableBucketPolicyCommand";
23
27
  export * from "./PutTableMaintenanceConfigurationCommand";
@@ -51,6 +51,15 @@ export declare class TooManyRequestsException extends __BaseException {
51
51
  opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
52
52
  );
53
53
  }
54
+ export declare const SSEAlgorithm: {
55
+ readonly AES256: "AES256";
56
+ readonly AWS_KMS: "aws:kms";
57
+ };
58
+ export type SSEAlgorithm = (typeof SSEAlgorithm)[keyof typeof SSEAlgorithm];
59
+ export interface EncryptionConfiguration {
60
+ sseAlgorithm: SSEAlgorithm | undefined;
61
+ kmsKeyArn?: string | undefined;
62
+ }
54
63
  export declare const OpenTableFormat: {
55
64
  readonly ICEBERG: "ICEBERG";
56
65
  };
@@ -91,6 +100,7 @@ export interface CreateTableRequest {
91
100
  name: string | undefined;
92
101
  format: OpenTableFormat | undefined;
93
102
  metadata?: TableMetadata | undefined;
103
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
94
104
  }
95
105
  export interface CreateTableResponse {
96
106
  tableARN: string | undefined;
@@ -98,6 +108,7 @@ export interface CreateTableResponse {
98
108
  }
99
109
  export interface CreateTableBucketRequest {
100
110
  name: string | undefined;
111
+ encryptionConfiguration?: EncryptionConfiguration | undefined;
101
112
  }
102
113
  export interface CreateTableBucketResponse {
103
114
  arn: string | undefined;
@@ -115,6 +126,9 @@ export interface DeleteTableRequest {
115
126
  export interface DeleteTableBucketRequest {
116
127
  tableBucketARN: string | undefined;
117
128
  }
129
+ export interface DeleteTableBucketEncryptionRequest {
130
+ tableBucketARN: string | undefined;
131
+ }
118
132
  export interface DeleteTableBucketPolicyRequest {
119
133
  tableBucketARN: string | undefined;
120
134
  }
@@ -132,6 +146,8 @@ export interface GetNamespaceResponse {
132
146
  createdAt: Date | undefined;
133
147
  createdBy: string | undefined;
134
148
  ownerAccountId: string | undefined;
149
+ namespaceId?: string | undefined;
150
+ tableBucketId?: string | undefined;
135
151
  }
136
152
  export interface GetTableRequest {
137
153
  tableBucketARN: string | undefined;
@@ -148,6 +164,7 @@ export interface GetTableResponse {
148
164
  type: TableType | undefined;
149
165
  tableARN: string | undefined;
150
166
  namespace: string[] | undefined;
167
+ namespaceId?: string | undefined;
151
168
  versionToken: string | undefined;
152
169
  metadataLocation?: string | undefined;
153
170
  warehouseLocation: string | undefined;
@@ -158,6 +175,7 @@ export interface GetTableResponse {
158
175
  modifiedBy: string | undefined;
159
176
  ownerAccountId: string | undefined;
160
177
  format: OpenTableFormat | undefined;
178
+ tableBucketId?: string | undefined;
161
179
  }
162
180
  export interface GetTableBucketRequest {
163
181
  tableBucketARN: string | undefined;
@@ -167,6 +185,13 @@ export interface GetTableBucketResponse {
167
185
  name: string | undefined;
168
186
  ownerAccountId: string | undefined;
169
187
  createdAt: Date | undefined;
188
+ tableBucketId?: string | undefined;
189
+ }
190
+ export interface GetTableBucketEncryptionRequest {
191
+ tableBucketARN: string | undefined;
192
+ }
193
+ export interface GetTableBucketEncryptionResponse {
194
+ encryptionConfiguration: EncryptionConfiguration | undefined;
170
195
  }
171
196
  export interface GetTableBucketMaintenanceConfigurationRequest {
172
197
  tableBucketARN: string | undefined;
@@ -230,6 +255,14 @@ export interface GetTableBucketPolicyRequest {
230
255
  export interface GetTableBucketPolicyResponse {
231
256
  resourcePolicy: string | undefined;
232
257
  }
258
+ export interface GetTableEncryptionRequest {
259
+ tableBucketARN: string | undefined;
260
+ namespace: string | undefined;
261
+ name: string | undefined;
262
+ }
263
+ export interface GetTableEncryptionResponse {
264
+ encryptionConfiguration: EncryptionConfiguration | undefined;
265
+ }
233
266
  export interface GetTableMaintenanceConfigurationRequest {
234
267
  tableBucketARN: string | undefined;
235
268
  namespace: string | undefined;
@@ -344,6 +377,8 @@ export interface NamespaceSummary {
344
377
  createdAt: Date | undefined;
345
378
  createdBy: string | undefined;
346
379
  ownerAccountId: string | undefined;
380
+ namespaceId?: string | undefined;
381
+ tableBucketId?: string | undefined;
347
382
  }
348
383
  export interface ListNamespacesResponse {
349
384
  namespaces: NamespaceSummary[] | undefined;
@@ -359,6 +394,7 @@ export interface TableBucketSummary {
359
394
  name: string | undefined;
360
395
  ownerAccountId: string | undefined;
361
396
  createdAt: Date | undefined;
397
+ tableBucketId?: string | undefined;
362
398
  }
363
399
  export interface ListTableBucketsResponse {
364
400
  tableBuckets: TableBucketSummary[] | undefined;
@@ -378,11 +414,17 @@ export interface TableSummary {
378
414
  tableARN: string | undefined;
379
415
  createdAt: Date | undefined;
380
416
  modifiedAt: Date | undefined;
417
+ namespaceId?: string | undefined;
418
+ tableBucketId?: string | undefined;
381
419
  }
382
420
  export interface ListTablesResponse {
383
421
  tables: TableSummary[] | undefined;
384
422
  continuationToken?: string | undefined;
385
423
  }
424
+ export interface PutTableBucketEncryptionRequest {
425
+ tableBucketARN: string | undefined;
426
+ encryptionConfiguration: EncryptionConfiguration | undefined;
427
+ }
386
428
  export interface PutTableBucketMaintenanceConfigurationRequest {
387
429
  tableBucketARN: string | undefined;
388
430
  type: TableBucketMaintenanceType | undefined;
@@ -23,6 +23,10 @@ import {
23
23
  DeleteTableBucketCommandInput,
24
24
  DeleteTableBucketCommandOutput,
25
25
  } from "../commands/DeleteTableBucketCommand";
26
+ import {
27
+ DeleteTableBucketEncryptionCommandInput,
28
+ DeleteTableBucketEncryptionCommandOutput,
29
+ } from "../commands/DeleteTableBucketEncryptionCommand";
26
30
  import {
27
31
  DeleteTableBucketPolicyCommandInput,
28
32
  DeleteTableBucketPolicyCommandOutput,
@@ -43,6 +47,10 @@ import {
43
47
  GetTableBucketCommandInput,
44
48
  GetTableBucketCommandOutput,
45
49
  } from "../commands/GetTableBucketCommand";
50
+ import {
51
+ GetTableBucketEncryptionCommandInput,
52
+ GetTableBucketEncryptionCommandOutput,
53
+ } from "../commands/GetTableBucketEncryptionCommand";
46
54
  import {
47
55
  GetTableBucketMaintenanceConfigurationCommandInput,
48
56
  GetTableBucketMaintenanceConfigurationCommandOutput,
@@ -55,6 +63,10 @@ import {
55
63
  GetTableCommandInput,
56
64
  GetTableCommandOutput,
57
65
  } from "../commands/GetTableCommand";
66
+ import {
67
+ GetTableEncryptionCommandInput,
68
+ GetTableEncryptionCommandOutput,
69
+ } from "../commands/GetTableEncryptionCommand";
58
70
  import {
59
71
  GetTableMaintenanceConfigurationCommandInput,
60
72
  GetTableMaintenanceConfigurationCommandOutput,
@@ -83,6 +95,10 @@ import {
83
95
  ListTablesCommandInput,
84
96
  ListTablesCommandOutput,
85
97
  } from "../commands/ListTablesCommand";
98
+ import {
99
+ PutTableBucketEncryptionCommandInput,
100
+ PutTableBucketEncryptionCommandOutput,
101
+ } from "../commands/PutTableBucketEncryptionCommand";
86
102
  import {
87
103
  PutTableBucketMaintenanceConfigurationCommandInput,
88
104
  PutTableBucketMaintenanceConfigurationCommandOutput,
@@ -131,6 +147,10 @@ export declare const se_DeleteTableBucketCommand: (
131
147
  input: DeleteTableBucketCommandInput,
132
148
  context: __SerdeContext
133
149
  ) => Promise<__HttpRequest>;
150
+ export declare const se_DeleteTableBucketEncryptionCommand: (
151
+ input: DeleteTableBucketEncryptionCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
134
154
  export declare const se_DeleteTableBucketPolicyCommand: (
135
155
  input: DeleteTableBucketPolicyCommandInput,
136
156
  context: __SerdeContext
@@ -151,6 +171,10 @@ export declare const se_GetTableBucketCommand: (
151
171
  input: GetTableBucketCommandInput,
152
172
  context: __SerdeContext
153
173
  ) => Promise<__HttpRequest>;
174
+ export declare const se_GetTableBucketEncryptionCommand: (
175
+ input: GetTableBucketEncryptionCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
154
178
  export declare const se_GetTableBucketMaintenanceConfigurationCommand: (
155
179
  input: GetTableBucketMaintenanceConfigurationCommandInput,
156
180
  context: __SerdeContext
@@ -159,6 +183,10 @@ export declare const se_GetTableBucketPolicyCommand: (
159
183
  input: GetTableBucketPolicyCommandInput,
160
184
  context: __SerdeContext
161
185
  ) => Promise<__HttpRequest>;
186
+ export declare const se_GetTableEncryptionCommand: (
187
+ input: GetTableEncryptionCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
162
190
  export declare const se_GetTableMaintenanceConfigurationCommand: (
163
191
  input: GetTableMaintenanceConfigurationCommandInput,
164
192
  context: __SerdeContext
@@ -187,6 +215,10 @@ export declare const se_ListTablesCommand: (
187
215
  input: ListTablesCommandInput,
188
216
  context: __SerdeContext
189
217
  ) => Promise<__HttpRequest>;
218
+ export declare const se_PutTableBucketEncryptionCommand: (
219
+ input: PutTableBucketEncryptionCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
190
222
  export declare const se_PutTableBucketMaintenanceConfigurationCommand: (
191
223
  input: PutTableBucketMaintenanceConfigurationCommandInput,
192
224
  context: __SerdeContext
@@ -235,6 +267,10 @@ export declare const de_DeleteTableBucketCommand: (
235
267
  output: __HttpResponse,
236
268
  context: __SerdeContext
237
269
  ) => Promise<DeleteTableBucketCommandOutput>;
270
+ export declare const de_DeleteTableBucketEncryptionCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<DeleteTableBucketEncryptionCommandOutput>;
238
274
  export declare const de_DeleteTableBucketPolicyCommand: (
239
275
  output: __HttpResponse,
240
276
  context: __SerdeContext
@@ -255,6 +291,10 @@ export declare const de_GetTableBucketCommand: (
255
291
  output: __HttpResponse,
256
292
  context: __SerdeContext
257
293
  ) => Promise<GetTableBucketCommandOutput>;
294
+ export declare const de_GetTableBucketEncryptionCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<GetTableBucketEncryptionCommandOutput>;
258
298
  export declare const de_GetTableBucketMaintenanceConfigurationCommand: (
259
299
  output: __HttpResponse,
260
300
  context: __SerdeContext
@@ -263,6 +303,10 @@ export declare const de_GetTableBucketPolicyCommand: (
263
303
  output: __HttpResponse,
264
304
  context: __SerdeContext
265
305
  ) => Promise<GetTableBucketPolicyCommandOutput>;
306
+ export declare const de_GetTableEncryptionCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<GetTableEncryptionCommandOutput>;
266
310
  export declare const de_GetTableMaintenanceConfigurationCommand: (
267
311
  output: __HttpResponse,
268
312
  context: __SerdeContext
@@ -291,6 +335,10 @@ export declare const de_ListTablesCommand: (
291
335
  output: __HttpResponse,
292
336
  context: __SerdeContext
293
337
  ) => Promise<ListTablesCommandOutput>;
338
+ export declare const de_PutTableBucketEncryptionCommand: (
339
+ output: __HttpResponse,
340
+ context: __SerdeContext
341
+ ) => Promise<PutTableBucketEncryptionCommandOutput>;
294
342
  export declare const de_PutTableBucketMaintenanceConfigurationCommand: (
295
343
  output: __HttpResponse,
296
344
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3tables",
3
3
  "description": "AWS SDK for JavaScript S3tables Client for Node.js, Browser and React Native",
4
- "version": "3.787.0",
4
+ "version": "3.796.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,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.775.0",
24
- "@aws-sdk/credential-provider-node": "3.787.0",
23
+ "@aws-sdk/core": "3.796.0",
24
+ "@aws-sdk/credential-provider-node": "3.796.0",
25
25
  "@aws-sdk/middleware-host-header": "3.775.0",
26
26
  "@aws-sdk/middleware-logger": "3.775.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.775.0",
28
- "@aws-sdk/middleware-user-agent": "3.787.0",
28
+ "@aws-sdk/middleware-user-agent": "3.796.0",
29
29
  "@aws-sdk/region-config-resolver": "3.775.0",
30
30
  "@aws-sdk/types": "3.775.0",
31
31
  "@aws-sdk/util-endpoints": "3.787.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.775.0",
33
- "@aws-sdk/util-user-agent-node": "3.787.0",
33
+ "@aws-sdk/util-user-agent-node": "3.796.0",
34
34
  "@smithy/config-resolver": "^4.1.0",
35
35
  "@smithy/core": "^3.2.0",
36
36
  "@smithy/fetch-http-handler": "^5.0.2",