File Explorer

/proc/self/root/proc/self/root/var/runtime/node_modules/@aws-sdk/client-s3tables/dist-cjs

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

index.js34.4 KB · 933 lines
'use strict'; var client$1 = require('@aws-sdk/core/client');var core = require('@smithy/core');var client = require('@smithy/core/client');var config = require('@smithy/core/config');var endpoints = require('@smithy/core/endpoints');var protocols = require('@smithy/core/protocols');var retry = require('@smithy/core/retry');var schema = require('@smithy/core/schema');var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');var runtimeConfig = require('./runtimeConfig');var schemas_0 = require('./schemas/schemas_0');var errors = require('./models/errors');var S3TablesServiceException = require('./models/S3TablesServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "s3tables",    });};const commonParams = {    UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },    Endpoint: { type: "builtInParams", name: "endpoint" },    Region: { type: "builtInParams", name: "region" },    UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },}; const getHttpAuthExtensionConfiguration = (runtimeConfig) => {    const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;    let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;    let _credentials = runtimeConfig.credentials;    return {        setHttpAuthScheme(httpAuthScheme) {            const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);            if (index === -1) {                _httpAuthSchemes.push(httpAuthScheme);            }            else {                _httpAuthSchemes.splice(index, 1, httpAuthScheme);            }        },        httpAuthSchemes() {            return _httpAuthSchemes;        },        setHttpAuthSchemeProvider(httpAuthSchemeProvider) {            _httpAuthSchemeProvider = httpAuthSchemeProvider;        },        httpAuthSchemeProvider() {            return _httpAuthSchemeProvider;        },        setCredentials(credentials) {            _credentials = credentials;        },        credentials() {            return _credentials;        },    };};const resolveHttpAuthRuntimeConfig = (config) => {    return {        httpAuthSchemes: config.httpAuthSchemes(),        httpAuthSchemeProvider: config.httpAuthSchemeProvider(),        credentials: config.credentials(),    };}; const resolveRuntimeExtensions = (runtimeConfig, extensions) => {    const extensionConfiguration = Object.assign(client$1.getAwsRegionExtensionConfiguration(runtimeConfig), client.getDefaultExtensionConfiguration(runtimeConfig), protocols.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));    extensions.forEach((extension) => extension.configure(extensionConfiguration));    return Object.assign(runtimeConfig, client$1.resolveAwsRegionExtensionConfiguration(extensionConfiguration), client.resolveDefaultRuntimeConfig(extensionConfiguration), protocols.resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));}; class S3TablesClient extends client.Client {    config;    constructor(...[configuration]) {        const _config_0 = runtimeConfig.getRuntimeConfig(configuration || {});        super(_config_0);        this.initConfig = _config_0;        const _config_1 = resolveClientEndpointParameters(_config_0);        const _config_2 = client$1.resolveUserAgentConfig(_config_1);        const _config_3 = retry.resolveRetryConfig(_config_2);        const _config_4 = config.resolveRegionConfig(_config_3);        const _config_5 = client$1.resolveHostHeaderConfig(_config_4);        const _config_6 = endpoints.resolveEndpointConfig(_config_5);        const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);        const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);        this.config = _config_8;        this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));        this.middlewareStack.use(client$1.getUserAgentPlugin(this.config));        this.middlewareStack.use(retry.getRetryPlugin(this.config));        this.middlewareStack.use(protocols.getContentLengthPlugin(this.config));        this.middlewareStack.use(client$1.getHostHeaderPlugin(this.config));        this.middlewareStack.use(client$1.getLoggerPlugin(this.config));        this.middlewareStack.use(client$1.getRecursionDetectionPlugin(this.config));        this.middlewareStack.use(core.getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {            httpAuthSchemeParametersProvider: httpAuthSchemeProvider.defaultS3TablesHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class CreateNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "CreateNamespace", {})    .n("S3TablesClient", "CreateNamespaceCommand")    .sc(schemas_0.CreateNamespace$)    .build() {} class CreateTableBucketCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "CreateTableBucket", {})    .n("S3TablesClient", "CreateTableBucketCommand")    .sc(schemas_0.CreateTableBucket$)    .build() {} class CreateTableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "CreateTable", {})    .n("S3TablesClient", "CreateTableCommand")    .sc(schemas_0.CreateTable$)    .build() {} class DeleteNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "DeleteNamespace", {})    .n("S3TablesClient", "DeleteNamespaceCommand")    .sc(schemas_0.DeleteNamespace$)    .build() {} class DeleteTableBucketCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "DeleteTableBucket", {})    .n("S3TablesClient", "DeleteTableBucketCommand")    .sc(schemas_0.DeleteTableBucket$)    .build() {} class DeleteTableBucketEncryptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "DeleteTableBucketEncryption", {})    .n("S3TablesClient", "DeleteTableBucketEncryptionCommand")    .sc(schemas_0.DeleteTableBucketEncryption$)    .build() {} class DeleteTableBucketMetricsConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "DeleteTableBucketMetricsConfiguration", {})    .n("S3TablesClient", "DeleteTableBucketMetricsConfigurationCommand")    .sc(schemas_0.DeleteTableBucketMetricsConfiguration$)    .build() {} class DeleteTableBucketPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "DeleteTableBucketPolicy", {})    .n("S3TablesClient", "DeleteTableBucketPolicyCommand")    .sc(schemas_0.DeleteTableBucketPolicy$)    .build() {} class DeleteTableBucketReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "DeleteTableBucketReplication", {})    .n("S3TablesClient", "DeleteTableBucketReplicationCommand")    .sc(schemas_0.DeleteTableBucketReplication$)    .build() {} class DeleteTableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "DeleteTable", {})    .n("S3TablesClient", "DeleteTableCommand")    .sc(schemas_0.DeleteTable$)    .build() {} class DeleteTablePolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "DeleteTablePolicy", {})    .n("S3TablesClient", "DeleteTablePolicyCommand")    .sc(schemas_0.DeleteTablePolicy$)    .build() {} class DeleteTableReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "DeleteTableReplication", {})    .n("S3TablesClient", "DeleteTableReplicationCommand")    .sc(schemas_0.DeleteTableReplication$)    .build() {} class GetNamespaceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetNamespace", {})    .n("S3TablesClient", "GetNamespaceCommand")    .sc(schemas_0.GetNamespace$)    .build() {} class GetTableBucketCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableBucket", {})    .n("S3TablesClient", "GetTableBucketCommand")    .sc(schemas_0.GetTableBucket$)    .build() {} class GetTableBucketEncryptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableBucketEncryption", {})    .n("S3TablesClient", "GetTableBucketEncryptionCommand")    .sc(schemas_0.GetTableBucketEncryption$)    .build() {} class GetTableBucketMaintenanceConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableBucketMaintenanceConfiguration", {})    .n("S3TablesClient", "GetTableBucketMaintenanceConfigurationCommand")    .sc(schemas_0.GetTableBucketMaintenanceConfiguration$)    .build() {} class GetTableBucketMetricsConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableBucketMetricsConfiguration", {})    .n("S3TablesClient", "GetTableBucketMetricsConfigurationCommand")    .sc(schemas_0.GetTableBucketMetricsConfiguration$)    .build() {} class GetTableBucketPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableBucketPolicy", {})    .n("S3TablesClient", "GetTableBucketPolicyCommand")    .sc(schemas_0.GetTableBucketPolicy$)    .build() {} class GetTableBucketReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableBucketReplication", {})    .n("S3TablesClient", "GetTableBucketReplicationCommand")    .sc(schemas_0.GetTableBucketReplication$)    .build() {} class GetTableBucketStorageClassCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableBucketStorageClass", {})    .n("S3TablesClient", "GetTableBucketStorageClassCommand")    .sc(schemas_0.GetTableBucketStorageClass$)    .build() {} class GetTableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTable", {})    .n("S3TablesClient", "GetTableCommand")    .sc(schemas_0.GetTable$)    .build() {} class GetTableEncryptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableEncryption", {})    .n("S3TablesClient", "GetTableEncryptionCommand")    .sc(schemas_0.GetTableEncryption$)    .build() {} class GetTableMaintenanceConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableMaintenanceConfiguration", {})    .n("S3TablesClient", "GetTableMaintenanceConfigurationCommand")    .sc(schemas_0.GetTableMaintenanceConfiguration$)    .build() {} class GetTableMaintenanceJobStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableMaintenanceJobStatus", {})    .n("S3TablesClient", "GetTableMaintenanceJobStatusCommand")    .sc(schemas_0.GetTableMaintenanceJobStatus$)    .build() {} class GetTableMetadataLocationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableMetadataLocation", {})    .n("S3TablesClient", "GetTableMetadataLocationCommand")    .sc(schemas_0.GetTableMetadataLocation$)    .build() {} class GetTablePolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTablePolicy", {})    .n("S3TablesClient", "GetTablePolicyCommand")    .sc(schemas_0.GetTablePolicy$)    .build() {} class GetTableRecordExpirationConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableRecordExpirationConfiguration", {})    .n("S3TablesClient", "GetTableRecordExpirationConfigurationCommand")    .sc(schemas_0.GetTableRecordExpirationConfiguration$)    .build() {} class GetTableRecordExpirationJobStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableRecordExpirationJobStatus", {})    .n("S3TablesClient", "GetTableRecordExpirationJobStatusCommand")    .sc(schemas_0.GetTableRecordExpirationJobStatus$)    .build() {} class GetTableReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableReplication", {})    .n("S3TablesClient", "GetTableReplicationCommand")    .sc(schemas_0.GetTableReplication$)    .build() {} class GetTableReplicationStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableReplicationStatus", {})    .n("S3TablesClient", "GetTableReplicationStatusCommand")    .sc(schemas_0.GetTableReplicationStatus$)    .build() {} class GetTableStorageClassCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "GetTableStorageClass", {})    .n("S3TablesClient", "GetTableStorageClassCommand")    .sc(schemas_0.GetTableStorageClass$)    .build() {} class ListNamespacesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "ListNamespaces", {})    .n("S3TablesClient", "ListNamespacesCommand")    .sc(schemas_0.ListNamespaces$)    .build() {} class ListTableBucketsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "ListTableBuckets", {})    .n("S3TablesClient", "ListTableBucketsCommand")    .sc(schemas_0.ListTableBuckets$)    .build() {} class ListTablesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "ListTables", {})    .n("S3TablesClient", "ListTablesCommand")    .sc(schemas_0.ListTables$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "ListTagsForResource", {})    .n("S3TablesClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class PutTableBucketEncryptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "PutTableBucketEncryption", {})    .n("S3TablesClient", "PutTableBucketEncryptionCommand")    .sc(schemas_0.PutTableBucketEncryption$)    .build() {} class PutTableBucketMaintenanceConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "PutTableBucketMaintenanceConfiguration", {})    .n("S3TablesClient", "PutTableBucketMaintenanceConfigurationCommand")    .sc(schemas_0.PutTableBucketMaintenanceConfiguration$)    .build() {} class PutTableBucketMetricsConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "PutTableBucketMetricsConfiguration", {})    .n("S3TablesClient", "PutTableBucketMetricsConfigurationCommand")    .sc(schemas_0.PutTableBucketMetricsConfiguration$)    .build() {} class PutTableBucketPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "PutTableBucketPolicy", {})    .n("S3TablesClient", "PutTableBucketPolicyCommand")    .sc(schemas_0.PutTableBucketPolicy$)    .build() {} class PutTableBucketReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "PutTableBucketReplication", {})    .n("S3TablesClient", "PutTableBucketReplicationCommand")    .sc(schemas_0.PutTableBucketReplication$)    .build() {} class PutTableBucketStorageClassCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "PutTableBucketStorageClass", {})    .n("S3TablesClient", "PutTableBucketStorageClassCommand")    .sc(schemas_0.PutTableBucketStorageClass$)    .build() {} class PutTableMaintenanceConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "PutTableMaintenanceConfiguration", {})    .n("S3TablesClient", "PutTableMaintenanceConfigurationCommand")    .sc(schemas_0.PutTableMaintenanceConfiguration$)    .build() {} class PutTablePolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "PutTablePolicy", {})    .n("S3TablesClient", "PutTablePolicyCommand")    .sc(schemas_0.PutTablePolicy$)    .build() {} class PutTableRecordExpirationConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "PutTableRecordExpirationConfiguration", {})    .n("S3TablesClient", "PutTableRecordExpirationConfigurationCommand")    .sc(schemas_0.PutTableRecordExpirationConfiguration$)    .build() {} class PutTableReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "PutTableReplication", {})    .n("S3TablesClient", "PutTableReplicationCommand")    .sc(schemas_0.PutTableReplication$)    .build() {} class RenameTableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "RenameTable", {})    .n("S3TablesClient", "RenameTableCommand")    .sc(schemas_0.RenameTable$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "TagResource", {})    .n("S3TablesClient", "TagResourceCommand")    .sc(schemas_0.TagResource$)    .build() {} class UntagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "UntagResource", {})    .n("S3TablesClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateTableMetadataLocationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("S3TableBuckets", "UpdateTableMetadataLocation", {})    .n("S3TablesClient", "UpdateTableMetadataLocationCommand")    .sc(schemas_0.UpdateTableMetadataLocation$)    .build() {} const paginateListNamespaces = core.createPaginator(S3TablesClient, ListNamespacesCommand, "continuationToken", "continuationToken", "maxNamespaces"); const paginateListTableBuckets = core.createPaginator(S3TablesClient, ListTableBucketsCommand, "continuationToken", "continuationToken", "maxBuckets"); const paginateListTables = core.createPaginator(S3TablesClient, ListTablesCommand, "continuationToken", "continuationToken", "maxTables"); const commands = {    CreateNamespaceCommand,    CreateTableCommand,    CreateTableBucketCommand,    DeleteNamespaceCommand,    DeleteTableCommand,    DeleteTableBucketCommand,    DeleteTableBucketEncryptionCommand,    DeleteTableBucketMetricsConfigurationCommand,    DeleteTableBucketPolicyCommand,    DeleteTableBucketReplicationCommand,    DeleteTablePolicyCommand,    DeleteTableReplicationCommand,    GetNamespaceCommand,    GetTableCommand,    GetTableBucketCommand,    GetTableBucketEncryptionCommand,    GetTableBucketMaintenanceConfigurationCommand,    GetTableBucketMetricsConfigurationCommand,    GetTableBucketPolicyCommand,    GetTableBucketReplicationCommand,    GetTableBucketStorageClassCommand,    GetTableEncryptionCommand,    GetTableMaintenanceConfigurationCommand,    GetTableMaintenanceJobStatusCommand,    GetTableMetadataLocationCommand,    GetTablePolicyCommand,    GetTableRecordExpirationConfigurationCommand,    GetTableRecordExpirationJobStatusCommand,    GetTableReplicationCommand,    GetTableReplicationStatusCommand,    GetTableStorageClassCommand,    ListNamespacesCommand,    ListTableBucketsCommand,    ListTablesCommand,    ListTagsForResourceCommand,    PutTableBucketEncryptionCommand,    PutTableBucketMaintenanceConfigurationCommand,    PutTableBucketMetricsConfigurationCommand,    PutTableBucketPolicyCommand,    PutTableBucketReplicationCommand,    PutTableBucketStorageClassCommand,    PutTableMaintenanceConfigurationCommand,    PutTablePolicyCommand,    PutTableRecordExpirationConfigurationCommand,    PutTableReplicationCommand,    RenameTableCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateTableMetadataLocationCommand,};const paginators = {    paginateListNamespaces,    paginateListTableBuckets,    paginateListTables,};class S3Tables extends S3TablesClient {}client.createAggregatedClient(commands, S3Tables, { paginators }); const SSEAlgorithm = {    AES256: "AES256",    AWS_KMS: "aws:kms",};const OpenTableFormat = {    ICEBERG: "ICEBERG",};const SchemaV2FieldType = {    STRUCT: "struct",};const IcebergSortDirection = {    ASC: "asc",    DESC: "desc",};const IcebergNullOrder = {    NULLS_FIRST: "nulls-first",    NULLS_LAST: "nulls-last",};const StorageClass = {    INTELLIGENT_TIERING: "INTELLIGENT_TIERING",    STANDARD: "STANDARD",};const TableType = {    AWS: "aws",    CUSTOMER: "customer",};const TableBucketType = {    AWS: "aws",    CUSTOMER: "customer",};const TableBucketMaintenanceType = {    ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval",};const MaintenanceStatus = {    DISABLED: "disabled",    ENABLED: "enabled",};const TableMaintenanceType = {    ICEBERG_COMPACTION: "icebergCompaction",    ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement",};const IcebergCompactionStrategy = {    AUTO: "auto",    BINPACK: "binpack",    SORT: "sort",    ZORDER: "z-order",};const TableMaintenanceJobType = {    ICEBERG_COMPACTION: "icebergCompaction",    ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement",    ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval",};const JobStatus = {    DISABLED: "Disabled",    FAILED: "Failed",    NOT_YET_RUN: "Not_Yet_Run",    SUCCESSFUL: "Successful",};const TableRecordExpirationStatus = {    DISABLED: "disabled",    ENABLED: "enabled",};const TableRecordExpirationJobStatus = {    DISABLED: "Disabled",    FAILED: "Failed",    NOT_YET_RUN: "NotYetRun",    SUCCESSFUL: "Successful",};const ReplicationStatus = {    COMPLETED: "completed",    FAILED: "failed",    PENDING: "pending",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.S3TablesServiceException = S3TablesServiceException.S3TablesServiceException;exports.CreateNamespaceCommand = CreateNamespaceCommand;exports.CreateTableBucketCommand = CreateTableBucketCommand;exports.CreateTableCommand = CreateTableCommand;exports.DeleteNamespaceCommand = DeleteNamespaceCommand;exports.DeleteTableBucketCommand = DeleteTableBucketCommand;exports.DeleteTableBucketEncryptionCommand = DeleteTableBucketEncryptionCommand;exports.DeleteTableBucketMetricsConfigurationCommand = DeleteTableBucketMetricsConfigurationCommand;exports.DeleteTableBucketPolicyCommand = DeleteTableBucketPolicyCommand;exports.DeleteTableBucketReplicationCommand = DeleteTableBucketReplicationCommand;exports.DeleteTableCommand = DeleteTableCommand;exports.DeleteTablePolicyCommand = DeleteTablePolicyCommand;exports.DeleteTableReplicationCommand = DeleteTableReplicationCommand;exports.GetNamespaceCommand = GetNamespaceCommand;exports.GetTableBucketCommand = GetTableBucketCommand;exports.GetTableBucketEncryptionCommand = GetTableBucketEncryptionCommand;exports.GetTableBucketMaintenanceConfigurationCommand = GetTableBucketMaintenanceConfigurationCommand;exports.GetTableBucketMetricsConfigurationCommand = GetTableBucketMetricsConfigurationCommand;exports.GetTableBucketPolicyCommand = GetTableBucketPolicyCommand;exports.GetTableBucketReplicationCommand = GetTableBucketReplicationCommand;exports.GetTableBucketStorageClassCommand = GetTableBucketStorageClassCommand;exports.GetTableCommand = GetTableCommand;exports.GetTableEncryptionCommand = GetTableEncryptionCommand;exports.GetTableMaintenanceConfigurationCommand = GetTableMaintenanceConfigurationCommand;exports.GetTableMaintenanceJobStatusCommand = GetTableMaintenanceJobStatusCommand;exports.GetTableMetadataLocationCommand = GetTableMetadataLocationCommand;exports.GetTablePolicyCommand = GetTablePolicyCommand;exports.GetTableRecordExpirationConfigurationCommand = GetTableRecordExpirationConfigurationCommand;exports.GetTableRecordExpirationJobStatusCommand = GetTableRecordExpirationJobStatusCommand;exports.GetTableReplicationCommand = GetTableReplicationCommand;exports.GetTableReplicationStatusCommand = GetTableReplicationStatusCommand;exports.GetTableStorageClassCommand = GetTableStorageClassCommand;exports.IcebergCompactionStrategy = IcebergCompactionStrategy;exports.IcebergNullOrder = IcebergNullOrder;exports.IcebergSortDirection = IcebergSortDirection;exports.JobStatus = JobStatus;exports.ListNamespacesCommand = ListNamespacesCommand;exports.ListTableBucketsCommand = ListTableBucketsCommand;exports.ListTablesCommand = ListTablesCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.MaintenanceStatus = MaintenanceStatus;exports.OpenTableFormat = OpenTableFormat;exports.PutTableBucketEncryptionCommand = PutTableBucketEncryptionCommand;exports.PutTableBucketMaintenanceConfigurationCommand = PutTableBucketMaintenanceConfigurationCommand;exports.PutTableBucketMetricsConfigurationCommand = PutTableBucketMetricsConfigurationCommand;exports.PutTableBucketPolicyCommand = PutTableBucketPolicyCommand;exports.PutTableBucketReplicationCommand = PutTableBucketReplicationCommand;exports.PutTableBucketStorageClassCommand = PutTableBucketStorageClassCommand;exports.PutTableMaintenanceConfigurationCommand = PutTableMaintenanceConfigurationCommand;exports.PutTablePolicyCommand = PutTablePolicyCommand;exports.PutTableRecordExpirationConfigurationCommand = PutTableRecordExpirationConfigurationCommand;exports.PutTableReplicationCommand = PutTableReplicationCommand;exports.RenameTableCommand = RenameTableCommand;exports.ReplicationStatus = ReplicationStatus;exports.S3Tables = S3Tables;exports.S3TablesClient = S3TablesClient;exports.SSEAlgorithm = SSEAlgorithm;exports.SchemaV2FieldType = SchemaV2FieldType;exports.StorageClass = StorageClass;exports.TableBucketMaintenanceType = TableBucketMaintenanceType;exports.TableBucketType = TableBucketType;exports.TableMaintenanceJobType = TableMaintenanceJobType;exports.TableMaintenanceType = TableMaintenanceType;exports.TableRecordExpirationJobStatus = TableRecordExpirationJobStatus;exports.TableRecordExpirationStatus = TableRecordExpirationStatus;exports.TableType = TableType;exports.TagResourceCommand = TagResourceCommand;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateTableMetadataLocationCommand = UpdateTableMetadataLocationCommand;exports.paginateListNamespaces = paginateListNamespaces;exports.paginateListTableBuckets = paginateListTableBuckets;exports.paginateListTables = paginateListTables;Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: schemas_0['__proto__']    }); Object.keys(schemas_0).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];});Object.prototype.hasOwnProperty.call(errors, '__proto__') &&    !Object.prototype.hasOwnProperty.call(exports, '__proto__') &&    Object.defineProperty(exports, '__proto__', {        enumerable: true,        value: errors['__proto__']    }); Object.keys(errors).forEach(function (k) {    if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];});