File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-networkmanager/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.js70.5 KB · 1843 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 NetworkManagerServiceException = require('./models/NetworkManagerServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "networkmanager",    });};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 NetworkManagerClient 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.defaultNetworkManagerHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class AcceptAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "AcceptAttachment", {})    .n("NetworkManagerClient", "AcceptAttachmentCommand")    .sc(schemas_0.AcceptAttachment$)    .build() {} class AssociateConnectPeerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "AssociateConnectPeer", {})    .n("NetworkManagerClient", "AssociateConnectPeerCommand")    .sc(schemas_0.AssociateConnectPeer$)    .build() {} class AssociateCustomerGatewayCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "AssociateCustomerGateway", {})    .n("NetworkManagerClient", "AssociateCustomerGatewayCommand")    .sc(schemas_0.AssociateCustomerGateway$)    .build() {} class AssociateLinkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "AssociateLink", {})    .n("NetworkManagerClient", "AssociateLinkCommand")    .sc(schemas_0.AssociateLink$)    .build() {} class AssociateTransitGatewayConnectPeerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "AssociateTransitGatewayConnectPeer", {})    .n("NetworkManagerClient", "AssociateTransitGatewayConnectPeerCommand")    .sc(schemas_0.AssociateTransitGatewayConnectPeer$)    .build() {} class CreateConnectAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateConnectAttachment", {})    .n("NetworkManagerClient", "CreateConnectAttachmentCommand")    .sc(schemas_0.CreateConnectAttachment$)    .build() {} class CreateConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateConnection", {})    .n("NetworkManagerClient", "CreateConnectionCommand")    .sc(schemas_0.CreateConnection$)    .build() {} class CreateConnectPeerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateConnectPeer", {})    .n("NetworkManagerClient", "CreateConnectPeerCommand")    .sc(schemas_0.CreateConnectPeer$)    .build() {} class CreateCoreNetworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateCoreNetwork", {})    .n("NetworkManagerClient", "CreateCoreNetworkCommand")    .sc(schemas_0.CreateCoreNetwork$)    .build() {} class CreateCoreNetworkPrefixListAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateCoreNetworkPrefixListAssociation", {})    .n("NetworkManagerClient", "CreateCoreNetworkPrefixListAssociationCommand")    .sc(schemas_0.CreateCoreNetworkPrefixListAssociation$)    .build() {} class CreateDeviceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateDevice", {})    .n("NetworkManagerClient", "CreateDeviceCommand")    .sc(schemas_0.CreateDevice$)    .build() {} class CreateDirectConnectGatewayAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateDirectConnectGatewayAttachment", {})    .n("NetworkManagerClient", "CreateDirectConnectGatewayAttachmentCommand")    .sc(schemas_0.CreateDirectConnectGatewayAttachment$)    .build() {} class CreateGlobalNetworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateGlobalNetwork", {})    .n("NetworkManagerClient", "CreateGlobalNetworkCommand")    .sc(schemas_0.CreateGlobalNetwork$)    .build() {} class CreateLinkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateLink", {})    .n("NetworkManagerClient", "CreateLinkCommand")    .sc(schemas_0.CreateLink$)    .build() {} class CreateSiteCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateSite", {})    .n("NetworkManagerClient", "CreateSiteCommand")    .sc(schemas_0.CreateSite$)    .build() {} class CreateSiteToSiteVpnAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateSiteToSiteVpnAttachment", {})    .n("NetworkManagerClient", "CreateSiteToSiteVpnAttachmentCommand")    .sc(schemas_0.CreateSiteToSiteVpnAttachment$)    .build() {} class CreateTransitGatewayPeeringCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateTransitGatewayPeering", {})    .n("NetworkManagerClient", "CreateTransitGatewayPeeringCommand")    .sc(schemas_0.CreateTransitGatewayPeering$)    .build() {} class CreateTransitGatewayRouteTableAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateTransitGatewayRouteTableAttachment", {})    .n("NetworkManagerClient", "CreateTransitGatewayRouteTableAttachmentCommand")    .sc(schemas_0.CreateTransitGatewayRouteTableAttachment$)    .build() {} class CreateVpcAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "CreateVpcAttachment", {})    .n("NetworkManagerClient", "CreateVpcAttachmentCommand")    .sc(schemas_0.CreateVpcAttachment$)    .build() {} class DeleteAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DeleteAttachment", {})    .n("NetworkManagerClient", "DeleteAttachmentCommand")    .sc(schemas_0.DeleteAttachment$)    .build() {} class DeleteConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DeleteConnection", {})    .n("NetworkManagerClient", "DeleteConnectionCommand")    .sc(schemas_0.DeleteConnection$)    .build() {} class DeleteConnectPeerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DeleteConnectPeer", {})    .n("NetworkManagerClient", "DeleteConnectPeerCommand")    .sc(schemas_0.DeleteConnectPeer$)    .build() {} class DeleteCoreNetworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DeleteCoreNetwork", {})    .n("NetworkManagerClient", "DeleteCoreNetworkCommand")    .sc(schemas_0.DeleteCoreNetwork$)    .build() {} class DeleteCoreNetworkPolicyVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DeleteCoreNetworkPolicyVersion", {})    .n("NetworkManagerClient", "DeleteCoreNetworkPolicyVersionCommand")    .sc(schemas_0.DeleteCoreNetworkPolicyVersion$)    .build() {} class DeleteCoreNetworkPrefixListAssociationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DeleteCoreNetworkPrefixListAssociation", {})    .n("NetworkManagerClient", "DeleteCoreNetworkPrefixListAssociationCommand")    .sc(schemas_0.DeleteCoreNetworkPrefixListAssociation$)    .build() {} class DeleteDeviceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DeleteDevice", {})    .n("NetworkManagerClient", "DeleteDeviceCommand")    .sc(schemas_0.DeleteDevice$)    .build() {} class DeleteGlobalNetworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DeleteGlobalNetwork", {})    .n("NetworkManagerClient", "DeleteGlobalNetworkCommand")    .sc(schemas_0.DeleteGlobalNetwork$)    .build() {} class DeleteLinkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DeleteLink", {})    .n("NetworkManagerClient", "DeleteLinkCommand")    .sc(schemas_0.DeleteLink$)    .build() {} class DeletePeeringCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DeletePeering", {})    .n("NetworkManagerClient", "DeletePeeringCommand")    .sc(schemas_0.DeletePeering$)    .build() {} class DeleteResourcePolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DeleteResourcePolicy", {})    .n("NetworkManagerClient", "DeleteResourcePolicyCommand")    .sc(schemas_0.DeleteResourcePolicy$)    .build() {} class DeleteSiteCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DeleteSite", {})    .n("NetworkManagerClient", "DeleteSiteCommand")    .sc(schemas_0.DeleteSite$)    .build() {} class DeregisterTransitGatewayCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DeregisterTransitGateway", {})    .n("NetworkManagerClient", "DeregisterTransitGatewayCommand")    .sc(schemas_0.DeregisterTransitGateway$)    .build() {} class DescribeGlobalNetworksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DescribeGlobalNetworks", {})    .n("NetworkManagerClient", "DescribeGlobalNetworksCommand")    .sc(schemas_0.DescribeGlobalNetworks$)    .build() {} class DisassociateConnectPeerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DisassociateConnectPeer", {})    .n("NetworkManagerClient", "DisassociateConnectPeerCommand")    .sc(schemas_0.DisassociateConnectPeer$)    .build() {} class DisassociateCustomerGatewayCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DisassociateCustomerGateway", {})    .n("NetworkManagerClient", "DisassociateCustomerGatewayCommand")    .sc(schemas_0.DisassociateCustomerGateway$)    .build() {} class DisassociateLinkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DisassociateLink", {})    .n("NetworkManagerClient", "DisassociateLinkCommand")    .sc(schemas_0.DisassociateLink$)    .build() {} class DisassociateTransitGatewayConnectPeerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "DisassociateTransitGatewayConnectPeer", {})    .n("NetworkManagerClient", "DisassociateTransitGatewayConnectPeerCommand")    .sc(schemas_0.DisassociateTransitGatewayConnectPeer$)    .build() {} class ExecuteCoreNetworkChangeSetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "ExecuteCoreNetworkChangeSet", {})    .n("NetworkManagerClient", "ExecuteCoreNetworkChangeSetCommand")    .sc(schemas_0.ExecuteCoreNetworkChangeSet$)    .build() {} class GetConnectAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetConnectAttachment", {})    .n("NetworkManagerClient", "GetConnectAttachmentCommand")    .sc(schemas_0.GetConnectAttachment$)    .build() {} class GetConnectionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetConnections", {})    .n("NetworkManagerClient", "GetConnectionsCommand")    .sc(schemas_0.GetConnections$)    .build() {} class GetConnectPeerAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetConnectPeerAssociations", {})    .n("NetworkManagerClient", "GetConnectPeerAssociationsCommand")    .sc(schemas_0.GetConnectPeerAssociations$)    .build() {} class GetConnectPeerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetConnectPeer", {})    .n("NetworkManagerClient", "GetConnectPeerCommand")    .sc(schemas_0.GetConnectPeer$)    .build() {} class GetCoreNetworkChangeEventsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetCoreNetworkChangeEvents", {})    .n("NetworkManagerClient", "GetCoreNetworkChangeEventsCommand")    .sc(schemas_0.GetCoreNetworkChangeEvents$)    .build() {} class GetCoreNetworkChangeSetCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetCoreNetworkChangeSet", {})    .n("NetworkManagerClient", "GetCoreNetworkChangeSetCommand")    .sc(schemas_0.GetCoreNetworkChangeSet$)    .build() {} class GetCoreNetworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetCoreNetwork", {})    .n("NetworkManagerClient", "GetCoreNetworkCommand")    .sc(schemas_0.GetCoreNetwork$)    .build() {} class GetCoreNetworkPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetCoreNetworkPolicy", {})    .n("NetworkManagerClient", "GetCoreNetworkPolicyCommand")    .sc(schemas_0.GetCoreNetworkPolicy$)    .build() {} class GetCustomerGatewayAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetCustomerGatewayAssociations", {})    .n("NetworkManagerClient", "GetCustomerGatewayAssociationsCommand")    .sc(schemas_0.GetCustomerGatewayAssociations$)    .build() {} class GetDevicesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetDevices", {})    .n("NetworkManagerClient", "GetDevicesCommand")    .sc(schemas_0.GetDevices$)    .build() {} class GetDirectConnectGatewayAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetDirectConnectGatewayAttachment", {})    .n("NetworkManagerClient", "GetDirectConnectGatewayAttachmentCommand")    .sc(schemas_0.GetDirectConnectGatewayAttachment$)    .build() {} class GetLinkAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetLinkAssociations", {})    .n("NetworkManagerClient", "GetLinkAssociationsCommand")    .sc(schemas_0.GetLinkAssociations$)    .build() {} class GetLinksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetLinks", {})    .n("NetworkManagerClient", "GetLinksCommand")    .sc(schemas_0.GetLinks$)    .build() {} class GetNetworkResourceCountsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetNetworkResourceCounts", {})    .n("NetworkManagerClient", "GetNetworkResourceCountsCommand")    .sc(schemas_0.GetNetworkResourceCounts$)    .build() {} class GetNetworkResourceRelationshipsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetNetworkResourceRelationships", {})    .n("NetworkManagerClient", "GetNetworkResourceRelationshipsCommand")    .sc(schemas_0.GetNetworkResourceRelationships$)    .build() {} class GetNetworkResourcesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetNetworkResources", {})    .n("NetworkManagerClient", "GetNetworkResourcesCommand")    .sc(schemas_0.GetNetworkResources$)    .build() {} class GetNetworkRoutesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetNetworkRoutes", {})    .n("NetworkManagerClient", "GetNetworkRoutesCommand")    .sc(schemas_0.GetNetworkRoutes$)    .build() {} class GetNetworkTelemetryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetNetworkTelemetry", {})    .n("NetworkManagerClient", "GetNetworkTelemetryCommand")    .sc(schemas_0.GetNetworkTelemetry$)    .build() {} class GetResourcePolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetResourcePolicy", {})    .n("NetworkManagerClient", "GetResourcePolicyCommand")    .sc(schemas_0.GetResourcePolicy$)    .build() {} class GetRouteAnalysisCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetRouteAnalysis", {})    .n("NetworkManagerClient", "GetRouteAnalysisCommand")    .sc(schemas_0.GetRouteAnalysis$)    .build() {} class GetSitesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetSites", {})    .n("NetworkManagerClient", "GetSitesCommand")    .sc(schemas_0.GetSites$)    .build() {} class GetSiteToSiteVpnAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetSiteToSiteVpnAttachment", {})    .n("NetworkManagerClient", "GetSiteToSiteVpnAttachmentCommand")    .sc(schemas_0.GetSiteToSiteVpnAttachment$)    .build() {} class GetTransitGatewayConnectPeerAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetTransitGatewayConnectPeerAssociations", {})    .n("NetworkManagerClient", "GetTransitGatewayConnectPeerAssociationsCommand")    .sc(schemas_0.GetTransitGatewayConnectPeerAssociations$)    .build() {} class GetTransitGatewayPeeringCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetTransitGatewayPeering", {})    .n("NetworkManagerClient", "GetTransitGatewayPeeringCommand")    .sc(schemas_0.GetTransitGatewayPeering$)    .build() {} class GetTransitGatewayRegistrationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetTransitGatewayRegistrations", {})    .n("NetworkManagerClient", "GetTransitGatewayRegistrationsCommand")    .sc(schemas_0.GetTransitGatewayRegistrations$)    .build() {} class GetTransitGatewayRouteTableAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetTransitGatewayRouteTableAttachment", {})    .n("NetworkManagerClient", "GetTransitGatewayRouteTableAttachmentCommand")    .sc(schemas_0.GetTransitGatewayRouteTableAttachment$)    .build() {} class GetVpcAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "GetVpcAttachment", {})    .n("NetworkManagerClient", "GetVpcAttachmentCommand")    .sc(schemas_0.GetVpcAttachment$)    .build() {} class ListAttachmentRoutingPolicyAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "ListAttachmentRoutingPolicyAssociations", {})    .n("NetworkManagerClient", "ListAttachmentRoutingPolicyAssociationsCommand")    .sc(schemas_0.ListAttachmentRoutingPolicyAssociations$)    .build() {} class ListAttachmentsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "ListAttachments", {})    .n("NetworkManagerClient", "ListAttachmentsCommand")    .sc(schemas_0.ListAttachments$)    .build() {} class ListConnectPeersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "ListConnectPeers", {})    .n("NetworkManagerClient", "ListConnectPeersCommand")    .sc(schemas_0.ListConnectPeers$)    .build() {} class ListCoreNetworkPolicyVersionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "ListCoreNetworkPolicyVersions", {})    .n("NetworkManagerClient", "ListCoreNetworkPolicyVersionsCommand")    .sc(schemas_0.ListCoreNetworkPolicyVersions$)    .build() {} class ListCoreNetworkPrefixListAssociationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "ListCoreNetworkPrefixListAssociations", {})    .n("NetworkManagerClient", "ListCoreNetworkPrefixListAssociationsCommand")    .sc(schemas_0.ListCoreNetworkPrefixListAssociations$)    .build() {} class ListCoreNetworkRoutingInformationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "ListCoreNetworkRoutingInformation", {})    .n("NetworkManagerClient", "ListCoreNetworkRoutingInformationCommand")    .sc(schemas_0.ListCoreNetworkRoutingInformation$)    .build() {} class ListCoreNetworksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "ListCoreNetworks", {})    .n("NetworkManagerClient", "ListCoreNetworksCommand")    .sc(schemas_0.ListCoreNetworks$)    .build() {} class ListOrganizationServiceAccessStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "ListOrganizationServiceAccessStatus", {})    .n("NetworkManagerClient", "ListOrganizationServiceAccessStatusCommand")    .sc(schemas_0.ListOrganizationServiceAccessStatus$)    .build() {} class ListPeeringsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "ListPeerings", {})    .n("NetworkManagerClient", "ListPeeringsCommand")    .sc(schemas_0.ListPeerings$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "ListTagsForResource", {})    .n("NetworkManagerClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class PutAttachmentRoutingPolicyLabelCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "PutAttachmentRoutingPolicyLabel", {})    .n("NetworkManagerClient", "PutAttachmentRoutingPolicyLabelCommand")    .sc(schemas_0.PutAttachmentRoutingPolicyLabel$)    .build() {} class PutCoreNetworkPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "PutCoreNetworkPolicy", {})    .n("NetworkManagerClient", "PutCoreNetworkPolicyCommand")    .sc(schemas_0.PutCoreNetworkPolicy$)    .build() {} class PutResourcePolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "PutResourcePolicy", {})    .n("NetworkManagerClient", "PutResourcePolicyCommand")    .sc(schemas_0.PutResourcePolicy$)    .build() {} class RegisterTransitGatewayCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "RegisterTransitGateway", {})    .n("NetworkManagerClient", "RegisterTransitGatewayCommand")    .sc(schemas_0.RegisterTransitGateway$)    .build() {} class RejectAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "RejectAttachment", {})    .n("NetworkManagerClient", "RejectAttachmentCommand")    .sc(schemas_0.RejectAttachment$)    .build() {} class RemoveAttachmentRoutingPolicyLabelCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "RemoveAttachmentRoutingPolicyLabel", {})    .n("NetworkManagerClient", "RemoveAttachmentRoutingPolicyLabelCommand")    .sc(schemas_0.RemoveAttachmentRoutingPolicyLabel$)    .build() {} class RestoreCoreNetworkPolicyVersionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "RestoreCoreNetworkPolicyVersion", {})    .n("NetworkManagerClient", "RestoreCoreNetworkPolicyVersionCommand")    .sc(schemas_0.RestoreCoreNetworkPolicyVersion$)    .build() {} class StartOrganizationServiceAccessUpdateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "StartOrganizationServiceAccessUpdate", {})    .n("NetworkManagerClient", "StartOrganizationServiceAccessUpdateCommand")    .sc(schemas_0.StartOrganizationServiceAccessUpdate$)    .build() {} class StartRouteAnalysisCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "StartRouteAnalysis", {})    .n("NetworkManagerClient", "StartRouteAnalysisCommand")    .sc(schemas_0.StartRouteAnalysis$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "TagResource", {})    .n("NetworkManagerClient", "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("NetworkManager", "UntagResource", {})    .n("NetworkManagerClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateConnectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "UpdateConnection", {})    .n("NetworkManagerClient", "UpdateConnectionCommand")    .sc(schemas_0.UpdateConnection$)    .build() {} class UpdateCoreNetworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "UpdateCoreNetwork", {})    .n("NetworkManagerClient", "UpdateCoreNetworkCommand")    .sc(schemas_0.UpdateCoreNetwork$)    .build() {} class UpdateDeviceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "UpdateDevice", {})    .n("NetworkManagerClient", "UpdateDeviceCommand")    .sc(schemas_0.UpdateDevice$)    .build() {} class UpdateDirectConnectGatewayAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "UpdateDirectConnectGatewayAttachment", {})    .n("NetworkManagerClient", "UpdateDirectConnectGatewayAttachmentCommand")    .sc(schemas_0.UpdateDirectConnectGatewayAttachment$)    .build() {} class UpdateGlobalNetworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "UpdateGlobalNetwork", {})    .n("NetworkManagerClient", "UpdateGlobalNetworkCommand")    .sc(schemas_0.UpdateGlobalNetwork$)    .build() {} class UpdateLinkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "UpdateLink", {})    .n("NetworkManagerClient", "UpdateLinkCommand")    .sc(schemas_0.UpdateLink$)    .build() {} class UpdateNetworkResourceMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "UpdateNetworkResourceMetadata", {})    .n("NetworkManagerClient", "UpdateNetworkResourceMetadataCommand")    .sc(schemas_0.UpdateNetworkResourceMetadata$)    .build() {} class UpdateSiteCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "UpdateSite", {})    .n("NetworkManagerClient", "UpdateSiteCommand")    .sc(schemas_0.UpdateSite$)    .build() {} class UpdateVpcAttachmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("NetworkManager", "UpdateVpcAttachment", {})    .n("NetworkManagerClient", "UpdateVpcAttachmentCommand")    .sc(schemas_0.UpdateVpcAttachment$)    .build() {} const paginateDescribeGlobalNetworks = core.createPaginator(NetworkManagerClient, DescribeGlobalNetworksCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetConnections = core.createPaginator(NetworkManagerClient, GetConnectionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetConnectPeerAssociations = core.createPaginator(NetworkManagerClient, GetConnectPeerAssociationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetCoreNetworkChangeEvents = core.createPaginator(NetworkManagerClient, GetCoreNetworkChangeEventsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetCoreNetworkChangeSet = core.createPaginator(NetworkManagerClient, GetCoreNetworkChangeSetCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetCustomerGatewayAssociations = core.createPaginator(NetworkManagerClient, GetCustomerGatewayAssociationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetDevices = core.createPaginator(NetworkManagerClient, GetDevicesCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetLinkAssociations = core.createPaginator(NetworkManagerClient, GetLinkAssociationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetLinks = core.createPaginator(NetworkManagerClient, GetLinksCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetNetworkResourceCounts = core.createPaginator(NetworkManagerClient, GetNetworkResourceCountsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetNetworkResourceRelationships = core.createPaginator(NetworkManagerClient, GetNetworkResourceRelationshipsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetNetworkResources = core.createPaginator(NetworkManagerClient, GetNetworkResourcesCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetNetworkTelemetry = core.createPaginator(NetworkManagerClient, GetNetworkTelemetryCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetSites = core.createPaginator(NetworkManagerClient, GetSitesCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetTransitGatewayConnectPeerAssociations = core.createPaginator(NetworkManagerClient, GetTransitGatewayConnectPeerAssociationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateGetTransitGatewayRegistrations = core.createPaginator(NetworkManagerClient, GetTransitGatewayRegistrationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListAttachmentRoutingPolicyAssociations = core.createPaginator(NetworkManagerClient, ListAttachmentRoutingPolicyAssociationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListAttachments = core.createPaginator(NetworkManagerClient, ListAttachmentsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListConnectPeers = core.createPaginator(NetworkManagerClient, ListConnectPeersCommand, "NextToken", "NextToken", "MaxResults"); const paginateListCoreNetworkPolicyVersions = core.createPaginator(NetworkManagerClient, ListCoreNetworkPolicyVersionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListCoreNetworkPrefixListAssociations = core.createPaginator(NetworkManagerClient, ListCoreNetworkPrefixListAssociationsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListCoreNetworkRoutingInformation = core.createPaginator(NetworkManagerClient, ListCoreNetworkRoutingInformationCommand, "NextToken", "NextToken", "MaxResults"); const paginateListCoreNetworks = core.createPaginator(NetworkManagerClient, ListCoreNetworksCommand, "NextToken", "NextToken", "MaxResults"); const paginateListPeerings = core.createPaginator(NetworkManagerClient, ListPeeringsCommand, "NextToken", "NextToken", "MaxResults"); const commands = {    AcceptAttachmentCommand,    AssociateConnectPeerCommand,    AssociateCustomerGatewayCommand,    AssociateLinkCommand,    AssociateTransitGatewayConnectPeerCommand,    CreateConnectAttachmentCommand,    CreateConnectionCommand,    CreateConnectPeerCommand,    CreateCoreNetworkCommand,    CreateCoreNetworkPrefixListAssociationCommand,    CreateDeviceCommand,    CreateDirectConnectGatewayAttachmentCommand,    CreateGlobalNetworkCommand,    CreateLinkCommand,    CreateSiteCommand,    CreateSiteToSiteVpnAttachmentCommand,    CreateTransitGatewayPeeringCommand,    CreateTransitGatewayRouteTableAttachmentCommand,    CreateVpcAttachmentCommand,    DeleteAttachmentCommand,    DeleteConnectionCommand,    DeleteConnectPeerCommand,    DeleteCoreNetworkCommand,    DeleteCoreNetworkPolicyVersionCommand,    DeleteCoreNetworkPrefixListAssociationCommand,    DeleteDeviceCommand,    DeleteGlobalNetworkCommand,    DeleteLinkCommand,    DeletePeeringCommand,    DeleteResourcePolicyCommand,    DeleteSiteCommand,    DeregisterTransitGatewayCommand,    DescribeGlobalNetworksCommand,    DisassociateConnectPeerCommand,    DisassociateCustomerGatewayCommand,    DisassociateLinkCommand,    DisassociateTransitGatewayConnectPeerCommand,    ExecuteCoreNetworkChangeSetCommand,    GetConnectAttachmentCommand,    GetConnectionsCommand,    GetConnectPeerCommand,    GetConnectPeerAssociationsCommand,    GetCoreNetworkCommand,    GetCoreNetworkChangeEventsCommand,    GetCoreNetworkChangeSetCommand,    GetCoreNetworkPolicyCommand,    GetCustomerGatewayAssociationsCommand,    GetDevicesCommand,    GetDirectConnectGatewayAttachmentCommand,    GetLinkAssociationsCommand,    GetLinksCommand,    GetNetworkResourceCountsCommand,    GetNetworkResourceRelationshipsCommand,    GetNetworkResourcesCommand,    GetNetworkRoutesCommand,    GetNetworkTelemetryCommand,    GetResourcePolicyCommand,    GetRouteAnalysisCommand,    GetSitesCommand,    GetSiteToSiteVpnAttachmentCommand,    GetTransitGatewayConnectPeerAssociationsCommand,    GetTransitGatewayPeeringCommand,    GetTransitGatewayRegistrationsCommand,    GetTransitGatewayRouteTableAttachmentCommand,    GetVpcAttachmentCommand,    ListAttachmentRoutingPolicyAssociationsCommand,    ListAttachmentsCommand,    ListConnectPeersCommand,    ListCoreNetworkPolicyVersionsCommand,    ListCoreNetworkPrefixListAssociationsCommand,    ListCoreNetworkRoutingInformationCommand,    ListCoreNetworksCommand,    ListOrganizationServiceAccessStatusCommand,    ListPeeringsCommand,    ListTagsForResourceCommand,    PutAttachmentRoutingPolicyLabelCommand,    PutCoreNetworkPolicyCommand,    PutResourcePolicyCommand,    RegisterTransitGatewayCommand,    RejectAttachmentCommand,    RemoveAttachmentRoutingPolicyLabelCommand,    RestoreCoreNetworkPolicyVersionCommand,    StartOrganizationServiceAccessUpdateCommand,    StartRouteAnalysisCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateConnectionCommand,    UpdateCoreNetworkCommand,    UpdateDeviceCommand,    UpdateDirectConnectGatewayAttachmentCommand,    UpdateGlobalNetworkCommand,    UpdateLinkCommand,    UpdateNetworkResourceMetadataCommand,    UpdateSiteCommand,    UpdateVpcAttachmentCommand,};const paginators = {    paginateDescribeGlobalNetworks,    paginateGetConnections,    paginateGetConnectPeerAssociations,    paginateGetCoreNetworkChangeEvents,    paginateGetCoreNetworkChangeSet,    paginateGetCustomerGatewayAssociations,    paginateGetDevices,    paginateGetLinkAssociations,    paginateGetLinks,    paginateGetNetworkResourceCounts,    paginateGetNetworkResourceRelationships,    paginateGetNetworkResources,    paginateGetNetworkTelemetry,    paginateGetSites,    paginateGetTransitGatewayConnectPeerAssociations,    paginateGetTransitGatewayRegistrations,    paginateListAttachmentRoutingPolicyAssociations,    paginateListAttachments,    paginateListConnectPeers,    paginateListCoreNetworkPolicyVersions,    paginateListCoreNetworkPrefixListAssociations,    paginateListCoreNetworkRoutingInformation,    paginateListCoreNetworks,    paginateListPeerings,};class NetworkManager extends NetworkManagerClient {}client.createAggregatedClient(commands, NetworkManager, { paginators }); const AttachmentType = {    CONNECT: "CONNECT",    DIRECT_CONNECT_GATEWAY: "DIRECT_CONNECT_GATEWAY",    SITE_TO_SITE_VPN: "SITE_TO_SITE_VPN",    TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE",    VPC: "VPC",};const AttachmentErrorCode = {    DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS: "DIRECT_CONNECT_GATEWAY_EXISTING_ATTACHMENTS",    DIRECT_CONNECT_GATEWAY_NOT_FOUND: "DIRECT_CONNECT_GATEWAY_NOT_FOUND",    DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF: "DIRECT_CONNECT_GATEWAY_NO_PRIVATE_VIF",    MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED: "MAXIMUM_NO_ENCAP_LIMIT_EXCEEDED",    SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE: "SUBNET_DUPLICATED_IN_AVAILABILITY_ZONE",    SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND",    SUBNET_NO_FREE_ADDRESSES: "SUBNET_NO_FREE_ADDRESSES",    SUBNET_NO_IPV6_CIDRS: "SUBNET_NO_IPV6_CIDRS",    SUBNET_UNSUPPORTED_AVAILABILITY_ZONE: "SUBNET_UNSUPPORTED_AVAILABILITY_ZONE",    VPC_NOT_FOUND: "VPC_NOT_FOUND",    VPC_UNSUPPORTED_FEATURES: "VPC_UNSUPPORTED_FEATURES",    VPN_CONNECTION_NOT_FOUND: "VPN_CONNECTION_NOT_FOUND",    VPN_EXISTING_ASSOCIATIONS: "VPN_EXISTING_ASSOCIATIONS",};const AttachmentState = {    AVAILABLE: "AVAILABLE",    CREATING: "CREATING",    DELETING: "DELETING",    FAILED: "FAILED",    PENDING_ATTACHMENT_ACCEPTANCE: "PENDING_ATTACHMENT_ACCEPTANCE",    PENDING_NETWORK_UPDATE: "PENDING_NETWORK_UPDATE",    PENDING_TAG_ACCEPTANCE: "PENDING_TAG_ACCEPTANCE",    REJECTED: "REJECTED",    UPDATING: "UPDATING",};const ValidationExceptionReason = {    CANNOT_PARSE: "CannotParse",    FIELD_VALIDATION_FAILED: "FieldValidationFailed",    OTHER: "Other",    UNKNOWN_OPERATION: "UnknownOperation",};const ConnectPeerAssociationState = {    available: "AVAILABLE",    deleted: "DELETED",    deleting: "DELETING",    pending: "PENDING",};const CustomerGatewayAssociationState = {    available: "AVAILABLE",    deleted: "DELETED",    deleting: "DELETING",    pending: "PENDING",};const LinkAssociationState = {    available: "AVAILABLE",    deleted: "DELETED",    deleting: "DELETING",    pending: "PENDING",};const TransitGatewayConnectPeerAssociationState = {    available: "AVAILABLE",    deleted: "DELETED",    deleting: "DELETING",    pending: "PENDING",};const ChangeAction = {    ADD: "ADD",    MODIFY: "MODIFY",    REMOVE: "REMOVE",};const ChangeSetState = {    EXECUTING: "EXECUTING",    EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED",    FAILED_GENERATION: "FAILED_GENERATION",    OUT_OF_DATE: "OUT_OF_DATE",    PENDING_GENERATION: "PENDING_GENERATION",    READY_TO_EXECUTE: "READY_TO_EXECUTE",};const ChangeStatus = {    COMPLETE: "COMPLETE",    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    NOT_STARTED: "NOT_STARTED",};const ChangeType = {    ATTACHMENT_MAPPING: "ATTACHMENT_MAPPING",    ATTACHMENT_POLICIES_CONFIGURATION: "ATTACHMENT_POLICIES_CONFIGURATION",    ATTACHMENT_ROUTE_PROPAGATION: "ATTACHMENT_ROUTE_PROPAGATION",    ATTACHMENT_ROUTE_STATIC: "ATTACHMENT_ROUTE_STATIC",    CORE_NETWORK_CONFIGURATION: "CORE_NETWORK_CONFIGURATION",    CORE_NETWORK_EDGE: "CORE_NETWORK_EDGE",    CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT",    NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP",    ROUTING_POLICY: "ROUTING_POLICY",    ROUTING_POLICY_ATTACHMENT_ASSOCIATION: "ROUTING_POLICY_ATTACHMENT_ASSOCIATION",    ROUTING_POLICY_EDGE_ASSOCIATION: "ROUTING_POLICY_EDGE_ASSOCIATION",    ROUTING_POLICY_SEGMENT_ASSOCIATION: "ROUTING_POLICY_SEGMENT_ASSOCIATION",    SEGMENTS_CONFIGURATION: "SEGMENTS_CONFIGURATION",    SEGMENT_ACTIONS_CONFIGURATION: "SEGMENT_ACTIONS_CONFIGURATION",};const TunnelProtocol = {    GRE: "GRE",    NO_ENCAP: "NO_ENCAP",};const ConnectionState = {    available: "AVAILABLE",    deleting: "DELETING",    pending: "PENDING",    updating: "UPDATING",};const ConnectionStatus = {    DOWN: "DOWN",    UP: "UP",};const ConnectionType = {    BGP: "BGP",    IPSEC: "IPSEC",};const ConnectPeerErrorCode = {    EDGE_LOCATION_NO_FREE_IPS: "EDGE_LOCATION_NO_FREE_IPS",    EDGE_LOCATION_PEER_DUPLICATE: "EDGE_LOCATION_PEER_DUPLICATE",    INVALID_INSIDE_CIDR_BLOCK: "INVALID_INSIDE_CIDR_BLOCK",    IP_OUTSIDE_SUBNET_CIDR_RANGE: "IP_OUTSIDE_SUBNET_CIDR_RANGE",    NO_ASSOCIATED_CIDR_BLOCK: "NO_ASSOCIATED_CIDR_BLOCK",    SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND",};const ConnectPeerState = {    AVAILABLE: "AVAILABLE",    CREATING: "CREATING",    DELETING: "DELETING",    FAILED: "FAILED",};const CoreNetworkState = {    AVAILABLE: "AVAILABLE",    CREATING: "CREATING",    DELETING: "DELETING",    UPDATING: "UPDATING",};const RoutingPolicyDirection = {    INBOUND: "inbound",    OUTBOUND: "outbound",};const SegmentActionServiceInsertion = {    SEND_TO: "send-to",    SEND_VIA: "send-via",};const SendViaMode = {    DUAL_HOP: "dual-hop",    SINGLE_HOP: "single-hop",};const CoreNetworkPolicyAlias = {    LATEST: "LATEST",    LIVE: "LIVE",};const DeviceState = {    available: "AVAILABLE",    deleting: "DELETING",    pending: "PENDING",    updating: "UPDATING",};const GlobalNetworkState = {    available: "AVAILABLE",    deleting: "DELETING",    pending: "PENDING",    updating: "UPDATING",};const LinkState = {    available: "AVAILABLE",    deleting: "DELETING",    pending: "PENDING",    updating: "UPDATING",};const SiteState = {    available: "AVAILABLE",    deleting: "DELETING",    pending: "PENDING",    updating: "UPDATING",};const PeeringErrorCode = {    EDGE_LOCATION_PEER_DUPLICATE: "EDGE_LOCATION_PEER_DUPLICATE",    INTERNAL_ERROR: "INTERNAL_ERROR",    INVALID_TRANSIT_GATEWAY_STATE: "INVALID_TRANSIT_GATEWAY_STATE",    MISSING_REQUIRED_PERMISSIONS: "MISSING_PERMISSIONS",    TRANSIT_GATEWAY_NOT_FOUND: "TRANSIT_GATEWAY_NOT_FOUND",    TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED: "TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED",};const PeeringType = {    TRANSIT_GATEWAY: "TRANSIT_GATEWAY",};const PeeringState = {    AVAILABLE: "AVAILABLE",    CREATING: "CREATING",    DELETING: "DELETING",    FAILED: "FAILED",};const TransitGatewayRegistrationState = {    available: "AVAILABLE",    deleted: "DELETED",    deleting: "DELETING",    failed: "FAILED",    pending: "PENDING",};const RouteState = {    ACTIVE: "ACTIVE",    BLACKHOLE: "BLACKHOLE",};const RouteType = {    PROPAGATED: "PROPAGATED",    STATIC: "STATIC",};const RouteTableType = {    CORE_NETWORK_SEGMENT: "CORE_NETWORK_SEGMENT",    NETWORK_FUNCTION_GROUP: "NETWORK_FUNCTION_GROUP",    TRANSIT_GATEWAY_ROUTE_TABLE: "TRANSIT_GATEWAY_ROUTE_TABLE",};const RouteAnalysisCompletionReasonCode = {    BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND: "BLACKHOLE_ROUTE_FOR_DESTINATION_FOUND",    CYCLIC_PATH_DETECTED: "CYCLIC_PATH_DETECTED",    INACTIVE_ROUTE_FOR_DESTINATION_FOUND: "INACTIVE_ROUTE_FOR_DESTINATION_FOUND",    MAX_HOPS_EXCEEDED: "MAX_HOPS_EXCEEDED",    NO_DESTINATION_ARN_PROVIDED: "NO_DESTINATION_ARN_PROVIDED",    POSSIBLE_MIDDLEBOX: "POSSIBLE_MIDDLEBOX",    ROUTE_NOT_FOUND: "ROUTE_NOT_FOUND",    TRANSIT_GATEWAY_ATTACHMENT: "TRANSIT_GATEWAY_ATTACHMENT_ATTACH_ARN_NO_MATCH",    TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_NOT_FOUND",    TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY: "TRANSIT_GATEWAY_ATTACHMENT_NOT_IN_TRANSIT_GATEWAY",    TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND: "TRANSIT_GATEWAY_ATTACHMENT_STABLE_ROUTE_TABLE_NOT_FOUND",};const RouteAnalysisCompletionResultCode = {    CONNECTED: "CONNECTED",    NOT_CONNECTED: "NOT_CONNECTED",};const RouteAnalysisStatus = {    completed: "COMPLETED",    failed: "FAILED",    running: "RUNNING",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.NetworkManagerServiceException = NetworkManagerServiceException.NetworkManagerServiceException;exports.AcceptAttachmentCommand = AcceptAttachmentCommand;exports.AssociateConnectPeerCommand = AssociateConnectPeerCommand;exports.AssociateCustomerGatewayCommand = AssociateCustomerGatewayCommand;exports.AssociateLinkCommand = AssociateLinkCommand;exports.AssociateTransitGatewayConnectPeerCommand = AssociateTransitGatewayConnectPeerCommand;exports.AttachmentErrorCode = AttachmentErrorCode;exports.AttachmentState = AttachmentState;exports.AttachmentType = AttachmentType;exports.ChangeAction = ChangeAction;exports.ChangeSetState = ChangeSetState;exports.ChangeStatus = ChangeStatus;exports.ChangeType = ChangeType;exports.ConnectPeerAssociationState = ConnectPeerAssociationState;exports.ConnectPeerErrorCode = ConnectPeerErrorCode;exports.ConnectPeerState = ConnectPeerState;exports.ConnectionState = ConnectionState;exports.ConnectionStatus = ConnectionStatus;exports.ConnectionType = ConnectionType;exports.CoreNetworkPolicyAlias = CoreNetworkPolicyAlias;exports.CoreNetworkState = CoreNetworkState;exports.CreateConnectAttachmentCommand = CreateConnectAttachmentCommand;exports.CreateConnectPeerCommand = CreateConnectPeerCommand;exports.CreateConnectionCommand = CreateConnectionCommand;exports.CreateCoreNetworkCommand = CreateCoreNetworkCommand;exports.CreateCoreNetworkPrefixListAssociationCommand = CreateCoreNetworkPrefixListAssociationCommand;exports.CreateDeviceCommand = CreateDeviceCommand;exports.CreateDirectConnectGatewayAttachmentCommand = CreateDirectConnectGatewayAttachmentCommand;exports.CreateGlobalNetworkCommand = CreateGlobalNetworkCommand;exports.CreateLinkCommand = CreateLinkCommand;exports.CreateSiteCommand = CreateSiteCommand;exports.CreateSiteToSiteVpnAttachmentCommand = CreateSiteToSiteVpnAttachmentCommand;exports.CreateTransitGatewayPeeringCommand = CreateTransitGatewayPeeringCommand;exports.CreateTransitGatewayRouteTableAttachmentCommand = CreateTransitGatewayRouteTableAttachmentCommand;exports.CreateVpcAttachmentCommand = CreateVpcAttachmentCommand;exports.CustomerGatewayAssociationState = CustomerGatewayAssociationState;exports.DeleteAttachmentCommand = DeleteAttachmentCommand;exports.DeleteConnectPeerCommand = DeleteConnectPeerCommand;exports.DeleteConnectionCommand = DeleteConnectionCommand;exports.DeleteCoreNetworkCommand = DeleteCoreNetworkCommand;exports.DeleteCoreNetworkPolicyVersionCommand = DeleteCoreNetworkPolicyVersionCommand;exports.DeleteCoreNetworkPrefixListAssociationCommand = DeleteCoreNetworkPrefixListAssociationCommand;exports.DeleteDeviceCommand = DeleteDeviceCommand;exports.DeleteGlobalNetworkCommand = DeleteGlobalNetworkCommand;exports.DeleteLinkCommand = DeleteLinkCommand;exports.DeletePeeringCommand = DeletePeeringCommand;exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;exports.DeleteSiteCommand = DeleteSiteCommand;exports.DeregisterTransitGatewayCommand = DeregisterTransitGatewayCommand;exports.DescribeGlobalNetworksCommand = DescribeGlobalNetworksCommand;exports.DeviceState = DeviceState;exports.DisassociateConnectPeerCommand = DisassociateConnectPeerCommand;exports.DisassociateCustomerGatewayCommand = DisassociateCustomerGatewayCommand;exports.DisassociateLinkCommand = DisassociateLinkCommand;exports.DisassociateTransitGatewayConnectPeerCommand = DisassociateTransitGatewayConnectPeerCommand;exports.ExecuteCoreNetworkChangeSetCommand = ExecuteCoreNetworkChangeSetCommand;exports.GetConnectAttachmentCommand = GetConnectAttachmentCommand;exports.GetConnectPeerAssociationsCommand = GetConnectPeerAssociationsCommand;exports.GetConnectPeerCommand = GetConnectPeerCommand;exports.GetConnectionsCommand = GetConnectionsCommand;exports.GetCoreNetworkChangeEventsCommand = GetCoreNetworkChangeEventsCommand;exports.GetCoreNetworkChangeSetCommand = GetCoreNetworkChangeSetCommand;exports.GetCoreNetworkCommand = GetCoreNetworkCommand;exports.GetCoreNetworkPolicyCommand = GetCoreNetworkPolicyCommand;exports.GetCustomerGatewayAssociationsCommand = GetCustomerGatewayAssociationsCommand;exports.GetDevicesCommand = GetDevicesCommand;exports.GetDirectConnectGatewayAttachmentCommand = GetDirectConnectGatewayAttachmentCommand;exports.GetLinkAssociationsCommand = GetLinkAssociationsCommand;exports.GetLinksCommand = GetLinksCommand;exports.GetNetworkResourceCountsCommand = GetNetworkResourceCountsCommand;exports.GetNetworkResourceRelationshipsCommand = GetNetworkResourceRelationshipsCommand;exports.GetNetworkResourcesCommand = GetNetworkResourcesCommand;exports.GetNetworkRoutesCommand = GetNetworkRoutesCommand;exports.GetNetworkTelemetryCommand = GetNetworkTelemetryCommand;exports.GetResourcePolicyCommand = GetResourcePolicyCommand;exports.GetRouteAnalysisCommand = GetRouteAnalysisCommand;exports.GetSiteToSiteVpnAttachmentCommand = GetSiteToSiteVpnAttachmentCommand;exports.GetSitesCommand = GetSitesCommand;exports.GetTransitGatewayConnectPeerAssociationsCommand = GetTransitGatewayConnectPeerAssociationsCommand;exports.GetTransitGatewayPeeringCommand = GetTransitGatewayPeeringCommand;exports.GetTransitGatewayRegistrationsCommand = GetTransitGatewayRegistrationsCommand;exports.GetTransitGatewayRouteTableAttachmentCommand = GetTransitGatewayRouteTableAttachmentCommand;exports.GetVpcAttachmentCommand = GetVpcAttachmentCommand;exports.GlobalNetworkState = GlobalNetworkState;exports.LinkAssociationState = LinkAssociationState;exports.LinkState = LinkState;exports.ListAttachmentRoutingPolicyAssociationsCommand = ListAttachmentRoutingPolicyAssociationsCommand;exports.ListAttachmentsCommand = ListAttachmentsCommand;exports.ListConnectPeersCommand = ListConnectPeersCommand;exports.ListCoreNetworkPolicyVersionsCommand = ListCoreNetworkPolicyVersionsCommand;exports.ListCoreNetworkPrefixListAssociationsCommand = ListCoreNetworkPrefixListAssociationsCommand;exports.ListCoreNetworkRoutingInformationCommand = ListCoreNetworkRoutingInformationCommand;exports.ListCoreNetworksCommand = ListCoreNetworksCommand;exports.ListOrganizationServiceAccessStatusCommand = ListOrganizationServiceAccessStatusCommand;exports.ListPeeringsCommand = ListPeeringsCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.NetworkManager = NetworkManager;exports.NetworkManagerClient = NetworkManagerClient;exports.PeeringErrorCode = PeeringErrorCode;exports.PeeringState = PeeringState;exports.PeeringType = PeeringType;exports.PutAttachmentRoutingPolicyLabelCommand = PutAttachmentRoutingPolicyLabelCommand;exports.PutCoreNetworkPolicyCommand = PutCoreNetworkPolicyCommand;exports.PutResourcePolicyCommand = PutResourcePolicyCommand;exports.RegisterTransitGatewayCommand = RegisterTransitGatewayCommand;exports.RejectAttachmentCommand = RejectAttachmentCommand;exports.RemoveAttachmentRoutingPolicyLabelCommand = RemoveAttachmentRoutingPolicyLabelCommand;exports.RestoreCoreNetworkPolicyVersionCommand = RestoreCoreNetworkPolicyVersionCommand;exports.RouteAnalysisCompletionReasonCode = RouteAnalysisCompletionReasonCode;exports.RouteAnalysisCompletionResultCode = RouteAnalysisCompletionResultCode;exports.RouteAnalysisStatus = RouteAnalysisStatus;exports.RouteState = RouteState;exports.RouteTableType = RouteTableType;exports.RouteType = RouteType;exports.RoutingPolicyDirection = RoutingPolicyDirection;exports.SegmentActionServiceInsertion = SegmentActionServiceInsertion;exports.SendViaMode = SendViaMode;exports.SiteState = SiteState;exports.StartOrganizationServiceAccessUpdateCommand = StartOrganizationServiceAccessUpdateCommand;exports.StartRouteAnalysisCommand = StartRouteAnalysisCommand;exports.TagResourceCommand = TagResourceCommand;exports.TransitGatewayConnectPeerAssociationState = TransitGatewayConnectPeerAssociationState;exports.TransitGatewayRegistrationState = TransitGatewayRegistrationState;exports.TunnelProtocol = TunnelProtocol;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateConnectionCommand = UpdateConnectionCommand;exports.UpdateCoreNetworkCommand = UpdateCoreNetworkCommand;exports.UpdateDeviceCommand = UpdateDeviceCommand;exports.UpdateDirectConnectGatewayAttachmentCommand = UpdateDirectConnectGatewayAttachmentCommand;exports.UpdateGlobalNetworkCommand = UpdateGlobalNetworkCommand;exports.UpdateLinkCommand = UpdateLinkCommand;exports.UpdateNetworkResourceMetadataCommand = UpdateNetworkResourceMetadataCommand;exports.UpdateSiteCommand = UpdateSiteCommand;exports.UpdateVpcAttachmentCommand = UpdateVpcAttachmentCommand;exports.ValidationExceptionReason = ValidationExceptionReason;exports.paginateDescribeGlobalNetworks = paginateDescribeGlobalNetworks;exports.paginateGetConnectPeerAssociations = paginateGetConnectPeerAssociations;exports.paginateGetConnections = paginateGetConnections;exports.paginateGetCoreNetworkChangeEvents = paginateGetCoreNetworkChangeEvents;exports.paginateGetCoreNetworkChangeSet = paginateGetCoreNetworkChangeSet;exports.paginateGetCustomerGatewayAssociations = paginateGetCustomerGatewayAssociations;exports.paginateGetDevices = paginateGetDevices;exports.paginateGetLinkAssociations = paginateGetLinkAssociations;exports.paginateGetLinks = paginateGetLinks;exports.paginateGetNetworkResourceCounts = paginateGetNetworkResourceCounts;exports.paginateGetNetworkResourceRelationships = paginateGetNetworkResourceRelationships;exports.paginateGetNetworkResources = paginateGetNetworkResources;exports.paginateGetNetworkTelemetry = paginateGetNetworkTelemetry;exports.paginateGetSites = paginateGetSites;exports.paginateGetTransitGatewayConnectPeerAssociations = paginateGetTransitGatewayConnectPeerAssociations;exports.paginateGetTransitGatewayRegistrations = paginateGetTransitGatewayRegistrations;exports.paginateListAttachmentRoutingPolicyAssociations = paginateListAttachmentRoutingPolicyAssociations;exports.paginateListAttachments = paginateListAttachments;exports.paginateListConnectPeers = paginateListConnectPeers;exports.paginateListCoreNetworkPolicyVersions = paginateListCoreNetworkPolicyVersions;exports.paginateListCoreNetworkPrefixListAssociations = paginateListCoreNetworkPrefixListAssociations;exports.paginateListCoreNetworkRoutingInformation = paginateListCoreNetworkRoutingInformation;exports.paginateListCoreNetworks = paginateListCoreNetworks;exports.paginateListPeerings = paginateListPeerings;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];});