@aws-sdk/client-s3tables 3.929.0 → 3.931.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 +24 -0
- package/dist-cjs/index.js +100 -28
- package/dist-es/S3Tables.js +6 -0
- package/dist-es/commands/DeleteTableBucketMetricsConfigurationCommand.js +16 -0
- package/dist-es/commands/GetTableBucketMetricsConfigurationCommand.js +16 -0
- package/dist-es/commands/PutTableBucketMetricsConfigurationCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +0 -26
- package/dist-es/schemas/schemas_0.js +58 -2
- package/dist-types/S3Tables.d.ts +21 -0
- package/dist-types/S3TablesClient.d.ts +5 -2
- package/dist-types/commands/DeleteTableBucketMetricsConfigurationCommand.d.ts +90 -0
- package/dist-types/commands/GetTableBucketMetricsConfigurationCommand.d.ts +93 -0
- package/dist-types/commands/PutTableBucketMetricsConfigurationCommand.d.ts +90 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +57 -3
- package/dist-types/schemas/schemas_0.d.ts +7 -0
- package/dist-types/ts3.4/S3Tables.d.ts +69 -0
- package/dist-types/ts3.4/S3TablesClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DeleteTableBucketMetricsConfigurationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetTableBucketMetricsConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutTableBucketMetricsConfigurationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +13 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
- package/package.json +33 -33
|
@@ -23,6 +23,10 @@ import {
|
|
|
23
23
|
DeleteTableBucketEncryptionCommandInput,
|
|
24
24
|
DeleteTableBucketEncryptionCommandOutput,
|
|
25
25
|
} from "./commands/DeleteTableBucketEncryptionCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteTableBucketMetricsConfigurationCommandInput,
|
|
28
|
+
DeleteTableBucketMetricsConfigurationCommandOutput,
|
|
29
|
+
} from "./commands/DeleteTableBucketMetricsConfigurationCommand";
|
|
26
30
|
import {
|
|
27
31
|
DeleteTableBucketPolicyCommandInput,
|
|
28
32
|
DeleteTableBucketPolicyCommandOutput,
|
|
@@ -51,6 +55,10 @@ import {
|
|
|
51
55
|
GetTableBucketMaintenanceConfigurationCommandInput,
|
|
52
56
|
GetTableBucketMaintenanceConfigurationCommandOutput,
|
|
53
57
|
} from "./commands/GetTableBucketMaintenanceConfigurationCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetTableBucketMetricsConfigurationCommandInput,
|
|
60
|
+
GetTableBucketMetricsConfigurationCommandOutput,
|
|
61
|
+
} from "./commands/GetTableBucketMetricsConfigurationCommand";
|
|
54
62
|
import {
|
|
55
63
|
GetTableBucketPolicyCommandInput,
|
|
56
64
|
GetTableBucketPolicyCommandOutput,
|
|
@@ -103,6 +111,10 @@ import {
|
|
|
103
111
|
PutTableBucketMaintenanceConfigurationCommandInput,
|
|
104
112
|
PutTableBucketMaintenanceConfigurationCommandOutput,
|
|
105
113
|
} from "./commands/PutTableBucketMaintenanceConfigurationCommand";
|
|
114
|
+
import {
|
|
115
|
+
PutTableBucketMetricsConfigurationCommandInput,
|
|
116
|
+
PutTableBucketMetricsConfigurationCommandOutput,
|
|
117
|
+
} from "./commands/PutTableBucketMetricsConfigurationCommand";
|
|
106
118
|
import {
|
|
107
119
|
PutTableBucketPolicyCommandInput,
|
|
108
120
|
PutTableBucketPolicyCommandOutput,
|
|
@@ -224,6 +236,25 @@ export interface S3Tables {
|
|
|
224
236
|
options: __HttpHandlerOptions,
|
|
225
237
|
cb: (err: any, data?: DeleteTableBucketEncryptionCommandOutput) => void
|
|
226
238
|
): void;
|
|
239
|
+
deleteTableBucketMetricsConfiguration(
|
|
240
|
+
args: DeleteTableBucketMetricsConfigurationCommandInput,
|
|
241
|
+
options?: __HttpHandlerOptions
|
|
242
|
+
): Promise<DeleteTableBucketMetricsConfigurationCommandOutput>;
|
|
243
|
+
deleteTableBucketMetricsConfiguration(
|
|
244
|
+
args: DeleteTableBucketMetricsConfigurationCommandInput,
|
|
245
|
+
cb: (
|
|
246
|
+
err: any,
|
|
247
|
+
data?: DeleteTableBucketMetricsConfigurationCommandOutput
|
|
248
|
+
) => void
|
|
249
|
+
): void;
|
|
250
|
+
deleteTableBucketMetricsConfiguration(
|
|
251
|
+
args: DeleteTableBucketMetricsConfigurationCommandInput,
|
|
252
|
+
options: __HttpHandlerOptions,
|
|
253
|
+
cb: (
|
|
254
|
+
err: any,
|
|
255
|
+
data?: DeleteTableBucketMetricsConfigurationCommandOutput
|
|
256
|
+
) => void
|
|
257
|
+
): void;
|
|
227
258
|
deleteTableBucketPolicy(
|
|
228
259
|
args: DeleteTableBucketPolicyCommandInput,
|
|
229
260
|
options?: __HttpHandlerOptions
|
|
@@ -322,6 +353,25 @@ export interface S3Tables {
|
|
|
322
353
|
data?: GetTableBucketMaintenanceConfigurationCommandOutput
|
|
323
354
|
) => void
|
|
324
355
|
): void;
|
|
356
|
+
getTableBucketMetricsConfiguration(
|
|
357
|
+
args: GetTableBucketMetricsConfigurationCommandInput,
|
|
358
|
+
options?: __HttpHandlerOptions
|
|
359
|
+
): Promise<GetTableBucketMetricsConfigurationCommandOutput>;
|
|
360
|
+
getTableBucketMetricsConfiguration(
|
|
361
|
+
args: GetTableBucketMetricsConfigurationCommandInput,
|
|
362
|
+
cb: (
|
|
363
|
+
err: any,
|
|
364
|
+
data?: GetTableBucketMetricsConfigurationCommandOutput
|
|
365
|
+
) => void
|
|
366
|
+
): void;
|
|
367
|
+
getTableBucketMetricsConfiguration(
|
|
368
|
+
args: GetTableBucketMetricsConfigurationCommandInput,
|
|
369
|
+
options: __HttpHandlerOptions,
|
|
370
|
+
cb: (
|
|
371
|
+
err: any,
|
|
372
|
+
data?: GetTableBucketMetricsConfigurationCommandOutput
|
|
373
|
+
) => void
|
|
374
|
+
): void;
|
|
325
375
|
getTableBucketPolicy(
|
|
326
376
|
args: GetTableBucketPolicyCommandInput,
|
|
327
377
|
options?: __HttpHandlerOptions
|
|
@@ -485,6 +535,25 @@ export interface S3Tables {
|
|
|
485
535
|
data?: PutTableBucketMaintenanceConfigurationCommandOutput
|
|
486
536
|
) => void
|
|
487
537
|
): void;
|
|
538
|
+
putTableBucketMetricsConfiguration(
|
|
539
|
+
args: PutTableBucketMetricsConfigurationCommandInput,
|
|
540
|
+
options?: __HttpHandlerOptions
|
|
541
|
+
): Promise<PutTableBucketMetricsConfigurationCommandOutput>;
|
|
542
|
+
putTableBucketMetricsConfiguration(
|
|
543
|
+
args: PutTableBucketMetricsConfigurationCommandInput,
|
|
544
|
+
cb: (
|
|
545
|
+
err: any,
|
|
546
|
+
data?: PutTableBucketMetricsConfigurationCommandOutput
|
|
547
|
+
) => void
|
|
548
|
+
): void;
|
|
549
|
+
putTableBucketMetricsConfiguration(
|
|
550
|
+
args: PutTableBucketMetricsConfigurationCommandInput,
|
|
551
|
+
options: __HttpHandlerOptions,
|
|
552
|
+
cb: (
|
|
553
|
+
err: any,
|
|
554
|
+
data?: PutTableBucketMetricsConfigurationCommandOutput
|
|
555
|
+
) => void
|
|
556
|
+
): void;
|
|
488
557
|
putTableBucketPolicy(
|
|
489
558
|
args: PutTableBucketPolicyCommandInput,
|
|
490
559
|
options?: __HttpHandlerOptions
|
|
@@ -72,6 +72,10 @@ import {
|
|
|
72
72
|
DeleteTableBucketEncryptionCommandInput,
|
|
73
73
|
DeleteTableBucketEncryptionCommandOutput,
|
|
74
74
|
} from "./commands/DeleteTableBucketEncryptionCommand";
|
|
75
|
+
import {
|
|
76
|
+
DeleteTableBucketMetricsConfigurationCommandInput,
|
|
77
|
+
DeleteTableBucketMetricsConfigurationCommandOutput,
|
|
78
|
+
} from "./commands/DeleteTableBucketMetricsConfigurationCommand";
|
|
75
79
|
import {
|
|
76
80
|
DeleteTableBucketPolicyCommandInput,
|
|
77
81
|
DeleteTableBucketPolicyCommandOutput,
|
|
@@ -100,6 +104,10 @@ import {
|
|
|
100
104
|
GetTableBucketMaintenanceConfigurationCommandInput,
|
|
101
105
|
GetTableBucketMaintenanceConfigurationCommandOutput,
|
|
102
106
|
} from "./commands/GetTableBucketMaintenanceConfigurationCommand";
|
|
107
|
+
import {
|
|
108
|
+
GetTableBucketMetricsConfigurationCommandInput,
|
|
109
|
+
GetTableBucketMetricsConfigurationCommandOutput,
|
|
110
|
+
} from "./commands/GetTableBucketMetricsConfigurationCommand";
|
|
103
111
|
import {
|
|
104
112
|
GetTableBucketPolicyCommandInput,
|
|
105
113
|
GetTableBucketPolicyCommandOutput,
|
|
@@ -152,6 +160,10 @@ import {
|
|
|
152
160
|
PutTableBucketMaintenanceConfigurationCommandInput,
|
|
153
161
|
PutTableBucketMaintenanceConfigurationCommandOutput,
|
|
154
162
|
} from "./commands/PutTableBucketMaintenanceConfigurationCommand";
|
|
163
|
+
import {
|
|
164
|
+
PutTableBucketMetricsConfigurationCommandInput,
|
|
165
|
+
PutTableBucketMetricsConfigurationCommandOutput,
|
|
166
|
+
} from "./commands/PutTableBucketMetricsConfigurationCommand";
|
|
155
167
|
import {
|
|
156
168
|
PutTableBucketPolicyCommandInput,
|
|
157
169
|
PutTableBucketPolicyCommandOutput,
|
|
@@ -194,6 +206,7 @@ export type ServiceInputTypes =
|
|
|
194
206
|
| DeleteNamespaceCommandInput
|
|
195
207
|
| DeleteTableBucketCommandInput
|
|
196
208
|
| DeleteTableBucketEncryptionCommandInput
|
|
209
|
+
| DeleteTableBucketMetricsConfigurationCommandInput
|
|
197
210
|
| DeleteTableBucketPolicyCommandInput
|
|
198
211
|
| DeleteTableCommandInput
|
|
199
212
|
| DeleteTablePolicyCommandInput
|
|
@@ -201,6 +214,7 @@ export type ServiceInputTypes =
|
|
|
201
214
|
| GetTableBucketCommandInput
|
|
202
215
|
| GetTableBucketEncryptionCommandInput
|
|
203
216
|
| GetTableBucketMaintenanceConfigurationCommandInput
|
|
217
|
+
| GetTableBucketMetricsConfigurationCommandInput
|
|
204
218
|
| GetTableBucketPolicyCommandInput
|
|
205
219
|
| GetTableCommandInput
|
|
206
220
|
| GetTableEncryptionCommandInput
|
|
@@ -214,6 +228,7 @@ export type ServiceInputTypes =
|
|
|
214
228
|
| ListTagsForResourceCommandInput
|
|
215
229
|
| PutTableBucketEncryptionCommandInput
|
|
216
230
|
| PutTableBucketMaintenanceConfigurationCommandInput
|
|
231
|
+
| PutTableBucketMetricsConfigurationCommandInput
|
|
217
232
|
| PutTableBucketPolicyCommandInput
|
|
218
233
|
| PutTableMaintenanceConfigurationCommandInput
|
|
219
234
|
| PutTablePolicyCommandInput
|
|
@@ -228,6 +243,7 @@ export type ServiceOutputTypes =
|
|
|
228
243
|
| DeleteNamespaceCommandOutput
|
|
229
244
|
| DeleteTableBucketCommandOutput
|
|
230
245
|
| DeleteTableBucketEncryptionCommandOutput
|
|
246
|
+
| DeleteTableBucketMetricsConfigurationCommandOutput
|
|
231
247
|
| DeleteTableBucketPolicyCommandOutput
|
|
232
248
|
| DeleteTableCommandOutput
|
|
233
249
|
| DeleteTablePolicyCommandOutput
|
|
@@ -235,6 +251,7 @@ export type ServiceOutputTypes =
|
|
|
235
251
|
| GetTableBucketCommandOutput
|
|
236
252
|
| GetTableBucketEncryptionCommandOutput
|
|
237
253
|
| GetTableBucketMaintenanceConfigurationCommandOutput
|
|
254
|
+
| GetTableBucketMetricsConfigurationCommandOutput
|
|
238
255
|
| GetTableBucketPolicyCommandOutput
|
|
239
256
|
| GetTableCommandOutput
|
|
240
257
|
| GetTableEncryptionCommandOutput
|
|
@@ -248,6 +265,7 @@ export type ServiceOutputTypes =
|
|
|
248
265
|
| ListTagsForResourceCommandOutput
|
|
249
266
|
| PutTableBucketEncryptionCommandOutput
|
|
250
267
|
| PutTableBucketMaintenanceConfigurationCommandOutput
|
|
268
|
+
| PutTableBucketMetricsConfigurationCommandOutput
|
|
251
269
|
| PutTableBucketPolicyCommandOutput
|
|
252
270
|
| PutTableMaintenanceConfigurationCommandOutput
|
|
253
271
|
| PutTablePolicyCommandOutput
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteTableBucketMetricsConfigurationRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3TablesClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3TablesClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteTableBucketMetricsConfigurationCommandInput
|
|
12
|
+
extends DeleteTableBucketMetricsConfigurationRequest {}
|
|
13
|
+
export interface DeleteTableBucketMetricsConfigurationCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const DeleteTableBucketMetricsConfigurationCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteTableBucketMetricsConfigurationCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteTableBucketMetricsConfigurationCommandInput,
|
|
20
|
+
DeleteTableBucketMetricsConfigurationCommandOutput,
|
|
21
|
+
S3TablesClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: DeleteTableBucketMetricsConfigurationCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteTableBucketMetricsConfigurationCommandInput,
|
|
29
|
+
DeleteTableBucketMetricsConfigurationCommandOutput,
|
|
30
|
+
S3TablesClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteTableBucketMetricsConfigurationCommand extends DeleteTableBucketMetricsConfigurationCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteTableBucketMetricsConfigurationRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteTableBucketMetricsConfigurationCommandInput;
|
|
44
|
+
output: DeleteTableBucketMetricsConfigurationCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetTableBucketMetricsConfigurationRequest,
|
|
5
|
+
GetTableBucketMetricsConfigurationResponse,
|
|
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 GetTableBucketMetricsConfigurationCommandInput
|
|
15
|
+
extends GetTableBucketMetricsConfigurationRequest {}
|
|
16
|
+
export interface GetTableBucketMetricsConfigurationCommandOutput
|
|
17
|
+
extends GetTableBucketMetricsConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetTableBucketMetricsConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetTableBucketMetricsConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetTableBucketMetricsConfigurationCommandInput,
|
|
24
|
+
GetTableBucketMetricsConfigurationCommandOutput,
|
|
25
|
+
S3TablesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetTableBucketMetricsConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetTableBucketMetricsConfigurationCommandInput,
|
|
33
|
+
GetTableBucketMetricsConfigurationCommandOutput,
|
|
34
|
+
S3TablesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetTableBucketMetricsConfigurationCommand extends GetTableBucketMetricsConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetTableBucketMetricsConfigurationRequest;
|
|
44
|
+
output: GetTableBucketMetricsConfigurationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetTableBucketMetricsConfigurationCommandInput;
|
|
48
|
+
output: GetTableBucketMetricsConfigurationCommandOutput;
|
|
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 { PutTableBucketMetricsConfigurationRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3TablesClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3TablesClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface PutTableBucketMetricsConfigurationCommandInput
|
|
12
|
+
extends PutTableBucketMetricsConfigurationRequest {}
|
|
13
|
+
export interface PutTableBucketMetricsConfigurationCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const PutTableBucketMetricsConfigurationCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: PutTableBucketMetricsConfigurationCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
PutTableBucketMetricsConfigurationCommandInput,
|
|
20
|
+
PutTableBucketMetricsConfigurationCommandOutput,
|
|
21
|
+
S3TablesClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: PutTableBucketMetricsConfigurationCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
PutTableBucketMetricsConfigurationCommandInput,
|
|
29
|
+
PutTableBucketMetricsConfigurationCommandOutput,
|
|
30
|
+
S3TablesClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class PutTableBucketMetricsConfigurationCommand extends PutTableBucketMetricsConfigurationCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: PutTableBucketMetricsConfigurationRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: PutTableBucketMetricsConfigurationCommandInput;
|
|
44
|
+
output: PutTableBucketMetricsConfigurationCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -4,6 +4,7 @@ export * from "./CreateTableCommand";
|
|
|
4
4
|
export * from "./DeleteNamespaceCommand";
|
|
5
5
|
export * from "./DeleteTableBucketCommand";
|
|
6
6
|
export * from "./DeleteTableBucketEncryptionCommand";
|
|
7
|
+
export * from "./DeleteTableBucketMetricsConfigurationCommand";
|
|
7
8
|
export * from "./DeleteTableBucketPolicyCommand";
|
|
8
9
|
export * from "./DeleteTableCommand";
|
|
9
10
|
export * from "./DeleteTablePolicyCommand";
|
|
@@ -11,6 +12,7 @@ export * from "./GetNamespaceCommand";
|
|
|
11
12
|
export * from "./GetTableBucketCommand";
|
|
12
13
|
export * from "./GetTableBucketEncryptionCommand";
|
|
13
14
|
export * from "./GetTableBucketMaintenanceConfigurationCommand";
|
|
15
|
+
export * from "./GetTableBucketMetricsConfigurationCommand";
|
|
14
16
|
export * from "./GetTableBucketPolicyCommand";
|
|
15
17
|
export * from "./GetTableCommand";
|
|
16
18
|
export * from "./GetTableEncryptionCommand";
|
|
@@ -24,6 +26,7 @@ export * from "./ListTablesCommand";
|
|
|
24
26
|
export * from "./ListTagsForResourceCommand";
|
|
25
27
|
export * from "./PutTableBucketEncryptionCommand";
|
|
26
28
|
export * from "./PutTableBucketMaintenanceConfigurationCommand";
|
|
29
|
+
export * from "./PutTableBucketMetricsConfigurationCommand";
|
|
27
30
|
export * from "./PutTableBucketPolicyCommand";
|
|
28
31
|
export * from "./PutTableMaintenanceConfigurationCommand";
|
|
29
32
|
export * from "./PutTablePolicyCommand";
|
|
@@ -92,7 +92,6 @@ export declare namespace TableMetadata {
|
|
|
92
92
|
iceberg: (value: IcebergMetadata) => T;
|
|
93
93
|
_: (name: string, value: any) => T;
|
|
94
94
|
}
|
|
95
|
-
const visit: <T>(value: TableMetadata, visitor: Visitor<T>) => T;
|
|
96
95
|
}
|
|
97
96
|
export interface CreateTableRequest {
|
|
98
97
|
tableBucketARN: string | undefined;
|
|
@@ -131,6 +130,9 @@ export interface DeleteTableBucketRequest {
|
|
|
131
130
|
export interface DeleteTableBucketEncryptionRequest {
|
|
132
131
|
tableBucketARN: string | undefined;
|
|
133
132
|
}
|
|
133
|
+
export interface DeleteTableBucketMetricsConfigurationRequest {
|
|
134
|
+
tableBucketARN: string | undefined;
|
|
135
|
+
}
|
|
134
136
|
export interface DeleteTableBucketPolicyRequest {
|
|
135
137
|
tableBucketARN: string | undefined;
|
|
136
138
|
}
|
|
@@ -233,10 +235,6 @@ export declare namespace TableBucketMaintenanceSettings {
|
|
|
233
235
|
) => T;
|
|
234
236
|
_: (name: string, value: any) => T;
|
|
235
237
|
}
|
|
236
|
-
const visit: <T>(
|
|
237
|
-
value: TableBucketMaintenanceSettings,
|
|
238
|
-
visitor: Visitor<T>
|
|
239
|
-
) => T;
|
|
240
238
|
}
|
|
241
239
|
export declare const MaintenanceStatus: {
|
|
242
240
|
readonly DISABLED: "disabled";
|
|
@@ -259,6 +257,13 @@ export interface GetTableBucketMaintenanceConfigurationResponse {
|
|
|
259
257
|
>
|
|
260
258
|
| undefined;
|
|
261
259
|
}
|
|
260
|
+
export interface GetTableBucketMetricsConfigurationRequest {
|
|
261
|
+
tableBucketARN: string | undefined;
|
|
262
|
+
}
|
|
263
|
+
export interface GetTableBucketMetricsConfigurationResponse {
|
|
264
|
+
tableBucketARN: string | undefined;
|
|
265
|
+
id?: string | undefined;
|
|
266
|
+
}
|
|
262
267
|
export interface GetTableBucketPolicyRequest {
|
|
263
268
|
tableBucketARN: string | undefined;
|
|
264
269
|
}
|
|
@@ -325,7 +330,6 @@ export declare namespace TableMaintenanceSettings {
|
|
|
325
330
|
icebergSnapshotManagement: (value: IcebergSnapshotManagementSettings) => T;
|
|
326
331
|
_: (name: string, value: any) => T;
|
|
327
332
|
}
|
|
328
|
-
const visit: <T>(value: TableMaintenanceSettings, visitor: Visitor<T>) => T;
|
|
329
333
|
}
|
|
330
334
|
export interface TableMaintenanceConfigurationValue {
|
|
331
335
|
status?: MaintenanceStatus | undefined;
|
|
@@ -457,6 +461,9 @@ export interface PutTableBucketMaintenanceConfigurationRequest {
|
|
|
457
461
|
type: TableBucketMaintenanceType | undefined;
|
|
458
462
|
value: TableBucketMaintenanceConfigurationValue | undefined;
|
|
459
463
|
}
|
|
464
|
+
export interface PutTableBucketMetricsConfigurationRequest {
|
|
465
|
+
tableBucketARN: string | undefined;
|
|
466
|
+
}
|
|
460
467
|
export interface PutTableBucketPolicyRequest {
|
|
461
468
|
tableBucketARN: string | undefined;
|
|
462
469
|
resourcePolicy: string | undefined;
|
|
@@ -16,6 +16,7 @@ export declare var CreateTableRequest: StaticStructureSchema;
|
|
|
16
16
|
export declare var CreateTableResponse: StaticStructureSchema;
|
|
17
17
|
export declare var DeleteNamespaceRequest: StaticStructureSchema;
|
|
18
18
|
export declare var DeleteTableBucketEncryptionRequest: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteTableBucketMetricsConfigurationRequest: StaticStructureSchema;
|
|
19
20
|
export declare var DeleteTableBucketPolicyRequest: StaticStructureSchema;
|
|
20
21
|
export declare var DeleteTableBucketRequest: StaticStructureSchema;
|
|
21
22
|
export declare var DeleteTablePolicyRequest: StaticStructureSchema;
|
|
@@ -28,6 +29,8 @@ export declare var GetTableBucketEncryptionRequest: StaticStructureSchema;
|
|
|
28
29
|
export declare var GetTableBucketEncryptionResponse: StaticStructureSchema;
|
|
29
30
|
export declare var GetTableBucketMaintenanceConfigurationRequest: StaticStructureSchema;
|
|
30
31
|
export declare var GetTableBucketMaintenanceConfigurationResponse: StaticStructureSchema;
|
|
32
|
+
export declare var GetTableBucketMetricsConfigurationRequest: StaticStructureSchema;
|
|
33
|
+
export declare var GetTableBucketMetricsConfigurationResponse: StaticStructureSchema;
|
|
31
34
|
export declare var GetTableBucketPolicyRequest: StaticStructureSchema;
|
|
32
35
|
export declare var GetTableBucketPolicyResponse: StaticStructureSchema;
|
|
33
36
|
export declare var GetTableBucketRequest: StaticStructureSchema;
|
|
@@ -62,6 +65,7 @@ export declare var NamespaceSummary: StaticStructureSchema;
|
|
|
62
65
|
export declare var NotFoundException: StaticErrorSchema;
|
|
63
66
|
export declare var PutTableBucketEncryptionRequest: StaticStructureSchema;
|
|
64
67
|
export declare var PutTableBucketMaintenanceConfigurationRequest: StaticStructureSchema;
|
|
68
|
+
export declare var PutTableBucketMetricsConfigurationRequest: StaticStructureSchema;
|
|
65
69
|
export declare var PutTableBucketPolicyRequest: StaticStructureSchema;
|
|
66
70
|
export declare var PutTableMaintenanceConfigurationRequest: StaticStructureSchema;
|
|
67
71
|
export declare var PutTablePolicyRequest: StaticStructureSchema;
|
|
@@ -101,6 +105,7 @@ export declare var DeleteNamespace: StaticOperationSchema;
|
|
|
101
105
|
export declare var DeleteTable: StaticOperationSchema;
|
|
102
106
|
export declare var DeleteTableBucket: StaticOperationSchema;
|
|
103
107
|
export declare var DeleteTableBucketEncryption: StaticOperationSchema;
|
|
108
|
+
export declare var DeleteTableBucketMetricsConfiguration: StaticOperationSchema;
|
|
104
109
|
export declare var DeleteTableBucketPolicy: StaticOperationSchema;
|
|
105
110
|
export declare var DeleteTablePolicy: StaticOperationSchema;
|
|
106
111
|
export declare var GetNamespace: StaticOperationSchema;
|
|
@@ -108,6 +113,7 @@ export declare var GetTable: StaticOperationSchema;
|
|
|
108
113
|
export declare var GetTableBucket: StaticOperationSchema;
|
|
109
114
|
export declare var GetTableBucketEncryption: StaticOperationSchema;
|
|
110
115
|
export declare var GetTableBucketMaintenanceConfiguration: StaticOperationSchema;
|
|
116
|
+
export declare var GetTableBucketMetricsConfiguration: StaticOperationSchema;
|
|
111
117
|
export declare var GetTableBucketPolicy: StaticOperationSchema;
|
|
112
118
|
export declare var GetTableEncryption: StaticOperationSchema;
|
|
113
119
|
export declare var GetTableMaintenanceConfiguration: StaticOperationSchema;
|
|
@@ -120,6 +126,7 @@ export declare var ListTables: StaticOperationSchema;
|
|
|
120
126
|
export declare var ListTagsForResource: StaticOperationSchema;
|
|
121
127
|
export declare var PutTableBucketEncryption: StaticOperationSchema;
|
|
122
128
|
export declare var PutTableBucketMaintenanceConfiguration: StaticOperationSchema;
|
|
129
|
+
export declare var PutTableBucketMetricsConfiguration: StaticOperationSchema;
|
|
123
130
|
export declare var PutTableBucketPolicy: StaticOperationSchema;
|
|
124
131
|
export declare var PutTableMaintenanceConfiguration: StaticOperationSchema;
|
|
125
132
|
export declare var PutTablePolicy: StaticOperationSchema;
|
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.
|
|
4
|
+
"version": "3.931.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-s3tables",
|
|
@@ -20,41 +20,41 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.4.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
37
|
-
"@smithy/hash-node": "^4.2.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
-
"@smithy/middleware-stack": "^4.2.
|
|
44
|
-
"@smithy/node-config-provider": "^4.3.
|
|
45
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
-
"@smithy/protocol-http": "^5.3.
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.931.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.931.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.931.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
|
+
"@aws-sdk/types": "3.930.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.931.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
+
"@smithy/core": "^3.18.2",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
|
+
"@smithy/hash-node": "^4.2.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.9",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.9",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.5",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
48
|
+
"@smithy/types": "^4.9.0",
|
|
49
|
+
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
-
"@smithy/util-endpoints": "^3.2.
|
|
56
|
-
"@smithy/util-middleware": "^4.2.
|
|
57
|
-
"@smithy/util-retry": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.11",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
57
|
+
"@smithy/util-retry": "^4.2.5",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|