File Explorer

/proc/self/root/proc/self/root/var/runtime/node_modules/@aws-sdk/client-glue/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.js174 KB · 5147 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 GlueServiceException = require('./models/GlueServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "glue",    });};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 GlueClient 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.defaultGlueHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class BatchCreatePartitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchCreatePartition", {})    .n("GlueClient", "BatchCreatePartitionCommand")    .sc(schemas_0.BatchCreatePartition$)    .build() {} class BatchDeleteConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchDeleteConnection", {})    .n("GlueClient", "BatchDeleteConnectionCommand")    .sc(schemas_0.BatchDeleteConnection$)    .build() {} class BatchDeletePartitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchDeletePartition", {})    .n("GlueClient", "BatchDeletePartitionCommand")    .sc(schemas_0.BatchDeletePartition$)    .build() {} class BatchDeleteTableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchDeleteTable", {})    .n("GlueClient", "BatchDeleteTableCommand")    .sc(schemas_0.BatchDeleteTable$)    .build() {} class BatchDeleteTableVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchDeleteTableVersion", {})    .n("GlueClient", "BatchDeleteTableVersionCommand")    .sc(schemas_0.BatchDeleteTableVersion$)    .build() {} class BatchGetBlueprintsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchGetBlueprints", {})    .n("GlueClient", "BatchGetBlueprintsCommand")    .sc(schemas_0.BatchGetBlueprints$)    .build() {} class BatchGetCrawlersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchGetCrawlers", {})    .n("GlueClient", "BatchGetCrawlersCommand")    .sc(schemas_0.BatchGetCrawlers$)    .build() {} class BatchGetCustomEntityTypesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchGetCustomEntityTypes", {})    .n("GlueClient", "BatchGetCustomEntityTypesCommand")    .sc(schemas_0.BatchGetCustomEntityTypes$)    .build() {} class BatchGetDataQualityResultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchGetDataQualityResult", {})    .n("GlueClient", "BatchGetDataQualityResultCommand")    .sc(schemas_0.BatchGetDataQualityResult$)    .build() {} class BatchGetDevEndpointsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchGetDevEndpoints", {})    .n("GlueClient", "BatchGetDevEndpointsCommand")    .sc(schemas_0.BatchGetDevEndpoints$)    .build() {} class BatchGetJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchGetJobs", {})    .n("GlueClient", "BatchGetJobsCommand")    .sc(schemas_0.BatchGetJobs$)    .build() {} class BatchGetPartitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchGetPartition", {})    .n("GlueClient", "BatchGetPartitionCommand")    .sc(schemas_0.BatchGetPartition$)    .build() {} class BatchGetTableOptimizerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchGetTableOptimizer", {})    .n("GlueClient", "BatchGetTableOptimizerCommand")    .sc(schemas_0.BatchGetTableOptimizer$)    .build() {} class BatchGetTriggersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchGetTriggers", {})    .n("GlueClient", "BatchGetTriggersCommand")    .sc(schemas_0.BatchGetTriggers$)    .build() {} class BatchGetWorkflowsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchGetWorkflows", {})    .n("GlueClient", "BatchGetWorkflowsCommand")    .sc(schemas_0.BatchGetWorkflows$)    .build() {} class BatchPutDataQualityStatisticAnnotationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchPutDataQualityStatisticAnnotation", {})    .n("GlueClient", "BatchPutDataQualityStatisticAnnotationCommand")    .sc(schemas_0.BatchPutDataQualityStatisticAnnotation$)    .build() {} class BatchStopJobRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchStopJobRun", {})    .n("GlueClient", "BatchStopJobRunCommand")    .sc(schemas_0.BatchStopJobRun$)    .build() {} class BatchUpdatePartitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "BatchUpdatePartition", {})    .n("GlueClient", "BatchUpdatePartitionCommand")    .sc(schemas_0.BatchUpdatePartition$)    .build() {} class CancelDataQualityRuleRecommendationRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CancelDataQualityRuleRecommendationRun", {})    .n("GlueClient", "CancelDataQualityRuleRecommendationRunCommand")    .sc(schemas_0.CancelDataQualityRuleRecommendationRun$)    .build() {} class CancelDataQualityRulesetEvaluationRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CancelDataQualityRulesetEvaluationRun", {})    .n("GlueClient", "CancelDataQualityRulesetEvaluationRunCommand")    .sc(schemas_0.CancelDataQualityRulesetEvaluationRun$)    .build() {} class CancelMLTaskRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CancelMLTaskRun", {})    .n("GlueClient", "CancelMLTaskRunCommand")    .sc(schemas_0.CancelMLTaskRun$)    .build() {} class CancelStatementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CancelStatement", {})    .n("GlueClient", "CancelStatementCommand")    .sc(schemas_0.CancelStatement$)    .build() {} class CheckSchemaVersionValidityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CheckSchemaVersionValidity", {})    .n("GlueClient", "CheckSchemaVersionValidityCommand")    .sc(schemas_0.CheckSchemaVersionValidity$)    .build() {} class CreateBlueprintCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateBlueprint", {})    .n("GlueClient", "CreateBlueprintCommand")    .sc(schemas_0.CreateBlueprint$)    .build() {} class CreateCatalogCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateCatalog", {})    .n("GlueClient", "CreateCatalogCommand")    .sc(schemas_0.CreateCatalog$)    .build() {} class CreateClassifierCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateClassifier", {})    .n("GlueClient", "CreateClassifierCommand")    .sc(schemas_0.CreateClassifier$)    .build() {} class CreateColumnStatisticsTaskSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateColumnStatisticsTaskSettings", {})    .n("GlueClient", "CreateColumnStatisticsTaskSettingsCommand")    .sc(schemas_0.CreateColumnStatisticsTaskSettings$)    .build() {} class CreateConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateConnection", {})    .n("GlueClient", "CreateConnectionCommand")    .sc(schemas_0.CreateConnection$)    .build() {} class CreateCrawlerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateCrawler", {})    .n("GlueClient", "CreateCrawlerCommand")    .sc(schemas_0.CreateCrawler$)    .build() {} class CreateCustomEntityTypeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateCustomEntityType", {})    .n("GlueClient", "CreateCustomEntityTypeCommand")    .sc(schemas_0.CreateCustomEntityType$)    .build() {} class CreateDatabaseCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateDatabase", {})    .n("GlueClient", "CreateDatabaseCommand")    .sc(schemas_0.CreateDatabase$)    .build() {} class CreateDataQualityRulesetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateDataQualityRuleset", {})    .n("GlueClient", "CreateDataQualityRulesetCommand")    .sc(schemas_0.CreateDataQualityRuleset$)    .build() {} class CreateDevEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateDevEndpoint", {})    .n("GlueClient", "CreateDevEndpointCommand")    .sc(schemas_0.CreateDevEndpoint$)    .build() {} class CreateGlueIdentityCenterConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateGlueIdentityCenterConfiguration", {})    .n("GlueClient", "CreateGlueIdentityCenterConfigurationCommand")    .sc(schemas_0.CreateGlueIdentityCenterConfiguration$)    .build() {} class CreateIntegrationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateIntegration", {})    .n("GlueClient", "CreateIntegrationCommand")    .sc(schemas_0.CreateIntegration$)    .build() {} class CreateIntegrationResourcePropertyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateIntegrationResourceProperty", {})    .n("GlueClient", "CreateIntegrationResourcePropertyCommand")    .sc(schemas_0.CreateIntegrationResourceProperty$)    .build() {} class CreateIntegrationTablePropertiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateIntegrationTableProperties", {})    .n("GlueClient", "CreateIntegrationTablePropertiesCommand")    .sc(schemas_0.CreateIntegrationTableProperties$)    .build() {} class CreateJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateJob", {})    .n("GlueClient", "CreateJobCommand")    .sc(schemas_0.CreateJob$)    .build() {} class CreateMLTransformCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateMLTransform", {})    .n("GlueClient", "CreateMLTransformCommand")    .sc(schemas_0.CreateMLTransform$)    .build() {} class CreatePartitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreatePartition", {})    .n("GlueClient", "CreatePartitionCommand")    .sc(schemas_0.CreatePartition$)    .build() {} class CreatePartitionIndexCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreatePartitionIndex", {})    .n("GlueClient", "CreatePartitionIndexCommand")    .sc(schemas_0.CreatePartitionIndex$)    .build() {} class CreateRegistryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateRegistry", {})    .n("GlueClient", "CreateRegistryCommand")    .sc(schemas_0.CreateRegistry$)    .build() {} class CreateSchemaCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateSchema", {})    .n("GlueClient", "CreateSchemaCommand")    .sc(schemas_0.CreateSchema$)    .build() {} class CreateScriptCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateScript", {})    .n("GlueClient", "CreateScriptCommand")    .sc(schemas_0.CreateScript$)    .build() {} class CreateSecurityConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateSecurityConfiguration", {})    .n("GlueClient", "CreateSecurityConfigurationCommand")    .sc(schemas_0.CreateSecurityConfiguration$)    .build() {} class CreateSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateSession", {})    .n("GlueClient", "CreateSessionCommand")    .sc(schemas_0.CreateSession$)    .build() {} class CreateTableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateTable", {})    .n("GlueClient", "CreateTableCommand")    .sc(schemas_0.CreateTable$)    .build() {} class CreateTableOptimizerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateTableOptimizer", {})    .n("GlueClient", "CreateTableOptimizerCommand")    .sc(schemas_0.CreateTableOptimizer$)    .build() {} class CreateTriggerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateTrigger", {})    .n("GlueClient", "CreateTriggerCommand")    .sc(schemas_0.CreateTrigger$)    .build() {} class CreateUsageProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateUsageProfile", {})    .n("GlueClient", "CreateUsageProfileCommand")    .sc(schemas_0.CreateUsageProfile$)    .build() {} class CreateUserDefinedFunctionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateUserDefinedFunction", {})    .n("GlueClient", "CreateUserDefinedFunctionCommand")    .sc(schemas_0.CreateUserDefinedFunction$)    .build() {} class CreateWorkflowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "CreateWorkflow", {})    .n("GlueClient", "CreateWorkflowCommand")    .sc(schemas_0.CreateWorkflow$)    .build() {} class DeleteBlueprintCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteBlueprint", {})    .n("GlueClient", "DeleteBlueprintCommand")    .sc(schemas_0.DeleteBlueprint$)    .build() {} class DeleteCatalogCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteCatalog", {})    .n("GlueClient", "DeleteCatalogCommand")    .sc(schemas_0.DeleteCatalog$)    .build() {} class DeleteClassifierCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteClassifier", {})    .n("GlueClient", "DeleteClassifierCommand")    .sc(schemas_0.DeleteClassifier$)    .build() {} class DeleteColumnStatisticsForPartitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteColumnStatisticsForPartition", {})    .n("GlueClient", "DeleteColumnStatisticsForPartitionCommand")    .sc(schemas_0.DeleteColumnStatisticsForPartition$)    .build() {} class DeleteColumnStatisticsForTableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteColumnStatisticsForTable", {})    .n("GlueClient", "DeleteColumnStatisticsForTableCommand")    .sc(schemas_0.DeleteColumnStatisticsForTable$)    .build() {} class DeleteColumnStatisticsTaskSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteColumnStatisticsTaskSettings", {})    .n("GlueClient", "DeleteColumnStatisticsTaskSettingsCommand")    .sc(schemas_0.DeleteColumnStatisticsTaskSettings$)    .build() {} class DeleteConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteConnection", {})    .n("GlueClient", "DeleteConnectionCommand")    .sc(schemas_0.DeleteConnection$)    .build() {} class DeleteConnectionTypeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteConnectionType", {})    .n("GlueClient", "DeleteConnectionTypeCommand")    .sc(schemas_0.DeleteConnectionType$)    .build() {} class DeleteCrawlerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteCrawler", {})    .n("GlueClient", "DeleteCrawlerCommand")    .sc(schemas_0.DeleteCrawler$)    .build() {} class DeleteCustomEntityTypeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteCustomEntityType", {})    .n("GlueClient", "DeleteCustomEntityTypeCommand")    .sc(schemas_0.DeleteCustomEntityType$)    .build() {} class DeleteDatabaseCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteDatabase", {})    .n("GlueClient", "DeleteDatabaseCommand")    .sc(schemas_0.DeleteDatabase$)    .build() {} class DeleteDataQualityRulesetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteDataQualityRuleset", {})    .n("GlueClient", "DeleteDataQualityRulesetCommand")    .sc(schemas_0.DeleteDataQualityRuleset$)    .build() {} class DeleteDevEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteDevEndpoint", {})    .n("GlueClient", "DeleteDevEndpointCommand")    .sc(schemas_0.DeleteDevEndpoint$)    .build() {} class DeleteGlueIdentityCenterConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteGlueIdentityCenterConfiguration", {})    .n("GlueClient", "DeleteGlueIdentityCenterConfigurationCommand")    .sc(schemas_0.DeleteGlueIdentityCenterConfiguration$)    .build() {} class DeleteIntegrationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteIntegration", {})    .n("GlueClient", "DeleteIntegrationCommand")    .sc(schemas_0.DeleteIntegration$)    .build() {} class DeleteIntegrationResourcePropertyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteIntegrationResourceProperty", {})    .n("GlueClient", "DeleteIntegrationResourcePropertyCommand")    .sc(schemas_0.DeleteIntegrationResourceProperty$)    .build() {} class DeleteIntegrationTablePropertiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteIntegrationTableProperties", {})    .n("GlueClient", "DeleteIntegrationTablePropertiesCommand")    .sc(schemas_0.DeleteIntegrationTableProperties$)    .build() {} class DeleteJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteJob", {})    .n("GlueClient", "DeleteJobCommand")    .sc(schemas_0.DeleteJob$)    .build() {} class DeleteMLTransformCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteMLTransform", {})    .n("GlueClient", "DeleteMLTransformCommand")    .sc(schemas_0.DeleteMLTransform$)    .build() {} class DeletePartitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeletePartition", {})    .n("GlueClient", "DeletePartitionCommand")    .sc(schemas_0.DeletePartition$)    .build() {} class DeletePartitionIndexCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeletePartitionIndex", {})    .n("GlueClient", "DeletePartitionIndexCommand")    .sc(schemas_0.DeletePartitionIndex$)    .build() {} class DeleteRegistryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteRegistry", {})    .n("GlueClient", "DeleteRegistryCommand")    .sc(schemas_0.DeleteRegistry$)    .build() {} class DeleteResourcePolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteResourcePolicy", {})    .n("GlueClient", "DeleteResourcePolicyCommand")    .sc(schemas_0.DeleteResourcePolicy$)    .build() {} class DeleteSchemaCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteSchema", {})    .n("GlueClient", "DeleteSchemaCommand")    .sc(schemas_0.DeleteSchema$)    .build() {} class DeleteSchemaVersionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteSchemaVersions", {})    .n("GlueClient", "DeleteSchemaVersionsCommand")    .sc(schemas_0.DeleteSchemaVersions$)    .build() {} class DeleteSecurityConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteSecurityConfiguration", {})    .n("GlueClient", "DeleteSecurityConfigurationCommand")    .sc(schemas_0.DeleteSecurityConfiguration$)    .build() {} class DeleteSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteSession", {})    .n("GlueClient", "DeleteSessionCommand")    .sc(schemas_0.DeleteSession$)    .build() {} class DeleteTableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteTable", {})    .n("GlueClient", "DeleteTableCommand")    .sc(schemas_0.DeleteTable$)    .build() {} class DeleteTableOptimizerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteTableOptimizer", {})    .n("GlueClient", "DeleteTableOptimizerCommand")    .sc(schemas_0.DeleteTableOptimizer$)    .build() {} class DeleteTableVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteTableVersion", {})    .n("GlueClient", "DeleteTableVersionCommand")    .sc(schemas_0.DeleteTableVersion$)    .build() {} class DeleteTriggerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteTrigger", {})    .n("GlueClient", "DeleteTriggerCommand")    .sc(schemas_0.DeleteTrigger$)    .build() {} class DeleteUsageProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteUsageProfile", {})    .n("GlueClient", "DeleteUsageProfileCommand")    .sc(schemas_0.DeleteUsageProfile$)    .build() {} class DeleteUserDefinedFunctionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteUserDefinedFunction", {})    .n("GlueClient", "DeleteUserDefinedFunctionCommand")    .sc(schemas_0.DeleteUserDefinedFunction$)    .build() {} class DeleteWorkflowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DeleteWorkflow", {})    .n("GlueClient", "DeleteWorkflowCommand")    .sc(schemas_0.DeleteWorkflow$)    .build() {} class DescribeConnectionTypeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DescribeConnectionType", {})    .n("GlueClient", "DescribeConnectionTypeCommand")    .sc(schemas_0.DescribeConnectionType$)    .build() {} class DescribeEntityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DescribeEntity", {})    .n("GlueClient", "DescribeEntityCommand")    .sc(schemas_0.DescribeEntity$)    .build() {} class DescribeInboundIntegrationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DescribeInboundIntegrations", {})    .n("GlueClient", "DescribeInboundIntegrationsCommand")    .sc(schemas_0.DescribeInboundIntegrations$)    .build() {} class DescribeIntegrationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "DescribeIntegrations", {})    .n("GlueClient", "DescribeIntegrationsCommand")    .sc(schemas_0.DescribeIntegrations$)    .build() {} class GetBlueprintCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetBlueprint", {})    .n("GlueClient", "GetBlueprintCommand")    .sc(schemas_0.GetBlueprint$)    .build() {} class GetBlueprintRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetBlueprintRun", {})    .n("GlueClient", "GetBlueprintRunCommand")    .sc(schemas_0.GetBlueprintRun$)    .build() {} class GetBlueprintRunsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetBlueprintRuns", {})    .n("GlueClient", "GetBlueprintRunsCommand")    .sc(schemas_0.GetBlueprintRuns$)    .build() {} class GetCatalogCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetCatalog", {})    .n("GlueClient", "GetCatalogCommand")    .sc(schemas_0.GetCatalog$)    .build() {} class GetCatalogImportStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetCatalogImportStatus", {})    .n("GlueClient", "GetCatalogImportStatusCommand")    .sc(schemas_0.GetCatalogImportStatus$)    .build() {} class GetCatalogsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetCatalogs", {})    .n("GlueClient", "GetCatalogsCommand")    .sc(schemas_0.GetCatalogs$)    .build() {} class GetClassifierCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetClassifier", {})    .n("GlueClient", "GetClassifierCommand")    .sc(schemas_0.GetClassifier$)    .build() {} class GetClassifiersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetClassifiers", {})    .n("GlueClient", "GetClassifiersCommand")    .sc(schemas_0.GetClassifiers$)    .build() {} class GetColumnStatisticsForPartitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetColumnStatisticsForPartition", {})    .n("GlueClient", "GetColumnStatisticsForPartitionCommand")    .sc(schemas_0.GetColumnStatisticsForPartition$)    .build() {} class GetColumnStatisticsForTableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetColumnStatisticsForTable", {})    .n("GlueClient", "GetColumnStatisticsForTableCommand")    .sc(schemas_0.GetColumnStatisticsForTable$)    .build() {} class GetColumnStatisticsTaskRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetColumnStatisticsTaskRun", {})    .n("GlueClient", "GetColumnStatisticsTaskRunCommand")    .sc(schemas_0.GetColumnStatisticsTaskRun$)    .build() {} class GetColumnStatisticsTaskRunsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetColumnStatisticsTaskRuns", {})    .n("GlueClient", "GetColumnStatisticsTaskRunsCommand")    .sc(schemas_0.GetColumnStatisticsTaskRuns$)    .build() {} class GetColumnStatisticsTaskSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetColumnStatisticsTaskSettings", {})    .n("GlueClient", "GetColumnStatisticsTaskSettingsCommand")    .sc(schemas_0.GetColumnStatisticsTaskSettings$)    .build() {} class GetConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetConnection", {})    .n("GlueClient", "GetConnectionCommand")    .sc(schemas_0.GetConnection$)    .build() {} class GetConnectionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetConnections", {})    .n("GlueClient", "GetConnectionsCommand")    .sc(schemas_0.GetConnections$)    .build() {} class GetCrawlerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetCrawler", {})    .n("GlueClient", "GetCrawlerCommand")    .sc(schemas_0.GetCrawler$)    .build() {} class GetCrawlerMetricsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetCrawlerMetrics", {})    .n("GlueClient", "GetCrawlerMetricsCommand")    .sc(schemas_0.GetCrawlerMetrics$)    .build() {} class GetCrawlersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetCrawlers", {})    .n("GlueClient", "GetCrawlersCommand")    .sc(schemas_0.GetCrawlers$)    .build() {} class GetCustomEntityTypeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetCustomEntityType", {})    .n("GlueClient", "GetCustomEntityTypeCommand")    .sc(schemas_0.GetCustomEntityType$)    .build() {} class GetDatabaseCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetDatabase", {})    .n("GlueClient", "GetDatabaseCommand")    .sc(schemas_0.GetDatabase$)    .build() {} class GetDatabasesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetDatabases", {})    .n("GlueClient", "GetDatabasesCommand")    .sc(schemas_0.GetDatabases$)    .build() {} class GetDataCatalogEncryptionSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetDataCatalogEncryptionSettings", {})    .n("GlueClient", "GetDataCatalogEncryptionSettingsCommand")    .sc(schemas_0.GetDataCatalogEncryptionSettings$)    .build() {} class GetDataflowGraphCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetDataflowGraph", {})    .n("GlueClient", "GetDataflowGraphCommand")    .sc(schemas_0.GetDataflowGraph$)    .build() {} class GetDataQualityModelCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetDataQualityModel", {})    .n("GlueClient", "GetDataQualityModelCommand")    .sc(schemas_0.GetDataQualityModel$)    .build() {} class GetDataQualityModelResultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetDataQualityModelResult", {})    .n("GlueClient", "GetDataQualityModelResultCommand")    .sc(schemas_0.GetDataQualityModelResult$)    .build() {} class GetDataQualityResultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetDataQualityResult", {})    .n("GlueClient", "GetDataQualityResultCommand")    .sc(schemas_0.GetDataQualityResult$)    .build() {} class GetDataQualityRuleRecommendationRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetDataQualityRuleRecommendationRun", {})    .n("GlueClient", "GetDataQualityRuleRecommendationRunCommand")    .sc(schemas_0.GetDataQualityRuleRecommendationRun$)    .build() {} class GetDataQualityRulesetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetDataQualityRuleset", {})    .n("GlueClient", "GetDataQualityRulesetCommand")    .sc(schemas_0.GetDataQualityRuleset$)    .build() {} class GetDataQualityRulesetEvaluationRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetDataQualityRulesetEvaluationRun", {})    .n("GlueClient", "GetDataQualityRulesetEvaluationRunCommand")    .sc(schemas_0.GetDataQualityRulesetEvaluationRun$)    .build() {} class GetDevEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetDevEndpoint", {})    .n("GlueClient", "GetDevEndpointCommand")    .sc(schemas_0.GetDevEndpoint$)    .build() {} class GetDevEndpointsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetDevEndpoints", {})    .n("GlueClient", "GetDevEndpointsCommand")    .sc(schemas_0.GetDevEndpoints$)    .build() {} class GetEntityRecordsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetEntityRecords", {})    .n("GlueClient", "GetEntityRecordsCommand")    .sc(schemas_0.GetEntityRecords$)    .build() {} class GetGlueIdentityCenterConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetGlueIdentityCenterConfiguration", {})    .n("GlueClient", "GetGlueIdentityCenterConfigurationCommand")    .sc(schemas_0.GetGlueIdentityCenterConfiguration$)    .build() {} class GetIntegrationResourcePropertyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetIntegrationResourceProperty", {})    .n("GlueClient", "GetIntegrationResourcePropertyCommand")    .sc(schemas_0.GetIntegrationResourceProperty$)    .build() {} class GetIntegrationTablePropertiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetIntegrationTableProperties", {})    .n("GlueClient", "GetIntegrationTablePropertiesCommand")    .sc(schemas_0.GetIntegrationTableProperties$)    .build() {} class GetJobBookmarkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetJobBookmark", {})    .n("GlueClient", "GetJobBookmarkCommand")    .sc(schemas_0.GetJobBookmark$)    .build() {} class GetJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetJob", {})    .n("GlueClient", "GetJobCommand")    .sc(schemas_0.GetJob$)    .build() {} class GetJobRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetJobRun", {})    .n("GlueClient", "GetJobRunCommand")    .sc(schemas_0.GetJobRun$)    .build() {} class GetJobRunsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetJobRuns", {})    .n("GlueClient", "GetJobRunsCommand")    .sc(schemas_0.GetJobRuns$)    .build() {} class GetJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetJobs", {})    .n("GlueClient", "GetJobsCommand")    .sc(schemas_0.GetJobs$)    .build() {} class GetMappingCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetMapping", {})    .n("GlueClient", "GetMappingCommand")    .sc(schemas_0.GetMapping$)    .build() {} class GetMaterializedViewRefreshTaskRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetMaterializedViewRefreshTaskRun", {})    .n("GlueClient", "GetMaterializedViewRefreshTaskRunCommand")    .sc(schemas_0.GetMaterializedViewRefreshTaskRun$)    .build() {} class GetMLTaskRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetMLTaskRun", {})    .n("GlueClient", "GetMLTaskRunCommand")    .sc(schemas_0.GetMLTaskRun$)    .build() {} class GetMLTaskRunsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetMLTaskRuns", {})    .n("GlueClient", "GetMLTaskRunsCommand")    .sc(schemas_0.GetMLTaskRuns$)    .build() {} class GetMLTransformCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetMLTransform", {})    .n("GlueClient", "GetMLTransformCommand")    .sc(schemas_0.GetMLTransform$)    .build() {} class GetMLTransformsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetMLTransforms", {})    .n("GlueClient", "GetMLTransformsCommand")    .sc(schemas_0.GetMLTransforms$)    .build() {} class GetPartitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetPartition", {})    .n("GlueClient", "GetPartitionCommand")    .sc(schemas_0.GetPartition$)    .build() {} class GetPartitionIndexesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetPartitionIndexes", {})    .n("GlueClient", "GetPartitionIndexesCommand")    .sc(schemas_0.GetPartitionIndexes$)    .build() {} class GetPartitionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetPartitions", {})    .n("GlueClient", "GetPartitionsCommand")    .sc(schemas_0.GetPartitions$)    .build() {} class GetPlanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetPlan", {})    .n("GlueClient", "GetPlanCommand")    .sc(schemas_0.GetPlan$)    .build() {} class GetRegistryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetRegistry", {})    .n("GlueClient", "GetRegistryCommand")    .sc(schemas_0.GetRegistry$)    .build() {} class GetResourcePoliciesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetResourcePolicies", {})    .n("GlueClient", "GetResourcePoliciesCommand")    .sc(schemas_0.GetResourcePolicies$)    .build() {} class GetResourcePolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetResourcePolicy", {})    .n("GlueClient", "GetResourcePolicyCommand")    .sc(schemas_0.GetResourcePolicy$)    .build() {} class GetSchemaByDefinitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetSchemaByDefinition", {})    .n("GlueClient", "GetSchemaByDefinitionCommand")    .sc(schemas_0.GetSchemaByDefinition$)    .build() {} class GetSchemaCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetSchema", {})    .n("GlueClient", "GetSchemaCommand")    .sc(schemas_0.GetSchema$)    .build() {} class GetSchemaVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetSchemaVersion", {})    .n("GlueClient", "GetSchemaVersionCommand")    .sc(schemas_0.GetSchemaVersion$)    .build() {} class GetSchemaVersionsDiffCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetSchemaVersionsDiff", {})    .n("GlueClient", "GetSchemaVersionsDiffCommand")    .sc(schemas_0.GetSchemaVersionsDiff$)    .build() {} class GetSecurityConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetSecurityConfiguration", {})    .n("GlueClient", "GetSecurityConfigurationCommand")    .sc(schemas_0.GetSecurityConfiguration$)    .build() {} class GetSecurityConfigurationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetSecurityConfigurations", {})    .n("GlueClient", "GetSecurityConfigurationsCommand")    .sc(schemas_0.GetSecurityConfigurations$)    .build() {} class GetSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetSession", {})    .n("GlueClient", "GetSessionCommand")    .sc(schemas_0.GetSession$)    .build() {} class GetStatementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetStatement", {})    .n("GlueClient", "GetStatementCommand")    .sc(schemas_0.GetStatement$)    .build() {} class GetTableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetTable", {})    .n("GlueClient", "GetTableCommand")    .sc(schemas_0.GetTable$)    .build() {} class GetTableOptimizerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetTableOptimizer", {})    .n("GlueClient", "GetTableOptimizerCommand")    .sc(schemas_0.GetTableOptimizer$)    .build() {} class GetTablesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetTables", {})    .n("GlueClient", "GetTablesCommand")    .sc(schemas_0.GetTables$)    .build() {} class GetTableVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetTableVersion", {})    .n("GlueClient", "GetTableVersionCommand")    .sc(schemas_0.GetTableVersion$)    .build() {} class GetTableVersionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetTableVersions", {})    .n("GlueClient", "GetTableVersionsCommand")    .sc(schemas_0.GetTableVersions$)    .build() {} class GetTagsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetTags", {})    .n("GlueClient", "GetTagsCommand")    .sc(schemas_0.GetTags$)    .build() {} class GetTriggerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetTrigger", {})    .n("GlueClient", "GetTriggerCommand")    .sc(schemas_0.GetTrigger$)    .build() {} class GetTriggersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetTriggers", {})    .n("GlueClient", "GetTriggersCommand")    .sc(schemas_0.GetTriggers$)    .build() {} class GetUnfilteredPartitionMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetUnfilteredPartitionMetadata", {})    .n("GlueClient", "GetUnfilteredPartitionMetadataCommand")    .sc(schemas_0.GetUnfilteredPartitionMetadata$)    .build() {} class GetUnfilteredPartitionsMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetUnfilteredPartitionsMetadata", {})    .n("GlueClient", "GetUnfilteredPartitionsMetadataCommand")    .sc(schemas_0.GetUnfilteredPartitionsMetadata$)    .build() {} class GetUnfilteredTableMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetUnfilteredTableMetadata", {})    .n("GlueClient", "GetUnfilteredTableMetadataCommand")    .sc(schemas_0.GetUnfilteredTableMetadata$)    .build() {} class GetUsageProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetUsageProfile", {})    .n("GlueClient", "GetUsageProfileCommand")    .sc(schemas_0.GetUsageProfile$)    .build() {} class GetUserDefinedFunctionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetUserDefinedFunction", {})    .n("GlueClient", "GetUserDefinedFunctionCommand")    .sc(schemas_0.GetUserDefinedFunction$)    .build() {} class GetUserDefinedFunctionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetUserDefinedFunctions", {})    .n("GlueClient", "GetUserDefinedFunctionsCommand")    .sc(schemas_0.GetUserDefinedFunctions$)    .build() {} class GetWorkflowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetWorkflow", {})    .n("GlueClient", "GetWorkflowCommand")    .sc(schemas_0.GetWorkflow$)    .build() {} class GetWorkflowRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetWorkflowRun", {})    .n("GlueClient", "GetWorkflowRunCommand")    .sc(schemas_0.GetWorkflowRun$)    .build() {} class GetWorkflowRunPropertiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetWorkflowRunProperties", {})    .n("GlueClient", "GetWorkflowRunPropertiesCommand")    .sc(schemas_0.GetWorkflowRunProperties$)    .build() {} class GetWorkflowRunsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "GetWorkflowRuns", {})    .n("GlueClient", "GetWorkflowRunsCommand")    .sc(schemas_0.GetWorkflowRuns$)    .build() {} class ImportCatalogToGlueCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ImportCatalogToGlue", {})    .n("GlueClient", "ImportCatalogToGlueCommand")    .sc(schemas_0.ImportCatalogToGlue$)    .build() {} class ListBlueprintsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListBlueprints", {})    .n("GlueClient", "ListBlueprintsCommand")    .sc(schemas_0.ListBlueprints$)    .build() {} class ListColumnStatisticsTaskRunsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListColumnStatisticsTaskRuns", {})    .n("GlueClient", "ListColumnStatisticsTaskRunsCommand")    .sc(schemas_0.ListColumnStatisticsTaskRuns$)    .build() {} class ListConnectionTypesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListConnectionTypes", {})    .n("GlueClient", "ListConnectionTypesCommand")    .sc(schemas_0.ListConnectionTypes$)    .build() {} class ListCrawlersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListCrawlers", {})    .n("GlueClient", "ListCrawlersCommand")    .sc(schemas_0.ListCrawlers$)    .build() {} class ListCrawlsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListCrawls", {})    .n("GlueClient", "ListCrawlsCommand")    .sc(schemas_0.ListCrawls$)    .build() {} class ListCustomEntityTypesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListCustomEntityTypes", {})    .n("GlueClient", "ListCustomEntityTypesCommand")    .sc(schemas_0.ListCustomEntityTypes$)    .build() {} class ListDataQualityResultsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListDataQualityResults", {})    .n("GlueClient", "ListDataQualityResultsCommand")    .sc(schemas_0.ListDataQualityResults$)    .build() {} class ListDataQualityRuleRecommendationRunsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListDataQualityRuleRecommendationRuns", {})    .n("GlueClient", "ListDataQualityRuleRecommendationRunsCommand")    .sc(schemas_0.ListDataQualityRuleRecommendationRuns$)    .build() {} class ListDataQualityRulesetEvaluationRunsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListDataQualityRulesetEvaluationRuns", {})    .n("GlueClient", "ListDataQualityRulesetEvaluationRunsCommand")    .sc(schemas_0.ListDataQualityRulesetEvaluationRuns$)    .build() {} class ListDataQualityRulesetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListDataQualityRulesets", {})    .n("GlueClient", "ListDataQualityRulesetsCommand")    .sc(schemas_0.ListDataQualityRulesets$)    .build() {} class ListDataQualityStatisticAnnotationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListDataQualityStatisticAnnotations", {})    .n("GlueClient", "ListDataQualityStatisticAnnotationsCommand")    .sc(schemas_0.ListDataQualityStatisticAnnotations$)    .build() {} class ListDataQualityStatisticsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListDataQualityStatistics", {})    .n("GlueClient", "ListDataQualityStatisticsCommand")    .sc(schemas_0.ListDataQualityStatistics$)    .build() {} class ListDevEndpointsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListDevEndpoints", {})    .n("GlueClient", "ListDevEndpointsCommand")    .sc(schemas_0.ListDevEndpoints$)    .build() {} class ListEntitiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListEntities", {})    .n("GlueClient", "ListEntitiesCommand")    .sc(schemas_0.ListEntities$)    .build() {} class ListIntegrationResourcePropertiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListIntegrationResourceProperties", {})    .n("GlueClient", "ListIntegrationResourcePropertiesCommand")    .sc(schemas_0.ListIntegrationResourceProperties$)    .build() {} class ListJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListJobs", {})    .n("GlueClient", "ListJobsCommand")    .sc(schemas_0.ListJobs$)    .build() {} class ListMaterializedViewRefreshTaskRunsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListMaterializedViewRefreshTaskRuns", {})    .n("GlueClient", "ListMaterializedViewRefreshTaskRunsCommand")    .sc(schemas_0.ListMaterializedViewRefreshTaskRuns$)    .build() {} class ListMLTransformsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListMLTransforms", {})    .n("GlueClient", "ListMLTransformsCommand")    .sc(schemas_0.ListMLTransforms$)    .build() {} class ListRegistriesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListRegistries", {})    .n("GlueClient", "ListRegistriesCommand")    .sc(schemas_0.ListRegistries$)    .build() {} class ListSchemasCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListSchemas", {})    .n("GlueClient", "ListSchemasCommand")    .sc(schemas_0.ListSchemas$)    .build() {} class ListSchemaVersionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListSchemaVersions", {})    .n("GlueClient", "ListSchemaVersionsCommand")    .sc(schemas_0.ListSchemaVersions$)    .build() {} class ListSessionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListSessions", {})    .n("GlueClient", "ListSessionsCommand")    .sc(schemas_0.ListSessions$)    .build() {} class ListStatementsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListStatements", {})    .n("GlueClient", "ListStatementsCommand")    .sc(schemas_0.ListStatements$)    .build() {} class ListTableOptimizerRunsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListTableOptimizerRuns", {})    .n("GlueClient", "ListTableOptimizerRunsCommand")    .sc(schemas_0.ListTableOptimizerRuns$)    .build() {} class ListTriggersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListTriggers", {})    .n("GlueClient", "ListTriggersCommand")    .sc(schemas_0.ListTriggers$)    .build() {} class ListUsageProfilesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListUsageProfiles", {})    .n("GlueClient", "ListUsageProfilesCommand")    .sc(schemas_0.ListUsageProfiles$)    .build() {} class ListWorkflowsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ListWorkflows", {})    .n("GlueClient", "ListWorkflowsCommand")    .sc(schemas_0.ListWorkflows$)    .build() {} class ModifyIntegrationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ModifyIntegration", {})    .n("GlueClient", "ModifyIntegrationCommand")    .sc(schemas_0.ModifyIntegration$)    .build() {} class PutDataCatalogEncryptionSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "PutDataCatalogEncryptionSettings", {})    .n("GlueClient", "PutDataCatalogEncryptionSettingsCommand")    .sc(schemas_0.PutDataCatalogEncryptionSettings$)    .build() {} class PutDataQualityProfileAnnotationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "PutDataQualityProfileAnnotation", {})    .n("GlueClient", "PutDataQualityProfileAnnotationCommand")    .sc(schemas_0.PutDataQualityProfileAnnotation$)    .build() {} class PutResourcePolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "PutResourcePolicy", {})    .n("GlueClient", "PutResourcePolicyCommand")    .sc(schemas_0.PutResourcePolicy$)    .build() {} class PutSchemaVersionMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "PutSchemaVersionMetadata", {})    .n("GlueClient", "PutSchemaVersionMetadataCommand")    .sc(schemas_0.PutSchemaVersionMetadata$)    .build() {} class PutWorkflowRunPropertiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "PutWorkflowRunProperties", {})    .n("GlueClient", "PutWorkflowRunPropertiesCommand")    .sc(schemas_0.PutWorkflowRunProperties$)    .build() {} class QuerySchemaVersionMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "QuerySchemaVersionMetadata", {})    .n("GlueClient", "QuerySchemaVersionMetadataCommand")    .sc(schemas_0.QuerySchemaVersionMetadata$)    .build() {} class RegisterConnectionTypeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "RegisterConnectionType", {})    .n("GlueClient", "RegisterConnectionTypeCommand")    .sc(schemas_0.RegisterConnectionType$)    .build() {} class RegisterSchemaVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "RegisterSchemaVersion", {})    .n("GlueClient", "RegisterSchemaVersionCommand")    .sc(schemas_0.RegisterSchemaVersion$)    .build() {} class RemoveSchemaVersionMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "RemoveSchemaVersionMetadata", {})    .n("GlueClient", "RemoveSchemaVersionMetadataCommand")    .sc(schemas_0.RemoveSchemaVersionMetadata$)    .build() {} class ResetJobBookmarkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ResetJobBookmark", {})    .n("GlueClient", "ResetJobBookmarkCommand")    .sc(schemas_0.ResetJobBookmark$)    .build() {} class ResumeWorkflowRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "ResumeWorkflowRun", {})    .n("GlueClient", "ResumeWorkflowRunCommand")    .sc(schemas_0.ResumeWorkflowRun$)    .build() {} class RunStatementCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "RunStatement", {})    .n("GlueClient", "RunStatementCommand")    .sc(schemas_0.RunStatement$)    .build() {} class SearchTablesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "SearchTables", {})    .n("GlueClient", "SearchTablesCommand")    .sc(schemas_0.SearchTables$)    .build() {} class StartBlueprintRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartBlueprintRun", {})    .n("GlueClient", "StartBlueprintRunCommand")    .sc(schemas_0.StartBlueprintRun$)    .build() {} class StartColumnStatisticsTaskRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartColumnStatisticsTaskRun", {})    .n("GlueClient", "StartColumnStatisticsTaskRunCommand")    .sc(schemas_0.StartColumnStatisticsTaskRun$)    .build() {} class StartColumnStatisticsTaskRunScheduleCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartColumnStatisticsTaskRunSchedule", {})    .n("GlueClient", "StartColumnStatisticsTaskRunScheduleCommand")    .sc(schemas_0.StartColumnStatisticsTaskRunSchedule$)    .build() {} class StartCrawlerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartCrawler", {})    .n("GlueClient", "StartCrawlerCommand")    .sc(schemas_0.StartCrawler$)    .build() {} class StartCrawlerScheduleCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartCrawlerSchedule", {})    .n("GlueClient", "StartCrawlerScheduleCommand")    .sc(schemas_0.StartCrawlerSchedule$)    .build() {} class StartDataQualityRuleRecommendationRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartDataQualityRuleRecommendationRun", {})    .n("GlueClient", "StartDataQualityRuleRecommendationRunCommand")    .sc(schemas_0.StartDataQualityRuleRecommendationRun$)    .build() {} class StartDataQualityRulesetEvaluationRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartDataQualityRulesetEvaluationRun", {})    .n("GlueClient", "StartDataQualityRulesetEvaluationRunCommand")    .sc(schemas_0.StartDataQualityRulesetEvaluationRun$)    .build() {} class StartExportLabelsTaskRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartExportLabelsTaskRun", {})    .n("GlueClient", "StartExportLabelsTaskRunCommand")    .sc(schemas_0.StartExportLabelsTaskRun$)    .build() {} class StartImportLabelsTaskRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartImportLabelsTaskRun", {})    .n("GlueClient", "StartImportLabelsTaskRunCommand")    .sc(schemas_0.StartImportLabelsTaskRun$)    .build() {} class StartJobRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartJobRun", {})    .n("GlueClient", "StartJobRunCommand")    .sc(schemas_0.StartJobRun$)    .build() {} class StartMaterializedViewRefreshTaskRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartMaterializedViewRefreshTaskRun", {})    .n("GlueClient", "StartMaterializedViewRefreshTaskRunCommand")    .sc(schemas_0.StartMaterializedViewRefreshTaskRun$)    .build() {} class StartMLEvaluationTaskRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartMLEvaluationTaskRun", {})    .n("GlueClient", "StartMLEvaluationTaskRunCommand")    .sc(schemas_0.StartMLEvaluationTaskRun$)    .build() {} class StartMLLabelingSetGenerationTaskRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartMLLabelingSetGenerationTaskRun", {})    .n("GlueClient", "StartMLLabelingSetGenerationTaskRunCommand")    .sc(schemas_0.StartMLLabelingSetGenerationTaskRun$)    .build() {} class StartTriggerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartTrigger", {})    .n("GlueClient", "StartTriggerCommand")    .sc(schemas_0.StartTrigger$)    .build() {} class StartWorkflowRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StartWorkflowRun", {})    .n("GlueClient", "StartWorkflowRunCommand")    .sc(schemas_0.StartWorkflowRun$)    .build() {} class StopColumnStatisticsTaskRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StopColumnStatisticsTaskRun", {})    .n("GlueClient", "StopColumnStatisticsTaskRunCommand")    .sc(schemas_0.StopColumnStatisticsTaskRun$)    .build() {} class StopColumnStatisticsTaskRunScheduleCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StopColumnStatisticsTaskRunSchedule", {})    .n("GlueClient", "StopColumnStatisticsTaskRunScheduleCommand")    .sc(schemas_0.StopColumnStatisticsTaskRunSchedule$)    .build() {} class StopCrawlerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StopCrawler", {})    .n("GlueClient", "StopCrawlerCommand")    .sc(schemas_0.StopCrawler$)    .build() {} class StopCrawlerScheduleCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StopCrawlerSchedule", {})    .n("GlueClient", "StopCrawlerScheduleCommand")    .sc(schemas_0.StopCrawlerSchedule$)    .build() {} class StopMaterializedViewRefreshTaskRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StopMaterializedViewRefreshTaskRun", {})    .n("GlueClient", "StopMaterializedViewRefreshTaskRunCommand")    .sc(schemas_0.StopMaterializedViewRefreshTaskRun$)    .build() {} class StopSessionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StopSession", {})    .n("GlueClient", "StopSessionCommand")    .sc(schemas_0.StopSession$)    .build() {} class StopTriggerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StopTrigger", {})    .n("GlueClient", "StopTriggerCommand")    .sc(schemas_0.StopTrigger$)    .build() {} class StopWorkflowRunCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "StopWorkflowRun", {})    .n("GlueClient", "StopWorkflowRunCommand")    .sc(schemas_0.StopWorkflowRun$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "TagResource", {})    .n("GlueClient", "TagResourceCommand")    .sc(schemas_0.TagResource$)    .build() {} class TestConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "TestConnection", {})    .n("GlueClient", "TestConnectionCommand")    .sc(schemas_0.TestConnection$)    .build() {} class UntagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UntagResource", {})    .n("GlueClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateBlueprintCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateBlueprint", {})    .n("GlueClient", "UpdateBlueprintCommand")    .sc(schemas_0.UpdateBlueprint$)    .build() {} class UpdateCatalogCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateCatalog", {})    .n("GlueClient", "UpdateCatalogCommand")    .sc(schemas_0.UpdateCatalog$)    .build() {} class UpdateClassifierCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateClassifier", {})    .n("GlueClient", "UpdateClassifierCommand")    .sc(schemas_0.UpdateClassifier$)    .build() {} class UpdateColumnStatisticsForPartitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateColumnStatisticsForPartition", {})    .n("GlueClient", "UpdateColumnStatisticsForPartitionCommand")    .sc(schemas_0.UpdateColumnStatisticsForPartition$)    .build() {} class UpdateColumnStatisticsForTableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateColumnStatisticsForTable", {})    .n("GlueClient", "UpdateColumnStatisticsForTableCommand")    .sc(schemas_0.UpdateColumnStatisticsForTable$)    .build() {} class UpdateColumnStatisticsTaskSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateColumnStatisticsTaskSettings", {})    .n("GlueClient", "UpdateColumnStatisticsTaskSettingsCommand")    .sc(schemas_0.UpdateColumnStatisticsTaskSettings$)    .build() {} class UpdateConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateConnection", {})    .n("GlueClient", "UpdateConnectionCommand")    .sc(schemas_0.UpdateConnection$)    .build() {} class UpdateCrawlerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateCrawler", {})    .n("GlueClient", "UpdateCrawlerCommand")    .sc(schemas_0.UpdateCrawler$)    .build() {} class UpdateCrawlerScheduleCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateCrawlerSchedule", {})    .n("GlueClient", "UpdateCrawlerScheduleCommand")    .sc(schemas_0.UpdateCrawlerSchedule$)    .build() {} class UpdateDatabaseCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateDatabase", {})    .n("GlueClient", "UpdateDatabaseCommand")    .sc(schemas_0.UpdateDatabase$)    .build() {} class UpdateDataQualityRulesetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateDataQualityRuleset", {})    .n("GlueClient", "UpdateDataQualityRulesetCommand")    .sc(schemas_0.UpdateDataQualityRuleset$)    .build() {} class UpdateDevEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateDevEndpoint", {})    .n("GlueClient", "UpdateDevEndpointCommand")    .sc(schemas_0.UpdateDevEndpoint$)    .build() {} class UpdateGlueIdentityCenterConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateGlueIdentityCenterConfiguration", {})    .n("GlueClient", "UpdateGlueIdentityCenterConfigurationCommand")    .sc(schemas_0.UpdateGlueIdentityCenterConfiguration$)    .build() {} class UpdateIntegrationResourcePropertyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateIntegrationResourceProperty", {})    .n("GlueClient", "UpdateIntegrationResourcePropertyCommand")    .sc(schemas_0.UpdateIntegrationResourceProperty$)    .build() {} class UpdateIntegrationTablePropertiesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateIntegrationTableProperties", {})    .n("GlueClient", "UpdateIntegrationTablePropertiesCommand")    .sc(schemas_0.UpdateIntegrationTableProperties$)    .build() {} class UpdateJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateJob", {})    .n("GlueClient", "UpdateJobCommand")    .sc(schemas_0.UpdateJob$)    .build() {} class UpdateJobFromSourceControlCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateJobFromSourceControl", {})    .n("GlueClient", "UpdateJobFromSourceControlCommand")    .sc(schemas_0.UpdateJobFromSourceControl$)    .build() {} class UpdateMLTransformCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateMLTransform", {})    .n("GlueClient", "UpdateMLTransformCommand")    .sc(schemas_0.UpdateMLTransform$)    .build() {} class UpdatePartitionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdatePartition", {})    .n("GlueClient", "UpdatePartitionCommand")    .sc(schemas_0.UpdatePartition$)    .build() {} class UpdateRegistryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateRegistry", {})    .n("GlueClient", "UpdateRegistryCommand")    .sc(schemas_0.UpdateRegistry$)    .build() {} class UpdateSchemaCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateSchema", {})    .n("GlueClient", "UpdateSchemaCommand")    .sc(schemas_0.UpdateSchema$)    .build() {} class UpdateSourceControlFromJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateSourceControlFromJob", {})    .n("GlueClient", "UpdateSourceControlFromJobCommand")    .sc(schemas_0.UpdateSourceControlFromJob$)    .build() {} class UpdateTableCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateTable", {})    .n("GlueClient", "UpdateTableCommand")    .sc(schemas_0.UpdateTable$)    .build() {} class UpdateTableOptimizerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateTableOptimizer", {})    .n("GlueClient", "UpdateTableOptimizerCommand")    .sc(schemas_0.UpdateTableOptimizer$)    .build() {} class UpdateTriggerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateTrigger", {})    .n("GlueClient", "UpdateTriggerCommand")    .sc(schemas_0.UpdateTrigger$)    .build() {} class UpdateUsageProfileCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateUsageProfile", {})    .n("GlueClient", "UpdateUsageProfileCommand")    .sc(schemas_0.UpdateUsageProfile$)    .build() {} class UpdateUserDefinedFunctionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateUserDefinedFunction", {})    .n("GlueClient", "UpdateUserDefinedFunctionCommand")    .sc(schemas_0.UpdateUserDefinedFunction$)    .build() {} class UpdateWorkflowCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AWSGlue", "UpdateWorkflow", {})    .n("GlueClient", "UpdateWorkflowCommand")    .sc(schemas_0.UpdateWorkflow$)    .build() {} const paginateDescribeEntity = core.createPaginator(GlueClient, DescribeEntityCommand, "NextToken", "NextToken", ""); const paginateGetBlueprintRuns = core.createPaginator(GlueClient, GetBlueprintRunsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetClassifiers = core.createPaginator(GlueClient, GetClassifiersCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetColumnStatisticsTaskRuns = core.createPaginator(GlueClient, GetColumnStatisticsTaskRunsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetConnections = core.createPaginator(GlueClient, GetConnectionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetCrawlerMetrics = core.createPaginator(GlueClient, GetCrawlerMetricsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetCrawlers = core.createPaginator(GlueClient, GetCrawlersCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetDatabases = core.createPaginator(GlueClient, GetDatabasesCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetDevEndpoints = core.createPaginator(GlueClient, GetDevEndpointsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetJobRuns = core.createPaginator(GlueClient, GetJobRunsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetJobs = core.createPaginator(GlueClient, GetJobsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetMLTaskRuns = core.createPaginator(GlueClient, GetMLTaskRunsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetMLTransforms = core.createPaginator(GlueClient, GetMLTransformsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetPartitionIndexes = core.createPaginator(GlueClient, GetPartitionIndexesCommand, "NextToken", "NextToken", ""); const paginateGetPartitions = core.createPaginator(GlueClient, GetPartitionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetResourcePolicies = core.createPaginator(GlueClient, GetResourcePoliciesCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetSecurityConfigurations = core.createPaginator(GlueClient, GetSecurityConfigurationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetTables = core.createPaginator(GlueClient, GetTablesCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetTableVersions = core.createPaginator(GlueClient, GetTableVersionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetTriggers = core.createPaginator(GlueClient, GetTriggersCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetUnfilteredPartitionsMetadata = core.createPaginator(GlueClient, GetUnfilteredPartitionsMetadataCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetUserDefinedFunctions = core.createPaginator(GlueClient, GetUserDefinedFunctionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetWorkflowRuns = core.createPaginator(GlueClient, GetWorkflowRunsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListBlueprints = core.createPaginator(GlueClient, ListBlueprintsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListColumnStatisticsTaskRuns = core.createPaginator(GlueClient, ListColumnStatisticsTaskRunsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListConnectionTypes = core.createPaginator(GlueClient, ListConnectionTypesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListCrawlers = core.createPaginator(GlueClient, ListCrawlersCommand, "NextToken", "NextToken", "MaxResults"); const paginateListCustomEntityTypes = core.createPaginator(GlueClient, ListCustomEntityTypesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListDataQualityResults = core.createPaginator(GlueClient, ListDataQualityResultsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListDataQualityRuleRecommendationRuns = core.createPaginator(GlueClient, ListDataQualityRuleRecommendationRunsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListDataQualityRulesetEvaluationRuns = core.createPaginator(GlueClient, ListDataQualityRulesetEvaluationRunsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListDataQualityRulesets = core.createPaginator(GlueClient, ListDataQualityRulesetsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListDevEndpoints = core.createPaginator(GlueClient, ListDevEndpointsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListEntities = core.createPaginator(GlueClient, ListEntitiesCommand, "NextToken", "NextToken", ""); const paginateListJobs = core.createPaginator(GlueClient, ListJobsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListMaterializedViewRefreshTaskRuns = core.createPaginator(GlueClient, ListMaterializedViewRefreshTaskRunsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListMLTransforms = core.createPaginator(GlueClient, ListMLTransformsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListRegistries = core.createPaginator(GlueClient, ListRegistriesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListSchemas = core.createPaginator(GlueClient, ListSchemasCommand, "NextToken", "NextToken", "MaxResults"); const paginateListSchemaVersions = core.createPaginator(GlueClient, ListSchemaVersionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListSessions = core.createPaginator(GlueClient, ListSessionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListTableOptimizerRuns = core.createPaginator(GlueClient, ListTableOptimizerRunsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListTriggers = core.createPaginator(GlueClient, ListTriggersCommand, "NextToken", "NextToken", "MaxResults"); const paginateListUsageProfiles = core.createPaginator(GlueClient, ListUsageProfilesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListWorkflows = core.createPaginator(GlueClient, ListWorkflowsCommand, "NextToken", "NextToken", "MaxResults"); const paginateSearchTables = core.createPaginator(GlueClient, SearchTablesCommand, "NextToken", "NextToken", "MaxResults"); const commands = {    BatchCreatePartitionCommand,    BatchDeleteConnectionCommand,    BatchDeletePartitionCommand,    BatchDeleteTableCommand,    BatchDeleteTableVersionCommand,    BatchGetBlueprintsCommand,    BatchGetCrawlersCommand,    BatchGetCustomEntityTypesCommand,    BatchGetDataQualityResultCommand,    BatchGetDevEndpointsCommand,    BatchGetJobsCommand,    BatchGetPartitionCommand,    BatchGetTableOptimizerCommand,    BatchGetTriggersCommand,    BatchGetWorkflowsCommand,    BatchPutDataQualityStatisticAnnotationCommand,    BatchStopJobRunCommand,    BatchUpdatePartitionCommand,    CancelDataQualityRuleRecommendationRunCommand,    CancelDataQualityRulesetEvaluationRunCommand,    CancelMLTaskRunCommand,    CancelStatementCommand,    CheckSchemaVersionValidityCommand,    CreateBlueprintCommand,    CreateCatalogCommand,    CreateClassifierCommand,    CreateColumnStatisticsTaskSettingsCommand,    CreateConnectionCommand,    CreateCrawlerCommand,    CreateCustomEntityTypeCommand,    CreateDatabaseCommand,    CreateDataQualityRulesetCommand,    CreateDevEndpointCommand,    CreateGlueIdentityCenterConfigurationCommand,    CreateIntegrationCommand,    CreateIntegrationResourcePropertyCommand,    CreateIntegrationTablePropertiesCommand,    CreateJobCommand,    CreateMLTransformCommand,    CreatePartitionCommand,    CreatePartitionIndexCommand,    CreateRegistryCommand,    CreateSchemaCommand,    CreateScriptCommand,    CreateSecurityConfigurationCommand,    CreateSessionCommand,    CreateTableCommand,    CreateTableOptimizerCommand,    CreateTriggerCommand,    CreateUsageProfileCommand,    CreateUserDefinedFunctionCommand,    CreateWorkflowCommand,    DeleteBlueprintCommand,    DeleteCatalogCommand,    DeleteClassifierCommand,    DeleteColumnStatisticsForPartitionCommand,    DeleteColumnStatisticsForTableCommand,    DeleteColumnStatisticsTaskSettingsCommand,    DeleteConnectionCommand,    DeleteConnectionTypeCommand,    DeleteCrawlerCommand,    DeleteCustomEntityTypeCommand,    DeleteDatabaseCommand,    DeleteDataQualityRulesetCommand,    DeleteDevEndpointCommand,    DeleteGlueIdentityCenterConfigurationCommand,    DeleteIntegrationCommand,    DeleteIntegrationResourcePropertyCommand,    DeleteIntegrationTablePropertiesCommand,    DeleteJobCommand,    DeleteMLTransformCommand,    DeletePartitionCommand,    DeletePartitionIndexCommand,    DeleteRegistryCommand,    DeleteResourcePolicyCommand,    DeleteSchemaCommand,    DeleteSchemaVersionsCommand,    DeleteSecurityConfigurationCommand,    DeleteSessionCommand,    DeleteTableCommand,    DeleteTableOptimizerCommand,    DeleteTableVersionCommand,    DeleteTriggerCommand,    DeleteUsageProfileCommand,    DeleteUserDefinedFunctionCommand,    DeleteWorkflowCommand,    DescribeConnectionTypeCommand,    DescribeEntityCommand,    DescribeInboundIntegrationsCommand,    DescribeIntegrationsCommand,    GetBlueprintCommand,    GetBlueprintRunCommand,    GetBlueprintRunsCommand,    GetCatalogCommand,    GetCatalogImportStatusCommand,    GetCatalogsCommand,    GetClassifierCommand,    GetClassifiersCommand,    GetColumnStatisticsForPartitionCommand,    GetColumnStatisticsForTableCommand,    GetColumnStatisticsTaskRunCommand,    GetColumnStatisticsTaskRunsCommand,    GetColumnStatisticsTaskSettingsCommand,    GetConnectionCommand,    GetConnectionsCommand,    GetCrawlerCommand,    GetCrawlerMetricsCommand,    GetCrawlersCommand,    GetCustomEntityTypeCommand,    GetDatabaseCommand,    GetDatabasesCommand,    GetDataCatalogEncryptionSettingsCommand,    GetDataflowGraphCommand,    GetDataQualityModelCommand,    GetDataQualityModelResultCommand,    GetDataQualityResultCommand,    GetDataQualityRuleRecommendationRunCommand,    GetDataQualityRulesetCommand,    GetDataQualityRulesetEvaluationRunCommand,    GetDevEndpointCommand,    GetDevEndpointsCommand,    GetEntityRecordsCommand,    GetGlueIdentityCenterConfigurationCommand,    GetIntegrationResourcePropertyCommand,    GetIntegrationTablePropertiesCommand,    GetJobCommand,    GetJobBookmarkCommand,    GetJobRunCommand,    GetJobRunsCommand,    GetJobsCommand,    GetMappingCommand,    GetMaterializedViewRefreshTaskRunCommand,    GetMLTaskRunCommand,    GetMLTaskRunsCommand,    GetMLTransformCommand,    GetMLTransformsCommand,    GetPartitionCommand,    GetPartitionIndexesCommand,    GetPartitionsCommand,    GetPlanCommand,    GetRegistryCommand,    GetResourcePoliciesCommand,    GetResourcePolicyCommand,    GetSchemaCommand,    GetSchemaByDefinitionCommand,    GetSchemaVersionCommand,    GetSchemaVersionsDiffCommand,    GetSecurityConfigurationCommand,    GetSecurityConfigurationsCommand,    GetSessionCommand,    GetStatementCommand,    GetTableCommand,    GetTableOptimizerCommand,    GetTablesCommand,    GetTableVersionCommand,    GetTableVersionsCommand,    GetTagsCommand,    GetTriggerCommand,    GetTriggersCommand,    GetUnfilteredPartitionMetadataCommand,    GetUnfilteredPartitionsMetadataCommand,    GetUnfilteredTableMetadataCommand,    GetUsageProfileCommand,    GetUserDefinedFunctionCommand,    GetUserDefinedFunctionsCommand,    GetWorkflowCommand,    GetWorkflowRunCommand,    GetWorkflowRunPropertiesCommand,    GetWorkflowRunsCommand,    ImportCatalogToGlueCommand,    ListBlueprintsCommand,    ListColumnStatisticsTaskRunsCommand,    ListConnectionTypesCommand,    ListCrawlersCommand,    ListCrawlsCommand,    ListCustomEntityTypesCommand,    ListDataQualityResultsCommand,    ListDataQualityRuleRecommendationRunsCommand,    ListDataQualityRulesetEvaluationRunsCommand,    ListDataQualityRulesetsCommand,    ListDataQualityStatisticAnnotationsCommand,    ListDataQualityStatisticsCommand,    ListDevEndpointsCommand,    ListEntitiesCommand,    ListIntegrationResourcePropertiesCommand,    ListJobsCommand,    ListMaterializedViewRefreshTaskRunsCommand,    ListMLTransformsCommand,    ListRegistriesCommand,    ListSchemasCommand,    ListSchemaVersionsCommand,    ListSessionsCommand,    ListStatementsCommand,    ListTableOptimizerRunsCommand,    ListTriggersCommand,    ListUsageProfilesCommand,    ListWorkflowsCommand,    ModifyIntegrationCommand,    PutDataCatalogEncryptionSettingsCommand,    PutDataQualityProfileAnnotationCommand,    PutResourcePolicyCommand,    PutSchemaVersionMetadataCommand,    PutWorkflowRunPropertiesCommand,    QuerySchemaVersionMetadataCommand,    RegisterConnectionTypeCommand,    RegisterSchemaVersionCommand,    RemoveSchemaVersionMetadataCommand,    ResetJobBookmarkCommand,    ResumeWorkflowRunCommand,    RunStatementCommand,    SearchTablesCommand,    StartBlueprintRunCommand,    StartColumnStatisticsTaskRunCommand,    StartColumnStatisticsTaskRunScheduleCommand,    StartCrawlerCommand,    StartCrawlerScheduleCommand,    StartDataQualityRuleRecommendationRunCommand,    StartDataQualityRulesetEvaluationRunCommand,    StartExportLabelsTaskRunCommand,    StartImportLabelsTaskRunCommand,    StartJobRunCommand,    StartMaterializedViewRefreshTaskRunCommand,    StartMLEvaluationTaskRunCommand,    StartMLLabelingSetGenerationTaskRunCommand,    StartTriggerCommand,    StartWorkflowRunCommand,    StopColumnStatisticsTaskRunCommand,    StopColumnStatisticsTaskRunScheduleCommand,    StopCrawlerCommand,    StopCrawlerScheduleCommand,    StopMaterializedViewRefreshTaskRunCommand,    StopSessionCommand,    StopTriggerCommand,    StopWorkflowRunCommand,    TagResourceCommand,    TestConnectionCommand,    UntagResourceCommand,    UpdateBlueprintCommand,    UpdateCatalogCommand,    UpdateClassifierCommand,    UpdateColumnStatisticsForPartitionCommand,    UpdateColumnStatisticsForTableCommand,    UpdateColumnStatisticsTaskSettingsCommand,    UpdateConnectionCommand,    UpdateCrawlerCommand,    UpdateCrawlerScheduleCommand,    UpdateDatabaseCommand,    UpdateDataQualityRulesetCommand,    UpdateDevEndpointCommand,    UpdateGlueIdentityCenterConfigurationCommand,    UpdateIntegrationResourcePropertyCommand,    UpdateIntegrationTablePropertiesCommand,    UpdateJobCommand,    UpdateJobFromSourceControlCommand,    UpdateMLTransformCommand,    UpdatePartitionCommand,    UpdateRegistryCommand,    UpdateSchemaCommand,    UpdateSourceControlFromJobCommand,    UpdateTableCommand,    UpdateTableOptimizerCommand,    UpdateTriggerCommand,    UpdateUsageProfileCommand,    UpdateUserDefinedFunctionCommand,    UpdateWorkflowCommand,};const paginators = {    paginateDescribeEntity,    paginateGetBlueprintRuns,    paginateGetClassifiers,    paginateGetColumnStatisticsTaskRuns,    paginateGetConnections,    paginateGetCrawlerMetrics,    paginateGetCrawlers,    paginateGetDatabases,    paginateGetDevEndpoints,    paginateGetJobRuns,    paginateGetJobs,    paginateGetMLTaskRuns,    paginateGetMLTransforms,    paginateGetPartitionIndexes,    paginateGetPartitions,    paginateGetResourcePolicies,    paginateGetSecurityConfigurations,    paginateGetTables,    paginateGetTableVersions,    paginateGetTriggers,    paginateGetUnfilteredPartitionsMetadata,    paginateGetUserDefinedFunctions,    paginateGetWorkflowRuns,    paginateListBlueprints,    paginateListColumnStatisticsTaskRuns,    paginateListConnectionTypes,    paginateListCrawlers,    paginateListCustomEntityTypes,    paginateListDataQualityResults,    paginateListDataQualityRuleRecommendationRuns,    paginateListDataQualityRulesetEvaluationRuns,    paginateListDataQualityRulesets,    paginateListDevEndpoints,    paginateListEntities,    paginateListJobs,    paginateListMaterializedViewRefreshTaskRuns,    paginateListMLTransforms,    paginateListRegistries,    paginateListSchemas,    paginateListSchemaVersions,    paginateListSessions,    paginateListTableOptimizerRuns,    paginateListTriggers,    paginateListUsageProfiles,    paginateListWorkflows,    paginateSearchTables,};class Glue extends GlueClient {}client.createAggregatedClient(commands, Glue, { paginators }); const AdditionalOptionKeys = {    CacheOption: "performanceTuning.caching",    CompositeOption: "compositeRuleEvaluation.method",    ObservationsOption: "observations.scope",};const AggFunction = {    avg: "avg",    count: "count",    countDistinct: "countDistinct",    first: "first",    kurtosis: "kurtosis",    last: "last",    max: "max",    min: "min",    skewness: "skewness",    stddev_pop: "stddev_pop",    stddev_samp: "stddev_samp",    sum: "sum",    sumDistinct: "sumDistinct",    var_pop: "var_pop",    var_samp: "var_samp",};const AllowFullTableExternalDataAccessEnum = {    False: "False",    True: "True",};const InclusionAnnotationValue = {    EXCLUDE: "EXCLUDE",    INCLUDE: "INCLUDE",};const DataOperation = {    READ: "READ",    WRITE: "WRITE",};const PropertyLocation = {    BODY: "BODY",    HEADER: "HEADER",    PATH: "PATH",    QUERY_PARAM: "QUERY_PARAM",};const PropertyType = {    READ_ONLY: "READ_ONLY",    SECRET: "SECRET",    SECRET_OR_USER_INPUT: "SECRET_OR_USER_INPUT",    UNUSED: "UNUSED",    USER_INPUT: "USER_INPUT",};const AuthenticationType = {    BASIC: "BASIC",    CUSTOM: "CUSTOM",    IAM: "IAM",    OAUTH2: "OAUTH2",};const OAuth2GrantType = {    AUTHORIZATION_CODE: "AUTHORIZATION_CODE",    CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS",    JWT_BEARER: "JWT_BEARER",};const BlueprintStatus = {    ACTIVE: "ACTIVE",    CREATING: "CREATING",    FAILED: "FAILED",    UPDATING: "UPDATING",};const LastCrawlStatus = {    CANCELLED: "CANCELLED",    FAILED: "FAILED",    SUCCEEDED: "SUCCEEDED",};const CrawlerLineageSettings = {    DISABLE: "DISABLE",    ENABLE: "ENABLE",};const RecrawlBehavior = {    CRAWL_EVENT_MODE: "CRAWL_EVENT_MODE",    CRAWL_EVERYTHING: "CRAWL_EVERYTHING",    CRAWL_NEW_FOLDERS_ONLY: "CRAWL_NEW_FOLDERS_ONLY",};const ScheduleState = {    NOT_SCHEDULED: "NOT_SCHEDULED",    SCHEDULED: "SCHEDULED",    TRANSITIONING: "TRANSITIONING",};const DeleteBehavior = {    DELETE_FROM_DATABASE: "DELETE_FROM_DATABASE",    DEPRECATE_IN_DATABASE: "DEPRECATE_IN_DATABASE",    LOG: "LOG",};const UpdateBehavior = {    LOG: "LOG",    UPDATE_IN_DATABASE: "UPDATE_IN_DATABASE",};const CrawlerState = {    READY: "READY",    RUNNING: "RUNNING",    STOPPING: "STOPPING",};const JdbcMetadataEntry = {    COMMENTS: "COMMENTS",    RAWTYPES: "RAWTYPES",};const DataQualityRuleResultStatus = {    ERROR: "ERROR",    FAIL: "FAIL",    PASS: "PASS",};const WorkerType = {    G_025X: "G.025X",    G_1X: "G.1X",    G_2X: "G.2X",    G_4X: "G.4X",    G_8X: "G.8X",    Standard: "Standard",    Z_2X: "Z.2X",};const StartingPosition = {    EARLIEST: "earliest",    LATEST: "latest",    TIMESTAMP: "timestamp",    TRIM_HORIZON: "trim_horizon",};const JDBCConnectionType = {    mysql: "mysql",    oracle: "oracle",    postgresql: "postgresql",    redshift: "redshift",    sqlserver: "sqlserver",};const ParamType = {    BOOL: "bool",    COMPLEX: "complex",    FLOAT: "float",    INT: "int",    LIST: "list",    NULL: "null",    STR: "str",};const DdbExportType = {    ddb: "ddb",    s3: "s3",};const DQTransformOutput = {    EvaluationResults: "EvaluationResults",    PrimaryInput: "PrimaryInput",};const DQStopJobOnFailureTiming = {    AfterDataLoad: "AfterDataLoad",    Immediate: "Immediate",};const FilterOperation = {    EQ: "EQ",    GT: "GT",    GTE: "GTE",    ISNULL: "ISNULL",    LT: "LT",    LTE: "LTE",    REGEX: "REGEX",};const FilterValueType = {    COLUMNEXTRACTED: "COLUMNEXTRACTED",    CONSTANT: "CONSTANT",};const FilterLogicalOperator = {    AND: "AND",    OR: "OR",};const UpdateCatalogBehavior = {    LOG: "LOG",    UPDATE_IN_DATABASE: "UPDATE_IN_DATABASE",};const JDBCDataType = {    ARRAY: "ARRAY",    BIGINT: "BIGINT",    BINARY: "BINARY",    BIT: "BIT",    BLOB: "BLOB",    BOOLEAN: "BOOLEAN",    CHAR: "CHAR",    CLOB: "CLOB",    DATALINK: "DATALINK",    DATE: "DATE",    DECIMAL: "DECIMAL",    DISTINCT: "DISTINCT",    DOUBLE: "DOUBLE",    FLOAT: "FLOAT",    INTEGER: "INTEGER",    JAVA_OBJECT: "JAVA_OBJECT",    LONGNVARCHAR: "LONGNVARCHAR",    LONGVARBINARY: "LONGVARBINARY",    LONGVARCHAR: "LONGVARCHAR",    NCHAR: "NCHAR",    NCLOB: "NCLOB",    NULL: "NULL",    NUMERIC: "NUMERIC",    NVARCHAR: "NVARCHAR",    OTHER: "OTHER",    REAL: "REAL",    REF: "REF",    REF_CURSOR: "REF_CURSOR",    ROWID: "ROWID",    SMALLINT: "SMALLINT",    SQLXML: "SQLXML",    STRUCT: "STRUCT",    TIME: "TIME",    TIMESTAMP: "TIMESTAMP",    TIMESTAMP_WITH_TIMEZONE: "TIMESTAMP_WITH_TIMEZONE",    TIME_WITH_TIMEZONE: "TIME_WITH_TIMEZONE",    TINYINT: "TINYINT",    VARBINARY: "VARBINARY",    VARCHAR: "VARCHAR",};const GlueRecordType = {    BIGDECIMAL: "BIGDECIMAL",    BYTE: "BYTE",    DATE: "DATE",    DOUBLE: "DOUBLE",    FLOAT: "FLOAT",    INT: "INT",    LONG: "LONG",    SHORT: "SHORT",    STRING: "STRING",    TIMESTAMP: "TIMESTAMP",};const JoinType = {    EQUIJOIN: "equijoin",    LEFT: "left",    LEFT_ANTI: "leftanti",    LEFT_SEMI: "leftsemi",    OUTER: "outer",    RIGHT: "right",};const PiiType = {    ColumnAudit: "ColumnAudit",    ColumnHashing: "ColumnHashing",    ColumnMasking: "ColumnMasking",    RowAudit: "RowAudit",    RowHashing: "RowHashing",    RowMasking: "RowMasking",    RowPartialMasking: "RowPartialMasking",};const CompressionType = {    BZIP2: "bzip2",    GZIP: "gzip",};const QuoteChar = {    DISABLED: "disabled",    QUILLEMET: "quillemet",    QUOTE: "quote",    SINGLE_QUOTE: "single_quote",};const Separator = {    COMMA: "comma",    CTRLA: "ctrla",    PIPE: "pipe",    SEMICOLON: "semicolon",    TAB: "tab",};const DeltaTargetCompressionType = {    SNAPPY: "snappy",    UNCOMPRESSED: "uncompressed",};const TargetFormat = {    AVRO: "avro",    CSV: "csv",    DELTA: "delta",    HUDI: "hudi",    HYPER: "hyper",    ICEBERG: "iceberg",    JSON: "json",    ORC: "orc",    PARQUET: "parquet",    XML: "xml",};const ParquetCompressionType = {    BROTLI: "brotli",    GZIP: "gzip",    LZ4: "lz4",    LZO: "lzo",    NONE: "none",    SNAPPY: "snappy",    UNCOMPRESSED: "uncompressed",};const HudiTargetCompressionType = {    GZIP: "gzip",    LZO: "lzo",    SNAPPY: "snappy",    UNCOMPRESSED: "uncompressed",};const HyperTargetCompressionType = {    UNCOMPRESSED: "uncompressed",};const IcebergTargetCompressionType = {    GZIP: "gzip",    LZO: "lzo",    SNAPPY: "snappy",    UNCOMPRESSED: "uncompressed",};const UnionType = {    ALL: "ALL",    DISTINCT: "DISTINCT",};const ExecutionClass = {    FLEX: "FLEX",    STANDARD: "STANDARD",};const JobMode = {    NOTEBOOK: "NOTEBOOK",    SCRIPT: "SCRIPT",    VISUAL: "VISUAL",};const SourceControlAuthStrategy = {    AWS_SECRETS_MANAGER: "AWS_SECRETS_MANAGER",    PERSONAL_ACCESS_TOKEN: "PERSONAL_ACCESS_TOKEN",};const SourceControlProvider = {    AWS_CODE_COMMIT: "AWS_CODE_COMMIT",    BITBUCKET: "BITBUCKET",    GITHUB: "GITHUB",    GITLAB: "GITLAB",};const FederationSourceErrorCode = {    AccessDeniedException: "AccessDeniedException",    EntityNotFoundException: "EntityNotFoundException",    InternalServiceException: "InternalServiceException",    InvalidCredentialsException: "InvalidCredentialsException",    InvalidInputException: "InvalidInputException",    InvalidResponseException: "InvalidResponseException",    OperationNotSupportedException: "OperationNotSupportedException",    OperationTimeoutException: "OperationTimeoutException",    PartialFailureException: "PartialFailureException",    ThrottlingException: "ThrottlingException",};const TableOptimizerType = {    COMPACTION: "compaction",    ORPHAN_FILE_DELETION: "orphan_file_deletion",    RETENTION: "retention",};const CompactionStrategy = {    BINPACK: "binpack",    SORT: "sort",    ZORDER: "z-order",};const ConfigurationSource = {    CATALOG: "catalog",    TABLE: "table",};const TableOptimizerEventType = {    COMPLETED: "completed",    FAILED: "failed",    IN_PROGRESS: "in_progress",    STARTING: "starting",};const CrawlState = {    CANCELLED: "CANCELLED",    CANCELLING: "CANCELLING",    ERROR: "ERROR",    FAILED: "FAILED",    RUNNING: "RUNNING",    SUCCEEDED: "SUCCEEDED",};const LogicalOperator = {    EQUALS: "EQUALS",};const JobRunState = {    ERROR: "ERROR",    EXPIRED: "EXPIRED",    FAILED: "FAILED",    RUNNING: "RUNNING",    STARTING: "STARTING",    STOPPED: "STOPPED",    STOPPING: "STOPPING",    SUCCEEDED: "SUCCEEDED",    TIMEOUT: "TIMEOUT",    WAITING: "WAITING",};const Logical = {    AND: "AND",    ANY: "ANY",};const TriggerState = {    ACTIVATED: "ACTIVATED",    ACTIVATING: "ACTIVATING",    CREATED: "CREATED",    CREATING: "CREATING",    DEACTIVATED: "DEACTIVATED",    DEACTIVATING: "DEACTIVATING",    DELETING: "DELETING",    UPDATING: "UPDATING",};const TriggerType = {    CONDITIONAL: "CONDITIONAL",    EVENT: "EVENT",    ON_DEMAND: "ON_DEMAND",    SCHEDULED: "SCHEDULED",};const NodeType = {    CRAWLER: "CRAWLER",    JOB: "JOB",    TRIGGER: "TRIGGER",};const WorkflowRunStatus = {    COMPLETED: "COMPLETED",    ERROR: "ERROR",    RUNNING: "RUNNING",    STOPPED: "STOPPED",    STOPPING: "STOPPING",};const TaskStatusType = {    FAILED: "FAILED",    RUNNING: "RUNNING",    STARTING: "STARTING",    STOPPED: "STOPPED",    STOPPING: "STOPPING",    SUCCEEDED: "SUCCEEDED",    TIMEOUT: "TIMEOUT",};const DataFormat = {    AVRO: "AVRO",    JSON: "JSON",    PROTOBUF: "PROTOBUF",};const Permission = {    ALL: "ALL",    ALTER: "ALTER",    CREATE_DATABASE: "CREATE_DATABASE",    CREATE_TABLE: "CREATE_TABLE",    DATA_LOCATION_ACCESS: "DATA_LOCATION_ACCESS",    DELETE: "DELETE",    DROP: "DROP",    INSERT: "INSERT",    SELECT: "SELECT",};const OverwriteChildResourcePermissionsWithDefaultEnum = {    Accept: "Accept",    Deny: "Deny",};const CsvHeaderOption = {    ABSENT: "ABSENT",    PRESENT: "PRESENT",    UNKNOWN: "UNKNOWN",};const CsvSerdeOption = {    LazySimpleSerDe: "LazySimpleSerDe",    None: "None",    OpenCSVSerDe: "OpenCSVSerDe",};const ConnectionPropertyKey = {    CLUSTER_IDENTIFIER: "CLUSTER_IDENTIFIER",    CONFIG_FILES: "CONFIG_FILES",    CONNECTION_URL: "CONNECTION_URL",    CONNECTOR_CLASS_NAME: "CONNECTOR_CLASS_NAME",    CONNECTOR_TYPE: "CONNECTOR_TYPE",    CONNECTOR_URL: "CONNECTOR_URL",    CUSTOM_JDBC_CERT: "CUSTOM_JDBC_CERT",    CUSTOM_JDBC_CERT_STRING: "CUSTOM_JDBC_CERT_STRING",    DATABASE: "DATABASE",    ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD: "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD",    ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD: "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD",    ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD: "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD",    ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD: "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD",    ENCRYPTED_PASSWORD: "ENCRYPTED_PASSWORD",    ENDPOINT: "ENDPOINT",    ENDPOINT_TYPE: "ENDPOINT_TYPE",    HOST: "HOST",    INSTANCE_ID: "INSTANCE_ID",    JDBC_CONNECTION_URL: "JDBC_CONNECTION_URL",    JDBC_DRIVER_CLASS_NAME: "JDBC_DRIVER_CLASS_NAME",    JDBC_DRIVER_JAR_URI: "JDBC_DRIVER_JAR_URI",    JDBC_ENFORCE_SSL: "JDBC_ENFORCE_SSL",    JDBC_ENGINE: "JDBC_ENGINE",    JDBC_ENGINE_VERSION: "JDBC_ENGINE_VERSION",    KAFKA_BOOTSTRAP_SERVERS: "KAFKA_BOOTSTRAP_SERVERS",    KAFKA_CLIENT_KEYSTORE: "KAFKA_CLIENT_KEYSTORE",    KAFKA_CLIENT_KEYSTORE_PASSWORD: "KAFKA_CLIENT_KEYSTORE_PASSWORD",    KAFKA_CLIENT_KEY_PASSWORD: "KAFKA_CLIENT_KEY_PASSWORD",    KAFKA_CUSTOM_CERT: "KAFKA_CUSTOM_CERT",    KAFKA_SASL_GSSAPI_KEYTAB: "KAFKA_SASL_GSSAPI_KEYTAB",    KAFKA_SASL_GSSAPI_KRB5_CONF: "KAFKA_SASL_GSSAPI_KRB5_CONF",    KAFKA_SASL_GSSAPI_PRINCIPAL: "KAFKA_SASL_GSSAPI_PRINCIPAL",    KAFKA_SASL_GSSAPI_SERVICE: "KAFKA_SASL_GSSAPI_SERVICE",    KAFKA_SASL_MECHANISM: "KAFKA_SASL_MECHANISM",    KAFKA_SASL_PLAIN_PASSWORD: "KAFKA_SASL_PLAIN_PASSWORD",    KAFKA_SASL_PLAIN_USERNAME: "KAFKA_SASL_PLAIN_USERNAME",    KAFKA_SASL_SCRAM_PASSWORD: "KAFKA_SASL_SCRAM_PASSWORD",    KAFKA_SASL_SCRAM_SECRETS_ARN: "KAFKA_SASL_SCRAM_SECRETS_ARN",    KAFKA_SASL_SCRAM_USERNAME: "KAFKA_SASL_SCRAM_USERNAME",    KAFKA_SKIP_CUSTOM_CERT_VALIDATION: "KAFKA_SKIP_CUSTOM_CERT_VALIDATION",    KAFKA_SSL_ENABLED: "KAFKA_SSL_ENABLED",    PASSWORD: "PASSWORD",    PORT: "PORT",    REGION: "REGION",    ROLE_ARN: "ROLE_ARN",    SECRET_ID: "SECRET_ID",    SKIP_CUSTOM_JDBC_CERT_VALIDATION: "SKIP_CUSTOM_JDBC_CERT_VALIDATION",    USER_NAME: "USERNAME",    WORKGROUP_NAME: "WORKGROUP_NAME",};const ConnectionType = {    ADOBEANALYTICS: "ADOBEANALYTICS",    ASANA: "ASANA",    AZURECOSMOS: "AZURECOSMOS",    AZURESQL: "AZURESQL",    BIGQUERY: "BIGQUERY",    BLACKBAUD: "BLACKBAUD",    BLACKBAUDRAISEREDGENXT: "BLACKBAUDRAISEREDGENXT",    CIRCLECI: "CIRCLECI",    CLOUDERAHIVE: "CLOUDERAHIVE",    CLOUDERAIMPALA: "CLOUDERAIMPALA",    CLOUDWATCH: "CLOUDWATCH",    CLOUDWATCHMETRICS: "CLOUDWATCHMETRICS",    CMDB: "CMDB",    CUSTOM: "CUSTOM",    DATADOG: "DATADOG",    DATALAKEGEN2: "DATALAKEGEN2",    DB2: "DB2",    DB2AS400: "DB2AS400",    DOCUMENTDB: "DOCUMENTDB",    DOCUSIGNMONITOR: "DOCUSIGNMONITOR",    DOMO: "DOMO",    DYNAMODB: "DYNAMODB",    DYNATRACE: "DYNATRACE",    FACEBOOKADS: "FACEBOOKADS",    FACEBOOKPAGEINSIGHTS: "FACEBOOKPAGEINSIGHTS",    FRESHDESK: "FRESHDESK",    FRESHSALES: "FRESHSALES",    GITLAB: "GITLAB",    GOOGLEADS: "GOOGLEADS",    GOOGLEANALYTICS4: "GOOGLEANALYTICS4",    GOOGLECLOUDSTORAGE: "GOOGLECLOUDSTORAGE",    GOOGLESEARCHCONSOLE: "GOOGLESEARCHCONSOLE",    GOOGLESHEETS: "GOOGLESHEETS",    HBASE: "HBASE",    HUBSPOT: "HUBSPOT",    INSTAGRAMADS: "INSTAGRAMADS",    INTERCOM: "INTERCOM",    JDBC: "JDBC",    JIRACLOUD: "JIRACLOUD",    KAFKA: "KAFKA",    KUSTOMER: "KUSTOMER",    LINKEDIN: "LINKEDIN",    MAILCHIMP: "MAILCHIMP",    MARKETO: "MARKETO",    MARKETPLACE: "MARKETPLACE",    MICROSOFTDYNAMIC365FINANCEANDOPS: "MICROSOFTDYNAMIC365FINANCEANDOPS",    MICROSOFTDYNAMICS365CRM: "MICROSOFTDYNAMICS365CRM",    MICROSOFTTEAMS: "MICROSOFTTEAMS",    MIXPANEL: "MIXPANEL",    MONDAY: "MONDAY",    MONGODB: "MONGODB",    MYSQL: "MYSQL",    NETSUITEERP: "NETSUITEERP",    NETWORK: "NETWORK",    OKTA: "OKTA",    OPENSEARCH: "OPENSEARCH",    ORACLE: "ORACLE",    PAYPAL: "PAYPAL",    PENDO: "PENDO",    PIPEDIVE: "PIPEDIVE",    PIPEDRIVE: "PIPEDRIVE",    POSTGRESQL: "POSTGRESQL",    PRODUCTBOARD: "PRODUCTBOARD",    QUICKBOOKS: "QUICKBOOKS",    SALESFORCE: "SALESFORCE",    SALESFORCECOMMERCECLOUD: "SALESFORCECOMMERCECLOUD",    SALESFORCEMARKETINGCLOUD: "SALESFORCEMARKETINGCLOUD",    SALESFORCEPARDOT: "SALESFORCEPARDOT",    SAPCONCUR: "SAPCONCUR",    SAPHANA: "SAPHANA",    SAPODATA: "SAPODATA",    SENDGRID: "SENDGRID",    SERVICENOW: "SERVICENOW",    SFTP: "SFTP",    SLACK: "SLACK",    SMARTSHEET: "SMARTSHEET",    SNAPCHATADS: "SNAPCHATADS",    SQLSERVER: "SQLSERVER",    STRIPE: "STRIPE",    SYNAPSE: "SYNAPSE",    TERADATA: "TERADATA",    TERADATANOS: "TERADATANOS",    TIMESTREAM: "TIMESTREAM",    TPCDS: "TPCDS",    TWILIO: "TWILIO",    VERTICA: "VERTICA",    VIEW_VALIDATION_ATHENA: "VIEW_VALIDATION_ATHENA",    VIEW_VALIDATION_REDSHIFT: "VIEW_VALIDATION_REDSHIFT",    WOOCOMMERCE: "WOOCOMMERCE",    ZENDESK: "ZENDESK",    ZOHOCRM: "ZOHOCRM",    ZOOM: "ZOOM",};const ComputeEnvironment = {    ATHENA: "ATHENA",    PYTHON: "PYTHON",    SPARK: "SPARK",};const ConnectionStatus = {    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    READY: "READY",};const IntegrationStatus = {    ACTIVE: "ACTIVE",    CREATING: "CREATING",    DELETING: "DELETING",    FAILED: "FAILED",    MODIFYING: "MODIFYING",    NEEDS_ATTENTION: "NEEDS_ATTENTION",    SYNCING: "SYNCING",};const UnnestSpec = {    FULL: "FULL",    NOUNNEST: "NOUNNEST",    TOPLEVEL: "TOPLEVEL",};const TransformType = {    FIND_MATCHES: "FIND_MATCHES",};const MLUserDataEncryptionModeString = {    DISABLED: "DISABLED",    SSEKMS: "SSE-KMS",};const Compatibility = {    BACKWARD: "BACKWARD",    BACKWARD_ALL: "BACKWARD_ALL",    DISABLED: "DISABLED",    FORWARD: "FORWARD",    FORWARD_ALL: "FORWARD_ALL",    FULL: "FULL",    FULL_ALL: "FULL_ALL",    NONE: "NONE",};const SchemaStatus = {    AVAILABLE: "AVAILABLE",    DELETING: "DELETING",    PENDING: "PENDING",};const SchemaVersionStatus = {    AVAILABLE: "AVAILABLE",    DELETING: "DELETING",    FAILURE: "FAILURE",    PENDING: "PENDING",};const Language = {    PYTHON: "PYTHON",    SCALA: "SCALA",};const CloudWatchEncryptionMode = {    DISABLED: "DISABLED",    SSEKMS: "SSE-KMS",};const DataQualityEncryptionMode = {    DISABLED: "DISABLED",    SSEKMS: "SSE-KMS",};const JobBookmarksEncryptionMode = {    CSEKMS: "CSE-KMS",    DISABLED: "DISABLED",};const S3EncryptionMode = {    DISABLED: "DISABLED",    SSEKMS: "SSE-KMS",    SSES3: "SSE-S3",};const SessionStatus = {    FAILED: "FAILED",    PROVISIONING: "PROVISIONING",    READY: "READY",    STOPPED: "STOPPED",    STOPPING: "STOPPING",    TIMEOUT: "TIMEOUT",};const IcebergStructTypeEnum = {    STRUCT: "struct",};const IcebergSortDirection = {    ASC: "asc",    DESC: "desc",};const IcebergNullOrder = {    NULLS_FIRST: "nulls-first",    NULLS_LAST: "nulls-last",};const MetadataOperation = {    CREATE: "CREATE",};const LastRefreshType = {    FULL: "FULL",    INCREMENTAL: "INCREMENTAL",};const ViewDialect = {    ATHENA: "ATHENA",    REDSHIFT: "REDSHIFT",    SPARK: "SPARK",};const FunctionType = {    AGGREGATE_FUNCTION: "AGGREGATE_FUNCTION",    REGULAR_FUNCTION: "REGULAR_FUNCTION",    STORED_PROCEDURE: "STORED_PROCEDURE",};const PrincipalType = {    GROUP: "GROUP",    ROLE: "ROLE",    USER: "USER",};const ResourceType = {    ARCHIVE: "ARCHIVE",    FILE: "FILE",    JAR: "JAR",};const RegistryStatus = {    AVAILABLE: "AVAILABLE",    DELETING: "DELETING",};const FieldDataType = {    ARRAY: "ARRAY",    BIGINT: "BIGINT",    BINARY: "BINARY",    BOOLEAN: "BOOLEAN",    BYTE: "BYTE",    DATE: "DATE",    DECIMAL: "DECIMAL",    DOUBLE: "DOUBLE",    FLOAT: "FLOAT",    INT: "INT",    LONG: "LONG",    MAP: "MAP",    SHORT: "SHORT",    SMALLINT: "SMALLINT",    STRING: "STRING",    STRUCT: "STRUCT",    TIMESTAMP: "TIMESTAMP",    UNION: "UNION",};const HTTPMethod = {    GET: "GET",    POST: "POST",};const FieldFilterOperator = {    BETWEEN: "BETWEEN",    CONTAINS: "CONTAINS",    EQUAL_TO: "EQUAL_TO",    GREATER_THAN: "GREATER_THAN",    GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO",    LESS_THAN: "LESS_THAN",    LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO",    NOT_EQUAL_TO: "NOT_EQUAL_TO",    ORDER_BY: "ORDER_BY",};const BlueprintRunState = {    FAILED: "FAILED",    ROLLING_BACK: "ROLLING_BACK",    RUNNING: "RUNNING",    SUCCEEDED: "SUCCEEDED",};const ColumnStatisticsType = {    BINARY: "BINARY",    BOOLEAN: "BOOLEAN",    DATE: "DATE",    DECIMAL: "DECIMAL",    DOUBLE: "DOUBLE",    LONG: "LONG",    STRING: "STRING",};const ComputationType = {    FULL: "FULL",    INCREMENTAL: "INCREMENTAL",};const ColumnStatisticsState = {    FAILED: "FAILED",    RUNNING: "RUNNING",    STARTING: "STARTING",    STOPPED: "STOPPED",    SUCCEEDED: "SUCCEEDED",};const ExecutionStatus = {    FAILED: "FAILED",    STARTED: "STARTED",};const ScheduleType = {    AUTO: "AUTO",    CRON: "CRON",};const SettingSource = {    CATALOG: "CATALOG",    TABLE: "TABLE",};const DatabaseAttributes = {    NAME: "NAME",    TARGET_DATABASE: "TARGET_DATABASE",};const ResourceShareType = {    ALL: "ALL",    FEDERATED: "FEDERATED",    FOREIGN: "FOREIGN",};const CatalogEncryptionMode = {    DISABLED: "DISABLED",    SSEKMS: "SSE-KMS",    SSEKMSWITHSERVICEROLE: "SSE-KMS-WITH-SERVICE-ROLE",};const DataQualityModelStatus = {    FAILED: "FAILED",    RUNNING: "RUNNING",    SUCCEEDED: "SUCCEEDED",};const DQCompositeRuleEvaluationMethod = {    COLUMN: "COLUMN",    ROW: "ROW",};const MaterializedViewRefreshType = {    FULL: "FULL",    INCREMENTAL: "INCREMENTAL",};const MaterializedViewRefreshState = {    FAILED: "FAILED",    RUNNING: "RUNNING",    STARTING: "STARTING",    STOPPED: "STOPPED",    SUCCEEDED: "SUCCEEDED",};const TaskType = {    EVALUATION: "EVALUATION",    EXPORT_LABELS: "EXPORT_LABELS",    FIND_MATCHES: "FIND_MATCHES",    IMPORT_LABELS: "IMPORT_LABELS",    LABELING_SET_GENERATION: "LABELING_SET_GENERATION",};const TaskRunSortColumnType = {    STARTED: "STARTED",    STATUS: "STATUS",    TASK_RUN_TYPE: "TASK_RUN_TYPE",};const SortDirectionType = {    ASCENDING: "ASCENDING",    DESCENDING: "DESCENDING",};const TransformStatusType = {    DELETING: "DELETING",    NOT_READY: "NOT_READY",    READY: "READY",};const TransformSortColumnType = {    CREATED: "CREATED",    LAST_MODIFIED: "LAST_MODIFIED",    NAME: "NAME",    STATUS: "STATUS",    TRANSFORM_TYPE: "TRANSFORM_TYPE",};const BackfillErrorCode = {    ENCRYPTED_PARTITION_ERROR: "ENCRYPTED_PARTITION_ERROR",    INTERNAL_ERROR: "INTERNAL_ERROR",    INVALID_PARTITION_TYPE_DATA_ERROR: "INVALID_PARTITION_TYPE_DATA_ERROR",    MISSING_PARTITION_VALUE_ERROR: "MISSING_PARTITION_VALUE_ERROR",    UNSUPPORTED_PARTITION_CHARACTER_ERROR: "UNSUPPORTED_PARTITION_CHARACTER_ERROR",};const PartitionIndexStatus = {    ACTIVE: "ACTIVE",    CREATING: "CREATING",    DELETING: "DELETING",    FAILED: "FAILED",};const SchemaDiffType = {    SYNTAX_DIFF: "SYNTAX_DIFF",};const StatementState = {    AVAILABLE: "AVAILABLE",    CANCELLED: "CANCELLED",    CANCELLING: "CANCELLING",    ERROR: "ERROR",    RUNNING: "RUNNING",    WAITING: "WAITING",};const ResourceAction = {    CREATE: "CREATE",    UPDATE: "UPDATE",};const ResourceState = {    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    QUEUED: "QUEUED",    STOPPED: "STOPPED",    SUCCESS: "SUCCESS",};const TableAttributes = {    NAME: "NAME",    TABLE_TYPE: "TABLE_TYPE",};const PermissionType = {    CELL_FILTER_PERMISSION: "CELL_FILTER_PERMISSION",    COLUMN_PERMISSION: "COLUMN_PERMISSION",    NESTED_CELL_PERMISSION: "NESTED_CELL_PERMISSION",    NESTED_PERMISSION: "NESTED_PERMISSION",};const FieldName = {    CRAWL_ID: "CRAWL_ID",    DPU_HOUR: "DPU_HOUR",    END_TIME: "END_TIME",    START_TIME: "START_TIME",    STATE: "STATE",};const FilterOperator = {    EQ: "EQ",    GE: "GE",    GT: "GT",    LE: "LE",    LT: "LT",    NE: "NE",};const CrawlerHistoryState = {    COMPLETED: "COMPLETED",    FAILED: "FAILED",    RUNNING: "RUNNING",    STOPPED: "STOPPED",};const StatisticEvaluationLevel = {    COLUMN: "Column",    DATASET: "Dataset",    MULTICOLUMN: "Multicolumn",};const EnableHybridValues = {    FALSE: "FALSE",    TRUE: "TRUE",};const ExistCondition = {    MUST_EXIST: "MUST_EXIST",    NONE: "NONE",    NOT_EXIST: "NOT_EXIST",};const ContentType = {    APPLICATION_JSON: "APPLICATION_JSON",    URL_ENCODED: "URL_ENCODED",};const ConnectorOAuth2GrantType = {    AUTHORIZATION_CODE: "AUTHORIZATION_CODE",    CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS",    JWT_BEARER: "JWT_BEARER",};const IntegrationType = {    REST: "REST",};const Comparator = {    EQUALS: "EQUALS",    GREATER_THAN: "GREATER_THAN",    GREATER_THAN_EQUALS: "GREATER_THAN_EQUALS",    LESS_THAN: "LESS_THAN",    LESS_THAN_EQUALS: "LESS_THAN_EQUALS",};const Sort = {    ASCENDING: "ASC",    DESCENDING: "DESC",};const IcebergUpdateAction = {    ADD_ENCRYPTION_KEY: "add-encryption-key",    ADD_SCHEMA: "add-schema",    ADD_SORT_ORDER: "add-sort-order",    ADD_SPEC: "add-spec",    REMOVE_ENCRYPTION_KEY: "remove-encryption-key",    REMOVE_PROPERTIES: "remove-properties",    SET_CURRENT_SCHEMA: "set-current-schema",    SET_DEFAULT_SORT_ORDER: "set-default-sort-order",    SET_DEFAULT_SPEC: "set-default-spec",    SET_LOCATION: "set-location",    SET_PROPERTIES: "set-properties",};const ViewUpdateAction = {    ADD: "ADD",    ADD_OR_REPLACE: "ADD_OR_REPLACE",    DROP: "DROP",    REPLACE: "REPLACE",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.GlueServiceException = GlueServiceException.GlueServiceException;exports.AdditionalOptionKeys = AdditionalOptionKeys;exports.AggFunction = AggFunction;exports.AllowFullTableExternalDataAccessEnum = AllowFullTableExternalDataAccessEnum;exports.AuthenticationType = AuthenticationType;exports.BackfillErrorCode = BackfillErrorCode;exports.BatchCreatePartitionCommand = BatchCreatePartitionCommand;exports.BatchDeleteConnectionCommand = BatchDeleteConnectionCommand;exports.BatchDeletePartitionCommand = BatchDeletePartitionCommand;exports.BatchDeleteTableCommand = BatchDeleteTableCommand;exports.BatchDeleteTableVersionCommand = BatchDeleteTableVersionCommand;exports.BatchGetBlueprintsCommand = BatchGetBlueprintsCommand;exports.BatchGetCrawlersCommand = BatchGetCrawlersCommand;exports.BatchGetCustomEntityTypesCommand = BatchGetCustomEntityTypesCommand;exports.BatchGetDataQualityResultCommand = BatchGetDataQualityResultCommand;exports.BatchGetDevEndpointsCommand = BatchGetDevEndpointsCommand;exports.BatchGetJobsCommand = BatchGetJobsCommand;exports.BatchGetPartitionCommand = BatchGetPartitionCommand;exports.BatchGetTableOptimizerCommand = BatchGetTableOptimizerCommand;exports.BatchGetTriggersCommand = BatchGetTriggersCommand;exports.BatchGetWorkflowsCommand = BatchGetWorkflowsCommand;exports.BatchPutDataQualityStatisticAnnotationCommand = BatchPutDataQualityStatisticAnnotationCommand;exports.BatchStopJobRunCommand = BatchStopJobRunCommand;exports.BatchUpdatePartitionCommand = BatchUpdatePartitionCommand;exports.BlueprintRunState = BlueprintRunState;exports.BlueprintStatus = BlueprintStatus;exports.CancelDataQualityRuleRecommendationRunCommand = CancelDataQualityRuleRecommendationRunCommand;exports.CancelDataQualityRulesetEvaluationRunCommand = CancelDataQualityRulesetEvaluationRunCommand;exports.CancelMLTaskRunCommand = CancelMLTaskRunCommand;exports.CancelStatementCommand = CancelStatementCommand;exports.CatalogEncryptionMode = CatalogEncryptionMode;exports.CheckSchemaVersionValidityCommand = CheckSchemaVersionValidityCommand;exports.CloudWatchEncryptionMode = CloudWatchEncryptionMode;exports.ColumnStatisticsState = ColumnStatisticsState;exports.ColumnStatisticsType = ColumnStatisticsType;exports.CompactionStrategy = CompactionStrategy;exports.Comparator = Comparator;exports.Compatibility = Compatibility;exports.CompressionType = CompressionType;exports.ComputationType = ComputationType;exports.ComputeEnvironment = ComputeEnvironment;exports.ConfigurationSource = ConfigurationSource;exports.ConnectionPropertyKey = ConnectionPropertyKey;exports.ConnectionStatus = ConnectionStatus;exports.ConnectionType = ConnectionType;exports.ConnectorOAuth2GrantType = ConnectorOAuth2GrantType;exports.ContentType = ContentType;exports.CrawlState = CrawlState;exports.CrawlerHistoryState = CrawlerHistoryState;exports.CrawlerLineageSettings = CrawlerLineageSettings;exports.CrawlerState = CrawlerState;exports.CreateBlueprintCommand = CreateBlueprintCommand;exports.CreateCatalogCommand = CreateCatalogCommand;exports.CreateClassifierCommand = CreateClassifierCommand;exports.CreateColumnStatisticsTaskSettingsCommand = CreateColumnStatisticsTaskSettingsCommand;exports.CreateConnectionCommand = CreateConnectionCommand;exports.CreateCrawlerCommand = CreateCrawlerCommand;exports.CreateCustomEntityTypeCommand = CreateCustomEntityTypeCommand;exports.CreateDataQualityRulesetCommand = CreateDataQualityRulesetCommand;exports.CreateDatabaseCommand = CreateDatabaseCommand;exports.CreateDevEndpointCommand = CreateDevEndpointCommand;exports.CreateGlueIdentityCenterConfigurationCommand = CreateGlueIdentityCenterConfigurationCommand;exports.CreateIntegrationCommand = CreateIntegrationCommand;exports.CreateIntegrationResourcePropertyCommand = CreateIntegrationResourcePropertyCommand;exports.CreateIntegrationTablePropertiesCommand = CreateIntegrationTablePropertiesCommand;exports.CreateJobCommand = CreateJobCommand;exports.CreateMLTransformCommand = CreateMLTransformCommand;exports.CreatePartitionCommand = CreatePartitionCommand;exports.CreatePartitionIndexCommand = CreatePartitionIndexCommand;exports.CreateRegistryCommand = CreateRegistryCommand;exports.CreateSchemaCommand = CreateSchemaCommand;exports.CreateScriptCommand = CreateScriptCommand;exports.CreateSecurityConfigurationCommand = CreateSecurityConfigurationCommand;exports.CreateSessionCommand = CreateSessionCommand;exports.CreateTableCommand = CreateTableCommand;exports.CreateTableOptimizerCommand = CreateTableOptimizerCommand;exports.CreateTriggerCommand = CreateTriggerCommand;exports.CreateUsageProfileCommand = CreateUsageProfileCommand;exports.CreateUserDefinedFunctionCommand = CreateUserDefinedFunctionCommand;exports.CreateWorkflowCommand = CreateWorkflowCommand;exports.CsvHeaderOption = CsvHeaderOption;exports.CsvSerdeOption = CsvSerdeOption;exports.DQCompositeRuleEvaluationMethod = DQCompositeRuleEvaluationMethod;exports.DQStopJobOnFailureTiming = DQStopJobOnFailureTiming;exports.DQTransformOutput = DQTransformOutput;exports.DataFormat = DataFormat;exports.DataOperation = DataOperation;exports.DataQualityEncryptionMode = DataQualityEncryptionMode;exports.DataQualityModelStatus = DataQualityModelStatus;exports.DataQualityRuleResultStatus = DataQualityRuleResultStatus;exports.DatabaseAttributes = DatabaseAttributes;exports.DdbExportType = DdbExportType;exports.DeleteBehavior = DeleteBehavior;exports.DeleteBlueprintCommand = DeleteBlueprintCommand;exports.DeleteCatalogCommand = DeleteCatalogCommand;exports.DeleteClassifierCommand = DeleteClassifierCommand;exports.DeleteColumnStatisticsForPartitionCommand = DeleteColumnStatisticsForPartitionCommand;exports.DeleteColumnStatisticsForTableCommand = DeleteColumnStatisticsForTableCommand;exports.DeleteColumnStatisticsTaskSettingsCommand = DeleteColumnStatisticsTaskSettingsCommand;exports.DeleteConnectionCommand = DeleteConnectionCommand;exports.DeleteConnectionTypeCommand = DeleteConnectionTypeCommand;exports.DeleteCrawlerCommand = DeleteCrawlerCommand;exports.DeleteCustomEntityTypeCommand = DeleteCustomEntityTypeCommand;exports.DeleteDataQualityRulesetCommand = DeleteDataQualityRulesetCommand;exports.DeleteDatabaseCommand = DeleteDatabaseCommand;exports.DeleteDevEndpointCommand = DeleteDevEndpointCommand;exports.DeleteGlueIdentityCenterConfigurationCommand = DeleteGlueIdentityCenterConfigurationCommand;exports.DeleteIntegrationCommand = DeleteIntegrationCommand;exports.DeleteIntegrationResourcePropertyCommand = DeleteIntegrationResourcePropertyCommand;exports.DeleteIntegrationTablePropertiesCommand = DeleteIntegrationTablePropertiesCommand;exports.DeleteJobCommand = DeleteJobCommand;exports.DeleteMLTransformCommand = DeleteMLTransformCommand;exports.DeletePartitionCommand = DeletePartitionCommand;exports.DeletePartitionIndexCommand = DeletePartitionIndexCommand;exports.DeleteRegistryCommand = DeleteRegistryCommand;exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;exports.DeleteSchemaCommand = DeleteSchemaCommand;exports.DeleteSchemaVersionsCommand = DeleteSchemaVersionsCommand;exports.DeleteSecurityConfigurationCommand = DeleteSecurityConfigurationCommand;exports.DeleteSessionCommand = DeleteSessionCommand;exports.DeleteTableCommand = DeleteTableCommand;exports.DeleteTableOptimizerCommand = DeleteTableOptimizerCommand;exports.DeleteTableVersionCommand = DeleteTableVersionCommand;exports.DeleteTriggerCommand = DeleteTriggerCommand;exports.DeleteUsageProfileCommand = DeleteUsageProfileCommand;exports.DeleteUserDefinedFunctionCommand = DeleteUserDefinedFunctionCommand;exports.DeleteWorkflowCommand = DeleteWorkflowCommand;exports.DeltaTargetCompressionType = DeltaTargetCompressionType;exports.DescribeConnectionTypeCommand = DescribeConnectionTypeCommand;exports.DescribeEntityCommand = DescribeEntityCommand;exports.DescribeInboundIntegrationsCommand = DescribeInboundIntegrationsCommand;exports.DescribeIntegrationsCommand = DescribeIntegrationsCommand;exports.EnableHybridValues = EnableHybridValues;exports.ExecutionClass = ExecutionClass;exports.ExecutionStatus = ExecutionStatus;exports.ExistCondition = ExistCondition;exports.FederationSourceErrorCode = FederationSourceErrorCode;exports.FieldDataType = FieldDataType;exports.FieldFilterOperator = FieldFilterOperator;exports.FieldName = FieldName;exports.FilterLogicalOperator = FilterLogicalOperator;exports.FilterOperation = FilterOperation;exports.FilterOperator = FilterOperator;exports.FilterValueType = FilterValueType;exports.FunctionType = FunctionType;exports.GetBlueprintCommand = GetBlueprintCommand;exports.GetBlueprintRunCommand = GetBlueprintRunCommand;exports.GetBlueprintRunsCommand = GetBlueprintRunsCommand;exports.GetCatalogCommand = GetCatalogCommand;exports.GetCatalogImportStatusCommand = GetCatalogImportStatusCommand;exports.GetCatalogsCommand = GetCatalogsCommand;exports.GetClassifierCommand = GetClassifierCommand;exports.GetClassifiersCommand = GetClassifiersCommand;exports.GetColumnStatisticsForPartitionCommand = GetColumnStatisticsForPartitionCommand;exports.GetColumnStatisticsForTableCommand = GetColumnStatisticsForTableCommand;exports.GetColumnStatisticsTaskRunCommand = GetColumnStatisticsTaskRunCommand;exports.GetColumnStatisticsTaskRunsCommand = GetColumnStatisticsTaskRunsCommand;exports.GetColumnStatisticsTaskSettingsCommand = GetColumnStatisticsTaskSettingsCommand;exports.GetConnectionCommand = GetConnectionCommand;exports.GetConnectionsCommand = GetConnectionsCommand;exports.GetCrawlerCommand = GetCrawlerCommand;exports.GetCrawlerMetricsCommand = GetCrawlerMetricsCommand;exports.GetCrawlersCommand = GetCrawlersCommand;exports.GetCustomEntityTypeCommand = GetCustomEntityTypeCommand;exports.GetDataCatalogEncryptionSettingsCommand = GetDataCatalogEncryptionSettingsCommand;exports.GetDataQualityModelCommand = GetDataQualityModelCommand;exports.GetDataQualityModelResultCommand = GetDataQualityModelResultCommand;exports.GetDataQualityResultCommand = GetDataQualityResultCommand;exports.GetDataQualityRuleRecommendationRunCommand = GetDataQualityRuleRecommendationRunCommand;exports.GetDataQualityRulesetCommand = GetDataQualityRulesetCommand;exports.GetDataQualityRulesetEvaluationRunCommand = GetDataQualityRulesetEvaluationRunCommand;exports.GetDatabaseCommand = GetDatabaseCommand;exports.GetDatabasesCommand = GetDatabasesCommand;exports.GetDataflowGraphCommand = GetDataflowGraphCommand;exports.GetDevEndpointCommand = GetDevEndpointCommand;exports.GetDevEndpointsCommand = GetDevEndpointsCommand;exports.GetEntityRecordsCommand = GetEntityRecordsCommand;exports.GetGlueIdentityCenterConfigurationCommand = GetGlueIdentityCenterConfigurationCommand;exports.GetIntegrationResourcePropertyCommand = GetIntegrationResourcePropertyCommand;exports.GetIntegrationTablePropertiesCommand = GetIntegrationTablePropertiesCommand;exports.GetJobBookmarkCommand = GetJobBookmarkCommand;exports.GetJobCommand = GetJobCommand;exports.GetJobRunCommand = GetJobRunCommand;exports.GetJobRunsCommand = GetJobRunsCommand;exports.GetJobsCommand = GetJobsCommand;exports.GetMLTaskRunCommand = GetMLTaskRunCommand;exports.GetMLTaskRunsCommand = GetMLTaskRunsCommand;exports.GetMLTransformCommand = GetMLTransformCommand;exports.GetMLTransformsCommand = GetMLTransformsCommand;exports.GetMappingCommand = GetMappingCommand;exports.GetMaterializedViewRefreshTaskRunCommand = GetMaterializedViewRefreshTaskRunCommand;exports.GetPartitionCommand = GetPartitionCommand;exports.GetPartitionIndexesCommand = GetPartitionIndexesCommand;exports.GetPartitionsCommand = GetPartitionsCommand;exports.GetPlanCommand = GetPlanCommand;exports.GetRegistryCommand = GetRegistryCommand;exports.GetResourcePoliciesCommand = GetResourcePoliciesCommand;exports.GetResourcePolicyCommand = GetResourcePolicyCommand;exports.GetSchemaByDefinitionCommand = GetSchemaByDefinitionCommand;exports.GetSchemaCommand = GetSchemaCommand;exports.GetSchemaVersionCommand = GetSchemaVersionCommand;exports.GetSchemaVersionsDiffCommand = GetSchemaVersionsDiffCommand;exports.GetSecurityConfigurationCommand = GetSecurityConfigurationCommand;exports.GetSecurityConfigurationsCommand = GetSecurityConfigurationsCommand;exports.GetSessionCommand = GetSessionCommand;exports.GetStatementCommand = GetStatementCommand;exports.GetTableCommand = GetTableCommand;exports.GetTableOptimizerCommand = GetTableOptimizerCommand;exports.GetTableVersionCommand = GetTableVersionCommand;exports.GetTableVersionsCommand = GetTableVersionsCommand;exports.GetTablesCommand = GetTablesCommand;exports.GetTagsCommand = GetTagsCommand;exports.GetTriggerCommand = GetTriggerCommand;exports.GetTriggersCommand = GetTriggersCommand;exports.GetUnfilteredPartitionMetadataCommand = GetUnfilteredPartitionMetadataCommand;exports.GetUnfilteredPartitionsMetadataCommand = GetUnfilteredPartitionsMetadataCommand;exports.GetUnfilteredTableMetadataCommand = GetUnfilteredTableMetadataCommand;exports.GetUsageProfileCommand = GetUsageProfileCommand;exports.GetUserDefinedFunctionCommand = GetUserDefinedFunctionCommand;exports.GetUserDefinedFunctionsCommand = GetUserDefinedFunctionsCommand;exports.GetWorkflowCommand = GetWorkflowCommand;exports.GetWorkflowRunCommand = GetWorkflowRunCommand;exports.GetWorkflowRunPropertiesCommand = GetWorkflowRunPropertiesCommand;exports.GetWorkflowRunsCommand = GetWorkflowRunsCommand;exports.Glue = Glue;exports.GlueClient = GlueClient;exports.GlueRecordType = GlueRecordType;exports.HTTPMethod = HTTPMethod;exports.HudiTargetCompressionType = HudiTargetCompressionType;exports.HyperTargetCompressionType = HyperTargetCompressionType;exports.IcebergNullOrder = IcebergNullOrder;exports.IcebergSortDirection = IcebergSortDirection;exports.IcebergStructTypeEnum = IcebergStructTypeEnum;exports.IcebergTargetCompressionType = IcebergTargetCompressionType;exports.IcebergUpdateAction = IcebergUpdateAction;exports.ImportCatalogToGlueCommand = ImportCatalogToGlueCommand;exports.InclusionAnnotationValue = InclusionAnnotationValue;exports.IntegrationStatus = IntegrationStatus;exports.IntegrationType = IntegrationType;exports.JDBCConnectionType = JDBCConnectionType;exports.JDBCDataType = JDBCDataType;exports.JdbcMetadataEntry = JdbcMetadataEntry;exports.JobBookmarksEncryptionMode = JobBookmarksEncryptionMode;exports.JobMode = JobMode;exports.JobRunState = JobRunState;exports.JoinType = JoinType;exports.Language = Language;exports.LastCrawlStatus = LastCrawlStatus;exports.LastRefreshType = LastRefreshType;exports.ListBlueprintsCommand = ListBlueprintsCommand;exports.ListColumnStatisticsTaskRunsCommand = ListColumnStatisticsTaskRunsCommand;exports.ListConnectionTypesCommand = ListConnectionTypesCommand;exports.ListCrawlersCommand = ListCrawlersCommand;exports.ListCrawlsCommand = ListCrawlsCommand;exports.ListCustomEntityTypesCommand = ListCustomEntityTypesCommand;exports.ListDataQualityResultsCommand = ListDataQualityResultsCommand;exports.ListDataQualityRuleRecommendationRunsCommand = ListDataQualityRuleRecommendationRunsCommand;exports.ListDataQualityRulesetEvaluationRunsCommand = ListDataQualityRulesetEvaluationRunsCommand;exports.ListDataQualityRulesetsCommand = ListDataQualityRulesetsCommand;exports.ListDataQualityStatisticAnnotationsCommand = ListDataQualityStatisticAnnotationsCommand;exports.ListDataQualityStatisticsCommand = ListDataQualityStatisticsCommand;exports.ListDevEndpointsCommand = ListDevEndpointsCommand;exports.ListEntitiesCommand = ListEntitiesCommand;exports.ListIntegrationResourcePropertiesCommand = ListIntegrationResourcePropertiesCommand;exports.ListJobsCommand = ListJobsCommand;exports.ListMLTransformsCommand = ListMLTransformsCommand;exports.ListMaterializedViewRefreshTaskRunsCommand = ListMaterializedViewRefreshTaskRunsCommand;exports.ListRegistriesCommand = ListRegistriesCommand;exports.ListSchemaVersionsCommand = ListSchemaVersionsCommand;exports.ListSchemasCommand = ListSchemasCommand;exports.ListSessionsCommand = ListSessionsCommand;exports.ListStatementsCommand = ListStatementsCommand;exports.ListTableOptimizerRunsCommand = ListTableOptimizerRunsCommand;exports.ListTriggersCommand = ListTriggersCommand;exports.ListUsageProfilesCommand = ListUsageProfilesCommand;exports.ListWorkflowsCommand = ListWorkflowsCommand;exports.Logical = Logical;exports.LogicalOperator = LogicalOperator;exports.MLUserDataEncryptionModeString = MLUserDataEncryptionModeString;exports.MaterializedViewRefreshState = MaterializedViewRefreshState;exports.MaterializedViewRefreshType = MaterializedViewRefreshType;exports.MetadataOperation = MetadataOperation;exports.ModifyIntegrationCommand = ModifyIntegrationCommand;exports.NodeType = NodeType;exports.OAuth2GrantType = OAuth2GrantType;exports.OverwriteChildResourcePermissionsWithDefaultEnum = OverwriteChildResourcePermissionsWithDefaultEnum;exports.ParamType = ParamType;exports.ParquetCompressionType = ParquetCompressionType;exports.PartitionIndexStatus = PartitionIndexStatus;exports.Permission = Permission;exports.PermissionType = PermissionType;exports.PiiType = PiiType;exports.PrincipalType = PrincipalType;exports.PropertyLocation = PropertyLocation;exports.PropertyType = PropertyType;exports.PutDataCatalogEncryptionSettingsCommand = PutDataCatalogEncryptionSettingsCommand;exports.PutDataQualityProfileAnnotationCommand = PutDataQualityProfileAnnotationCommand;exports.PutResourcePolicyCommand = PutResourcePolicyCommand;exports.PutSchemaVersionMetadataCommand = PutSchemaVersionMetadataCommand;exports.PutWorkflowRunPropertiesCommand = PutWorkflowRunPropertiesCommand;exports.QuerySchemaVersionMetadataCommand = QuerySchemaVersionMetadataCommand;exports.QuoteChar = QuoteChar;exports.RecrawlBehavior = RecrawlBehavior;exports.RegisterConnectionTypeCommand = RegisterConnectionTypeCommand;exports.RegisterSchemaVersionCommand = RegisterSchemaVersionCommand;exports.RegistryStatus = RegistryStatus;exports.RemoveSchemaVersionMetadataCommand = RemoveSchemaVersionMetadataCommand;exports.ResetJobBookmarkCommand = ResetJobBookmarkCommand;exports.ResourceAction = ResourceAction;exports.ResourceShareType = ResourceShareType;exports.ResourceState = ResourceState;exports.ResourceType = ResourceType;exports.ResumeWorkflowRunCommand = ResumeWorkflowRunCommand;exports.RunStatementCommand = RunStatementCommand;exports.S3EncryptionMode = S3EncryptionMode;exports.ScheduleState = ScheduleState;exports.ScheduleType = ScheduleType;exports.SchemaDiffType = SchemaDiffType;exports.SchemaStatus = SchemaStatus;exports.SchemaVersionStatus = SchemaVersionStatus;exports.SearchTablesCommand = SearchTablesCommand;exports.Separator = Separator;exports.SessionStatus = SessionStatus;exports.SettingSource = SettingSource;exports.Sort = Sort;exports.SortDirectionType = SortDirectionType;exports.SourceControlAuthStrategy = SourceControlAuthStrategy;exports.SourceControlProvider = SourceControlProvider;exports.StartBlueprintRunCommand = StartBlueprintRunCommand;exports.StartColumnStatisticsTaskRunCommand = StartColumnStatisticsTaskRunCommand;exports.StartColumnStatisticsTaskRunScheduleCommand = StartColumnStatisticsTaskRunScheduleCommand;exports.StartCrawlerCommand = StartCrawlerCommand;exports.StartCrawlerScheduleCommand = StartCrawlerScheduleCommand;exports.StartDataQualityRuleRecommendationRunCommand = StartDataQualityRuleRecommendationRunCommand;exports.StartDataQualityRulesetEvaluationRunCommand = StartDataQualityRulesetEvaluationRunCommand;exports.StartExportLabelsTaskRunCommand = StartExportLabelsTaskRunCommand;exports.StartImportLabelsTaskRunCommand = StartImportLabelsTaskRunCommand;exports.StartJobRunCommand = StartJobRunCommand;exports.StartMLEvaluationTaskRunCommand = StartMLEvaluationTaskRunCommand;exports.StartMLLabelingSetGenerationTaskRunCommand = StartMLLabelingSetGenerationTaskRunCommand;exports.StartMaterializedViewRefreshTaskRunCommand = StartMaterializedViewRefreshTaskRunCommand;exports.StartTriggerCommand = StartTriggerCommand;exports.StartWorkflowRunCommand = StartWorkflowRunCommand;exports.StartingPosition = StartingPosition;exports.StatementState = StatementState;exports.StatisticEvaluationLevel = StatisticEvaluationLevel;exports.StopColumnStatisticsTaskRunCommand = StopColumnStatisticsTaskRunCommand;exports.StopColumnStatisticsTaskRunScheduleCommand = StopColumnStatisticsTaskRunScheduleCommand;exports.StopCrawlerCommand = StopCrawlerCommand;exports.StopCrawlerScheduleCommand = StopCrawlerScheduleCommand;exports.StopMaterializedViewRefreshTaskRunCommand = StopMaterializedViewRefreshTaskRunCommand;exports.StopSessionCommand = StopSessionCommand;exports.StopTriggerCommand = StopTriggerCommand;exports.StopWorkflowRunCommand = StopWorkflowRunCommand;exports.TableAttributes = TableAttributes;exports.TableOptimizerEventType = TableOptimizerEventType;exports.TableOptimizerType = TableOptimizerType;exports.TagResourceCommand = TagResourceCommand;exports.TargetFormat = TargetFormat;exports.TaskRunSortColumnType = TaskRunSortColumnType;exports.TaskStatusType = TaskStatusType;exports.TaskType = TaskType;exports.TestConnectionCommand = TestConnectionCommand;exports.TransformSortColumnType = TransformSortColumnType;exports.TransformStatusType = TransformStatusType;exports.TransformType = TransformType;exports.TriggerState = TriggerState;exports.TriggerType = TriggerType;exports.UnionType = UnionType;exports.UnnestSpec = UnnestSpec;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateBehavior = UpdateBehavior;exports.UpdateBlueprintCommand = UpdateBlueprintCommand;exports.UpdateCatalogBehavior = UpdateCatalogBehavior;exports.UpdateCatalogCommand = UpdateCatalogCommand;exports.UpdateClassifierCommand = UpdateClassifierCommand;exports.UpdateColumnStatisticsForPartitionCommand = UpdateColumnStatisticsForPartitionCommand;exports.UpdateColumnStatisticsForTableCommand = UpdateColumnStatisticsForTableCommand;exports.UpdateColumnStatisticsTaskSettingsCommand = UpdateColumnStatisticsTaskSettingsCommand;exports.UpdateConnectionCommand = UpdateConnectionCommand;exports.UpdateCrawlerCommand = UpdateCrawlerCommand;exports.UpdateCrawlerScheduleCommand = UpdateCrawlerScheduleCommand;exports.UpdateDataQualityRulesetCommand = UpdateDataQualityRulesetCommand;exports.UpdateDatabaseCommand = UpdateDatabaseCommand;exports.UpdateDevEndpointCommand = UpdateDevEndpointCommand;exports.UpdateGlueIdentityCenterConfigurationCommand = UpdateGlueIdentityCenterConfigurationCommand;exports.UpdateIntegrationResourcePropertyCommand = UpdateIntegrationResourcePropertyCommand;exports.UpdateIntegrationTablePropertiesCommand = UpdateIntegrationTablePropertiesCommand;exports.UpdateJobCommand = UpdateJobCommand;exports.UpdateJobFromSourceControlCommand = UpdateJobFromSourceControlCommand;exports.UpdateMLTransformCommand = UpdateMLTransformCommand;exports.UpdatePartitionCommand = UpdatePartitionCommand;exports.UpdateRegistryCommand = UpdateRegistryCommand;exports.UpdateSchemaCommand = UpdateSchemaCommand;exports.UpdateSourceControlFromJobCommand = UpdateSourceControlFromJobCommand;exports.UpdateTableCommand = UpdateTableCommand;exports.UpdateTableOptimizerCommand = UpdateTableOptimizerCommand;exports.UpdateTriggerCommand = UpdateTriggerCommand;exports.UpdateUsageProfileCommand = UpdateUsageProfileCommand;exports.UpdateUserDefinedFunctionCommand = UpdateUserDefinedFunctionCommand;exports.UpdateWorkflowCommand = UpdateWorkflowCommand;exports.ViewDialect = ViewDialect;exports.ViewUpdateAction = ViewUpdateAction;exports.WorkerType = WorkerType;exports.WorkflowRunStatus = WorkflowRunStatus;exports.paginateDescribeEntity = paginateDescribeEntity;exports.paginateGetBlueprintRuns = paginateGetBlueprintRuns;exports.paginateGetClassifiers = paginateGetClassifiers;exports.paginateGetColumnStatisticsTaskRuns = paginateGetColumnStatisticsTaskRuns;exports.paginateGetConnections = paginateGetConnections;exports.paginateGetCrawlerMetrics = paginateGetCrawlerMetrics;exports.paginateGetCrawlers = paginateGetCrawlers;exports.paginateGetDatabases = paginateGetDatabases;exports.paginateGetDevEndpoints = paginateGetDevEndpoints;exports.paginateGetJobRuns = paginateGetJobRuns;exports.paginateGetJobs = paginateGetJobs;exports.paginateGetMLTaskRuns = paginateGetMLTaskRuns;exports.paginateGetMLTransforms = paginateGetMLTransforms;exports.paginateGetPartitionIndexes = paginateGetPartitionIndexes;exports.paginateGetPartitions = paginateGetPartitions;exports.paginateGetResourcePolicies = paginateGetResourcePolicies;exports.paginateGetSecurityConfigurations = paginateGetSecurityConfigurations;exports.paginateGetTableVersions = paginateGetTableVersions;exports.paginateGetTables = paginateGetTables;exports.paginateGetTriggers = paginateGetTriggers;exports.paginateGetUnfilteredPartitionsMetadata = paginateGetUnfilteredPartitionsMetadata;exports.paginateGetUserDefinedFunctions = paginateGetUserDefinedFunctions;exports.paginateGetWorkflowRuns = paginateGetWorkflowRuns;exports.paginateListBlueprints = paginateListBlueprints;exports.paginateListColumnStatisticsTaskRuns = paginateListColumnStatisticsTaskRuns;exports.paginateListConnectionTypes = paginateListConnectionTypes;exports.paginateListCrawlers = paginateListCrawlers;exports.paginateListCustomEntityTypes = paginateListCustomEntityTypes;exports.paginateListDataQualityResults = paginateListDataQualityResults;exports.paginateListDataQualityRuleRecommendationRuns = paginateListDataQualityRuleRecommendationRuns;exports.paginateListDataQualityRulesetEvaluationRuns = paginateListDataQualityRulesetEvaluationRuns;exports.paginateListDataQualityRulesets = paginateListDataQualityRulesets;exports.paginateListDevEndpoints = paginateListDevEndpoints;exports.paginateListEntities = paginateListEntities;exports.paginateListJobs = paginateListJobs;exports.paginateListMLTransforms = paginateListMLTransforms;exports.paginateListMaterializedViewRefreshTaskRuns = paginateListMaterializedViewRefreshTaskRuns;exports.paginateListRegistries = paginateListRegistries;exports.paginateListSchemaVersions = paginateListSchemaVersions;exports.paginateListSchemas = paginateListSchemas;exports.paginateListSessions = paginateListSessions;exports.paginateListTableOptimizerRuns = paginateListTableOptimizerRuns;exports.paginateListTriggers = paginateListTriggers;exports.paginateListUsageProfiles = paginateListUsageProfiles;exports.paginateListWorkflows = paginateListWorkflows;exports.paginateSearchTables = paginateSearchTables;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];});