File Explorer

/proc/self/root/proc/self/root/var/runtime/node_modules/@aws-sdk/client-opensearch/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.js71.7 KB · 1998 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 OpenSearchServiceException = require('./models/OpenSearchServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "es",    });};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 OpenSearchClient 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.defaultOpenSearchHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class AcceptInboundConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "AcceptInboundConnection", {})    .n("OpenSearchClient", "AcceptInboundConnectionCommand")    .sc(schemas_0.AcceptInboundConnection$)    .build() {} class AddDataSourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "AddDataSource", {})    .n("OpenSearchClient", "AddDataSourceCommand")    .sc(schemas_0.AddDataSource$)    .build() {} class AddDirectQueryDataSourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "AddDirectQueryDataSource", {})    .n("OpenSearchClient", "AddDirectQueryDataSourceCommand")    .sc(schemas_0.AddDirectQueryDataSource$)    .build() {} class AddTagsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "AddTags", {})    .n("OpenSearchClient", "AddTagsCommand")    .sc(schemas_0.AddTags$)    .build() {} class AssociatePackageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "AssociatePackage", {})    .n("OpenSearchClient", "AssociatePackageCommand")    .sc(schemas_0.AssociatePackage$)    .build() {} class AssociatePackagesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "AssociatePackages", {})    .n("OpenSearchClient", "AssociatePackagesCommand")    .sc(schemas_0.AssociatePackages$)    .build() {} class AuthorizeVpcEndpointAccessCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "AuthorizeVpcEndpointAccess", {})    .n("OpenSearchClient", "AuthorizeVpcEndpointAccessCommand")    .sc(schemas_0.AuthorizeVpcEndpointAccess$)    .build() {} class CancelDomainConfigChangeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "CancelDomainConfigChange", {})    .n("OpenSearchClient", "CancelDomainConfigChangeCommand")    .sc(schemas_0.CancelDomainConfigChange$)    .build() {} class CancelServiceSoftwareUpdateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "CancelServiceSoftwareUpdate", {})    .n("OpenSearchClient", "CancelServiceSoftwareUpdateCommand")    .sc(schemas_0.CancelServiceSoftwareUpdate$)    .build() {} class CreateApplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "CreateApplication", {})    .n("OpenSearchClient", "CreateApplicationCommand")    .sc(schemas_0.CreateApplication$)    .build() {} class CreateDomainCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "CreateDomain", {})    .n("OpenSearchClient", "CreateDomainCommand")    .sc(schemas_0.CreateDomain$)    .build() {} class CreateIndexCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "CreateIndex", {})    .n("OpenSearchClient", "CreateIndexCommand")    .sc(schemas_0.CreateIndex$)    .build() {} class CreateOutboundConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "CreateOutboundConnection", {})    .n("OpenSearchClient", "CreateOutboundConnectionCommand")    .sc(schemas_0.CreateOutboundConnection$)    .build() {} class CreatePackageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "CreatePackage", {})    .n("OpenSearchClient", "CreatePackageCommand")    .sc(schemas_0.CreatePackage$)    .build() {} class CreateVpcEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "CreateVpcEndpoint", {})    .n("OpenSearchClient", "CreateVpcEndpointCommand")    .sc(schemas_0.CreateVpcEndpoint$)    .build() {} class DeleteApplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DeleteApplication", {})    .n("OpenSearchClient", "DeleteApplicationCommand")    .sc(schemas_0.DeleteApplication$)    .build() {} class DeleteDataSourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DeleteDataSource", {})    .n("OpenSearchClient", "DeleteDataSourceCommand")    .sc(schemas_0.DeleteDataSource$)    .build() {} class DeleteDirectQueryDataSourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DeleteDirectQueryDataSource", {})    .n("OpenSearchClient", "DeleteDirectQueryDataSourceCommand")    .sc(schemas_0.DeleteDirectQueryDataSource$)    .build() {} class DeleteDomainCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DeleteDomain", {})    .n("OpenSearchClient", "DeleteDomainCommand")    .sc(schemas_0.DeleteDomain$)    .build() {} class DeleteInboundConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DeleteInboundConnection", {})    .n("OpenSearchClient", "DeleteInboundConnectionCommand")    .sc(schemas_0.DeleteInboundConnection$)    .build() {} class DeleteIndexCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DeleteIndex", {})    .n("OpenSearchClient", "DeleteIndexCommand")    .sc(schemas_0.DeleteIndex$)    .build() {} class DeleteOutboundConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DeleteOutboundConnection", {})    .n("OpenSearchClient", "DeleteOutboundConnectionCommand")    .sc(schemas_0.DeleteOutboundConnection$)    .build() {} class DeletePackageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DeletePackage", {})    .n("OpenSearchClient", "DeletePackageCommand")    .sc(schemas_0.DeletePackage$)    .build() {} class DeleteVpcEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DeleteVpcEndpoint", {})    .n("OpenSearchClient", "DeleteVpcEndpointCommand")    .sc(schemas_0.DeleteVpcEndpoint$)    .build() {} class DeregisterCapabilityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DeregisterCapability", {})    .n("OpenSearchClient", "DeregisterCapabilityCommand")    .sc(schemas_0.DeregisterCapability$)    .build() {} class DescribeDomainAutoTunesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeDomainAutoTunes", {})    .n("OpenSearchClient", "DescribeDomainAutoTunesCommand")    .sc(schemas_0.DescribeDomainAutoTunes$)    .build() {} class DescribeDomainChangeProgressCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeDomainChangeProgress", {})    .n("OpenSearchClient", "DescribeDomainChangeProgressCommand")    .sc(schemas_0.DescribeDomainChangeProgress$)    .build() {} class DescribeDomainCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeDomain", {})    .n("OpenSearchClient", "DescribeDomainCommand")    .sc(schemas_0.DescribeDomain$)    .build() {} class DescribeDomainConfigCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeDomainConfig", {})    .n("OpenSearchClient", "DescribeDomainConfigCommand")    .sc(schemas_0.DescribeDomainConfig$)    .build() {} class DescribeDomainHealthCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeDomainHealth", {})    .n("OpenSearchClient", "DescribeDomainHealthCommand")    .sc(schemas_0.DescribeDomainHealth$)    .build() {} class DescribeDomainNodesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeDomainNodes", {})    .n("OpenSearchClient", "DescribeDomainNodesCommand")    .sc(schemas_0.DescribeDomainNodes$)    .build() {} class DescribeDomainsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeDomains", {})    .n("OpenSearchClient", "DescribeDomainsCommand")    .sc(schemas_0.DescribeDomains$)    .build() {} class DescribeDryRunProgressCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeDryRunProgress", {})    .n("OpenSearchClient", "DescribeDryRunProgressCommand")    .sc(schemas_0.DescribeDryRunProgress$)    .build() {} class DescribeInboundConnectionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeInboundConnections", {})    .n("OpenSearchClient", "DescribeInboundConnectionsCommand")    .sc(schemas_0.DescribeInboundConnections$)    .build() {} class DescribeInsightDetailsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeInsightDetails", {})    .n("OpenSearchClient", "DescribeInsightDetailsCommand")    .sc(schemas_0.DescribeInsightDetails$)    .build() {} class DescribeInstanceTypeLimitsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeInstanceTypeLimits", {})    .n("OpenSearchClient", "DescribeInstanceTypeLimitsCommand")    .sc(schemas_0.DescribeInstanceTypeLimits$)    .build() {} class DescribeOutboundConnectionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeOutboundConnections", {})    .n("OpenSearchClient", "DescribeOutboundConnectionsCommand")    .sc(schemas_0.DescribeOutboundConnections$)    .build() {} class DescribePackagesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribePackages", {})    .n("OpenSearchClient", "DescribePackagesCommand")    .sc(schemas_0.DescribePackages$)    .build() {} class DescribeReservedInstanceOfferingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeReservedInstanceOfferings", {})    .n("OpenSearchClient", "DescribeReservedInstanceOfferingsCommand")    .sc(schemas_0.DescribeReservedInstanceOfferings$)    .build() {} class DescribeReservedInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeReservedInstances", {})    .n("OpenSearchClient", "DescribeReservedInstancesCommand")    .sc(schemas_0.DescribeReservedInstances$)    .build() {} class DescribeVpcEndpointsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DescribeVpcEndpoints", {})    .n("OpenSearchClient", "DescribeVpcEndpointsCommand")    .sc(schemas_0.DescribeVpcEndpoints$)    .build() {} class DissociatePackageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DissociatePackage", {})    .n("OpenSearchClient", "DissociatePackageCommand")    .sc(schemas_0.DissociatePackage$)    .build() {} class DissociatePackagesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "DissociatePackages", {})    .n("OpenSearchClient", "DissociatePackagesCommand")    .sc(schemas_0.DissociatePackages$)    .build() {} class GetApplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "GetApplication", {})    .n("OpenSearchClient", "GetApplicationCommand")    .sc(schemas_0.GetApplication$)    .build() {} class GetCapabilityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "GetCapability", {})    .n("OpenSearchClient", "GetCapabilityCommand")    .sc(schemas_0.GetCapability$)    .build() {} class GetCompatibleVersionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "GetCompatibleVersions", {})    .n("OpenSearchClient", "GetCompatibleVersionsCommand")    .sc(schemas_0.GetCompatibleVersions$)    .build() {} class GetDataSourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "GetDataSource", {})    .n("OpenSearchClient", "GetDataSourceCommand")    .sc(schemas_0.GetDataSource$)    .build() {} class GetDefaultApplicationSettingCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "GetDefaultApplicationSetting", {})    .n("OpenSearchClient", "GetDefaultApplicationSettingCommand")    .sc(schemas_0.GetDefaultApplicationSetting$)    .build() {} class GetDirectQueryDataSourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "GetDirectQueryDataSource", {})    .n("OpenSearchClient", "GetDirectQueryDataSourceCommand")    .sc(schemas_0.GetDirectQueryDataSource$)    .build() {} class GetDomainMaintenanceStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "GetDomainMaintenanceStatus", {})    .n("OpenSearchClient", "GetDomainMaintenanceStatusCommand")    .sc(schemas_0.GetDomainMaintenanceStatus$)    .build() {} class GetIndexCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "GetIndex", {})    .n("OpenSearchClient", "GetIndexCommand")    .sc(schemas_0.GetIndex$)    .build() {} class GetPackageVersionHistoryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "GetPackageVersionHistory", {})    .n("OpenSearchClient", "GetPackageVersionHistoryCommand")    .sc(schemas_0.GetPackageVersionHistory$)    .build() {} class GetUpgradeHistoryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "GetUpgradeHistory", {})    .n("OpenSearchClient", "GetUpgradeHistoryCommand")    .sc(schemas_0.GetUpgradeHistory$)    .build() {} class GetUpgradeStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "GetUpgradeStatus", {})    .n("OpenSearchClient", "GetUpgradeStatusCommand")    .sc(schemas_0.GetUpgradeStatus$)    .build() {} class ListApplicationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListApplications", {})    .n("OpenSearchClient", "ListApplicationsCommand")    .sc(schemas_0.ListApplications$)    .build() {} class ListDataSourcesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListDataSources", {})    .n("OpenSearchClient", "ListDataSourcesCommand")    .sc(schemas_0.ListDataSources$)    .build() {} class ListDirectQueryDataSourcesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListDirectQueryDataSources", {})    .n("OpenSearchClient", "ListDirectQueryDataSourcesCommand")    .sc(schemas_0.ListDirectQueryDataSources$)    .build() {} class ListDomainMaintenancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListDomainMaintenances", {})    .n("OpenSearchClient", "ListDomainMaintenancesCommand")    .sc(schemas_0.ListDomainMaintenances$)    .build() {} class ListDomainNamesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListDomainNames", {})    .n("OpenSearchClient", "ListDomainNamesCommand")    .sc(schemas_0.ListDomainNames$)    .build() {} class ListDomainsForPackageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListDomainsForPackage", {})    .n("OpenSearchClient", "ListDomainsForPackageCommand")    .sc(schemas_0.ListDomainsForPackage$)    .build() {} class ListInsightsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListInsights", {})    .n("OpenSearchClient", "ListInsightsCommand")    .sc(schemas_0.ListInsights$)    .build() {} class ListInstanceTypeDetailsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListInstanceTypeDetails", {})    .n("OpenSearchClient", "ListInstanceTypeDetailsCommand")    .sc(schemas_0.ListInstanceTypeDetails$)    .build() {} class ListPackagesForDomainCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListPackagesForDomain", {})    .n("OpenSearchClient", "ListPackagesForDomainCommand")    .sc(schemas_0.ListPackagesForDomain$)    .build() {} class ListScheduledActionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListScheduledActions", {})    .n("OpenSearchClient", "ListScheduledActionsCommand")    .sc(schemas_0.ListScheduledActions$)    .build() {} class ListTagsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListTags", {})    .n("OpenSearchClient", "ListTagsCommand")    .sc(schemas_0.ListTags$)    .build() {} class ListVersionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListVersions", {})    .n("OpenSearchClient", "ListVersionsCommand")    .sc(schemas_0.ListVersions$)    .build() {} class ListVpcEndpointAccessCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListVpcEndpointAccess", {})    .n("OpenSearchClient", "ListVpcEndpointAccessCommand")    .sc(schemas_0.ListVpcEndpointAccess$)    .build() {} class ListVpcEndpointsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListVpcEndpoints", {})    .n("OpenSearchClient", "ListVpcEndpointsCommand")    .sc(schemas_0.ListVpcEndpoints$)    .build() {} class ListVpcEndpointsForDomainCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "ListVpcEndpointsForDomain", {})    .n("OpenSearchClient", "ListVpcEndpointsForDomainCommand")    .sc(schemas_0.ListVpcEndpointsForDomain$)    .build() {} class PurchaseReservedInstanceOfferingCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "PurchaseReservedInstanceOffering", {})    .n("OpenSearchClient", "PurchaseReservedInstanceOfferingCommand")    .sc(schemas_0.PurchaseReservedInstanceOffering$)    .build() {} class PutDefaultApplicationSettingCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "PutDefaultApplicationSetting", {})    .n("OpenSearchClient", "PutDefaultApplicationSettingCommand")    .sc(schemas_0.PutDefaultApplicationSetting$)    .build() {} class RegisterCapabilityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "RegisterCapability", {})    .n("OpenSearchClient", "RegisterCapabilityCommand")    .sc(schemas_0.RegisterCapability$)    .build() {} class RejectInboundConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "RejectInboundConnection", {})    .n("OpenSearchClient", "RejectInboundConnectionCommand")    .sc(schemas_0.RejectInboundConnection$)    .build() {} class RemoveTagsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "RemoveTags", {})    .n("OpenSearchClient", "RemoveTagsCommand")    .sc(schemas_0.RemoveTags$)    .build() {} class RevokeVpcEndpointAccessCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "RevokeVpcEndpointAccess", {})    .n("OpenSearchClient", "RevokeVpcEndpointAccessCommand")    .sc(schemas_0.RevokeVpcEndpointAccess$)    .build() {} class RollbackServiceSoftwareUpdateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "RollbackServiceSoftwareUpdate", {})    .n("OpenSearchClient", "RollbackServiceSoftwareUpdateCommand")    .sc(schemas_0.RollbackServiceSoftwareUpdate$)    .build() {} class StartDomainMaintenanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "StartDomainMaintenance", {})    .n("OpenSearchClient", "StartDomainMaintenanceCommand")    .sc(schemas_0.StartDomainMaintenance$)    .build() {} class StartServiceSoftwareUpdateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "StartServiceSoftwareUpdate", {})    .n("OpenSearchClient", "StartServiceSoftwareUpdateCommand")    .sc(schemas_0.StartServiceSoftwareUpdate$)    .build() {} class UpdateApplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "UpdateApplication", {})    .n("OpenSearchClient", "UpdateApplicationCommand")    .sc(schemas_0.UpdateApplication$)    .build() {} class UpdateDataSourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "UpdateDataSource", {})    .n("OpenSearchClient", "UpdateDataSourceCommand")    .sc(schemas_0.UpdateDataSource$)    .build() {} class UpdateDirectQueryDataSourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "UpdateDirectQueryDataSource", {})    .n("OpenSearchClient", "UpdateDirectQueryDataSourceCommand")    .sc(schemas_0.UpdateDirectQueryDataSource$)    .build() {} class UpdateDomainConfigCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "UpdateDomainConfig", {})    .n("OpenSearchClient", "UpdateDomainConfigCommand")    .sc(schemas_0.UpdateDomainConfig$)    .build() {} class UpdateIndexCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "UpdateIndex", {})    .n("OpenSearchClient", "UpdateIndexCommand")    .sc(schemas_0.UpdateIndex$)    .build() {} class UpdatePackageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "UpdatePackage", {})    .n("OpenSearchClient", "UpdatePackageCommand")    .sc(schemas_0.UpdatePackage$)    .build() {} class UpdatePackageScopeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "UpdatePackageScope", {})    .n("OpenSearchClient", "UpdatePackageScopeCommand")    .sc(schemas_0.UpdatePackageScope$)    .build() {} class UpdateScheduledActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "UpdateScheduledAction", {})    .n("OpenSearchClient", "UpdateScheduledActionCommand")    .sc(schemas_0.UpdateScheduledAction$)    .build() {} class UpdateVpcEndpointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "UpdateVpcEndpoint", {})    .n("OpenSearchClient", "UpdateVpcEndpointCommand")    .sc(schemas_0.UpdateVpcEndpoint$)    .build() {} class UpgradeDomainCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("AmazonOpenSearchService", "UpgradeDomain", {})    .n("OpenSearchClient", "UpgradeDomainCommand")    .sc(schemas_0.UpgradeDomain$)    .build() {} const paginateDescribeDomainAutoTunes = core.createPaginator(OpenSearchClient, DescribeDomainAutoTunesCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeInboundConnections = core.createPaginator(OpenSearchClient, DescribeInboundConnectionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeOutboundConnections = core.createPaginator(OpenSearchClient, DescribeOutboundConnectionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribePackages = core.createPaginator(OpenSearchClient, DescribePackagesCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeReservedInstanceOfferings = core.createPaginator(OpenSearchClient, DescribeReservedInstanceOfferingsCommand, "NextToken", "NextToken", "MaxResults"); const paginateDescribeReservedInstances = core.createPaginator(OpenSearchClient, DescribeReservedInstancesCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetPackageVersionHistory = core.createPaginator(OpenSearchClient, GetPackageVersionHistoryCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetUpgradeHistory = core.createPaginator(OpenSearchClient, GetUpgradeHistoryCommand, "NextToken", "NextToken", "MaxResults"); const paginateListApplications = core.createPaginator(OpenSearchClient, ListApplicationsCommand, "nextToken", "nextToken", "maxResults"); const paginateListDomainMaintenances = core.createPaginator(OpenSearchClient, ListDomainMaintenancesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListDomainsForPackage = core.createPaginator(OpenSearchClient, ListDomainsForPackageCommand, "NextToken", "NextToken", "MaxResults"); const paginateListInstanceTypeDetails = core.createPaginator(OpenSearchClient, ListInstanceTypeDetailsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListPackagesForDomain = core.createPaginator(OpenSearchClient, ListPackagesForDomainCommand, "NextToken", "NextToken", "MaxResults"); const paginateListScheduledActions = core.createPaginator(OpenSearchClient, ListScheduledActionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListVersions = core.createPaginator(OpenSearchClient, ListVersionsCommand, "NextToken", "NextToken", "MaxResults"); const commands = {    AcceptInboundConnectionCommand,    AddDataSourceCommand,    AddDirectQueryDataSourceCommand,    AddTagsCommand,    AssociatePackageCommand,    AssociatePackagesCommand,    AuthorizeVpcEndpointAccessCommand,    CancelDomainConfigChangeCommand,    CancelServiceSoftwareUpdateCommand,    CreateApplicationCommand,    CreateDomainCommand,    CreateIndexCommand,    CreateOutboundConnectionCommand,    CreatePackageCommand,    CreateVpcEndpointCommand,    DeleteApplicationCommand,    DeleteDataSourceCommand,    DeleteDirectQueryDataSourceCommand,    DeleteDomainCommand,    DeleteInboundConnectionCommand,    DeleteIndexCommand,    DeleteOutboundConnectionCommand,    DeletePackageCommand,    DeleteVpcEndpointCommand,    DeregisterCapabilityCommand,    DescribeDomainCommand,    DescribeDomainAutoTunesCommand,    DescribeDomainChangeProgressCommand,    DescribeDomainConfigCommand,    DescribeDomainHealthCommand,    DescribeDomainNodesCommand,    DescribeDomainsCommand,    DescribeDryRunProgressCommand,    DescribeInboundConnectionsCommand,    DescribeInsightDetailsCommand,    DescribeInstanceTypeLimitsCommand,    DescribeOutboundConnectionsCommand,    DescribePackagesCommand,    DescribeReservedInstanceOfferingsCommand,    DescribeReservedInstancesCommand,    DescribeVpcEndpointsCommand,    DissociatePackageCommand,    DissociatePackagesCommand,    GetApplicationCommand,    GetCapabilityCommand,    GetCompatibleVersionsCommand,    GetDataSourceCommand,    GetDefaultApplicationSettingCommand,    GetDirectQueryDataSourceCommand,    GetDomainMaintenanceStatusCommand,    GetIndexCommand,    GetPackageVersionHistoryCommand,    GetUpgradeHistoryCommand,    GetUpgradeStatusCommand,    ListApplicationsCommand,    ListDataSourcesCommand,    ListDirectQueryDataSourcesCommand,    ListDomainMaintenancesCommand,    ListDomainNamesCommand,    ListDomainsForPackageCommand,    ListInsightsCommand,    ListInstanceTypeDetailsCommand,    ListPackagesForDomainCommand,    ListScheduledActionsCommand,    ListTagsCommand,    ListVersionsCommand,    ListVpcEndpointAccessCommand,    ListVpcEndpointsCommand,    ListVpcEndpointsForDomainCommand,    PurchaseReservedInstanceOfferingCommand,    PutDefaultApplicationSettingCommand,    RegisterCapabilityCommand,    RejectInboundConnectionCommand,    RemoveTagsCommand,    RevokeVpcEndpointAccessCommand,    RollbackServiceSoftwareUpdateCommand,    StartDomainMaintenanceCommand,    StartServiceSoftwareUpdateCommand,    UpdateApplicationCommand,    UpdateDataSourceCommand,    UpdateDirectQueryDataSourceCommand,    UpdateDomainConfigCommand,    UpdateIndexCommand,    UpdatePackageCommand,    UpdatePackageScopeCommand,    UpdateScheduledActionCommand,    UpdateVpcEndpointCommand,    UpgradeDomainCommand,};const paginators = {    paginateDescribeDomainAutoTunes,    paginateDescribeInboundConnections,    paginateDescribeOutboundConnections,    paginateDescribePackages,    paginateDescribeReservedInstanceOfferings,    paginateDescribeReservedInstances,    paginateGetPackageVersionHistory,    paginateGetUpgradeHistory,    paginateListApplications,    paginateListDomainMaintenances,    paginateListDomainsForPackage,    paginateListInstanceTypeDetails,    paginateListPackagesForDomain,    paginateListScheduledActions,    paginateListVersions,};class OpenSearch extends OpenSearchClient {}client.createAggregatedClient(commands, OpenSearch, { paginators }); const ConnectionMode = {    DIRECT: "DIRECT",    VPC_ENDPOINT: "VPC_ENDPOINT",};const InboundConnectionStatusCode = {    ACTIVE: "ACTIVE",    APPROVED: "APPROVED",    DELETED: "DELETED",    DELETING: "DELETING",    PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE",    PROVISIONING: "PROVISIONING",    REJECTED: "REJECTED",    REJECTING: "REJECTING",};const OptionState = {    Active: "Active",    Processing: "Processing",    RequiresIndexDocuments: "RequiresIndexDocuments",};const ActionSeverity = {    HIGH: "HIGH",    LOW: "LOW",    MEDIUM: "MEDIUM",};const ActionStatus = {    COMPLETED: "COMPLETED",    ELIGIBLE: "ELIGIBLE",    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    NOT_ELIGIBLE: "NOT_ELIGIBLE",    PENDING_UPDATE: "PENDING_UPDATE",};const ActionType = {    JVM_HEAP_SIZE_TUNING: "JVM_HEAP_SIZE_TUNING",    JVM_YOUNG_GEN_TUNING: "JVM_YOUNG_GEN_TUNING",    SERVICE_SOFTWARE_UPDATE: "SERVICE_SOFTWARE_UPDATE",};const NaturalLanguageQueryGenerationDesiredState = {    Disabled: "DISABLED",    Enabled: "ENABLED",};const NaturalLanguageQueryGenerationCurrentState = {    DisableComplete: "DISABLE_COMPLETE",    DisableFailed: "DISABLE_FAILED",    DisableInProgress: "DISABLE_IN_PROGRESS",    EnableComplete: "ENABLE_COMPLETE",    EnableFailed: "ENABLE_FAILED",    EnableInProgress: "ENABLE_IN_PROGRESS",    NotEnabled: "NOT_ENABLED",};const DomainPackageStatus = {    ACTIVE: "ACTIVE",    ASSOCIATING: "ASSOCIATING",    ASSOCIATION_FAILED: "ASSOCIATION_FAILED",    DISSOCIATING: "DISSOCIATING",    DISSOCIATION_FAILED: "DISSOCIATION_FAILED",};const PackageType = {    PACKAGE_CONFIG: "PACKAGE-CONFIG",    PACKAGE_LICENSE: "PACKAGE-LICENSE",    TXT_DICTIONARY: "TXT-DICTIONARY",    ZIP_PLUGIN: "ZIP-PLUGIN",};const AWSServicePrincipal = {    application_opensearchservice_amazonaws_com: "application.opensearchservice.amazonaws.com",};const PrincipalType = {    AWS_ACCOUNT: "AWS_ACCOUNT",    AWS_SERVICE: "AWS_SERVICE",};const DeploymentStatus = {    COMPLETED: "COMPLETED",    ELIGIBLE: "ELIGIBLE",    IN_PROGRESS: "IN_PROGRESS",    NOT_ELIGIBLE: "NOT_ELIGIBLE",    PENDING_UPDATE: "PENDING_UPDATE",};const AppConfigType = {    OpensearchDashboardAdminGroups: "opensearchDashboards.dashboardAdmin.groups",    OpensearchDashboardAdminUsers: "opensearchDashboards.dashboardAdmin.users",};const AutoTuneDesiredState = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",};const TimeUnit = {    HOURS: "HOURS",};const OpenSearchPartitionInstanceType = {    c4_2xlarge_search: "c4.2xlarge.search",    c4_4xlarge_search: "c4.4xlarge.search",    c4_8xlarge_search: "c4.8xlarge.search",    c4_large_search: "c4.large.search",    c4_xlarge_search: "c4.xlarge.search",    c5_18xlarge_search: "c5.18xlarge.search",    c5_2xlarge_search: "c5.2xlarge.search",    c5_4xlarge_search: "c5.4xlarge.search",    c5_9xlarge_search: "c5.9xlarge.search",    c5_large_search: "c5.large.search",    c5_xlarge_search: "c5.xlarge.search",    c6g_12xlarge_search: "c6g.12xlarge.search",    c6g_2xlarge_search: "c6g.2xlarge.search",    c6g_4xlarge_search: "c6g.4xlarge.search",    c6g_8xlarge_search: "c6g.8xlarge.search",    c6g_large_search: "c6g.large.search",    c6g_xlarge_search: "c6g.xlarge.search",    d2_2xlarge_search: "d2.2xlarge.search",    d2_4xlarge_search: "d2.4xlarge.search",    d2_8xlarge_search: "d2.8xlarge.search",    d2_xlarge_search: "d2.xlarge.search",    i2_2xlarge_search: "i2.2xlarge.search",    i2_xlarge_search: "i2.xlarge.search",    i3_16xlarge_search: "i3.16xlarge.search",    i3_2xlarge_search: "i3.2xlarge.search",    i3_4xlarge_search: "i3.4xlarge.search",    i3_8xlarge_search: "i3.8xlarge.search",    i3_large_search: "i3.large.search",    i3_xlarge_search: "i3.xlarge.search",    m3_2xlarge_search: "m3.2xlarge.search",    m3_large_search: "m3.large.search",    m3_medium_search: "m3.medium.search",    m3_xlarge_search: "m3.xlarge.search",    m4_10xlarge_search: "m4.10xlarge.search",    m4_2xlarge_search: "m4.2xlarge.search",    m4_4xlarge_search: "m4.4xlarge.search",    m4_large_search: "m4.large.search",    m4_xlarge_search: "m4.xlarge.search",    m5_12xlarge_search: "m5.12xlarge.search",    m5_24xlarge_search: "m5.24xlarge.search",    m5_2xlarge_search: "m5.2xlarge.search",    m5_4xlarge_search: "m5.4xlarge.search",    m5_large_search: "m5.large.search",    m5_xlarge_search: "m5.xlarge.search",    m6g_12xlarge_search: "m6g.12xlarge.search",    m6g_2xlarge_search: "m6g.2xlarge.search",    m6g_4xlarge_search: "m6g.4xlarge.search",    m6g_8xlarge_search: "m6g.8xlarge.search",    m6g_large_search: "m6g.large.search",    m6g_xlarge_search: "m6g.xlarge.search",    or1_12xlarge_search: "or1.12xlarge.search",    or1_16xlarge_search: "or1.16xlarge.search",    or1_2xlarge_search: "or1.2xlarge.search",    or1_4xlarge_search: "or1.4xlarge.search",    or1_8xlarge_search: "or1.8xlarge.search",    or1_large_search: "or1.large.search",    or1_medium_search: "or1.medium.search",    or1_xlarge_search: "or1.xlarge.search",    r3_2xlarge_search: "r3.2xlarge.search",    r3_4xlarge_search: "r3.4xlarge.search",    r3_8xlarge_search: "r3.8xlarge.search",    r3_large_search: "r3.large.search",    r3_xlarge_search: "r3.xlarge.search",    r4_16xlarge_search: "r4.16xlarge.search",    r4_2xlarge_search: "r4.2xlarge.search",    r4_4xlarge_search: "r4.4xlarge.search",    r4_8xlarge_search: "r4.8xlarge.search",    r4_large_search: "r4.large.search",    r4_xlarge_search: "r4.xlarge.search",    r5_12xlarge_search: "r5.12xlarge.search",    r5_24xlarge_search: "r5.24xlarge.search",    r5_2xlarge_search: "r5.2xlarge.search",    r5_4xlarge_search: "r5.4xlarge.search",    r5_large_search: "r5.large.search",    r5_xlarge_search: "r5.xlarge.search",    r6g_12xlarge_search: "r6g.12xlarge.search",    r6g_2xlarge_search: "r6g.2xlarge.search",    r6g_4xlarge_search: "r6g.4xlarge.search",    r6g_8xlarge_search: "r6g.8xlarge.search",    r6g_large_search: "r6g.large.search",    r6g_xlarge_search: "r6g.xlarge.search",    r6gd_12xlarge_search: "r6gd.12xlarge.search",    r6gd_16xlarge_search: "r6gd.16xlarge.search",    r6gd_2xlarge_search: "r6gd.2xlarge.search",    r6gd_4xlarge_search: "r6gd.4xlarge.search",    r6gd_8xlarge_search: "r6gd.8xlarge.search",    r6gd_large_search: "r6gd.large.search",    r6gd_xlarge_search: "r6gd.xlarge.search",    t2_medium_search: "t2.medium.search",    t2_micro_search: "t2.micro.search",    t2_small_search: "t2.small.search",    t3_2xlarge_search: "t3.2xlarge.search",    t3_large_search: "t3.large.search",    t3_medium_search: "t3.medium.search",    t3_micro_search: "t3.micro.search",    t3_nano_search: "t3.nano.search",    t3_small_search: "t3.small.search",    t3_xlarge_search: "t3.xlarge.search",    t4g_medium_search: "t4g.medium.search",    t4g_small_search: "t4g.small.search",    ultrawarm1_large_search: "ultrawarm1.large.search",    ultrawarm1_medium_search: "ultrawarm1.medium.search",    ultrawarm1_xlarge_search: "ultrawarm1.xlarge.search",};const NodeOptionsNodeType = {    COORDINATOR: "coordinator",};const OpenSearchWarmPartitionInstanceType = {    ultrawarm1_large_search: "ultrawarm1.large.search",    ultrawarm1_medium_search: "ultrawarm1.medium.search",    ultrawarm1_xlarge_search: "ultrawarm1.xlarge.search",};const DeploymentStrategy = {    CAPACITY_OPTIMIZED: "CapacityOptimized",    DEFAULT: "Default",};const TLSSecurityPolicy = {    POLICY_MIN_TLS_1_0_2019_07: "Policy-Min-TLS-1-0-2019-07",    POLICY_MIN_TLS_1_2_2019_07: "Policy-Min-TLS-1-2-2019-07",    POLICY_MIN_TLS_1_2_PFS_2023_10: "Policy-Min-TLS-1-2-PFS-2023-10",    POLICY_MIN_TLS_1_2_RFC9151_FIPS_2024_08: "Policy-Min-TLS-1-2-RFC9151-FIPS-2024-08",};const VolumeType = {    gp2: "gp2",    gp3: "gp3",    io1: "io1",    standard: "standard",};const RolesKeyIdCOption = {    GroupId: "GroupId",    GroupName: "GroupName",};const SubjectKeyIdCOption = {    Email: "Email",    UserId: "UserId",    UserName: "UserName",};const IPAddressType = {    DUALSTACK: "dualstack",    IPV4: "ipv4",};const LogType = {    AUDIT_LOGS: "AUDIT_LOGS",    ES_APPLICATION_LOGS: "ES_APPLICATION_LOGS",    INDEX_SLOW_LOGS: "INDEX_SLOW_LOGS",    SEARCH_SLOW_LOGS: "SEARCH_SLOW_LOGS",};const PauseState = {    ACTIVE: "Active",    COMPLETED: "Completed",    DISABLED: "Disabled",    SCHEDULED: "Scheduled",};const AutoTuneState = {    DISABLED: "DISABLED",    DISABLED_AND_ROLLBACK_COMPLETE: "DISABLED_AND_ROLLBACK_COMPLETE",    DISABLED_AND_ROLLBACK_ERROR: "DISABLED_AND_ROLLBACK_ERROR",    DISABLED_AND_ROLLBACK_IN_PROGRESS: "DISABLED_AND_ROLLBACK_IN_PROGRESS",    DISABLED_AND_ROLLBACK_SCHEDULED: "DISABLED_AND_ROLLBACK_SCHEDULED",    DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS",    ENABLED: "ENABLED",    ENABLE_IN_PROGRESS: "ENABLE_IN_PROGRESS",    ERROR: "ERROR",};const ConfigChangeStatus = {    APPLYING_CHANGES: "ApplyingChanges",    CANCELLED: "Cancelled",    COMPLETED: "Completed",    INITIALIZING: "Initializing",    PENDING: "Pending",    PENDING_USER_INPUT: "PendingUserInput",    VALIDATING: "Validating",    VALIDATION_FAILED: "ValidationFailed",};const InitiatedBy = {    CUSTOMER: "CUSTOMER",    SERVICE: "SERVICE",};const DomainProcessingStatusType = {    ACTIVE: "Active",    CREATING: "Creating",    DELETING: "Deleting",    ISOLATED: "Isolated",    MODIFYING: "Modifying",    UPDATING: "UpdatingServiceSoftware",    UPGRADING: "UpgradingEngineVersion",};const PropertyValueType = {    PLAIN_TEXT: "PLAIN_TEXT",    STRINGIFIED_JSON: "STRINGIFIED_JSON",};const IndexStatus = {    CREATED: "CREATED",    DELETED: "DELETED",    UPDATED: "UPDATED",};const SkipUnavailableStatus = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",};const OutboundConnectionStatusCode = {    ACTIVE: "ACTIVE",    APPROVED: "APPROVED",    DELETED: "DELETED",    DELETING: "DELETING",    PENDING_ACCEPTANCE: "PENDING_ACCEPTANCE",    PROVISIONING: "PROVISIONING",    REJECTED: "REJECTED",    REJECTING: "REJECTING",    VALIDATING: "VALIDATING",    VALIDATION_FAILED: "VALIDATION_FAILED",};const RequirementLevel = {    NONE: "NONE",    OPTIONAL: "OPTIONAL",    REQUIRED: "REQUIRED",};const PackageStatus = {    AVAILABLE: "AVAILABLE",    COPYING: "COPYING",    COPY_FAILED: "COPY_FAILED",    DELETED: "DELETED",    DELETE_FAILED: "DELETE_FAILED",    DELETING: "DELETING",    VALIDATING: "VALIDATING",    VALIDATION_FAILED: "VALIDATION_FAILED",};const VpcEndpointStatus = {    ACTIVE: "ACTIVE",    CREATE_FAILED: "CREATE_FAILED",    CREATING: "CREATING",    DELETE_FAILED: "DELETE_FAILED",    DELETING: "DELETING",    UPDATE_FAILED: "UPDATE_FAILED",    UPDATING: "UPDATING",};const CapabilityStatus = {    ACTIVE: "active",    CREATE_FAILED: "create_failed",    CREATING: "creating",    DELETE_FAILED: "delete_failed",    DELETING: "deleting",    UPDATE_FAILED: "update_failed",    UPDATING: "updating",};const ScheduledAutoTuneActionType = {    JVM_HEAP_SIZE_TUNING: "JVM_HEAP_SIZE_TUNING",    JVM_YOUNG_GEN_TUNING: "JVM_YOUNG_GEN_TUNING",};const ScheduledAutoTuneSeverityType = {    HIGH: "HIGH",    LOW: "LOW",    MEDIUM: "MEDIUM",};const AutoTuneType = {    SCHEDULED_ACTION: "SCHEDULED_ACTION",};const OverallChangeStatus = {    COMPLETED: "COMPLETED",    FAILED: "FAILED",    PENDING: "PENDING",    PROCESSING: "PROCESSING",};const RollbackOnDisable = {    DEFAULT_ROLLBACK: "DEFAULT_ROLLBACK",    NO_ROLLBACK: "NO_ROLLBACK",};const DomainHealth = {    Green: "Green",    NotAvailable: "NotAvailable",    Red: "Red",    Yellow: "Yellow",};const DomainState = {    Active: "Active",    NotAvailable: "NotAvailable",    Processing: "Processing",};const ZoneStatus = {    Active: "Active",    NotAvailable: "NotAvailable",    StandBy: "StandBy",};const MasterNodeStatus = {    Available: "Available",    UnAvailable: "UnAvailable",};const NodeStatus = {    Active: "Active",    NotAvailable: "NotAvailable",    StandBy: "StandBy",};const NodeType = {    Data: "Data",    Master: "Master",    Ultrawarm: "Ultrawarm",    Warm: "Warm",};const InsightEntityType = {    ACCOUNT: "Account",    DOMAIN: "DomainName",};const InsightFieldType = {    METRIC: "metric",    TEXT: "text",};const DescribePackagesFilterName = {    EngineVersion: "EngineVersion",    PackageID: "PackageID",    PackageName: "PackageName",    PackageOwner: "PackageOwner",    PackageStatus: "PackageStatus",    PackageType: "PackageType",};const ReservedInstancePaymentOption = {    ALL_UPFRONT: "ALL_UPFRONT",    NO_UPFRONT: "NO_UPFRONT",    PARTIAL_UPFRONT: "PARTIAL_UPFRONT",};const VpcEndpointErrorCode = {    ENDPOINT_NOT_FOUND: "ENDPOINT_NOT_FOUND",    SERVER_ERROR: "SERVER_ERROR",};const ApplicationStatus = {    ACTIVE: "ACTIVE",    CREATING: "CREATING",    DELETING: "DELETING",    FAILED: "FAILED",    UPDATING: "UPDATING",};const CapabilityFailureReason = {    KMS_KEY_INSUFFICIENT_PERMISSION: "KMS_KEY_INSUFFICIENT_PERMISSION",};const DataSourceStatus = {    ACTIVE: "ACTIVE",    DISABLED: "DISABLED",};const MaintenanceType = {    REBOOT_NODE: "REBOOT_NODE",    RESTART_DASHBOARD: "RESTART_DASHBOARD",    RESTART_SEARCH_PROCESS: "RESTART_SEARCH_PROCESS",};const MaintenanceStatus = {    COMPLETED: "COMPLETED",    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    PENDING: "PENDING",    TIMED_OUT: "TIMED_OUT",};const UpgradeStep = {    PRE_UPGRADE_CHECK: "PRE_UPGRADE_CHECK",    SNAPSHOT: "SNAPSHOT",    UPGRADE: "UPGRADE",};const UpgradeStatus = {    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    SUCCEEDED: "SUCCEEDED",    SUCCEEDED_WITH_ISSUES: "SUCCEEDED_WITH_ISSUES",};const EngineType = {    Elasticsearch: "Elasticsearch",    OpenSearch: "OpenSearch",};const InsightSortOrder = {    ASC: "ASC",    DESC: "DESC",};const InsightPriorityLevel = {    CRITICAL: "CRITICAL",    HIGH: "HIGH",    LOW: "LOW",    MEDIUM: "MEDIUM",};const InsightStatus = {    ACTIVE: "ACTIVE",    DISMISSED: "DISMISSED",    RESOLVED: "RESOLVED",};const InsightType = {    EVENT: "EVENT",    RECOMMENDATION: "RECOMMENDATION",};const ScheduledBy = {    CUSTOMER: "CUSTOMER",    SYSTEM: "SYSTEM",};const ScheduleAt = {    NOW: "NOW",    OFF_PEAK_WINDOW: "OFF_PEAK_WINDOW",    TIMESTAMP: "TIMESTAMP",};const DryRunMode = {    Basic: "Basic",    Verbose: "Verbose",};const PackageScopeOperationEnum = {    ADD: "ADD",    OVERRIDE: "OVERRIDE",    REMOVE: "REMOVE",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.OpenSearchServiceException = OpenSearchServiceException.OpenSearchServiceException;exports.AWSServicePrincipal = AWSServicePrincipal;exports.AcceptInboundConnectionCommand = AcceptInboundConnectionCommand;exports.ActionSeverity = ActionSeverity;exports.ActionStatus = ActionStatus;exports.ActionType = ActionType;exports.AddDataSourceCommand = AddDataSourceCommand;exports.AddDirectQueryDataSourceCommand = AddDirectQueryDataSourceCommand;exports.AddTagsCommand = AddTagsCommand;exports.AppConfigType = AppConfigType;exports.ApplicationStatus = ApplicationStatus;exports.AssociatePackageCommand = AssociatePackageCommand;exports.AssociatePackagesCommand = AssociatePackagesCommand;exports.AuthorizeVpcEndpointAccessCommand = AuthorizeVpcEndpointAccessCommand;exports.AutoTuneDesiredState = AutoTuneDesiredState;exports.AutoTuneState = AutoTuneState;exports.AutoTuneType = AutoTuneType;exports.CancelDomainConfigChangeCommand = CancelDomainConfigChangeCommand;exports.CancelServiceSoftwareUpdateCommand = CancelServiceSoftwareUpdateCommand;exports.CapabilityFailureReason = CapabilityFailureReason;exports.CapabilityStatus = CapabilityStatus;exports.ConfigChangeStatus = ConfigChangeStatus;exports.ConnectionMode = ConnectionMode;exports.CreateApplicationCommand = CreateApplicationCommand;exports.CreateDomainCommand = CreateDomainCommand;exports.CreateIndexCommand = CreateIndexCommand;exports.CreateOutboundConnectionCommand = CreateOutboundConnectionCommand;exports.CreatePackageCommand = CreatePackageCommand;exports.CreateVpcEndpointCommand = CreateVpcEndpointCommand;exports.DataSourceStatus = DataSourceStatus;exports.DeleteApplicationCommand = DeleteApplicationCommand;exports.DeleteDataSourceCommand = DeleteDataSourceCommand;exports.DeleteDirectQueryDataSourceCommand = DeleteDirectQueryDataSourceCommand;exports.DeleteDomainCommand = DeleteDomainCommand;exports.DeleteInboundConnectionCommand = DeleteInboundConnectionCommand;exports.DeleteIndexCommand = DeleteIndexCommand;exports.DeleteOutboundConnectionCommand = DeleteOutboundConnectionCommand;exports.DeletePackageCommand = DeletePackageCommand;exports.DeleteVpcEndpointCommand = DeleteVpcEndpointCommand;exports.DeploymentStatus = DeploymentStatus;exports.DeploymentStrategy = DeploymentStrategy;exports.DeregisterCapabilityCommand = DeregisterCapabilityCommand;exports.DescribeDomainAutoTunesCommand = DescribeDomainAutoTunesCommand;exports.DescribeDomainChangeProgressCommand = DescribeDomainChangeProgressCommand;exports.DescribeDomainCommand = DescribeDomainCommand;exports.DescribeDomainConfigCommand = DescribeDomainConfigCommand;exports.DescribeDomainHealthCommand = DescribeDomainHealthCommand;exports.DescribeDomainNodesCommand = DescribeDomainNodesCommand;exports.DescribeDomainsCommand = DescribeDomainsCommand;exports.DescribeDryRunProgressCommand = DescribeDryRunProgressCommand;exports.DescribeInboundConnectionsCommand = DescribeInboundConnectionsCommand;exports.DescribeInsightDetailsCommand = DescribeInsightDetailsCommand;exports.DescribeInstanceTypeLimitsCommand = DescribeInstanceTypeLimitsCommand;exports.DescribeOutboundConnectionsCommand = DescribeOutboundConnectionsCommand;exports.DescribePackagesCommand = DescribePackagesCommand;exports.DescribePackagesFilterName = DescribePackagesFilterName;exports.DescribeReservedInstanceOfferingsCommand = DescribeReservedInstanceOfferingsCommand;exports.DescribeReservedInstancesCommand = DescribeReservedInstancesCommand;exports.DescribeVpcEndpointsCommand = DescribeVpcEndpointsCommand;exports.DissociatePackageCommand = DissociatePackageCommand;exports.DissociatePackagesCommand = DissociatePackagesCommand;exports.DomainHealth = DomainHealth;exports.DomainPackageStatus = DomainPackageStatus;exports.DomainProcessingStatusType = DomainProcessingStatusType;exports.DomainState = DomainState;exports.DryRunMode = DryRunMode;exports.EngineType = EngineType;exports.GetApplicationCommand = GetApplicationCommand;exports.GetCapabilityCommand = GetCapabilityCommand;exports.GetCompatibleVersionsCommand = GetCompatibleVersionsCommand;exports.GetDataSourceCommand = GetDataSourceCommand;exports.GetDefaultApplicationSettingCommand = GetDefaultApplicationSettingCommand;exports.GetDirectQueryDataSourceCommand = GetDirectQueryDataSourceCommand;exports.GetDomainMaintenanceStatusCommand = GetDomainMaintenanceStatusCommand;exports.GetIndexCommand = GetIndexCommand;exports.GetPackageVersionHistoryCommand = GetPackageVersionHistoryCommand;exports.GetUpgradeHistoryCommand = GetUpgradeHistoryCommand;exports.GetUpgradeStatusCommand = GetUpgradeStatusCommand;exports.IPAddressType = IPAddressType;exports.InboundConnectionStatusCode = InboundConnectionStatusCode;exports.IndexStatus = IndexStatus;exports.InitiatedBy = InitiatedBy;exports.InsightEntityType = InsightEntityType;exports.InsightFieldType = InsightFieldType;exports.InsightPriorityLevel = InsightPriorityLevel;exports.InsightSortOrder = InsightSortOrder;exports.InsightStatus = InsightStatus;exports.InsightType = InsightType;exports.ListApplicationsCommand = ListApplicationsCommand;exports.ListDataSourcesCommand = ListDataSourcesCommand;exports.ListDirectQueryDataSourcesCommand = ListDirectQueryDataSourcesCommand;exports.ListDomainMaintenancesCommand = ListDomainMaintenancesCommand;exports.ListDomainNamesCommand = ListDomainNamesCommand;exports.ListDomainsForPackageCommand = ListDomainsForPackageCommand;exports.ListInsightsCommand = ListInsightsCommand;exports.ListInstanceTypeDetailsCommand = ListInstanceTypeDetailsCommand;exports.ListPackagesForDomainCommand = ListPackagesForDomainCommand;exports.ListScheduledActionsCommand = ListScheduledActionsCommand;exports.ListTagsCommand = ListTagsCommand;exports.ListVersionsCommand = ListVersionsCommand;exports.ListVpcEndpointAccessCommand = ListVpcEndpointAccessCommand;exports.ListVpcEndpointsCommand = ListVpcEndpointsCommand;exports.ListVpcEndpointsForDomainCommand = ListVpcEndpointsForDomainCommand;exports.LogType = LogType;exports.MaintenanceStatus = MaintenanceStatus;exports.MaintenanceType = MaintenanceType;exports.MasterNodeStatus = MasterNodeStatus;exports.NaturalLanguageQueryGenerationCurrentState = NaturalLanguageQueryGenerationCurrentState;exports.NaturalLanguageQueryGenerationDesiredState = NaturalLanguageQueryGenerationDesiredState;exports.NodeOptionsNodeType = NodeOptionsNodeType;exports.NodeStatus = NodeStatus;exports.NodeType = NodeType;exports.OpenSearch = OpenSearch;exports.OpenSearchClient = OpenSearchClient;exports.OpenSearchPartitionInstanceType = OpenSearchPartitionInstanceType;exports.OpenSearchWarmPartitionInstanceType = OpenSearchWarmPartitionInstanceType;exports.OptionState = OptionState;exports.OutboundConnectionStatusCode = OutboundConnectionStatusCode;exports.OverallChangeStatus = OverallChangeStatus;exports.PackageScopeOperationEnum = PackageScopeOperationEnum;exports.PackageStatus = PackageStatus;exports.PackageType = PackageType;exports.PauseState = PauseState;exports.PrincipalType = PrincipalType;exports.PropertyValueType = PropertyValueType;exports.PurchaseReservedInstanceOfferingCommand = PurchaseReservedInstanceOfferingCommand;exports.PutDefaultApplicationSettingCommand = PutDefaultApplicationSettingCommand;exports.RegisterCapabilityCommand = RegisterCapabilityCommand;exports.RejectInboundConnectionCommand = RejectInboundConnectionCommand;exports.RemoveTagsCommand = RemoveTagsCommand;exports.RequirementLevel = RequirementLevel;exports.ReservedInstancePaymentOption = ReservedInstancePaymentOption;exports.RevokeVpcEndpointAccessCommand = RevokeVpcEndpointAccessCommand;exports.RolesKeyIdCOption = RolesKeyIdCOption;exports.RollbackOnDisable = RollbackOnDisable;exports.RollbackServiceSoftwareUpdateCommand = RollbackServiceSoftwareUpdateCommand;exports.ScheduleAt = ScheduleAt;exports.ScheduledAutoTuneActionType = ScheduledAutoTuneActionType;exports.ScheduledAutoTuneSeverityType = ScheduledAutoTuneSeverityType;exports.ScheduledBy = ScheduledBy;exports.SkipUnavailableStatus = SkipUnavailableStatus;exports.StartDomainMaintenanceCommand = StartDomainMaintenanceCommand;exports.StartServiceSoftwareUpdateCommand = StartServiceSoftwareUpdateCommand;exports.SubjectKeyIdCOption = SubjectKeyIdCOption;exports.TLSSecurityPolicy = TLSSecurityPolicy;exports.TimeUnit = TimeUnit;exports.UpdateApplicationCommand = UpdateApplicationCommand;exports.UpdateDataSourceCommand = UpdateDataSourceCommand;exports.UpdateDirectQueryDataSourceCommand = UpdateDirectQueryDataSourceCommand;exports.UpdateDomainConfigCommand = UpdateDomainConfigCommand;exports.UpdateIndexCommand = UpdateIndexCommand;exports.UpdatePackageCommand = UpdatePackageCommand;exports.UpdatePackageScopeCommand = UpdatePackageScopeCommand;exports.UpdateScheduledActionCommand = UpdateScheduledActionCommand;exports.UpdateVpcEndpointCommand = UpdateVpcEndpointCommand;exports.UpgradeDomainCommand = UpgradeDomainCommand;exports.UpgradeStatus = UpgradeStatus;exports.UpgradeStep = UpgradeStep;exports.VolumeType = VolumeType;exports.VpcEndpointErrorCode = VpcEndpointErrorCode;exports.VpcEndpointStatus = VpcEndpointStatus;exports.ZoneStatus = ZoneStatus;exports.paginateDescribeDomainAutoTunes = paginateDescribeDomainAutoTunes;exports.paginateDescribeInboundConnections = paginateDescribeInboundConnections;exports.paginateDescribeOutboundConnections = paginateDescribeOutboundConnections;exports.paginateDescribePackages = paginateDescribePackages;exports.paginateDescribeReservedInstanceOfferings = paginateDescribeReservedInstanceOfferings;exports.paginateDescribeReservedInstances = paginateDescribeReservedInstances;exports.paginateGetPackageVersionHistory = paginateGetPackageVersionHistory;exports.paginateGetUpgradeHistory = paginateGetUpgradeHistory;exports.paginateListApplications = paginateListApplications;exports.paginateListDomainMaintenances = paginateListDomainMaintenances;exports.paginateListDomainsForPackage = paginateListDomainsForPackage;exports.paginateListInstanceTypeDetails = paginateListInstanceTypeDetails;exports.paginateListPackagesForDomain = paginateListPackagesForDomain;exports.paginateListScheduledActions = paginateListScheduledActions;exports.paginateListVersions = paginateListVersions;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];});