File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-mailmanager/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.js45.9 KB · 1324 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 MailManagerServiceException = require('./models/MailManagerServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "ses",    });};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 MailManagerClient 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.defaultMailManagerHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class CreateAddonInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "CreateAddonInstance", {})    .n("MailManagerClient", "CreateAddonInstanceCommand")    .sc(schemas_0.CreateAddonInstance$)    .build() {} class CreateAddonSubscriptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "CreateAddonSubscription", {})    .n("MailManagerClient", "CreateAddonSubscriptionCommand")    .sc(schemas_0.CreateAddonSubscription$)    .build() {} class CreateAddressListCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "CreateAddressList", {})    .n("MailManagerClient", "CreateAddressListCommand")    .sc(schemas_0.CreateAddressList$)    .build() {} class CreateAddressListImportJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "CreateAddressListImportJob", {})    .n("MailManagerClient", "CreateAddressListImportJobCommand")    .sc(schemas_0.CreateAddressListImportJob$)    .build() {} class CreateArchiveCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "CreateArchive", {})    .n("MailManagerClient", "CreateArchiveCommand")    .sc(schemas_0.CreateArchive$)    .build() {} class CreateIngressPointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "CreateIngressPoint", {})    .n("MailManagerClient", "CreateIngressPointCommand")    .sc(schemas_0.CreateIngressPoint$)    .build() {} class CreateRelayCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "CreateRelay", {})    .n("MailManagerClient", "CreateRelayCommand")    .sc(schemas_0.CreateRelay$)    .build() {} class CreateRuleSetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "CreateRuleSet", {})    .n("MailManagerClient", "CreateRuleSetCommand")    .sc(schemas_0.CreateRuleSet$)    .build() {} class CreateTrafficPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "CreateTrafficPolicy", {})    .n("MailManagerClient", "CreateTrafficPolicyCommand")    .sc(schemas_0.CreateTrafficPolicy$)    .build() {} class DeleteAddonInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "DeleteAddonInstance", {})    .n("MailManagerClient", "DeleteAddonInstanceCommand")    .sc(schemas_0.DeleteAddonInstance$)    .build() {} class DeleteAddonSubscriptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "DeleteAddonSubscription", {})    .n("MailManagerClient", "DeleteAddonSubscriptionCommand")    .sc(schemas_0.DeleteAddonSubscription$)    .build() {} class DeleteAddressListCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "DeleteAddressList", {})    .n("MailManagerClient", "DeleteAddressListCommand")    .sc(schemas_0.DeleteAddressList$)    .build() {} class DeleteArchiveCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "DeleteArchive", {})    .n("MailManagerClient", "DeleteArchiveCommand")    .sc(schemas_0.DeleteArchive$)    .build() {} class DeleteIngressPointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "DeleteIngressPoint", {})    .n("MailManagerClient", "DeleteIngressPointCommand")    .sc(schemas_0.DeleteIngressPoint$)    .build() {} class DeleteRelayCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "DeleteRelay", {})    .n("MailManagerClient", "DeleteRelayCommand")    .sc(schemas_0.DeleteRelay$)    .build() {} class DeleteRuleSetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "DeleteRuleSet", {})    .n("MailManagerClient", "DeleteRuleSetCommand")    .sc(schemas_0.DeleteRuleSet$)    .build() {} class DeleteTrafficPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "DeleteTrafficPolicy", {})    .n("MailManagerClient", "DeleteTrafficPolicyCommand")    .sc(schemas_0.DeleteTrafficPolicy$)    .build() {} class DeregisterMemberFromAddressListCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "DeregisterMemberFromAddressList", {})    .n("MailManagerClient", "DeregisterMemberFromAddressListCommand")    .sc(schemas_0.DeregisterMemberFromAddressList$)    .build() {} class GetAddonInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetAddonInstance", {})    .n("MailManagerClient", "GetAddonInstanceCommand")    .sc(schemas_0.GetAddonInstance$)    .build() {} class GetAddonSubscriptionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetAddonSubscription", {})    .n("MailManagerClient", "GetAddonSubscriptionCommand")    .sc(schemas_0.GetAddonSubscription$)    .build() {} class GetAddressListCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetAddressList", {})    .n("MailManagerClient", "GetAddressListCommand")    .sc(schemas_0.GetAddressList$)    .build() {} class GetAddressListImportJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetAddressListImportJob", {})    .n("MailManagerClient", "GetAddressListImportJobCommand")    .sc(schemas_0.GetAddressListImportJob$)    .build() {} class GetArchiveCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetArchive", {})    .n("MailManagerClient", "GetArchiveCommand")    .sc(schemas_0.GetArchive$)    .build() {} class GetArchiveExportCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetArchiveExport", {})    .n("MailManagerClient", "GetArchiveExportCommand")    .sc(schemas_0.GetArchiveExport$)    .build() {} class GetArchiveMessageCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetArchiveMessage", {})    .n("MailManagerClient", "GetArchiveMessageCommand")    .sc(schemas_0.GetArchiveMessage$)    .build() {} class GetArchiveMessageContentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetArchiveMessageContent", {})    .n("MailManagerClient", "GetArchiveMessageContentCommand")    .sc(schemas_0.GetArchiveMessageContent$)    .build() {} class GetArchiveSearchCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetArchiveSearch", {})    .n("MailManagerClient", "GetArchiveSearchCommand")    .sc(schemas_0.GetArchiveSearch$)    .build() {} class GetArchiveSearchResultsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetArchiveSearchResults", {})    .n("MailManagerClient", "GetArchiveSearchResultsCommand")    .sc(schemas_0.GetArchiveSearchResults$)    .build() {} class GetIngressPointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetIngressPoint", {})    .n("MailManagerClient", "GetIngressPointCommand")    .sc(schemas_0.GetIngressPoint$)    .build() {} class GetMemberOfAddressListCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetMemberOfAddressList", {})    .n("MailManagerClient", "GetMemberOfAddressListCommand")    .sc(schemas_0.GetMemberOfAddressList$)    .build() {} class GetRelayCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetRelay", {})    .n("MailManagerClient", "GetRelayCommand")    .sc(schemas_0.GetRelay$)    .build() {} class GetRuleSetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetRuleSet", {})    .n("MailManagerClient", "GetRuleSetCommand")    .sc(schemas_0.GetRuleSet$)    .build() {} class GetTrafficPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "GetTrafficPolicy", {})    .n("MailManagerClient", "GetTrafficPolicyCommand")    .sc(schemas_0.GetTrafficPolicy$)    .build() {} class ListAddonInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "ListAddonInstances", {})    .n("MailManagerClient", "ListAddonInstancesCommand")    .sc(schemas_0.ListAddonInstances$)    .build() {} class ListAddonSubscriptionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "ListAddonSubscriptions", {})    .n("MailManagerClient", "ListAddonSubscriptionsCommand")    .sc(schemas_0.ListAddonSubscriptions$)    .build() {} class ListAddressListImportJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "ListAddressListImportJobs", {})    .n("MailManagerClient", "ListAddressListImportJobsCommand")    .sc(schemas_0.ListAddressListImportJobs$)    .build() {} class ListAddressListsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "ListAddressLists", {})    .n("MailManagerClient", "ListAddressListsCommand")    .sc(schemas_0.ListAddressLists$)    .build() {} class ListArchiveExportsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "ListArchiveExports", {})    .n("MailManagerClient", "ListArchiveExportsCommand")    .sc(schemas_0.ListArchiveExports$)    .build() {} class ListArchivesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "ListArchives", {})    .n("MailManagerClient", "ListArchivesCommand")    .sc(schemas_0.ListArchives$)    .build() {} class ListArchiveSearchesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "ListArchiveSearches", {})    .n("MailManagerClient", "ListArchiveSearchesCommand")    .sc(schemas_0.ListArchiveSearches$)    .build() {} class ListIngressPointsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "ListIngressPoints", {})    .n("MailManagerClient", "ListIngressPointsCommand")    .sc(schemas_0.ListIngressPoints$)    .build() {} class ListMembersOfAddressListCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "ListMembersOfAddressList", {})    .n("MailManagerClient", "ListMembersOfAddressListCommand")    .sc(schemas_0.ListMembersOfAddressList$)    .build() {} class ListRelaysCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "ListRelays", {})    .n("MailManagerClient", "ListRelaysCommand")    .sc(schemas_0.ListRelays$)    .build() {} class ListRuleSetsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "ListRuleSets", {})    .n("MailManagerClient", "ListRuleSetsCommand")    .sc(schemas_0.ListRuleSets$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "ListTagsForResource", {})    .n("MailManagerClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class ListTrafficPoliciesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "ListTrafficPolicies", {})    .n("MailManagerClient", "ListTrafficPoliciesCommand")    .sc(schemas_0.ListTrafficPolicies$)    .build() {} class RegisterMemberToAddressListCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "RegisterMemberToAddressList", {})    .n("MailManagerClient", "RegisterMemberToAddressListCommand")    .sc(schemas_0.RegisterMemberToAddressList$)    .build() {} class StartAddressListImportJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "StartAddressListImportJob", {})    .n("MailManagerClient", "StartAddressListImportJobCommand")    .sc(schemas_0.StartAddressListImportJob$)    .build() {} class StartArchiveExportCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "StartArchiveExport", {})    .n("MailManagerClient", "StartArchiveExportCommand")    .sc(schemas_0.StartArchiveExport$)    .build() {} class StartArchiveSearchCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "StartArchiveSearch", {})    .n("MailManagerClient", "StartArchiveSearchCommand")    .sc(schemas_0.StartArchiveSearch$)    .build() {} class StopAddressListImportJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "StopAddressListImportJob", {})    .n("MailManagerClient", "StopAddressListImportJobCommand")    .sc(schemas_0.StopAddressListImportJob$)    .build() {} class StopArchiveExportCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "StopArchiveExport", {})    .n("MailManagerClient", "StopArchiveExportCommand")    .sc(schemas_0.StopArchiveExport$)    .build() {} class StopArchiveSearchCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "StopArchiveSearch", {})    .n("MailManagerClient", "StopArchiveSearchCommand")    .sc(schemas_0.StopArchiveSearch$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "TagResource", {})    .n("MailManagerClient", "TagResourceCommand")    .sc(schemas_0.TagResource$)    .build() {} class UntagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "UntagResource", {})    .n("MailManagerClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateArchiveCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "UpdateArchive", {})    .n("MailManagerClient", "UpdateArchiveCommand")    .sc(schemas_0.UpdateArchive$)    .build() {} class UpdateIngressPointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "UpdateIngressPoint", {})    .n("MailManagerClient", "UpdateIngressPointCommand")    .sc(schemas_0.UpdateIngressPoint$)    .build() {} class UpdateRelayCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "UpdateRelay", {})    .n("MailManagerClient", "UpdateRelayCommand")    .sc(schemas_0.UpdateRelay$)    .build() {} class UpdateRuleSetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "UpdateRuleSet", {})    .n("MailManagerClient", "UpdateRuleSetCommand")    .sc(schemas_0.UpdateRuleSet$)    .build() {} class UpdateTrafficPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("MailManagerSvc", "UpdateTrafficPolicy", {})    .n("MailManagerClient", "UpdateTrafficPolicyCommand")    .sc(schemas_0.UpdateTrafficPolicy$)    .build() {} const paginateListAddonInstances = core.createPaginator(MailManagerClient, ListAddonInstancesCommand, "NextToken", "NextToken", "PageSize"); const paginateListAddonSubscriptions = core.createPaginator(MailManagerClient, ListAddonSubscriptionsCommand, "NextToken", "NextToken", "PageSize"); const paginateListAddressListImportJobs = core.createPaginator(MailManagerClient, ListAddressListImportJobsCommand, "NextToken", "NextToken", "PageSize"); const paginateListAddressLists = core.createPaginator(MailManagerClient, ListAddressListsCommand, "NextToken", "NextToken", "PageSize"); const paginateListArchiveExports = core.createPaginator(MailManagerClient, ListArchiveExportsCommand, "NextToken", "NextToken", "PageSize"); const paginateListArchiveSearches = core.createPaginator(MailManagerClient, ListArchiveSearchesCommand, "NextToken", "NextToken", "PageSize"); const paginateListArchives = core.createPaginator(MailManagerClient, ListArchivesCommand, "NextToken", "NextToken", "PageSize"); const paginateListIngressPoints = core.createPaginator(MailManagerClient, ListIngressPointsCommand, "NextToken", "NextToken", "PageSize"); const paginateListMembersOfAddressList = core.createPaginator(MailManagerClient, ListMembersOfAddressListCommand, "NextToken", "NextToken", "PageSize"); const paginateListRelays = core.createPaginator(MailManagerClient, ListRelaysCommand, "NextToken", "NextToken", "PageSize"); const paginateListRuleSets = core.createPaginator(MailManagerClient, ListRuleSetsCommand, "NextToken", "NextToken", "PageSize"); const paginateListTrafficPolicies = core.createPaginator(MailManagerClient, ListTrafficPoliciesCommand, "NextToken", "NextToken", "PageSize"); const commands = {    CreateAddonInstanceCommand,    CreateAddonSubscriptionCommand,    CreateAddressListCommand,    CreateAddressListImportJobCommand,    CreateArchiveCommand,    CreateIngressPointCommand,    CreateRelayCommand,    CreateRuleSetCommand,    CreateTrafficPolicyCommand,    DeleteAddonInstanceCommand,    DeleteAddonSubscriptionCommand,    DeleteAddressListCommand,    DeleteArchiveCommand,    DeleteIngressPointCommand,    DeleteRelayCommand,    DeleteRuleSetCommand,    DeleteTrafficPolicyCommand,    DeregisterMemberFromAddressListCommand,    GetAddonInstanceCommand,    GetAddonSubscriptionCommand,    GetAddressListCommand,    GetAddressListImportJobCommand,    GetArchiveCommand,    GetArchiveExportCommand,    GetArchiveMessageCommand,    GetArchiveMessageContentCommand,    GetArchiveSearchCommand,    GetArchiveSearchResultsCommand,    GetIngressPointCommand,    GetMemberOfAddressListCommand,    GetRelayCommand,    GetRuleSetCommand,    GetTrafficPolicyCommand,    ListAddonInstancesCommand,    ListAddonSubscriptionsCommand,    ListAddressListImportJobsCommand,    ListAddressListsCommand,    ListArchiveExportsCommand,    ListArchivesCommand,    ListArchiveSearchesCommand,    ListIngressPointsCommand,    ListMembersOfAddressListCommand,    ListRelaysCommand,    ListRuleSetsCommand,    ListTagsForResourceCommand,    ListTrafficPoliciesCommand,    RegisterMemberToAddressListCommand,    StartAddressListImportJobCommand,    StartArchiveExportCommand,    StartArchiveSearchCommand,    StopAddressListImportJobCommand,    StopArchiveExportCommand,    StopArchiveSearchCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateArchiveCommand,    UpdateIngressPointCommand,    UpdateRelayCommand,    UpdateRuleSetCommand,    UpdateTrafficPolicyCommand,};const paginators = {    paginateListAddonInstances,    paginateListAddonSubscriptions,    paginateListAddressListImportJobs,    paginateListAddressLists,    paginateListArchiveExports,    paginateListArchives,    paginateListArchiveSearches,    paginateListIngressPoints,    paginateListMembersOfAddressList,    paginateListRelays,    paginateListRuleSets,    paginateListTrafficPolicies,};class MailManager extends MailManagerClient {}client.createAggregatedClient(commands, MailManager, { paginators }); const AcceptAction = {    ALLOW: "ALLOW",    DENY: "DENY",};const ActionFailurePolicy = {    CONTINUE: "CONTINUE",    DROP: "DROP",};const ArchiveState = {    ACTIVE: "ACTIVE",    PENDING_DELETION: "PENDING_DELETION",};const ArchiveBooleanEmailAttribute = {    HAS_ATTACHMENTS: "HAS_ATTACHMENTS",};const ArchiveBooleanOperator = {    IS_FALSE: "IS_FALSE",    IS_TRUE: "IS_TRUE",};const ArchiveStringEmailAttribute = {    CC: "CC",    ENVELOPE_FROM: "ENVELOPE_FROM",    ENVELOPE_TO: "ENVELOPE_TO",    FROM: "FROM",    SUBJECT: "SUBJECT",    TO: "TO",};const ArchiveStringOperator = {    CONTAINS: "CONTAINS",};const RetentionPeriod = {    EIGHTEEN_MONTHS: "EIGHTEEN_MONTHS",    EIGHT_YEARS: "EIGHT_YEARS",    FIVE_YEARS: "FIVE_YEARS",    FOUR_YEARS: "FOUR_YEARS",    NINE_MONTHS: "NINE_MONTHS",    NINE_YEARS: "NINE_YEARS",    ONE_YEAR: "ONE_YEAR",    PERMANENT: "PERMANENT",    SEVEN_YEARS: "SEVEN_YEARS",    SIX_MONTHS: "SIX_MONTHS",    SIX_YEARS: "SIX_YEARS",    TEN_YEARS: "TEN_YEARS",    THIRTY_MONTHS: "THIRTY_MONTHS",    THREE_MONTHS: "THREE_MONTHS",    THREE_YEARS: "THREE_YEARS",    TWO_YEARS: "TWO_YEARS",};const ImportDataType = {    CSV: "CSV",    JSON: "JSON",};const IpType = {    DUAL_STACK: "DUAL_STACK",    IPV4: "IPV4",};const TlsPolicy = {    FIPS: "FIPS",    OPTIONAL: "OPTIONAL",    REQUIRED: "REQUIRED",};const IngressPointType = {    AUTH: "AUTH",    MTLS: "MTLS",    OPEN: "OPEN",};const LambdaInvocationType = {    EVENT: "EVENT",    REQUEST_RESPONSE: "REQUEST_RESPONSE",};const SnsNotificationEncoding = {    BASE64: "BASE64",    UTF_8: "UTF-8",};const SnsNotificationPayloadType = {    CONTENT: "CONTENT",    HEADERS: "HEADERS",};const MailFrom = {    PRESERVE: "PRESERVE",    REPLACE: "REPLACE",};const RuleBooleanEmailAttribute = {    READ_RECEIPT_REQUESTED: "READ_RECEIPT_REQUESTED",    TLS: "TLS",    TLS_WRAPPED: "TLS_WRAPPED",};const RuleAddressListEmailAttribute = {    CC: "CC",    FROM: "FROM",    MAIL_FROM: "MAIL_FROM",    RECIPIENT: "RECIPIENT",    SENDER: "SENDER",    TO: "TO",};const RuleBooleanOperator = {    IS_FALSE: "IS_FALSE",    IS_TRUE: "IS_TRUE",};const RuleDmarcOperator = {    EQUALS: "EQUALS",    NOT_EQUALS: "NOT_EQUALS",};const RuleDmarcPolicy = {    NONE: "NONE",    QUARANTINE: "QUARANTINE",    REJECT: "REJECT",};const RuleIpEmailAttribute = {    SOURCE_IP: "SOURCE_IP",};const RuleIpOperator = {    CIDR_MATCHES: "CIDR_MATCHES",    NOT_CIDR_MATCHES: "NOT_CIDR_MATCHES",};const RuleNumberEmailAttribute = {    MESSAGE_SIZE: "MESSAGE_SIZE",};const RuleNumberOperator = {    EQUALS: "EQUALS",    GREATER_THAN: "GREATER_THAN",    GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL",    LESS_THAN: "LESS_THAN",    LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL",    NOT_EQUALS: "NOT_EQUALS",};const RuleStringEmailAttribute = {    CC: "CC",    FROM: "FROM",    HELO: "HELO",    MAIL_FROM: "MAIL_FROM",    RECIPIENT: "RECIPIENT",    SENDER: "SENDER",    SUBJECT: "SUBJECT",    TO: "TO",};const RuleClientCertificateAttribute = {    CN: "CN",    SAN_DIRECTORY_NAME: "SAN_DIRECTORY_NAME",    SAN_DNS_NAME: "SAN_DNS_NAME",    SAN_IP_ADDRESS: "SAN_IP_ADDRESS",    SAN_REGISTERED_ID: "SAN_REGISTERED_ID",    SAN_RFC822_NAME: "SAN_RFC822_NAME",    SAN_UNIFORM_RESOURCE_IDENTIFIER: "SAN_UNIFORM_RESOURCE_IDENTIFIER",    SERIAL_NUMBER: "SERIAL_NUMBER",};const RuleStringOperator = {    CONTAINS: "CONTAINS",    ENDS_WITH: "ENDS_WITH",    EQUALS: "EQUALS",    NOT_EQUALS: "NOT_EQUALS",    STARTS_WITH: "STARTS_WITH",};const RuleVerdictAttribute = {    DKIM: "DKIM",    SPF: "SPF",};const RuleVerdictOperator = {    EQUALS: "EQUALS",    NOT_EQUALS: "NOT_EQUALS",};const RuleVerdict = {    FAIL: "FAIL",    GRAY: "GRAY",    PASS: "PASS",    PROCESSING_FAILED: "PROCESSING_FAILED",};const IngressAddressListEmailAttribute = {    RECIPIENT: "RECIPIENT",};const IngressBooleanOperator = {    IS_FALSE: "IS_FALSE",    IS_TRUE: "IS_TRUE",};const IngressIpv4Attribute = {    SENDER_IP: "SENDER_IP",};const IngressIpOperator = {    CIDR_MATCHES: "CIDR_MATCHES",    NOT_CIDR_MATCHES: "NOT_CIDR_MATCHES",};const IngressIpv6Attribute = {    SENDER_IPV6: "SENDER_IPV6",};const IngressStringEmailAttribute = {    RECIPIENT: "RECIPIENT",};const IngressStringOperator = {    CONTAINS: "CONTAINS",    ENDS_WITH: "ENDS_WITH",    EQUALS: "EQUALS",    NOT_EQUALS: "NOT_EQUALS",    STARTS_WITH: "STARTS_WITH",};const IngressTlsAttribute = {    TLS_PROTOCOL: "TLS_PROTOCOL",};const IngressTlsProtocolOperator = {    IS: "IS",    MINIMUM_TLS_VERSION: "MINIMUM_TLS_VERSION",};const IngressTlsProtocolAttribute = {    TLS1_2: "TLS1_2",    TLS1_3: "TLS1_3",};const ExportState = {    CANCELLED: "CANCELLED",    COMPLETED: "COMPLETED",    FAILED: "FAILED",    PREPROCESSING: "PREPROCESSING",    PROCESSING: "PROCESSING",    QUEUED: "QUEUED",};const ImportJobStatus = {    COMPLETED: "COMPLETED",    CREATED: "CREATED",    FAILED: "FAILED",    PROCESSING: "PROCESSING",    STOPPED: "STOPPED",};const SearchState = {    CANCELLED: "CANCELLED",    COMPLETED: "COMPLETED",    FAILED: "FAILED",    QUEUED: "QUEUED",    RUNNING: "RUNNING",};const TrustStoreResponseOption = {    EXCLUDE: "EXCLUDE",    INCLUDE: "INCLUDE",};const IngressPointStatus = {    ACTIVE: "ACTIVE",    ASSOCIATED_VPC_ENDPOINT_DOES_NOT_EXIST: "ASSOCIATED_VPC_ENDPOINT_DOES_NOT_EXIST",    CLOSED: "CLOSED",    DEPROVISIONING: "DEPROVISIONING",    FAILED: "FAILED",    PROVISIONING: "PROVISIONING",    UPDATING: "UPDATING",};const IngressPointStatusToUpdate = {    ACTIVE: "ACTIVE",    CLOSED: "CLOSED",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.MailManagerServiceException = MailManagerServiceException.MailManagerServiceException;exports.AcceptAction = AcceptAction;exports.ActionFailurePolicy = ActionFailurePolicy;exports.ArchiveBooleanEmailAttribute = ArchiveBooleanEmailAttribute;exports.ArchiveBooleanOperator = ArchiveBooleanOperator;exports.ArchiveState = ArchiveState;exports.ArchiveStringEmailAttribute = ArchiveStringEmailAttribute;exports.ArchiveStringOperator = ArchiveStringOperator;exports.CreateAddonInstanceCommand = CreateAddonInstanceCommand;exports.CreateAddonSubscriptionCommand = CreateAddonSubscriptionCommand;exports.CreateAddressListCommand = CreateAddressListCommand;exports.CreateAddressListImportJobCommand = CreateAddressListImportJobCommand;exports.CreateArchiveCommand = CreateArchiveCommand;exports.CreateIngressPointCommand = CreateIngressPointCommand;exports.CreateRelayCommand = CreateRelayCommand;exports.CreateRuleSetCommand = CreateRuleSetCommand;exports.CreateTrafficPolicyCommand = CreateTrafficPolicyCommand;exports.DeleteAddonInstanceCommand = DeleteAddonInstanceCommand;exports.DeleteAddonSubscriptionCommand = DeleteAddonSubscriptionCommand;exports.DeleteAddressListCommand = DeleteAddressListCommand;exports.DeleteArchiveCommand = DeleteArchiveCommand;exports.DeleteIngressPointCommand = DeleteIngressPointCommand;exports.DeleteRelayCommand = DeleteRelayCommand;exports.DeleteRuleSetCommand = DeleteRuleSetCommand;exports.DeleteTrafficPolicyCommand = DeleteTrafficPolicyCommand;exports.DeregisterMemberFromAddressListCommand = DeregisterMemberFromAddressListCommand;exports.ExportState = ExportState;exports.GetAddonInstanceCommand = GetAddonInstanceCommand;exports.GetAddonSubscriptionCommand = GetAddonSubscriptionCommand;exports.GetAddressListCommand = GetAddressListCommand;exports.GetAddressListImportJobCommand = GetAddressListImportJobCommand;exports.GetArchiveCommand = GetArchiveCommand;exports.GetArchiveExportCommand = GetArchiveExportCommand;exports.GetArchiveMessageCommand = GetArchiveMessageCommand;exports.GetArchiveMessageContentCommand = GetArchiveMessageContentCommand;exports.GetArchiveSearchCommand = GetArchiveSearchCommand;exports.GetArchiveSearchResultsCommand = GetArchiveSearchResultsCommand;exports.GetIngressPointCommand = GetIngressPointCommand;exports.GetMemberOfAddressListCommand = GetMemberOfAddressListCommand;exports.GetRelayCommand = GetRelayCommand;exports.GetRuleSetCommand = GetRuleSetCommand;exports.GetTrafficPolicyCommand = GetTrafficPolicyCommand;exports.ImportDataType = ImportDataType;exports.ImportJobStatus = ImportJobStatus;exports.IngressAddressListEmailAttribute = IngressAddressListEmailAttribute;exports.IngressBooleanOperator = IngressBooleanOperator;exports.IngressIpOperator = IngressIpOperator;exports.IngressIpv4Attribute = IngressIpv4Attribute;exports.IngressIpv6Attribute = IngressIpv6Attribute;exports.IngressPointStatus = IngressPointStatus;exports.IngressPointStatusToUpdate = IngressPointStatusToUpdate;exports.IngressPointType = IngressPointType;exports.IngressStringEmailAttribute = IngressStringEmailAttribute;exports.IngressStringOperator = IngressStringOperator;exports.IngressTlsAttribute = IngressTlsAttribute;exports.IngressTlsProtocolAttribute = IngressTlsProtocolAttribute;exports.IngressTlsProtocolOperator = IngressTlsProtocolOperator;exports.IpType = IpType;exports.LambdaInvocationType = LambdaInvocationType;exports.ListAddonInstancesCommand = ListAddonInstancesCommand;exports.ListAddonSubscriptionsCommand = ListAddonSubscriptionsCommand;exports.ListAddressListImportJobsCommand = ListAddressListImportJobsCommand;exports.ListAddressListsCommand = ListAddressListsCommand;exports.ListArchiveExportsCommand = ListArchiveExportsCommand;exports.ListArchiveSearchesCommand = ListArchiveSearchesCommand;exports.ListArchivesCommand = ListArchivesCommand;exports.ListIngressPointsCommand = ListIngressPointsCommand;exports.ListMembersOfAddressListCommand = ListMembersOfAddressListCommand;exports.ListRelaysCommand = ListRelaysCommand;exports.ListRuleSetsCommand = ListRuleSetsCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.ListTrafficPoliciesCommand = ListTrafficPoliciesCommand;exports.MailFrom = MailFrom;exports.MailManager = MailManager;exports.MailManagerClient = MailManagerClient;exports.RegisterMemberToAddressListCommand = RegisterMemberToAddressListCommand;exports.RetentionPeriod = RetentionPeriod;exports.RuleAddressListEmailAttribute = RuleAddressListEmailAttribute;exports.RuleBooleanEmailAttribute = RuleBooleanEmailAttribute;exports.RuleBooleanOperator = RuleBooleanOperator;exports.RuleClientCertificateAttribute = RuleClientCertificateAttribute;exports.RuleDmarcOperator = RuleDmarcOperator;exports.RuleDmarcPolicy = RuleDmarcPolicy;exports.RuleIpEmailAttribute = RuleIpEmailAttribute;exports.RuleIpOperator = RuleIpOperator;exports.RuleNumberEmailAttribute = RuleNumberEmailAttribute;exports.RuleNumberOperator = RuleNumberOperator;exports.RuleStringEmailAttribute = RuleStringEmailAttribute;exports.RuleStringOperator = RuleStringOperator;exports.RuleVerdict = RuleVerdict;exports.RuleVerdictAttribute = RuleVerdictAttribute;exports.RuleVerdictOperator = RuleVerdictOperator;exports.SearchState = SearchState;exports.SnsNotificationEncoding = SnsNotificationEncoding;exports.SnsNotificationPayloadType = SnsNotificationPayloadType;exports.StartAddressListImportJobCommand = StartAddressListImportJobCommand;exports.StartArchiveExportCommand = StartArchiveExportCommand;exports.StartArchiveSearchCommand = StartArchiveSearchCommand;exports.StopAddressListImportJobCommand = StopAddressListImportJobCommand;exports.StopArchiveExportCommand = StopArchiveExportCommand;exports.StopArchiveSearchCommand = StopArchiveSearchCommand;exports.TagResourceCommand = TagResourceCommand;exports.TlsPolicy = TlsPolicy;exports.TrustStoreResponseOption = TrustStoreResponseOption;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateArchiveCommand = UpdateArchiveCommand;exports.UpdateIngressPointCommand = UpdateIngressPointCommand;exports.UpdateRelayCommand = UpdateRelayCommand;exports.UpdateRuleSetCommand = UpdateRuleSetCommand;exports.UpdateTrafficPolicyCommand = UpdateTrafficPolicyCommand;exports.paginateListAddonInstances = paginateListAddonInstances;exports.paginateListAddonSubscriptions = paginateListAddonSubscriptions;exports.paginateListAddressListImportJobs = paginateListAddressListImportJobs;exports.paginateListAddressLists = paginateListAddressLists;exports.paginateListArchiveExports = paginateListArchiveExports;exports.paginateListArchiveSearches = paginateListArchiveSearches;exports.paginateListArchives = paginateListArchives;exports.paginateListIngressPoints = paginateListIngressPoints;exports.paginateListMembersOfAddressList = paginateListMembersOfAddressList;exports.paginateListRelays = paginateListRelays;exports.paginateListRuleSets = paginateListRuleSets;exports.paginateListTrafficPolicies = paginateListTrafficPolicies;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];});