@aws-sdk/client-s3tables 3.987.0 → 3.989.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 +78 -1370
- package/dist-cjs/models/S3TablesServiceException.js +12 -0
- package/dist-cjs/models/errors.js +108 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1108 -0
- package/dist-es/models/enums.js +8 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +110 -55
- package/dist-types/commands/CreateTableCommand.d.ts +23 -0
- package/dist-types/models/enums.d.ts +24 -0
- package/dist-types/models/models_0.d.ts +101 -2
- package/dist-types/schemas/schemas_0.d.ts +17 -6
- package/dist-types/ts3.4/models/enums.d.ts +12 -0
- package/dist-types/ts3.4/models/models_0.d.ts +25 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -6
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var S3TablesServiceException = require('./models/S3TablesServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1151 +113,6 @@ class S3TablesClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class S3TablesServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, S3TablesServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends S3TablesServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class BadRequestException extends S3TablesServiceException {
|
|
133
|
-
name = "BadRequestException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "BadRequestException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ConflictException extends S3TablesServiceException {
|
|
145
|
-
name = "ConflictException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ConflictException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ForbiddenException extends S3TablesServiceException {
|
|
157
|
-
name = "ForbiddenException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ForbiddenException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class InternalServerErrorException extends S3TablesServiceException {
|
|
169
|
-
name = "InternalServerErrorException";
|
|
170
|
-
$fault = "server";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "InternalServerErrorException",
|
|
174
|
-
$fault: "server",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class NotFoundException extends S3TablesServiceException {
|
|
181
|
-
name = "NotFoundException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "NotFoundException",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class TooManyRequestsException extends S3TablesServiceException {
|
|
193
|
-
name = "TooManyRequestsException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "TooManyRequestsException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class MethodNotAllowedException extends S3TablesServiceException {
|
|
205
|
-
name = "MethodNotAllowedException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "MethodNotAllowedException",
|
|
210
|
-
$fault: "client",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, MethodNotAllowedException.prototype);
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
const _ADE = "AccessDeniedException";
|
|
218
|
-
const _BRE = "BadRequestException";
|
|
219
|
-
const _CE = "ConflictException";
|
|
220
|
-
const _CN = "CreateNamespace";
|
|
221
|
-
const _CNR = "CreateNamespaceRequest";
|
|
222
|
-
const _CNRr = "CreateNamespaceResponse";
|
|
223
|
-
const _CT = "CreateTable";
|
|
224
|
-
const _CTB = "CreateTableBucket";
|
|
225
|
-
const _CTBR = "CreateTableBucketRequest";
|
|
226
|
-
const _CTBRr = "CreateTableBucketResponse";
|
|
227
|
-
const _CTR = "CreateTableRequest";
|
|
228
|
-
const _CTRr = "CreateTableResponse";
|
|
229
|
-
const _DN = "DeleteNamespace";
|
|
230
|
-
const _DNR = "DeleteNamespaceRequest";
|
|
231
|
-
const _DT = "DeleteTable";
|
|
232
|
-
const _DTB = "DeleteTableBucket";
|
|
233
|
-
const _DTBE = "DeleteTableBucketEncryption";
|
|
234
|
-
const _DTBER = "DeleteTableBucketEncryptionRequest";
|
|
235
|
-
const _DTBMC = "DeleteTableBucketMetricsConfiguration";
|
|
236
|
-
const _DTBMCR = "DeleteTableBucketMetricsConfigurationRequest";
|
|
237
|
-
const _DTBP = "DeleteTableBucketPolicy";
|
|
238
|
-
const _DTBPR = "DeleteTableBucketPolicyRequest";
|
|
239
|
-
const _DTBR = "DeleteTableBucketRequest";
|
|
240
|
-
const _DTBRR = "DeleteTableBucketReplicationRequest";
|
|
241
|
-
const _DTBRe = "DeleteTableBucketReplication";
|
|
242
|
-
const _DTP = "DeleteTablePolicy";
|
|
243
|
-
const _DTPR = "DeleteTablePolicyRequest";
|
|
244
|
-
const _DTR = "DeleteTableRequest";
|
|
245
|
-
const _DTRR = "DeleteTableReplicationRequest";
|
|
246
|
-
const _DTRe = "DeleteTableReplication";
|
|
247
|
-
const _EC = "EncryptionConfiguration";
|
|
248
|
-
const _FE = "ForbiddenException";
|
|
249
|
-
const _GN = "GetNamespace";
|
|
250
|
-
const _GNR = "GetNamespaceRequest";
|
|
251
|
-
const _GNRe = "GetNamespaceResponse";
|
|
252
|
-
const _GT = "GetTable";
|
|
253
|
-
const _GTB = "GetTableBucket";
|
|
254
|
-
const _GTBE = "GetTableBucketEncryption";
|
|
255
|
-
const _GTBER = "GetTableBucketEncryptionRequest";
|
|
256
|
-
const _GTBERe = "GetTableBucketEncryptionResponse";
|
|
257
|
-
const _GTBMC = "GetTableBucketMaintenanceConfiguration";
|
|
258
|
-
const _GTBMCR = "GetTableBucketMaintenanceConfigurationRequest";
|
|
259
|
-
const _GTBMCRe = "GetTableBucketMaintenanceConfigurationResponse";
|
|
260
|
-
const _GTBMCRet = "GetTableBucketMetricsConfigurationRequest";
|
|
261
|
-
const _GTBMCReta = "GetTableBucketMetricsConfigurationResponse";
|
|
262
|
-
const _GTBMCe = "GetTableBucketMetricsConfiguration";
|
|
263
|
-
const _GTBP = "GetTableBucketPolicy";
|
|
264
|
-
const _GTBPR = "GetTableBucketPolicyRequest";
|
|
265
|
-
const _GTBPRe = "GetTableBucketPolicyResponse";
|
|
266
|
-
const _GTBR = "GetTableBucketRequest";
|
|
267
|
-
const _GTBRR = "GetTableBucketReplicationRequest";
|
|
268
|
-
const _GTBRRe = "GetTableBucketReplicationResponse";
|
|
269
|
-
const _GTBRe = "GetTableBucketResponse";
|
|
270
|
-
const _GTBRet = "GetTableBucketReplication";
|
|
271
|
-
const _GTBSC = "GetTableBucketStorageClass";
|
|
272
|
-
const _GTBSCR = "GetTableBucketStorageClassRequest";
|
|
273
|
-
const _GTBSCRe = "GetTableBucketStorageClassResponse";
|
|
274
|
-
const _GTE = "GetTableEncryption";
|
|
275
|
-
const _GTER = "GetTableEncryptionRequest";
|
|
276
|
-
const _GTERe = "GetTableEncryptionResponse";
|
|
277
|
-
const _GTMC = "GetTableMaintenanceConfiguration";
|
|
278
|
-
const _GTMCR = "GetTableMaintenanceConfigurationRequest";
|
|
279
|
-
const _GTMCRe = "GetTableMaintenanceConfigurationResponse";
|
|
280
|
-
const _GTMJS = "GetTableMaintenanceJobStatus";
|
|
281
|
-
const _GTMJSR = "GetTableMaintenanceJobStatusRequest";
|
|
282
|
-
const _GTMJSRe = "GetTableMaintenanceJobStatusResponse";
|
|
283
|
-
const _GTML = "GetTableMetadataLocation";
|
|
284
|
-
const _GTMLR = "GetTableMetadataLocationRequest";
|
|
285
|
-
const _GTMLRe = "GetTableMetadataLocationResponse";
|
|
286
|
-
const _GTP = "GetTablePolicy";
|
|
287
|
-
const _GTPR = "GetTablePolicyRequest";
|
|
288
|
-
const _GTPRe = "GetTablePolicyResponse";
|
|
289
|
-
const _GTR = "GetTableRequest";
|
|
290
|
-
const _GTREC = "GetTableRecordExpirationConfiguration";
|
|
291
|
-
const _GTRECR = "GetTableRecordExpirationConfigurationRequest";
|
|
292
|
-
const _GTRECRe = "GetTableRecordExpirationConfigurationResponse";
|
|
293
|
-
const _GTREJS = "GetTableRecordExpirationJobStatus";
|
|
294
|
-
const _GTREJSR = "GetTableRecordExpirationJobStatusRequest";
|
|
295
|
-
const _GTREJSRe = "GetTableRecordExpirationJobStatusResponse";
|
|
296
|
-
const _GTRR = "GetTableReplicationRequest";
|
|
297
|
-
const _GTRRe = "GetTableReplicationResponse";
|
|
298
|
-
const _GTRS = "GetTableReplicationStatus";
|
|
299
|
-
const _GTRSR = "GetTableReplicationStatusRequest";
|
|
300
|
-
const _GTRSRe = "GetTableReplicationStatusResponse";
|
|
301
|
-
const _GTRe = "GetTableResponse";
|
|
302
|
-
const _GTRet = "GetTableReplication";
|
|
303
|
-
const _GTSC = "GetTableStorageClass";
|
|
304
|
-
const _GTSCR = "GetTableStorageClassRequest";
|
|
305
|
-
const _GTSCRe = "GetTableStorageClassResponse";
|
|
306
|
-
const _ICS = "IcebergCompactionSettings";
|
|
307
|
-
const _IM = "IcebergMetadata";
|
|
308
|
-
const _IS = "IcebergSchema";
|
|
309
|
-
const _ISEE = "InternalServerErrorException";
|
|
310
|
-
const _ISMS = "IcebergSnapshotManagementSettings";
|
|
311
|
-
const _IUFRS = "IcebergUnreferencedFileRemovalSettings";
|
|
312
|
-
const _LN = "ListNamespaces";
|
|
313
|
-
const _LNR = "ListNamespacesRequest";
|
|
314
|
-
const _LNRi = "ListNamespacesResponse";
|
|
315
|
-
const _LSRU = "LastSuccessfulReplicatedUpdate";
|
|
316
|
-
const _LT = "ListTables";
|
|
317
|
-
const _LTB = "ListTableBuckets";
|
|
318
|
-
const _LTBR = "ListTableBucketsRequest";
|
|
319
|
-
const _LTBRi = "ListTableBucketsResponse";
|
|
320
|
-
const _LTFR = "ListTagsForResource";
|
|
321
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
322
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
323
|
-
const _LTR = "ListTablesRequest";
|
|
324
|
-
const _LTRi = "ListTablesResponse";
|
|
325
|
-
const _MNAE = "MethodNotAllowedException";
|
|
326
|
-
const _MTI = "ManagedTableInformation";
|
|
327
|
-
const _NFE = "NotFoundException";
|
|
328
|
-
const _NS = "NamespaceSummary";
|
|
329
|
-
const _NSL = "NamespaceSummaryList";
|
|
330
|
-
const _PTBE = "PutTableBucketEncryption";
|
|
331
|
-
const _PTBER = "PutTableBucketEncryptionRequest";
|
|
332
|
-
const _PTBMC = "PutTableBucketMaintenanceConfiguration";
|
|
333
|
-
const _PTBMCR = "PutTableBucketMaintenanceConfigurationRequest";
|
|
334
|
-
const _PTBMCRu = "PutTableBucketMetricsConfigurationRequest";
|
|
335
|
-
const _PTBMCu = "PutTableBucketMetricsConfiguration";
|
|
336
|
-
const _PTBP = "PutTableBucketPolicy";
|
|
337
|
-
const _PTBPR = "PutTableBucketPolicyRequest";
|
|
338
|
-
const _PTBR = "PutTableBucketReplication";
|
|
339
|
-
const _PTBRR = "PutTableBucketReplicationRequest";
|
|
340
|
-
const _PTBRRu = "PutTableBucketReplicationResponse";
|
|
341
|
-
const _PTBSC = "PutTableBucketStorageClass";
|
|
342
|
-
const _PTBSCR = "PutTableBucketStorageClassRequest";
|
|
343
|
-
const _PTMC = "PutTableMaintenanceConfiguration";
|
|
344
|
-
const _PTMCR = "PutTableMaintenanceConfigurationRequest";
|
|
345
|
-
const _PTP = "PutTablePolicy";
|
|
346
|
-
const _PTPR = "PutTablePolicyRequest";
|
|
347
|
-
const _PTR = "PutTableReplication";
|
|
348
|
-
const _PTREC = "PutTableRecordExpirationConfiguration";
|
|
349
|
-
const _PTRECR = "PutTableRecordExpirationConfigurationRequest";
|
|
350
|
-
const _PTRR = "PutTableReplicationRequest";
|
|
351
|
-
const _PTRRu = "PutTableReplicationResponse";
|
|
352
|
-
const _RD = "ReplicationDestination";
|
|
353
|
-
const _RDS = "ReplicationDestinationStatuses";
|
|
354
|
-
const _RDSM = "ReplicationDestinationStatusModel";
|
|
355
|
-
const _RDe = "ReplicationDestinations";
|
|
356
|
-
const _RI = "ReplicationInformation";
|
|
357
|
-
const _RT = "RenameTable";
|
|
358
|
-
const _RTR = "RenameTableRequest";
|
|
359
|
-
const _SCC = "StorageClassConfiguration";
|
|
360
|
-
const _SF = "SchemaField";
|
|
361
|
-
const _SFL = "SchemaFieldList";
|
|
362
|
-
const _TBMC = "TableBucketMaintenanceConfiguration";
|
|
363
|
-
const _TBMCV = "TableBucketMaintenanceConfigurationValue";
|
|
364
|
-
const _TBMS = "TableBucketMaintenanceSettings";
|
|
365
|
-
const _TBRC = "TableBucketReplicationConfiguration";
|
|
366
|
-
const _TBRR = "TableBucketReplicationRule";
|
|
367
|
-
const _TBRRa = "TableBucketReplicationRules";
|
|
368
|
-
const _TBS = "TableBucketSummary";
|
|
369
|
-
const _TBSL = "TableBucketSummaryList";
|
|
370
|
-
const _TM = "TableMetadata";
|
|
371
|
-
const _TMC = "TableMaintenanceConfiguration";
|
|
372
|
-
const _TMCV = "TableMaintenanceConfigurationValue";
|
|
373
|
-
const _TMJS = "TableMaintenanceJobStatus";
|
|
374
|
-
const _TMJSV = "TableMaintenanceJobStatusValue";
|
|
375
|
-
const _TMRE = "TooManyRequestsException";
|
|
376
|
-
const _TMS = "TableMaintenanceSettings";
|
|
377
|
-
const _TR = "TagResource";
|
|
378
|
-
const _TRC = "TableReplicationConfiguration";
|
|
379
|
-
const _TRECV = "TableRecordExpirationConfigurationValue";
|
|
380
|
-
const _TREJM = "TableRecordExpirationJobMetrics";
|
|
381
|
-
const _TRES = "TableRecordExpirationSettings";
|
|
382
|
-
const _TRR = "TableReplicationRule";
|
|
383
|
-
const _TRRa = "TagResourceRequest";
|
|
384
|
-
const _TRRab = "TableReplicationRules";
|
|
385
|
-
const _TRRag = "TagResourceResponse";
|
|
386
|
-
const _TS = "TableSummary";
|
|
387
|
-
const _TSL = "TableSummaryList";
|
|
388
|
-
const _UR = "UntagResource";
|
|
389
|
-
const _URR = "UntagResourceRequest";
|
|
390
|
-
const _URRn = "UntagResourceResponse";
|
|
391
|
-
const _UTML = "UpdateTableMetadataLocation";
|
|
392
|
-
const _UTMLR = "UpdateTableMetadataLocationRequest";
|
|
393
|
-
const _UTMLRp = "UpdateTableMetadataLocationResponse";
|
|
394
|
-
const _a = "arn";
|
|
395
|
-
const _c = "client";
|
|
396
|
-
const _cA = "createdAt";
|
|
397
|
-
const _cB = "createdBy";
|
|
398
|
-
const _cT = "continuationToken";
|
|
399
|
-
const _co = "configuration";
|
|
400
|
-
const _d = "destinations";
|
|
401
|
-
const _dDF = "deletedDataFiles";
|
|
402
|
-
const _dR = "deletedRecords";
|
|
403
|
-
const _dTA = "destinationTableArn";
|
|
404
|
-
const _dTBA = "destinationTableBucketArn";
|
|
405
|
-
const _dTBARN = "destinationTableBucketARN";
|
|
406
|
-
const _da = "days";
|
|
407
|
-
const _e = "error";
|
|
408
|
-
const _eC = "encryptionConfiguration";
|
|
409
|
-
const _f = "format";
|
|
410
|
-
const _fM = "failureMessage";
|
|
411
|
-
const _fi = "fields";
|
|
412
|
-
const _h = "http";
|
|
413
|
-
const _hE = "httpError";
|
|
414
|
-
const _hQ = "httpQuery";
|
|
415
|
-
const _i = "id";
|
|
416
|
-
const _iC = "icebergCompaction";
|
|
417
|
-
const _iSM = "icebergSnapshotManagement";
|
|
418
|
-
const _iUFR = "icebergUnreferencedFileRemoval";
|
|
419
|
-
const _ic = "iceberg";
|
|
420
|
-
const _kKA = "kmsKeyArn";
|
|
421
|
-
const _lRT = "lastRunTimestamp";
|
|
422
|
-
const _lSRU = "lastSuccessfulReplicatedUpdate";
|
|
423
|
-
const _m = "message";
|
|
424
|
-
const _mA = "modifiedAt";
|
|
425
|
-
const _mB = "modifiedBy";
|
|
426
|
-
const _mBS = "managedByService";
|
|
427
|
-
const _mBa = "maxBuckets";
|
|
428
|
-
const _mL = "metadataLocation";
|
|
429
|
-
const _mN = "maxNamespaces";
|
|
430
|
-
const _mSAH = "maxSnapshotAgeHours";
|
|
431
|
-
const _mSTK = "minSnapshotsToKeep";
|
|
432
|
-
const _mT = "maxTables";
|
|
433
|
-
const _mTI = "managedTableInformation";
|
|
434
|
-
const _me = "metadata";
|
|
435
|
-
const _met = "metrics";
|
|
436
|
-
const _n = "namespace";
|
|
437
|
-
const _nCD = "nonCurrentDays";
|
|
438
|
-
const _nI = "namespaceId";
|
|
439
|
-
const _nN = "newName";
|
|
440
|
-
const _nNN = "newNamespaceName";
|
|
441
|
-
const _na = "name";
|
|
442
|
-
const _nam = "namespaces";
|
|
443
|
-
const _oAI = "ownerAccountId";
|
|
444
|
-
const _p = "properties";
|
|
445
|
-
const _pr = "prefix";
|
|
446
|
-
const _r = "required";
|
|
447
|
-
const _rA = "resourceArn";
|
|
448
|
-
const _rFS = "removedFilesSize";
|
|
449
|
-
const _rI = "replicationInformation";
|
|
450
|
-
const _rP = "resourcePolicy";
|
|
451
|
-
const _rS = "replicationStatus";
|
|
452
|
-
const _ro = "role";
|
|
453
|
-
const _ru = "rules";
|
|
454
|
-
const _s = "status";
|
|
455
|
-
const _sA = "sseAlgorithm";
|
|
456
|
-
const _sC = "storageClass";
|
|
457
|
-
const _sCC = "storageClassConfiguration";
|
|
458
|
-
const _sTA = "sourceTableArn";
|
|
459
|
-
const _sTARN = "sourceTableARN";
|
|
460
|
-
const _sc = "schema";
|
|
461
|
-
const _se = "server";
|
|
462
|
-
const _set = "settings";
|
|
463
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.s3tables";
|
|
464
|
-
const _st = "strategy";
|
|
465
|
-
const _t = "tags";
|
|
466
|
-
const _tA = "tableArn";
|
|
467
|
-
const _tARN = "tableARN";
|
|
468
|
-
const _tB = "tableBuckets";
|
|
469
|
-
const _tBARN = "tableBucketARN";
|
|
470
|
-
const _tBI = "tableBucketId";
|
|
471
|
-
const _tFSMB = "targetFileSizeMB";
|
|
472
|
-
const _tK = "tagKeys";
|
|
473
|
-
const _ta = "tables";
|
|
474
|
-
const _ti = "timestamp";
|
|
475
|
-
const _ty = "type";
|
|
476
|
-
const _uD = "unreferencedDays";
|
|
477
|
-
const _v = "value";
|
|
478
|
-
const _vT = "versionToken";
|
|
479
|
-
const _wL = "warehouseLocation";
|
|
480
|
-
const n0 = "com.amazonaws.s3tables";
|
|
481
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
482
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
483
|
-
[_m],
|
|
484
|
-
[0]
|
|
485
|
-
];
|
|
486
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
487
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
488
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
489
|
-
[_m],
|
|
490
|
-
[0]
|
|
491
|
-
];
|
|
492
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
493
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
494
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
495
|
-
[_m],
|
|
496
|
-
[0]
|
|
497
|
-
];
|
|
498
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
499
|
-
var CreateNamespaceRequest$ = [3, n0, _CNR,
|
|
500
|
-
0,
|
|
501
|
-
[_tBARN, _n],
|
|
502
|
-
[[0, 1], 64 | 0], 2
|
|
503
|
-
];
|
|
504
|
-
var CreateNamespaceResponse$ = [3, n0, _CNRr,
|
|
505
|
-
0,
|
|
506
|
-
[_tBARN, _n],
|
|
507
|
-
[0, 64 | 0], 2
|
|
508
|
-
];
|
|
509
|
-
var CreateTableBucketRequest$ = [3, n0, _CTBR,
|
|
510
|
-
0,
|
|
511
|
-
[_na, _eC, _sCC, _t],
|
|
512
|
-
[0, () => EncryptionConfiguration$, () => StorageClassConfiguration$, 128 | 0], 1
|
|
513
|
-
];
|
|
514
|
-
var CreateTableBucketResponse$ = [3, n0, _CTBRr,
|
|
515
|
-
0,
|
|
516
|
-
[_a],
|
|
517
|
-
[0], 1
|
|
518
|
-
];
|
|
519
|
-
var CreateTableRequest$ = [3, n0, _CTR,
|
|
520
|
-
0,
|
|
521
|
-
[_tBARN, _n, _na, _f, _me, _eC, _sCC, _t],
|
|
522
|
-
[[0, 1], [0, 1], 0, 0, () => TableMetadata$, () => EncryptionConfiguration$, () => StorageClassConfiguration$, 128 | 0], 4
|
|
523
|
-
];
|
|
524
|
-
var CreateTableResponse$ = [3, n0, _CTRr,
|
|
525
|
-
0,
|
|
526
|
-
[_tARN, _vT],
|
|
527
|
-
[0, 0], 2
|
|
528
|
-
];
|
|
529
|
-
var DeleteNamespaceRequest$ = [3, n0, _DNR,
|
|
530
|
-
0,
|
|
531
|
-
[_tBARN, _n],
|
|
532
|
-
[[0, 1], [0, 1]], 2
|
|
533
|
-
];
|
|
534
|
-
var DeleteTableBucketEncryptionRequest$ = [3, n0, _DTBER,
|
|
535
|
-
0,
|
|
536
|
-
[_tBARN],
|
|
537
|
-
[[0, 1]], 1
|
|
538
|
-
];
|
|
539
|
-
var DeleteTableBucketMetricsConfigurationRequest$ = [3, n0, _DTBMCR,
|
|
540
|
-
0,
|
|
541
|
-
[_tBARN],
|
|
542
|
-
[[0, 1]], 1
|
|
543
|
-
];
|
|
544
|
-
var DeleteTableBucketPolicyRequest$ = [3, n0, _DTBPR,
|
|
545
|
-
0,
|
|
546
|
-
[_tBARN],
|
|
547
|
-
[[0, 1]], 1
|
|
548
|
-
];
|
|
549
|
-
var DeleteTableBucketReplicationRequest$ = [3, n0, _DTBRR,
|
|
550
|
-
0,
|
|
551
|
-
[_tBARN, _vT],
|
|
552
|
-
[[0, { [_hQ]: _tBARN }], [0, { [_hQ]: _vT }]], 1
|
|
553
|
-
];
|
|
554
|
-
var DeleteTableBucketRequest$ = [3, n0, _DTBR,
|
|
555
|
-
0,
|
|
556
|
-
[_tBARN],
|
|
557
|
-
[[0, 1]], 1
|
|
558
|
-
];
|
|
559
|
-
var DeleteTablePolicyRequest$ = [3, n0, _DTPR,
|
|
560
|
-
0,
|
|
561
|
-
[_tBARN, _n, _na],
|
|
562
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
563
|
-
];
|
|
564
|
-
var DeleteTableReplicationRequest$ = [3, n0, _DTRR,
|
|
565
|
-
0,
|
|
566
|
-
[_tA, _vT],
|
|
567
|
-
[[0, { [_hQ]: _tA }], [0, { [_hQ]: _vT }]], 2
|
|
568
|
-
];
|
|
569
|
-
var DeleteTableRequest$ = [3, n0, _DTR,
|
|
570
|
-
0,
|
|
571
|
-
[_tBARN, _n, _na, _vT],
|
|
572
|
-
[[0, 1], [0, 1], [0, 1], [0, { [_hQ]: _vT }]], 3
|
|
573
|
-
];
|
|
574
|
-
var EncryptionConfiguration$ = [3, n0, _EC,
|
|
575
|
-
0,
|
|
576
|
-
[_sA, _kKA],
|
|
577
|
-
[0, 0], 1
|
|
578
|
-
];
|
|
579
|
-
var ForbiddenException$ = [-3, n0, _FE,
|
|
580
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
581
|
-
[_m],
|
|
582
|
-
[0]
|
|
583
|
-
];
|
|
584
|
-
schema.TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
|
|
585
|
-
var GetNamespaceRequest$ = [3, n0, _GNR,
|
|
586
|
-
0,
|
|
587
|
-
[_tBARN, _n],
|
|
588
|
-
[[0, 1], [0, 1]], 2
|
|
589
|
-
];
|
|
590
|
-
var GetNamespaceResponse$ = [3, n0, _GNRe,
|
|
591
|
-
0,
|
|
592
|
-
[_n, _cA, _cB, _oAI, _nI, _tBI],
|
|
593
|
-
[64 | 0, 5, 0, 0, 0, 0], 4
|
|
594
|
-
];
|
|
595
|
-
var GetTableBucketEncryptionRequest$ = [3, n0, _GTBER,
|
|
596
|
-
0,
|
|
597
|
-
[_tBARN],
|
|
598
|
-
[[0, 1]], 1
|
|
599
|
-
];
|
|
600
|
-
var GetTableBucketEncryptionResponse$ = [3, n0, _GTBERe,
|
|
601
|
-
0,
|
|
602
|
-
[_eC],
|
|
603
|
-
[() => EncryptionConfiguration$], 1
|
|
604
|
-
];
|
|
605
|
-
var GetTableBucketMaintenanceConfigurationRequest$ = [3, n0, _GTBMCR,
|
|
606
|
-
0,
|
|
607
|
-
[_tBARN],
|
|
608
|
-
[[0, 1]], 1
|
|
609
|
-
];
|
|
610
|
-
var GetTableBucketMaintenanceConfigurationResponse$ = [3, n0, _GTBMCRe,
|
|
611
|
-
0,
|
|
612
|
-
[_tBARN, _co],
|
|
613
|
-
[0, () => TableBucketMaintenanceConfiguration], 2
|
|
614
|
-
];
|
|
615
|
-
var GetTableBucketMetricsConfigurationRequest$ = [3, n0, _GTBMCRet,
|
|
616
|
-
0,
|
|
617
|
-
[_tBARN],
|
|
618
|
-
[[0, 1]], 1
|
|
619
|
-
];
|
|
620
|
-
var GetTableBucketMetricsConfigurationResponse$ = [3, n0, _GTBMCReta,
|
|
621
|
-
0,
|
|
622
|
-
[_tBARN, _i],
|
|
623
|
-
[0, 0], 1
|
|
624
|
-
];
|
|
625
|
-
var GetTableBucketPolicyRequest$ = [3, n0, _GTBPR,
|
|
626
|
-
0,
|
|
627
|
-
[_tBARN],
|
|
628
|
-
[[0, 1]], 1
|
|
629
|
-
];
|
|
630
|
-
var GetTableBucketPolicyResponse$ = [3, n0, _GTBPRe,
|
|
631
|
-
0,
|
|
632
|
-
[_rP],
|
|
633
|
-
[0], 1
|
|
634
|
-
];
|
|
635
|
-
var GetTableBucketReplicationRequest$ = [3, n0, _GTBRR,
|
|
636
|
-
0,
|
|
637
|
-
[_tBARN],
|
|
638
|
-
[[0, { [_hQ]: _tBARN }]], 1
|
|
639
|
-
];
|
|
640
|
-
var GetTableBucketReplicationResponse$ = [3, n0, _GTBRRe,
|
|
641
|
-
0,
|
|
642
|
-
[_vT, _co],
|
|
643
|
-
[0, () => TableBucketReplicationConfiguration$], 2
|
|
644
|
-
];
|
|
645
|
-
var GetTableBucketRequest$ = [3, n0, _GTBR,
|
|
646
|
-
0,
|
|
647
|
-
[_tBARN],
|
|
648
|
-
[[0, 1]], 1
|
|
649
|
-
];
|
|
650
|
-
var GetTableBucketResponse$ = [3, n0, _GTBRe,
|
|
651
|
-
0,
|
|
652
|
-
[_a, _na, _oAI, _cA, _tBI, _ty],
|
|
653
|
-
[0, 0, 0, 5, 0, 0], 4
|
|
654
|
-
];
|
|
655
|
-
var GetTableBucketStorageClassRequest$ = [3, n0, _GTBSCR,
|
|
656
|
-
0,
|
|
657
|
-
[_tBARN],
|
|
658
|
-
[[0, 1]], 1
|
|
659
|
-
];
|
|
660
|
-
var GetTableBucketStorageClassResponse$ = [3, n0, _GTBSCRe,
|
|
661
|
-
0,
|
|
662
|
-
[_sCC],
|
|
663
|
-
[() => StorageClassConfiguration$], 1
|
|
664
|
-
];
|
|
665
|
-
var GetTableEncryptionRequest$ = [3, n0, _GTER,
|
|
666
|
-
0,
|
|
667
|
-
[_tBARN, _n, _na],
|
|
668
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
669
|
-
];
|
|
670
|
-
var GetTableEncryptionResponse$ = [3, n0, _GTERe,
|
|
671
|
-
0,
|
|
672
|
-
[_eC],
|
|
673
|
-
[() => EncryptionConfiguration$], 1
|
|
674
|
-
];
|
|
675
|
-
var GetTableMaintenanceConfigurationRequest$ = [3, n0, _GTMCR,
|
|
676
|
-
0,
|
|
677
|
-
[_tBARN, _n, _na],
|
|
678
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
679
|
-
];
|
|
680
|
-
var GetTableMaintenanceConfigurationResponse$ = [3, n0, _GTMCRe,
|
|
681
|
-
0,
|
|
682
|
-
[_tARN, _co],
|
|
683
|
-
[0, () => TableMaintenanceConfiguration], 2
|
|
684
|
-
];
|
|
685
|
-
var GetTableMaintenanceJobStatusRequest$ = [3, n0, _GTMJSR,
|
|
686
|
-
0,
|
|
687
|
-
[_tBARN, _n, _na],
|
|
688
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
689
|
-
];
|
|
690
|
-
var GetTableMaintenanceJobStatusResponse$ = [3, n0, _GTMJSRe,
|
|
691
|
-
0,
|
|
692
|
-
[_tARN, _s],
|
|
693
|
-
[0, () => TableMaintenanceJobStatus], 2
|
|
694
|
-
];
|
|
695
|
-
var GetTableMetadataLocationRequest$ = [3, n0, _GTMLR,
|
|
696
|
-
0,
|
|
697
|
-
[_tBARN, _n, _na],
|
|
698
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
699
|
-
];
|
|
700
|
-
var GetTableMetadataLocationResponse$ = [3, n0, _GTMLRe,
|
|
701
|
-
0,
|
|
702
|
-
[_vT, _wL, _mL],
|
|
703
|
-
[0, 0, 0], 2
|
|
704
|
-
];
|
|
705
|
-
var GetTablePolicyRequest$ = [3, n0, _GTPR,
|
|
706
|
-
0,
|
|
707
|
-
[_tBARN, _n, _na],
|
|
708
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
709
|
-
];
|
|
710
|
-
var GetTablePolicyResponse$ = [3, n0, _GTPRe,
|
|
711
|
-
0,
|
|
712
|
-
[_rP],
|
|
713
|
-
[0], 1
|
|
714
|
-
];
|
|
715
|
-
var GetTableRecordExpirationConfigurationRequest$ = [3, n0, _GTRECR,
|
|
716
|
-
0,
|
|
717
|
-
[_tA],
|
|
718
|
-
[[0, { [_hQ]: _tA }]], 1
|
|
719
|
-
];
|
|
720
|
-
var GetTableRecordExpirationConfigurationResponse$ = [3, n0, _GTRECRe,
|
|
721
|
-
0,
|
|
722
|
-
[_co],
|
|
723
|
-
[() => TableRecordExpirationConfigurationValue$], 1
|
|
724
|
-
];
|
|
725
|
-
var GetTableRecordExpirationJobStatusRequest$ = [3, n0, _GTREJSR,
|
|
726
|
-
0,
|
|
727
|
-
[_tA],
|
|
728
|
-
[[0, { [_hQ]: _tA }]], 1
|
|
729
|
-
];
|
|
730
|
-
var GetTableRecordExpirationJobStatusResponse$ = [3, n0, _GTREJSRe,
|
|
731
|
-
0,
|
|
732
|
-
[_s, _lRT, _fM, _met],
|
|
733
|
-
[0, 5, 0, () => TableRecordExpirationJobMetrics$], 1
|
|
734
|
-
];
|
|
735
|
-
var GetTableReplicationRequest$ = [3, n0, _GTRR,
|
|
736
|
-
0,
|
|
737
|
-
[_tA],
|
|
738
|
-
[[0, { [_hQ]: _tA }]], 1
|
|
739
|
-
];
|
|
740
|
-
var GetTableReplicationResponse$ = [3, n0, _GTRRe,
|
|
741
|
-
0,
|
|
742
|
-
[_vT, _co],
|
|
743
|
-
[0, () => TableReplicationConfiguration$], 2
|
|
744
|
-
];
|
|
745
|
-
var GetTableReplicationStatusRequest$ = [3, n0, _GTRSR,
|
|
746
|
-
0,
|
|
747
|
-
[_tA],
|
|
748
|
-
[[0, { [_hQ]: _tA }]], 1
|
|
749
|
-
];
|
|
750
|
-
var GetTableReplicationStatusResponse$ = [3, n0, _GTRSRe,
|
|
751
|
-
0,
|
|
752
|
-
[_sTA, _d],
|
|
753
|
-
[0, () => ReplicationDestinationStatuses], 2
|
|
754
|
-
];
|
|
755
|
-
var GetTableRequest$ = [3, n0, _GTR,
|
|
756
|
-
0,
|
|
757
|
-
[_tBARN, _n, _na, _tA],
|
|
758
|
-
[[0, { [_hQ]: _tBARN }], [0, { [_hQ]: _n }], [0, { [_hQ]: _na }], [0, { [_hQ]: _tA }]]
|
|
759
|
-
];
|
|
760
|
-
var GetTableResponse$ = [3, n0, _GTRe,
|
|
761
|
-
0,
|
|
762
|
-
[_na, _ty, _tARN, _n, _vT, _wL, _cA, _cB, _mA, _mB, _oAI, _f, _nI, _mL, _mBS, _tBI, _mTI],
|
|
763
|
-
[0, 0, 0, 64 | 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, () => ManagedTableInformation$], 12
|
|
764
|
-
];
|
|
765
|
-
var GetTableStorageClassRequest$ = [3, n0, _GTSCR,
|
|
766
|
-
0,
|
|
767
|
-
[_tBARN, _n, _na],
|
|
768
|
-
[[0, 1], [0, 1], [0, 1]], 3
|
|
769
|
-
];
|
|
770
|
-
var GetTableStorageClassResponse$ = [3, n0, _GTSCRe,
|
|
771
|
-
0,
|
|
772
|
-
[_sCC],
|
|
773
|
-
[() => StorageClassConfiguration$], 1
|
|
774
|
-
];
|
|
775
|
-
var IcebergCompactionSettings$ = [3, n0, _ICS,
|
|
776
|
-
0,
|
|
777
|
-
[_tFSMB, _st],
|
|
778
|
-
[1, 0]
|
|
779
|
-
];
|
|
780
|
-
var IcebergMetadata$ = [3, n0, _IM,
|
|
781
|
-
0,
|
|
782
|
-
[_sc, _p],
|
|
783
|
-
[() => IcebergSchema$, 128 | 0], 1
|
|
784
|
-
];
|
|
785
|
-
var IcebergSchema$ = [3, n0, _IS,
|
|
786
|
-
0,
|
|
787
|
-
[_fi],
|
|
788
|
-
[() => SchemaFieldList], 1
|
|
789
|
-
];
|
|
790
|
-
var IcebergSnapshotManagementSettings$ = [3, n0, _ISMS,
|
|
791
|
-
0,
|
|
792
|
-
[_mSTK, _mSAH],
|
|
793
|
-
[1, 1]
|
|
794
|
-
];
|
|
795
|
-
var IcebergUnreferencedFileRemovalSettings$ = [3, n0, _IUFRS,
|
|
796
|
-
0,
|
|
797
|
-
[_uD, _nCD],
|
|
798
|
-
[1, 1]
|
|
799
|
-
];
|
|
800
|
-
var InternalServerErrorException$ = [-3, n0, _ISEE,
|
|
801
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
802
|
-
[_m],
|
|
803
|
-
[0]
|
|
804
|
-
];
|
|
805
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerErrorException$, InternalServerErrorException);
|
|
806
|
-
var LastSuccessfulReplicatedUpdate$ = [3, n0, _LSRU,
|
|
807
|
-
0,
|
|
808
|
-
[_mL, _ti],
|
|
809
|
-
[0, 5], 2
|
|
810
|
-
];
|
|
811
|
-
var ListNamespacesRequest$ = [3, n0, _LNR,
|
|
812
|
-
0,
|
|
813
|
-
[_tBARN, _pr, _cT, _mN],
|
|
814
|
-
[[0, 1], [0, { [_hQ]: _pr }], [0, { [_hQ]: _cT }], [1, { [_hQ]: _mN }]], 1
|
|
815
|
-
];
|
|
816
|
-
var ListNamespacesResponse$ = [3, n0, _LNRi,
|
|
817
|
-
0,
|
|
818
|
-
[_nam, _cT],
|
|
819
|
-
[() => NamespaceSummaryList, 0], 1
|
|
820
|
-
];
|
|
821
|
-
var ListTableBucketsRequest$ = [3, n0, _LTBR,
|
|
822
|
-
0,
|
|
823
|
-
[_pr, _cT, _mBa, _ty],
|
|
824
|
-
[[0, { [_hQ]: _pr }], [0, { [_hQ]: _cT }], [1, { [_hQ]: _mBa }], [0, { [_hQ]: _ty }]]
|
|
825
|
-
];
|
|
826
|
-
var ListTableBucketsResponse$ = [3, n0, _LTBRi,
|
|
827
|
-
0,
|
|
828
|
-
[_tB, _cT],
|
|
829
|
-
[() => TableBucketSummaryList, 0], 1
|
|
830
|
-
];
|
|
831
|
-
var ListTablesRequest$ = [3, n0, _LTR,
|
|
832
|
-
0,
|
|
833
|
-
[_tBARN, _n, _pr, _cT, _mT],
|
|
834
|
-
[[0, 1], [0, { [_hQ]: _n }], [0, { [_hQ]: _pr }], [0, { [_hQ]: _cT }], [1, { [_hQ]: _mT }]], 1
|
|
835
|
-
];
|
|
836
|
-
var ListTablesResponse$ = [3, n0, _LTRi,
|
|
837
|
-
0,
|
|
838
|
-
[_ta, _cT],
|
|
839
|
-
[() => TableSummaryList, 0], 1
|
|
840
|
-
];
|
|
841
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
842
|
-
0,
|
|
843
|
-
[_rA],
|
|
844
|
-
[[0, 1]], 1
|
|
845
|
-
];
|
|
846
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
847
|
-
0,
|
|
848
|
-
[_t],
|
|
849
|
-
[128 | 0]
|
|
850
|
-
];
|
|
851
|
-
var ManagedTableInformation$ = [3, n0, _MTI,
|
|
852
|
-
0,
|
|
853
|
-
[_rI],
|
|
854
|
-
[() => ReplicationInformation$]
|
|
855
|
-
];
|
|
856
|
-
var MethodNotAllowedException$ = [-3, n0, _MNAE,
|
|
857
|
-
{ [_e]: _c, [_hE]: 405 },
|
|
858
|
-
[_m],
|
|
859
|
-
[0]
|
|
860
|
-
];
|
|
861
|
-
schema.TypeRegistry.for(n0).registerError(MethodNotAllowedException$, MethodNotAllowedException);
|
|
862
|
-
var NamespaceSummary$ = [3, n0, _NS,
|
|
863
|
-
0,
|
|
864
|
-
[_n, _cA, _cB, _oAI, _nI, _tBI],
|
|
865
|
-
[64 | 0, 5, 0, 0, 0, 0], 4
|
|
866
|
-
];
|
|
867
|
-
var NotFoundException$ = [-3, n0, _NFE,
|
|
868
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
869
|
-
[_m],
|
|
870
|
-
[0]
|
|
871
|
-
];
|
|
872
|
-
schema.TypeRegistry.for(n0).registerError(NotFoundException$, NotFoundException);
|
|
873
|
-
var PutTableBucketEncryptionRequest$ = [3, n0, _PTBER,
|
|
874
|
-
0,
|
|
875
|
-
[_tBARN, _eC],
|
|
876
|
-
[[0, 1], () => EncryptionConfiguration$], 2
|
|
877
|
-
];
|
|
878
|
-
var PutTableBucketMaintenanceConfigurationRequest$ = [3, n0, _PTBMCR,
|
|
879
|
-
0,
|
|
880
|
-
[_tBARN, _ty, _v],
|
|
881
|
-
[[0, 1], [0, 1], () => TableBucketMaintenanceConfigurationValue$], 3
|
|
882
|
-
];
|
|
883
|
-
var PutTableBucketMetricsConfigurationRequest$ = [3, n0, _PTBMCRu,
|
|
884
|
-
0,
|
|
885
|
-
[_tBARN],
|
|
886
|
-
[[0, 1]], 1
|
|
887
|
-
];
|
|
888
|
-
var PutTableBucketPolicyRequest$ = [3, n0, _PTBPR,
|
|
889
|
-
0,
|
|
890
|
-
[_tBARN, _rP],
|
|
891
|
-
[[0, 1], 0], 2
|
|
892
|
-
];
|
|
893
|
-
var PutTableBucketReplicationRequest$ = [3, n0, _PTBRR,
|
|
894
|
-
0,
|
|
895
|
-
[_tBARN, _co, _vT],
|
|
896
|
-
[[0, { [_hQ]: _tBARN }], () => TableBucketReplicationConfiguration$, [0, { [_hQ]: _vT }]], 2
|
|
897
|
-
];
|
|
898
|
-
var PutTableBucketReplicationResponse$ = [3, n0, _PTBRRu,
|
|
899
|
-
0,
|
|
900
|
-
[_vT, _s],
|
|
901
|
-
[0, 0], 2
|
|
902
|
-
];
|
|
903
|
-
var PutTableBucketStorageClassRequest$ = [3, n0, _PTBSCR,
|
|
904
|
-
0,
|
|
905
|
-
[_tBARN, _sCC],
|
|
906
|
-
[[0, 1], () => StorageClassConfiguration$], 2
|
|
907
|
-
];
|
|
908
|
-
var PutTableMaintenanceConfigurationRequest$ = [3, n0, _PTMCR,
|
|
909
|
-
0,
|
|
910
|
-
[_tBARN, _n, _na, _ty, _v],
|
|
911
|
-
[[0, 1], [0, 1], [0, 1], [0, 1], () => TableMaintenanceConfigurationValue$], 5
|
|
912
|
-
];
|
|
913
|
-
var PutTablePolicyRequest$ = [3, n0, _PTPR,
|
|
914
|
-
0,
|
|
915
|
-
[_tBARN, _n, _na, _rP],
|
|
916
|
-
[[0, 1], [0, 1], [0, 1], 0], 4
|
|
917
|
-
];
|
|
918
|
-
var PutTableRecordExpirationConfigurationRequest$ = [3, n0, _PTRECR,
|
|
919
|
-
0,
|
|
920
|
-
[_tA, _v],
|
|
921
|
-
[[0, { [_hQ]: _tA }], () => TableRecordExpirationConfigurationValue$], 2
|
|
922
|
-
];
|
|
923
|
-
var PutTableReplicationRequest$ = [3, n0, _PTRR,
|
|
924
|
-
0,
|
|
925
|
-
[_tA, _co, _vT],
|
|
926
|
-
[[0, { [_hQ]: _tA }], () => TableReplicationConfiguration$, [0, { [_hQ]: _vT }]], 2
|
|
927
|
-
];
|
|
928
|
-
var PutTableReplicationResponse$ = [3, n0, _PTRRu,
|
|
929
|
-
0,
|
|
930
|
-
[_vT, _s],
|
|
931
|
-
[0, 0], 2
|
|
932
|
-
];
|
|
933
|
-
var RenameTableRequest$ = [3, n0, _RTR,
|
|
934
|
-
0,
|
|
935
|
-
[_tBARN, _n, _na, _nNN, _nN, _vT],
|
|
936
|
-
[[0, 1], [0, 1], [0, 1], 0, 0, 0], 3
|
|
937
|
-
];
|
|
938
|
-
var ReplicationDestination$ = [3, n0, _RD,
|
|
939
|
-
0,
|
|
940
|
-
[_dTBARN],
|
|
941
|
-
[0], 1
|
|
942
|
-
];
|
|
943
|
-
var ReplicationDestinationStatusModel$ = [3, n0, _RDSM,
|
|
944
|
-
0,
|
|
945
|
-
[_rS, _dTBA, _dTA, _lSRU, _fM],
|
|
946
|
-
[0, 0, 0, () => LastSuccessfulReplicatedUpdate$, 0], 2
|
|
947
|
-
];
|
|
948
|
-
var ReplicationInformation$ = [3, n0, _RI,
|
|
949
|
-
0,
|
|
950
|
-
[_sTARN],
|
|
951
|
-
[0], 1
|
|
952
|
-
];
|
|
953
|
-
var SchemaField$ = [3, n0, _SF,
|
|
954
|
-
0,
|
|
955
|
-
[_na, _ty, _r],
|
|
956
|
-
[0, 0, 2], 2
|
|
957
|
-
];
|
|
958
|
-
var StorageClassConfiguration$ = [3, n0, _SCC,
|
|
959
|
-
0,
|
|
960
|
-
[_sC],
|
|
961
|
-
[0], 1
|
|
962
|
-
];
|
|
963
|
-
var TableBucketMaintenanceConfigurationValue$ = [3, n0, _TBMCV,
|
|
964
|
-
0,
|
|
965
|
-
[_s, _set],
|
|
966
|
-
[0, () => TableBucketMaintenanceSettings$]
|
|
967
|
-
];
|
|
968
|
-
var TableBucketReplicationConfiguration$ = [3, n0, _TBRC,
|
|
969
|
-
0,
|
|
970
|
-
[_ro, _ru],
|
|
971
|
-
[0, () => TableBucketReplicationRules], 2
|
|
972
|
-
];
|
|
973
|
-
var TableBucketReplicationRule$ = [3, n0, _TBRR,
|
|
974
|
-
0,
|
|
975
|
-
[_d],
|
|
976
|
-
[() => ReplicationDestinations], 1
|
|
977
|
-
];
|
|
978
|
-
var TableBucketSummary$ = [3, n0, _TBS,
|
|
979
|
-
0,
|
|
980
|
-
[_a, _na, _oAI, _cA, _tBI, _ty],
|
|
981
|
-
[0, 0, 0, 5, 0, 0], 4
|
|
982
|
-
];
|
|
983
|
-
var TableMaintenanceConfigurationValue$ = [3, n0, _TMCV,
|
|
984
|
-
0,
|
|
985
|
-
[_s, _set],
|
|
986
|
-
[0, () => TableMaintenanceSettings$]
|
|
987
|
-
];
|
|
988
|
-
var TableMaintenanceJobStatusValue$ = [3, n0, _TMJSV,
|
|
989
|
-
0,
|
|
990
|
-
[_s, _lRT, _fM],
|
|
991
|
-
[0, 5, 0], 1
|
|
992
|
-
];
|
|
993
|
-
var TableRecordExpirationConfigurationValue$ = [3, n0, _TRECV,
|
|
994
|
-
0,
|
|
995
|
-
[_s, _set],
|
|
996
|
-
[0, () => TableRecordExpirationSettings$]
|
|
997
|
-
];
|
|
998
|
-
var TableRecordExpirationJobMetrics$ = [3, n0, _TREJM,
|
|
999
|
-
0,
|
|
1000
|
-
[_dDF, _dR, _rFS],
|
|
1001
|
-
[1, 1, 1]
|
|
1002
|
-
];
|
|
1003
|
-
var TableRecordExpirationSettings$ = [3, n0, _TRES,
|
|
1004
|
-
0,
|
|
1005
|
-
[_da],
|
|
1006
|
-
[1]
|
|
1007
|
-
];
|
|
1008
|
-
var TableReplicationConfiguration$ = [3, n0, _TRC,
|
|
1009
|
-
0,
|
|
1010
|
-
[_ro, _ru],
|
|
1011
|
-
[0, () => TableReplicationRules], 2
|
|
1012
|
-
];
|
|
1013
|
-
var TableReplicationRule$ = [3, n0, _TRR,
|
|
1014
|
-
0,
|
|
1015
|
-
[_d],
|
|
1016
|
-
[() => ReplicationDestinations], 1
|
|
1017
|
-
];
|
|
1018
|
-
var TableSummary$ = [3, n0, _TS,
|
|
1019
|
-
0,
|
|
1020
|
-
[_n, _na, _ty, _tARN, _cA, _mA, _mBS, _nI, _tBI],
|
|
1021
|
-
[64 | 0, 0, 0, 0, 5, 5, 0, 0, 0], 6
|
|
1022
|
-
];
|
|
1023
|
-
var TagResourceRequest$ = [3, n0, _TRRa,
|
|
1024
|
-
0,
|
|
1025
|
-
[_rA, _t],
|
|
1026
|
-
[[0, 1], 128 | 0], 2
|
|
1027
|
-
];
|
|
1028
|
-
var TagResourceResponse$ = [3, n0, _TRRag,
|
|
1029
|
-
0,
|
|
1030
|
-
[],
|
|
1031
|
-
[]
|
|
1032
|
-
];
|
|
1033
|
-
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
1034
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1035
|
-
[_m],
|
|
1036
|
-
[0]
|
|
1037
|
-
];
|
|
1038
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
1039
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1040
|
-
0,
|
|
1041
|
-
[_rA, _tK],
|
|
1042
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1043
|
-
];
|
|
1044
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1045
|
-
0,
|
|
1046
|
-
[],
|
|
1047
|
-
[]
|
|
1048
|
-
];
|
|
1049
|
-
var UpdateTableMetadataLocationRequest$ = [3, n0, _UTMLR,
|
|
1050
|
-
0,
|
|
1051
|
-
[_tBARN, _n, _na, _vT, _mL],
|
|
1052
|
-
[[0, 1], [0, 1], [0, 1], 0, 0], 5
|
|
1053
|
-
];
|
|
1054
|
-
var UpdateTableMetadataLocationResponse$ = [3, n0, _UTMLRp,
|
|
1055
|
-
0,
|
|
1056
|
-
[_na, _tARN, _n, _vT, _mL],
|
|
1057
|
-
[0, 0, 64 | 0, 0, 0], 5
|
|
1058
|
-
];
|
|
1059
|
-
var __Unit = "unit";
|
|
1060
|
-
var S3TablesServiceException$ = [-3, _sm, "S3TablesServiceException", 0, [], []];
|
|
1061
|
-
schema.TypeRegistry.for(_sm).registerError(S3TablesServiceException$, S3TablesServiceException);
|
|
1062
|
-
var NamespaceSummaryList = [1, n0, _NSL,
|
|
1063
|
-
0, () => NamespaceSummary$
|
|
1064
|
-
];
|
|
1065
|
-
var ReplicationDestinations = [1, n0, _RDe,
|
|
1066
|
-
0, () => ReplicationDestination$
|
|
1067
|
-
];
|
|
1068
|
-
var ReplicationDestinationStatuses = [1, n0, _RDS,
|
|
1069
|
-
0, () => ReplicationDestinationStatusModel$
|
|
1070
|
-
];
|
|
1071
|
-
var SchemaFieldList = [1, n0, _SFL,
|
|
1072
|
-
0, () => SchemaField$
|
|
1073
|
-
];
|
|
1074
|
-
var TableBucketReplicationRules = [1, n0, _TBRRa,
|
|
1075
|
-
0, () => TableBucketReplicationRule$
|
|
1076
|
-
];
|
|
1077
|
-
var TableBucketSummaryList = [1, n0, _TBSL,
|
|
1078
|
-
0, () => TableBucketSummary$
|
|
1079
|
-
];
|
|
1080
|
-
var TableReplicationRules = [1, n0, _TRRab,
|
|
1081
|
-
0, () => TableReplicationRule$
|
|
1082
|
-
];
|
|
1083
|
-
var TableSummaryList = [1, n0, _TSL,
|
|
1084
|
-
0, () => TableSummary$
|
|
1085
|
-
];
|
|
1086
|
-
var TableBucketMaintenanceConfiguration = [2, n0, _TBMC,
|
|
1087
|
-
0, 0, () => TableBucketMaintenanceConfigurationValue$
|
|
1088
|
-
];
|
|
1089
|
-
var TableMaintenanceConfiguration = [2, n0, _TMC,
|
|
1090
|
-
0, 0, () => TableMaintenanceConfigurationValue$
|
|
1091
|
-
];
|
|
1092
|
-
var TableMaintenanceJobStatus = [2, n0, _TMJS,
|
|
1093
|
-
0, 0, () => TableMaintenanceJobStatusValue$
|
|
1094
|
-
];
|
|
1095
|
-
var TableBucketMaintenanceSettings$ = [4, n0, _TBMS,
|
|
1096
|
-
0,
|
|
1097
|
-
[_iUFR],
|
|
1098
|
-
[() => IcebergUnreferencedFileRemovalSettings$]
|
|
1099
|
-
];
|
|
1100
|
-
var TableMaintenanceSettings$ = [4, n0, _TMS,
|
|
1101
|
-
0,
|
|
1102
|
-
[_iC, _iSM],
|
|
1103
|
-
[() => IcebergCompactionSettings$, () => IcebergSnapshotManagementSettings$]
|
|
1104
|
-
];
|
|
1105
|
-
var TableMetadata$ = [4, n0, _TM,
|
|
1106
|
-
0,
|
|
1107
|
-
[_ic],
|
|
1108
|
-
[() => IcebergMetadata$]
|
|
1109
|
-
];
|
|
1110
|
-
var CreateNamespace$ = [9, n0, _CN,
|
|
1111
|
-
{ [_h]: ["PUT", "/namespaces/{tableBucketARN}", 200] }, () => CreateNamespaceRequest$, () => CreateNamespaceResponse$
|
|
1112
|
-
];
|
|
1113
|
-
var CreateTable$ = [9, n0, _CT,
|
|
1114
|
-
{ [_h]: ["PUT", "/tables/{tableBucketARN}/{namespace}", 200] }, () => CreateTableRequest$, () => CreateTableResponse$
|
|
1115
|
-
];
|
|
1116
|
-
var CreateTableBucket$ = [9, n0, _CTB,
|
|
1117
|
-
{ [_h]: ["PUT", "/buckets", 200] }, () => CreateTableBucketRequest$, () => CreateTableBucketResponse$
|
|
1118
|
-
];
|
|
1119
|
-
var DeleteNamespace$ = [9, n0, _DN,
|
|
1120
|
-
{ [_h]: ["DELETE", "/namespaces/{tableBucketARN}/{namespace}", 204] }, () => DeleteNamespaceRequest$, () => __Unit
|
|
1121
|
-
];
|
|
1122
|
-
var DeleteTable$ = [9, n0, _DT,
|
|
1123
|
-
{ [_h]: ["DELETE", "/tables/{tableBucketARN}/{namespace}/{name}", 204] }, () => DeleteTableRequest$, () => __Unit
|
|
1124
|
-
];
|
|
1125
|
-
var DeleteTableBucket$ = [9, n0, _DTB,
|
|
1126
|
-
{ [_h]: ["DELETE", "/buckets/{tableBucketARN}", 204] }, () => DeleteTableBucketRequest$, () => __Unit
|
|
1127
|
-
];
|
|
1128
|
-
var DeleteTableBucketEncryption$ = [9, n0, _DTBE,
|
|
1129
|
-
{ [_h]: ["DELETE", "/buckets/{tableBucketARN}/encryption", 204] }, () => DeleteTableBucketEncryptionRequest$, () => __Unit
|
|
1130
|
-
];
|
|
1131
|
-
var DeleteTableBucketMetricsConfiguration$ = [9, n0, _DTBMC,
|
|
1132
|
-
{ [_h]: ["DELETE", "/buckets/{tableBucketARN}/metrics", 204] }, () => DeleteTableBucketMetricsConfigurationRequest$, () => __Unit
|
|
1133
|
-
];
|
|
1134
|
-
var DeleteTableBucketPolicy$ = [9, n0, _DTBP,
|
|
1135
|
-
{ [_h]: ["DELETE", "/buckets/{tableBucketARN}/policy", 204] }, () => DeleteTableBucketPolicyRequest$, () => __Unit
|
|
1136
|
-
];
|
|
1137
|
-
var DeleteTableBucketReplication$ = [9, n0, _DTBRe,
|
|
1138
|
-
{ [_h]: ["DELETE", "/table-bucket-replication", 204] }, () => DeleteTableBucketReplicationRequest$, () => __Unit
|
|
1139
|
-
];
|
|
1140
|
-
var DeleteTablePolicy$ = [9, n0, _DTP,
|
|
1141
|
-
{ [_h]: ["DELETE", "/tables/{tableBucketARN}/{namespace}/{name}/policy", 204] }, () => DeleteTablePolicyRequest$, () => __Unit
|
|
1142
|
-
];
|
|
1143
|
-
var DeleteTableReplication$ = [9, n0, _DTRe,
|
|
1144
|
-
{ [_h]: ["DELETE", "/table-replication", 204] }, () => DeleteTableReplicationRequest$, () => __Unit
|
|
1145
|
-
];
|
|
1146
|
-
var GetNamespace$ = [9, n0, _GN,
|
|
1147
|
-
{ [_h]: ["GET", "/namespaces/{tableBucketARN}/{namespace}", 200] }, () => GetNamespaceRequest$, () => GetNamespaceResponse$
|
|
1148
|
-
];
|
|
1149
|
-
var GetTable$ = [9, n0, _GT,
|
|
1150
|
-
{ [_h]: ["GET", "/get-table", 200] }, () => GetTableRequest$, () => GetTableResponse$
|
|
1151
|
-
];
|
|
1152
|
-
var GetTableBucket$ = [9, n0, _GTB,
|
|
1153
|
-
{ [_h]: ["GET", "/buckets/{tableBucketARN}", 200] }, () => GetTableBucketRequest$, () => GetTableBucketResponse$
|
|
1154
|
-
];
|
|
1155
|
-
var GetTableBucketEncryption$ = [9, n0, _GTBE,
|
|
1156
|
-
{ [_h]: ["GET", "/buckets/{tableBucketARN}/encryption", 200] }, () => GetTableBucketEncryptionRequest$, () => GetTableBucketEncryptionResponse$
|
|
1157
|
-
];
|
|
1158
|
-
var GetTableBucketMaintenanceConfiguration$ = [9, n0, _GTBMC,
|
|
1159
|
-
{ [_h]: ["GET", "/buckets/{tableBucketARN}/maintenance", 200] }, () => GetTableBucketMaintenanceConfigurationRequest$, () => GetTableBucketMaintenanceConfigurationResponse$
|
|
1160
|
-
];
|
|
1161
|
-
var GetTableBucketMetricsConfiguration$ = [9, n0, _GTBMCe,
|
|
1162
|
-
{ [_h]: ["GET", "/buckets/{tableBucketARN}/metrics", 200] }, () => GetTableBucketMetricsConfigurationRequest$, () => GetTableBucketMetricsConfigurationResponse$
|
|
1163
|
-
];
|
|
1164
|
-
var GetTableBucketPolicy$ = [9, n0, _GTBP,
|
|
1165
|
-
{ [_h]: ["GET", "/buckets/{tableBucketARN}/policy", 200] }, () => GetTableBucketPolicyRequest$, () => GetTableBucketPolicyResponse$
|
|
1166
|
-
];
|
|
1167
|
-
var GetTableBucketReplication$ = [9, n0, _GTBRet,
|
|
1168
|
-
{ [_h]: ["GET", "/table-bucket-replication", 200] }, () => GetTableBucketReplicationRequest$, () => GetTableBucketReplicationResponse$
|
|
1169
|
-
];
|
|
1170
|
-
var GetTableBucketStorageClass$ = [9, n0, _GTBSC,
|
|
1171
|
-
{ [_h]: ["GET", "/buckets/{tableBucketARN}/storage-class", 200] }, () => GetTableBucketStorageClassRequest$, () => GetTableBucketStorageClassResponse$
|
|
1172
|
-
];
|
|
1173
|
-
var GetTableEncryption$ = [9, n0, _GTE,
|
|
1174
|
-
{ [_h]: ["GET", "/tables/{tableBucketARN}/{namespace}/{name}/encryption", 200] }, () => GetTableEncryptionRequest$, () => GetTableEncryptionResponse$
|
|
1175
|
-
];
|
|
1176
|
-
var GetTableMaintenanceConfiguration$ = [9, n0, _GTMC,
|
|
1177
|
-
{ [_h]: ["GET", "/tables/{tableBucketARN}/{namespace}/{name}/maintenance", 200] }, () => GetTableMaintenanceConfigurationRequest$, () => GetTableMaintenanceConfigurationResponse$
|
|
1178
|
-
];
|
|
1179
|
-
var GetTableMaintenanceJobStatus$ = [9, n0, _GTMJS,
|
|
1180
|
-
{ [_h]: ["GET", "/tables/{tableBucketARN}/{namespace}/{name}/maintenance-job-status", 200] }, () => GetTableMaintenanceJobStatusRequest$, () => GetTableMaintenanceJobStatusResponse$
|
|
1181
|
-
];
|
|
1182
|
-
var GetTableMetadataLocation$ = [9, n0, _GTML,
|
|
1183
|
-
{ [_h]: ["GET", "/tables/{tableBucketARN}/{namespace}/{name}/metadata-location", 200] }, () => GetTableMetadataLocationRequest$, () => GetTableMetadataLocationResponse$
|
|
1184
|
-
];
|
|
1185
|
-
var GetTablePolicy$ = [9, n0, _GTP,
|
|
1186
|
-
{ [_h]: ["GET", "/tables/{tableBucketARN}/{namespace}/{name}/policy", 200] }, () => GetTablePolicyRequest$, () => GetTablePolicyResponse$
|
|
1187
|
-
];
|
|
1188
|
-
var GetTableRecordExpirationConfiguration$ = [9, n0, _GTREC,
|
|
1189
|
-
{ [_h]: ["GET", "/table-record-expiration", 200] }, () => GetTableRecordExpirationConfigurationRequest$, () => GetTableRecordExpirationConfigurationResponse$
|
|
1190
|
-
];
|
|
1191
|
-
var GetTableRecordExpirationJobStatus$ = [9, n0, _GTREJS,
|
|
1192
|
-
{ [_h]: ["GET", "/table-record-expiration-job-status", 200] }, () => GetTableRecordExpirationJobStatusRequest$, () => GetTableRecordExpirationJobStatusResponse$
|
|
1193
|
-
];
|
|
1194
|
-
var GetTableReplication$ = [9, n0, _GTRet,
|
|
1195
|
-
{ [_h]: ["GET", "/table-replication", 200] }, () => GetTableReplicationRequest$, () => GetTableReplicationResponse$
|
|
1196
|
-
];
|
|
1197
|
-
var GetTableReplicationStatus$ = [9, n0, _GTRS,
|
|
1198
|
-
{ [_h]: ["GET", "/replication-status", 200] }, () => GetTableReplicationStatusRequest$, () => GetTableReplicationStatusResponse$
|
|
1199
|
-
];
|
|
1200
|
-
var GetTableStorageClass$ = [9, n0, _GTSC,
|
|
1201
|
-
{ [_h]: ["GET", "/tables/{tableBucketARN}/{namespace}/{name}/storage-class", 200] }, () => GetTableStorageClassRequest$, () => GetTableStorageClassResponse$
|
|
1202
|
-
];
|
|
1203
|
-
var ListNamespaces$ = [9, n0, _LN,
|
|
1204
|
-
{ [_h]: ["GET", "/namespaces/{tableBucketARN}", 200] }, () => ListNamespacesRequest$, () => ListNamespacesResponse$
|
|
1205
|
-
];
|
|
1206
|
-
var ListTableBuckets$ = [9, n0, _LTB,
|
|
1207
|
-
{ [_h]: ["GET", "/buckets", 200] }, () => ListTableBucketsRequest$, () => ListTableBucketsResponse$
|
|
1208
|
-
];
|
|
1209
|
-
var ListTables$ = [9, n0, _LT,
|
|
1210
|
-
{ [_h]: ["GET", "/tables/{tableBucketARN}", 200] }, () => ListTablesRequest$, () => ListTablesResponse$
|
|
1211
|
-
];
|
|
1212
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1213
|
-
{ [_h]: ["GET", "/tag/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1214
|
-
];
|
|
1215
|
-
var PutTableBucketEncryption$ = [9, n0, _PTBE,
|
|
1216
|
-
{ [_h]: ["PUT", "/buckets/{tableBucketARN}/encryption", 200] }, () => PutTableBucketEncryptionRequest$, () => __Unit
|
|
1217
|
-
];
|
|
1218
|
-
var PutTableBucketMaintenanceConfiguration$ = [9, n0, _PTBMC,
|
|
1219
|
-
{ [_h]: ["PUT", "/buckets/{tableBucketARN}/maintenance/{type}", 204] }, () => PutTableBucketMaintenanceConfigurationRequest$, () => __Unit
|
|
1220
|
-
];
|
|
1221
|
-
var PutTableBucketMetricsConfiguration$ = [9, n0, _PTBMCu,
|
|
1222
|
-
{ [_h]: ["PUT", "/buckets/{tableBucketARN}/metrics", 204] }, () => PutTableBucketMetricsConfigurationRequest$, () => __Unit
|
|
1223
|
-
];
|
|
1224
|
-
var PutTableBucketPolicy$ = [9, n0, _PTBP,
|
|
1225
|
-
{ [_h]: ["PUT", "/buckets/{tableBucketARN}/policy", 200] }, () => PutTableBucketPolicyRequest$, () => __Unit
|
|
1226
|
-
];
|
|
1227
|
-
var PutTableBucketReplication$ = [9, n0, _PTBR,
|
|
1228
|
-
{ [_h]: ["PUT", "/table-bucket-replication", 200] }, () => PutTableBucketReplicationRequest$, () => PutTableBucketReplicationResponse$
|
|
1229
|
-
];
|
|
1230
|
-
var PutTableBucketStorageClass$ = [9, n0, _PTBSC,
|
|
1231
|
-
{ [_h]: ["PUT", "/buckets/{tableBucketARN}/storage-class", 200] }, () => PutTableBucketStorageClassRequest$, () => __Unit
|
|
1232
|
-
];
|
|
1233
|
-
var PutTableMaintenanceConfiguration$ = [9, n0, _PTMC,
|
|
1234
|
-
{ [_h]: ["PUT", "/tables/{tableBucketARN}/{namespace}/{name}/maintenance/{type}", 204] }, () => PutTableMaintenanceConfigurationRequest$, () => __Unit
|
|
1235
|
-
];
|
|
1236
|
-
var PutTablePolicy$ = [9, n0, _PTP,
|
|
1237
|
-
{ [_h]: ["PUT", "/tables/{tableBucketARN}/{namespace}/{name}/policy", 200] }, () => PutTablePolicyRequest$, () => __Unit
|
|
1238
|
-
];
|
|
1239
|
-
var PutTableRecordExpirationConfiguration$ = [9, n0, _PTREC,
|
|
1240
|
-
{ [_h]: ["PUT", "/table-record-expiration", 204] }, () => PutTableRecordExpirationConfigurationRequest$, () => __Unit
|
|
1241
|
-
];
|
|
1242
|
-
var PutTableReplication$ = [9, n0, _PTR,
|
|
1243
|
-
{ [_h]: ["PUT", "/table-replication", 200] }, () => PutTableReplicationRequest$, () => PutTableReplicationResponse$
|
|
1244
|
-
];
|
|
1245
|
-
var RenameTable$ = [9, n0, _RT,
|
|
1246
|
-
{ [_h]: ["PUT", "/tables/{tableBucketARN}/{namespace}/{name}/rename", 204] }, () => RenameTableRequest$, () => __Unit
|
|
1247
|
-
];
|
|
1248
|
-
var TagResource$ = [9, n0, _TR,
|
|
1249
|
-
{ [_h]: ["POST", "/tag/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1250
|
-
];
|
|
1251
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1252
|
-
{ [_h]: ["DELETE", "/tag/{resourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1253
|
-
];
|
|
1254
|
-
var UpdateTableMetadataLocation$ = [9, n0, _UTML,
|
|
1255
|
-
{ [_h]: ["PUT", "/tables/{tableBucketARN}/{namespace}/{name}/metadata-location", 200] }, () => UpdateTableMetadataLocationRequest$, () => UpdateTableMetadataLocationResponse$
|
|
1256
|
-
];
|
|
1257
|
-
|
|
1258
116
|
class CreateNamespaceCommand extends smithyClient.Command
|
|
1259
117
|
.classBuilder()
|
|
1260
118
|
.ep(commonParams)
|
|
@@ -1263,7 +121,7 @@ class CreateNamespaceCommand extends smithyClient.Command
|
|
|
1263
121
|
})
|
|
1264
122
|
.s("S3TableBuckets", "CreateNamespace", {})
|
|
1265
123
|
.n("S3TablesClient", "CreateNamespaceCommand")
|
|
1266
|
-
.sc(CreateNamespace$)
|
|
124
|
+
.sc(schemas_0.CreateNamespace$)
|
|
1267
125
|
.build() {
|
|
1268
126
|
}
|
|
1269
127
|
|
|
@@ -1275,7 +133,7 @@ class CreateTableBucketCommand extends smithyClient.Command
|
|
|
1275
133
|
})
|
|
1276
134
|
.s("S3TableBuckets", "CreateTableBucket", {})
|
|
1277
135
|
.n("S3TablesClient", "CreateTableBucketCommand")
|
|
1278
|
-
.sc(CreateTableBucket$)
|
|
136
|
+
.sc(schemas_0.CreateTableBucket$)
|
|
1279
137
|
.build() {
|
|
1280
138
|
}
|
|
1281
139
|
|
|
@@ -1287,7 +145,7 @@ class CreateTableCommand extends smithyClient.Command
|
|
|
1287
145
|
})
|
|
1288
146
|
.s("S3TableBuckets", "CreateTable", {})
|
|
1289
147
|
.n("S3TablesClient", "CreateTableCommand")
|
|
1290
|
-
.sc(CreateTable$)
|
|
148
|
+
.sc(schemas_0.CreateTable$)
|
|
1291
149
|
.build() {
|
|
1292
150
|
}
|
|
1293
151
|
|
|
@@ -1299,7 +157,7 @@ class DeleteNamespaceCommand extends smithyClient.Command
|
|
|
1299
157
|
})
|
|
1300
158
|
.s("S3TableBuckets", "DeleteNamespace", {})
|
|
1301
159
|
.n("S3TablesClient", "DeleteNamespaceCommand")
|
|
1302
|
-
.sc(DeleteNamespace$)
|
|
160
|
+
.sc(schemas_0.DeleteNamespace$)
|
|
1303
161
|
.build() {
|
|
1304
162
|
}
|
|
1305
163
|
|
|
@@ -1311,7 +169,7 @@ class DeleteTableBucketCommand extends smithyClient.Command
|
|
|
1311
169
|
})
|
|
1312
170
|
.s("S3TableBuckets", "DeleteTableBucket", {})
|
|
1313
171
|
.n("S3TablesClient", "DeleteTableBucketCommand")
|
|
1314
|
-
.sc(DeleteTableBucket$)
|
|
172
|
+
.sc(schemas_0.DeleteTableBucket$)
|
|
1315
173
|
.build() {
|
|
1316
174
|
}
|
|
1317
175
|
|
|
@@ -1323,7 +181,7 @@ class DeleteTableBucketEncryptionCommand extends smithyClient.Command
|
|
|
1323
181
|
})
|
|
1324
182
|
.s("S3TableBuckets", "DeleteTableBucketEncryption", {})
|
|
1325
183
|
.n("S3TablesClient", "DeleteTableBucketEncryptionCommand")
|
|
1326
|
-
.sc(DeleteTableBucketEncryption$)
|
|
184
|
+
.sc(schemas_0.DeleteTableBucketEncryption$)
|
|
1327
185
|
.build() {
|
|
1328
186
|
}
|
|
1329
187
|
|
|
@@ -1335,7 +193,7 @@ class DeleteTableBucketMetricsConfigurationCommand extends smithyClient.Command
|
|
|
1335
193
|
})
|
|
1336
194
|
.s("S3TableBuckets", "DeleteTableBucketMetricsConfiguration", {})
|
|
1337
195
|
.n("S3TablesClient", "DeleteTableBucketMetricsConfigurationCommand")
|
|
1338
|
-
.sc(DeleteTableBucketMetricsConfiguration$)
|
|
196
|
+
.sc(schemas_0.DeleteTableBucketMetricsConfiguration$)
|
|
1339
197
|
.build() {
|
|
1340
198
|
}
|
|
1341
199
|
|
|
@@ -1347,7 +205,7 @@ class DeleteTableBucketPolicyCommand extends smithyClient.Command
|
|
|
1347
205
|
})
|
|
1348
206
|
.s("S3TableBuckets", "DeleteTableBucketPolicy", {})
|
|
1349
207
|
.n("S3TablesClient", "DeleteTableBucketPolicyCommand")
|
|
1350
|
-
.sc(DeleteTableBucketPolicy$)
|
|
208
|
+
.sc(schemas_0.DeleteTableBucketPolicy$)
|
|
1351
209
|
.build() {
|
|
1352
210
|
}
|
|
1353
211
|
|
|
@@ -1359,7 +217,7 @@ class DeleteTableBucketReplicationCommand extends smithyClient.Command
|
|
|
1359
217
|
})
|
|
1360
218
|
.s("S3TableBuckets", "DeleteTableBucketReplication", {})
|
|
1361
219
|
.n("S3TablesClient", "DeleteTableBucketReplicationCommand")
|
|
1362
|
-
.sc(DeleteTableBucketReplication$)
|
|
220
|
+
.sc(schemas_0.DeleteTableBucketReplication$)
|
|
1363
221
|
.build() {
|
|
1364
222
|
}
|
|
1365
223
|
|
|
@@ -1371,7 +229,7 @@ class DeleteTableCommand extends smithyClient.Command
|
|
|
1371
229
|
})
|
|
1372
230
|
.s("S3TableBuckets", "DeleteTable", {})
|
|
1373
231
|
.n("S3TablesClient", "DeleteTableCommand")
|
|
1374
|
-
.sc(DeleteTable$)
|
|
232
|
+
.sc(schemas_0.DeleteTable$)
|
|
1375
233
|
.build() {
|
|
1376
234
|
}
|
|
1377
235
|
|
|
@@ -1383,7 +241,7 @@ class DeleteTablePolicyCommand extends smithyClient.Command
|
|
|
1383
241
|
})
|
|
1384
242
|
.s("S3TableBuckets", "DeleteTablePolicy", {})
|
|
1385
243
|
.n("S3TablesClient", "DeleteTablePolicyCommand")
|
|
1386
|
-
.sc(DeleteTablePolicy$)
|
|
244
|
+
.sc(schemas_0.DeleteTablePolicy$)
|
|
1387
245
|
.build() {
|
|
1388
246
|
}
|
|
1389
247
|
|
|
@@ -1395,7 +253,7 @@ class DeleteTableReplicationCommand extends smithyClient.Command
|
|
|
1395
253
|
})
|
|
1396
254
|
.s("S3TableBuckets", "DeleteTableReplication", {})
|
|
1397
255
|
.n("S3TablesClient", "DeleteTableReplicationCommand")
|
|
1398
|
-
.sc(DeleteTableReplication$)
|
|
256
|
+
.sc(schemas_0.DeleteTableReplication$)
|
|
1399
257
|
.build() {
|
|
1400
258
|
}
|
|
1401
259
|
|
|
@@ -1407,7 +265,7 @@ class GetNamespaceCommand extends smithyClient.Command
|
|
|
1407
265
|
})
|
|
1408
266
|
.s("S3TableBuckets", "GetNamespace", {})
|
|
1409
267
|
.n("S3TablesClient", "GetNamespaceCommand")
|
|
1410
|
-
.sc(GetNamespace$)
|
|
268
|
+
.sc(schemas_0.GetNamespace$)
|
|
1411
269
|
.build() {
|
|
1412
270
|
}
|
|
1413
271
|
|
|
@@ -1419,7 +277,7 @@ class GetTableBucketCommand extends smithyClient.Command
|
|
|
1419
277
|
})
|
|
1420
278
|
.s("S3TableBuckets", "GetTableBucket", {})
|
|
1421
279
|
.n("S3TablesClient", "GetTableBucketCommand")
|
|
1422
|
-
.sc(GetTableBucket$)
|
|
280
|
+
.sc(schemas_0.GetTableBucket$)
|
|
1423
281
|
.build() {
|
|
1424
282
|
}
|
|
1425
283
|
|
|
@@ -1431,7 +289,7 @@ class GetTableBucketEncryptionCommand extends smithyClient.Command
|
|
|
1431
289
|
})
|
|
1432
290
|
.s("S3TableBuckets", "GetTableBucketEncryption", {})
|
|
1433
291
|
.n("S3TablesClient", "GetTableBucketEncryptionCommand")
|
|
1434
|
-
.sc(GetTableBucketEncryption$)
|
|
292
|
+
.sc(schemas_0.GetTableBucketEncryption$)
|
|
1435
293
|
.build() {
|
|
1436
294
|
}
|
|
1437
295
|
|
|
@@ -1443,7 +301,7 @@ class GetTableBucketMaintenanceConfigurationCommand extends smithyClient.Command
|
|
|
1443
301
|
})
|
|
1444
302
|
.s("S3TableBuckets", "GetTableBucketMaintenanceConfiguration", {})
|
|
1445
303
|
.n("S3TablesClient", "GetTableBucketMaintenanceConfigurationCommand")
|
|
1446
|
-
.sc(GetTableBucketMaintenanceConfiguration$)
|
|
304
|
+
.sc(schemas_0.GetTableBucketMaintenanceConfiguration$)
|
|
1447
305
|
.build() {
|
|
1448
306
|
}
|
|
1449
307
|
|
|
@@ -1455,7 +313,7 @@ class GetTableBucketMetricsConfigurationCommand extends smithyClient.Command
|
|
|
1455
313
|
})
|
|
1456
314
|
.s("S3TableBuckets", "GetTableBucketMetricsConfiguration", {})
|
|
1457
315
|
.n("S3TablesClient", "GetTableBucketMetricsConfigurationCommand")
|
|
1458
|
-
.sc(GetTableBucketMetricsConfiguration$)
|
|
316
|
+
.sc(schemas_0.GetTableBucketMetricsConfiguration$)
|
|
1459
317
|
.build() {
|
|
1460
318
|
}
|
|
1461
319
|
|
|
@@ -1467,7 +325,7 @@ class GetTableBucketPolicyCommand extends smithyClient.Command
|
|
|
1467
325
|
})
|
|
1468
326
|
.s("S3TableBuckets", "GetTableBucketPolicy", {})
|
|
1469
327
|
.n("S3TablesClient", "GetTableBucketPolicyCommand")
|
|
1470
|
-
.sc(GetTableBucketPolicy$)
|
|
328
|
+
.sc(schemas_0.GetTableBucketPolicy$)
|
|
1471
329
|
.build() {
|
|
1472
330
|
}
|
|
1473
331
|
|
|
@@ -1479,7 +337,7 @@ class GetTableBucketReplicationCommand extends smithyClient.Command
|
|
|
1479
337
|
})
|
|
1480
338
|
.s("S3TableBuckets", "GetTableBucketReplication", {})
|
|
1481
339
|
.n("S3TablesClient", "GetTableBucketReplicationCommand")
|
|
1482
|
-
.sc(GetTableBucketReplication$)
|
|
340
|
+
.sc(schemas_0.GetTableBucketReplication$)
|
|
1483
341
|
.build() {
|
|
1484
342
|
}
|
|
1485
343
|
|
|
@@ -1491,7 +349,7 @@ class GetTableBucketStorageClassCommand extends smithyClient.Command
|
|
|
1491
349
|
})
|
|
1492
350
|
.s("S3TableBuckets", "GetTableBucketStorageClass", {})
|
|
1493
351
|
.n("S3TablesClient", "GetTableBucketStorageClassCommand")
|
|
1494
|
-
.sc(GetTableBucketStorageClass$)
|
|
352
|
+
.sc(schemas_0.GetTableBucketStorageClass$)
|
|
1495
353
|
.build() {
|
|
1496
354
|
}
|
|
1497
355
|
|
|
@@ -1503,7 +361,7 @@ class GetTableCommand extends smithyClient.Command
|
|
|
1503
361
|
})
|
|
1504
362
|
.s("S3TableBuckets", "GetTable", {})
|
|
1505
363
|
.n("S3TablesClient", "GetTableCommand")
|
|
1506
|
-
.sc(GetTable$)
|
|
364
|
+
.sc(schemas_0.GetTable$)
|
|
1507
365
|
.build() {
|
|
1508
366
|
}
|
|
1509
367
|
|
|
@@ -1515,7 +373,7 @@ class GetTableEncryptionCommand extends smithyClient.Command
|
|
|
1515
373
|
})
|
|
1516
374
|
.s("S3TableBuckets", "GetTableEncryption", {})
|
|
1517
375
|
.n("S3TablesClient", "GetTableEncryptionCommand")
|
|
1518
|
-
.sc(GetTableEncryption$)
|
|
376
|
+
.sc(schemas_0.GetTableEncryption$)
|
|
1519
377
|
.build() {
|
|
1520
378
|
}
|
|
1521
379
|
|
|
@@ -1527,7 +385,7 @@ class GetTableMaintenanceConfigurationCommand extends smithyClient.Command
|
|
|
1527
385
|
})
|
|
1528
386
|
.s("S3TableBuckets", "GetTableMaintenanceConfiguration", {})
|
|
1529
387
|
.n("S3TablesClient", "GetTableMaintenanceConfigurationCommand")
|
|
1530
|
-
.sc(GetTableMaintenanceConfiguration$)
|
|
388
|
+
.sc(schemas_0.GetTableMaintenanceConfiguration$)
|
|
1531
389
|
.build() {
|
|
1532
390
|
}
|
|
1533
391
|
|
|
@@ -1539,7 +397,7 @@ class GetTableMaintenanceJobStatusCommand extends smithyClient.Command
|
|
|
1539
397
|
})
|
|
1540
398
|
.s("S3TableBuckets", "GetTableMaintenanceJobStatus", {})
|
|
1541
399
|
.n("S3TablesClient", "GetTableMaintenanceJobStatusCommand")
|
|
1542
|
-
.sc(GetTableMaintenanceJobStatus$)
|
|
400
|
+
.sc(schemas_0.GetTableMaintenanceJobStatus$)
|
|
1543
401
|
.build() {
|
|
1544
402
|
}
|
|
1545
403
|
|
|
@@ -1551,7 +409,7 @@ class GetTableMetadataLocationCommand extends smithyClient.Command
|
|
|
1551
409
|
})
|
|
1552
410
|
.s("S3TableBuckets", "GetTableMetadataLocation", {})
|
|
1553
411
|
.n("S3TablesClient", "GetTableMetadataLocationCommand")
|
|
1554
|
-
.sc(GetTableMetadataLocation$)
|
|
412
|
+
.sc(schemas_0.GetTableMetadataLocation$)
|
|
1555
413
|
.build() {
|
|
1556
414
|
}
|
|
1557
415
|
|
|
@@ -1563,7 +421,7 @@ class GetTablePolicyCommand extends smithyClient.Command
|
|
|
1563
421
|
})
|
|
1564
422
|
.s("S3TableBuckets", "GetTablePolicy", {})
|
|
1565
423
|
.n("S3TablesClient", "GetTablePolicyCommand")
|
|
1566
|
-
.sc(GetTablePolicy$)
|
|
424
|
+
.sc(schemas_0.GetTablePolicy$)
|
|
1567
425
|
.build() {
|
|
1568
426
|
}
|
|
1569
427
|
|
|
@@ -1575,7 +433,7 @@ class GetTableRecordExpirationConfigurationCommand extends smithyClient.Command
|
|
|
1575
433
|
})
|
|
1576
434
|
.s("S3TableBuckets", "GetTableRecordExpirationConfiguration", {})
|
|
1577
435
|
.n("S3TablesClient", "GetTableRecordExpirationConfigurationCommand")
|
|
1578
|
-
.sc(GetTableRecordExpirationConfiguration$)
|
|
436
|
+
.sc(schemas_0.GetTableRecordExpirationConfiguration$)
|
|
1579
437
|
.build() {
|
|
1580
438
|
}
|
|
1581
439
|
|
|
@@ -1587,7 +445,7 @@ class GetTableRecordExpirationJobStatusCommand extends smithyClient.Command
|
|
|
1587
445
|
})
|
|
1588
446
|
.s("S3TableBuckets", "GetTableRecordExpirationJobStatus", {})
|
|
1589
447
|
.n("S3TablesClient", "GetTableRecordExpirationJobStatusCommand")
|
|
1590
|
-
.sc(GetTableRecordExpirationJobStatus$)
|
|
448
|
+
.sc(schemas_0.GetTableRecordExpirationJobStatus$)
|
|
1591
449
|
.build() {
|
|
1592
450
|
}
|
|
1593
451
|
|
|
@@ -1599,7 +457,7 @@ class GetTableReplicationCommand extends smithyClient.Command
|
|
|
1599
457
|
})
|
|
1600
458
|
.s("S3TableBuckets", "GetTableReplication", {})
|
|
1601
459
|
.n("S3TablesClient", "GetTableReplicationCommand")
|
|
1602
|
-
.sc(GetTableReplication$)
|
|
460
|
+
.sc(schemas_0.GetTableReplication$)
|
|
1603
461
|
.build() {
|
|
1604
462
|
}
|
|
1605
463
|
|
|
@@ -1611,7 +469,7 @@ class GetTableReplicationStatusCommand extends smithyClient.Command
|
|
|
1611
469
|
})
|
|
1612
470
|
.s("S3TableBuckets", "GetTableReplicationStatus", {})
|
|
1613
471
|
.n("S3TablesClient", "GetTableReplicationStatusCommand")
|
|
1614
|
-
.sc(GetTableReplicationStatus$)
|
|
472
|
+
.sc(schemas_0.GetTableReplicationStatus$)
|
|
1615
473
|
.build() {
|
|
1616
474
|
}
|
|
1617
475
|
|
|
@@ -1623,7 +481,7 @@ class GetTableStorageClassCommand extends smithyClient.Command
|
|
|
1623
481
|
})
|
|
1624
482
|
.s("S3TableBuckets", "GetTableStorageClass", {})
|
|
1625
483
|
.n("S3TablesClient", "GetTableStorageClassCommand")
|
|
1626
|
-
.sc(GetTableStorageClass$)
|
|
484
|
+
.sc(schemas_0.GetTableStorageClass$)
|
|
1627
485
|
.build() {
|
|
1628
486
|
}
|
|
1629
487
|
|
|
@@ -1635,7 +493,7 @@ class ListNamespacesCommand extends smithyClient.Command
|
|
|
1635
493
|
})
|
|
1636
494
|
.s("S3TableBuckets", "ListNamespaces", {})
|
|
1637
495
|
.n("S3TablesClient", "ListNamespacesCommand")
|
|
1638
|
-
.sc(ListNamespaces$)
|
|
496
|
+
.sc(schemas_0.ListNamespaces$)
|
|
1639
497
|
.build() {
|
|
1640
498
|
}
|
|
1641
499
|
|
|
@@ -1647,7 +505,7 @@ class ListTableBucketsCommand extends smithyClient.Command
|
|
|
1647
505
|
})
|
|
1648
506
|
.s("S3TableBuckets", "ListTableBuckets", {})
|
|
1649
507
|
.n("S3TablesClient", "ListTableBucketsCommand")
|
|
1650
|
-
.sc(ListTableBuckets$)
|
|
508
|
+
.sc(schemas_0.ListTableBuckets$)
|
|
1651
509
|
.build() {
|
|
1652
510
|
}
|
|
1653
511
|
|
|
@@ -1659,7 +517,7 @@ class ListTablesCommand extends smithyClient.Command
|
|
|
1659
517
|
})
|
|
1660
518
|
.s("S3TableBuckets", "ListTables", {})
|
|
1661
519
|
.n("S3TablesClient", "ListTablesCommand")
|
|
1662
|
-
.sc(ListTables$)
|
|
520
|
+
.sc(schemas_0.ListTables$)
|
|
1663
521
|
.build() {
|
|
1664
522
|
}
|
|
1665
523
|
|
|
@@ -1671,7 +529,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1671
529
|
})
|
|
1672
530
|
.s("S3TableBuckets", "ListTagsForResource", {})
|
|
1673
531
|
.n("S3TablesClient", "ListTagsForResourceCommand")
|
|
1674
|
-
.sc(ListTagsForResource$)
|
|
532
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1675
533
|
.build() {
|
|
1676
534
|
}
|
|
1677
535
|
|
|
@@ -1683,7 +541,7 @@ class PutTableBucketEncryptionCommand extends smithyClient.Command
|
|
|
1683
541
|
})
|
|
1684
542
|
.s("S3TableBuckets", "PutTableBucketEncryption", {})
|
|
1685
543
|
.n("S3TablesClient", "PutTableBucketEncryptionCommand")
|
|
1686
|
-
.sc(PutTableBucketEncryption$)
|
|
544
|
+
.sc(schemas_0.PutTableBucketEncryption$)
|
|
1687
545
|
.build() {
|
|
1688
546
|
}
|
|
1689
547
|
|
|
@@ -1695,7 +553,7 @@ class PutTableBucketMaintenanceConfigurationCommand extends smithyClient.Command
|
|
|
1695
553
|
})
|
|
1696
554
|
.s("S3TableBuckets", "PutTableBucketMaintenanceConfiguration", {})
|
|
1697
555
|
.n("S3TablesClient", "PutTableBucketMaintenanceConfigurationCommand")
|
|
1698
|
-
.sc(PutTableBucketMaintenanceConfiguration$)
|
|
556
|
+
.sc(schemas_0.PutTableBucketMaintenanceConfiguration$)
|
|
1699
557
|
.build() {
|
|
1700
558
|
}
|
|
1701
559
|
|
|
@@ -1707,7 +565,7 @@ class PutTableBucketMetricsConfigurationCommand extends smithyClient.Command
|
|
|
1707
565
|
})
|
|
1708
566
|
.s("S3TableBuckets", "PutTableBucketMetricsConfiguration", {})
|
|
1709
567
|
.n("S3TablesClient", "PutTableBucketMetricsConfigurationCommand")
|
|
1710
|
-
.sc(PutTableBucketMetricsConfiguration$)
|
|
568
|
+
.sc(schemas_0.PutTableBucketMetricsConfiguration$)
|
|
1711
569
|
.build() {
|
|
1712
570
|
}
|
|
1713
571
|
|
|
@@ -1719,7 +577,7 @@ class PutTableBucketPolicyCommand extends smithyClient.Command
|
|
|
1719
577
|
})
|
|
1720
578
|
.s("S3TableBuckets", "PutTableBucketPolicy", {})
|
|
1721
579
|
.n("S3TablesClient", "PutTableBucketPolicyCommand")
|
|
1722
|
-
.sc(PutTableBucketPolicy$)
|
|
580
|
+
.sc(schemas_0.PutTableBucketPolicy$)
|
|
1723
581
|
.build() {
|
|
1724
582
|
}
|
|
1725
583
|
|
|
@@ -1731,7 +589,7 @@ class PutTableBucketReplicationCommand extends smithyClient.Command
|
|
|
1731
589
|
})
|
|
1732
590
|
.s("S3TableBuckets", "PutTableBucketReplication", {})
|
|
1733
591
|
.n("S3TablesClient", "PutTableBucketReplicationCommand")
|
|
1734
|
-
.sc(PutTableBucketReplication$)
|
|
592
|
+
.sc(schemas_0.PutTableBucketReplication$)
|
|
1735
593
|
.build() {
|
|
1736
594
|
}
|
|
1737
595
|
|
|
@@ -1743,7 +601,7 @@ class PutTableBucketStorageClassCommand extends smithyClient.Command
|
|
|
1743
601
|
})
|
|
1744
602
|
.s("S3TableBuckets", "PutTableBucketStorageClass", {})
|
|
1745
603
|
.n("S3TablesClient", "PutTableBucketStorageClassCommand")
|
|
1746
|
-
.sc(PutTableBucketStorageClass$)
|
|
604
|
+
.sc(schemas_0.PutTableBucketStorageClass$)
|
|
1747
605
|
.build() {
|
|
1748
606
|
}
|
|
1749
607
|
|
|
@@ -1755,7 +613,7 @@ class PutTableMaintenanceConfigurationCommand extends smithyClient.Command
|
|
|
1755
613
|
})
|
|
1756
614
|
.s("S3TableBuckets", "PutTableMaintenanceConfiguration", {})
|
|
1757
615
|
.n("S3TablesClient", "PutTableMaintenanceConfigurationCommand")
|
|
1758
|
-
.sc(PutTableMaintenanceConfiguration$)
|
|
616
|
+
.sc(schemas_0.PutTableMaintenanceConfiguration$)
|
|
1759
617
|
.build() {
|
|
1760
618
|
}
|
|
1761
619
|
|
|
@@ -1767,7 +625,7 @@ class PutTablePolicyCommand extends smithyClient.Command
|
|
|
1767
625
|
})
|
|
1768
626
|
.s("S3TableBuckets", "PutTablePolicy", {})
|
|
1769
627
|
.n("S3TablesClient", "PutTablePolicyCommand")
|
|
1770
|
-
.sc(PutTablePolicy$)
|
|
628
|
+
.sc(schemas_0.PutTablePolicy$)
|
|
1771
629
|
.build() {
|
|
1772
630
|
}
|
|
1773
631
|
|
|
@@ -1779,7 +637,7 @@ class PutTableRecordExpirationConfigurationCommand extends smithyClient.Command
|
|
|
1779
637
|
})
|
|
1780
638
|
.s("S3TableBuckets", "PutTableRecordExpirationConfiguration", {})
|
|
1781
639
|
.n("S3TablesClient", "PutTableRecordExpirationConfigurationCommand")
|
|
1782
|
-
.sc(PutTableRecordExpirationConfiguration$)
|
|
640
|
+
.sc(schemas_0.PutTableRecordExpirationConfiguration$)
|
|
1783
641
|
.build() {
|
|
1784
642
|
}
|
|
1785
643
|
|
|
@@ -1791,7 +649,7 @@ class PutTableReplicationCommand extends smithyClient.Command
|
|
|
1791
649
|
})
|
|
1792
650
|
.s("S3TableBuckets", "PutTableReplication", {})
|
|
1793
651
|
.n("S3TablesClient", "PutTableReplicationCommand")
|
|
1794
|
-
.sc(PutTableReplication$)
|
|
652
|
+
.sc(schemas_0.PutTableReplication$)
|
|
1795
653
|
.build() {
|
|
1796
654
|
}
|
|
1797
655
|
|
|
@@ -1803,7 +661,7 @@ class RenameTableCommand extends smithyClient.Command
|
|
|
1803
661
|
})
|
|
1804
662
|
.s("S3TableBuckets", "RenameTable", {})
|
|
1805
663
|
.n("S3TablesClient", "RenameTableCommand")
|
|
1806
|
-
.sc(RenameTable$)
|
|
664
|
+
.sc(schemas_0.RenameTable$)
|
|
1807
665
|
.build() {
|
|
1808
666
|
}
|
|
1809
667
|
|
|
@@ -1815,7 +673,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1815
673
|
})
|
|
1816
674
|
.s("S3TableBuckets", "TagResource", {})
|
|
1817
675
|
.n("S3TablesClient", "TagResourceCommand")
|
|
1818
|
-
.sc(TagResource$)
|
|
676
|
+
.sc(schemas_0.TagResource$)
|
|
1819
677
|
.build() {
|
|
1820
678
|
}
|
|
1821
679
|
|
|
@@ -1827,7 +685,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1827
685
|
})
|
|
1828
686
|
.s("S3TableBuckets", "UntagResource", {})
|
|
1829
687
|
.n("S3TablesClient", "UntagResourceCommand")
|
|
1830
|
-
.sc(UntagResource$)
|
|
688
|
+
.sc(schemas_0.UntagResource$)
|
|
1831
689
|
.build() {
|
|
1832
690
|
}
|
|
1833
691
|
|
|
@@ -1839,7 +697,7 @@ class UpdateTableMetadataLocationCommand extends smithyClient.Command
|
|
|
1839
697
|
})
|
|
1840
698
|
.s("S3TableBuckets", "UpdateTableMetadataLocation", {})
|
|
1841
699
|
.n("S3TablesClient", "UpdateTableMetadataLocationCommand")
|
|
1842
|
-
.sc(UpdateTableMetadataLocation$)
|
|
700
|
+
.sc(schemas_0.UpdateTableMetadataLocation$)
|
|
1843
701
|
.build() {
|
|
1844
702
|
}
|
|
1845
703
|
|
|
@@ -1916,6 +774,14 @@ const SSEAlgorithm = {
|
|
|
1916
774
|
const OpenTableFormat = {
|
|
1917
775
|
ICEBERG: "ICEBERG",
|
|
1918
776
|
};
|
|
777
|
+
const IcebergSortDirection = {
|
|
778
|
+
ASC: "asc",
|
|
779
|
+
DESC: "desc",
|
|
780
|
+
};
|
|
781
|
+
const IcebergNullOrder = {
|
|
782
|
+
NULLS_FIRST: "nulls-first",
|
|
783
|
+
NULLS_LAST: "nulls-last",
|
|
784
|
+
};
|
|
1919
785
|
const StorageClass = {
|
|
1920
786
|
INTELLIGENT_TIERING: "INTELLIGENT_TIERING",
|
|
1921
787
|
STANDARD: "STANDARD",
|
|
@@ -1980,247 +846,89 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1980
846
|
enumerable: true,
|
|
1981
847
|
get: function () { return smithyClient.Client; }
|
|
1982
848
|
});
|
|
1983
|
-
exports
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
exports.ConflictException = ConflictException;
|
|
1988
|
-
exports.ConflictException$ = ConflictException$;
|
|
1989
|
-
exports.CreateNamespace$ = CreateNamespace$;
|
|
849
|
+
Object.defineProperty(exports, "S3TablesServiceException", {
|
|
850
|
+
enumerable: true,
|
|
851
|
+
get: function () { return S3TablesServiceException.S3TablesServiceException; }
|
|
852
|
+
});
|
|
1990
853
|
exports.CreateNamespaceCommand = CreateNamespaceCommand;
|
|
1991
|
-
exports.CreateNamespaceRequest$ = CreateNamespaceRequest$;
|
|
1992
|
-
exports.CreateNamespaceResponse$ = CreateNamespaceResponse$;
|
|
1993
|
-
exports.CreateTable$ = CreateTable$;
|
|
1994
|
-
exports.CreateTableBucket$ = CreateTableBucket$;
|
|
1995
854
|
exports.CreateTableBucketCommand = CreateTableBucketCommand;
|
|
1996
|
-
exports.CreateTableBucketRequest$ = CreateTableBucketRequest$;
|
|
1997
|
-
exports.CreateTableBucketResponse$ = CreateTableBucketResponse$;
|
|
1998
855
|
exports.CreateTableCommand = CreateTableCommand;
|
|
1999
|
-
exports.CreateTableRequest$ = CreateTableRequest$;
|
|
2000
|
-
exports.CreateTableResponse$ = CreateTableResponse$;
|
|
2001
|
-
exports.DeleteNamespace$ = DeleteNamespace$;
|
|
2002
856
|
exports.DeleteNamespaceCommand = DeleteNamespaceCommand;
|
|
2003
|
-
exports.DeleteNamespaceRequest$ = DeleteNamespaceRequest$;
|
|
2004
|
-
exports.DeleteTable$ = DeleteTable$;
|
|
2005
|
-
exports.DeleteTableBucket$ = DeleteTableBucket$;
|
|
2006
857
|
exports.DeleteTableBucketCommand = DeleteTableBucketCommand;
|
|
2007
|
-
exports.DeleteTableBucketEncryption$ = DeleteTableBucketEncryption$;
|
|
2008
858
|
exports.DeleteTableBucketEncryptionCommand = DeleteTableBucketEncryptionCommand;
|
|
2009
|
-
exports.DeleteTableBucketEncryptionRequest$ = DeleteTableBucketEncryptionRequest$;
|
|
2010
|
-
exports.DeleteTableBucketMetricsConfiguration$ = DeleteTableBucketMetricsConfiguration$;
|
|
2011
859
|
exports.DeleteTableBucketMetricsConfigurationCommand = DeleteTableBucketMetricsConfigurationCommand;
|
|
2012
|
-
exports.DeleteTableBucketMetricsConfigurationRequest$ = DeleteTableBucketMetricsConfigurationRequest$;
|
|
2013
|
-
exports.DeleteTableBucketPolicy$ = DeleteTableBucketPolicy$;
|
|
2014
860
|
exports.DeleteTableBucketPolicyCommand = DeleteTableBucketPolicyCommand;
|
|
2015
|
-
exports.DeleteTableBucketPolicyRequest$ = DeleteTableBucketPolicyRequest$;
|
|
2016
|
-
exports.DeleteTableBucketReplication$ = DeleteTableBucketReplication$;
|
|
2017
861
|
exports.DeleteTableBucketReplicationCommand = DeleteTableBucketReplicationCommand;
|
|
2018
|
-
exports.DeleteTableBucketReplicationRequest$ = DeleteTableBucketReplicationRequest$;
|
|
2019
|
-
exports.DeleteTableBucketRequest$ = DeleteTableBucketRequest$;
|
|
2020
862
|
exports.DeleteTableCommand = DeleteTableCommand;
|
|
2021
|
-
exports.DeleteTablePolicy$ = DeleteTablePolicy$;
|
|
2022
863
|
exports.DeleteTablePolicyCommand = DeleteTablePolicyCommand;
|
|
2023
|
-
exports.DeleteTablePolicyRequest$ = DeleteTablePolicyRequest$;
|
|
2024
|
-
exports.DeleteTableReplication$ = DeleteTableReplication$;
|
|
2025
864
|
exports.DeleteTableReplicationCommand = DeleteTableReplicationCommand;
|
|
2026
|
-
exports.DeleteTableReplicationRequest$ = DeleteTableReplicationRequest$;
|
|
2027
|
-
exports.DeleteTableRequest$ = DeleteTableRequest$;
|
|
2028
|
-
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
2029
|
-
exports.ForbiddenException = ForbiddenException;
|
|
2030
|
-
exports.ForbiddenException$ = ForbiddenException$;
|
|
2031
|
-
exports.GetNamespace$ = GetNamespace$;
|
|
2032
865
|
exports.GetNamespaceCommand = GetNamespaceCommand;
|
|
2033
|
-
exports.GetNamespaceRequest$ = GetNamespaceRequest$;
|
|
2034
|
-
exports.GetNamespaceResponse$ = GetNamespaceResponse$;
|
|
2035
|
-
exports.GetTable$ = GetTable$;
|
|
2036
|
-
exports.GetTableBucket$ = GetTableBucket$;
|
|
2037
866
|
exports.GetTableBucketCommand = GetTableBucketCommand;
|
|
2038
|
-
exports.GetTableBucketEncryption$ = GetTableBucketEncryption$;
|
|
2039
867
|
exports.GetTableBucketEncryptionCommand = GetTableBucketEncryptionCommand;
|
|
2040
|
-
exports.GetTableBucketEncryptionRequest$ = GetTableBucketEncryptionRequest$;
|
|
2041
|
-
exports.GetTableBucketEncryptionResponse$ = GetTableBucketEncryptionResponse$;
|
|
2042
|
-
exports.GetTableBucketMaintenanceConfiguration$ = GetTableBucketMaintenanceConfiguration$;
|
|
2043
868
|
exports.GetTableBucketMaintenanceConfigurationCommand = GetTableBucketMaintenanceConfigurationCommand;
|
|
2044
|
-
exports.GetTableBucketMaintenanceConfigurationRequest$ = GetTableBucketMaintenanceConfigurationRequest$;
|
|
2045
|
-
exports.GetTableBucketMaintenanceConfigurationResponse$ = GetTableBucketMaintenanceConfigurationResponse$;
|
|
2046
|
-
exports.GetTableBucketMetricsConfiguration$ = GetTableBucketMetricsConfiguration$;
|
|
2047
869
|
exports.GetTableBucketMetricsConfigurationCommand = GetTableBucketMetricsConfigurationCommand;
|
|
2048
|
-
exports.GetTableBucketMetricsConfigurationRequest$ = GetTableBucketMetricsConfigurationRequest$;
|
|
2049
|
-
exports.GetTableBucketMetricsConfigurationResponse$ = GetTableBucketMetricsConfigurationResponse$;
|
|
2050
|
-
exports.GetTableBucketPolicy$ = GetTableBucketPolicy$;
|
|
2051
870
|
exports.GetTableBucketPolicyCommand = GetTableBucketPolicyCommand;
|
|
2052
|
-
exports.GetTableBucketPolicyRequest$ = GetTableBucketPolicyRequest$;
|
|
2053
|
-
exports.GetTableBucketPolicyResponse$ = GetTableBucketPolicyResponse$;
|
|
2054
|
-
exports.GetTableBucketReplication$ = GetTableBucketReplication$;
|
|
2055
871
|
exports.GetTableBucketReplicationCommand = GetTableBucketReplicationCommand;
|
|
2056
|
-
exports.GetTableBucketReplicationRequest$ = GetTableBucketReplicationRequest$;
|
|
2057
|
-
exports.GetTableBucketReplicationResponse$ = GetTableBucketReplicationResponse$;
|
|
2058
|
-
exports.GetTableBucketRequest$ = GetTableBucketRequest$;
|
|
2059
|
-
exports.GetTableBucketResponse$ = GetTableBucketResponse$;
|
|
2060
|
-
exports.GetTableBucketStorageClass$ = GetTableBucketStorageClass$;
|
|
2061
872
|
exports.GetTableBucketStorageClassCommand = GetTableBucketStorageClassCommand;
|
|
2062
|
-
exports.GetTableBucketStorageClassRequest$ = GetTableBucketStorageClassRequest$;
|
|
2063
|
-
exports.GetTableBucketStorageClassResponse$ = GetTableBucketStorageClassResponse$;
|
|
2064
873
|
exports.GetTableCommand = GetTableCommand;
|
|
2065
|
-
exports.GetTableEncryption$ = GetTableEncryption$;
|
|
2066
874
|
exports.GetTableEncryptionCommand = GetTableEncryptionCommand;
|
|
2067
|
-
exports.GetTableEncryptionRequest$ = GetTableEncryptionRequest$;
|
|
2068
|
-
exports.GetTableEncryptionResponse$ = GetTableEncryptionResponse$;
|
|
2069
|
-
exports.GetTableMaintenanceConfiguration$ = GetTableMaintenanceConfiguration$;
|
|
2070
875
|
exports.GetTableMaintenanceConfigurationCommand = GetTableMaintenanceConfigurationCommand;
|
|
2071
|
-
exports.GetTableMaintenanceConfigurationRequest$ = GetTableMaintenanceConfigurationRequest$;
|
|
2072
|
-
exports.GetTableMaintenanceConfigurationResponse$ = GetTableMaintenanceConfigurationResponse$;
|
|
2073
|
-
exports.GetTableMaintenanceJobStatus$ = GetTableMaintenanceJobStatus$;
|
|
2074
876
|
exports.GetTableMaintenanceJobStatusCommand = GetTableMaintenanceJobStatusCommand;
|
|
2075
|
-
exports.GetTableMaintenanceJobStatusRequest$ = GetTableMaintenanceJobStatusRequest$;
|
|
2076
|
-
exports.GetTableMaintenanceJobStatusResponse$ = GetTableMaintenanceJobStatusResponse$;
|
|
2077
|
-
exports.GetTableMetadataLocation$ = GetTableMetadataLocation$;
|
|
2078
877
|
exports.GetTableMetadataLocationCommand = GetTableMetadataLocationCommand;
|
|
2079
|
-
exports.GetTableMetadataLocationRequest$ = GetTableMetadataLocationRequest$;
|
|
2080
|
-
exports.GetTableMetadataLocationResponse$ = GetTableMetadataLocationResponse$;
|
|
2081
|
-
exports.GetTablePolicy$ = GetTablePolicy$;
|
|
2082
878
|
exports.GetTablePolicyCommand = GetTablePolicyCommand;
|
|
2083
|
-
exports.GetTablePolicyRequest$ = GetTablePolicyRequest$;
|
|
2084
|
-
exports.GetTablePolicyResponse$ = GetTablePolicyResponse$;
|
|
2085
|
-
exports.GetTableRecordExpirationConfiguration$ = GetTableRecordExpirationConfiguration$;
|
|
2086
879
|
exports.GetTableRecordExpirationConfigurationCommand = GetTableRecordExpirationConfigurationCommand;
|
|
2087
|
-
exports.GetTableRecordExpirationConfigurationRequest$ = GetTableRecordExpirationConfigurationRequest$;
|
|
2088
|
-
exports.GetTableRecordExpirationConfigurationResponse$ = GetTableRecordExpirationConfigurationResponse$;
|
|
2089
|
-
exports.GetTableRecordExpirationJobStatus$ = GetTableRecordExpirationJobStatus$;
|
|
2090
880
|
exports.GetTableRecordExpirationJobStatusCommand = GetTableRecordExpirationJobStatusCommand;
|
|
2091
|
-
exports.GetTableRecordExpirationJobStatusRequest$ = GetTableRecordExpirationJobStatusRequest$;
|
|
2092
|
-
exports.GetTableRecordExpirationJobStatusResponse$ = GetTableRecordExpirationJobStatusResponse$;
|
|
2093
|
-
exports.GetTableReplication$ = GetTableReplication$;
|
|
2094
881
|
exports.GetTableReplicationCommand = GetTableReplicationCommand;
|
|
2095
|
-
exports.GetTableReplicationRequest$ = GetTableReplicationRequest$;
|
|
2096
|
-
exports.GetTableReplicationResponse$ = GetTableReplicationResponse$;
|
|
2097
|
-
exports.GetTableReplicationStatus$ = GetTableReplicationStatus$;
|
|
2098
882
|
exports.GetTableReplicationStatusCommand = GetTableReplicationStatusCommand;
|
|
2099
|
-
exports.GetTableReplicationStatusRequest$ = GetTableReplicationStatusRequest$;
|
|
2100
|
-
exports.GetTableReplicationStatusResponse$ = GetTableReplicationStatusResponse$;
|
|
2101
|
-
exports.GetTableRequest$ = GetTableRequest$;
|
|
2102
|
-
exports.GetTableResponse$ = GetTableResponse$;
|
|
2103
|
-
exports.GetTableStorageClass$ = GetTableStorageClass$;
|
|
2104
883
|
exports.GetTableStorageClassCommand = GetTableStorageClassCommand;
|
|
2105
|
-
exports.GetTableStorageClassRequest$ = GetTableStorageClassRequest$;
|
|
2106
|
-
exports.GetTableStorageClassResponse$ = GetTableStorageClassResponse$;
|
|
2107
|
-
exports.IcebergCompactionSettings$ = IcebergCompactionSettings$;
|
|
2108
884
|
exports.IcebergCompactionStrategy = IcebergCompactionStrategy;
|
|
2109
|
-
exports.
|
|
2110
|
-
exports.
|
|
2111
|
-
exports.IcebergSnapshotManagementSettings$ = IcebergSnapshotManagementSettings$;
|
|
2112
|
-
exports.IcebergUnreferencedFileRemovalSettings$ = IcebergUnreferencedFileRemovalSettings$;
|
|
2113
|
-
exports.InternalServerErrorException = InternalServerErrorException;
|
|
2114
|
-
exports.InternalServerErrorException$ = InternalServerErrorException$;
|
|
885
|
+
exports.IcebergNullOrder = IcebergNullOrder;
|
|
886
|
+
exports.IcebergSortDirection = IcebergSortDirection;
|
|
2115
887
|
exports.JobStatus = JobStatus;
|
|
2116
|
-
exports.LastSuccessfulReplicatedUpdate$ = LastSuccessfulReplicatedUpdate$;
|
|
2117
|
-
exports.ListNamespaces$ = ListNamespaces$;
|
|
2118
888
|
exports.ListNamespacesCommand = ListNamespacesCommand;
|
|
2119
|
-
exports.ListNamespacesRequest$ = ListNamespacesRequest$;
|
|
2120
|
-
exports.ListNamespacesResponse$ = ListNamespacesResponse$;
|
|
2121
|
-
exports.ListTableBuckets$ = ListTableBuckets$;
|
|
2122
889
|
exports.ListTableBucketsCommand = ListTableBucketsCommand;
|
|
2123
|
-
exports.ListTableBucketsRequest$ = ListTableBucketsRequest$;
|
|
2124
|
-
exports.ListTableBucketsResponse$ = ListTableBucketsResponse$;
|
|
2125
|
-
exports.ListTables$ = ListTables$;
|
|
2126
890
|
exports.ListTablesCommand = ListTablesCommand;
|
|
2127
|
-
exports.ListTablesRequest$ = ListTablesRequest$;
|
|
2128
|
-
exports.ListTablesResponse$ = ListTablesResponse$;
|
|
2129
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2130
891
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2131
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2132
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2133
892
|
exports.MaintenanceStatus = MaintenanceStatus;
|
|
2134
|
-
exports.ManagedTableInformation$ = ManagedTableInformation$;
|
|
2135
|
-
exports.MethodNotAllowedException = MethodNotAllowedException;
|
|
2136
|
-
exports.MethodNotAllowedException$ = MethodNotAllowedException$;
|
|
2137
|
-
exports.NamespaceSummary$ = NamespaceSummary$;
|
|
2138
|
-
exports.NotFoundException = NotFoundException;
|
|
2139
|
-
exports.NotFoundException$ = NotFoundException$;
|
|
2140
893
|
exports.OpenTableFormat = OpenTableFormat;
|
|
2141
|
-
exports.PutTableBucketEncryption$ = PutTableBucketEncryption$;
|
|
2142
894
|
exports.PutTableBucketEncryptionCommand = PutTableBucketEncryptionCommand;
|
|
2143
|
-
exports.PutTableBucketEncryptionRequest$ = PutTableBucketEncryptionRequest$;
|
|
2144
|
-
exports.PutTableBucketMaintenanceConfiguration$ = PutTableBucketMaintenanceConfiguration$;
|
|
2145
895
|
exports.PutTableBucketMaintenanceConfigurationCommand = PutTableBucketMaintenanceConfigurationCommand;
|
|
2146
|
-
exports.PutTableBucketMaintenanceConfigurationRequest$ = PutTableBucketMaintenanceConfigurationRequest$;
|
|
2147
|
-
exports.PutTableBucketMetricsConfiguration$ = PutTableBucketMetricsConfiguration$;
|
|
2148
896
|
exports.PutTableBucketMetricsConfigurationCommand = PutTableBucketMetricsConfigurationCommand;
|
|
2149
|
-
exports.PutTableBucketMetricsConfigurationRequest$ = PutTableBucketMetricsConfigurationRequest$;
|
|
2150
|
-
exports.PutTableBucketPolicy$ = PutTableBucketPolicy$;
|
|
2151
897
|
exports.PutTableBucketPolicyCommand = PutTableBucketPolicyCommand;
|
|
2152
|
-
exports.PutTableBucketPolicyRequest$ = PutTableBucketPolicyRequest$;
|
|
2153
|
-
exports.PutTableBucketReplication$ = PutTableBucketReplication$;
|
|
2154
898
|
exports.PutTableBucketReplicationCommand = PutTableBucketReplicationCommand;
|
|
2155
|
-
exports.PutTableBucketReplicationRequest$ = PutTableBucketReplicationRequest$;
|
|
2156
|
-
exports.PutTableBucketReplicationResponse$ = PutTableBucketReplicationResponse$;
|
|
2157
|
-
exports.PutTableBucketStorageClass$ = PutTableBucketStorageClass$;
|
|
2158
899
|
exports.PutTableBucketStorageClassCommand = PutTableBucketStorageClassCommand;
|
|
2159
|
-
exports.PutTableBucketStorageClassRequest$ = PutTableBucketStorageClassRequest$;
|
|
2160
|
-
exports.PutTableMaintenanceConfiguration$ = PutTableMaintenanceConfiguration$;
|
|
2161
900
|
exports.PutTableMaintenanceConfigurationCommand = PutTableMaintenanceConfigurationCommand;
|
|
2162
|
-
exports.PutTableMaintenanceConfigurationRequest$ = PutTableMaintenanceConfigurationRequest$;
|
|
2163
|
-
exports.PutTablePolicy$ = PutTablePolicy$;
|
|
2164
901
|
exports.PutTablePolicyCommand = PutTablePolicyCommand;
|
|
2165
|
-
exports.PutTablePolicyRequest$ = PutTablePolicyRequest$;
|
|
2166
|
-
exports.PutTableRecordExpirationConfiguration$ = PutTableRecordExpirationConfiguration$;
|
|
2167
902
|
exports.PutTableRecordExpirationConfigurationCommand = PutTableRecordExpirationConfigurationCommand;
|
|
2168
|
-
exports.PutTableRecordExpirationConfigurationRequest$ = PutTableRecordExpirationConfigurationRequest$;
|
|
2169
|
-
exports.PutTableReplication$ = PutTableReplication$;
|
|
2170
903
|
exports.PutTableReplicationCommand = PutTableReplicationCommand;
|
|
2171
|
-
exports.PutTableReplicationRequest$ = PutTableReplicationRequest$;
|
|
2172
|
-
exports.PutTableReplicationResponse$ = PutTableReplicationResponse$;
|
|
2173
|
-
exports.RenameTable$ = RenameTable$;
|
|
2174
904
|
exports.RenameTableCommand = RenameTableCommand;
|
|
2175
|
-
exports.RenameTableRequest$ = RenameTableRequest$;
|
|
2176
|
-
exports.ReplicationDestination$ = ReplicationDestination$;
|
|
2177
|
-
exports.ReplicationDestinationStatusModel$ = ReplicationDestinationStatusModel$;
|
|
2178
|
-
exports.ReplicationInformation$ = ReplicationInformation$;
|
|
2179
905
|
exports.ReplicationStatus = ReplicationStatus;
|
|
2180
906
|
exports.S3Tables = S3Tables;
|
|
2181
907
|
exports.S3TablesClient = S3TablesClient;
|
|
2182
|
-
exports.S3TablesServiceException = S3TablesServiceException;
|
|
2183
|
-
exports.S3TablesServiceException$ = S3TablesServiceException$;
|
|
2184
908
|
exports.SSEAlgorithm = SSEAlgorithm;
|
|
2185
|
-
exports.SchemaField$ = SchemaField$;
|
|
2186
909
|
exports.StorageClass = StorageClass;
|
|
2187
|
-
exports.StorageClassConfiguration$ = StorageClassConfiguration$;
|
|
2188
|
-
exports.TableBucketMaintenanceConfigurationValue$ = TableBucketMaintenanceConfigurationValue$;
|
|
2189
|
-
exports.TableBucketMaintenanceSettings$ = TableBucketMaintenanceSettings$;
|
|
2190
910
|
exports.TableBucketMaintenanceType = TableBucketMaintenanceType;
|
|
2191
|
-
exports.TableBucketReplicationConfiguration$ = TableBucketReplicationConfiguration$;
|
|
2192
|
-
exports.TableBucketReplicationRule$ = TableBucketReplicationRule$;
|
|
2193
|
-
exports.TableBucketSummary$ = TableBucketSummary$;
|
|
2194
911
|
exports.TableBucketType = TableBucketType;
|
|
2195
|
-
exports.TableMaintenanceConfigurationValue$ = TableMaintenanceConfigurationValue$;
|
|
2196
|
-
exports.TableMaintenanceJobStatusValue$ = TableMaintenanceJobStatusValue$;
|
|
2197
912
|
exports.TableMaintenanceJobType = TableMaintenanceJobType;
|
|
2198
|
-
exports.TableMaintenanceSettings$ = TableMaintenanceSettings$;
|
|
2199
913
|
exports.TableMaintenanceType = TableMaintenanceType;
|
|
2200
|
-
exports.TableMetadata$ = TableMetadata$;
|
|
2201
|
-
exports.TableRecordExpirationConfigurationValue$ = TableRecordExpirationConfigurationValue$;
|
|
2202
|
-
exports.TableRecordExpirationJobMetrics$ = TableRecordExpirationJobMetrics$;
|
|
2203
914
|
exports.TableRecordExpirationJobStatus = TableRecordExpirationJobStatus;
|
|
2204
|
-
exports.TableRecordExpirationSettings$ = TableRecordExpirationSettings$;
|
|
2205
915
|
exports.TableRecordExpirationStatus = TableRecordExpirationStatus;
|
|
2206
|
-
exports.TableReplicationConfiguration$ = TableReplicationConfiguration$;
|
|
2207
|
-
exports.TableReplicationRule$ = TableReplicationRule$;
|
|
2208
|
-
exports.TableSummary$ = TableSummary$;
|
|
2209
916
|
exports.TableType = TableType;
|
|
2210
|
-
exports.TagResource$ = TagResource$;
|
|
2211
917
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2212
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2213
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2214
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
2215
|
-
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
2216
|
-
exports.UntagResource$ = UntagResource$;
|
|
2217
918
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2218
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2219
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2220
|
-
exports.UpdateTableMetadataLocation$ = UpdateTableMetadataLocation$;
|
|
2221
919
|
exports.UpdateTableMetadataLocationCommand = UpdateTableMetadataLocationCommand;
|
|
2222
|
-
exports.UpdateTableMetadataLocationRequest$ = UpdateTableMetadataLocationRequest$;
|
|
2223
|
-
exports.UpdateTableMetadataLocationResponse$ = UpdateTableMetadataLocationResponse$;
|
|
2224
920
|
exports.paginateListNamespaces = paginateListNamespaces;
|
|
2225
921
|
exports.paginateListTableBuckets = paginateListTableBuckets;
|
|
2226
922
|
exports.paginateListTables = paginateListTables;
|
|
923
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
924
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
925
|
+
enumerable: true,
|
|
926
|
+
get: function () { return schemas_0[k]; }
|
|
927
|
+
});
|
|
928
|
+
});
|
|
929
|
+
Object.keys(errors).forEach(function (k) {
|
|
930
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
931
|
+
enumerable: true,
|
|
932
|
+
get: function () { return errors[k]; }
|
|
933
|
+
});
|
|
934
|
+
});
|