@aws-sdk/client-s3tables 3.927.0 → 3.929.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1203 -1325
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/S3TablesClient.js +2 -0
- package/dist-es/commands/CreateNamespaceCommand.js +3 -9
- package/dist-es/commands/CreateTableBucketCommand.js +3 -9
- package/dist-es/commands/CreateTableCommand.js +3 -9
- package/dist-es/commands/DeleteNamespaceCommand.js +3 -9
- package/dist-es/commands/DeleteTableBucketCommand.js +3 -9
- package/dist-es/commands/DeleteTableBucketEncryptionCommand.js +3 -9
- package/dist-es/commands/DeleteTableBucketPolicyCommand.js +3 -9
- package/dist-es/commands/DeleteTableCommand.js +3 -9
- package/dist-es/commands/DeleteTablePolicyCommand.js +3 -9
- package/dist-es/commands/GetNamespaceCommand.js +3 -9
- package/dist-es/commands/GetTableBucketCommand.js +3 -9
- package/dist-es/commands/GetTableBucketEncryptionCommand.js +3 -9
- package/dist-es/commands/GetTableBucketMaintenanceConfigurationCommand.js +3 -9
- package/dist-es/commands/GetTableBucketPolicyCommand.js +3 -9
- package/dist-es/commands/GetTableCommand.js +3 -9
- package/dist-es/commands/GetTableEncryptionCommand.js +3 -9
- package/dist-es/commands/GetTableMaintenanceConfigurationCommand.js +3 -9
- package/dist-es/commands/GetTableMaintenanceJobStatusCommand.js +3 -9
- package/dist-es/commands/GetTableMetadataLocationCommand.js +3 -9
- package/dist-es/commands/GetTablePolicyCommand.js +3 -9
- package/dist-es/commands/ListNamespacesCommand.js +3 -9
- package/dist-es/commands/ListTableBucketsCommand.js +3 -9
- package/dist-es/commands/ListTablesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutTableBucketEncryptionCommand.js +3 -9
- package/dist-es/commands/PutTableBucketMaintenanceConfigurationCommand.js +3 -9
- package/dist-es/commands/PutTableBucketPolicyCommand.js +3 -9
- package/dist-es/commands/PutTableMaintenanceConfigurationCommand.js +3 -9
- package/dist-es/commands/PutTablePolicyCommand.js +3 -9
- package/dist-es/commands/RenameTableCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateTableMetadataLocationCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1127 -0
- package/dist-types/S3TablesClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +123 -0
- package/dist-types/ts3.4/S3TablesClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +129 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_restJson1.js +0 -1084
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -299
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -401
|
@@ -1,299 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CreateNamespaceCommandInput, CreateNamespaceCommandOutput } from "../commands/CreateNamespaceCommand";
|
|
4
|
-
import { CreateTableBucketCommandInput, CreateTableBucketCommandOutput } from "../commands/CreateTableBucketCommand";
|
|
5
|
-
import { CreateTableCommandInput, CreateTableCommandOutput } from "../commands/CreateTableCommand";
|
|
6
|
-
import { DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput } from "../commands/DeleteNamespaceCommand";
|
|
7
|
-
import { DeleteTableBucketCommandInput, DeleteTableBucketCommandOutput } from "../commands/DeleteTableBucketCommand";
|
|
8
|
-
import { DeleteTableBucketEncryptionCommandInput, DeleteTableBucketEncryptionCommandOutput } from "../commands/DeleteTableBucketEncryptionCommand";
|
|
9
|
-
import { DeleteTableBucketPolicyCommandInput, DeleteTableBucketPolicyCommandOutput } from "../commands/DeleteTableBucketPolicyCommand";
|
|
10
|
-
import { DeleteTableCommandInput, DeleteTableCommandOutput } from "../commands/DeleteTableCommand";
|
|
11
|
-
import { DeleteTablePolicyCommandInput, DeleteTablePolicyCommandOutput } from "../commands/DeleteTablePolicyCommand";
|
|
12
|
-
import { GetNamespaceCommandInput, GetNamespaceCommandOutput } from "../commands/GetNamespaceCommand";
|
|
13
|
-
import { GetTableBucketCommandInput, GetTableBucketCommandOutput } from "../commands/GetTableBucketCommand";
|
|
14
|
-
import { GetTableBucketEncryptionCommandInput, GetTableBucketEncryptionCommandOutput } from "../commands/GetTableBucketEncryptionCommand";
|
|
15
|
-
import { GetTableBucketMaintenanceConfigurationCommandInput, GetTableBucketMaintenanceConfigurationCommandOutput } from "../commands/GetTableBucketMaintenanceConfigurationCommand";
|
|
16
|
-
import { GetTableBucketPolicyCommandInput, GetTableBucketPolicyCommandOutput } from "../commands/GetTableBucketPolicyCommand";
|
|
17
|
-
import { GetTableCommandInput, GetTableCommandOutput } from "../commands/GetTableCommand";
|
|
18
|
-
import { GetTableEncryptionCommandInput, GetTableEncryptionCommandOutput } from "../commands/GetTableEncryptionCommand";
|
|
19
|
-
import { GetTableMaintenanceConfigurationCommandInput, GetTableMaintenanceConfigurationCommandOutput } from "../commands/GetTableMaintenanceConfigurationCommand";
|
|
20
|
-
import { GetTableMaintenanceJobStatusCommandInput, GetTableMaintenanceJobStatusCommandOutput } from "../commands/GetTableMaintenanceJobStatusCommand";
|
|
21
|
-
import { GetTableMetadataLocationCommandInput, GetTableMetadataLocationCommandOutput } from "../commands/GetTableMetadataLocationCommand";
|
|
22
|
-
import { GetTablePolicyCommandInput, GetTablePolicyCommandOutput } from "../commands/GetTablePolicyCommand";
|
|
23
|
-
import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "../commands/ListNamespacesCommand";
|
|
24
|
-
import { ListTableBucketsCommandInput, ListTableBucketsCommandOutput } from "../commands/ListTableBucketsCommand";
|
|
25
|
-
import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
|
|
26
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
27
|
-
import { PutTableBucketEncryptionCommandInput, PutTableBucketEncryptionCommandOutput } from "../commands/PutTableBucketEncryptionCommand";
|
|
28
|
-
import { PutTableBucketMaintenanceConfigurationCommandInput, PutTableBucketMaintenanceConfigurationCommandOutput } from "../commands/PutTableBucketMaintenanceConfigurationCommand";
|
|
29
|
-
import { PutTableBucketPolicyCommandInput, PutTableBucketPolicyCommandOutput } from "../commands/PutTableBucketPolicyCommand";
|
|
30
|
-
import { PutTableMaintenanceConfigurationCommandInput, PutTableMaintenanceConfigurationCommandOutput } from "../commands/PutTableMaintenanceConfigurationCommand";
|
|
31
|
-
import { PutTablePolicyCommandInput, PutTablePolicyCommandOutput } from "../commands/PutTablePolicyCommand";
|
|
32
|
-
import { RenameTableCommandInput, RenameTableCommandOutput } from "../commands/RenameTableCommand";
|
|
33
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
34
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
35
|
-
import { UpdateTableMetadataLocationCommandInput, UpdateTableMetadataLocationCommandOutput } from "../commands/UpdateTableMetadataLocationCommand";
|
|
36
|
-
/**
|
|
37
|
-
* serializeAws_restJson1CreateNamespaceCommand
|
|
38
|
-
*/
|
|
39
|
-
export declare const se_CreateNamespaceCommand: (input: CreateNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
-
/**
|
|
41
|
-
* serializeAws_restJson1CreateTableCommand
|
|
42
|
-
*/
|
|
43
|
-
export declare const se_CreateTableCommand: (input: CreateTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
-
/**
|
|
45
|
-
* serializeAws_restJson1CreateTableBucketCommand
|
|
46
|
-
*/
|
|
47
|
-
export declare const se_CreateTableBucketCommand: (input: CreateTableBucketCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
-
/**
|
|
49
|
-
* serializeAws_restJson1DeleteNamespaceCommand
|
|
50
|
-
*/
|
|
51
|
-
export declare const se_DeleteNamespaceCommand: (input: DeleteNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
-
/**
|
|
53
|
-
* serializeAws_restJson1DeleteTableCommand
|
|
54
|
-
*/
|
|
55
|
-
export declare const se_DeleteTableCommand: (input: DeleteTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
-
/**
|
|
57
|
-
* serializeAws_restJson1DeleteTableBucketCommand
|
|
58
|
-
*/
|
|
59
|
-
export declare const se_DeleteTableBucketCommand: (input: DeleteTableBucketCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
-
/**
|
|
61
|
-
* serializeAws_restJson1DeleteTableBucketEncryptionCommand
|
|
62
|
-
*/
|
|
63
|
-
export declare const se_DeleteTableBucketEncryptionCommand: (input: DeleteTableBucketEncryptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
-
/**
|
|
65
|
-
* serializeAws_restJson1DeleteTableBucketPolicyCommand
|
|
66
|
-
*/
|
|
67
|
-
export declare const se_DeleteTableBucketPolicyCommand: (input: DeleteTableBucketPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
-
/**
|
|
69
|
-
* serializeAws_restJson1DeleteTablePolicyCommand
|
|
70
|
-
*/
|
|
71
|
-
export declare const se_DeleteTablePolicyCommand: (input: DeleteTablePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
-
/**
|
|
73
|
-
* serializeAws_restJson1GetNamespaceCommand
|
|
74
|
-
*/
|
|
75
|
-
export declare const se_GetNamespaceCommand: (input: GetNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
-
/**
|
|
77
|
-
* serializeAws_restJson1GetTableCommand
|
|
78
|
-
*/
|
|
79
|
-
export declare const se_GetTableCommand: (input: GetTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
|
-
/**
|
|
81
|
-
* serializeAws_restJson1GetTableBucketCommand
|
|
82
|
-
*/
|
|
83
|
-
export declare const se_GetTableBucketCommand: (input: GetTableBucketCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
-
/**
|
|
85
|
-
* serializeAws_restJson1GetTableBucketEncryptionCommand
|
|
86
|
-
*/
|
|
87
|
-
export declare const se_GetTableBucketEncryptionCommand: (input: GetTableBucketEncryptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
-
/**
|
|
89
|
-
* serializeAws_restJson1GetTableBucketMaintenanceConfigurationCommand
|
|
90
|
-
*/
|
|
91
|
-
export declare const se_GetTableBucketMaintenanceConfigurationCommand: (input: GetTableBucketMaintenanceConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
|
-
/**
|
|
93
|
-
* serializeAws_restJson1GetTableBucketPolicyCommand
|
|
94
|
-
*/
|
|
95
|
-
export declare const se_GetTableBucketPolicyCommand: (input: GetTableBucketPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
-
/**
|
|
97
|
-
* serializeAws_restJson1GetTableEncryptionCommand
|
|
98
|
-
*/
|
|
99
|
-
export declare const se_GetTableEncryptionCommand: (input: GetTableEncryptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
-
/**
|
|
101
|
-
* serializeAws_restJson1GetTableMaintenanceConfigurationCommand
|
|
102
|
-
*/
|
|
103
|
-
export declare const se_GetTableMaintenanceConfigurationCommand: (input: GetTableMaintenanceConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
|
-
/**
|
|
105
|
-
* serializeAws_restJson1GetTableMaintenanceJobStatusCommand
|
|
106
|
-
*/
|
|
107
|
-
export declare const se_GetTableMaintenanceJobStatusCommand: (input: GetTableMaintenanceJobStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
|
-
/**
|
|
109
|
-
* serializeAws_restJson1GetTableMetadataLocationCommand
|
|
110
|
-
*/
|
|
111
|
-
export declare const se_GetTableMetadataLocationCommand: (input: GetTableMetadataLocationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
112
|
-
/**
|
|
113
|
-
* serializeAws_restJson1GetTablePolicyCommand
|
|
114
|
-
*/
|
|
115
|
-
export declare const se_GetTablePolicyCommand: (input: GetTablePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
|
-
/**
|
|
117
|
-
* serializeAws_restJson1ListNamespacesCommand
|
|
118
|
-
*/
|
|
119
|
-
export declare const se_ListNamespacesCommand: (input: ListNamespacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
|
-
/**
|
|
121
|
-
* serializeAws_restJson1ListTableBucketsCommand
|
|
122
|
-
*/
|
|
123
|
-
export declare const se_ListTableBucketsCommand: (input: ListTableBucketsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
124
|
-
/**
|
|
125
|
-
* serializeAws_restJson1ListTablesCommand
|
|
126
|
-
*/
|
|
127
|
-
export declare const se_ListTablesCommand: (input: ListTablesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
128
|
-
/**
|
|
129
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
130
|
-
*/
|
|
131
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
132
|
-
/**
|
|
133
|
-
* serializeAws_restJson1PutTableBucketEncryptionCommand
|
|
134
|
-
*/
|
|
135
|
-
export declare const se_PutTableBucketEncryptionCommand: (input: PutTableBucketEncryptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
136
|
-
/**
|
|
137
|
-
* serializeAws_restJson1PutTableBucketMaintenanceConfigurationCommand
|
|
138
|
-
*/
|
|
139
|
-
export declare const se_PutTableBucketMaintenanceConfigurationCommand: (input: PutTableBucketMaintenanceConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
140
|
-
/**
|
|
141
|
-
* serializeAws_restJson1PutTableBucketPolicyCommand
|
|
142
|
-
*/
|
|
143
|
-
export declare const se_PutTableBucketPolicyCommand: (input: PutTableBucketPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
144
|
-
/**
|
|
145
|
-
* serializeAws_restJson1PutTableMaintenanceConfigurationCommand
|
|
146
|
-
*/
|
|
147
|
-
export declare const se_PutTableMaintenanceConfigurationCommand: (input: PutTableMaintenanceConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
148
|
-
/**
|
|
149
|
-
* serializeAws_restJson1PutTablePolicyCommand
|
|
150
|
-
*/
|
|
151
|
-
export declare const se_PutTablePolicyCommand: (input: PutTablePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
152
|
-
/**
|
|
153
|
-
* serializeAws_restJson1RenameTableCommand
|
|
154
|
-
*/
|
|
155
|
-
export declare const se_RenameTableCommand: (input: RenameTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
156
|
-
/**
|
|
157
|
-
* serializeAws_restJson1TagResourceCommand
|
|
158
|
-
*/
|
|
159
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
160
|
-
/**
|
|
161
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
162
|
-
*/
|
|
163
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
164
|
-
/**
|
|
165
|
-
* serializeAws_restJson1UpdateTableMetadataLocationCommand
|
|
166
|
-
*/
|
|
167
|
-
export declare const se_UpdateTableMetadataLocationCommand: (input: UpdateTableMetadataLocationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
168
|
-
/**
|
|
169
|
-
* deserializeAws_restJson1CreateNamespaceCommand
|
|
170
|
-
*/
|
|
171
|
-
export declare const de_CreateNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateNamespaceCommandOutput>;
|
|
172
|
-
/**
|
|
173
|
-
* deserializeAws_restJson1CreateTableCommand
|
|
174
|
-
*/
|
|
175
|
-
export declare const de_CreateTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTableCommandOutput>;
|
|
176
|
-
/**
|
|
177
|
-
* deserializeAws_restJson1CreateTableBucketCommand
|
|
178
|
-
*/
|
|
179
|
-
export declare const de_CreateTableBucketCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateTableBucketCommandOutput>;
|
|
180
|
-
/**
|
|
181
|
-
* deserializeAws_restJson1DeleteNamespaceCommand
|
|
182
|
-
*/
|
|
183
|
-
export declare const de_DeleteNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNamespaceCommandOutput>;
|
|
184
|
-
/**
|
|
185
|
-
* deserializeAws_restJson1DeleteTableCommand
|
|
186
|
-
*/
|
|
187
|
-
export declare const de_DeleteTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTableCommandOutput>;
|
|
188
|
-
/**
|
|
189
|
-
* deserializeAws_restJson1DeleteTableBucketCommand
|
|
190
|
-
*/
|
|
191
|
-
export declare const de_DeleteTableBucketCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTableBucketCommandOutput>;
|
|
192
|
-
/**
|
|
193
|
-
* deserializeAws_restJson1DeleteTableBucketEncryptionCommand
|
|
194
|
-
*/
|
|
195
|
-
export declare const de_DeleteTableBucketEncryptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTableBucketEncryptionCommandOutput>;
|
|
196
|
-
/**
|
|
197
|
-
* deserializeAws_restJson1DeleteTableBucketPolicyCommand
|
|
198
|
-
*/
|
|
199
|
-
export declare const de_DeleteTableBucketPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTableBucketPolicyCommandOutput>;
|
|
200
|
-
/**
|
|
201
|
-
* deserializeAws_restJson1DeleteTablePolicyCommand
|
|
202
|
-
*/
|
|
203
|
-
export declare const de_DeleteTablePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTablePolicyCommandOutput>;
|
|
204
|
-
/**
|
|
205
|
-
* deserializeAws_restJson1GetNamespaceCommand
|
|
206
|
-
*/
|
|
207
|
-
export declare const de_GetNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetNamespaceCommandOutput>;
|
|
208
|
-
/**
|
|
209
|
-
* deserializeAws_restJson1GetTableCommand
|
|
210
|
-
*/
|
|
211
|
-
export declare const de_GetTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableCommandOutput>;
|
|
212
|
-
/**
|
|
213
|
-
* deserializeAws_restJson1GetTableBucketCommand
|
|
214
|
-
*/
|
|
215
|
-
export declare const de_GetTableBucketCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableBucketCommandOutput>;
|
|
216
|
-
/**
|
|
217
|
-
* deserializeAws_restJson1GetTableBucketEncryptionCommand
|
|
218
|
-
*/
|
|
219
|
-
export declare const de_GetTableBucketEncryptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableBucketEncryptionCommandOutput>;
|
|
220
|
-
/**
|
|
221
|
-
* deserializeAws_restJson1GetTableBucketMaintenanceConfigurationCommand
|
|
222
|
-
*/
|
|
223
|
-
export declare const de_GetTableBucketMaintenanceConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableBucketMaintenanceConfigurationCommandOutput>;
|
|
224
|
-
/**
|
|
225
|
-
* deserializeAws_restJson1GetTableBucketPolicyCommand
|
|
226
|
-
*/
|
|
227
|
-
export declare const de_GetTableBucketPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableBucketPolicyCommandOutput>;
|
|
228
|
-
/**
|
|
229
|
-
* deserializeAws_restJson1GetTableEncryptionCommand
|
|
230
|
-
*/
|
|
231
|
-
export declare const de_GetTableEncryptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableEncryptionCommandOutput>;
|
|
232
|
-
/**
|
|
233
|
-
* deserializeAws_restJson1GetTableMaintenanceConfigurationCommand
|
|
234
|
-
*/
|
|
235
|
-
export declare const de_GetTableMaintenanceConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableMaintenanceConfigurationCommandOutput>;
|
|
236
|
-
/**
|
|
237
|
-
* deserializeAws_restJson1GetTableMaintenanceJobStatusCommand
|
|
238
|
-
*/
|
|
239
|
-
export declare const de_GetTableMaintenanceJobStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableMaintenanceJobStatusCommandOutput>;
|
|
240
|
-
/**
|
|
241
|
-
* deserializeAws_restJson1GetTableMetadataLocationCommand
|
|
242
|
-
*/
|
|
243
|
-
export declare const de_GetTableMetadataLocationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableMetadataLocationCommandOutput>;
|
|
244
|
-
/**
|
|
245
|
-
* deserializeAws_restJson1GetTablePolicyCommand
|
|
246
|
-
*/
|
|
247
|
-
export declare const de_GetTablePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTablePolicyCommandOutput>;
|
|
248
|
-
/**
|
|
249
|
-
* deserializeAws_restJson1ListNamespacesCommand
|
|
250
|
-
*/
|
|
251
|
-
export declare const de_ListNamespacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNamespacesCommandOutput>;
|
|
252
|
-
/**
|
|
253
|
-
* deserializeAws_restJson1ListTableBucketsCommand
|
|
254
|
-
*/
|
|
255
|
-
export declare const de_ListTableBucketsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTableBucketsCommandOutput>;
|
|
256
|
-
/**
|
|
257
|
-
* deserializeAws_restJson1ListTablesCommand
|
|
258
|
-
*/
|
|
259
|
-
export declare const de_ListTablesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTablesCommandOutput>;
|
|
260
|
-
/**
|
|
261
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
262
|
-
*/
|
|
263
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
264
|
-
/**
|
|
265
|
-
* deserializeAws_restJson1PutTableBucketEncryptionCommand
|
|
266
|
-
*/
|
|
267
|
-
export declare const de_PutTableBucketEncryptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutTableBucketEncryptionCommandOutput>;
|
|
268
|
-
/**
|
|
269
|
-
* deserializeAws_restJson1PutTableBucketMaintenanceConfigurationCommand
|
|
270
|
-
*/
|
|
271
|
-
export declare const de_PutTableBucketMaintenanceConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutTableBucketMaintenanceConfigurationCommandOutput>;
|
|
272
|
-
/**
|
|
273
|
-
* deserializeAws_restJson1PutTableBucketPolicyCommand
|
|
274
|
-
*/
|
|
275
|
-
export declare const de_PutTableBucketPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutTableBucketPolicyCommandOutput>;
|
|
276
|
-
/**
|
|
277
|
-
* deserializeAws_restJson1PutTableMaintenanceConfigurationCommand
|
|
278
|
-
*/
|
|
279
|
-
export declare const de_PutTableMaintenanceConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutTableMaintenanceConfigurationCommandOutput>;
|
|
280
|
-
/**
|
|
281
|
-
* deserializeAws_restJson1PutTablePolicyCommand
|
|
282
|
-
*/
|
|
283
|
-
export declare const de_PutTablePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutTablePolicyCommandOutput>;
|
|
284
|
-
/**
|
|
285
|
-
* deserializeAws_restJson1RenameTableCommand
|
|
286
|
-
*/
|
|
287
|
-
export declare const de_RenameTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RenameTableCommandOutput>;
|
|
288
|
-
/**
|
|
289
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
290
|
-
*/
|
|
291
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
292
|
-
/**
|
|
293
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
294
|
-
*/
|
|
295
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
296
|
-
/**
|
|
297
|
-
* deserializeAws_restJson1UpdateTableMetadataLocationCommand
|
|
298
|
-
*/
|
|
299
|
-
export declare const de_UpdateTableMetadataLocationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTableMetadataLocationCommandOutput>;
|