@aws-sdk/client-s3tables 3.1075.0 → 3.1077.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 CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultS3TablesHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CreateNamespace$, CreateTableBucket$, CreateTable$, DeleteNamespace$, DeleteTableBucket$, DeleteTableBucketEncryption$, DeleteTableBucketMetricsConfiguration$, DeleteTableBucketPolicy$, DeleteTableBucketReplication$, DeleteTable$, DeleteTablePolicy$, DeleteTableReplication$, GetNamespace$, GetTableBucket$, GetTableBucketEncryption$, GetTableBucketMaintenanceConfiguration$, GetTableBucketMetricsConfiguration$, GetTableBucketPolicy$, GetTableBucketReplication$, GetTableBucketStorageClass$, GetTable$, GetTableEncryption$, GetTableMaintenanceConfiguration$, GetTableMaintenanceJobStatus$, GetTableMetadataLocation$, GetTablePolicy$, GetTableRecordExpirationConfiguration$, GetTableRecordExpirationJobStatus$, GetTableReplication$, GetTableReplicationStatus$, GetTableStorageClass$, ListNamespaces$, ListTableBuckets$, ListTables$, ListTagsForResource$, PutTableBucketEncryption$, PutTableBucketMaintenanceConfiguration$, PutTableBucketMetricsConfiguration$, PutTableBucketPolicy$, PutTableBucketReplication$, PutTableBucketStorageClass$, PutTableMaintenanceConfiguration$, PutTablePolicy$, PutTableRecordExpirationConfiguration$, PutTableReplication$, RenameTable$, TagResource$, UntagResource$, UpdateTableMetadataLocation$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { S3TablesServiceException } = require("./models/S3TablesServiceException");
18
- exports.S3TablesServiceException = S3TablesServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultS3TablesHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "s3tables",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultS3TablesHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -31,6 +68,1356 @@ const commonParams = {
31
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
69
  };
33
70
 
71
+ var version = "3.1076.0";
72
+ var packageInfo = {
73
+ version: version};
74
+
75
+ const k = "ref";
76
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
77
+ const _data = {
78
+ conditions: [
79
+ [c, [g]],
80
+ [c, j],
81
+ ["aws.partition", j, d],
82
+ [e, [{ [k]: "UseFIPS" }, b]],
83
+ [e, [{ [k]: "UseDualStack" }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
85
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
86
+ ],
87
+ results: [
88
+ [a],
89
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
90
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
91
+ [g, i],
92
+ ["https://s3tables-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
94
+ ["https://s3tables-fips.{Region}.{PartitionResult#dnsSuffix}", i],
95
+ [a, "FIPS is enabled but this partition does not support FIPS"],
96
+ ["https://s3tables.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
97
+ [a, "DualStack is enabled but this partition does not support DualStack"],
98
+ ["https://s3tables.{Region}.{PartitionResult#dnsSuffix}", i],
99
+ [a, "Invalid Configuration: Missing Region"]
100
+ ]
101
+ };
102
+ const root = 2;
103
+ const r = 100_000_000;
104
+ const nodes = new Int32Array([
105
+ -1, 1, -1,
106
+ 0, 12, 3,
107
+ 1, 4, r + 11,
108
+ 2, 5, r + 11,
109
+ 3, 8, 6,
110
+ 4, 7, r + 10,
111
+ 5, r + 8, r + 9,
112
+ 4, 10, 9,
113
+ 6, r + 6, r + 7,
114
+ 5, 11, r + 5,
115
+ 6, r + 4, r + 5,
116
+ 3, r + 1, 13,
117
+ 4, r + 2, r + 3,
118
+ ]);
119
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
120
+
121
+ const cache = new EndpointCache({
122
+ size: 50,
123
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
124
+ });
125
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
126
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
127
+ endpointParams: endpointParams,
128
+ logger: context.logger,
129
+ }));
130
+ };
131
+ customEndpointFunctions.aws = awsEndpointFunctions;
132
+
133
+ class S3TablesServiceException extends ServiceException {
134
+ constructor(options) {
135
+ super(options);
136
+ Object.setPrototypeOf(this, S3TablesServiceException.prototype);
137
+ }
138
+ }
139
+
140
+ class AccessDeniedException extends S3TablesServiceException {
141
+ name = "AccessDeniedException";
142
+ $fault = "client";
143
+ constructor(opts) {
144
+ super({
145
+ name: "AccessDeniedException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
150
+ }
151
+ }
152
+ class BadRequestException extends S3TablesServiceException {
153
+ name = "BadRequestException";
154
+ $fault = "client";
155
+ constructor(opts) {
156
+ super({
157
+ name: "BadRequestException",
158
+ $fault: "client",
159
+ ...opts,
160
+ });
161
+ Object.setPrototypeOf(this, BadRequestException.prototype);
162
+ }
163
+ }
164
+ class ConflictException extends S3TablesServiceException {
165
+ name = "ConflictException";
166
+ $fault = "client";
167
+ constructor(opts) {
168
+ super({
169
+ name: "ConflictException",
170
+ $fault: "client",
171
+ ...opts,
172
+ });
173
+ Object.setPrototypeOf(this, ConflictException.prototype);
174
+ }
175
+ }
176
+ class ForbiddenException extends S3TablesServiceException {
177
+ name = "ForbiddenException";
178
+ $fault = "client";
179
+ constructor(opts) {
180
+ super({
181
+ name: "ForbiddenException",
182
+ $fault: "client",
183
+ ...opts,
184
+ });
185
+ Object.setPrototypeOf(this, ForbiddenException.prototype);
186
+ }
187
+ }
188
+ class InternalServerErrorException extends S3TablesServiceException {
189
+ name = "InternalServerErrorException";
190
+ $fault = "server";
191
+ constructor(opts) {
192
+ super({
193
+ name: "InternalServerErrorException",
194
+ $fault: "server",
195
+ ...opts,
196
+ });
197
+ Object.setPrototypeOf(this, InternalServerErrorException.prototype);
198
+ }
199
+ }
200
+ class NotFoundException extends S3TablesServiceException {
201
+ name = "NotFoundException";
202
+ $fault = "client";
203
+ constructor(opts) {
204
+ super({
205
+ name: "NotFoundException",
206
+ $fault: "client",
207
+ ...opts,
208
+ });
209
+ Object.setPrototypeOf(this, NotFoundException.prototype);
210
+ }
211
+ }
212
+ class TooManyRequestsException extends S3TablesServiceException {
213
+ name = "TooManyRequestsException";
214
+ $fault = "client";
215
+ constructor(opts) {
216
+ super({
217
+ name: "TooManyRequestsException",
218
+ $fault: "client",
219
+ ...opts,
220
+ });
221
+ Object.setPrototypeOf(this, TooManyRequestsException.prototype);
222
+ }
223
+ }
224
+ class MethodNotAllowedException extends S3TablesServiceException {
225
+ name = "MethodNotAllowedException";
226
+ $fault = "client";
227
+ constructor(opts) {
228
+ super({
229
+ name: "MethodNotAllowedException",
230
+ $fault: "client",
231
+ ...opts,
232
+ });
233
+ Object.setPrototypeOf(this, MethodNotAllowedException.prototype);
234
+ }
235
+ }
236
+
237
+ const _ADE = "AccessDeniedException";
238
+ const _BRE = "BadRequestException";
239
+ const _CE = "ConflictException";
240
+ const _CN = "CreateNamespace";
241
+ const _CNR = "CreateNamespaceRequest";
242
+ const _CNRr = "CreateNamespaceResponse";
243
+ const _CT = "CreateTable";
244
+ const _CTB = "CreateTableBucket";
245
+ const _CTBR = "CreateTableBucketRequest";
246
+ const _CTBRr = "CreateTableBucketResponse";
247
+ const _CTR = "CreateTableRequest";
248
+ const _CTRr = "CreateTableResponse";
249
+ const _DN = "DeleteNamespace";
250
+ const _DNR = "DeleteNamespaceRequest";
251
+ const _DT = "DeleteTable";
252
+ const _DTB = "DeleteTableBucket";
253
+ const _DTBE = "DeleteTableBucketEncryption";
254
+ const _DTBER = "DeleteTableBucketEncryptionRequest";
255
+ const _DTBMC = "DeleteTableBucketMetricsConfiguration";
256
+ const _DTBMCR = "DeleteTableBucketMetricsConfigurationRequest";
257
+ const _DTBP = "DeleteTableBucketPolicy";
258
+ const _DTBPR = "DeleteTableBucketPolicyRequest";
259
+ const _DTBR = "DeleteTableBucketRequest";
260
+ const _DTBRR = "DeleteTableBucketReplicationRequest";
261
+ const _DTBRe = "DeleteTableBucketReplication";
262
+ const _DTP = "DeleteTablePolicy";
263
+ const _DTPR = "DeleteTablePolicyRequest";
264
+ const _DTR = "DeleteTableRequest";
265
+ const _DTRR = "DeleteTableReplicationRequest";
266
+ const _DTRe = "DeleteTableReplication";
267
+ const _EC = "EncryptionConfiguration";
268
+ const _FE = "ForbiddenException";
269
+ const _GN = "GetNamespace";
270
+ const _GNR = "GetNamespaceRequest";
271
+ const _GNRe = "GetNamespaceResponse";
272
+ const _GT = "GetTable";
273
+ const _GTB = "GetTableBucket";
274
+ const _GTBE = "GetTableBucketEncryption";
275
+ const _GTBER = "GetTableBucketEncryptionRequest";
276
+ const _GTBERe = "GetTableBucketEncryptionResponse";
277
+ const _GTBMC = "GetTableBucketMaintenanceConfiguration";
278
+ const _GTBMCR = "GetTableBucketMaintenanceConfigurationRequest";
279
+ const _GTBMCRe = "GetTableBucketMaintenanceConfigurationResponse";
280
+ const _GTBMCRet = "GetTableBucketMetricsConfigurationRequest";
281
+ const _GTBMCReta = "GetTableBucketMetricsConfigurationResponse";
282
+ const _GTBMCe = "GetTableBucketMetricsConfiguration";
283
+ const _GTBP = "GetTableBucketPolicy";
284
+ const _GTBPR = "GetTableBucketPolicyRequest";
285
+ const _GTBPRe = "GetTableBucketPolicyResponse";
286
+ const _GTBR = "GetTableBucketRequest";
287
+ const _GTBRR = "GetTableBucketReplicationRequest";
288
+ const _GTBRRe = "GetTableBucketReplicationResponse";
289
+ const _GTBRe = "GetTableBucketResponse";
290
+ const _GTBRet = "GetTableBucketReplication";
291
+ const _GTBSC = "GetTableBucketStorageClass";
292
+ const _GTBSCR = "GetTableBucketStorageClassRequest";
293
+ const _GTBSCRe = "GetTableBucketStorageClassResponse";
294
+ const _GTE = "GetTableEncryption";
295
+ const _GTER = "GetTableEncryptionRequest";
296
+ const _GTERe = "GetTableEncryptionResponse";
297
+ const _GTMC = "GetTableMaintenanceConfiguration";
298
+ const _GTMCR = "GetTableMaintenanceConfigurationRequest";
299
+ const _GTMCRe = "GetTableMaintenanceConfigurationResponse";
300
+ const _GTMJS = "GetTableMaintenanceJobStatus";
301
+ const _GTMJSR = "GetTableMaintenanceJobStatusRequest";
302
+ const _GTMJSRe = "GetTableMaintenanceJobStatusResponse";
303
+ const _GTML = "GetTableMetadataLocation";
304
+ const _GTMLR = "GetTableMetadataLocationRequest";
305
+ const _GTMLRe = "GetTableMetadataLocationResponse";
306
+ const _GTP = "GetTablePolicy";
307
+ const _GTPR = "GetTablePolicyRequest";
308
+ const _GTPRe = "GetTablePolicyResponse";
309
+ const _GTR = "GetTableRequest";
310
+ const _GTREC = "GetTableRecordExpirationConfiguration";
311
+ const _GTRECR = "GetTableRecordExpirationConfigurationRequest";
312
+ const _GTRECRe = "GetTableRecordExpirationConfigurationResponse";
313
+ const _GTREJS = "GetTableRecordExpirationJobStatus";
314
+ const _GTREJSR = "GetTableRecordExpirationJobStatusRequest";
315
+ const _GTREJSRe = "GetTableRecordExpirationJobStatusResponse";
316
+ const _GTRR = "GetTableReplicationRequest";
317
+ const _GTRRe = "GetTableReplicationResponse";
318
+ const _GTRS = "GetTableReplicationStatus";
319
+ const _GTRSR = "GetTableReplicationStatusRequest";
320
+ const _GTRSRe = "GetTableReplicationStatusResponse";
321
+ const _GTRe = "GetTableResponse";
322
+ const _GTRet = "GetTableReplication";
323
+ const _GTSC = "GetTableStorageClass";
324
+ const _GTSCR = "GetTableStorageClassRequest";
325
+ const _GTSCRe = "GetTableStorageClassResponse";
326
+ const _ICS = "IcebergCompactionSettings";
327
+ const _IM = "IcebergMetadata";
328
+ const _IPF = "IcebergPartitionField";
329
+ const _IPFL = "IcebergPartitionFieldList";
330
+ const _IPS = "IcebergPartitionSpec";
331
+ const _IS = "IcebergSchema";
332
+ const _ISEE = "InternalServerErrorException";
333
+ const _ISF = "IcebergSortField";
334
+ const _ISFL = "IcebergSortFieldList";
335
+ const _ISMS = "IcebergSnapshotManagementSettings";
336
+ const _ISO = "IcebergSortOrder";
337
+ const _ISV = "IcebergSchemaV2";
338
+ const _IUFRS = "IcebergUnreferencedFileRemovalSettings";
339
+ const _LN = "ListNamespaces";
340
+ const _LNR = "ListNamespacesRequest";
341
+ const _LNRi = "ListNamespacesResponse";
342
+ const _LSRU = "LastSuccessfulReplicatedUpdate";
343
+ const _LT = "ListTables";
344
+ const _LTB = "ListTableBuckets";
345
+ const _LTBR = "ListTableBucketsRequest";
346
+ const _LTBRi = "ListTableBucketsResponse";
347
+ const _LTFR = "ListTagsForResource";
348
+ const _LTFRR = "ListTagsForResourceRequest";
349
+ const _LTFRRi = "ListTagsForResourceResponse";
350
+ const _LTR = "ListTablesRequest";
351
+ const _LTRi = "ListTablesResponse";
352
+ const _MNAE = "MethodNotAllowedException";
353
+ const _MTI = "ManagedTableInformation";
354
+ const _NFE = "NotFoundException";
355
+ const _NS = "NamespaceSummary";
356
+ const _NSL = "NamespaceSummaryList";
357
+ const _PTBE = "PutTableBucketEncryption";
358
+ const _PTBER = "PutTableBucketEncryptionRequest";
359
+ const _PTBMC = "PutTableBucketMaintenanceConfiguration";
360
+ const _PTBMCR = "PutTableBucketMaintenanceConfigurationRequest";
361
+ const _PTBMCRu = "PutTableBucketMetricsConfigurationRequest";
362
+ const _PTBMCu = "PutTableBucketMetricsConfiguration";
363
+ const _PTBP = "PutTableBucketPolicy";
364
+ const _PTBPR = "PutTableBucketPolicyRequest";
365
+ const _PTBR = "PutTableBucketReplication";
366
+ const _PTBRR = "PutTableBucketReplicationRequest";
367
+ const _PTBRRu = "PutTableBucketReplicationResponse";
368
+ const _PTBSC = "PutTableBucketStorageClass";
369
+ const _PTBSCR = "PutTableBucketStorageClassRequest";
370
+ const _PTMC = "PutTableMaintenanceConfiguration";
371
+ const _PTMCR = "PutTableMaintenanceConfigurationRequest";
372
+ const _PTP = "PutTablePolicy";
373
+ const _PTPR = "PutTablePolicyRequest";
374
+ const _PTR = "PutTableReplication";
375
+ const _PTREC = "PutTableRecordExpirationConfiguration";
376
+ const _PTRECR = "PutTableRecordExpirationConfigurationRequest";
377
+ const _PTRR = "PutTableReplicationRequest";
378
+ const _PTRRu = "PutTableReplicationResponse";
379
+ const _RD = "ReplicationDestination";
380
+ const _RDS = "ReplicationDestinationStatuses";
381
+ const _RDSM = "ReplicationDestinationStatusModel";
382
+ const _RDe = "ReplicationDestinations";
383
+ const _RI = "ReplicationInformation";
384
+ const _RT = "RenameTable";
385
+ const _RTR = "RenameTableRequest";
386
+ const _SCC = "StorageClassConfiguration";
387
+ const _SF = "SchemaField";
388
+ const _SFL = "SchemaFieldList";
389
+ const _SVF = "SchemaV2Field";
390
+ const _SVFL = "SchemaV2FieldList";
391
+ const _TBMC = "TableBucketMaintenanceConfiguration";
392
+ const _TBMCV = "TableBucketMaintenanceConfigurationValue";
393
+ const _TBMS = "TableBucketMaintenanceSettings";
394
+ const _TBRC = "TableBucketReplicationConfiguration";
395
+ const _TBRR = "TableBucketReplicationRule";
396
+ const _TBRRa = "TableBucketReplicationRules";
397
+ const _TBS = "TableBucketSummary";
398
+ const _TBSL = "TableBucketSummaryList";
399
+ const _TM = "TableMetadata";
400
+ const _TMC = "TableMaintenanceConfiguration";
401
+ const _TMCV = "TableMaintenanceConfigurationValue";
402
+ const _TMJS = "TableMaintenanceJobStatus";
403
+ const _TMJSV = "TableMaintenanceJobStatusValue";
404
+ const _TMRE = "TooManyRequestsException";
405
+ const _TMS = "TableMaintenanceSettings";
406
+ const _TR = "TagResource";
407
+ const _TRC = "TableReplicationConfiguration";
408
+ const _TRECV = "TableRecordExpirationConfigurationValue";
409
+ const _TREJM = "TableRecordExpirationJobMetrics";
410
+ const _TRES = "TableRecordExpirationSettings";
411
+ const _TRR = "TableReplicationRule";
412
+ const _TRRa = "TagResourceRequest";
413
+ const _TRRab = "TableReplicationRules";
414
+ const _TRRag = "TagResourceResponse";
415
+ const _TS = "TableSummary";
416
+ const _TSL = "TableSummaryList";
417
+ const _UR = "UntagResource";
418
+ const _URR = "UntagResourceRequest";
419
+ const _URRn = "UntagResourceResponse";
420
+ const _UTML = "UpdateTableMetadataLocation";
421
+ const _UTMLR = "UpdateTableMetadataLocationRequest";
422
+ const _UTMLRp = "UpdateTableMetadataLocationResponse";
423
+ const _a = "arn";
424
+ const _c = "client";
425
+ const _cA = "createdAt";
426
+ const _cB = "createdBy";
427
+ const _cT = "continuationToken";
428
+ const _co = "configuration";
429
+ const _d = "destinations";
430
+ const _dDF = "deletedDataFiles";
431
+ const _dR = "deletedRecords";
432
+ const _dTA = "destinationTableArn";
433
+ const _dTBA = "destinationTableBucketArn";
434
+ const _dTBARN = "destinationTableBucketARN";
435
+ const _da = "days";
436
+ const _di = "direction";
437
+ const _do = "doc";
438
+ const _e = "error";
439
+ const _eC = "encryptionConfiguration";
440
+ const _f = "format";
441
+ const _fI = "fieldId";
442
+ const _fM = "failureMessage";
443
+ const _fi = "field-id";
444
+ const _fie = "fields";
445
+ const _h = "http";
446
+ const _hE = "httpError";
447
+ const _hQ = "httpQuery";
448
+ const _i = "id";
449
+ const _iC = "icebergCompaction";
450
+ const _iFI = "identifierFieldIds";
451
+ const _iSM = "icebergSnapshotManagement";
452
+ const _iUFR = "icebergUnreferencedFileRemoval";
453
+ const _ic = "iceberg";
454
+ const _ifi = "identifier-field-ids";
455
+ const _jN = "jsonName";
456
+ const _kKA = "kmsKeyArn";
457
+ const _lRT = "lastRunTimestamp";
458
+ const _lSRU = "lastSuccessfulReplicatedUpdate";
459
+ const _m = "message";
460
+ const _mA = "modifiedAt";
461
+ const _mB = "modifiedBy";
462
+ const _mBS = "managedByService";
463
+ const _mBa = "maxBuckets";
464
+ const _mL = "metadataLocation";
465
+ const _mN = "maxNamespaces";
466
+ const _mSAH = "maxSnapshotAgeHours";
467
+ const _mSTK = "minSnapshotsToKeep";
468
+ const _mT = "maxTables";
469
+ const _mTI = "managedTableInformation";
470
+ const _me = "metadata";
471
+ const _met = "metrics";
472
+ const _n = "namespace";
473
+ const _nCD = "nonCurrentDays";
474
+ const _nI = "namespaceId";
475
+ const _nN = "newName";
476
+ const _nNN = "newNamespaceName";
477
+ const _nO = "nullOrder";
478
+ const _na = "name";
479
+ const _nam = "namespaces";
480
+ const _no = "null-order";
481
+ const _oAI = "ownerAccountId";
482
+ const _oI = "orderId";
483
+ const _oi = "order-id";
484
+ const _p = "properties";
485
+ const _pS = "partitionSpec";
486
+ const _pr = "prefix";
487
+ const _r = "required";
488
+ const _rA = "resourceArn";
489
+ const _rFS = "removedFilesSize";
490
+ const _rI = "replicationInformation";
491
+ const _rP = "resourcePolicy";
492
+ const _rS = "replicationStatus";
493
+ const _ro = "role";
494
+ const _ru = "rules";
495
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.s3tables";
496
+ const _sA = "sseAlgorithm";
497
+ const _sC = "storageClass";
498
+ const _sCC = "storageClassConfiguration";
499
+ const _sI = "sourceId";
500
+ const _sIc = "schemaId";
501
+ const _sIp = "specId";
502
+ const _sTA = "sourceTableArn";
503
+ const _sTARN = "sourceTableARN";
504
+ const _sV = "schemaV2";
505
+ const _sc = "schema";
506
+ const _se = "server";
507
+ const _set = "settings";
508
+ const _si = "source-id";
509
+ const _si_ = "spec-id";
510
+ const _si__ = "schema-id";
511
+ const _st = "status";
512
+ const _str = "strategy";
513
+ const _t = "tags";
514
+ const _tA = "tableArn";
515
+ const _tARN = "tableARN";
516
+ const _tB = "tableBuckets";
517
+ const _tBARN = "tableBucketARN";
518
+ const _tBI = "tableBucketId";
519
+ const _tFSMB = "targetFileSizeMB";
520
+ const _tK = "tagKeys";
521
+ const _ta = "tables";
522
+ const _ti = "timestamp";
523
+ const _tr = "transform";
524
+ const _ty = "type";
525
+ const _uD = "unreferencedDays";
526
+ const _v = "value";
527
+ const _vT = "versionToken";
528
+ const _wL = "warehouseLocation";
529
+ const _wO = "writeOrder";
530
+ const n0 = "com.amazonaws.s3tables";
531
+ const _s_registry = TypeRegistry.for(_s);
532
+ var S3TablesServiceException$ = [-3, _s, "S3TablesServiceException", 0, [], []];
533
+ _s_registry.registerError(S3TablesServiceException$, S3TablesServiceException);
534
+ const n0_registry = TypeRegistry.for(n0);
535
+ var AccessDeniedException$ = [-3, n0, _ADE,
536
+ { [_e]: _c, [_hE]: 403 },
537
+ [_m],
538
+ [0]
539
+ ];
540
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
541
+ var BadRequestException$ = [-3, n0, _BRE,
542
+ { [_e]: _c, [_hE]: 400 },
543
+ [_m],
544
+ [0]
545
+ ];
546
+ n0_registry.registerError(BadRequestException$, BadRequestException);
547
+ var ConflictException$ = [-3, n0, _CE,
548
+ { [_e]: _c, [_hE]: 409 },
549
+ [_m],
550
+ [0]
551
+ ];
552
+ n0_registry.registerError(ConflictException$, ConflictException);
553
+ var ForbiddenException$ = [-3, n0, _FE,
554
+ { [_e]: _c, [_hE]: 403 },
555
+ [_m],
556
+ [0]
557
+ ];
558
+ n0_registry.registerError(ForbiddenException$, ForbiddenException);
559
+ var InternalServerErrorException$ = [-3, n0, _ISEE,
560
+ { [_e]: _se, [_hE]: 500 },
561
+ [_m],
562
+ [0]
563
+ ];
564
+ n0_registry.registerError(InternalServerErrorException$, InternalServerErrorException);
565
+ var MethodNotAllowedException$ = [-3, n0, _MNAE,
566
+ { [_e]: _c, [_hE]: 405 },
567
+ [_m],
568
+ [0]
569
+ ];
570
+ n0_registry.registerError(MethodNotAllowedException$, MethodNotAllowedException);
571
+ var NotFoundException$ = [-3, n0, _NFE,
572
+ { [_e]: _c, [_hE]: 404 },
573
+ [_m],
574
+ [0]
575
+ ];
576
+ n0_registry.registerError(NotFoundException$, NotFoundException);
577
+ var TooManyRequestsException$ = [-3, n0, _TMRE,
578
+ { [_e]: _c, [_hE]: 429 },
579
+ [_m],
580
+ [0]
581
+ ];
582
+ n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
583
+ const errorTypeRegistries = [
584
+ _s_registry,
585
+ n0_registry,
586
+ ];
587
+ var CreateNamespaceRequest$ = [3, n0, _CNR,
588
+ 0,
589
+ [_tBARN, _n],
590
+ [[0, 1], 64 | 0], 2
591
+ ];
592
+ var CreateNamespaceResponse$ = [3, n0, _CNRr,
593
+ 0,
594
+ [_tBARN, _n],
595
+ [0, 64 | 0], 2
596
+ ];
597
+ var CreateTableBucketRequest$ = [3, n0, _CTBR,
598
+ 0,
599
+ [_na, _eC, _sCC, _t],
600
+ [0, () => EncryptionConfiguration$, () => StorageClassConfiguration$, 128 | 0], 1
601
+ ];
602
+ var CreateTableBucketResponse$ = [3, n0, _CTBRr,
603
+ 0,
604
+ [_a],
605
+ [0], 1
606
+ ];
607
+ var CreateTableRequest$ = [3, n0, _CTR,
608
+ 0,
609
+ [_tBARN, _n, _na, _f, _me, _eC, _sCC, _t],
610
+ [[0, 1], [0, 1], 0, 0, [() => TableMetadata$, 0], () => EncryptionConfiguration$, () => StorageClassConfiguration$, 128 | 0], 4
611
+ ];
612
+ var CreateTableResponse$ = [3, n0, _CTRr,
613
+ 0,
614
+ [_tARN, _vT],
615
+ [0, 0], 2
616
+ ];
617
+ var DeleteNamespaceRequest$ = [3, n0, _DNR,
618
+ 0,
619
+ [_tBARN, _n],
620
+ [[0, 1], [0, 1]], 2
621
+ ];
622
+ var DeleteTableBucketEncryptionRequest$ = [3, n0, _DTBER,
623
+ 0,
624
+ [_tBARN],
625
+ [[0, 1]], 1
626
+ ];
627
+ var DeleteTableBucketMetricsConfigurationRequest$ = [3, n0, _DTBMCR,
628
+ 0,
629
+ [_tBARN],
630
+ [[0, 1]], 1
631
+ ];
632
+ var DeleteTableBucketPolicyRequest$ = [3, n0, _DTBPR,
633
+ 0,
634
+ [_tBARN],
635
+ [[0, 1]], 1
636
+ ];
637
+ var DeleteTableBucketReplicationRequest$ = [3, n0, _DTBRR,
638
+ 0,
639
+ [_tBARN, _vT],
640
+ [[0, { [_hQ]: _tBARN }], [0, { [_hQ]: _vT }]], 1
641
+ ];
642
+ var DeleteTableBucketRequest$ = [3, n0, _DTBR,
643
+ 0,
644
+ [_tBARN],
645
+ [[0, 1]], 1
646
+ ];
647
+ var DeleteTablePolicyRequest$ = [3, n0, _DTPR,
648
+ 0,
649
+ [_tBARN, _n, _na],
650
+ [[0, 1], [0, 1], [0, 1]], 3
651
+ ];
652
+ var DeleteTableReplicationRequest$ = [3, n0, _DTRR,
653
+ 0,
654
+ [_tA, _vT],
655
+ [[0, { [_hQ]: _tA }], [0, { [_hQ]: _vT }]], 2
656
+ ];
657
+ var DeleteTableRequest$ = [3, n0, _DTR,
658
+ 0,
659
+ [_tBARN, _n, _na, _vT],
660
+ [[0, 1], [0, 1], [0, 1], [0, { [_hQ]: _vT }]], 3
661
+ ];
662
+ var EncryptionConfiguration$ = [3, n0, _EC,
663
+ 0,
664
+ [_sA, _kKA],
665
+ [0, 0], 1
666
+ ];
667
+ var GetNamespaceRequest$ = [3, n0, _GNR,
668
+ 0,
669
+ [_tBARN, _n],
670
+ [[0, 1], [0, 1]], 2
671
+ ];
672
+ var GetNamespaceResponse$ = [3, n0, _GNRe,
673
+ 0,
674
+ [_n, _cA, _cB, _oAI, _nI, _tBI],
675
+ [64 | 0, 5, 0, 0, 0, 0], 4
676
+ ];
677
+ var GetTableBucketEncryptionRequest$ = [3, n0, _GTBER,
678
+ 0,
679
+ [_tBARN],
680
+ [[0, 1]], 1
681
+ ];
682
+ var GetTableBucketEncryptionResponse$ = [3, n0, _GTBERe,
683
+ 0,
684
+ [_eC],
685
+ [() => EncryptionConfiguration$], 1
686
+ ];
687
+ var GetTableBucketMaintenanceConfigurationRequest$ = [3, n0, _GTBMCR,
688
+ 0,
689
+ [_tBARN],
690
+ [[0, 1]], 1
691
+ ];
692
+ var GetTableBucketMaintenanceConfigurationResponse$ = [3, n0, _GTBMCRe,
693
+ 0,
694
+ [_tBARN, _co],
695
+ [0, () => TableBucketMaintenanceConfiguration], 2
696
+ ];
697
+ var GetTableBucketMetricsConfigurationRequest$ = [3, n0, _GTBMCRet,
698
+ 0,
699
+ [_tBARN],
700
+ [[0, 1]], 1
701
+ ];
702
+ var GetTableBucketMetricsConfigurationResponse$ = [3, n0, _GTBMCReta,
703
+ 0,
704
+ [_tBARN, _i],
705
+ [0, 0], 1
706
+ ];
707
+ var GetTableBucketPolicyRequest$ = [3, n0, _GTBPR,
708
+ 0,
709
+ [_tBARN],
710
+ [[0, 1]], 1
711
+ ];
712
+ var GetTableBucketPolicyResponse$ = [3, n0, _GTBPRe,
713
+ 0,
714
+ [_rP],
715
+ [0], 1
716
+ ];
717
+ var GetTableBucketReplicationRequest$ = [3, n0, _GTBRR,
718
+ 0,
719
+ [_tBARN],
720
+ [[0, { [_hQ]: _tBARN }]], 1
721
+ ];
722
+ var GetTableBucketReplicationResponse$ = [3, n0, _GTBRRe,
723
+ 0,
724
+ [_vT, _co],
725
+ [0, () => TableBucketReplicationConfiguration$], 2
726
+ ];
727
+ var GetTableBucketRequest$ = [3, n0, _GTBR,
728
+ 0,
729
+ [_tBARN],
730
+ [[0, 1]], 1
731
+ ];
732
+ var GetTableBucketResponse$ = [3, n0, _GTBRe,
733
+ 0,
734
+ [_a, _na, _oAI, _cA, _tBI, _ty],
735
+ [0, 0, 0, 5, 0, 0], 4
736
+ ];
737
+ var GetTableBucketStorageClassRequest$ = [3, n0, _GTBSCR,
738
+ 0,
739
+ [_tBARN],
740
+ [[0, 1]], 1
741
+ ];
742
+ var GetTableBucketStorageClassResponse$ = [3, n0, _GTBSCRe,
743
+ 0,
744
+ [_sCC],
745
+ [() => StorageClassConfiguration$], 1
746
+ ];
747
+ var GetTableEncryptionRequest$ = [3, n0, _GTER,
748
+ 0,
749
+ [_tBARN, _n, _na],
750
+ [[0, 1], [0, 1], [0, 1]], 3
751
+ ];
752
+ var GetTableEncryptionResponse$ = [3, n0, _GTERe,
753
+ 0,
754
+ [_eC],
755
+ [() => EncryptionConfiguration$], 1
756
+ ];
757
+ var GetTableMaintenanceConfigurationRequest$ = [3, n0, _GTMCR,
758
+ 0,
759
+ [_tBARN, _n, _na],
760
+ [[0, 1], [0, 1], [0, 1]], 3
761
+ ];
762
+ var GetTableMaintenanceConfigurationResponse$ = [3, n0, _GTMCRe,
763
+ 0,
764
+ [_tARN, _co],
765
+ [0, () => TableMaintenanceConfiguration], 2
766
+ ];
767
+ var GetTableMaintenanceJobStatusRequest$ = [3, n0, _GTMJSR,
768
+ 0,
769
+ [_tBARN, _n, _na],
770
+ [[0, 1], [0, 1], [0, 1]], 3
771
+ ];
772
+ var GetTableMaintenanceJobStatusResponse$ = [3, n0, _GTMJSRe,
773
+ 0,
774
+ [_tARN, _st],
775
+ [0, () => TableMaintenanceJobStatus], 2
776
+ ];
777
+ var GetTableMetadataLocationRequest$ = [3, n0, _GTMLR,
778
+ 0,
779
+ [_tBARN, _n, _na],
780
+ [[0, 1], [0, 1], [0, 1]], 3
781
+ ];
782
+ var GetTableMetadataLocationResponse$ = [3, n0, _GTMLRe,
783
+ 0,
784
+ [_vT, _wL, _mL],
785
+ [0, 0, 0], 2
786
+ ];
787
+ var GetTablePolicyRequest$ = [3, n0, _GTPR,
788
+ 0,
789
+ [_tBARN, _n, _na],
790
+ [[0, 1], [0, 1], [0, 1]], 3
791
+ ];
792
+ var GetTablePolicyResponse$ = [3, n0, _GTPRe,
793
+ 0,
794
+ [_rP],
795
+ [0], 1
796
+ ];
797
+ var GetTableRecordExpirationConfigurationRequest$ = [3, n0, _GTRECR,
798
+ 0,
799
+ [_tA],
800
+ [[0, { [_hQ]: _tA }]], 1
801
+ ];
802
+ var GetTableRecordExpirationConfigurationResponse$ = [3, n0, _GTRECRe,
803
+ 0,
804
+ [_co],
805
+ [() => TableRecordExpirationConfigurationValue$], 1
806
+ ];
807
+ var GetTableRecordExpirationJobStatusRequest$ = [3, n0, _GTREJSR,
808
+ 0,
809
+ [_tA],
810
+ [[0, { [_hQ]: _tA }]], 1
811
+ ];
812
+ var GetTableRecordExpirationJobStatusResponse$ = [3, n0, _GTREJSRe,
813
+ 0,
814
+ [_st, _lRT, _fM, _met],
815
+ [0, 5, 0, () => TableRecordExpirationJobMetrics$], 1
816
+ ];
817
+ var GetTableReplicationRequest$ = [3, n0, _GTRR,
818
+ 0,
819
+ [_tA],
820
+ [[0, { [_hQ]: _tA }]], 1
821
+ ];
822
+ var GetTableReplicationResponse$ = [3, n0, _GTRRe,
823
+ 0,
824
+ [_vT, _co],
825
+ [0, () => TableReplicationConfiguration$], 2
826
+ ];
827
+ var GetTableReplicationStatusRequest$ = [3, n0, _GTRSR,
828
+ 0,
829
+ [_tA],
830
+ [[0, { [_hQ]: _tA }]], 1
831
+ ];
832
+ var GetTableReplicationStatusResponse$ = [3, n0, _GTRSRe,
833
+ 0,
834
+ [_sTA, _d],
835
+ [0, () => ReplicationDestinationStatuses], 2
836
+ ];
837
+ var GetTableRequest$ = [3, n0, _GTR,
838
+ 0,
839
+ [_tBARN, _n, _na, _tA],
840
+ [[0, { [_hQ]: _tBARN }], [0, { [_hQ]: _n }], [0, { [_hQ]: _na }], [0, { [_hQ]: _tA }]]
841
+ ];
842
+ var GetTableResponse$ = [3, n0, _GTRe,
843
+ 0,
844
+ [_na, _ty, _tARN, _n, _vT, _wL, _cA, _cB, _mA, _mB, _oAI, _f, _nI, _mL, _mBS, _tBI, _mTI],
845
+ [0, 0, 0, 64 | 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, () => ManagedTableInformation$], 12
846
+ ];
847
+ var GetTableStorageClassRequest$ = [3, n0, _GTSCR,
848
+ 0,
849
+ [_tBARN, _n, _na],
850
+ [[0, 1], [0, 1], [0, 1]], 3
851
+ ];
852
+ var GetTableStorageClassResponse$ = [3, n0, _GTSCRe,
853
+ 0,
854
+ [_sCC],
855
+ [() => StorageClassConfiguration$], 1
856
+ ];
857
+ var IcebergCompactionSettings$ = [3, n0, _ICS,
858
+ 0,
859
+ [_tFSMB, _str],
860
+ [1, 0]
861
+ ];
862
+ var IcebergMetadata$ = [3, n0, _IM,
863
+ 0,
864
+ [_sc, _sV, _pS, _wO, _p],
865
+ [() => IcebergSchema$, [() => IcebergSchemaV2$, 0], [() => IcebergPartitionSpec$, 0], [() => IcebergSortOrder$, 0], 128 | 0]
866
+ ];
867
+ var IcebergPartitionField$ = [3, n0, _IPF,
868
+ 0,
869
+ [_sI, _tr, _na, _fI],
870
+ [[1, { [_jN]: _si }], 0, 0, [1, { [_jN]: _fi }]], 3
871
+ ];
872
+ var IcebergPartitionSpec$ = [3, n0, _IPS,
873
+ 0,
874
+ [_fie, _sIp],
875
+ [[() => IcebergPartitionFieldList, 0], [1, { [_jN]: _si_ }]], 1
876
+ ];
877
+ var IcebergSchema$ = [3, n0, _IS,
878
+ 0,
879
+ [_fie],
880
+ [() => SchemaFieldList], 1
881
+ ];
882
+ var IcebergSchemaV2$ = [3, n0, _ISV,
883
+ 0,
884
+ [_ty, _fie, _sIc, _iFI],
885
+ [0, () => SchemaV2FieldList, [1, { [_jN]: _si__ }], [64 | 1, { [_jN]: _ifi }]], 2
886
+ ];
887
+ var IcebergSnapshotManagementSettings$ = [3, n0, _ISMS,
888
+ 0,
889
+ [_mSTK, _mSAH],
890
+ [1, 1]
891
+ ];
892
+ var IcebergSortField$ = [3, n0, _ISF,
893
+ 0,
894
+ [_sI, _tr, _di, _nO],
895
+ [[1, { [_jN]: _si }], 0, 0, [0, { [_jN]: _no }]], 4
896
+ ];
897
+ var IcebergSortOrder$ = [3, n0, _ISO,
898
+ 0,
899
+ [_oI, _fie],
900
+ [[1, { [_jN]: _oi }], [() => IcebergSortFieldList, 0]], 2
901
+ ];
902
+ var IcebergUnreferencedFileRemovalSettings$ = [3, n0, _IUFRS,
903
+ 0,
904
+ [_uD, _nCD],
905
+ [1, 1]
906
+ ];
907
+ var LastSuccessfulReplicatedUpdate$ = [3, n0, _LSRU,
908
+ 0,
909
+ [_mL, _ti],
910
+ [0, 5], 2
911
+ ];
912
+ var ListNamespacesRequest$ = [3, n0, _LNR,
913
+ 0,
914
+ [_tBARN, _pr, _cT, _mN],
915
+ [[0, 1], [0, { [_hQ]: _pr }], [0, { [_hQ]: _cT }], [1, { [_hQ]: _mN }]], 1
916
+ ];
917
+ var ListNamespacesResponse$ = [3, n0, _LNRi,
918
+ 0,
919
+ [_nam, _cT],
920
+ [() => NamespaceSummaryList, 0], 1
921
+ ];
922
+ var ListTableBucketsRequest$ = [3, n0, _LTBR,
923
+ 0,
924
+ [_pr, _cT, _mBa, _ty],
925
+ [[0, { [_hQ]: _pr }], [0, { [_hQ]: _cT }], [1, { [_hQ]: _mBa }], [0, { [_hQ]: _ty }]]
926
+ ];
927
+ var ListTableBucketsResponse$ = [3, n0, _LTBRi,
928
+ 0,
929
+ [_tB, _cT],
930
+ [() => TableBucketSummaryList, 0], 1
931
+ ];
932
+ var ListTablesRequest$ = [3, n0, _LTR,
933
+ 0,
934
+ [_tBARN, _n, _pr, _cT, _mT],
935
+ [[0, 1], [0, { [_hQ]: _n }], [0, { [_hQ]: _pr }], [0, { [_hQ]: _cT }], [1, { [_hQ]: _mT }]], 1
936
+ ];
937
+ var ListTablesResponse$ = [3, n0, _LTRi,
938
+ 0,
939
+ [_ta, _cT],
940
+ [() => TableSummaryList, 0], 1
941
+ ];
942
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
943
+ 0,
944
+ [_rA],
945
+ [[0, 1]], 1
946
+ ];
947
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
948
+ 0,
949
+ [_t],
950
+ [128 | 0]
951
+ ];
952
+ var ManagedTableInformation$ = [3, n0, _MTI,
953
+ 0,
954
+ [_rI],
955
+ [() => ReplicationInformation$]
956
+ ];
957
+ var NamespaceSummary$ = [3, n0, _NS,
958
+ 0,
959
+ [_n, _cA, _cB, _oAI, _nI, _tBI],
960
+ [64 | 0, 5, 0, 0, 0, 0], 4
961
+ ];
962
+ var PutTableBucketEncryptionRequest$ = [3, n0, _PTBER,
963
+ 0,
964
+ [_tBARN, _eC],
965
+ [[0, 1], () => EncryptionConfiguration$], 2
966
+ ];
967
+ var PutTableBucketMaintenanceConfigurationRequest$ = [3, n0, _PTBMCR,
968
+ 0,
969
+ [_tBARN, _ty, _v],
970
+ [[0, 1], [0, 1], () => TableBucketMaintenanceConfigurationValue$], 3
971
+ ];
972
+ var PutTableBucketMetricsConfigurationRequest$ = [3, n0, _PTBMCRu,
973
+ 0,
974
+ [_tBARN],
975
+ [[0, 1]], 1
976
+ ];
977
+ var PutTableBucketPolicyRequest$ = [3, n0, _PTBPR,
978
+ 0,
979
+ [_tBARN, _rP],
980
+ [[0, 1], 0], 2
981
+ ];
982
+ var PutTableBucketReplicationRequest$ = [3, n0, _PTBRR,
983
+ 0,
984
+ [_tBARN, _co, _vT],
985
+ [[0, { [_hQ]: _tBARN }], () => TableBucketReplicationConfiguration$, [0, { [_hQ]: _vT }]], 2
986
+ ];
987
+ var PutTableBucketReplicationResponse$ = [3, n0, _PTBRRu,
988
+ 0,
989
+ [_vT, _st],
990
+ [0, 0], 2
991
+ ];
992
+ var PutTableBucketStorageClassRequest$ = [3, n0, _PTBSCR,
993
+ 0,
994
+ [_tBARN, _sCC],
995
+ [[0, 1], () => StorageClassConfiguration$], 2
996
+ ];
997
+ var PutTableMaintenanceConfigurationRequest$ = [3, n0, _PTMCR,
998
+ 0,
999
+ [_tBARN, _n, _na, _ty, _v],
1000
+ [[0, 1], [0, 1], [0, 1], [0, 1], () => TableMaintenanceConfigurationValue$], 5
1001
+ ];
1002
+ var PutTablePolicyRequest$ = [3, n0, _PTPR,
1003
+ 0,
1004
+ [_tBARN, _n, _na, _rP],
1005
+ [[0, 1], [0, 1], [0, 1], 0], 4
1006
+ ];
1007
+ var PutTableRecordExpirationConfigurationRequest$ = [3, n0, _PTRECR,
1008
+ 0,
1009
+ [_tA, _v],
1010
+ [[0, { [_hQ]: _tA }], () => TableRecordExpirationConfigurationValue$], 2
1011
+ ];
1012
+ var PutTableReplicationRequest$ = [3, n0, _PTRR,
1013
+ 0,
1014
+ [_tA, _co, _vT],
1015
+ [[0, { [_hQ]: _tA }], () => TableReplicationConfiguration$, [0, { [_hQ]: _vT }]], 2
1016
+ ];
1017
+ var PutTableReplicationResponse$ = [3, n0, _PTRRu,
1018
+ 0,
1019
+ [_vT, _st],
1020
+ [0, 0], 2
1021
+ ];
1022
+ var RenameTableRequest$ = [3, n0, _RTR,
1023
+ 0,
1024
+ [_tBARN, _n, _na, _nNN, _nN, _vT],
1025
+ [[0, 1], [0, 1], [0, 1], 0, 0, 0], 3
1026
+ ];
1027
+ var ReplicationDestination$ = [3, n0, _RD,
1028
+ 0,
1029
+ [_dTBARN],
1030
+ [0], 1
1031
+ ];
1032
+ var ReplicationDestinationStatusModel$ = [3, n0, _RDSM,
1033
+ 0,
1034
+ [_rS, _dTBA, _dTA, _lSRU, _fM],
1035
+ [0, 0, 0, () => LastSuccessfulReplicatedUpdate$, 0], 2
1036
+ ];
1037
+ var ReplicationInformation$ = [3, n0, _RI,
1038
+ 0,
1039
+ [_sTARN],
1040
+ [0], 1
1041
+ ];
1042
+ var SchemaField$ = [3, n0, _SF,
1043
+ 0,
1044
+ [_na, _ty, _i, _r],
1045
+ [0, 0, 1, 2], 2
1046
+ ];
1047
+ var SchemaV2Field$ = [3, n0, _SVF,
1048
+ 0,
1049
+ [_i, _na, _ty, _r, _do],
1050
+ [1, 0, 15, 2, 0], 4
1051
+ ];
1052
+ var StorageClassConfiguration$ = [3, n0, _SCC,
1053
+ 0,
1054
+ [_sC],
1055
+ [0], 1
1056
+ ];
1057
+ var TableBucketMaintenanceConfigurationValue$ = [3, n0, _TBMCV,
1058
+ 0,
1059
+ [_st, _set],
1060
+ [0, () => TableBucketMaintenanceSettings$]
1061
+ ];
1062
+ var TableBucketReplicationConfiguration$ = [3, n0, _TBRC,
1063
+ 0,
1064
+ [_ro, _ru],
1065
+ [0, () => TableBucketReplicationRules], 2
1066
+ ];
1067
+ var TableBucketReplicationRule$ = [3, n0, _TBRR,
1068
+ 0,
1069
+ [_d],
1070
+ [() => ReplicationDestinations], 1
1071
+ ];
1072
+ var TableBucketSummary$ = [3, n0, _TBS,
1073
+ 0,
1074
+ [_a, _na, _oAI, _cA, _tBI, _ty],
1075
+ [0, 0, 0, 5, 0, 0], 4
1076
+ ];
1077
+ var TableMaintenanceConfigurationValue$ = [3, n0, _TMCV,
1078
+ 0,
1079
+ [_st, _set],
1080
+ [0, () => TableMaintenanceSettings$]
1081
+ ];
1082
+ var TableMaintenanceJobStatusValue$ = [3, n0, _TMJSV,
1083
+ 0,
1084
+ [_st, _lRT, _fM],
1085
+ [0, 5, 0], 1
1086
+ ];
1087
+ var TableRecordExpirationConfigurationValue$ = [3, n0, _TRECV,
1088
+ 0,
1089
+ [_st, _set],
1090
+ [0, () => TableRecordExpirationSettings$]
1091
+ ];
1092
+ var TableRecordExpirationJobMetrics$ = [3, n0, _TREJM,
1093
+ 0,
1094
+ [_dDF, _dR, _rFS],
1095
+ [1, 1, 1]
1096
+ ];
1097
+ var TableRecordExpirationSettings$ = [3, n0, _TRES,
1098
+ 0,
1099
+ [_da],
1100
+ [1]
1101
+ ];
1102
+ var TableReplicationConfiguration$ = [3, n0, _TRC,
1103
+ 0,
1104
+ [_ro, _ru],
1105
+ [0, () => TableReplicationRules], 2
1106
+ ];
1107
+ var TableReplicationRule$ = [3, n0, _TRR,
1108
+ 0,
1109
+ [_d],
1110
+ [() => ReplicationDestinations], 1
1111
+ ];
1112
+ var TableSummary$ = [3, n0, _TS,
1113
+ 0,
1114
+ [_n, _na, _ty, _tARN, _cA, _mA, _mBS, _nI, _tBI],
1115
+ [64 | 0, 0, 0, 0, 5, 5, 0, 0, 0], 6
1116
+ ];
1117
+ var TagResourceRequest$ = [3, n0, _TRRa,
1118
+ 0,
1119
+ [_rA, _t],
1120
+ [[0, 1], 128 | 0], 2
1121
+ ];
1122
+ var TagResourceResponse$ = [3, n0, _TRRag,
1123
+ 0,
1124
+ [],
1125
+ []
1126
+ ];
1127
+ var UntagResourceRequest$ = [3, n0, _URR,
1128
+ 0,
1129
+ [_rA, _tK],
1130
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1131
+ ];
1132
+ var UntagResourceResponse$ = [3, n0, _URRn,
1133
+ 0,
1134
+ [],
1135
+ []
1136
+ ];
1137
+ var UpdateTableMetadataLocationRequest$ = [3, n0, _UTMLR,
1138
+ 0,
1139
+ [_tBARN, _n, _na, _vT, _mL],
1140
+ [[0, 1], [0, 1], [0, 1], 0, 0], 5
1141
+ ];
1142
+ var UpdateTableMetadataLocationResponse$ = [3, n0, _UTMLRp,
1143
+ 0,
1144
+ [_na, _tARN, _n, _vT, _mL],
1145
+ [0, 0, 64 | 0, 0, 0], 5
1146
+ ];
1147
+ var __Unit = "unit";
1148
+ var IcebergPartitionFieldList = [1, n0, _IPFL,
1149
+ 0, [() => IcebergPartitionField$,
1150
+ 0]
1151
+ ];
1152
+ var IcebergSortFieldList = [1, n0, _ISFL,
1153
+ 0, [() => IcebergSortField$,
1154
+ 0]
1155
+ ];
1156
+ var NamespaceSummaryList = [1, n0, _NSL,
1157
+ 0, () => NamespaceSummary$
1158
+ ];
1159
+ var ReplicationDestinations = [1, n0, _RDe,
1160
+ 0, () => ReplicationDestination$
1161
+ ];
1162
+ var ReplicationDestinationStatuses = [1, n0, _RDS,
1163
+ 0, () => ReplicationDestinationStatusModel$
1164
+ ];
1165
+ var SchemaFieldList = [1, n0, _SFL,
1166
+ 0, () => SchemaField$
1167
+ ];
1168
+ var SchemaV2FieldList = [1, n0, _SVFL,
1169
+ 0, () => SchemaV2Field$
1170
+ ];
1171
+ var TableBucketReplicationRules = [1, n0, _TBRRa,
1172
+ 0, () => TableBucketReplicationRule$
1173
+ ];
1174
+ var TableBucketSummaryList = [1, n0, _TBSL,
1175
+ 0, () => TableBucketSummary$
1176
+ ];
1177
+ var TableReplicationRules = [1, n0, _TRRab,
1178
+ 0, () => TableReplicationRule$
1179
+ ];
1180
+ var TableSummaryList = [1, n0, _TSL,
1181
+ 0, () => TableSummary$
1182
+ ];
1183
+ var TableBucketMaintenanceConfiguration = [2, n0, _TBMC,
1184
+ 0, 0, () => TableBucketMaintenanceConfigurationValue$
1185
+ ];
1186
+ var TableMaintenanceConfiguration = [2, n0, _TMC,
1187
+ 0, 0, () => TableMaintenanceConfigurationValue$
1188
+ ];
1189
+ var TableMaintenanceJobStatus = [2, n0, _TMJS,
1190
+ 0, 0, () => TableMaintenanceJobStatusValue$
1191
+ ];
1192
+ var TableBucketMaintenanceSettings$ = [4, n0, _TBMS,
1193
+ 0,
1194
+ [_iUFR],
1195
+ [() => IcebergUnreferencedFileRemovalSettings$]
1196
+ ];
1197
+ var TableMaintenanceSettings$ = [4, n0, _TMS,
1198
+ 0,
1199
+ [_iC, _iSM],
1200
+ [() => IcebergCompactionSettings$, () => IcebergSnapshotManagementSettings$]
1201
+ ];
1202
+ var TableMetadata$ = [4, n0, _TM,
1203
+ 0,
1204
+ [_ic],
1205
+ [[() => IcebergMetadata$, 0]]
1206
+ ];
1207
+ var CreateNamespace$ = [9, n0, _CN,
1208
+ { [_h]: ["PUT", "/namespaces/{tableBucketARN}", 200] }, () => CreateNamespaceRequest$, () => CreateNamespaceResponse$
1209
+ ];
1210
+ var CreateTable$ = [9, n0, _CT,
1211
+ { [_h]: ["PUT", "/tables/{tableBucketARN}/{namespace}", 200] }, () => CreateTableRequest$, () => CreateTableResponse$
1212
+ ];
1213
+ var CreateTableBucket$ = [9, n0, _CTB,
1214
+ { [_h]: ["PUT", "/buckets", 200] }, () => CreateTableBucketRequest$, () => CreateTableBucketResponse$
1215
+ ];
1216
+ var DeleteNamespace$ = [9, n0, _DN,
1217
+ { [_h]: ["DELETE", "/namespaces/{tableBucketARN}/{namespace}", 204] }, () => DeleteNamespaceRequest$, () => __Unit
1218
+ ];
1219
+ var DeleteTable$ = [9, n0, _DT,
1220
+ { [_h]: ["DELETE", "/tables/{tableBucketARN}/{namespace}/{name}", 204] }, () => DeleteTableRequest$, () => __Unit
1221
+ ];
1222
+ var DeleteTableBucket$ = [9, n0, _DTB,
1223
+ { [_h]: ["DELETE", "/buckets/{tableBucketARN}", 204] }, () => DeleteTableBucketRequest$, () => __Unit
1224
+ ];
1225
+ var DeleteTableBucketEncryption$ = [9, n0, _DTBE,
1226
+ { [_h]: ["DELETE", "/buckets/{tableBucketARN}/encryption", 204] }, () => DeleteTableBucketEncryptionRequest$, () => __Unit
1227
+ ];
1228
+ var DeleteTableBucketMetricsConfiguration$ = [9, n0, _DTBMC,
1229
+ { [_h]: ["DELETE", "/buckets/{tableBucketARN}/metrics", 204] }, () => DeleteTableBucketMetricsConfigurationRequest$, () => __Unit
1230
+ ];
1231
+ var DeleteTableBucketPolicy$ = [9, n0, _DTBP,
1232
+ { [_h]: ["DELETE", "/buckets/{tableBucketARN}/policy", 204] }, () => DeleteTableBucketPolicyRequest$, () => __Unit
1233
+ ];
1234
+ var DeleteTableBucketReplication$ = [9, n0, _DTBRe,
1235
+ { [_h]: ["DELETE", "/table-bucket-replication", 204] }, () => DeleteTableBucketReplicationRequest$, () => __Unit
1236
+ ];
1237
+ var DeleteTablePolicy$ = [9, n0, _DTP,
1238
+ { [_h]: ["DELETE", "/tables/{tableBucketARN}/{namespace}/{name}/policy", 204] }, () => DeleteTablePolicyRequest$, () => __Unit
1239
+ ];
1240
+ var DeleteTableReplication$ = [9, n0, _DTRe,
1241
+ { [_h]: ["DELETE", "/table-replication", 204] }, () => DeleteTableReplicationRequest$, () => __Unit
1242
+ ];
1243
+ var GetNamespace$ = [9, n0, _GN,
1244
+ { [_h]: ["GET", "/namespaces/{tableBucketARN}/{namespace}", 200] }, () => GetNamespaceRequest$, () => GetNamespaceResponse$
1245
+ ];
1246
+ var GetTable$ = [9, n0, _GT,
1247
+ { [_h]: ["GET", "/get-table", 200] }, () => GetTableRequest$, () => GetTableResponse$
1248
+ ];
1249
+ var GetTableBucket$ = [9, n0, _GTB,
1250
+ { [_h]: ["GET", "/buckets/{tableBucketARN}", 200] }, () => GetTableBucketRequest$, () => GetTableBucketResponse$
1251
+ ];
1252
+ var GetTableBucketEncryption$ = [9, n0, _GTBE,
1253
+ { [_h]: ["GET", "/buckets/{tableBucketARN}/encryption", 200] }, () => GetTableBucketEncryptionRequest$, () => GetTableBucketEncryptionResponse$
1254
+ ];
1255
+ var GetTableBucketMaintenanceConfiguration$ = [9, n0, _GTBMC,
1256
+ { [_h]: ["GET", "/buckets/{tableBucketARN}/maintenance", 200] }, () => GetTableBucketMaintenanceConfigurationRequest$, () => GetTableBucketMaintenanceConfigurationResponse$
1257
+ ];
1258
+ var GetTableBucketMetricsConfiguration$ = [9, n0, _GTBMCe,
1259
+ { [_h]: ["GET", "/buckets/{tableBucketARN}/metrics", 200] }, () => GetTableBucketMetricsConfigurationRequest$, () => GetTableBucketMetricsConfigurationResponse$
1260
+ ];
1261
+ var GetTableBucketPolicy$ = [9, n0, _GTBP,
1262
+ { [_h]: ["GET", "/buckets/{tableBucketARN}/policy", 200] }, () => GetTableBucketPolicyRequest$, () => GetTableBucketPolicyResponse$
1263
+ ];
1264
+ var GetTableBucketReplication$ = [9, n0, _GTBRet,
1265
+ { [_h]: ["GET", "/table-bucket-replication", 200] }, () => GetTableBucketReplicationRequest$, () => GetTableBucketReplicationResponse$
1266
+ ];
1267
+ var GetTableBucketStorageClass$ = [9, n0, _GTBSC,
1268
+ { [_h]: ["GET", "/buckets/{tableBucketARN}/storage-class", 200] }, () => GetTableBucketStorageClassRequest$, () => GetTableBucketStorageClassResponse$
1269
+ ];
1270
+ var GetTableEncryption$ = [9, n0, _GTE,
1271
+ { [_h]: ["GET", "/tables/{tableBucketARN}/{namespace}/{name}/encryption", 200] }, () => GetTableEncryptionRequest$, () => GetTableEncryptionResponse$
1272
+ ];
1273
+ var GetTableMaintenanceConfiguration$ = [9, n0, _GTMC,
1274
+ { [_h]: ["GET", "/tables/{tableBucketARN}/{namespace}/{name}/maintenance", 200] }, () => GetTableMaintenanceConfigurationRequest$, () => GetTableMaintenanceConfigurationResponse$
1275
+ ];
1276
+ var GetTableMaintenanceJobStatus$ = [9, n0, _GTMJS,
1277
+ { [_h]: ["GET", "/tables/{tableBucketARN}/{namespace}/{name}/maintenance-job-status", 200] }, () => GetTableMaintenanceJobStatusRequest$, () => GetTableMaintenanceJobStatusResponse$
1278
+ ];
1279
+ var GetTableMetadataLocation$ = [9, n0, _GTML,
1280
+ { [_h]: ["GET", "/tables/{tableBucketARN}/{namespace}/{name}/metadata-location", 200] }, () => GetTableMetadataLocationRequest$, () => GetTableMetadataLocationResponse$
1281
+ ];
1282
+ var GetTablePolicy$ = [9, n0, _GTP,
1283
+ { [_h]: ["GET", "/tables/{tableBucketARN}/{namespace}/{name}/policy", 200] }, () => GetTablePolicyRequest$, () => GetTablePolicyResponse$
1284
+ ];
1285
+ var GetTableRecordExpirationConfiguration$ = [9, n0, _GTREC,
1286
+ { [_h]: ["GET", "/table-record-expiration", 200] }, () => GetTableRecordExpirationConfigurationRequest$, () => GetTableRecordExpirationConfigurationResponse$
1287
+ ];
1288
+ var GetTableRecordExpirationJobStatus$ = [9, n0, _GTREJS,
1289
+ { [_h]: ["GET", "/table-record-expiration-job-status", 200] }, () => GetTableRecordExpirationJobStatusRequest$, () => GetTableRecordExpirationJobStatusResponse$
1290
+ ];
1291
+ var GetTableReplication$ = [9, n0, _GTRet,
1292
+ { [_h]: ["GET", "/table-replication", 200] }, () => GetTableReplicationRequest$, () => GetTableReplicationResponse$
1293
+ ];
1294
+ var GetTableReplicationStatus$ = [9, n0, _GTRS,
1295
+ { [_h]: ["GET", "/replication-status", 200] }, () => GetTableReplicationStatusRequest$, () => GetTableReplicationStatusResponse$
1296
+ ];
1297
+ var GetTableStorageClass$ = [9, n0, _GTSC,
1298
+ { [_h]: ["GET", "/tables/{tableBucketARN}/{namespace}/{name}/storage-class", 200] }, () => GetTableStorageClassRequest$, () => GetTableStorageClassResponse$
1299
+ ];
1300
+ var ListNamespaces$ = [9, n0, _LN,
1301
+ { [_h]: ["GET", "/namespaces/{tableBucketARN}", 200] }, () => ListNamespacesRequest$, () => ListNamespacesResponse$
1302
+ ];
1303
+ var ListTableBuckets$ = [9, n0, _LTB,
1304
+ { [_h]: ["GET", "/buckets", 200] }, () => ListTableBucketsRequest$, () => ListTableBucketsResponse$
1305
+ ];
1306
+ var ListTables$ = [9, n0, _LT,
1307
+ { [_h]: ["GET", "/tables/{tableBucketARN}", 200] }, () => ListTablesRequest$, () => ListTablesResponse$
1308
+ ];
1309
+ var ListTagsForResource$ = [9, n0, _LTFR,
1310
+ { [_h]: ["GET", "/tag/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1311
+ ];
1312
+ var PutTableBucketEncryption$ = [9, n0, _PTBE,
1313
+ { [_h]: ["PUT", "/buckets/{tableBucketARN}/encryption", 200] }, () => PutTableBucketEncryptionRequest$, () => __Unit
1314
+ ];
1315
+ var PutTableBucketMaintenanceConfiguration$ = [9, n0, _PTBMC,
1316
+ { [_h]: ["PUT", "/buckets/{tableBucketARN}/maintenance/{type}", 204] }, () => PutTableBucketMaintenanceConfigurationRequest$, () => __Unit
1317
+ ];
1318
+ var PutTableBucketMetricsConfiguration$ = [9, n0, _PTBMCu,
1319
+ { [_h]: ["PUT", "/buckets/{tableBucketARN}/metrics", 204] }, () => PutTableBucketMetricsConfigurationRequest$, () => __Unit
1320
+ ];
1321
+ var PutTableBucketPolicy$ = [9, n0, _PTBP,
1322
+ { [_h]: ["PUT", "/buckets/{tableBucketARN}/policy", 200] }, () => PutTableBucketPolicyRequest$, () => __Unit
1323
+ ];
1324
+ var PutTableBucketReplication$ = [9, n0, _PTBR,
1325
+ { [_h]: ["PUT", "/table-bucket-replication", 200] }, () => PutTableBucketReplicationRequest$, () => PutTableBucketReplicationResponse$
1326
+ ];
1327
+ var PutTableBucketStorageClass$ = [9, n0, _PTBSC,
1328
+ { [_h]: ["PUT", "/buckets/{tableBucketARN}/storage-class", 200] }, () => PutTableBucketStorageClassRequest$, () => __Unit
1329
+ ];
1330
+ var PutTableMaintenanceConfiguration$ = [9, n0, _PTMC,
1331
+ { [_h]: ["PUT", "/tables/{tableBucketARN}/{namespace}/{name}/maintenance/{type}", 204] }, () => PutTableMaintenanceConfigurationRequest$, () => __Unit
1332
+ ];
1333
+ var PutTablePolicy$ = [9, n0, _PTP,
1334
+ { [_h]: ["PUT", "/tables/{tableBucketARN}/{namespace}/{name}/policy", 200] }, () => PutTablePolicyRequest$, () => __Unit
1335
+ ];
1336
+ var PutTableRecordExpirationConfiguration$ = [9, n0, _PTREC,
1337
+ { [_h]: ["PUT", "/table-record-expiration", 204] }, () => PutTableRecordExpirationConfigurationRequest$, () => __Unit
1338
+ ];
1339
+ var PutTableReplication$ = [9, n0, _PTR,
1340
+ { [_h]: ["PUT", "/table-replication", 200] }, () => PutTableReplicationRequest$, () => PutTableReplicationResponse$
1341
+ ];
1342
+ var RenameTable$ = [9, n0, _RT,
1343
+ { [_h]: ["PUT", "/tables/{tableBucketARN}/{namespace}/{name}/rename", 204] }, () => RenameTableRequest$, () => __Unit
1344
+ ];
1345
+ var TagResource$ = [9, n0, _TR,
1346
+ { [_h]: ["POST", "/tag/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1347
+ ];
1348
+ var UntagResource$ = [9, n0, _UR,
1349
+ { [_h]: ["DELETE", "/tag/{resourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1350
+ ];
1351
+ var UpdateTableMetadataLocation$ = [9, n0, _UTML,
1352
+ { [_h]: ["PUT", "/tables/{tableBucketARN}/{namespace}/{name}/metadata-location", 200] }, () => UpdateTableMetadataLocationRequest$, () => UpdateTableMetadataLocationResponse$
1353
+ ];
1354
+
1355
+ const getRuntimeConfig$1 = (config) => {
1356
+ return {
1357
+ apiVersion: "2018-05-10",
1358
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1359
+ base64Encoder: config?.base64Encoder ?? toBase64,
1360
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1361
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1362
+ extensions: config?.extensions ?? [],
1363
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultS3TablesHttpAuthSchemeProvider,
1364
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1365
+ {
1366
+ schemeId: "aws.auth#sigv4",
1367
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1368
+ signer: new AwsSdkSigV4Signer(),
1369
+ },
1370
+ ],
1371
+ logger: config?.logger ?? new NoOpLogger(),
1372
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1373
+ protocolSettings: config?.protocolSettings ?? {
1374
+ defaultNamespace: "com.amazonaws.s3tables",
1375
+ errorTypeRegistries,
1376
+ version: "2018-05-10",
1377
+ serviceTarget: "S3TableBuckets",
1378
+ },
1379
+ serviceId: config?.serviceId ?? "S3Tables",
1380
+ sha256: config?.sha256 ?? Sha256,
1381
+ urlParser: config?.urlParser ?? parseUrl,
1382
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1383
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1384
+ };
1385
+ };
1386
+
1387
+ const getRuntimeConfig = (config) => {
1388
+ emitWarningIfUnsupportedVersion(process.version);
1389
+ const defaultsMode = resolveDefaultsModeConfig(config);
1390
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1391
+ const clientSharedValues = getRuntimeConfig$1(config);
1392
+ emitWarningIfUnsupportedVersion$1(process.version);
1393
+ const loaderConfig = {
1394
+ profile: config?.profile,
1395
+ logger: clientSharedValues.logger,
1396
+ };
1397
+ return {
1398
+ ...clientSharedValues,
1399
+ ...config,
1400
+ runtime: "node",
1401
+ defaultsMode,
1402
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1403
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1404
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1405
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1406
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1407
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1408
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1409
+ retryMode: config?.retryMode ??
1410
+ loadConfig({
1411
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1412
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1413
+ }, config),
1414
+ streamCollector: config?.streamCollector ?? streamCollector,
1415
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1416
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1417
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1418
+ };
1419
+ };
1420
+
34
1421
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1422
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1423
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -839,74 +2226,257 @@ const ReplicationStatus = {
839
2226
  PENDING: "pending",
840
2227
  };
841
2228
 
2229
+ exports.AccessDeniedException = AccessDeniedException;
2230
+ exports.AccessDeniedException$ = AccessDeniedException$;
2231
+ exports.BadRequestException = BadRequestException;
2232
+ exports.BadRequestException$ = BadRequestException$;
2233
+ exports.ConflictException = ConflictException;
2234
+ exports.ConflictException$ = ConflictException$;
2235
+ exports.CreateNamespace$ = CreateNamespace$;
842
2236
  exports.CreateNamespaceCommand = CreateNamespaceCommand;
2237
+ exports.CreateNamespaceRequest$ = CreateNamespaceRequest$;
2238
+ exports.CreateNamespaceResponse$ = CreateNamespaceResponse$;
2239
+ exports.CreateTable$ = CreateTable$;
2240
+ exports.CreateTableBucket$ = CreateTableBucket$;
843
2241
  exports.CreateTableBucketCommand = CreateTableBucketCommand;
2242
+ exports.CreateTableBucketRequest$ = CreateTableBucketRequest$;
2243
+ exports.CreateTableBucketResponse$ = CreateTableBucketResponse$;
844
2244
  exports.CreateTableCommand = CreateTableCommand;
2245
+ exports.CreateTableRequest$ = CreateTableRequest$;
2246
+ exports.CreateTableResponse$ = CreateTableResponse$;
2247
+ exports.DeleteNamespace$ = DeleteNamespace$;
845
2248
  exports.DeleteNamespaceCommand = DeleteNamespaceCommand;
2249
+ exports.DeleteNamespaceRequest$ = DeleteNamespaceRequest$;
2250
+ exports.DeleteTable$ = DeleteTable$;
2251
+ exports.DeleteTableBucket$ = DeleteTableBucket$;
846
2252
  exports.DeleteTableBucketCommand = DeleteTableBucketCommand;
2253
+ exports.DeleteTableBucketEncryption$ = DeleteTableBucketEncryption$;
847
2254
  exports.DeleteTableBucketEncryptionCommand = DeleteTableBucketEncryptionCommand;
2255
+ exports.DeleteTableBucketEncryptionRequest$ = DeleteTableBucketEncryptionRequest$;
2256
+ exports.DeleteTableBucketMetricsConfiguration$ = DeleteTableBucketMetricsConfiguration$;
848
2257
  exports.DeleteTableBucketMetricsConfigurationCommand = DeleteTableBucketMetricsConfigurationCommand;
2258
+ exports.DeleteTableBucketMetricsConfigurationRequest$ = DeleteTableBucketMetricsConfigurationRequest$;
2259
+ exports.DeleteTableBucketPolicy$ = DeleteTableBucketPolicy$;
849
2260
  exports.DeleteTableBucketPolicyCommand = DeleteTableBucketPolicyCommand;
2261
+ exports.DeleteTableBucketPolicyRequest$ = DeleteTableBucketPolicyRequest$;
2262
+ exports.DeleteTableBucketReplication$ = DeleteTableBucketReplication$;
850
2263
  exports.DeleteTableBucketReplicationCommand = DeleteTableBucketReplicationCommand;
2264
+ exports.DeleteTableBucketReplicationRequest$ = DeleteTableBucketReplicationRequest$;
2265
+ exports.DeleteTableBucketRequest$ = DeleteTableBucketRequest$;
851
2266
  exports.DeleteTableCommand = DeleteTableCommand;
2267
+ exports.DeleteTablePolicy$ = DeleteTablePolicy$;
852
2268
  exports.DeleteTablePolicyCommand = DeleteTablePolicyCommand;
2269
+ exports.DeleteTablePolicyRequest$ = DeleteTablePolicyRequest$;
2270
+ exports.DeleteTableReplication$ = DeleteTableReplication$;
853
2271
  exports.DeleteTableReplicationCommand = DeleteTableReplicationCommand;
2272
+ exports.DeleteTableReplicationRequest$ = DeleteTableReplicationRequest$;
2273
+ exports.DeleteTableRequest$ = DeleteTableRequest$;
2274
+ exports.EncryptionConfiguration$ = EncryptionConfiguration$;
2275
+ exports.ForbiddenException = ForbiddenException;
2276
+ exports.ForbiddenException$ = ForbiddenException$;
2277
+ exports.GetNamespace$ = GetNamespace$;
854
2278
  exports.GetNamespaceCommand = GetNamespaceCommand;
2279
+ exports.GetNamespaceRequest$ = GetNamespaceRequest$;
2280
+ exports.GetNamespaceResponse$ = GetNamespaceResponse$;
2281
+ exports.GetTable$ = GetTable$;
2282
+ exports.GetTableBucket$ = GetTableBucket$;
855
2283
  exports.GetTableBucketCommand = GetTableBucketCommand;
2284
+ exports.GetTableBucketEncryption$ = GetTableBucketEncryption$;
856
2285
  exports.GetTableBucketEncryptionCommand = GetTableBucketEncryptionCommand;
2286
+ exports.GetTableBucketEncryptionRequest$ = GetTableBucketEncryptionRequest$;
2287
+ exports.GetTableBucketEncryptionResponse$ = GetTableBucketEncryptionResponse$;
2288
+ exports.GetTableBucketMaintenanceConfiguration$ = GetTableBucketMaintenanceConfiguration$;
857
2289
  exports.GetTableBucketMaintenanceConfigurationCommand = GetTableBucketMaintenanceConfigurationCommand;
2290
+ exports.GetTableBucketMaintenanceConfigurationRequest$ = GetTableBucketMaintenanceConfigurationRequest$;
2291
+ exports.GetTableBucketMaintenanceConfigurationResponse$ = GetTableBucketMaintenanceConfigurationResponse$;
2292
+ exports.GetTableBucketMetricsConfiguration$ = GetTableBucketMetricsConfiguration$;
858
2293
  exports.GetTableBucketMetricsConfigurationCommand = GetTableBucketMetricsConfigurationCommand;
2294
+ exports.GetTableBucketMetricsConfigurationRequest$ = GetTableBucketMetricsConfigurationRequest$;
2295
+ exports.GetTableBucketMetricsConfigurationResponse$ = GetTableBucketMetricsConfigurationResponse$;
2296
+ exports.GetTableBucketPolicy$ = GetTableBucketPolicy$;
859
2297
  exports.GetTableBucketPolicyCommand = GetTableBucketPolicyCommand;
2298
+ exports.GetTableBucketPolicyRequest$ = GetTableBucketPolicyRequest$;
2299
+ exports.GetTableBucketPolicyResponse$ = GetTableBucketPolicyResponse$;
2300
+ exports.GetTableBucketReplication$ = GetTableBucketReplication$;
860
2301
  exports.GetTableBucketReplicationCommand = GetTableBucketReplicationCommand;
2302
+ exports.GetTableBucketReplicationRequest$ = GetTableBucketReplicationRequest$;
2303
+ exports.GetTableBucketReplicationResponse$ = GetTableBucketReplicationResponse$;
2304
+ exports.GetTableBucketRequest$ = GetTableBucketRequest$;
2305
+ exports.GetTableBucketResponse$ = GetTableBucketResponse$;
2306
+ exports.GetTableBucketStorageClass$ = GetTableBucketStorageClass$;
861
2307
  exports.GetTableBucketStorageClassCommand = GetTableBucketStorageClassCommand;
2308
+ exports.GetTableBucketStorageClassRequest$ = GetTableBucketStorageClassRequest$;
2309
+ exports.GetTableBucketStorageClassResponse$ = GetTableBucketStorageClassResponse$;
862
2310
  exports.GetTableCommand = GetTableCommand;
2311
+ exports.GetTableEncryption$ = GetTableEncryption$;
863
2312
  exports.GetTableEncryptionCommand = GetTableEncryptionCommand;
2313
+ exports.GetTableEncryptionRequest$ = GetTableEncryptionRequest$;
2314
+ exports.GetTableEncryptionResponse$ = GetTableEncryptionResponse$;
2315
+ exports.GetTableMaintenanceConfiguration$ = GetTableMaintenanceConfiguration$;
864
2316
  exports.GetTableMaintenanceConfigurationCommand = GetTableMaintenanceConfigurationCommand;
2317
+ exports.GetTableMaintenanceConfigurationRequest$ = GetTableMaintenanceConfigurationRequest$;
2318
+ exports.GetTableMaintenanceConfigurationResponse$ = GetTableMaintenanceConfigurationResponse$;
2319
+ exports.GetTableMaintenanceJobStatus$ = GetTableMaintenanceJobStatus$;
865
2320
  exports.GetTableMaintenanceJobStatusCommand = GetTableMaintenanceJobStatusCommand;
2321
+ exports.GetTableMaintenanceJobStatusRequest$ = GetTableMaintenanceJobStatusRequest$;
2322
+ exports.GetTableMaintenanceJobStatusResponse$ = GetTableMaintenanceJobStatusResponse$;
2323
+ exports.GetTableMetadataLocation$ = GetTableMetadataLocation$;
866
2324
  exports.GetTableMetadataLocationCommand = GetTableMetadataLocationCommand;
2325
+ exports.GetTableMetadataLocationRequest$ = GetTableMetadataLocationRequest$;
2326
+ exports.GetTableMetadataLocationResponse$ = GetTableMetadataLocationResponse$;
2327
+ exports.GetTablePolicy$ = GetTablePolicy$;
867
2328
  exports.GetTablePolicyCommand = GetTablePolicyCommand;
2329
+ exports.GetTablePolicyRequest$ = GetTablePolicyRequest$;
2330
+ exports.GetTablePolicyResponse$ = GetTablePolicyResponse$;
2331
+ exports.GetTableRecordExpirationConfiguration$ = GetTableRecordExpirationConfiguration$;
868
2332
  exports.GetTableRecordExpirationConfigurationCommand = GetTableRecordExpirationConfigurationCommand;
2333
+ exports.GetTableRecordExpirationConfigurationRequest$ = GetTableRecordExpirationConfigurationRequest$;
2334
+ exports.GetTableRecordExpirationConfigurationResponse$ = GetTableRecordExpirationConfigurationResponse$;
2335
+ exports.GetTableRecordExpirationJobStatus$ = GetTableRecordExpirationJobStatus$;
869
2336
  exports.GetTableRecordExpirationJobStatusCommand = GetTableRecordExpirationJobStatusCommand;
2337
+ exports.GetTableRecordExpirationJobStatusRequest$ = GetTableRecordExpirationJobStatusRequest$;
2338
+ exports.GetTableRecordExpirationJobStatusResponse$ = GetTableRecordExpirationJobStatusResponse$;
2339
+ exports.GetTableReplication$ = GetTableReplication$;
870
2340
  exports.GetTableReplicationCommand = GetTableReplicationCommand;
2341
+ exports.GetTableReplicationRequest$ = GetTableReplicationRequest$;
2342
+ exports.GetTableReplicationResponse$ = GetTableReplicationResponse$;
2343
+ exports.GetTableReplicationStatus$ = GetTableReplicationStatus$;
871
2344
  exports.GetTableReplicationStatusCommand = GetTableReplicationStatusCommand;
2345
+ exports.GetTableReplicationStatusRequest$ = GetTableReplicationStatusRequest$;
2346
+ exports.GetTableReplicationStatusResponse$ = GetTableReplicationStatusResponse$;
2347
+ exports.GetTableRequest$ = GetTableRequest$;
2348
+ exports.GetTableResponse$ = GetTableResponse$;
2349
+ exports.GetTableStorageClass$ = GetTableStorageClass$;
872
2350
  exports.GetTableStorageClassCommand = GetTableStorageClassCommand;
2351
+ exports.GetTableStorageClassRequest$ = GetTableStorageClassRequest$;
2352
+ exports.GetTableStorageClassResponse$ = GetTableStorageClassResponse$;
2353
+ exports.IcebergCompactionSettings$ = IcebergCompactionSettings$;
873
2354
  exports.IcebergCompactionStrategy = IcebergCompactionStrategy;
2355
+ exports.IcebergMetadata$ = IcebergMetadata$;
874
2356
  exports.IcebergNullOrder = IcebergNullOrder;
2357
+ exports.IcebergPartitionField$ = IcebergPartitionField$;
2358
+ exports.IcebergPartitionSpec$ = IcebergPartitionSpec$;
2359
+ exports.IcebergSchema$ = IcebergSchema$;
2360
+ exports.IcebergSchemaV2$ = IcebergSchemaV2$;
2361
+ exports.IcebergSnapshotManagementSettings$ = IcebergSnapshotManagementSettings$;
875
2362
  exports.IcebergSortDirection = IcebergSortDirection;
2363
+ exports.IcebergSortField$ = IcebergSortField$;
2364
+ exports.IcebergSortOrder$ = IcebergSortOrder$;
2365
+ exports.IcebergUnreferencedFileRemovalSettings$ = IcebergUnreferencedFileRemovalSettings$;
2366
+ exports.InternalServerErrorException = InternalServerErrorException;
2367
+ exports.InternalServerErrorException$ = InternalServerErrorException$;
876
2368
  exports.JobStatus = JobStatus;
2369
+ exports.LastSuccessfulReplicatedUpdate$ = LastSuccessfulReplicatedUpdate$;
2370
+ exports.ListNamespaces$ = ListNamespaces$;
877
2371
  exports.ListNamespacesCommand = ListNamespacesCommand;
2372
+ exports.ListNamespacesRequest$ = ListNamespacesRequest$;
2373
+ exports.ListNamespacesResponse$ = ListNamespacesResponse$;
2374
+ exports.ListTableBuckets$ = ListTableBuckets$;
878
2375
  exports.ListTableBucketsCommand = ListTableBucketsCommand;
2376
+ exports.ListTableBucketsRequest$ = ListTableBucketsRequest$;
2377
+ exports.ListTableBucketsResponse$ = ListTableBucketsResponse$;
2378
+ exports.ListTables$ = ListTables$;
879
2379
  exports.ListTablesCommand = ListTablesCommand;
2380
+ exports.ListTablesRequest$ = ListTablesRequest$;
2381
+ exports.ListTablesResponse$ = ListTablesResponse$;
2382
+ exports.ListTagsForResource$ = ListTagsForResource$;
880
2383
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2384
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2385
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
881
2386
  exports.MaintenanceStatus = MaintenanceStatus;
2387
+ exports.ManagedTableInformation$ = ManagedTableInformation$;
2388
+ exports.MethodNotAllowedException = MethodNotAllowedException;
2389
+ exports.MethodNotAllowedException$ = MethodNotAllowedException$;
2390
+ exports.NamespaceSummary$ = NamespaceSummary$;
2391
+ exports.NotFoundException = NotFoundException;
2392
+ exports.NotFoundException$ = NotFoundException$;
882
2393
  exports.OpenTableFormat = OpenTableFormat;
2394
+ exports.PutTableBucketEncryption$ = PutTableBucketEncryption$;
883
2395
  exports.PutTableBucketEncryptionCommand = PutTableBucketEncryptionCommand;
2396
+ exports.PutTableBucketEncryptionRequest$ = PutTableBucketEncryptionRequest$;
2397
+ exports.PutTableBucketMaintenanceConfiguration$ = PutTableBucketMaintenanceConfiguration$;
884
2398
  exports.PutTableBucketMaintenanceConfigurationCommand = PutTableBucketMaintenanceConfigurationCommand;
2399
+ exports.PutTableBucketMaintenanceConfigurationRequest$ = PutTableBucketMaintenanceConfigurationRequest$;
2400
+ exports.PutTableBucketMetricsConfiguration$ = PutTableBucketMetricsConfiguration$;
885
2401
  exports.PutTableBucketMetricsConfigurationCommand = PutTableBucketMetricsConfigurationCommand;
2402
+ exports.PutTableBucketMetricsConfigurationRequest$ = PutTableBucketMetricsConfigurationRequest$;
2403
+ exports.PutTableBucketPolicy$ = PutTableBucketPolicy$;
886
2404
  exports.PutTableBucketPolicyCommand = PutTableBucketPolicyCommand;
2405
+ exports.PutTableBucketPolicyRequest$ = PutTableBucketPolicyRequest$;
2406
+ exports.PutTableBucketReplication$ = PutTableBucketReplication$;
887
2407
  exports.PutTableBucketReplicationCommand = PutTableBucketReplicationCommand;
2408
+ exports.PutTableBucketReplicationRequest$ = PutTableBucketReplicationRequest$;
2409
+ exports.PutTableBucketReplicationResponse$ = PutTableBucketReplicationResponse$;
2410
+ exports.PutTableBucketStorageClass$ = PutTableBucketStorageClass$;
888
2411
  exports.PutTableBucketStorageClassCommand = PutTableBucketStorageClassCommand;
2412
+ exports.PutTableBucketStorageClassRequest$ = PutTableBucketStorageClassRequest$;
2413
+ exports.PutTableMaintenanceConfiguration$ = PutTableMaintenanceConfiguration$;
889
2414
  exports.PutTableMaintenanceConfigurationCommand = PutTableMaintenanceConfigurationCommand;
2415
+ exports.PutTableMaintenanceConfigurationRequest$ = PutTableMaintenanceConfigurationRequest$;
2416
+ exports.PutTablePolicy$ = PutTablePolicy$;
890
2417
  exports.PutTablePolicyCommand = PutTablePolicyCommand;
2418
+ exports.PutTablePolicyRequest$ = PutTablePolicyRequest$;
2419
+ exports.PutTableRecordExpirationConfiguration$ = PutTableRecordExpirationConfiguration$;
891
2420
  exports.PutTableRecordExpirationConfigurationCommand = PutTableRecordExpirationConfigurationCommand;
2421
+ exports.PutTableRecordExpirationConfigurationRequest$ = PutTableRecordExpirationConfigurationRequest$;
2422
+ exports.PutTableReplication$ = PutTableReplication$;
892
2423
  exports.PutTableReplicationCommand = PutTableReplicationCommand;
2424
+ exports.PutTableReplicationRequest$ = PutTableReplicationRequest$;
2425
+ exports.PutTableReplicationResponse$ = PutTableReplicationResponse$;
2426
+ exports.RenameTable$ = RenameTable$;
893
2427
  exports.RenameTableCommand = RenameTableCommand;
2428
+ exports.RenameTableRequest$ = RenameTableRequest$;
2429
+ exports.ReplicationDestination$ = ReplicationDestination$;
2430
+ exports.ReplicationDestinationStatusModel$ = ReplicationDestinationStatusModel$;
2431
+ exports.ReplicationInformation$ = ReplicationInformation$;
894
2432
  exports.ReplicationStatus = ReplicationStatus;
895
2433
  exports.S3Tables = S3Tables;
896
2434
  exports.S3TablesClient = S3TablesClient;
2435
+ exports.S3TablesServiceException = S3TablesServiceException;
2436
+ exports.S3TablesServiceException$ = S3TablesServiceException$;
897
2437
  exports.SSEAlgorithm = SSEAlgorithm;
2438
+ exports.SchemaField$ = SchemaField$;
2439
+ exports.SchemaV2Field$ = SchemaV2Field$;
898
2440
  exports.SchemaV2FieldType = SchemaV2FieldType;
899
2441
  exports.StorageClass = StorageClass;
2442
+ exports.StorageClassConfiguration$ = StorageClassConfiguration$;
2443
+ exports.TableBucketMaintenanceConfigurationValue$ = TableBucketMaintenanceConfigurationValue$;
2444
+ exports.TableBucketMaintenanceSettings$ = TableBucketMaintenanceSettings$;
900
2445
  exports.TableBucketMaintenanceType = TableBucketMaintenanceType;
2446
+ exports.TableBucketReplicationConfiguration$ = TableBucketReplicationConfiguration$;
2447
+ exports.TableBucketReplicationRule$ = TableBucketReplicationRule$;
2448
+ exports.TableBucketSummary$ = TableBucketSummary$;
901
2449
  exports.TableBucketType = TableBucketType;
2450
+ exports.TableMaintenanceConfigurationValue$ = TableMaintenanceConfigurationValue$;
2451
+ exports.TableMaintenanceJobStatusValue$ = TableMaintenanceJobStatusValue$;
902
2452
  exports.TableMaintenanceJobType = TableMaintenanceJobType;
2453
+ exports.TableMaintenanceSettings$ = TableMaintenanceSettings$;
903
2454
  exports.TableMaintenanceType = TableMaintenanceType;
2455
+ exports.TableMetadata$ = TableMetadata$;
2456
+ exports.TableRecordExpirationConfigurationValue$ = TableRecordExpirationConfigurationValue$;
2457
+ exports.TableRecordExpirationJobMetrics$ = TableRecordExpirationJobMetrics$;
904
2458
  exports.TableRecordExpirationJobStatus = TableRecordExpirationJobStatus;
2459
+ exports.TableRecordExpirationSettings$ = TableRecordExpirationSettings$;
905
2460
  exports.TableRecordExpirationStatus = TableRecordExpirationStatus;
2461
+ exports.TableReplicationConfiguration$ = TableReplicationConfiguration$;
2462
+ exports.TableReplicationRule$ = TableReplicationRule$;
2463
+ exports.TableSummary$ = TableSummary$;
906
2464
  exports.TableType = TableType;
2465
+ exports.TagResource$ = TagResource$;
907
2466
  exports.TagResourceCommand = TagResourceCommand;
2467
+ exports.TagResourceRequest$ = TagResourceRequest$;
2468
+ exports.TagResourceResponse$ = TagResourceResponse$;
2469
+ exports.TooManyRequestsException = TooManyRequestsException;
2470
+ exports.TooManyRequestsException$ = TooManyRequestsException$;
2471
+ exports.UntagResource$ = UntagResource$;
908
2472
  exports.UntagResourceCommand = UntagResourceCommand;
2473
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2474
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2475
+ exports.UpdateTableMetadataLocation$ = UpdateTableMetadataLocation$;
909
2476
  exports.UpdateTableMetadataLocationCommand = UpdateTableMetadataLocationCommand;
2477
+ exports.UpdateTableMetadataLocationRequest$ = UpdateTableMetadataLocationRequest$;
2478
+ exports.UpdateTableMetadataLocationResponse$ = UpdateTableMetadataLocationResponse$;
2479
+ exports.errorTypeRegistries = errorTypeRegistries;
910
2480
  exports.paginateListNamespaces = paginateListNamespaces;
911
2481
  exports.paginateListTableBuckets = paginateListTableBuckets;
912
2482
  exports.paginateListTables = paginateListTables;