@aws-sdk/client-s3tables 3.939.0 → 3.943.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +104 -0
- package/dist-cjs/index.js +755 -20
- package/dist-es/S3Tables.js +26 -0
- package/dist-es/commands/DeleteTableBucketReplicationCommand.js +16 -0
- package/dist-es/commands/DeleteTableReplicationCommand.js +16 -0
- package/dist-es/commands/GetTableBucketReplicationCommand.js +16 -0
- package/dist-es/commands/GetTableBucketStorageClassCommand.js +16 -0
- package/dist-es/commands/GetTableRecordExpirationConfigurationCommand.js +16 -0
- package/dist-es/commands/GetTableRecordExpirationJobStatusCommand.js +16 -0
- package/dist-es/commands/GetTableReplicationCommand.js +16 -0
- package/dist-es/commands/GetTableReplicationStatusCommand.js +16 -0
- package/dist-es/commands/GetTableStorageClassCommand.js +16 -0
- package/dist-es/commands/PutTableBucketReplicationCommand.js +16 -0
- package/dist-es/commands/PutTableBucketStorageClassCommand.js +16 -0
- package/dist-es/commands/PutTableRecordExpirationConfigurationCommand.js +16 -0
- package/dist-es/commands/PutTableReplicationCommand.js +16 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/enums.js +19 -0
- package/dist-es/models/errors.js +12 -0
- package/dist-es/schemas/schemas_0.js +539 -21
- package/dist-types/S3Tables.d.ts +91 -0
- package/dist-types/S3TablesClient.d.ts +15 -2
- package/dist-types/commands/CreateTableBucketCommand.d.ts +4 -1
- package/dist-types/commands/CreateTableCommand.d.ts +7 -1
- package/dist-types/commands/DeleteTableBucketReplicationCommand.d.ts +94 -0
- package/dist-types/commands/DeleteTableReplicationCommand.d.ts +94 -0
- package/dist-types/commands/GetTableBucketReplicationCommand.d.ts +107 -0
- package/dist-types/commands/GetTableBucketStorageClassCommand.d.ts +94 -0
- package/dist-types/commands/GetTableCommand.d.ts +5 -0
- package/dist-types/commands/GetTableRecordExpirationConfigurationCommand.d.ts +97 -0
- package/dist-types/commands/GetTableRecordExpirationJobStatusCommand.d.ts +99 -0
- package/dist-types/commands/GetTableReplicationCommand.d.ts +107 -0
- package/dist-types/commands/GetTableReplicationStatusCommand.d.ts +104 -0
- package/dist-types/commands/GetTableStorageClassCommand.d.ts +96 -0
- package/dist-types/commands/ListTablesCommand.d.ts +1 -0
- package/dist-types/commands/PutTableBucketReplicationCommand.d.ts +109 -0
- package/dist-types/commands/PutTableBucketStorageClassCommand.d.ts +93 -0
- package/dist-types/commands/PutTableRecordExpirationConfigurationCommand.d.ts +96 -0
- package/dist-types/commands/PutTableReplicationCommand.d.ts +109 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/models/enums.d.ts +51 -0
- package/dist-types/models/errors.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +530 -2
- package/dist-types/schemas/schemas_0.d.ts +54 -0
- package/dist-types/ts3.4/S3Tables.d.ts +239 -0
- package/dist-types/ts3.4/S3TablesClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/DeleteTableBucketReplicationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteTableReplicationCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetTableBucketReplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableBucketStorageClassCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableRecordExpirationConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableRecordExpirationJobStatusCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableReplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableReplicationStatusCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableStorageClassCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutTableBucketReplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutTableBucketStorageClassCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/PutTableRecordExpirationConfigurationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/PutTableReplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/enums.d.ts +26 -0
- package/dist-types/ts3.4/models/errors.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +142 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +54 -0
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -201,6 +201,18 @@ let TooManyRequestsException$1 = class TooManyRequestsException extends S3Tables
|
|
|
201
201
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
202
202
|
}
|
|
203
203
|
};
|
|
204
|
+
let MethodNotAllowedException$1 = class MethodNotAllowedException extends S3TablesServiceException$1 {
|
|
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
|
+
};
|
|
204
216
|
|
|
205
217
|
const _ADE = "AccessDeniedException";
|
|
206
218
|
const _BRE = "BadRequestException";
|
|
@@ -225,9 +237,13 @@ const _DTBMCR = "DeleteTableBucketMetricsConfigurationRequest";
|
|
|
225
237
|
const _DTBP = "DeleteTableBucketPolicy";
|
|
226
238
|
const _DTBPR = "DeleteTableBucketPolicyRequest";
|
|
227
239
|
const _DTBR = "DeleteTableBucketRequest";
|
|
240
|
+
const _DTBRR = "DeleteTableBucketReplicationRequest";
|
|
241
|
+
const _DTBRe = "DeleteTableBucketReplication";
|
|
228
242
|
const _DTP = "DeleteTablePolicy";
|
|
229
243
|
const _DTPR = "DeleteTablePolicyRequest";
|
|
230
244
|
const _DTR = "DeleteTableRequest";
|
|
245
|
+
const _DTRR = "DeleteTableReplicationRequest";
|
|
246
|
+
const _DTRe = "DeleteTableReplication";
|
|
231
247
|
const _EC = "EncryptionConfiguration";
|
|
232
248
|
const _FE = "ForbiddenException";
|
|
233
249
|
const _GN = "GetNamespace";
|
|
@@ -248,7 +264,13 @@ const _GTBP = "GetTableBucketPolicy";
|
|
|
248
264
|
const _GTBPR = "GetTableBucketPolicyRequest";
|
|
249
265
|
const _GTBPRe = "GetTableBucketPolicyResponse";
|
|
250
266
|
const _GTBR = "GetTableBucketRequest";
|
|
267
|
+
const _GTBRR = "GetTableBucketReplicationRequest";
|
|
268
|
+
const _GTBRRe = "GetTableBucketReplicationResponse";
|
|
251
269
|
const _GTBRe = "GetTableBucketResponse";
|
|
270
|
+
const _GTBRet = "GetTableBucketReplication";
|
|
271
|
+
const _GTBSC = "GetTableBucketStorageClass";
|
|
272
|
+
const _GTBSCR = "GetTableBucketStorageClassRequest";
|
|
273
|
+
const _GTBSCRe = "GetTableBucketStorageClassResponse";
|
|
252
274
|
const _GTE = "GetTableEncryption";
|
|
253
275
|
const _GTER = "GetTableEncryptionRequest";
|
|
254
276
|
const _GTERe = "GetTableEncryptionResponse";
|
|
@@ -265,7 +287,22 @@ const _GTP = "GetTablePolicy";
|
|
|
265
287
|
const _GTPR = "GetTablePolicyRequest";
|
|
266
288
|
const _GTPRe = "GetTablePolicyResponse";
|
|
267
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";
|
|
268
301
|
const _GTRe = "GetTableResponse";
|
|
302
|
+
const _GTRet = "GetTableReplication";
|
|
303
|
+
const _GTSC = "GetTableStorageClass";
|
|
304
|
+
const _GTSCR = "GetTableStorageClassRequest";
|
|
305
|
+
const _GTSCRe = "GetTableStorageClassResponse";
|
|
269
306
|
const _ICS = "IcebergCompactionSettings";
|
|
270
307
|
const _IM = "IcebergMetadata";
|
|
271
308
|
const _IS = "IcebergSchema";
|
|
@@ -275,6 +312,7 @@ const _IUFRS = "IcebergUnreferencedFileRemovalSettings";
|
|
|
275
312
|
const _LN = "ListNamespaces";
|
|
276
313
|
const _LNR = "ListNamespacesRequest";
|
|
277
314
|
const _LNRi = "ListNamespacesResponse";
|
|
315
|
+
const _LSRU = "LastSuccessfulReplicatedUpdate";
|
|
278
316
|
const _LT = "ListTables";
|
|
279
317
|
const _LTB = "ListTableBuckets";
|
|
280
318
|
const _LTBR = "ListTableBucketsRequest";
|
|
@@ -284,6 +322,8 @@ const _LTFRR = "ListTagsForResourceRequest";
|
|
|
284
322
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
285
323
|
const _LTR = "ListTablesRequest";
|
|
286
324
|
const _LTRi = "ListTablesResponse";
|
|
325
|
+
const _MNAE = "MethodNotAllowedException";
|
|
326
|
+
const _MTI = "ManagedTableInformation";
|
|
287
327
|
const _NFE = "NotFoundException";
|
|
288
328
|
const _NS = "NamespaceSummary";
|
|
289
329
|
const _NSL = "NamespaceSummaryList";
|
|
@@ -295,17 +335,36 @@ const _PTBMCRu = "PutTableBucketMetricsConfigurationRequest";
|
|
|
295
335
|
const _PTBMCu = "PutTableBucketMetricsConfiguration";
|
|
296
336
|
const _PTBP = "PutTableBucketPolicy";
|
|
297
337
|
const _PTBPR = "PutTableBucketPolicyRequest";
|
|
338
|
+
const _PTBR = "PutTableBucketReplication";
|
|
339
|
+
const _PTBRR = "PutTableBucketReplicationRequest";
|
|
340
|
+
const _PTBRRu = "PutTableBucketReplicationResponse";
|
|
341
|
+
const _PTBSC = "PutTableBucketStorageClass";
|
|
342
|
+
const _PTBSCR = "PutTableBucketStorageClassRequest";
|
|
298
343
|
const _PTMC = "PutTableMaintenanceConfiguration";
|
|
299
344
|
const _PTMCR = "PutTableMaintenanceConfigurationRequest";
|
|
300
345
|
const _PTP = "PutTablePolicy";
|
|
301
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";
|
|
302
357
|
const _RT = "RenameTable";
|
|
303
358
|
const _RTR = "RenameTableRequest";
|
|
359
|
+
const _SCC = "StorageClassConfiguration";
|
|
304
360
|
const _SF = "SchemaField";
|
|
305
361
|
const _SFL = "SchemaFieldList";
|
|
306
362
|
const _TBMC = "TableBucketMaintenanceConfiguration";
|
|
307
363
|
const _TBMCV = "TableBucketMaintenanceConfigurationValue";
|
|
308
364
|
const _TBMS = "TableBucketMaintenanceSettings";
|
|
365
|
+
const _TBRC = "TableBucketReplicationConfiguration";
|
|
366
|
+
const _TBRR = "TableBucketReplicationRule";
|
|
367
|
+
const _TBRRa = "TableBucketReplicationRules";
|
|
309
368
|
const _TBS = "TableBucketSummary";
|
|
310
369
|
const _TBSL = "TableBucketSummaryList";
|
|
311
370
|
const _TM = "TableMetadata";
|
|
@@ -316,8 +375,14 @@ const _TMJSV = "TableMaintenanceJobStatusValue";
|
|
|
316
375
|
const _TMRE = "TooManyRequestsException";
|
|
317
376
|
const _TMS = "TableMaintenanceSettings";
|
|
318
377
|
const _TR = "TagResource";
|
|
319
|
-
const
|
|
320
|
-
const
|
|
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";
|
|
321
386
|
const _TS = "TableSummary";
|
|
322
387
|
const _TSL = "TableSummaryList";
|
|
323
388
|
const _UR = "UntagResource";
|
|
@@ -332,6 +397,13 @@ const _cA = "createdAt";
|
|
|
332
397
|
const _cB = "createdBy";
|
|
333
398
|
const _cT = "continuationToken";
|
|
334
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";
|
|
335
407
|
const _e = "error";
|
|
336
408
|
const _eC = "encryptionConfiguration";
|
|
337
409
|
const _f = "format";
|
|
@@ -347,6 +419,7 @@ const _iUFR = "icebergUnreferencedFileRemoval";
|
|
|
347
419
|
const _ic = "iceberg";
|
|
348
420
|
const _kKA = "kmsKeyArn";
|
|
349
421
|
const _lRT = "lastRunTimestamp";
|
|
422
|
+
const _lSRU = "lastSuccessfulReplicatedUpdate";
|
|
350
423
|
const _m = "message";
|
|
351
424
|
const _mA = "modifiedAt";
|
|
352
425
|
const _mB = "modifiedBy";
|
|
@@ -357,7 +430,9 @@ const _mN = "maxNamespaces";
|
|
|
357
430
|
const _mSAH = "maxSnapshotAgeHours";
|
|
358
431
|
const _mSTK = "minSnapshotsToKeep";
|
|
359
432
|
const _mT = "maxTables";
|
|
433
|
+
const _mTI = "managedTableInformation";
|
|
360
434
|
const _me = "metadata";
|
|
435
|
+
const _met = "metrics";
|
|
361
436
|
const _n = "namespace";
|
|
362
437
|
const _nCD = "nonCurrentDays";
|
|
363
438
|
const _nI = "namespaceId";
|
|
@@ -366,12 +441,22 @@ const _nNN = "newNamespaceName";
|
|
|
366
441
|
const _na = "name";
|
|
367
442
|
const _nam = "namespaces";
|
|
368
443
|
const _oAI = "ownerAccountId";
|
|
369
|
-
const _p = "
|
|
444
|
+
const _p = "properties";
|
|
445
|
+
const _pr = "prefix";
|
|
370
446
|
const _r = "required";
|
|
371
447
|
const _rA = "resourceArn";
|
|
448
|
+
const _rFS = "removedFilesSize";
|
|
449
|
+
const _rI = "replicationInformation";
|
|
372
450
|
const _rP = "resourcePolicy";
|
|
451
|
+
const _rS = "replicationStatus";
|
|
452
|
+
const _ro = "role";
|
|
453
|
+
const _ru = "rules";
|
|
373
454
|
const _s = "status";
|
|
374
455
|
const _sA = "sseAlgorithm";
|
|
456
|
+
const _sC = "storageClass";
|
|
457
|
+
const _sCC = "storageClassConfiguration";
|
|
458
|
+
const _sTA = "sourceTableArn";
|
|
459
|
+
const _sTARN = "sourceTableARN";
|
|
375
460
|
const _sc = "schema";
|
|
376
461
|
const _se = "server";
|
|
377
462
|
const _set = "settings";
|
|
@@ -386,6 +471,7 @@ const _tBI = "tableBucketId";
|
|
|
386
471
|
const _tFSMB = "targetFileSizeMB";
|
|
387
472
|
const _tK = "tagKeys";
|
|
388
473
|
const _ta = "tables";
|
|
474
|
+
const _ti = "timestamp";
|
|
389
475
|
const _ty = "type";
|
|
390
476
|
const _uD = "unreferencedDays";
|
|
391
477
|
const _v = "value";
|
|
@@ -435,8 +521,8 @@ var CreateTableBucketRequest = [
|
|
|
435
521
|
n0,
|
|
436
522
|
_CTBR,
|
|
437
523
|
0,
|
|
438
|
-
[_na, _eC, _t],
|
|
439
|
-
[0, () => EncryptionConfiguration, 128 | 0],
|
|
524
|
+
[_na, _eC, _sCC, _t],
|
|
525
|
+
[0, () => EncryptionConfiguration, () => StorageClassConfiguration, 128 | 0],
|
|
440
526
|
];
|
|
441
527
|
var CreateTableBucketResponse = [3, n0, _CTBRr, 0, [_a], [0]];
|
|
442
528
|
var CreateTableRequest = [
|
|
@@ -444,8 +530,8 @@ var CreateTableRequest = [
|
|
|
444
530
|
n0,
|
|
445
531
|
_CTR,
|
|
446
532
|
0,
|
|
447
|
-
[_tBARN, _n, _na, _f, _me, _eC, _t],
|
|
448
|
-
[[0, 1], [0, 1], 0, 0, () => TableMetadata, () => EncryptionConfiguration, 128 | 0],
|
|
533
|
+
[_tBARN, _n, _na, _f, _me, _eC, _sCC, _t],
|
|
534
|
+
[[0, 1], [0, 1], 0, 0, () => TableMetadata, () => EncryptionConfiguration, () => StorageClassConfiguration, 128 | 0],
|
|
449
535
|
];
|
|
450
536
|
var CreateTableResponse = [3, n0, _CTRr, 0, [_tARN, _vT], [0, 0]];
|
|
451
537
|
var DeleteNamespaceRequest = [
|
|
@@ -469,6 +555,27 @@ var DeleteTableBucketMetricsConfigurationRequest = [
|
|
|
469
555
|
[[0, 1]],
|
|
470
556
|
];
|
|
471
557
|
var DeleteTableBucketPolicyRequest = [3, n0, _DTBPR, 0, [_tBARN], [[0, 1]]];
|
|
558
|
+
var DeleteTableBucketReplicationRequest = [
|
|
559
|
+
3,
|
|
560
|
+
n0,
|
|
561
|
+
_DTBRR,
|
|
562
|
+
0,
|
|
563
|
+
[_tBARN, _vT],
|
|
564
|
+
[
|
|
565
|
+
[
|
|
566
|
+
0,
|
|
567
|
+
{
|
|
568
|
+
[_hQ]: _tBARN,
|
|
569
|
+
},
|
|
570
|
+
],
|
|
571
|
+
[
|
|
572
|
+
0,
|
|
573
|
+
{
|
|
574
|
+
[_hQ]: _vT,
|
|
575
|
+
},
|
|
576
|
+
],
|
|
577
|
+
],
|
|
578
|
+
];
|
|
472
579
|
var DeleteTableBucketRequest = [3, n0, _DTBR, 0, [_tBARN], [[0, 1]]];
|
|
473
580
|
var DeleteTablePolicyRequest = [
|
|
474
581
|
3,
|
|
@@ -482,6 +589,27 @@ var DeleteTablePolicyRequest = [
|
|
|
482
589
|
[0, 1],
|
|
483
590
|
],
|
|
484
591
|
];
|
|
592
|
+
var DeleteTableReplicationRequest = [
|
|
593
|
+
3,
|
|
594
|
+
n0,
|
|
595
|
+
_DTRR,
|
|
596
|
+
0,
|
|
597
|
+
[_tA, _vT],
|
|
598
|
+
[
|
|
599
|
+
[
|
|
600
|
+
0,
|
|
601
|
+
{
|
|
602
|
+
[_hQ]: _tA,
|
|
603
|
+
},
|
|
604
|
+
],
|
|
605
|
+
[
|
|
606
|
+
0,
|
|
607
|
+
{
|
|
608
|
+
[_hQ]: _vT,
|
|
609
|
+
},
|
|
610
|
+
],
|
|
611
|
+
],
|
|
612
|
+
];
|
|
485
613
|
var DeleteTableRequest = [
|
|
486
614
|
3,
|
|
487
615
|
n0,
|
|
@@ -568,6 +696,29 @@ var GetTableBucketMetricsConfigurationResponse = [
|
|
|
568
696
|
];
|
|
569
697
|
var GetTableBucketPolicyRequest = [3, n0, _GTBPR, 0, [_tBARN], [[0, 1]]];
|
|
570
698
|
var GetTableBucketPolicyResponse = [3, n0, _GTBPRe, 0, [_rP], [0]];
|
|
699
|
+
var GetTableBucketReplicationRequest = [
|
|
700
|
+
3,
|
|
701
|
+
n0,
|
|
702
|
+
_GTBRR,
|
|
703
|
+
0,
|
|
704
|
+
[_tBARN],
|
|
705
|
+
[
|
|
706
|
+
[
|
|
707
|
+
0,
|
|
708
|
+
{
|
|
709
|
+
[_hQ]: _tBARN,
|
|
710
|
+
},
|
|
711
|
+
],
|
|
712
|
+
],
|
|
713
|
+
];
|
|
714
|
+
var GetTableBucketReplicationResponse = [
|
|
715
|
+
3,
|
|
716
|
+
n0,
|
|
717
|
+
_GTBRRe,
|
|
718
|
+
0,
|
|
719
|
+
[_vT, _co],
|
|
720
|
+
[0, () => TableBucketReplicationConfiguration],
|
|
721
|
+
];
|
|
571
722
|
var GetTableBucketRequest = [3, n0, _GTBR, 0, [_tBARN], [[0, 1]]];
|
|
572
723
|
var GetTableBucketResponse = [
|
|
573
724
|
3,
|
|
@@ -577,6 +728,15 @@ var GetTableBucketResponse = [
|
|
|
577
728
|
[_a, _na, _oAI, _cA, _tBI, _ty],
|
|
578
729
|
[0, 0, 0, 5, 0, 0],
|
|
579
730
|
];
|
|
731
|
+
var GetTableBucketStorageClassRequest = [3, n0, _GTBSCR, 0, [_tBARN], [[0, 1]]];
|
|
732
|
+
var GetTableBucketStorageClassResponse = [
|
|
733
|
+
3,
|
|
734
|
+
n0,
|
|
735
|
+
_GTBSCRe,
|
|
736
|
+
0,
|
|
737
|
+
[_sCC],
|
|
738
|
+
[() => StorageClassConfiguration],
|
|
739
|
+
];
|
|
580
740
|
var GetTableEncryptionRequest = [
|
|
581
741
|
3,
|
|
582
742
|
n0,
|
|
@@ -663,6 +823,98 @@ var GetTablePolicyRequest = [
|
|
|
663
823
|
],
|
|
664
824
|
];
|
|
665
825
|
var GetTablePolicyResponse = [3, n0, _GTPRe, 0, [_rP], [0]];
|
|
826
|
+
var GetTableRecordExpirationConfigurationRequest = [
|
|
827
|
+
3,
|
|
828
|
+
n0,
|
|
829
|
+
_GTRECR,
|
|
830
|
+
0,
|
|
831
|
+
[_tA],
|
|
832
|
+
[
|
|
833
|
+
[
|
|
834
|
+
0,
|
|
835
|
+
{
|
|
836
|
+
[_hQ]: _tA,
|
|
837
|
+
},
|
|
838
|
+
],
|
|
839
|
+
],
|
|
840
|
+
];
|
|
841
|
+
var GetTableRecordExpirationConfigurationResponse = [
|
|
842
|
+
3,
|
|
843
|
+
n0,
|
|
844
|
+
_GTRECRe,
|
|
845
|
+
0,
|
|
846
|
+
[_co],
|
|
847
|
+
[() => TableRecordExpirationConfigurationValue],
|
|
848
|
+
];
|
|
849
|
+
var GetTableRecordExpirationJobStatusRequest = [
|
|
850
|
+
3,
|
|
851
|
+
n0,
|
|
852
|
+
_GTREJSR,
|
|
853
|
+
0,
|
|
854
|
+
[_tA],
|
|
855
|
+
[
|
|
856
|
+
[
|
|
857
|
+
0,
|
|
858
|
+
{
|
|
859
|
+
[_hQ]: _tA,
|
|
860
|
+
},
|
|
861
|
+
],
|
|
862
|
+
],
|
|
863
|
+
];
|
|
864
|
+
var GetTableRecordExpirationJobStatusResponse = [
|
|
865
|
+
3,
|
|
866
|
+
n0,
|
|
867
|
+
_GTREJSRe,
|
|
868
|
+
0,
|
|
869
|
+
[_s, _lRT, _fM, _met],
|
|
870
|
+
[0, 5, 0, () => TableRecordExpirationJobMetrics],
|
|
871
|
+
];
|
|
872
|
+
var GetTableReplicationRequest = [
|
|
873
|
+
3,
|
|
874
|
+
n0,
|
|
875
|
+
_GTRR,
|
|
876
|
+
0,
|
|
877
|
+
[_tA],
|
|
878
|
+
[
|
|
879
|
+
[
|
|
880
|
+
0,
|
|
881
|
+
{
|
|
882
|
+
[_hQ]: _tA,
|
|
883
|
+
},
|
|
884
|
+
],
|
|
885
|
+
],
|
|
886
|
+
];
|
|
887
|
+
var GetTableReplicationResponse = [
|
|
888
|
+
3,
|
|
889
|
+
n0,
|
|
890
|
+
_GTRRe,
|
|
891
|
+
0,
|
|
892
|
+
[_vT, _co],
|
|
893
|
+
[0, () => TableReplicationConfiguration],
|
|
894
|
+
];
|
|
895
|
+
var GetTableReplicationStatusRequest = [
|
|
896
|
+
3,
|
|
897
|
+
n0,
|
|
898
|
+
_GTRSR,
|
|
899
|
+
0,
|
|
900
|
+
[_tA],
|
|
901
|
+
[
|
|
902
|
+
[
|
|
903
|
+
0,
|
|
904
|
+
{
|
|
905
|
+
[_hQ]: _tA,
|
|
906
|
+
},
|
|
907
|
+
],
|
|
908
|
+
],
|
|
909
|
+
];
|
|
910
|
+
var GetTableReplicationStatusResponse = [
|
|
911
|
+
3,
|
|
912
|
+
n0,
|
|
913
|
+
_GTRSRe,
|
|
914
|
+
0,
|
|
915
|
+
[_sTA, _d],
|
|
916
|
+
[0, () => ReplicationDestinationStatuses],
|
|
917
|
+
];
|
|
666
918
|
var GetTableRequest = [
|
|
667
919
|
3,
|
|
668
920
|
n0,
|
|
@@ -701,11 +953,31 @@ var GetTableResponse = [
|
|
|
701
953
|
n0,
|
|
702
954
|
_GTRe,
|
|
703
955
|
0,
|
|
704
|
-
[_na, _ty, _tARN, _n, _nI, _vT, _mL, _wL, _cA, _cB, _mBS, _mA, _mB, _oAI, _f, _tBI],
|
|
705
|
-
[0, 0, 0, 64 | 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0],
|
|
956
|
+
[_na, _ty, _tARN, _n, _nI, _vT, _mL, _wL, _cA, _cB, _mBS, _mA, _mB, _oAI, _f, _tBI, _mTI],
|
|
957
|
+
[0, 0, 0, 64 | 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, () => ManagedTableInformation],
|
|
958
|
+
];
|
|
959
|
+
var GetTableStorageClassRequest = [
|
|
960
|
+
3,
|
|
961
|
+
n0,
|
|
962
|
+
_GTSCR,
|
|
963
|
+
0,
|
|
964
|
+
[_tBARN, _n, _na],
|
|
965
|
+
[
|
|
966
|
+
[0, 1],
|
|
967
|
+
[0, 1],
|
|
968
|
+
[0, 1],
|
|
969
|
+
],
|
|
970
|
+
];
|
|
971
|
+
var GetTableStorageClassResponse = [
|
|
972
|
+
3,
|
|
973
|
+
n0,
|
|
974
|
+
_GTSCRe,
|
|
975
|
+
0,
|
|
976
|
+
[_sCC],
|
|
977
|
+
[() => StorageClassConfiguration],
|
|
706
978
|
];
|
|
707
979
|
var IcebergCompactionSettings = [3, n0, _ICS, 0, [_tFSMB, _st], [1, 0]];
|
|
708
|
-
var IcebergMetadata = [3, n0, _IM, 0, [_sc], [() => IcebergSchema]];
|
|
980
|
+
var IcebergMetadata = [3, n0, _IM, 0, [_sc, _p], [() => IcebergSchema, 128 | 0]];
|
|
709
981
|
var IcebergSchema = [3, n0, _IS, 0, [_fi], [() => SchemaFieldList]];
|
|
710
982
|
var IcebergSnapshotManagementSettings = [3, n0, _ISMS, 0, [_mSTK, _mSAH], [1, 1]];
|
|
711
983
|
var IcebergUnreferencedFileRemovalSettings = [3, n0, _IUFRS, 0, [_uD, _nCD], [1, 1]];
|
|
@@ -721,18 +993,19 @@ var InternalServerErrorException = [
|
|
|
721
993
|
[0],
|
|
722
994
|
];
|
|
723
995
|
schema.TypeRegistry.for(n0).registerError(InternalServerErrorException, InternalServerErrorException$1);
|
|
996
|
+
var LastSuccessfulReplicatedUpdate = [3, n0, _LSRU, 0, [_mL, _ti], [0, 5]];
|
|
724
997
|
var ListNamespacesRequest = [
|
|
725
998
|
3,
|
|
726
999
|
n0,
|
|
727
1000
|
_LNR,
|
|
728
1001
|
0,
|
|
729
|
-
[_tBARN,
|
|
1002
|
+
[_tBARN, _pr, _cT, _mN],
|
|
730
1003
|
[
|
|
731
1004
|
[0, 1],
|
|
732
1005
|
[
|
|
733
1006
|
0,
|
|
734
1007
|
{
|
|
735
|
-
[_hQ]:
|
|
1008
|
+
[_hQ]: _pr,
|
|
736
1009
|
},
|
|
737
1010
|
],
|
|
738
1011
|
[
|
|
@@ -762,12 +1035,12 @@ var ListTableBucketsRequest = [
|
|
|
762
1035
|
n0,
|
|
763
1036
|
_LTBR,
|
|
764
1037
|
0,
|
|
765
|
-
[
|
|
1038
|
+
[_pr, _cT, _mBa, _ty],
|
|
766
1039
|
[
|
|
767
1040
|
[
|
|
768
1041
|
0,
|
|
769
1042
|
{
|
|
770
|
-
[_hQ]:
|
|
1043
|
+
[_hQ]: _pr,
|
|
771
1044
|
},
|
|
772
1045
|
],
|
|
773
1046
|
[
|
|
@@ -803,7 +1076,7 @@ var ListTablesRequest = [
|
|
|
803
1076
|
n0,
|
|
804
1077
|
_LTR,
|
|
805
1078
|
0,
|
|
806
|
-
[_tBARN, _n,
|
|
1079
|
+
[_tBARN, _n, _pr, _cT, _mT],
|
|
807
1080
|
[
|
|
808
1081
|
[0, 1],
|
|
809
1082
|
[
|
|
@@ -815,7 +1088,7 @@ var ListTablesRequest = [
|
|
|
815
1088
|
[
|
|
816
1089
|
0,
|
|
817
1090
|
{
|
|
818
|
-
[_hQ]:
|
|
1091
|
+
[_hQ]: _pr,
|
|
819
1092
|
},
|
|
820
1093
|
],
|
|
821
1094
|
[
|
|
@@ -835,6 +1108,19 @@ var ListTablesRequest = [
|
|
|
835
1108
|
var ListTablesResponse = [3, n0, _LTRi, 0, [_ta, _cT], [() => TableSummaryList, 0]];
|
|
836
1109
|
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
837
1110
|
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
1111
|
+
var ManagedTableInformation = [3, n0, _MTI, 0, [_rI], [() => ReplicationInformation]];
|
|
1112
|
+
var MethodNotAllowedException = [
|
|
1113
|
+
-3,
|
|
1114
|
+
n0,
|
|
1115
|
+
_MNAE,
|
|
1116
|
+
{
|
|
1117
|
+
[_e]: _c,
|
|
1118
|
+
[_hE]: 405,
|
|
1119
|
+
},
|
|
1120
|
+
[_m],
|
|
1121
|
+
[0],
|
|
1122
|
+
];
|
|
1123
|
+
schema.TypeRegistry.for(n0).registerError(MethodNotAllowedException, MethodNotAllowedException$1);
|
|
838
1124
|
var NamespaceSummary = [
|
|
839
1125
|
3,
|
|
840
1126
|
n0,
|
|
@@ -873,6 +1159,37 @@ var PutTableBucketMaintenanceConfigurationRequest = [
|
|
|
873
1159
|
];
|
|
874
1160
|
var PutTableBucketMetricsConfigurationRequest = [3, n0, _PTBMCRu, 0, [_tBARN], [[0, 1]]];
|
|
875
1161
|
var PutTableBucketPolicyRequest = [3, n0, _PTBPR, 0, [_tBARN, _rP], [[0, 1], 0]];
|
|
1162
|
+
var PutTableBucketReplicationRequest = [
|
|
1163
|
+
3,
|
|
1164
|
+
n0,
|
|
1165
|
+
_PTBRR,
|
|
1166
|
+
0,
|
|
1167
|
+
[_tBARN, _vT, _co],
|
|
1168
|
+
[
|
|
1169
|
+
[
|
|
1170
|
+
0,
|
|
1171
|
+
{
|
|
1172
|
+
[_hQ]: _tBARN,
|
|
1173
|
+
},
|
|
1174
|
+
],
|
|
1175
|
+
[
|
|
1176
|
+
0,
|
|
1177
|
+
{
|
|
1178
|
+
[_hQ]: _vT,
|
|
1179
|
+
},
|
|
1180
|
+
],
|
|
1181
|
+
() => TableBucketReplicationConfiguration,
|
|
1182
|
+
],
|
|
1183
|
+
];
|
|
1184
|
+
var PutTableBucketReplicationResponse = [3, n0, _PTBRRu, 0, [_vT, _s], [0, 0]];
|
|
1185
|
+
var PutTableBucketStorageClassRequest = [
|
|
1186
|
+
3,
|
|
1187
|
+
n0,
|
|
1188
|
+
_PTBSCR,
|
|
1189
|
+
0,
|
|
1190
|
+
[_tBARN, _sCC],
|
|
1191
|
+
[[0, 1], () => StorageClassConfiguration],
|
|
1192
|
+
];
|
|
876
1193
|
var PutTableMaintenanceConfigurationRequest = [
|
|
877
1194
|
3,
|
|
878
1195
|
n0,
|
|
@@ -889,6 +1206,45 @@ var PutTablePolicyRequest = [
|
|
|
889
1206
|
[_tBARN, _n, _na, _rP],
|
|
890
1207
|
[[0, 1], [0, 1], [0, 1], 0],
|
|
891
1208
|
];
|
|
1209
|
+
var PutTableRecordExpirationConfigurationRequest = [
|
|
1210
|
+
3,
|
|
1211
|
+
n0,
|
|
1212
|
+
_PTRECR,
|
|
1213
|
+
0,
|
|
1214
|
+
[_tA, _v],
|
|
1215
|
+
[
|
|
1216
|
+
[
|
|
1217
|
+
0,
|
|
1218
|
+
{
|
|
1219
|
+
[_hQ]: _tA,
|
|
1220
|
+
},
|
|
1221
|
+
],
|
|
1222
|
+
() => TableRecordExpirationConfigurationValue,
|
|
1223
|
+
],
|
|
1224
|
+
];
|
|
1225
|
+
var PutTableReplicationRequest = [
|
|
1226
|
+
3,
|
|
1227
|
+
n0,
|
|
1228
|
+
_PTRR,
|
|
1229
|
+
0,
|
|
1230
|
+
[_tA, _vT, _co],
|
|
1231
|
+
[
|
|
1232
|
+
[
|
|
1233
|
+
0,
|
|
1234
|
+
{
|
|
1235
|
+
[_hQ]: _tA,
|
|
1236
|
+
},
|
|
1237
|
+
],
|
|
1238
|
+
[
|
|
1239
|
+
0,
|
|
1240
|
+
{
|
|
1241
|
+
[_hQ]: _vT,
|
|
1242
|
+
},
|
|
1243
|
+
],
|
|
1244
|
+
() => TableReplicationConfiguration,
|
|
1245
|
+
],
|
|
1246
|
+
];
|
|
1247
|
+
var PutTableReplicationResponse = [3, n0, _PTRRu, 0, [_vT, _s], [0, 0]];
|
|
892
1248
|
var RenameTableRequest = [
|
|
893
1249
|
3,
|
|
894
1250
|
n0,
|
|
@@ -897,7 +1253,18 @@ var RenameTableRequest = [
|
|
|
897
1253
|
[_tBARN, _n, _na, _nNN, _nN, _vT],
|
|
898
1254
|
[[0, 1], [0, 1], [0, 1], 0, 0, 0],
|
|
899
1255
|
];
|
|
1256
|
+
var ReplicationDestination = [3, n0, _RD, 0, [_dTBARN], [0]];
|
|
1257
|
+
var ReplicationDestinationStatusModel = [
|
|
1258
|
+
3,
|
|
1259
|
+
n0,
|
|
1260
|
+
_RDSM,
|
|
1261
|
+
0,
|
|
1262
|
+
[_rS, _dTBA, _dTA, _lSRU, _fM],
|
|
1263
|
+
[0, 0, 0, () => LastSuccessfulReplicatedUpdate, 0],
|
|
1264
|
+
];
|
|
1265
|
+
var ReplicationInformation = [3, n0, _RI, 0, [_sTARN], [0]];
|
|
900
1266
|
var SchemaField = [3, n0, _SF, 0, [_na, _ty, _r], [0, 0, 2]];
|
|
1267
|
+
var StorageClassConfiguration = [3, n0, _SCC, 0, [_sC], [0]];
|
|
901
1268
|
var TableBucketMaintenanceConfigurationValue = [
|
|
902
1269
|
3,
|
|
903
1270
|
n0,
|
|
@@ -906,6 +1273,15 @@ var TableBucketMaintenanceConfigurationValue = [
|
|
|
906
1273
|
[_s, _set],
|
|
907
1274
|
[0, () => TableBucketMaintenanceSettings],
|
|
908
1275
|
];
|
|
1276
|
+
var TableBucketReplicationConfiguration = [
|
|
1277
|
+
3,
|
|
1278
|
+
n0,
|
|
1279
|
+
_TBRC,
|
|
1280
|
+
0,
|
|
1281
|
+
[_ro, _ru],
|
|
1282
|
+
[0, () => TableBucketReplicationRules],
|
|
1283
|
+
];
|
|
1284
|
+
var TableBucketReplicationRule = [3, n0, _TBRR, 0, [_d], [() => ReplicationDestinations]];
|
|
909
1285
|
var TableBucketSummary = [
|
|
910
1286
|
3,
|
|
911
1287
|
n0,
|
|
@@ -923,16 +1299,35 @@ var TableMaintenanceConfigurationValue = [
|
|
|
923
1299
|
[0, () => TableMaintenanceSettings],
|
|
924
1300
|
];
|
|
925
1301
|
var TableMaintenanceJobStatusValue = [3, n0, _TMJSV, 0, [_s, _lRT, _fM], [0, 5, 0]];
|
|
1302
|
+
var TableRecordExpirationConfigurationValue = [
|
|
1303
|
+
3,
|
|
1304
|
+
n0,
|
|
1305
|
+
_TRECV,
|
|
1306
|
+
0,
|
|
1307
|
+
[_s, _set],
|
|
1308
|
+
[0, () => TableRecordExpirationSettings],
|
|
1309
|
+
];
|
|
1310
|
+
var TableRecordExpirationJobMetrics = [3, n0, _TREJM, 0, [_dDF, _dR, _rFS], [1, 1, 1]];
|
|
1311
|
+
var TableRecordExpirationSettings = [3, n0, _TRES, 0, [_da], [1]];
|
|
1312
|
+
var TableReplicationConfiguration = [
|
|
1313
|
+
3,
|
|
1314
|
+
n0,
|
|
1315
|
+
_TRC,
|
|
1316
|
+
0,
|
|
1317
|
+
[_ro, _ru],
|
|
1318
|
+
[0, () => TableReplicationRules],
|
|
1319
|
+
];
|
|
1320
|
+
var TableReplicationRule = [3, n0, _TRR, 0, [_d], [() => ReplicationDestinations]];
|
|
926
1321
|
var TableSummary = [
|
|
927
1322
|
3,
|
|
928
1323
|
n0,
|
|
929
1324
|
_TS,
|
|
930
1325
|
0,
|
|
931
|
-
[_n, _na, _ty, _tARN, _cA, _mA, _nI, _tBI],
|
|
932
|
-
[64 | 0, 0, 0, 0, 5, 5, 0, 0],
|
|
1326
|
+
[_n, _na, _ty, _tARN, _cA, _mA, _mBS, _nI, _tBI],
|
|
1327
|
+
[64 | 0, 0, 0, 0, 5, 5, 0, 0, 0],
|
|
933
1328
|
];
|
|
934
|
-
var TagResourceRequest = [3, n0,
|
|
935
|
-
var TagResourceResponse = [3, n0,
|
|
1329
|
+
var TagResourceRequest = [3, n0, _TRRa, 0, [_rA, _t], [[0, 1], 128 | 0]];
|
|
1330
|
+
var TagResourceResponse = [3, n0, _TRRag, 0, [], []];
|
|
936
1331
|
var TooManyRequestsException = [
|
|
937
1332
|
-3,
|
|
938
1333
|
n0,
|
|
@@ -982,8 +1377,12 @@ var __Unit = "unit";
|
|
|
982
1377
|
var S3TablesServiceException = [-3, _sm, "S3TablesServiceException", 0, [], []];
|
|
983
1378
|
schema.TypeRegistry.for(_sm).registerError(S3TablesServiceException, S3TablesServiceException$1);
|
|
984
1379
|
var NamespaceSummaryList = [1, n0, _NSL, 0, () => NamespaceSummary];
|
|
1380
|
+
var ReplicationDestinations = [1, n0, _RDe, 0, () => ReplicationDestination];
|
|
1381
|
+
var ReplicationDestinationStatuses = [1, n0, _RDS, 0, () => ReplicationDestinationStatusModel];
|
|
985
1382
|
var SchemaFieldList = [1, n0, _SFL, 0, () => SchemaField];
|
|
1383
|
+
var TableBucketReplicationRules = [1, n0, _TBRRa, 0, () => TableBucketReplicationRule];
|
|
986
1384
|
var TableBucketSummaryList = [1, n0, _TBSL, 0, () => TableBucketSummary];
|
|
1385
|
+
var TableReplicationRules = [1, n0, _TRRab, 0, () => TableReplicationRule];
|
|
987
1386
|
var TableSummaryList = [1, n0, _TSL, 0, () => TableSummary];
|
|
988
1387
|
var TableBucketMaintenanceConfiguration = [
|
|
989
1388
|
2,
|
|
@@ -1109,6 +1508,16 @@ var DeleteTableBucketPolicy = [
|
|
|
1109
1508
|
() => DeleteTableBucketPolicyRequest,
|
|
1110
1509
|
() => __Unit,
|
|
1111
1510
|
];
|
|
1511
|
+
var DeleteTableBucketReplication = [
|
|
1512
|
+
9,
|
|
1513
|
+
n0,
|
|
1514
|
+
_DTBRe,
|
|
1515
|
+
{
|
|
1516
|
+
[_h]: ["DELETE", "/table-bucket-replication", 204],
|
|
1517
|
+
},
|
|
1518
|
+
() => DeleteTableBucketReplicationRequest,
|
|
1519
|
+
() => __Unit,
|
|
1520
|
+
];
|
|
1112
1521
|
var DeleteTablePolicy = [
|
|
1113
1522
|
9,
|
|
1114
1523
|
n0,
|
|
@@ -1119,6 +1528,16 @@ var DeleteTablePolicy = [
|
|
|
1119
1528
|
() => DeleteTablePolicyRequest,
|
|
1120
1529
|
() => __Unit,
|
|
1121
1530
|
];
|
|
1531
|
+
var DeleteTableReplication = [
|
|
1532
|
+
9,
|
|
1533
|
+
n0,
|
|
1534
|
+
_DTRe,
|
|
1535
|
+
{
|
|
1536
|
+
[_h]: ["DELETE", "/table-replication", 204],
|
|
1537
|
+
},
|
|
1538
|
+
() => DeleteTableReplicationRequest,
|
|
1539
|
+
() => __Unit,
|
|
1540
|
+
];
|
|
1122
1541
|
var GetNamespace = [
|
|
1123
1542
|
9,
|
|
1124
1543
|
n0,
|
|
@@ -1189,6 +1608,26 @@ var GetTableBucketPolicy = [
|
|
|
1189
1608
|
() => GetTableBucketPolicyRequest,
|
|
1190
1609
|
() => GetTableBucketPolicyResponse,
|
|
1191
1610
|
];
|
|
1611
|
+
var GetTableBucketReplication = [
|
|
1612
|
+
9,
|
|
1613
|
+
n0,
|
|
1614
|
+
_GTBRet,
|
|
1615
|
+
{
|
|
1616
|
+
[_h]: ["GET", "/table-bucket-replication", 200],
|
|
1617
|
+
},
|
|
1618
|
+
() => GetTableBucketReplicationRequest,
|
|
1619
|
+
() => GetTableBucketReplicationResponse,
|
|
1620
|
+
];
|
|
1621
|
+
var GetTableBucketStorageClass = [
|
|
1622
|
+
9,
|
|
1623
|
+
n0,
|
|
1624
|
+
_GTBSC,
|
|
1625
|
+
{
|
|
1626
|
+
[_h]: ["GET", "/buckets/{tableBucketARN}/storage-class", 200],
|
|
1627
|
+
},
|
|
1628
|
+
() => GetTableBucketStorageClassRequest,
|
|
1629
|
+
() => GetTableBucketStorageClassResponse,
|
|
1630
|
+
];
|
|
1192
1631
|
var GetTableEncryption = [
|
|
1193
1632
|
9,
|
|
1194
1633
|
n0,
|
|
@@ -1239,6 +1678,56 @@ var GetTablePolicy = [
|
|
|
1239
1678
|
() => GetTablePolicyRequest,
|
|
1240
1679
|
() => GetTablePolicyResponse,
|
|
1241
1680
|
];
|
|
1681
|
+
var GetTableRecordExpirationConfiguration = [
|
|
1682
|
+
9,
|
|
1683
|
+
n0,
|
|
1684
|
+
_GTREC,
|
|
1685
|
+
{
|
|
1686
|
+
[_h]: ["GET", "/table-record-expiration", 200],
|
|
1687
|
+
},
|
|
1688
|
+
() => GetTableRecordExpirationConfigurationRequest,
|
|
1689
|
+
() => GetTableRecordExpirationConfigurationResponse,
|
|
1690
|
+
];
|
|
1691
|
+
var GetTableRecordExpirationJobStatus = [
|
|
1692
|
+
9,
|
|
1693
|
+
n0,
|
|
1694
|
+
_GTREJS,
|
|
1695
|
+
{
|
|
1696
|
+
[_h]: ["GET", "/table-record-expiration-job-status", 200],
|
|
1697
|
+
},
|
|
1698
|
+
() => GetTableRecordExpirationJobStatusRequest,
|
|
1699
|
+
() => GetTableRecordExpirationJobStatusResponse,
|
|
1700
|
+
];
|
|
1701
|
+
var GetTableReplication = [
|
|
1702
|
+
9,
|
|
1703
|
+
n0,
|
|
1704
|
+
_GTRet,
|
|
1705
|
+
{
|
|
1706
|
+
[_h]: ["GET", "/table-replication", 200],
|
|
1707
|
+
},
|
|
1708
|
+
() => GetTableReplicationRequest,
|
|
1709
|
+
() => GetTableReplicationResponse,
|
|
1710
|
+
];
|
|
1711
|
+
var GetTableReplicationStatus = [
|
|
1712
|
+
9,
|
|
1713
|
+
n0,
|
|
1714
|
+
_GTRS,
|
|
1715
|
+
{
|
|
1716
|
+
[_h]: ["GET", "/replication-status", 200],
|
|
1717
|
+
},
|
|
1718
|
+
() => GetTableReplicationStatusRequest,
|
|
1719
|
+
() => GetTableReplicationStatusResponse,
|
|
1720
|
+
];
|
|
1721
|
+
var GetTableStorageClass = [
|
|
1722
|
+
9,
|
|
1723
|
+
n0,
|
|
1724
|
+
_GTSC,
|
|
1725
|
+
{
|
|
1726
|
+
[_h]: ["GET", "/tables/{tableBucketARN}/{namespace}/{name}/storage-class", 200],
|
|
1727
|
+
},
|
|
1728
|
+
() => GetTableStorageClassRequest,
|
|
1729
|
+
() => GetTableStorageClassResponse,
|
|
1730
|
+
];
|
|
1242
1731
|
var ListNamespaces = [
|
|
1243
1732
|
9,
|
|
1244
1733
|
n0,
|
|
@@ -1319,6 +1808,26 @@ var PutTableBucketPolicy = [
|
|
|
1319
1808
|
() => PutTableBucketPolicyRequest,
|
|
1320
1809
|
() => __Unit,
|
|
1321
1810
|
];
|
|
1811
|
+
var PutTableBucketReplication = [
|
|
1812
|
+
9,
|
|
1813
|
+
n0,
|
|
1814
|
+
_PTBR,
|
|
1815
|
+
{
|
|
1816
|
+
[_h]: ["PUT", "/table-bucket-replication", 200],
|
|
1817
|
+
},
|
|
1818
|
+
() => PutTableBucketReplicationRequest,
|
|
1819
|
+
() => PutTableBucketReplicationResponse,
|
|
1820
|
+
];
|
|
1821
|
+
var PutTableBucketStorageClass = [
|
|
1822
|
+
9,
|
|
1823
|
+
n0,
|
|
1824
|
+
_PTBSC,
|
|
1825
|
+
{
|
|
1826
|
+
[_h]: ["PUT", "/buckets/{tableBucketARN}/storage-class", 200],
|
|
1827
|
+
},
|
|
1828
|
+
() => PutTableBucketStorageClassRequest,
|
|
1829
|
+
() => __Unit,
|
|
1830
|
+
];
|
|
1322
1831
|
var PutTableMaintenanceConfiguration = [
|
|
1323
1832
|
9,
|
|
1324
1833
|
n0,
|
|
@@ -1339,6 +1848,26 @@ var PutTablePolicy = [
|
|
|
1339
1848
|
() => PutTablePolicyRequest,
|
|
1340
1849
|
() => __Unit,
|
|
1341
1850
|
];
|
|
1851
|
+
var PutTableRecordExpirationConfiguration = [
|
|
1852
|
+
9,
|
|
1853
|
+
n0,
|
|
1854
|
+
_PTREC,
|
|
1855
|
+
{
|
|
1856
|
+
[_h]: ["PUT", "/table-record-expiration", 204],
|
|
1857
|
+
},
|
|
1858
|
+
() => PutTableRecordExpirationConfigurationRequest,
|
|
1859
|
+
() => __Unit,
|
|
1860
|
+
];
|
|
1861
|
+
var PutTableReplication = [
|
|
1862
|
+
9,
|
|
1863
|
+
n0,
|
|
1864
|
+
_PTR,
|
|
1865
|
+
{
|
|
1866
|
+
[_h]: ["PUT", "/table-replication", 200],
|
|
1867
|
+
},
|
|
1868
|
+
() => PutTableReplicationRequest,
|
|
1869
|
+
() => PutTableReplicationResponse,
|
|
1870
|
+
];
|
|
1342
1871
|
var RenameTable = [
|
|
1343
1872
|
9,
|
|
1344
1873
|
n0,
|
|
@@ -1476,6 +2005,18 @@ class DeleteTableBucketPolicyCommand extends smithyClient.Command
|
|
|
1476
2005
|
.build() {
|
|
1477
2006
|
}
|
|
1478
2007
|
|
|
2008
|
+
class DeleteTableBucketReplicationCommand extends smithyClient.Command
|
|
2009
|
+
.classBuilder()
|
|
2010
|
+
.ep(commonParams)
|
|
2011
|
+
.m(function (Command, cs, config, o) {
|
|
2012
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2013
|
+
})
|
|
2014
|
+
.s("S3TableBuckets", "DeleteTableBucketReplication", {})
|
|
2015
|
+
.n("S3TablesClient", "DeleteTableBucketReplicationCommand")
|
|
2016
|
+
.sc(DeleteTableBucketReplication)
|
|
2017
|
+
.build() {
|
|
2018
|
+
}
|
|
2019
|
+
|
|
1479
2020
|
class DeleteTableCommand extends smithyClient.Command
|
|
1480
2021
|
.classBuilder()
|
|
1481
2022
|
.ep(commonParams)
|
|
@@ -1500,6 +2041,18 @@ class DeleteTablePolicyCommand extends smithyClient.Command
|
|
|
1500
2041
|
.build() {
|
|
1501
2042
|
}
|
|
1502
2043
|
|
|
2044
|
+
class DeleteTableReplicationCommand extends smithyClient.Command
|
|
2045
|
+
.classBuilder()
|
|
2046
|
+
.ep(commonParams)
|
|
2047
|
+
.m(function (Command, cs, config, o) {
|
|
2048
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2049
|
+
})
|
|
2050
|
+
.s("S3TableBuckets", "DeleteTableReplication", {})
|
|
2051
|
+
.n("S3TablesClient", "DeleteTableReplicationCommand")
|
|
2052
|
+
.sc(DeleteTableReplication)
|
|
2053
|
+
.build() {
|
|
2054
|
+
}
|
|
2055
|
+
|
|
1503
2056
|
class GetNamespaceCommand extends smithyClient.Command
|
|
1504
2057
|
.classBuilder()
|
|
1505
2058
|
.ep(commonParams)
|
|
@@ -1572,6 +2125,30 @@ class GetTableBucketPolicyCommand extends smithyClient.Command
|
|
|
1572
2125
|
.build() {
|
|
1573
2126
|
}
|
|
1574
2127
|
|
|
2128
|
+
class GetTableBucketReplicationCommand extends smithyClient.Command
|
|
2129
|
+
.classBuilder()
|
|
2130
|
+
.ep(commonParams)
|
|
2131
|
+
.m(function (Command, cs, config, o) {
|
|
2132
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2133
|
+
})
|
|
2134
|
+
.s("S3TableBuckets", "GetTableBucketReplication", {})
|
|
2135
|
+
.n("S3TablesClient", "GetTableBucketReplicationCommand")
|
|
2136
|
+
.sc(GetTableBucketReplication)
|
|
2137
|
+
.build() {
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2140
|
+
class GetTableBucketStorageClassCommand extends smithyClient.Command
|
|
2141
|
+
.classBuilder()
|
|
2142
|
+
.ep(commonParams)
|
|
2143
|
+
.m(function (Command, cs, config, o) {
|
|
2144
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2145
|
+
})
|
|
2146
|
+
.s("S3TableBuckets", "GetTableBucketStorageClass", {})
|
|
2147
|
+
.n("S3TablesClient", "GetTableBucketStorageClassCommand")
|
|
2148
|
+
.sc(GetTableBucketStorageClass)
|
|
2149
|
+
.build() {
|
|
2150
|
+
}
|
|
2151
|
+
|
|
1575
2152
|
class GetTableCommand extends smithyClient.Command
|
|
1576
2153
|
.classBuilder()
|
|
1577
2154
|
.ep(commonParams)
|
|
@@ -1644,6 +2221,66 @@ class GetTablePolicyCommand extends smithyClient.Command
|
|
|
1644
2221
|
.build() {
|
|
1645
2222
|
}
|
|
1646
2223
|
|
|
2224
|
+
class GetTableRecordExpirationConfigurationCommand extends smithyClient.Command
|
|
2225
|
+
.classBuilder()
|
|
2226
|
+
.ep(commonParams)
|
|
2227
|
+
.m(function (Command, cs, config, o) {
|
|
2228
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2229
|
+
})
|
|
2230
|
+
.s("S3TableBuckets", "GetTableRecordExpirationConfiguration", {})
|
|
2231
|
+
.n("S3TablesClient", "GetTableRecordExpirationConfigurationCommand")
|
|
2232
|
+
.sc(GetTableRecordExpirationConfiguration)
|
|
2233
|
+
.build() {
|
|
2234
|
+
}
|
|
2235
|
+
|
|
2236
|
+
class GetTableRecordExpirationJobStatusCommand extends smithyClient.Command
|
|
2237
|
+
.classBuilder()
|
|
2238
|
+
.ep(commonParams)
|
|
2239
|
+
.m(function (Command, cs, config, o) {
|
|
2240
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2241
|
+
})
|
|
2242
|
+
.s("S3TableBuckets", "GetTableRecordExpirationJobStatus", {})
|
|
2243
|
+
.n("S3TablesClient", "GetTableRecordExpirationJobStatusCommand")
|
|
2244
|
+
.sc(GetTableRecordExpirationJobStatus)
|
|
2245
|
+
.build() {
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
class GetTableReplicationCommand extends smithyClient.Command
|
|
2249
|
+
.classBuilder()
|
|
2250
|
+
.ep(commonParams)
|
|
2251
|
+
.m(function (Command, cs, config, o) {
|
|
2252
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2253
|
+
})
|
|
2254
|
+
.s("S3TableBuckets", "GetTableReplication", {})
|
|
2255
|
+
.n("S3TablesClient", "GetTableReplicationCommand")
|
|
2256
|
+
.sc(GetTableReplication)
|
|
2257
|
+
.build() {
|
|
2258
|
+
}
|
|
2259
|
+
|
|
2260
|
+
class GetTableReplicationStatusCommand extends smithyClient.Command
|
|
2261
|
+
.classBuilder()
|
|
2262
|
+
.ep(commonParams)
|
|
2263
|
+
.m(function (Command, cs, config, o) {
|
|
2264
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2265
|
+
})
|
|
2266
|
+
.s("S3TableBuckets", "GetTableReplicationStatus", {})
|
|
2267
|
+
.n("S3TablesClient", "GetTableReplicationStatusCommand")
|
|
2268
|
+
.sc(GetTableReplicationStatus)
|
|
2269
|
+
.build() {
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
class GetTableStorageClassCommand extends smithyClient.Command
|
|
2273
|
+
.classBuilder()
|
|
2274
|
+
.ep(commonParams)
|
|
2275
|
+
.m(function (Command, cs, config, o) {
|
|
2276
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2277
|
+
})
|
|
2278
|
+
.s("S3TableBuckets", "GetTableStorageClass", {})
|
|
2279
|
+
.n("S3TablesClient", "GetTableStorageClassCommand")
|
|
2280
|
+
.sc(GetTableStorageClass)
|
|
2281
|
+
.build() {
|
|
2282
|
+
}
|
|
2283
|
+
|
|
1647
2284
|
class ListNamespacesCommand extends smithyClient.Command
|
|
1648
2285
|
.classBuilder()
|
|
1649
2286
|
.ep(commonParams)
|
|
@@ -1740,6 +2377,30 @@ class PutTableBucketPolicyCommand extends smithyClient.Command
|
|
|
1740
2377
|
.build() {
|
|
1741
2378
|
}
|
|
1742
2379
|
|
|
2380
|
+
class PutTableBucketReplicationCommand extends smithyClient.Command
|
|
2381
|
+
.classBuilder()
|
|
2382
|
+
.ep(commonParams)
|
|
2383
|
+
.m(function (Command, cs, config, o) {
|
|
2384
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2385
|
+
})
|
|
2386
|
+
.s("S3TableBuckets", "PutTableBucketReplication", {})
|
|
2387
|
+
.n("S3TablesClient", "PutTableBucketReplicationCommand")
|
|
2388
|
+
.sc(PutTableBucketReplication)
|
|
2389
|
+
.build() {
|
|
2390
|
+
}
|
|
2391
|
+
|
|
2392
|
+
class PutTableBucketStorageClassCommand extends smithyClient.Command
|
|
2393
|
+
.classBuilder()
|
|
2394
|
+
.ep(commonParams)
|
|
2395
|
+
.m(function (Command, cs, config, o) {
|
|
2396
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2397
|
+
})
|
|
2398
|
+
.s("S3TableBuckets", "PutTableBucketStorageClass", {})
|
|
2399
|
+
.n("S3TablesClient", "PutTableBucketStorageClassCommand")
|
|
2400
|
+
.sc(PutTableBucketStorageClass)
|
|
2401
|
+
.build() {
|
|
2402
|
+
}
|
|
2403
|
+
|
|
1743
2404
|
class PutTableMaintenanceConfigurationCommand extends smithyClient.Command
|
|
1744
2405
|
.classBuilder()
|
|
1745
2406
|
.ep(commonParams)
|
|
@@ -1764,6 +2425,30 @@ class PutTablePolicyCommand extends smithyClient.Command
|
|
|
1764
2425
|
.build() {
|
|
1765
2426
|
}
|
|
1766
2427
|
|
|
2428
|
+
class PutTableRecordExpirationConfigurationCommand extends smithyClient.Command
|
|
2429
|
+
.classBuilder()
|
|
2430
|
+
.ep(commonParams)
|
|
2431
|
+
.m(function (Command, cs, config, o) {
|
|
2432
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2433
|
+
})
|
|
2434
|
+
.s("S3TableBuckets", "PutTableRecordExpirationConfiguration", {})
|
|
2435
|
+
.n("S3TablesClient", "PutTableRecordExpirationConfigurationCommand")
|
|
2436
|
+
.sc(PutTableRecordExpirationConfiguration)
|
|
2437
|
+
.build() {
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
class PutTableReplicationCommand extends smithyClient.Command
|
|
2441
|
+
.classBuilder()
|
|
2442
|
+
.ep(commonParams)
|
|
2443
|
+
.m(function (Command, cs, config, o) {
|
|
2444
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
2445
|
+
})
|
|
2446
|
+
.s("S3TableBuckets", "PutTableReplication", {})
|
|
2447
|
+
.n("S3TablesClient", "PutTableReplicationCommand")
|
|
2448
|
+
.sc(PutTableReplication)
|
|
2449
|
+
.build() {
|
|
2450
|
+
}
|
|
2451
|
+
|
|
1767
2452
|
class RenameTableCommand extends smithyClient.Command
|
|
1768
2453
|
.classBuilder()
|
|
1769
2454
|
.ep(commonParams)
|
|
@@ -1822,7 +2507,9 @@ const commands = {
|
|
|
1822
2507
|
DeleteTableBucketEncryptionCommand,
|
|
1823
2508
|
DeleteTableBucketMetricsConfigurationCommand,
|
|
1824
2509
|
DeleteTableBucketPolicyCommand,
|
|
2510
|
+
DeleteTableBucketReplicationCommand,
|
|
1825
2511
|
DeleteTablePolicyCommand,
|
|
2512
|
+
DeleteTableReplicationCommand,
|
|
1826
2513
|
GetNamespaceCommand,
|
|
1827
2514
|
GetTableCommand,
|
|
1828
2515
|
GetTableBucketCommand,
|
|
@@ -1830,11 +2517,18 @@ const commands = {
|
|
|
1830
2517
|
GetTableBucketMaintenanceConfigurationCommand,
|
|
1831
2518
|
GetTableBucketMetricsConfigurationCommand,
|
|
1832
2519
|
GetTableBucketPolicyCommand,
|
|
2520
|
+
GetTableBucketReplicationCommand,
|
|
2521
|
+
GetTableBucketStorageClassCommand,
|
|
1833
2522
|
GetTableEncryptionCommand,
|
|
1834
2523
|
GetTableMaintenanceConfigurationCommand,
|
|
1835
2524
|
GetTableMaintenanceJobStatusCommand,
|
|
1836
2525
|
GetTableMetadataLocationCommand,
|
|
1837
2526
|
GetTablePolicyCommand,
|
|
2527
|
+
GetTableRecordExpirationConfigurationCommand,
|
|
2528
|
+
GetTableRecordExpirationJobStatusCommand,
|
|
2529
|
+
GetTableReplicationCommand,
|
|
2530
|
+
GetTableReplicationStatusCommand,
|
|
2531
|
+
GetTableStorageClassCommand,
|
|
1838
2532
|
ListNamespacesCommand,
|
|
1839
2533
|
ListTableBucketsCommand,
|
|
1840
2534
|
ListTablesCommand,
|
|
@@ -1843,8 +2537,12 @@ const commands = {
|
|
|
1843
2537
|
PutTableBucketMaintenanceConfigurationCommand,
|
|
1844
2538
|
PutTableBucketMetricsConfigurationCommand,
|
|
1845
2539
|
PutTableBucketPolicyCommand,
|
|
2540
|
+
PutTableBucketReplicationCommand,
|
|
2541
|
+
PutTableBucketStorageClassCommand,
|
|
1846
2542
|
PutTableMaintenanceConfigurationCommand,
|
|
1847
2543
|
PutTablePolicyCommand,
|
|
2544
|
+
PutTableRecordExpirationConfigurationCommand,
|
|
2545
|
+
PutTableReplicationCommand,
|
|
1848
2546
|
RenameTableCommand,
|
|
1849
2547
|
TagResourceCommand,
|
|
1850
2548
|
UntagResourceCommand,
|
|
@@ -1867,6 +2565,10 @@ const SSEAlgorithm = {
|
|
|
1867
2565
|
const OpenTableFormat = {
|
|
1868
2566
|
ICEBERG: "ICEBERG",
|
|
1869
2567
|
};
|
|
2568
|
+
const StorageClass = {
|
|
2569
|
+
INTELLIGENT_TIERING: "INTELLIGENT_TIERING",
|
|
2570
|
+
STANDARD: "STANDARD",
|
|
2571
|
+
};
|
|
1870
2572
|
const TableType = {
|
|
1871
2573
|
AWS: "aws",
|
|
1872
2574
|
CUSTOMER: "customer",
|
|
@@ -1903,6 +2605,21 @@ const JobStatus = {
|
|
|
1903
2605
|
NOT_YET_RUN: "Not_Yet_Run",
|
|
1904
2606
|
SUCCESSFUL: "Successful",
|
|
1905
2607
|
};
|
|
2608
|
+
const TableRecordExpirationStatus = {
|
|
2609
|
+
DISABLED: "disabled",
|
|
2610
|
+
ENABLED: "enabled",
|
|
2611
|
+
};
|
|
2612
|
+
const TableRecordExpirationJobStatus = {
|
|
2613
|
+
DISABLED: "Disabled",
|
|
2614
|
+
FAILED: "Failed",
|
|
2615
|
+
NOT_YET_RUN: "NotYetRun",
|
|
2616
|
+
SUCCESSFUL: "Successful",
|
|
2617
|
+
};
|
|
2618
|
+
const ReplicationStatus = {
|
|
2619
|
+
COMPLETED: "completed",
|
|
2620
|
+
FAILED: "failed",
|
|
2621
|
+
PENDING: "pending",
|
|
2622
|
+
};
|
|
1906
2623
|
|
|
1907
2624
|
Object.defineProperty(exports, "$Command", {
|
|
1908
2625
|
enumerable: true,
|
|
@@ -1923,8 +2640,10 @@ exports.DeleteTableBucketCommand = DeleteTableBucketCommand;
|
|
|
1923
2640
|
exports.DeleteTableBucketEncryptionCommand = DeleteTableBucketEncryptionCommand;
|
|
1924
2641
|
exports.DeleteTableBucketMetricsConfigurationCommand = DeleteTableBucketMetricsConfigurationCommand;
|
|
1925
2642
|
exports.DeleteTableBucketPolicyCommand = DeleteTableBucketPolicyCommand;
|
|
2643
|
+
exports.DeleteTableBucketReplicationCommand = DeleteTableBucketReplicationCommand;
|
|
1926
2644
|
exports.DeleteTableCommand = DeleteTableCommand;
|
|
1927
2645
|
exports.DeleteTablePolicyCommand = DeleteTablePolicyCommand;
|
|
2646
|
+
exports.DeleteTableReplicationCommand = DeleteTableReplicationCommand;
|
|
1928
2647
|
exports.ForbiddenException = ForbiddenException$1;
|
|
1929
2648
|
exports.GetNamespaceCommand = GetNamespaceCommand;
|
|
1930
2649
|
exports.GetTableBucketCommand = GetTableBucketCommand;
|
|
@@ -1932,12 +2651,19 @@ exports.GetTableBucketEncryptionCommand = GetTableBucketEncryptionCommand;
|
|
|
1932
2651
|
exports.GetTableBucketMaintenanceConfigurationCommand = GetTableBucketMaintenanceConfigurationCommand;
|
|
1933
2652
|
exports.GetTableBucketMetricsConfigurationCommand = GetTableBucketMetricsConfigurationCommand;
|
|
1934
2653
|
exports.GetTableBucketPolicyCommand = GetTableBucketPolicyCommand;
|
|
2654
|
+
exports.GetTableBucketReplicationCommand = GetTableBucketReplicationCommand;
|
|
2655
|
+
exports.GetTableBucketStorageClassCommand = GetTableBucketStorageClassCommand;
|
|
1935
2656
|
exports.GetTableCommand = GetTableCommand;
|
|
1936
2657
|
exports.GetTableEncryptionCommand = GetTableEncryptionCommand;
|
|
1937
2658
|
exports.GetTableMaintenanceConfigurationCommand = GetTableMaintenanceConfigurationCommand;
|
|
1938
2659
|
exports.GetTableMaintenanceJobStatusCommand = GetTableMaintenanceJobStatusCommand;
|
|
1939
2660
|
exports.GetTableMetadataLocationCommand = GetTableMetadataLocationCommand;
|
|
1940
2661
|
exports.GetTablePolicyCommand = GetTablePolicyCommand;
|
|
2662
|
+
exports.GetTableRecordExpirationConfigurationCommand = GetTableRecordExpirationConfigurationCommand;
|
|
2663
|
+
exports.GetTableRecordExpirationJobStatusCommand = GetTableRecordExpirationJobStatusCommand;
|
|
2664
|
+
exports.GetTableReplicationCommand = GetTableReplicationCommand;
|
|
2665
|
+
exports.GetTableReplicationStatusCommand = GetTableReplicationStatusCommand;
|
|
2666
|
+
exports.GetTableStorageClassCommand = GetTableStorageClassCommand;
|
|
1941
2667
|
exports.IcebergCompactionStrategy = IcebergCompactionStrategy;
|
|
1942
2668
|
exports.InternalServerErrorException = InternalServerErrorException$1;
|
|
1943
2669
|
exports.JobStatus = JobStatus;
|
|
@@ -1946,23 +2672,32 @@ exports.ListTableBucketsCommand = ListTableBucketsCommand;
|
|
|
1946
2672
|
exports.ListTablesCommand = ListTablesCommand;
|
|
1947
2673
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1948
2674
|
exports.MaintenanceStatus = MaintenanceStatus;
|
|
2675
|
+
exports.MethodNotAllowedException = MethodNotAllowedException$1;
|
|
1949
2676
|
exports.NotFoundException = NotFoundException$1;
|
|
1950
2677
|
exports.OpenTableFormat = OpenTableFormat;
|
|
1951
2678
|
exports.PutTableBucketEncryptionCommand = PutTableBucketEncryptionCommand;
|
|
1952
2679
|
exports.PutTableBucketMaintenanceConfigurationCommand = PutTableBucketMaintenanceConfigurationCommand;
|
|
1953
2680
|
exports.PutTableBucketMetricsConfigurationCommand = PutTableBucketMetricsConfigurationCommand;
|
|
1954
2681
|
exports.PutTableBucketPolicyCommand = PutTableBucketPolicyCommand;
|
|
2682
|
+
exports.PutTableBucketReplicationCommand = PutTableBucketReplicationCommand;
|
|
2683
|
+
exports.PutTableBucketStorageClassCommand = PutTableBucketStorageClassCommand;
|
|
1955
2684
|
exports.PutTableMaintenanceConfigurationCommand = PutTableMaintenanceConfigurationCommand;
|
|
1956
2685
|
exports.PutTablePolicyCommand = PutTablePolicyCommand;
|
|
2686
|
+
exports.PutTableRecordExpirationConfigurationCommand = PutTableRecordExpirationConfigurationCommand;
|
|
2687
|
+
exports.PutTableReplicationCommand = PutTableReplicationCommand;
|
|
1957
2688
|
exports.RenameTableCommand = RenameTableCommand;
|
|
2689
|
+
exports.ReplicationStatus = ReplicationStatus;
|
|
1958
2690
|
exports.S3Tables = S3Tables;
|
|
1959
2691
|
exports.S3TablesClient = S3TablesClient;
|
|
1960
2692
|
exports.S3TablesServiceException = S3TablesServiceException$1;
|
|
1961
2693
|
exports.SSEAlgorithm = SSEAlgorithm;
|
|
2694
|
+
exports.StorageClass = StorageClass;
|
|
1962
2695
|
exports.TableBucketMaintenanceType = TableBucketMaintenanceType;
|
|
1963
2696
|
exports.TableBucketType = TableBucketType;
|
|
1964
2697
|
exports.TableMaintenanceJobType = TableMaintenanceJobType;
|
|
1965
2698
|
exports.TableMaintenanceType = TableMaintenanceType;
|
|
2699
|
+
exports.TableRecordExpirationJobStatus = TableRecordExpirationJobStatus;
|
|
2700
|
+
exports.TableRecordExpirationStatus = TableRecordExpirationStatus;
|
|
1966
2701
|
exports.TableType = TableType;
|
|
1967
2702
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1968
2703
|
exports.TooManyRequestsException = TooManyRequestsException$1;
|