File Explorer

/proc/self/root/proc/self/root/var/runtime/node_modules/@aws-sdk/client-backup/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.js76.2 KB · 2024 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 BackupServiceException = require('./models/BackupServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "backup",    });};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 BackupClient 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.defaultBackupHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class AssociateBackupVaultMpaApprovalTeamCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "AssociateBackupVaultMpaApprovalTeam", {})    .n("BackupClient", "AssociateBackupVaultMpaApprovalTeamCommand")    .sc(schemas_0.AssociateBackupVaultMpaApprovalTeam$)    .build() {} class CancelLegalHoldCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "CancelLegalHold", {})    .n("BackupClient", "CancelLegalHoldCommand")    .sc(schemas_0.CancelLegalHold$)    .build() {} class CreateBackupPlanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "CreateBackupPlan", {})    .n("BackupClient", "CreateBackupPlanCommand")    .sc(schemas_0.CreateBackupPlan$)    .build() {} class CreateBackupSelectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "CreateBackupSelection", {})    .n("BackupClient", "CreateBackupSelectionCommand")    .sc(schemas_0.CreateBackupSelection$)    .build() {} class CreateBackupVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "CreateBackupVault", {})    .n("BackupClient", "CreateBackupVaultCommand")    .sc(schemas_0.CreateBackupVault$)    .build() {} class CreateFrameworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "CreateFramework", {})    .n("BackupClient", "CreateFrameworkCommand")    .sc(schemas_0.CreateFramework$)    .build() {} class CreateLegalHoldCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "CreateLegalHold", {})    .n("BackupClient", "CreateLegalHoldCommand")    .sc(schemas_0.CreateLegalHold$)    .build() {} class CreateLogicallyAirGappedBackupVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "CreateLogicallyAirGappedBackupVault", {})    .n("BackupClient", "CreateLogicallyAirGappedBackupVaultCommand")    .sc(schemas_0.CreateLogicallyAirGappedBackupVault$)    .build() {} class CreateReportPlanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "CreateReportPlan", {})    .n("BackupClient", "CreateReportPlanCommand")    .sc(schemas_0.CreateReportPlan$)    .build() {} class CreateRestoreAccessBackupVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "CreateRestoreAccessBackupVault", {})    .n("BackupClient", "CreateRestoreAccessBackupVaultCommand")    .sc(schemas_0.CreateRestoreAccessBackupVault$)    .build() {} class CreateRestoreTestingPlanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "CreateRestoreTestingPlan", {})    .n("BackupClient", "CreateRestoreTestingPlanCommand")    .sc(schemas_0.CreateRestoreTestingPlan$)    .build() {} class CreateRestoreTestingSelectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "CreateRestoreTestingSelection", {})    .n("BackupClient", "CreateRestoreTestingSelectionCommand")    .sc(schemas_0.CreateRestoreTestingSelection$)    .build() {} class CreateTieringConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "CreateTieringConfiguration", {})    .n("BackupClient", "CreateTieringConfigurationCommand")    .sc(schemas_0.CreateTieringConfiguration$)    .build() {} class DeleteBackupPlanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DeleteBackupPlan", {})    .n("BackupClient", "DeleteBackupPlanCommand")    .sc(schemas_0.DeleteBackupPlan$)    .build() {} class DeleteBackupSelectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DeleteBackupSelection", {})    .n("BackupClient", "DeleteBackupSelectionCommand")    .sc(schemas_0.DeleteBackupSelection$)    .build() {} class DeleteBackupVaultAccessPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DeleteBackupVaultAccessPolicy", {})    .n("BackupClient", "DeleteBackupVaultAccessPolicyCommand")    .sc(schemas_0.DeleteBackupVaultAccessPolicy$)    .build() {} class DeleteBackupVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DeleteBackupVault", {})    .n("BackupClient", "DeleteBackupVaultCommand")    .sc(schemas_0.DeleteBackupVault$)    .build() {} class DeleteBackupVaultLockConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DeleteBackupVaultLockConfiguration", {})    .n("BackupClient", "DeleteBackupVaultLockConfigurationCommand")    .sc(schemas_0.DeleteBackupVaultLockConfiguration$)    .build() {} class DeleteBackupVaultNotificationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DeleteBackupVaultNotifications", {})    .n("BackupClient", "DeleteBackupVaultNotificationsCommand")    .sc(schemas_0.DeleteBackupVaultNotifications$)    .build() {} class DeleteFrameworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DeleteFramework", {})    .n("BackupClient", "DeleteFrameworkCommand")    .sc(schemas_0.DeleteFramework$)    .build() {} class DeleteRecoveryPointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DeleteRecoveryPoint", {})    .n("BackupClient", "DeleteRecoveryPointCommand")    .sc(schemas_0.DeleteRecoveryPoint$)    .build() {} class DeleteReportPlanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DeleteReportPlan", {})    .n("BackupClient", "DeleteReportPlanCommand")    .sc(schemas_0.DeleteReportPlan$)    .build() {} class DeleteRestoreTestingPlanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DeleteRestoreTestingPlan", {})    .n("BackupClient", "DeleteRestoreTestingPlanCommand")    .sc(schemas_0.DeleteRestoreTestingPlan$)    .build() {} class DeleteRestoreTestingSelectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DeleteRestoreTestingSelection", {})    .n("BackupClient", "DeleteRestoreTestingSelectionCommand")    .sc(schemas_0.DeleteRestoreTestingSelection$)    .build() {} class DeleteTieringConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DeleteTieringConfiguration", {})    .n("BackupClient", "DeleteTieringConfigurationCommand")    .sc(schemas_0.DeleteTieringConfiguration$)    .build() {} class DescribeBackupJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DescribeBackupJob", {})    .n("BackupClient", "DescribeBackupJobCommand")    .sc(schemas_0.DescribeBackupJob$)    .build() {} class DescribeBackupVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DescribeBackupVault", {})    .n("BackupClient", "DescribeBackupVaultCommand")    .sc(schemas_0.DescribeBackupVault$)    .build() {} class DescribeCopyJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DescribeCopyJob", {})    .n("BackupClient", "DescribeCopyJobCommand")    .sc(schemas_0.DescribeCopyJob$)    .build() {} class DescribeFrameworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DescribeFramework", {})    .n("BackupClient", "DescribeFrameworkCommand")    .sc(schemas_0.DescribeFramework$)    .build() {} class DescribeGlobalSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DescribeGlobalSettings", {})    .n("BackupClient", "DescribeGlobalSettingsCommand")    .sc(schemas_0.DescribeGlobalSettings$)    .build() {} class DescribeProtectedResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DescribeProtectedResource", {})    .n("BackupClient", "DescribeProtectedResourceCommand")    .sc(schemas_0.DescribeProtectedResource$)    .build() {} class DescribeRecoveryPointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DescribeRecoveryPoint", {})    .n("BackupClient", "DescribeRecoveryPointCommand")    .sc(schemas_0.DescribeRecoveryPoint$)    .build() {} class DescribeRegionSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DescribeRegionSettings", {})    .n("BackupClient", "DescribeRegionSettingsCommand")    .sc(schemas_0.DescribeRegionSettings$)    .build() {} class DescribeReportJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DescribeReportJob", {})    .n("BackupClient", "DescribeReportJobCommand")    .sc(schemas_0.DescribeReportJob$)    .build() {} class DescribeReportPlanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DescribeReportPlan", {})    .n("BackupClient", "DescribeReportPlanCommand")    .sc(schemas_0.DescribeReportPlan$)    .build() {} class DescribeRestoreJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DescribeRestoreJob", {})    .n("BackupClient", "DescribeRestoreJobCommand")    .sc(schemas_0.DescribeRestoreJob$)    .build() {} class DescribeScanJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DescribeScanJob", {})    .n("BackupClient", "DescribeScanJobCommand")    .sc(schemas_0.DescribeScanJob$)    .build() {} class DisassociateBackupVaultMpaApprovalTeamCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DisassociateBackupVaultMpaApprovalTeam", {})    .n("BackupClient", "DisassociateBackupVaultMpaApprovalTeamCommand")    .sc(schemas_0.DisassociateBackupVaultMpaApprovalTeam$)    .build() {} class DisassociateRecoveryPointCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DisassociateRecoveryPoint", {})    .n("BackupClient", "DisassociateRecoveryPointCommand")    .sc(schemas_0.DisassociateRecoveryPoint$)    .build() {} class DisassociateRecoveryPointFromParentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "DisassociateRecoveryPointFromParent", {})    .n("BackupClient", "DisassociateRecoveryPointFromParentCommand")    .sc(schemas_0.DisassociateRecoveryPointFromParent$)    .build() {} class ExportBackupPlanTemplateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ExportBackupPlanTemplate", {})    .n("BackupClient", "ExportBackupPlanTemplateCommand")    .sc(schemas_0.ExportBackupPlanTemplate$)    .build() {} class GetBackupPlanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetBackupPlan", {})    .n("BackupClient", "GetBackupPlanCommand")    .sc(schemas_0.GetBackupPlan$)    .build() {} class GetBackupPlanFromJSONCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetBackupPlanFromJSON", {})    .n("BackupClient", "GetBackupPlanFromJSONCommand")    .sc(schemas_0.GetBackupPlanFromJSON$)    .build() {} class GetBackupPlanFromTemplateCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetBackupPlanFromTemplate", {})    .n("BackupClient", "GetBackupPlanFromTemplateCommand")    .sc(schemas_0.GetBackupPlanFromTemplate$)    .build() {} class GetBackupSelectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetBackupSelection", {})    .n("BackupClient", "GetBackupSelectionCommand")    .sc(schemas_0.GetBackupSelection$)    .build() {} class GetBackupVaultAccessPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetBackupVaultAccessPolicy", {})    .n("BackupClient", "GetBackupVaultAccessPolicyCommand")    .sc(schemas_0.GetBackupVaultAccessPolicy$)    .build() {} class GetBackupVaultNotificationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetBackupVaultNotifications", {})    .n("BackupClient", "GetBackupVaultNotificationsCommand")    .sc(schemas_0.GetBackupVaultNotifications$)    .build() {} class GetLegalHoldCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetLegalHold", {})    .n("BackupClient", "GetLegalHoldCommand")    .sc(schemas_0.GetLegalHold$)    .build() {} class GetRecoveryPointIndexDetailsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetRecoveryPointIndexDetails", {})    .n("BackupClient", "GetRecoveryPointIndexDetailsCommand")    .sc(schemas_0.GetRecoveryPointIndexDetails$)    .build() {} class GetRecoveryPointRestoreMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetRecoveryPointRestoreMetadata", {})    .n("BackupClient", "GetRecoveryPointRestoreMetadataCommand")    .sc(schemas_0.GetRecoveryPointRestoreMetadata$)    .build() {} class GetRestoreJobMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetRestoreJobMetadata", {})    .n("BackupClient", "GetRestoreJobMetadataCommand")    .sc(schemas_0.GetRestoreJobMetadata$)    .build() {} class GetRestoreTestingInferredMetadataCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetRestoreTestingInferredMetadata", {})    .n("BackupClient", "GetRestoreTestingInferredMetadataCommand")    .sc(schemas_0.GetRestoreTestingInferredMetadata$)    .build() {} class GetRestoreTestingPlanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetRestoreTestingPlan", {})    .n("BackupClient", "GetRestoreTestingPlanCommand")    .sc(schemas_0.GetRestoreTestingPlan$)    .build() {} class GetRestoreTestingSelectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetRestoreTestingSelection", {})    .n("BackupClient", "GetRestoreTestingSelectionCommand")    .sc(schemas_0.GetRestoreTestingSelection$)    .build() {} class GetSupportedResourceTypesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetSupportedResourceTypes", {})    .n("BackupClient", "GetSupportedResourceTypesCommand")    .sc(schemas_0.GetSupportedResourceTypes$)    .build() {} class GetTieringConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "GetTieringConfiguration", {})    .n("BackupClient", "GetTieringConfigurationCommand")    .sc(schemas_0.GetTieringConfiguration$)    .build() {} class ListBackupJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListBackupJobs", {})    .n("BackupClient", "ListBackupJobsCommand")    .sc(schemas_0.ListBackupJobs$)    .build() {} class ListBackupJobSummariesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListBackupJobSummaries", {})    .n("BackupClient", "ListBackupJobSummariesCommand")    .sc(schemas_0.ListBackupJobSummaries$)    .build() {} class ListBackupPlansCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListBackupPlans", {})    .n("BackupClient", "ListBackupPlansCommand")    .sc(schemas_0.ListBackupPlans$)    .build() {} class ListBackupPlanTemplatesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListBackupPlanTemplates", {})    .n("BackupClient", "ListBackupPlanTemplatesCommand")    .sc(schemas_0.ListBackupPlanTemplates$)    .build() {} class ListBackupPlanVersionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListBackupPlanVersions", {})    .n("BackupClient", "ListBackupPlanVersionsCommand")    .sc(schemas_0.ListBackupPlanVersions$)    .build() {} class ListBackupSelectionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListBackupSelections", {})    .n("BackupClient", "ListBackupSelectionsCommand")    .sc(schemas_0.ListBackupSelections$)    .build() {} class ListBackupVaultsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListBackupVaults", {})    .n("BackupClient", "ListBackupVaultsCommand")    .sc(schemas_0.ListBackupVaults$)    .build() {} class ListCopyJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListCopyJobs", {})    .n("BackupClient", "ListCopyJobsCommand")    .sc(schemas_0.ListCopyJobs$)    .build() {} class ListCopyJobSummariesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListCopyJobSummaries", {})    .n("BackupClient", "ListCopyJobSummariesCommand")    .sc(schemas_0.ListCopyJobSummaries$)    .build() {} class ListFrameworksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListFrameworks", {})    .n("BackupClient", "ListFrameworksCommand")    .sc(schemas_0.ListFrameworks$)    .build() {} class ListIndexedRecoveryPointsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListIndexedRecoveryPoints", {})    .n("BackupClient", "ListIndexedRecoveryPointsCommand")    .sc(schemas_0.ListIndexedRecoveryPoints$)    .build() {} class ListLegalHoldsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListLegalHolds", {})    .n("BackupClient", "ListLegalHoldsCommand")    .sc(schemas_0.ListLegalHolds$)    .build() {} class ListProtectedResourcesByBackupVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListProtectedResourcesByBackupVault", {})    .n("BackupClient", "ListProtectedResourcesByBackupVaultCommand")    .sc(schemas_0.ListProtectedResourcesByBackupVault$)    .build() {} class ListProtectedResourcesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListProtectedResources", {})    .n("BackupClient", "ListProtectedResourcesCommand")    .sc(schemas_0.ListProtectedResources$)    .build() {} class ListRecoveryPointsByBackupVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListRecoveryPointsByBackupVault", {})    .n("BackupClient", "ListRecoveryPointsByBackupVaultCommand")    .sc(schemas_0.ListRecoveryPointsByBackupVault$)    .build() {} class ListRecoveryPointsByLegalHoldCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListRecoveryPointsByLegalHold", {})    .n("BackupClient", "ListRecoveryPointsByLegalHoldCommand")    .sc(schemas_0.ListRecoveryPointsByLegalHold$)    .build() {} class ListRecoveryPointsByResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListRecoveryPointsByResource", {})    .n("BackupClient", "ListRecoveryPointsByResourceCommand")    .sc(schemas_0.ListRecoveryPointsByResource$)    .build() {} class ListReportJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListReportJobs", {})    .n("BackupClient", "ListReportJobsCommand")    .sc(schemas_0.ListReportJobs$)    .build() {} class ListReportPlansCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListReportPlans", {})    .n("BackupClient", "ListReportPlansCommand")    .sc(schemas_0.ListReportPlans$)    .build() {} class ListRestoreAccessBackupVaultsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListRestoreAccessBackupVaults", {})    .n("BackupClient", "ListRestoreAccessBackupVaultsCommand")    .sc(schemas_0.ListRestoreAccessBackupVaults$)    .build() {} class ListRestoreJobsByProtectedResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListRestoreJobsByProtectedResource", {})    .n("BackupClient", "ListRestoreJobsByProtectedResourceCommand")    .sc(schemas_0.ListRestoreJobsByProtectedResource$)    .build() {} class ListRestoreJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListRestoreJobs", {})    .n("BackupClient", "ListRestoreJobsCommand")    .sc(schemas_0.ListRestoreJobs$)    .build() {} class ListRestoreJobSummariesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListRestoreJobSummaries", {})    .n("BackupClient", "ListRestoreJobSummariesCommand")    .sc(schemas_0.ListRestoreJobSummaries$)    .build() {} class ListRestoreTestingPlansCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListRestoreTestingPlans", {})    .n("BackupClient", "ListRestoreTestingPlansCommand")    .sc(schemas_0.ListRestoreTestingPlans$)    .build() {} class ListRestoreTestingSelectionsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListRestoreTestingSelections", {})    .n("BackupClient", "ListRestoreTestingSelectionsCommand")    .sc(schemas_0.ListRestoreTestingSelections$)    .build() {} class ListScanJobsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListScanJobs", {})    .n("BackupClient", "ListScanJobsCommand")    .sc(schemas_0.ListScanJobs$)    .build() {} class ListScanJobSummariesCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListScanJobSummaries", {})    .n("BackupClient", "ListScanJobSummariesCommand")    .sc(schemas_0.ListScanJobSummaries$)    .build() {} class ListTagsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListTags", {})    .n("BackupClient", "ListTagsCommand")    .sc(schemas_0.ListTags$)    .build() {} class ListTieringConfigurationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "ListTieringConfigurations", {})    .n("BackupClient", "ListTieringConfigurationsCommand")    .sc(schemas_0.ListTieringConfigurations$)    .build() {} class PutBackupVaultAccessPolicyCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "PutBackupVaultAccessPolicy", {})    .n("BackupClient", "PutBackupVaultAccessPolicyCommand")    .sc(schemas_0.PutBackupVaultAccessPolicy$)    .build() {} class PutBackupVaultLockConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "PutBackupVaultLockConfiguration", {})    .n("BackupClient", "PutBackupVaultLockConfigurationCommand")    .sc(schemas_0.PutBackupVaultLockConfiguration$)    .build() {} class PutBackupVaultNotificationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "PutBackupVaultNotifications", {})    .n("BackupClient", "PutBackupVaultNotificationsCommand")    .sc(schemas_0.PutBackupVaultNotifications$)    .build() {} class PutRestoreValidationResultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "PutRestoreValidationResult", {})    .n("BackupClient", "PutRestoreValidationResultCommand")    .sc(schemas_0.PutRestoreValidationResult$)    .build() {} class RevokeRestoreAccessBackupVaultCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "RevokeRestoreAccessBackupVault", {})    .n("BackupClient", "RevokeRestoreAccessBackupVaultCommand")    .sc(schemas_0.RevokeRestoreAccessBackupVault$)    .build() {} class StartBackupJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "StartBackupJob", {})    .n("BackupClient", "StartBackupJobCommand")    .sc(schemas_0.StartBackupJob$)    .build() {} class StartCopyJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "StartCopyJob", {})    .n("BackupClient", "StartCopyJobCommand")    .sc(schemas_0.StartCopyJob$)    .build() {} class StartReportJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "StartReportJob", {})    .n("BackupClient", "StartReportJobCommand")    .sc(schemas_0.StartReportJob$)    .build() {} class StartRestoreJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "StartRestoreJob", {})    .n("BackupClient", "StartRestoreJobCommand")    .sc(schemas_0.StartRestoreJob$)    .build() {} class StartScanJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "StartScanJob", {})    .n("BackupClient", "StartScanJobCommand")    .sc(schemas_0.StartScanJob$)    .build() {} class StopBackupJobCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "StopBackupJob", {})    .n("BackupClient", "StopBackupJobCommand")    .sc(schemas_0.StopBackupJob$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "TagResource", {})    .n("BackupClient", "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("CryoControllerUserManager", "UntagResource", {})    .n("BackupClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateBackupPlanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "UpdateBackupPlan", {})    .n("BackupClient", "UpdateBackupPlanCommand")    .sc(schemas_0.UpdateBackupPlan$)    .build() {} class UpdateFrameworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "UpdateFramework", {})    .n("BackupClient", "UpdateFrameworkCommand")    .sc(schemas_0.UpdateFramework$)    .build() {} class UpdateGlobalSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "UpdateGlobalSettings", {})    .n("BackupClient", "UpdateGlobalSettingsCommand")    .sc(schemas_0.UpdateGlobalSettings$)    .build() {} class UpdateRecoveryPointIndexSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "UpdateRecoveryPointIndexSettings", {})    .n("BackupClient", "UpdateRecoveryPointIndexSettingsCommand")    .sc(schemas_0.UpdateRecoveryPointIndexSettings$)    .build() {} class UpdateRecoveryPointLifecycleCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "UpdateRecoveryPointLifecycle", {})    .n("BackupClient", "UpdateRecoveryPointLifecycleCommand")    .sc(schemas_0.UpdateRecoveryPointLifecycle$)    .build() {} class UpdateRegionSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "UpdateRegionSettings", {})    .n("BackupClient", "UpdateRegionSettingsCommand")    .sc(schemas_0.UpdateRegionSettings$)    .build() {} class UpdateReportPlanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "UpdateReportPlan", {})    .n("BackupClient", "UpdateReportPlanCommand")    .sc(schemas_0.UpdateReportPlan$)    .build() {} class UpdateRestoreTestingPlanCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "UpdateRestoreTestingPlan", {})    .n("BackupClient", "UpdateRestoreTestingPlanCommand")    .sc(schemas_0.UpdateRestoreTestingPlan$)    .build() {} class UpdateRestoreTestingSelectionCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "UpdateRestoreTestingSelection", {})    .n("BackupClient", "UpdateRestoreTestingSelectionCommand")    .sc(schemas_0.UpdateRestoreTestingSelection$)    .build() {} class UpdateTieringConfigurationCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("CryoControllerUserManager", "UpdateTieringConfiguration", {})    .n("BackupClient", "UpdateTieringConfigurationCommand")    .sc(schemas_0.UpdateTieringConfiguration$)    .build() {} const paginateListBackupJobs = core.createPaginator(BackupClient, ListBackupJobsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListBackupJobSummaries = core.createPaginator(BackupClient, ListBackupJobSummariesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListBackupPlans = core.createPaginator(BackupClient, ListBackupPlansCommand, "NextToken", "NextToken", "MaxResults"); const paginateListBackupPlanTemplates = core.createPaginator(BackupClient, ListBackupPlanTemplatesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListBackupPlanVersions = core.createPaginator(BackupClient, ListBackupPlanVersionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListBackupSelections = core.createPaginator(BackupClient, ListBackupSelectionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListBackupVaults = core.createPaginator(BackupClient, ListBackupVaultsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListCopyJobs = core.createPaginator(BackupClient, ListCopyJobsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListCopyJobSummaries = core.createPaginator(BackupClient, ListCopyJobSummariesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListFrameworks = core.createPaginator(BackupClient, ListFrameworksCommand, "NextToken", "NextToken", "MaxResults"); const paginateListIndexedRecoveryPoints = core.createPaginator(BackupClient, ListIndexedRecoveryPointsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListLegalHolds = core.createPaginator(BackupClient, ListLegalHoldsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListProtectedResourcesByBackupVault = core.createPaginator(BackupClient, ListProtectedResourcesByBackupVaultCommand, "NextToken", "NextToken", "MaxResults"); const paginateListProtectedResources = core.createPaginator(BackupClient, ListProtectedResourcesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListRecoveryPointsByBackupVault = core.createPaginator(BackupClient, ListRecoveryPointsByBackupVaultCommand, "NextToken", "NextToken", "MaxResults"); const paginateListRecoveryPointsByLegalHold = core.createPaginator(BackupClient, ListRecoveryPointsByLegalHoldCommand, "NextToken", "NextToken", "MaxResults"); const paginateListRecoveryPointsByResource = core.createPaginator(BackupClient, ListRecoveryPointsByResourceCommand, "NextToken", "NextToken", "MaxResults"); const paginateListReportJobs = core.createPaginator(BackupClient, ListReportJobsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListReportPlans = core.createPaginator(BackupClient, ListReportPlansCommand, "NextToken", "NextToken", "MaxResults"); const paginateListRestoreAccessBackupVaults = core.createPaginator(BackupClient, ListRestoreAccessBackupVaultsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListRestoreJobsByProtectedResource = core.createPaginator(BackupClient, ListRestoreJobsByProtectedResourceCommand, "NextToken", "NextToken", "MaxResults"); const paginateListRestoreJobs = core.createPaginator(BackupClient, ListRestoreJobsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListRestoreJobSummaries = core.createPaginator(BackupClient, ListRestoreJobSummariesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListRestoreTestingPlans = core.createPaginator(BackupClient, ListRestoreTestingPlansCommand, "NextToken", "NextToken", "MaxResults"); const paginateListRestoreTestingSelections = core.createPaginator(BackupClient, ListRestoreTestingSelectionsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListScanJobs = core.createPaginator(BackupClient, ListScanJobsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListScanJobSummaries = core.createPaginator(BackupClient, ListScanJobSummariesCommand, "NextToken", "NextToken", "MaxResults"); const paginateListTags = core.createPaginator(BackupClient, ListTagsCommand, "NextToken", "NextToken", "MaxResults"); const paginateListTieringConfigurations = core.createPaginator(BackupClient, ListTieringConfigurationsCommand, "NextToken", "NextToken", "MaxResults"); const commands = {    AssociateBackupVaultMpaApprovalTeamCommand,    CancelLegalHoldCommand,    CreateBackupPlanCommand,    CreateBackupSelectionCommand,    CreateBackupVaultCommand,    CreateFrameworkCommand,    CreateLegalHoldCommand,    CreateLogicallyAirGappedBackupVaultCommand,    CreateReportPlanCommand,    CreateRestoreAccessBackupVaultCommand,    CreateRestoreTestingPlanCommand,    CreateRestoreTestingSelectionCommand,    CreateTieringConfigurationCommand,    DeleteBackupPlanCommand,    DeleteBackupSelectionCommand,    DeleteBackupVaultCommand,    DeleteBackupVaultAccessPolicyCommand,    DeleteBackupVaultLockConfigurationCommand,    DeleteBackupVaultNotificationsCommand,    DeleteFrameworkCommand,    DeleteRecoveryPointCommand,    DeleteReportPlanCommand,    DeleteRestoreTestingPlanCommand,    DeleteRestoreTestingSelectionCommand,    DeleteTieringConfigurationCommand,    DescribeBackupJobCommand,    DescribeBackupVaultCommand,    DescribeCopyJobCommand,    DescribeFrameworkCommand,    DescribeGlobalSettingsCommand,    DescribeProtectedResourceCommand,    DescribeRecoveryPointCommand,    DescribeRegionSettingsCommand,    DescribeReportJobCommand,    DescribeReportPlanCommand,    DescribeRestoreJobCommand,    DescribeScanJobCommand,    DisassociateBackupVaultMpaApprovalTeamCommand,    DisassociateRecoveryPointCommand,    DisassociateRecoveryPointFromParentCommand,    ExportBackupPlanTemplateCommand,    GetBackupPlanCommand,    GetBackupPlanFromJSONCommand,    GetBackupPlanFromTemplateCommand,    GetBackupSelectionCommand,    GetBackupVaultAccessPolicyCommand,    GetBackupVaultNotificationsCommand,    GetLegalHoldCommand,    GetRecoveryPointIndexDetailsCommand,    GetRecoveryPointRestoreMetadataCommand,    GetRestoreJobMetadataCommand,    GetRestoreTestingInferredMetadataCommand,    GetRestoreTestingPlanCommand,    GetRestoreTestingSelectionCommand,    GetSupportedResourceTypesCommand,    GetTieringConfigurationCommand,    ListBackupJobsCommand,    ListBackupJobSummariesCommand,    ListBackupPlansCommand,    ListBackupPlanTemplatesCommand,    ListBackupPlanVersionsCommand,    ListBackupSelectionsCommand,    ListBackupVaultsCommand,    ListCopyJobsCommand,    ListCopyJobSummariesCommand,    ListFrameworksCommand,    ListIndexedRecoveryPointsCommand,    ListLegalHoldsCommand,    ListProtectedResourcesCommand,    ListProtectedResourcesByBackupVaultCommand,    ListRecoveryPointsByBackupVaultCommand,    ListRecoveryPointsByLegalHoldCommand,    ListRecoveryPointsByResourceCommand,    ListReportJobsCommand,    ListReportPlansCommand,    ListRestoreAccessBackupVaultsCommand,    ListRestoreJobsCommand,    ListRestoreJobsByProtectedResourceCommand,    ListRestoreJobSummariesCommand,    ListRestoreTestingPlansCommand,    ListRestoreTestingSelectionsCommand,    ListScanJobsCommand,    ListScanJobSummariesCommand,    ListTagsCommand,    ListTieringConfigurationsCommand,    PutBackupVaultAccessPolicyCommand,    PutBackupVaultLockConfigurationCommand,    PutBackupVaultNotificationsCommand,    PutRestoreValidationResultCommand,    RevokeRestoreAccessBackupVaultCommand,    StartBackupJobCommand,    StartCopyJobCommand,    StartReportJobCommand,    StartRestoreJobCommand,    StartScanJobCommand,    StopBackupJobCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateBackupPlanCommand,    UpdateFrameworkCommand,    UpdateGlobalSettingsCommand,    UpdateRecoveryPointIndexSettingsCommand,    UpdateRecoveryPointLifecycleCommand,    UpdateRegionSettingsCommand,    UpdateReportPlanCommand,    UpdateRestoreTestingPlanCommand,    UpdateRestoreTestingSelectionCommand,    UpdateTieringConfigurationCommand,};const paginators = {    paginateListBackupJobs,    paginateListBackupJobSummaries,    paginateListBackupPlans,    paginateListBackupPlanTemplates,    paginateListBackupPlanVersions,    paginateListBackupSelections,    paginateListBackupVaults,    paginateListCopyJobs,    paginateListCopyJobSummaries,    paginateListFrameworks,    paginateListIndexedRecoveryPoints,    paginateListLegalHolds,    paginateListProtectedResources,    paginateListProtectedResourcesByBackupVault,    paginateListRecoveryPointsByBackupVault,    paginateListRecoveryPointsByLegalHold,    paginateListRecoveryPointsByResource,    paginateListReportJobs,    paginateListReportPlans,    paginateListRestoreAccessBackupVaults,    paginateListRestoreJobs,    paginateListRestoreJobsByProtectedResource,    paginateListRestoreJobSummaries,    paginateListRestoreTestingPlans,    paginateListRestoreTestingSelections,    paginateListScanJobs,    paginateListScanJobSummaries,    paginateListTags,    paginateListTieringConfigurations,};class Backup extends BackupClient {}client.createAggregatedClient(commands, Backup, { paginators }); const ScanFinding = {    MALWARE: "MALWARE",};const AggregationPeriod = {    FOURTEEN_DAYS: "FOURTEEN_DAYS",    ONE_DAY: "ONE_DAY",    SEVEN_DAYS: "SEVEN_DAYS",};const LifecycleDeleteAfterEvent = {    DELETE_AFTER_COPY: "DELETE_AFTER_COPY",};const BackupJobState = {    ABORTED: "ABORTED",    ABORTING: "ABORTING",    COMPLETED: "COMPLETED",    CREATED: "CREATED",    EXPIRED: "EXPIRED",    FAILED: "FAILED",    PARTIAL: "PARTIAL",    PENDING: "PENDING",    RUNNING: "RUNNING",};const BackupJobStatus = {    ABORTED: "ABORTED",    ABORTING: "ABORTING",    AGGREGATE_ALL: "AGGREGATE_ALL",    ANY: "ANY",    COMPLETED: "COMPLETED",    CREATED: "CREATED",    EXPIRED: "EXPIRED",    FAILED: "FAILED",    PARTIAL: "PARTIAL",    PENDING: "PENDING",    RUNNING: "RUNNING",};const MalwareScanner = {    GUARDDUTY: "GUARDDUTY",};const ScanMode = {    FULL_SCAN: "FULL_SCAN",    INCREMENTAL_SCAN: "INCREMENTAL_SCAN",};const ConditionType = {    STRINGEQUALS: "STRINGEQUALS",};const BackupVaultEvent = {    BACKUP_JOB_COMPLETED: "BACKUP_JOB_COMPLETED",    BACKUP_JOB_EXPIRED: "BACKUP_JOB_EXPIRED",    BACKUP_JOB_FAILED: "BACKUP_JOB_FAILED",    BACKUP_JOB_STARTED: "BACKUP_JOB_STARTED",    BACKUP_JOB_SUCCESSFUL: "BACKUP_JOB_SUCCESSFUL",    BACKUP_PLAN_CREATED: "BACKUP_PLAN_CREATED",    BACKUP_PLAN_MODIFIED: "BACKUP_PLAN_MODIFIED",    CONTINUOUS_BACKUP_INTERRUPTED: "CONTINUOUS_BACKUP_INTERRUPTED",    COPY_JOB_FAILED: "COPY_JOB_FAILED",    COPY_JOB_STARTED: "COPY_JOB_STARTED",    COPY_JOB_SUCCESSFUL: "COPY_JOB_SUCCESSFUL",    EKS_BACKUP_OBJECT_FAILED: "EKS_BACKUP_OBJECT_FAILED",    EKS_RESTORE_OBJECT_FAILED: "EKS_RESTORE_OBJECT_FAILED",    EKS_RESTORE_OBJECT_SKIPPED: "EKS_RESTORE_OBJECT_SKIPPED",    RECOVERY_POINT_INDEXING_FAILED: "RECOVERY_POINT_INDEXING_FAILED",    RECOVERY_POINT_INDEX_COMPLETED: "RECOVERY_POINT_INDEX_COMPLETED",    RECOVERY_POINT_INDEX_DELETED: "RECOVERY_POINT_INDEX_DELETED",    RECOVERY_POINT_MODIFIED: "RECOVERY_POINT_MODIFIED",    RESTORE_JOB_COMPLETED: "RESTORE_JOB_COMPLETED",    RESTORE_JOB_FAILED: "RESTORE_JOB_FAILED",    RESTORE_JOB_STARTED: "RESTORE_JOB_STARTED",    RESTORE_JOB_SUCCESSFUL: "RESTORE_JOB_SUCCESSFUL",    S3_BACKUP_OBJECT_FAILED: "S3_BACKUP_OBJECT_FAILED",    S3_RESTORE_OBJECT_FAILED: "S3_RESTORE_OBJECT_FAILED",};const EncryptionKeyType = {    AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY",    CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY",};const VaultState = {    AVAILABLE: "AVAILABLE",    CREATING: "CREATING",    FAILED: "FAILED",};const VaultType = {    BACKUP_VAULT: "BACKUP_VAULT",    LOGICALLY_AIR_GAPPED_BACKUP_VAULT: "LOGICALLY_AIR_GAPPED_BACKUP_VAULT",    RESTORE_ACCESS_BACKUP_VAULT: "RESTORE_ACCESS_BACKUP_VAULT",};const CopyJobState = {    COMPLETED: "COMPLETED",    CREATED: "CREATED",    FAILED: "FAILED",    PARTIAL: "PARTIAL",    RUNNING: "RUNNING",};const CopyJobStatus = {    ABORTED: "ABORTED",    ABORTING: "ABORTING",    AGGREGATE_ALL: "AGGREGATE_ALL",    ANY: "ANY",    COMPLETED: "COMPLETED",    COMPLETING: "COMPLETING",    CREATED: "CREATED",    FAILED: "FAILED",    FAILING: "FAILING",    PARTIAL: "PARTIAL",    RUNNING: "RUNNING",};const LegalHoldStatus = {    ACTIVE: "ACTIVE",    CANCELED: "CANCELED",    CANCELING: "CANCELING",    CREATING: "CREATING",};const RestoreTestingRecoveryPointSelectionAlgorithm = {    LATEST_WITHIN_WINDOW: "LATEST_WITHIN_WINDOW",    RANDOM_WITHIN_WINDOW: "RANDOM_WITHIN_WINDOW",};const RestoreTestingRecoveryPointType = {    CONTINUOUS: "CONTINUOUS",    SNAPSHOT: "SNAPSHOT",};const MpaSessionStatus = {    APPROVED: "APPROVED",    FAILED: "FAILED",    PENDING: "PENDING",};const IndexStatus = {    ACTIVE: "ACTIVE",    DELETING: "DELETING",    FAILED: "FAILED",    PENDING: "PENDING",};const ScanJobState = {    CANCELED: "CANCELED",    COMPLETED: "COMPLETED",    COMPLETED_WITH_ISSUES: "COMPLETED_WITH_ISSUES",    FAILED: "FAILED",};const RecoveryPointStatus = {    AVAILABLE: "AVAILABLE",    COMPLETED: "COMPLETED",    CREATING: "CREATING",    DELETING: "DELETING",    EXPIRED: "EXPIRED",    PARTIAL: "PARTIAL",    STOPPED: "STOPPED",};const StorageClass = {    COLD: "COLD",    DELETED: "DELETED",    WARM: "WARM",};const RestoreDeletionStatus = {    DELETING: "DELETING",    FAILED: "FAILED",    SUCCESSFUL: "SUCCESSFUL",};const RestoreJobStatus = {    ABORTED: "ABORTED",    COMPLETED: "COMPLETED",    FAILED: "FAILED",    PENDING: "PENDING",    RUNNING: "RUNNING",};const RestoreValidationStatus = {    FAILED: "FAILED",    SUCCESSFUL: "SUCCESSFUL",    TIMED_OUT: "TIMED_OUT",    VALIDATING: "VALIDATING",};const ScanResourceType = {    EBS: "EBS",    EC2: "EC2",    S3: "S3",};const ScanResultStatus = {    NO_THREATS_FOUND: "NO_THREATS_FOUND",    THREATS_FOUND: "THREATS_FOUND",};const ScanState = {    CANCELED: "CANCELED",    COMPLETED: "COMPLETED",    COMPLETED_WITH_ISSUES: "COMPLETED_WITH_ISSUES",    CREATED: "CREATED",    FAILED: "FAILED",    RUNNING: "RUNNING",};const RuleExecutionType = {    CONTINUOUS: "CONTINUOUS",    CONTINUOUS_AND_SNAPSHOTS: "CONTINUOUS_AND_SNAPSHOTS",    SNAPSHOTS: "SNAPSHOTS",};const MpaRevokeSessionStatus = {    FAILED: "FAILED",    PENDING: "PENDING",};const RestoreJobState = {    ABORTED: "ABORTED",    AGGREGATE_ALL: "AGGREGATE_ALL",    ANY: "ANY",    COMPLETED: "COMPLETED",    CREATED: "CREATED",    FAILED: "FAILED",    PENDING: "PENDING",    RUNNING: "RUNNING",};const ScanJobStatus = {    AGGREGATE_ALL: "AGGREGATE_ALL",    ANY: "ANY",    CANCELED: "CANCELED",    COMPLETED: "COMPLETED",    COMPLETED_WITH_ISSUES: "COMPLETED_WITH_ISSUES",    CREATED: "CREATED",    FAILED: "FAILED",    RUNNING: "RUNNING",};const Index = {    DISABLED: "DISABLED",    ENABLED: "ENABLED",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.BackupServiceException = BackupServiceException.BackupServiceException;exports.AggregationPeriod = AggregationPeriod;exports.AssociateBackupVaultMpaApprovalTeamCommand = AssociateBackupVaultMpaApprovalTeamCommand;exports.Backup = Backup;exports.BackupClient = BackupClient;exports.BackupJobState = BackupJobState;exports.BackupJobStatus = BackupJobStatus;exports.BackupVaultEvent = BackupVaultEvent;exports.CancelLegalHoldCommand = CancelLegalHoldCommand;exports.ConditionType = ConditionType;exports.CopyJobState = CopyJobState;exports.CopyJobStatus = CopyJobStatus;exports.CreateBackupPlanCommand = CreateBackupPlanCommand;exports.CreateBackupSelectionCommand = CreateBackupSelectionCommand;exports.CreateBackupVaultCommand = CreateBackupVaultCommand;exports.CreateFrameworkCommand = CreateFrameworkCommand;exports.CreateLegalHoldCommand = CreateLegalHoldCommand;exports.CreateLogicallyAirGappedBackupVaultCommand = CreateLogicallyAirGappedBackupVaultCommand;exports.CreateReportPlanCommand = CreateReportPlanCommand;exports.CreateRestoreAccessBackupVaultCommand = CreateRestoreAccessBackupVaultCommand;exports.CreateRestoreTestingPlanCommand = CreateRestoreTestingPlanCommand;exports.CreateRestoreTestingSelectionCommand = CreateRestoreTestingSelectionCommand;exports.CreateTieringConfigurationCommand = CreateTieringConfigurationCommand;exports.DeleteBackupPlanCommand = DeleteBackupPlanCommand;exports.DeleteBackupSelectionCommand = DeleteBackupSelectionCommand;exports.DeleteBackupVaultAccessPolicyCommand = DeleteBackupVaultAccessPolicyCommand;exports.DeleteBackupVaultCommand = DeleteBackupVaultCommand;exports.DeleteBackupVaultLockConfigurationCommand = DeleteBackupVaultLockConfigurationCommand;exports.DeleteBackupVaultNotificationsCommand = DeleteBackupVaultNotificationsCommand;exports.DeleteFrameworkCommand = DeleteFrameworkCommand;exports.DeleteRecoveryPointCommand = DeleteRecoveryPointCommand;exports.DeleteReportPlanCommand = DeleteReportPlanCommand;exports.DeleteRestoreTestingPlanCommand = DeleteRestoreTestingPlanCommand;exports.DeleteRestoreTestingSelectionCommand = DeleteRestoreTestingSelectionCommand;exports.DeleteTieringConfigurationCommand = DeleteTieringConfigurationCommand;exports.DescribeBackupJobCommand = DescribeBackupJobCommand;exports.DescribeBackupVaultCommand = DescribeBackupVaultCommand;exports.DescribeCopyJobCommand = DescribeCopyJobCommand;exports.DescribeFrameworkCommand = DescribeFrameworkCommand;exports.DescribeGlobalSettingsCommand = DescribeGlobalSettingsCommand;exports.DescribeProtectedResourceCommand = DescribeProtectedResourceCommand;exports.DescribeRecoveryPointCommand = DescribeRecoveryPointCommand;exports.DescribeRegionSettingsCommand = DescribeRegionSettingsCommand;exports.DescribeReportJobCommand = DescribeReportJobCommand;exports.DescribeReportPlanCommand = DescribeReportPlanCommand;exports.DescribeRestoreJobCommand = DescribeRestoreJobCommand;exports.DescribeScanJobCommand = DescribeScanJobCommand;exports.DisassociateBackupVaultMpaApprovalTeamCommand = DisassociateBackupVaultMpaApprovalTeamCommand;exports.DisassociateRecoveryPointCommand = DisassociateRecoveryPointCommand;exports.DisassociateRecoveryPointFromParentCommand = DisassociateRecoveryPointFromParentCommand;exports.EncryptionKeyType = EncryptionKeyType;exports.ExportBackupPlanTemplateCommand = ExportBackupPlanTemplateCommand;exports.GetBackupPlanCommand = GetBackupPlanCommand;exports.GetBackupPlanFromJSONCommand = GetBackupPlanFromJSONCommand;exports.GetBackupPlanFromTemplateCommand = GetBackupPlanFromTemplateCommand;exports.GetBackupSelectionCommand = GetBackupSelectionCommand;exports.GetBackupVaultAccessPolicyCommand = GetBackupVaultAccessPolicyCommand;exports.GetBackupVaultNotificationsCommand = GetBackupVaultNotificationsCommand;exports.GetLegalHoldCommand = GetLegalHoldCommand;exports.GetRecoveryPointIndexDetailsCommand = GetRecoveryPointIndexDetailsCommand;exports.GetRecoveryPointRestoreMetadataCommand = GetRecoveryPointRestoreMetadataCommand;exports.GetRestoreJobMetadataCommand = GetRestoreJobMetadataCommand;exports.GetRestoreTestingInferredMetadataCommand = GetRestoreTestingInferredMetadataCommand;exports.GetRestoreTestingPlanCommand = GetRestoreTestingPlanCommand;exports.GetRestoreTestingSelectionCommand = GetRestoreTestingSelectionCommand;exports.GetSupportedResourceTypesCommand = GetSupportedResourceTypesCommand;exports.GetTieringConfigurationCommand = GetTieringConfigurationCommand;exports.Index = Index;exports.IndexStatus = IndexStatus;exports.LegalHoldStatus = LegalHoldStatus;exports.LifecycleDeleteAfterEvent = LifecycleDeleteAfterEvent;exports.ListBackupJobSummariesCommand = ListBackupJobSummariesCommand;exports.ListBackupJobsCommand = ListBackupJobsCommand;exports.ListBackupPlanTemplatesCommand = ListBackupPlanTemplatesCommand;exports.ListBackupPlanVersionsCommand = ListBackupPlanVersionsCommand;exports.ListBackupPlansCommand = ListBackupPlansCommand;exports.ListBackupSelectionsCommand = ListBackupSelectionsCommand;exports.ListBackupVaultsCommand = ListBackupVaultsCommand;exports.ListCopyJobSummariesCommand = ListCopyJobSummariesCommand;exports.ListCopyJobsCommand = ListCopyJobsCommand;exports.ListFrameworksCommand = ListFrameworksCommand;exports.ListIndexedRecoveryPointsCommand = ListIndexedRecoveryPointsCommand;exports.ListLegalHoldsCommand = ListLegalHoldsCommand;exports.ListProtectedResourcesByBackupVaultCommand = ListProtectedResourcesByBackupVaultCommand;exports.ListProtectedResourcesCommand = ListProtectedResourcesCommand;exports.ListRecoveryPointsByBackupVaultCommand = ListRecoveryPointsByBackupVaultCommand;exports.ListRecoveryPointsByLegalHoldCommand = ListRecoveryPointsByLegalHoldCommand;exports.ListRecoveryPointsByResourceCommand = ListRecoveryPointsByResourceCommand;exports.ListReportJobsCommand = ListReportJobsCommand;exports.ListReportPlansCommand = ListReportPlansCommand;exports.ListRestoreAccessBackupVaultsCommand = ListRestoreAccessBackupVaultsCommand;exports.ListRestoreJobSummariesCommand = ListRestoreJobSummariesCommand;exports.ListRestoreJobsByProtectedResourceCommand = ListRestoreJobsByProtectedResourceCommand;exports.ListRestoreJobsCommand = ListRestoreJobsCommand;exports.ListRestoreTestingPlansCommand = ListRestoreTestingPlansCommand;exports.ListRestoreTestingSelectionsCommand = ListRestoreTestingSelectionsCommand;exports.ListScanJobSummariesCommand = ListScanJobSummariesCommand;exports.ListScanJobsCommand = ListScanJobsCommand;exports.ListTagsCommand = ListTagsCommand;exports.ListTieringConfigurationsCommand = ListTieringConfigurationsCommand;exports.MalwareScanner = MalwareScanner;exports.MpaRevokeSessionStatus = MpaRevokeSessionStatus;exports.MpaSessionStatus = MpaSessionStatus;exports.PutBackupVaultAccessPolicyCommand = PutBackupVaultAccessPolicyCommand;exports.PutBackupVaultLockConfigurationCommand = PutBackupVaultLockConfigurationCommand;exports.PutBackupVaultNotificationsCommand = PutBackupVaultNotificationsCommand;exports.PutRestoreValidationResultCommand = PutRestoreValidationResultCommand;exports.RecoveryPointStatus = RecoveryPointStatus;exports.RestoreDeletionStatus = RestoreDeletionStatus;exports.RestoreJobState = RestoreJobState;exports.RestoreJobStatus = RestoreJobStatus;exports.RestoreTestingRecoveryPointSelectionAlgorithm = RestoreTestingRecoveryPointSelectionAlgorithm;exports.RestoreTestingRecoveryPointType = RestoreTestingRecoveryPointType;exports.RestoreValidationStatus = RestoreValidationStatus;exports.RevokeRestoreAccessBackupVaultCommand = RevokeRestoreAccessBackupVaultCommand;exports.RuleExecutionType = RuleExecutionType;exports.ScanFinding = ScanFinding;exports.ScanJobState = ScanJobState;exports.ScanJobStatus = ScanJobStatus;exports.ScanMode = ScanMode;exports.ScanResourceType = ScanResourceType;exports.ScanResultStatus = ScanResultStatus;exports.ScanState = ScanState;exports.StartBackupJobCommand = StartBackupJobCommand;exports.StartCopyJobCommand = StartCopyJobCommand;exports.StartReportJobCommand = StartReportJobCommand;exports.StartRestoreJobCommand = StartRestoreJobCommand;exports.StartScanJobCommand = StartScanJobCommand;exports.StopBackupJobCommand = StopBackupJobCommand;exports.StorageClass = StorageClass;exports.TagResourceCommand = TagResourceCommand;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateBackupPlanCommand = UpdateBackupPlanCommand;exports.UpdateFrameworkCommand = UpdateFrameworkCommand;exports.UpdateGlobalSettingsCommand = UpdateGlobalSettingsCommand;exports.UpdateRecoveryPointIndexSettingsCommand = UpdateRecoveryPointIndexSettingsCommand;exports.UpdateRecoveryPointLifecycleCommand = UpdateRecoveryPointLifecycleCommand;exports.UpdateRegionSettingsCommand = UpdateRegionSettingsCommand;exports.UpdateReportPlanCommand = UpdateReportPlanCommand;exports.UpdateRestoreTestingPlanCommand = UpdateRestoreTestingPlanCommand;exports.UpdateRestoreTestingSelectionCommand = UpdateRestoreTestingSelectionCommand;exports.UpdateTieringConfigurationCommand = UpdateTieringConfigurationCommand;exports.VaultState = VaultState;exports.VaultType = VaultType;exports.paginateListBackupJobSummaries = paginateListBackupJobSummaries;exports.paginateListBackupJobs = paginateListBackupJobs;exports.paginateListBackupPlanTemplates = paginateListBackupPlanTemplates;exports.paginateListBackupPlanVersions = paginateListBackupPlanVersions;exports.paginateListBackupPlans = paginateListBackupPlans;exports.paginateListBackupSelections = paginateListBackupSelections;exports.paginateListBackupVaults = paginateListBackupVaults;exports.paginateListCopyJobSummaries = paginateListCopyJobSummaries;exports.paginateListCopyJobs = paginateListCopyJobs;exports.paginateListFrameworks = paginateListFrameworks;exports.paginateListIndexedRecoveryPoints = paginateListIndexedRecoveryPoints;exports.paginateListLegalHolds = paginateListLegalHolds;exports.paginateListProtectedResources = paginateListProtectedResources;exports.paginateListProtectedResourcesByBackupVault = paginateListProtectedResourcesByBackupVault;exports.paginateListRecoveryPointsByBackupVault = paginateListRecoveryPointsByBackupVault;exports.paginateListRecoveryPointsByLegalHold = paginateListRecoveryPointsByLegalHold;exports.paginateListRecoveryPointsByResource = paginateListRecoveryPointsByResource;exports.paginateListReportJobs = paginateListReportJobs;exports.paginateListReportPlans = paginateListReportPlans;exports.paginateListRestoreAccessBackupVaults = paginateListRestoreAccessBackupVaults;exports.paginateListRestoreJobSummaries = paginateListRestoreJobSummaries;exports.paginateListRestoreJobs = paginateListRestoreJobs;exports.paginateListRestoreJobsByProtectedResource = paginateListRestoreJobsByProtectedResource;exports.paginateListRestoreTestingPlans = paginateListRestoreTestingPlans;exports.paginateListRestoreTestingSelections = paginateListRestoreTestingSelections;exports.paginateListScanJobSummaries = paginateListScanJobSummaries;exports.paginateListScanJobs = paginateListScanJobs;exports.paginateListTags = paginateListTags;exports.paginateListTieringConfigurations = paginateListTieringConfigurations;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];});