File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-drs/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.js49.2 KB · 1240 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 DrsServiceException = require('./models/DrsServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "drs",    });};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 DrsClient 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.defaultDrsHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class AssociateSourceNetworkStackCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "AssociateSourceNetworkStack", {})    .n("DrsClient", "AssociateSourceNetworkStackCommand")    .sc(schemas_0.AssociateSourceNetworkStack$)    .build() {} class CreateExtendedSourceServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "CreateExtendedSourceServer", {})    .n("DrsClient", "CreateExtendedSourceServerCommand")    .sc(schemas_0.CreateExtendedSourceServer$)    .build() {} class CreateLaunchConfigurationTemplateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "CreateLaunchConfigurationTemplate", {})    .n("DrsClient", "CreateLaunchConfigurationTemplateCommand")    .sc(schemas_0.CreateLaunchConfigurationTemplate$)    .build() {} class CreateReplicationConfigurationTemplateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "CreateReplicationConfigurationTemplate", {})    .n("DrsClient", "CreateReplicationConfigurationTemplateCommand")    .sc(schemas_0.CreateReplicationConfigurationTemplate$)    .build() {} class CreateSourceNetworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "CreateSourceNetwork", {})    .n("DrsClient", "CreateSourceNetworkCommand")    .sc(schemas_0.CreateSourceNetwork$)    .build() {} class DeleteJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DeleteJob", {})    .n("DrsClient", "DeleteJobCommand")    .sc(schemas_0.DeleteJob$)    .build() {} class DeleteLaunchActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DeleteLaunchAction", {})    .n("DrsClient", "DeleteLaunchActionCommand")    .sc(schemas_0.DeleteLaunchAction$)    .build() {} class DeleteLaunchConfigurationTemplateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DeleteLaunchConfigurationTemplate", {})    .n("DrsClient", "DeleteLaunchConfigurationTemplateCommand")    .sc(schemas_0.DeleteLaunchConfigurationTemplate$)    .build() {} class DeleteRecoveryInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DeleteRecoveryInstance", {})    .n("DrsClient", "DeleteRecoveryInstanceCommand")    .sc(schemas_0.DeleteRecoveryInstance$)    .build() {} class DeleteReplicationConfigurationTemplateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DeleteReplicationConfigurationTemplate", {})    .n("DrsClient", "DeleteReplicationConfigurationTemplateCommand")    .sc(schemas_0.DeleteReplicationConfigurationTemplate$)    .build() {} class DeleteSourceNetworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DeleteSourceNetwork", {})    .n("DrsClient", "DeleteSourceNetworkCommand")    .sc(schemas_0.DeleteSourceNetwork$)    .build() {} class DeleteSourceServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DeleteSourceServer", {})    .n("DrsClient", "DeleteSourceServerCommand")    .sc(schemas_0.DeleteSourceServer$)    .build() {} class DescribeJobLogItemsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DescribeJobLogItems", {})    .n("DrsClient", "DescribeJobLogItemsCommand")    .sc(schemas_0.DescribeJobLogItems$)    .build() {} class DescribeJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DescribeJobs", {})    .n("DrsClient", "DescribeJobsCommand")    .sc(schemas_0.DescribeJobs$)    .build() {} class DescribeLaunchConfigurationTemplatesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DescribeLaunchConfigurationTemplates", {})    .n("DrsClient", "DescribeLaunchConfigurationTemplatesCommand")    .sc(schemas_0.DescribeLaunchConfigurationTemplates$)    .build() {} class DescribeRecoveryInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DescribeRecoveryInstances", {})    .n("DrsClient", "DescribeRecoveryInstancesCommand")    .sc(schemas_0.DescribeRecoveryInstances$)    .build() {} class DescribeRecoverySnapshotsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DescribeRecoverySnapshots", {})    .n("DrsClient", "DescribeRecoverySnapshotsCommand")    .sc(schemas_0.DescribeRecoverySnapshots$)    .build() {} class DescribeReplicationConfigurationTemplatesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DescribeReplicationConfigurationTemplates", {})    .n("DrsClient", "DescribeReplicationConfigurationTemplatesCommand")    .sc(schemas_0.DescribeReplicationConfigurationTemplates$)    .build() {} class DescribeSourceNetworksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DescribeSourceNetworks", {})    .n("DrsClient", "DescribeSourceNetworksCommand")    .sc(schemas_0.DescribeSourceNetworks$)    .build() {} class DescribeSourceServersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DescribeSourceServers", {})    .n("DrsClient", "DescribeSourceServersCommand")    .sc(schemas_0.DescribeSourceServers$)    .build() {} class DisconnectRecoveryInstanceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DisconnectRecoveryInstance", {})    .n("DrsClient", "DisconnectRecoveryInstanceCommand")    .sc(schemas_0.DisconnectRecoveryInstance$)    .build() {} class DisconnectSourceServerCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "DisconnectSourceServer", {})    .n("DrsClient", "DisconnectSourceServerCommand")    .sc(schemas_0.DisconnectSourceServer$)    .build() {} class ExportSourceNetworkCfnTemplateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "ExportSourceNetworkCfnTemplate", {})    .n("DrsClient", "ExportSourceNetworkCfnTemplateCommand")    .sc(schemas_0.ExportSourceNetworkCfnTemplate$)    .build() {} class GetFailbackReplicationConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "GetFailbackReplicationConfiguration", {})    .n("DrsClient", "GetFailbackReplicationConfigurationCommand")    .sc(schemas_0.GetFailbackReplicationConfiguration$)    .build() {} class GetLaunchConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "GetLaunchConfiguration", {})    .n("DrsClient", "GetLaunchConfigurationCommand")    .sc(schemas_0.GetLaunchConfiguration$)    .build() {} class GetReplicationConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "GetReplicationConfiguration", {})    .n("DrsClient", "GetReplicationConfigurationCommand")    .sc(schemas_0.GetReplicationConfiguration$)    .build() {} class InitializeServiceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "InitializeService", {})    .n("DrsClient", "InitializeServiceCommand")    .sc(schemas_0.InitializeService$)    .build() {} class ListExtensibleSourceServersCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "ListExtensibleSourceServers", {})    .n("DrsClient", "ListExtensibleSourceServersCommand")    .sc(schemas_0.ListExtensibleSourceServers$)    .build() {} class ListLaunchActionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "ListLaunchActions", {})    .n("DrsClient", "ListLaunchActionsCommand")    .sc(schemas_0.ListLaunchActions$)    .build() {} class ListStagingAccountsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "ListStagingAccounts", {})    .n("DrsClient", "ListStagingAccountsCommand")    .sc(schemas_0.ListStagingAccounts$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "ListTagsForResource", {})    .n("DrsClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class PutLaunchActionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "PutLaunchAction", {})    .n("DrsClient", "PutLaunchActionCommand")    .sc(schemas_0.PutLaunchAction$)    .build() {} class RetryDataReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "RetryDataReplication", {})    .n("DrsClient", "RetryDataReplicationCommand")    .sc(schemas_0.RetryDataReplication$)    .build() {} class ReverseReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "ReverseReplication", {})    .n("DrsClient", "ReverseReplicationCommand")    .sc(schemas_0.ReverseReplication$)    .build() {} class StartFailbackLaunchCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "StartFailbackLaunch", {})    .n("DrsClient", "StartFailbackLaunchCommand")    .sc(schemas_0.StartFailbackLaunch$)    .build() {} class StartRecoveryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "StartRecovery", {})    .n("DrsClient", "StartRecoveryCommand")    .sc(schemas_0.StartRecovery$)    .build() {} class StartReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "StartReplication", {})    .n("DrsClient", "StartReplicationCommand")    .sc(schemas_0.StartReplication$)    .build() {} class StartSourceNetworkRecoveryCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "StartSourceNetworkRecovery", {})    .n("DrsClient", "StartSourceNetworkRecoveryCommand")    .sc(schemas_0.StartSourceNetworkRecovery$)    .build() {} class StartSourceNetworkReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "StartSourceNetworkReplication", {})    .n("DrsClient", "StartSourceNetworkReplicationCommand")    .sc(schemas_0.StartSourceNetworkReplication$)    .build() {} class StopFailbackCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "StopFailback", {})    .n("DrsClient", "StopFailbackCommand")    .sc(schemas_0.StopFailback$)    .build() {} class StopReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "StopReplication", {})    .n("DrsClient", "StopReplicationCommand")    .sc(schemas_0.StopReplication$)    .build() {} class StopSourceNetworkReplicationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "StopSourceNetworkReplication", {})    .n("DrsClient", "StopSourceNetworkReplicationCommand")    .sc(schemas_0.StopSourceNetworkReplication$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "TagResource", {})    .n("DrsClient", "TagResourceCommand")    .sc(schemas_0.TagResource$)    .build() {} class TerminateRecoveryInstancesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "TerminateRecoveryInstances", {})    .n("DrsClient", "TerminateRecoveryInstancesCommand")    .sc(schemas_0.TerminateRecoveryInstances$)    .build() {} class UntagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "UntagResource", {})    .n("DrsClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateFailbackReplicationConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "UpdateFailbackReplicationConfiguration", {})    .n("DrsClient", "UpdateFailbackReplicationConfigurationCommand")    .sc(schemas_0.UpdateFailbackReplicationConfiguration$)    .build() {} class UpdateLaunchConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "UpdateLaunchConfiguration", {})    .n("DrsClient", "UpdateLaunchConfigurationCommand")    .sc(schemas_0.UpdateLaunchConfiguration$)    .build() {} class UpdateLaunchConfigurationTemplateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "UpdateLaunchConfigurationTemplate", {})    .n("DrsClient", "UpdateLaunchConfigurationTemplateCommand")    .sc(schemas_0.UpdateLaunchConfigurationTemplate$)    .build() {} class UpdateReplicationConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "UpdateReplicationConfiguration", {})    .n("DrsClient", "UpdateReplicationConfigurationCommand")    .sc(schemas_0.UpdateReplicationConfiguration$)    .build() {} class UpdateReplicationConfigurationTemplateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("ElasticDisasterRecoveryService", "UpdateReplicationConfigurationTemplate", {})    .n("DrsClient", "UpdateReplicationConfigurationTemplateCommand")    .sc(schemas_0.UpdateReplicationConfigurationTemplate$)    .build() {} const paginateDescribeJobLogItems = core.createPaginator(DrsClient, DescribeJobLogItemsCommand, "nextToken", "nextToken", "maxResults"); const paginateDescribeJobs = core.createPaginator(DrsClient, DescribeJobsCommand, "nextToken", "nextToken", "maxResults"); const paginateDescribeLaunchConfigurationTemplates = core.createPaginator(DrsClient, DescribeLaunchConfigurationTemplatesCommand, "nextToken", "nextToken", "maxResults"); const paginateDescribeRecoveryInstances = core.createPaginator(DrsClient, DescribeRecoveryInstancesCommand, "nextToken", "nextToken", "maxResults"); const paginateDescribeRecoverySnapshots = core.createPaginator(DrsClient, DescribeRecoverySnapshotsCommand, "nextToken", "nextToken", "maxResults"); const paginateDescribeReplicationConfigurationTemplates = core.createPaginator(DrsClient, DescribeReplicationConfigurationTemplatesCommand, "nextToken", "nextToken", "maxResults"); const paginateDescribeSourceNetworks = core.createPaginator(DrsClient, DescribeSourceNetworksCommand, "nextToken", "nextToken", "maxResults"); const paginateDescribeSourceServers = core.createPaginator(DrsClient, DescribeSourceServersCommand, "nextToken", "nextToken", "maxResults"); const paginateListExtensibleSourceServers = core.createPaginator(DrsClient, ListExtensibleSourceServersCommand, "nextToken", "nextToken", "maxResults"); const paginateListLaunchActions = core.createPaginator(DrsClient, ListLaunchActionsCommand, "nextToken", "nextToken", "maxResults"); const paginateListStagingAccounts = core.createPaginator(DrsClient, ListStagingAccountsCommand, "nextToken", "nextToken", "maxResults"); const commands = {    AssociateSourceNetworkStackCommand,    CreateExtendedSourceServerCommand,    CreateLaunchConfigurationTemplateCommand,    CreateReplicationConfigurationTemplateCommand,    CreateSourceNetworkCommand,    DeleteJobCommand,    DeleteLaunchActionCommand,    DeleteLaunchConfigurationTemplateCommand,    DeleteRecoveryInstanceCommand,    DeleteReplicationConfigurationTemplateCommand,    DeleteSourceNetworkCommand,    DeleteSourceServerCommand,    DescribeJobLogItemsCommand,    DescribeJobsCommand,    DescribeLaunchConfigurationTemplatesCommand,    DescribeRecoveryInstancesCommand,    DescribeRecoverySnapshotsCommand,    DescribeReplicationConfigurationTemplatesCommand,    DescribeSourceNetworksCommand,    DescribeSourceServersCommand,    DisconnectRecoveryInstanceCommand,    DisconnectSourceServerCommand,    ExportSourceNetworkCfnTemplateCommand,    GetFailbackReplicationConfigurationCommand,    GetLaunchConfigurationCommand,    GetReplicationConfigurationCommand,    InitializeServiceCommand,    ListExtensibleSourceServersCommand,    ListLaunchActionsCommand,    ListStagingAccountsCommand,    ListTagsForResourceCommand,    PutLaunchActionCommand,    RetryDataReplicationCommand,    ReverseReplicationCommand,    StartFailbackLaunchCommand,    StartRecoveryCommand,    StartReplicationCommand,    StartSourceNetworkRecoveryCommand,    StartSourceNetworkReplicationCommand,    StopFailbackCommand,    StopReplicationCommand,    StopSourceNetworkReplicationCommand,    TagResourceCommand,    TerminateRecoveryInstancesCommand,    UntagResourceCommand,    UpdateFailbackReplicationConfigurationCommand,    UpdateLaunchConfigurationCommand,    UpdateLaunchConfigurationTemplateCommand,    UpdateReplicationConfigurationCommand,    UpdateReplicationConfigurationTemplateCommand,};const paginators = {    paginateDescribeJobLogItems,    paginateDescribeJobs,    paginateDescribeLaunchConfigurationTemplates,    paginateDescribeRecoveryInstances,    paginateDescribeRecoverySnapshots,    paginateDescribeReplicationConfigurationTemplates,    paginateDescribeSourceNetworks,    paginateDescribeSourceServers,    paginateListExtensibleSourceServers,    paginateListLaunchActions,    paginateListStagingAccounts,};class Drs extends DrsClient {}client.createAggregatedClient(commands, Drs, { paginators }); const InitiatedBy = {    ASSOCIATE_NETWORK_RECOVERY: "ASSOCIATE_NETWORK_RECOVERY",    CREATE_NETWORK_RECOVERY: "CREATE_NETWORK_RECOVERY",    DIAGNOSTIC: "DIAGNOSTIC",    FAILBACK: "FAILBACK",    START_DRILL: "START_DRILL",    START_RECOVERY: "START_RECOVERY",    TARGET_ACCOUNT: "TARGET_ACCOUNT",    TERMINATE_RECOVERY_INSTANCES: "TERMINATE_RECOVERY_INSTANCES",    UPDATE_NETWORK_RECOVERY: "UPDATE_NETWORK_RECOVERY",};const LaunchStatus = {    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    LAUNCHED: "LAUNCHED",    PENDING: "PENDING",    TERMINATED: "TERMINATED",};const LaunchActionCategory = {    CONFIGURATION: "CONFIGURATION",    MONITORING: "MONITORING",    OTHER: "OTHER",    SECURITY: "SECURITY",    VALIDATION: "VALIDATION",};const LaunchActionParameterType = {    DYNAMIC: "DYNAMIC",    SSM_STORE: "SSM_STORE",};const LaunchActionType = {    SSM_AUTOMATION: "SSM_AUTOMATION",    SSM_COMMAND: "SSM_COMMAND",};const LaunchActionRunStatus = {    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    SUCCEEDED: "SUCCEEDED",};const JobStatus = {    COMPLETED: "COMPLETED",    PENDING: "PENDING",    STARTED: "STARTED",};const JobType = {    CREATE_CONVERTED_SNAPSHOT: "CREATE_CONVERTED_SNAPSHOT",    LAUNCH: "LAUNCH",    TERMINATE: "TERMINATE",};const ValidationExceptionReason = {    CANNOT_PARSE: "cannotParse",    FIELD_VALIDATION_FAILED: "fieldValidationFailed",    OTHER: "other",    UNKNOWN_OPERATION: "unknownOperation",};const ProductCodeMode = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",};const DataReplicationErrorString = {    AGENT_NOT_SEEN: "AGENT_NOT_SEEN",    FAILED_TO_ATTACH_STAGING_DISKS: "FAILED_TO_ATTACH_STAGING_DISKS",    FAILED_TO_AUTHENTICATE_WITH_SERVICE: "FAILED_TO_AUTHENTICATE_WITH_SERVICE",    FAILED_TO_BOOT_REPLICATION_SERVER: "FAILED_TO_BOOT_REPLICATION_SERVER",    FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER: "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER",    FAILED_TO_CREATE_SECURITY_GROUP: "FAILED_TO_CREATE_SECURITY_GROUP",    FAILED_TO_CREATE_STAGING_DISKS: "FAILED_TO_CREATE_STAGING_DISKS",    FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE: "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE",    FAILED_TO_LAUNCH_REPLICATION_SERVER: "FAILED_TO_LAUNCH_REPLICATION_SERVER",    FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT: "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT",    FAILED_TO_START_DATA_TRANSFER: "FAILED_TO_START_DATA_TRANSFER",    NOT_CONVERGING: "NOT_CONVERGING",    SNAPSHOTS_FAILURE: "SNAPSHOTS_FAILURE",    UNSTABLE_NETWORK: "UNSTABLE_NETWORK",};const DataReplicationInitiationStepName = {    ATTACH_STAGING_DISKS: "ATTACH_STAGING_DISKS",    AUTHENTICATE_WITH_SERVICE: "AUTHENTICATE_WITH_SERVICE",    BOOT_REPLICATION_SERVER: "BOOT_REPLICATION_SERVER",    CONNECT_AGENT_TO_REPLICATION_SERVER: "CONNECT_AGENT_TO_REPLICATION_SERVER",    CREATE_SECURITY_GROUP: "CREATE_SECURITY_GROUP",    CREATE_STAGING_DISKS: "CREATE_STAGING_DISKS",    DOWNLOAD_REPLICATION_SOFTWARE: "DOWNLOAD_REPLICATION_SOFTWARE",    LAUNCH_REPLICATION_SERVER: "LAUNCH_REPLICATION_SERVER",    PAIR_REPLICATION_SERVER_WITH_AGENT: "PAIR_REPLICATION_SERVER_WITH_AGENT",    START_DATA_TRANSFER: "START_DATA_TRANSFER",    WAIT: "WAIT",};const DataReplicationInitiationStepStatus = {    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    NOT_STARTED: "NOT_STARTED",    SKIPPED: "SKIPPED",    SUCCEEDED: "SUCCEEDED",};const DataReplicationState = {    BACKLOG: "BACKLOG",    CONTINUOUS: "CONTINUOUS",    CREATING_SNAPSHOT: "CREATING_SNAPSHOT",    DISCONNECTED: "DISCONNECTED",    INITIAL_SYNC: "INITIAL_SYNC",    INITIATING: "INITIATING",    PAUSED: "PAUSED",    RESCAN: "RESCAN",    STALLED: "STALLED",    STOPPED: "STOPPED",};const VolumeStatus = {    CONTAINS_MARKETPLACE_PRODUCT_CODES: "CONTAINS_MARKETPLACE_PRODUCT_CODES",    MISSING_VOLUME_ATTRIBUTES: "MISSING_VOLUME_ATTRIBUTES",    MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE: "MISSING_VOLUME_ATTRIBUTES_AND_PRECHECK_UNAVAILABLE",    PENDING: "PENDING",    REGULAR: "REGULAR",};const LastLaunchResult = {    FAILED: "FAILED",    NOT_STARTED: "NOT_STARTED",    PENDING: "PENDING",    SUCCEEDED: "SUCCEEDED",};const LastLaunchType = {    DRILL: "DRILL",    RECOVERY: "RECOVERY",};const ReplicationDirection = {    FAILBACK: "FAILBACK",    FAILOVER: "FAILOVER",};const ExtensionStatus = {    EXTENDED: "EXTENDED",    EXTENSION_ERROR: "EXTENSION_ERROR",    NOT_EXTENDED: "NOT_EXTENDED",};const LaunchDisposition = {    STARTED: "STARTED",    STOPPED: "STOPPED",};const TargetInstanceTypeRightSizingMethod = {    BASIC: "BASIC",    IN_AWS: "IN_AWS",    NONE: "NONE",};const ReplicationConfigurationDataPlaneRouting = {    PRIVATE_IP: "PRIVATE_IP",    PUBLIC_IP: "PUBLIC_IP",};const ReplicationConfigurationDefaultLargeStagingDiskType = {    AUTO: "AUTO",    GP2: "GP2",    GP3: "GP3",    ST1: "ST1",};const ReplicationConfigurationEbsEncryption = {    CUSTOM: "CUSTOM",    DEFAULT: "DEFAULT",    NONE: "NONE",};const InternetProtocol = {    IPV4: "IPV4",    IPV6: "IPV6",};const PITPolicyRuleUnits = {    DAY: "DAY",    HOUR: "HOUR",    MINUTE: "MINUTE",};const JobLogEvent = {    CLEANUP_END: "CLEANUP_END",    CLEANUP_FAIL: "CLEANUP_FAIL",    CLEANUP_START: "CLEANUP_START",    CONVERSION_END: "CONVERSION_END",    CONVERSION_FAIL: "CONVERSION_FAIL",    CONVERSION_START: "CONVERSION_START",    DEPLOY_NETWORK_CONFIGURATION_END: "DEPLOY_NETWORK_CONFIGURATION_END",    DEPLOY_NETWORK_CONFIGURATION_FAILED: "DEPLOY_NETWORK_CONFIGURATION_FAILED",    DEPLOY_NETWORK_CONFIGURATION_START: "DEPLOY_NETWORK_CONFIGURATION_START",    JOB_CANCEL: "JOB_CANCEL",    JOB_END: "JOB_END",    JOB_START: "JOB_START",    LAUNCH_FAILED: "LAUNCH_FAILED",    LAUNCH_START: "LAUNCH_START",    NETWORK_RECOVERY_FAIL: "NETWORK_RECOVERY_FAIL",    SERVER_SKIPPED: "SERVER_SKIPPED",    SNAPSHOT_END: "SNAPSHOT_END",    SNAPSHOT_FAIL: "SNAPSHOT_FAIL",    SNAPSHOT_START: "SNAPSHOT_START",    UPDATE_LAUNCH_TEMPLATE_END: "UPDATE_LAUNCH_TEMPLATE_END",    UPDATE_LAUNCH_TEMPLATE_FAILED: "UPDATE_LAUNCH_TEMPLATE_FAILED",    UPDATE_LAUNCH_TEMPLATE_START: "UPDATE_LAUNCH_TEMPLATE_START",    UPDATE_NETWORK_CONFIGURATION_END: "UPDATE_NETWORK_CONFIGURATION_END",    UPDATE_NETWORK_CONFIGURATION_FAILED: "UPDATE_NETWORK_CONFIGURATION_FAILED",    UPDATE_NETWORK_CONFIGURATION_START: "UPDATE_NETWORK_CONFIGURATION_START",    USING_PREVIOUS_SNAPSHOT: "USING_PREVIOUS_SNAPSHOT",    USING_PREVIOUS_SNAPSHOT_FAILED: "USING_PREVIOUS_SNAPSHOT_FAILED",};const FailbackReplicationError = {    AGENT_NOT_SEEN: "AGENT_NOT_SEEN",    FAILBACK_CLIENT_NOT_SEEN: "FAILBACK_CLIENT_NOT_SEEN",    FAILED_GETTING_REPLICATION_STATE: "FAILED_GETTING_REPLICATION_STATE",    FAILED_TO_ATTACH_STAGING_DISKS: "FAILED_TO_ATTACH_STAGING_DISKS",    FAILED_TO_AUTHENTICATE_WITH_SERVICE: "FAILED_TO_AUTHENTICATE_WITH_SERVICE",    FAILED_TO_BOOT_REPLICATION_SERVER: "FAILED_TO_BOOT_REPLICATION_SERVER",    FAILED_TO_CONFIGURE_REPLICATION_SOFTWARE: "FAILED_TO_CONFIGURE_REPLICATION_SOFTWARE",    FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER: "FAILED_TO_CONNECT_AGENT_TO_REPLICATION_SERVER",    FAILED_TO_CREATE_SECURITY_GROUP: "FAILED_TO_CREATE_SECURITY_GROUP",    FAILED_TO_CREATE_STAGING_DISKS: "FAILED_TO_CREATE_STAGING_DISKS",    FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE: "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE",    FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT: "FAILED_TO_DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT",    FAILED_TO_ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION: "FAILED_TO_ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION",    FAILED_TO_ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION: "FAILED_TO_ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION",    FAILED_TO_LAUNCH_REPLICATION_SERVER: "FAILED_TO_LAUNCH_REPLICATION_SERVER",    FAILED_TO_PAIR_AGENT_WITH_REPLICATION_SOFTWARE: "FAILED_TO_PAIR_AGENT_WITH_REPLICATION_SOFTWARE",    FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT: "FAILED_TO_PAIR_REPLICATION_SERVER_WITH_AGENT",    FAILED_TO_START_DATA_TRANSFER: "FAILED_TO_START_DATA_TRANSFER",    NOT_CONVERGING: "NOT_CONVERGING",    SNAPSHOTS_FAILURE: "SNAPSHOTS_FAILURE",    UNSTABLE_NETWORK: "UNSTABLE_NETWORK",};const RecoveryInstanceDataReplicationInitiationStepName = {    ATTACH_STAGING_DISKS: "ATTACH_STAGING_DISKS",    AUTHENTICATE_WITH_SERVICE: "AUTHENTICATE_WITH_SERVICE",    BOOT_REPLICATION_SERVER: "BOOT_REPLICATION_SERVER",    COMPLETE_VOLUME_MAPPING: "COMPLETE_VOLUME_MAPPING",    CONFIGURE_REPLICATION_SOFTWARE: "CONFIGURE_REPLICATION_SOFTWARE",    CONNECT_AGENT_TO_REPLICATION_SERVER: "CONNECT_AGENT_TO_REPLICATION_SERVER",    CREATE_SECURITY_GROUP: "CREATE_SECURITY_GROUP",    CREATE_STAGING_DISKS: "CREATE_STAGING_DISKS",    DOWNLOAD_REPLICATION_SOFTWARE: "DOWNLOAD_REPLICATION_SOFTWARE",    DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT: "DOWNLOAD_REPLICATION_SOFTWARE_TO_FAILBACK_CLIENT",    ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION: "ESTABLISH_AGENT_REPLICATOR_SOFTWARE_COMMUNICATION",    ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION: "ESTABLISH_RECOVERY_INSTANCE_COMMUNICATION",    LAUNCH_REPLICATION_SERVER: "LAUNCH_REPLICATION_SERVER",    LINK_FAILBACK_CLIENT_WITH_RECOVERY_INSTANCE: "LINK_FAILBACK_CLIENT_WITH_RECOVERY_INSTANCE",    PAIR_AGENT_WITH_REPLICATION_SOFTWARE: "PAIR_AGENT_WITH_REPLICATION_SOFTWARE",    PAIR_REPLICATION_SERVER_WITH_AGENT: "PAIR_REPLICATION_SERVER_WITH_AGENT",    START_DATA_TRANSFER: "START_DATA_TRANSFER",    WAIT: "WAIT",};const RecoveryInstanceDataReplicationInitiationStepStatus = {    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",    NOT_STARTED: "NOT_STARTED",    SKIPPED: "SKIPPED",    SUCCEEDED: "SUCCEEDED",};const RecoveryInstanceDataReplicationState = {    BACKLOG: "BACKLOG",    CONTINUOUS: "CONTINUOUS",    CREATING_SNAPSHOT: "CREATING_SNAPSHOT",    DISCONNECTED: "DISCONNECTED",    INITIAL_SYNC: "INITIAL_SYNC",    INITIATING: "INITIATING",    NOT_STARTED: "NOT_STARTED",    PAUSED: "PAUSED",    REPLICATION_STATE_NOT_AVAILABLE: "REPLICATION_STATE_NOT_AVAILABLE",    RESCAN: "RESCAN",    STALLED: "STALLED",    STOPPED: "STOPPED",};const EC2InstanceState = {    NOT_FOUND: "NOT_FOUND",    PENDING: "PENDING",    RUNNING: "RUNNING",    SHUTTING_DOWN: "SHUTTING-DOWN",    STOPPED: "STOPPED",    STOPPING: "STOPPING",    TERMINATED: "TERMINATED",};const FailbackLaunchType = {    DRILL: "DRILL",    RECOVERY: "RECOVERY",};const FailbackState = {    FAILBACK_COMPLETED: "FAILBACK_COMPLETED",    FAILBACK_ERROR: "FAILBACK_ERROR",    FAILBACK_IN_PROGRESS: "FAILBACK_IN_PROGRESS",    FAILBACK_LAUNCH_STATE_NOT_AVAILABLE: "FAILBACK_LAUNCH_STATE_NOT_AVAILABLE",    FAILBACK_NOT_READY_FOR_LAUNCH: "FAILBACK_NOT_READY_FOR_LAUNCH",    FAILBACK_NOT_STARTED: "FAILBACK_NOT_STARTED",    FAILBACK_READY_FOR_LAUNCH: "FAILBACK_READY_FOR_LAUNCH",};const OriginEnvironment = {    AWS: "AWS",    ON_PREMISES: "ON_PREMISES",};const RecoverySnapshotsOrder = {    ASC: "ASC",    DESC: "DESC",};const RecoveryResult = {    ASSOCIATE_FAIL: "ASSOCIATE_FAIL",    ASSOCIATE_SUCCESS: "ASSOCIATE_SUCCESS",    FAIL: "FAIL",    IN_PROGRESS: "IN_PROGRESS",    NOT_STARTED: "NOT_STARTED",    PARTIAL_SUCCESS: "PARTIAL_SUCCESS",    SUCCESS: "SUCCESS",};const ReplicationStatus = {    ERROR: "ERROR",    IN_PROGRESS: "IN_PROGRESS",    PROTECTED: "PROTECTED",    STOPPED: "STOPPED",};const ReplicationConfigurationReplicatedDiskStagingDiskType = {    AUTO: "AUTO",    GP2: "GP2",    GP3: "GP3",    IO1: "IO1",    SC1: "SC1",    ST1: "ST1",    STANDARD: "STANDARD",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.DrsServiceException = DrsServiceException.DrsServiceException;exports.AssociateSourceNetworkStackCommand = AssociateSourceNetworkStackCommand;exports.CreateExtendedSourceServerCommand = CreateExtendedSourceServerCommand;exports.CreateLaunchConfigurationTemplateCommand = CreateLaunchConfigurationTemplateCommand;exports.CreateReplicationConfigurationTemplateCommand = CreateReplicationConfigurationTemplateCommand;exports.CreateSourceNetworkCommand = CreateSourceNetworkCommand;exports.DataReplicationErrorString = DataReplicationErrorString;exports.DataReplicationInitiationStepName = DataReplicationInitiationStepName;exports.DataReplicationInitiationStepStatus = DataReplicationInitiationStepStatus;exports.DataReplicationState = DataReplicationState;exports.DeleteJobCommand = DeleteJobCommand;exports.DeleteLaunchActionCommand = DeleteLaunchActionCommand;exports.DeleteLaunchConfigurationTemplateCommand = DeleteLaunchConfigurationTemplateCommand;exports.DeleteRecoveryInstanceCommand = DeleteRecoveryInstanceCommand;exports.DeleteReplicationConfigurationTemplateCommand = DeleteReplicationConfigurationTemplateCommand;exports.DeleteSourceNetworkCommand = DeleteSourceNetworkCommand;exports.DeleteSourceServerCommand = DeleteSourceServerCommand;exports.DescribeJobLogItemsCommand = DescribeJobLogItemsCommand;exports.DescribeJobsCommand = DescribeJobsCommand;exports.DescribeLaunchConfigurationTemplatesCommand = DescribeLaunchConfigurationTemplatesCommand;exports.DescribeRecoveryInstancesCommand = DescribeRecoveryInstancesCommand;exports.DescribeRecoverySnapshotsCommand = DescribeRecoverySnapshotsCommand;exports.DescribeReplicationConfigurationTemplatesCommand = DescribeReplicationConfigurationTemplatesCommand;exports.DescribeSourceNetworksCommand = DescribeSourceNetworksCommand;exports.DescribeSourceServersCommand = DescribeSourceServersCommand;exports.DisconnectRecoveryInstanceCommand = DisconnectRecoveryInstanceCommand;exports.DisconnectSourceServerCommand = DisconnectSourceServerCommand;exports.Drs = Drs;exports.DrsClient = DrsClient;exports.EC2InstanceState = EC2InstanceState;exports.ExportSourceNetworkCfnTemplateCommand = ExportSourceNetworkCfnTemplateCommand;exports.ExtensionStatus = ExtensionStatus;exports.FailbackLaunchType = FailbackLaunchType;exports.FailbackReplicationError = FailbackReplicationError;exports.FailbackState = FailbackState;exports.GetFailbackReplicationConfigurationCommand = GetFailbackReplicationConfigurationCommand;exports.GetLaunchConfigurationCommand = GetLaunchConfigurationCommand;exports.GetReplicationConfigurationCommand = GetReplicationConfigurationCommand;exports.InitializeServiceCommand = InitializeServiceCommand;exports.InitiatedBy = InitiatedBy;exports.InternetProtocol = InternetProtocol;exports.JobLogEvent = JobLogEvent;exports.JobStatus = JobStatus;exports.JobType = JobType;exports.LastLaunchResult = LastLaunchResult;exports.LastLaunchType = LastLaunchType;exports.LaunchActionCategory = LaunchActionCategory;exports.LaunchActionParameterType = LaunchActionParameterType;exports.LaunchActionRunStatus = LaunchActionRunStatus;exports.LaunchActionType = LaunchActionType;exports.LaunchDisposition = LaunchDisposition;exports.LaunchStatus = LaunchStatus;exports.ListExtensibleSourceServersCommand = ListExtensibleSourceServersCommand;exports.ListLaunchActionsCommand = ListLaunchActionsCommand;exports.ListStagingAccountsCommand = ListStagingAccountsCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.OriginEnvironment = OriginEnvironment;exports.PITPolicyRuleUnits = PITPolicyRuleUnits;exports.ProductCodeMode = ProductCodeMode;exports.PutLaunchActionCommand = PutLaunchActionCommand;exports.RecoveryInstanceDataReplicationInitiationStepName = RecoveryInstanceDataReplicationInitiationStepName;exports.RecoveryInstanceDataReplicationInitiationStepStatus = RecoveryInstanceDataReplicationInitiationStepStatus;exports.RecoveryInstanceDataReplicationState = RecoveryInstanceDataReplicationState;exports.RecoveryResult = RecoveryResult;exports.RecoverySnapshotsOrder = RecoverySnapshotsOrder;exports.ReplicationConfigurationDataPlaneRouting = ReplicationConfigurationDataPlaneRouting;exports.ReplicationConfigurationDefaultLargeStagingDiskType = ReplicationConfigurationDefaultLargeStagingDiskType;exports.ReplicationConfigurationEbsEncryption = ReplicationConfigurationEbsEncryption;exports.ReplicationConfigurationReplicatedDiskStagingDiskType = ReplicationConfigurationReplicatedDiskStagingDiskType;exports.ReplicationDirection = ReplicationDirection;exports.ReplicationStatus = ReplicationStatus;exports.RetryDataReplicationCommand = RetryDataReplicationCommand;exports.ReverseReplicationCommand = ReverseReplicationCommand;exports.StartFailbackLaunchCommand = StartFailbackLaunchCommand;exports.StartRecoveryCommand = StartRecoveryCommand;exports.StartReplicationCommand = StartReplicationCommand;exports.StartSourceNetworkRecoveryCommand = StartSourceNetworkRecoveryCommand;exports.StartSourceNetworkReplicationCommand = StartSourceNetworkReplicationCommand;exports.StopFailbackCommand = StopFailbackCommand;exports.StopReplicationCommand = StopReplicationCommand;exports.StopSourceNetworkReplicationCommand = StopSourceNetworkReplicationCommand;exports.TagResourceCommand = TagResourceCommand;exports.TargetInstanceTypeRightSizingMethod = TargetInstanceTypeRightSizingMethod;exports.TerminateRecoveryInstancesCommand = TerminateRecoveryInstancesCommand;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateFailbackReplicationConfigurationCommand = UpdateFailbackReplicationConfigurationCommand;exports.UpdateLaunchConfigurationCommand = UpdateLaunchConfigurationCommand;exports.UpdateLaunchConfigurationTemplateCommand = UpdateLaunchConfigurationTemplateCommand;exports.UpdateReplicationConfigurationCommand = UpdateReplicationConfigurationCommand;exports.UpdateReplicationConfigurationTemplateCommand = UpdateReplicationConfigurationTemplateCommand;exports.ValidationExceptionReason = ValidationExceptionReason;exports.VolumeStatus = VolumeStatus;exports.paginateDescribeJobLogItems = paginateDescribeJobLogItems;exports.paginateDescribeJobs = paginateDescribeJobs;exports.paginateDescribeLaunchConfigurationTemplates = paginateDescribeLaunchConfigurationTemplates;exports.paginateDescribeRecoveryInstances = paginateDescribeRecoveryInstances;exports.paginateDescribeRecoverySnapshots = paginateDescribeRecoverySnapshots;exports.paginateDescribeReplicationConfigurationTemplates = paginateDescribeReplicationConfigurationTemplates;exports.paginateDescribeSourceNetworks = paginateDescribeSourceNetworks;exports.paginateDescribeSourceServers = paginateDescribeSourceServers;exports.paginateListExtensibleSourceServers = paginateListExtensibleSourceServers;exports.paginateListLaunchActions = paginateListLaunchActions;exports.paginateListStagingAccounts = paginateListStagingAccounts;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];});