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