File Explorer

/proc/self/root/var/runtime/node_modules/@aws-sdk/client-auditmanager/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 · 1260 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 AuditManagerServiceException = require('./models/AuditManagerServiceException'); const resolveClientEndpointParameters = (options) => {    return Object.assign(options, {        useDualstackEndpoint: options.useDualstackEndpoint ?? false,        useFipsEndpoint: options.useFipsEndpoint ?? false,        defaultSigningName: "auditmanager",    });};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 AuditManagerClient 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.defaultAuditManagerHttpAuthSchemeParametersProvider,            identityProviderConfigProvider: async (config) => new core.DefaultIdentityProviderConfig({                "aws.auth#sigv4": config.credentials,            }),        }));        this.middlewareStack.use(core.getHttpSigningPlugin(this.config));    }    destroy() {        super.destroy();    }} class AssociateAssessmentReportEvidenceFolderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "AssociateAssessmentReportEvidenceFolder", {})    .n("AuditManagerClient", "AssociateAssessmentReportEvidenceFolderCommand")    .sc(schemas_0.AssociateAssessmentReportEvidenceFolder$)    .build() {} class BatchAssociateAssessmentReportEvidenceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "BatchAssociateAssessmentReportEvidence", {})    .n("AuditManagerClient", "BatchAssociateAssessmentReportEvidenceCommand")    .sc(schemas_0.BatchAssociateAssessmentReportEvidence$)    .build() {} class BatchCreateDelegationByAssessmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "BatchCreateDelegationByAssessment", {})    .n("AuditManagerClient", "BatchCreateDelegationByAssessmentCommand")    .sc(schemas_0.BatchCreateDelegationByAssessment$)    .build() {} class BatchDeleteDelegationByAssessmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "BatchDeleteDelegationByAssessment", {})    .n("AuditManagerClient", "BatchDeleteDelegationByAssessmentCommand")    .sc(schemas_0.BatchDeleteDelegationByAssessment$)    .build() {} class BatchDisassociateAssessmentReportEvidenceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "BatchDisassociateAssessmentReportEvidence", {})    .n("AuditManagerClient", "BatchDisassociateAssessmentReportEvidenceCommand")    .sc(schemas_0.BatchDisassociateAssessmentReportEvidence$)    .build() {} class BatchImportEvidenceToAssessmentControlCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "BatchImportEvidenceToAssessmentControl", {})    .n("AuditManagerClient", "BatchImportEvidenceToAssessmentControlCommand")    .sc(schemas_0.BatchImportEvidenceToAssessmentControl$)    .build() {} class CreateAssessmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "CreateAssessment", {})    .n("AuditManagerClient", "CreateAssessmentCommand")    .sc(schemas_0.CreateAssessment$)    .build() {} class CreateAssessmentFrameworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "CreateAssessmentFramework", {})    .n("AuditManagerClient", "CreateAssessmentFrameworkCommand")    .sc(schemas_0.CreateAssessmentFramework$)    .build() {} class CreateAssessmentReportCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "CreateAssessmentReport", {})    .n("AuditManagerClient", "CreateAssessmentReportCommand")    .sc(schemas_0.CreateAssessmentReport$)    .build() {} class CreateControlCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "CreateControl", {})    .n("AuditManagerClient", "CreateControlCommand")    .sc(schemas_0.CreateControl$)    .build() {} class DeleteAssessmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "DeleteAssessment", {})    .n("AuditManagerClient", "DeleteAssessmentCommand")    .sc(schemas_0.DeleteAssessment$)    .build() {} class DeleteAssessmentFrameworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "DeleteAssessmentFramework", {})    .n("AuditManagerClient", "DeleteAssessmentFrameworkCommand")    .sc(schemas_0.DeleteAssessmentFramework$)    .build() {} class DeleteAssessmentFrameworkShareCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "DeleteAssessmentFrameworkShare", {})    .n("AuditManagerClient", "DeleteAssessmentFrameworkShareCommand")    .sc(schemas_0.DeleteAssessmentFrameworkShare$)    .build() {} class DeleteAssessmentReportCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "DeleteAssessmentReport", {})    .n("AuditManagerClient", "DeleteAssessmentReportCommand")    .sc(schemas_0.DeleteAssessmentReport$)    .build() {} class DeleteControlCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "DeleteControl", {})    .n("AuditManagerClient", "DeleteControlCommand")    .sc(schemas_0.DeleteControl$)    .build() {} class DeregisterAccountCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "DeregisterAccount", {})    .n("AuditManagerClient", "DeregisterAccountCommand")    .sc(schemas_0.DeregisterAccount$)    .build() {} class DeregisterOrganizationAdminAccountCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "DeregisterOrganizationAdminAccount", {})    .n("AuditManagerClient", "DeregisterOrganizationAdminAccountCommand")    .sc(schemas_0.DeregisterOrganizationAdminAccount$)    .build() {} class DisassociateAssessmentReportEvidenceFolderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "DisassociateAssessmentReportEvidenceFolder", {})    .n("AuditManagerClient", "DisassociateAssessmentReportEvidenceFolderCommand")    .sc(schemas_0.DisassociateAssessmentReportEvidenceFolder$)    .build() {} class GetAccountStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetAccountStatus", {})    .n("AuditManagerClient", "GetAccountStatusCommand")    .sc(schemas_0.GetAccountStatus$)    .build() {} class GetAssessmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetAssessment", {})    .n("AuditManagerClient", "GetAssessmentCommand")    .sc(schemas_0.GetAssessment$)    .build() {} class GetAssessmentFrameworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetAssessmentFramework", {})    .n("AuditManagerClient", "GetAssessmentFrameworkCommand")    .sc(schemas_0.GetAssessmentFramework$)    .build() {} class GetAssessmentReportUrlCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetAssessmentReportUrl", {})    .n("AuditManagerClient", "GetAssessmentReportUrlCommand")    .sc(schemas_0.GetAssessmentReportUrl$)    .build() {} class GetChangeLogsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetChangeLogs", {})    .n("AuditManagerClient", "GetChangeLogsCommand")    .sc(schemas_0.GetChangeLogs$)    .build() {} class GetControlCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetControl", {})    .n("AuditManagerClient", "GetControlCommand")    .sc(schemas_0.GetControl$)    .build() {} class GetDelegationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetDelegations", {})    .n("AuditManagerClient", "GetDelegationsCommand")    .sc(schemas_0.GetDelegations$)    .build() {} class GetEvidenceByEvidenceFolderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetEvidenceByEvidenceFolder", {})    .n("AuditManagerClient", "GetEvidenceByEvidenceFolderCommand")    .sc(schemas_0.GetEvidenceByEvidenceFolder$)    .build() {} class GetEvidenceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetEvidence", {})    .n("AuditManagerClient", "GetEvidenceCommand")    .sc(schemas_0.GetEvidence$)    .build() {} class GetEvidenceFileUploadUrlCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetEvidenceFileUploadUrl", {})    .n("AuditManagerClient", "GetEvidenceFileUploadUrlCommand")    .sc(schemas_0.GetEvidenceFileUploadUrl$)    .build() {} class GetEvidenceFolderCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetEvidenceFolder", {})    .n("AuditManagerClient", "GetEvidenceFolderCommand")    .sc(schemas_0.GetEvidenceFolder$)    .build() {} class GetEvidenceFoldersByAssessmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetEvidenceFoldersByAssessment", {})    .n("AuditManagerClient", "GetEvidenceFoldersByAssessmentCommand")    .sc(schemas_0.GetEvidenceFoldersByAssessment$)    .build() {} class GetEvidenceFoldersByAssessmentControlCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetEvidenceFoldersByAssessmentControl", {})    .n("AuditManagerClient", "GetEvidenceFoldersByAssessmentControlCommand")    .sc(schemas_0.GetEvidenceFoldersByAssessmentControl$)    .build() {} class GetInsightsByAssessmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetInsightsByAssessment", {})    .n("AuditManagerClient", "GetInsightsByAssessmentCommand")    .sc(schemas_0.GetInsightsByAssessment$)    .build() {} class GetInsightsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetInsights", {})    .n("AuditManagerClient", "GetInsightsCommand")    .sc(schemas_0.GetInsights$)    .build() {} class GetOrganizationAdminAccountCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetOrganizationAdminAccount", {})    .n("AuditManagerClient", "GetOrganizationAdminAccountCommand")    .sc(schemas_0.GetOrganizationAdminAccount$)    .build() {} class GetServicesInScopeCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetServicesInScope", {})    .n("AuditManagerClient", "GetServicesInScopeCommand")    .sc(schemas_0.GetServicesInScope$)    .build() {} class GetSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "GetSettings", {})    .n("AuditManagerClient", "GetSettingsCommand")    .sc(schemas_0.GetSettings$)    .build() {} class ListAssessmentControlInsightsByControlDomainCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "ListAssessmentControlInsightsByControlDomain", {})    .n("AuditManagerClient", "ListAssessmentControlInsightsByControlDomainCommand")    .sc(schemas_0.ListAssessmentControlInsightsByControlDomain$)    .build() {} class ListAssessmentFrameworksCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "ListAssessmentFrameworks", {})    .n("AuditManagerClient", "ListAssessmentFrameworksCommand")    .sc(schemas_0.ListAssessmentFrameworks$)    .build() {} class ListAssessmentFrameworkShareRequestsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "ListAssessmentFrameworkShareRequests", {})    .n("AuditManagerClient", "ListAssessmentFrameworkShareRequestsCommand")    .sc(schemas_0.ListAssessmentFrameworkShareRequests$)    .build() {} class ListAssessmentReportsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "ListAssessmentReports", {})    .n("AuditManagerClient", "ListAssessmentReportsCommand")    .sc(schemas_0.ListAssessmentReports$)    .build() {} class ListAssessmentsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "ListAssessments", {})    .n("AuditManagerClient", "ListAssessmentsCommand")    .sc(schemas_0.ListAssessments$)    .build() {} class ListControlDomainInsightsByAssessmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "ListControlDomainInsightsByAssessment", {})    .n("AuditManagerClient", "ListControlDomainInsightsByAssessmentCommand")    .sc(schemas_0.ListControlDomainInsightsByAssessment$)    .build() {} class ListControlDomainInsightsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "ListControlDomainInsights", {})    .n("AuditManagerClient", "ListControlDomainInsightsCommand")    .sc(schemas_0.ListControlDomainInsights$)    .build() {} class ListControlInsightsByControlDomainCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "ListControlInsightsByControlDomain", {})    .n("AuditManagerClient", "ListControlInsightsByControlDomainCommand")    .sc(schemas_0.ListControlInsightsByControlDomain$)    .build() {} class ListControlsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "ListControls", {})    .n("AuditManagerClient", "ListControlsCommand")    .sc(schemas_0.ListControls$)    .build() {} class ListKeywordsForDataSourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "ListKeywordsForDataSource", {})    .n("AuditManagerClient", "ListKeywordsForDataSourceCommand")    .sc(schemas_0.ListKeywordsForDataSource$)    .build() {} class ListNotificationsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "ListNotifications", {})    .n("AuditManagerClient", "ListNotificationsCommand")    .sc(schemas_0.ListNotifications$)    .build() {} class ListTagsForResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "ListTagsForResource", {})    .n("AuditManagerClient", "ListTagsForResourceCommand")    .sc(schemas_0.ListTagsForResource$)    .build() {} class RegisterAccountCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "RegisterAccount", {})    .n("AuditManagerClient", "RegisterAccountCommand")    .sc(schemas_0.RegisterAccount$)    .build() {} class RegisterOrganizationAdminAccountCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "RegisterOrganizationAdminAccount", {})    .n("AuditManagerClient", "RegisterOrganizationAdminAccountCommand")    .sc(schemas_0.RegisterOrganizationAdminAccount$)    .build() {} class StartAssessmentFrameworkShareCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "StartAssessmentFrameworkShare", {})    .n("AuditManagerClient", "StartAssessmentFrameworkShareCommand")    .sc(schemas_0.StartAssessmentFrameworkShare$)    .build() {} class TagResourceCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "TagResource", {})    .n("AuditManagerClient", "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("BedrockAssessmentManagerLambda", "UntagResource", {})    .n("AuditManagerClient", "UntagResourceCommand")    .sc(schemas_0.UntagResource$)    .build() {} class UpdateAssessmentCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "UpdateAssessment", {})    .n("AuditManagerClient", "UpdateAssessmentCommand")    .sc(schemas_0.UpdateAssessment$)    .build() {} class UpdateAssessmentControlCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "UpdateAssessmentControl", {})    .n("AuditManagerClient", "UpdateAssessmentControlCommand")    .sc(schemas_0.UpdateAssessmentControl$)    .build() {} class UpdateAssessmentControlSetStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "UpdateAssessmentControlSetStatus", {})    .n("AuditManagerClient", "UpdateAssessmentControlSetStatusCommand")    .sc(schemas_0.UpdateAssessmentControlSetStatus$)    .build() {} class UpdateAssessmentFrameworkCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "UpdateAssessmentFramework", {})    .n("AuditManagerClient", "UpdateAssessmentFrameworkCommand")    .sc(schemas_0.UpdateAssessmentFramework$)    .build() {} class UpdateAssessmentFrameworkShareCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "UpdateAssessmentFrameworkShare", {})    .n("AuditManagerClient", "UpdateAssessmentFrameworkShareCommand")    .sc(schemas_0.UpdateAssessmentFrameworkShare$)    .build() {} class UpdateAssessmentStatusCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "UpdateAssessmentStatus", {})    .n("AuditManagerClient", "UpdateAssessmentStatusCommand")    .sc(schemas_0.UpdateAssessmentStatus$)    .build() {} class UpdateControlCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "UpdateControl", {})    .n("AuditManagerClient", "UpdateControlCommand")    .sc(schemas_0.UpdateControl$)    .build() {} class UpdateSettingsCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "UpdateSettings", {})    .n("AuditManagerClient", "UpdateSettingsCommand")    .sc(schemas_0.UpdateSettings$)    .build() {} class ValidateAssessmentReportIntegrityCommand extends client.Command    .classBuilder()    .ep(commonParams)    .m(function (Command, cs, config, o) {    return [endpoints.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];})    .s("BedrockAssessmentManagerLambda", "ValidateAssessmentReportIntegrity", {})    .n("AuditManagerClient", "ValidateAssessmentReportIntegrityCommand")    .sc(schemas_0.ValidateAssessmentReportIntegrity$)    .build() {} const paginateGetChangeLogs = core.createPaginator(AuditManagerClient, GetChangeLogsCommand, "nextToken", "nextToken", "maxResults"); const paginateGetDelegations = core.createPaginator(AuditManagerClient, GetDelegationsCommand, "nextToken", "nextToken", "maxResults"); const paginateGetEvidenceByEvidenceFolder = core.createPaginator(AuditManagerClient, GetEvidenceByEvidenceFolderCommand, "nextToken", "nextToken", "maxResults"); const paginateGetEvidenceFoldersByAssessmentControl = core.createPaginator(AuditManagerClient, GetEvidenceFoldersByAssessmentControlCommand, "nextToken", "nextToken", "maxResults"); const paginateGetEvidenceFoldersByAssessment = core.createPaginator(AuditManagerClient, GetEvidenceFoldersByAssessmentCommand, "nextToken", "nextToken", "maxResults"); const paginateListAssessmentControlInsightsByControlDomain = core.createPaginator(AuditManagerClient, ListAssessmentControlInsightsByControlDomainCommand, "nextToken", "nextToken", "maxResults"); const paginateListAssessmentFrameworkShareRequests = core.createPaginator(AuditManagerClient, ListAssessmentFrameworkShareRequestsCommand, "nextToken", "nextToken", "maxResults"); const paginateListAssessmentFrameworks = core.createPaginator(AuditManagerClient, ListAssessmentFrameworksCommand, "nextToken", "nextToken", "maxResults"); const paginateListAssessmentReports = core.createPaginator(AuditManagerClient, ListAssessmentReportsCommand, "nextToken", "nextToken", "maxResults"); const paginateListAssessments = core.createPaginator(AuditManagerClient, ListAssessmentsCommand, "nextToken", "nextToken", "maxResults"); const paginateListControlDomainInsightsByAssessment = core.createPaginator(AuditManagerClient, ListControlDomainInsightsByAssessmentCommand, "nextToken", "nextToken", "maxResults"); const paginateListControlDomainInsights = core.createPaginator(AuditManagerClient, ListControlDomainInsightsCommand, "nextToken", "nextToken", "maxResults"); const paginateListControlInsightsByControlDomain = core.createPaginator(AuditManagerClient, ListControlInsightsByControlDomainCommand, "nextToken", "nextToken", "maxResults"); const paginateListControls = core.createPaginator(AuditManagerClient, ListControlsCommand, "nextToken", "nextToken", "maxResults"); const paginateListKeywordsForDataSource = core.createPaginator(AuditManagerClient, ListKeywordsForDataSourceCommand, "nextToken", "nextToken", "maxResults"); const paginateListNotifications = core.createPaginator(AuditManagerClient, ListNotificationsCommand, "nextToken", "nextToken", "maxResults"); const commands = {    AssociateAssessmentReportEvidenceFolderCommand,    BatchAssociateAssessmentReportEvidenceCommand,    BatchCreateDelegationByAssessmentCommand,    BatchDeleteDelegationByAssessmentCommand,    BatchDisassociateAssessmentReportEvidenceCommand,    BatchImportEvidenceToAssessmentControlCommand,    CreateAssessmentCommand,    CreateAssessmentFrameworkCommand,    CreateAssessmentReportCommand,    CreateControlCommand,    DeleteAssessmentCommand,    DeleteAssessmentFrameworkCommand,    DeleteAssessmentFrameworkShareCommand,    DeleteAssessmentReportCommand,    DeleteControlCommand,    DeregisterAccountCommand,    DeregisterOrganizationAdminAccountCommand,    DisassociateAssessmentReportEvidenceFolderCommand,    GetAccountStatusCommand,    GetAssessmentCommand,    GetAssessmentFrameworkCommand,    GetAssessmentReportUrlCommand,    GetChangeLogsCommand,    GetControlCommand,    GetDelegationsCommand,    GetEvidenceCommand,    GetEvidenceByEvidenceFolderCommand,    GetEvidenceFileUploadUrlCommand,    GetEvidenceFolderCommand,    GetEvidenceFoldersByAssessmentCommand,    GetEvidenceFoldersByAssessmentControlCommand,    GetInsightsCommand,    GetInsightsByAssessmentCommand,    GetOrganizationAdminAccountCommand,    GetServicesInScopeCommand,    GetSettingsCommand,    ListAssessmentControlInsightsByControlDomainCommand,    ListAssessmentFrameworksCommand,    ListAssessmentFrameworkShareRequestsCommand,    ListAssessmentReportsCommand,    ListAssessmentsCommand,    ListControlDomainInsightsCommand,    ListControlDomainInsightsByAssessmentCommand,    ListControlInsightsByControlDomainCommand,    ListControlsCommand,    ListKeywordsForDataSourceCommand,    ListNotificationsCommand,    ListTagsForResourceCommand,    RegisterAccountCommand,    RegisterOrganizationAdminAccountCommand,    StartAssessmentFrameworkShareCommand,    TagResourceCommand,    UntagResourceCommand,    UpdateAssessmentCommand,    UpdateAssessmentControlCommand,    UpdateAssessmentControlSetStatusCommand,    UpdateAssessmentFrameworkCommand,    UpdateAssessmentFrameworkShareCommand,    UpdateAssessmentStatusCommand,    UpdateControlCommand,    UpdateSettingsCommand,    ValidateAssessmentReportIntegrityCommand,};const paginators = {    paginateGetChangeLogs,    paginateGetDelegations,    paginateGetEvidenceByEvidenceFolder,    paginateGetEvidenceFoldersByAssessment,    paginateGetEvidenceFoldersByAssessmentControl,    paginateListAssessmentControlInsightsByControlDomain,    paginateListAssessmentFrameworks,    paginateListAssessmentFrameworkShareRequests,    paginateListAssessmentReports,    paginateListAssessments,    paginateListControlDomainInsights,    paginateListControlDomainInsightsByAssessment,    paginateListControlInsightsByControlDomain,    paginateListControls,    paginateListKeywordsForDataSource,    paginateListNotifications,};class AuditManager extends AuditManagerClient {}client.createAggregatedClient(commands, AuditManager, { paginators }); const AccountStatus = {    ACTIVE: "ACTIVE",    INACTIVE: "INACTIVE",    PENDING_ACTIVATION: "PENDING_ACTIVATION",};const ActionEnum = {    ACTIVE: "ACTIVE",    CREATE: "CREATE",    DELETE: "DELETE",    IMPORT_EVIDENCE: "IMPORT_EVIDENCE",    INACTIVE: "INACTIVE",    REVIEWED: "REVIEWED",    UNDER_REVIEW: "UNDER_REVIEW",    UPDATE_METADATA: "UPDATE_METADATA",};const ControlResponse = {    AUTOMATE: "AUTOMATE",    DEFER: "DEFER",    IGNORE: "IGNORE",    MANUAL: "MANUAL",};const ControlStatus = {    INACTIVE: "INACTIVE",    REVIEWED: "REVIEWED",    UNDER_REVIEW: "UNDER_REVIEW",};const RoleType = {    PROCESS_OWNER: "PROCESS_OWNER",    RESOURCE_OWNER: "RESOURCE_OWNER",};const DelegationStatus = {    COMPLETE: "COMPLETE",    IN_PROGRESS: "IN_PROGRESS",    UNDER_REVIEW: "UNDER_REVIEW",};const ControlSetStatus = {    ACTIVE: "ACTIVE",    REVIEWED: "REVIEWED",    UNDER_REVIEW: "UNDER_REVIEW",};const AssessmentReportDestinationType = {    S3: "S3",};const AssessmentStatus = {    ACTIVE: "ACTIVE",    INACTIVE: "INACTIVE",};const FrameworkType = {    CUSTOM: "Custom",    STANDARD: "Standard",};const ShareRequestStatus = {    ACTIVE: "ACTIVE",    DECLINED: "DECLINED",    EXPIRED: "EXPIRED",    EXPIRING: "EXPIRING",    FAILED: "FAILED",    REPLICATING: "REPLICATING",    REVOKED: "REVOKED",    SHARED: "SHARED",};const AssessmentReportStatus = {    COMPLETE: "COMPLETE",    FAILED: "FAILED",    IN_PROGRESS: "IN_PROGRESS",};const ValidationExceptionReason = {    CANNOT_PARSE: "cannotParse",    FIELD_VALIDATION_FAILED: "fieldValidationFailed",    OTHER: "other",    UNKNOWN_OPERATION: "unknownOperation",};const SourceFrequency = {    DAILY: "DAILY",    MONTHLY: "MONTHLY",    WEEKLY: "WEEKLY",};const KeywordInputType = {    INPUT_TEXT: "INPUT_TEXT",    SELECT_FROM_LIST: "SELECT_FROM_LIST",    UPLOAD_FILE: "UPLOAD_FILE",};const SourceSetUpOption = {    PROCEDURAL_CONTROLS_MAPPING: "Procedural_Controls_Mapping",    SYSTEM_CONTROLS_MAPPING: "System_Controls_Mapping",};const SourceType = {    AWS_API_CALL: "AWS_API_Call",    AWS_CLOUDTRAIL: "AWS_Cloudtrail",    AWS_CONFIG: "AWS_Config",    AWS_SECURITY_HUB: "AWS_Security_Hub",    COMMON_CONTROL: "Common_Control",    CORE_CONTROL: "Core_Control",    MANUAL: "MANUAL",};const ControlState = {    ACTIVE: "ACTIVE",    END_OF_SUPPORT: "END_OF_SUPPORT",};const ControlType = {    CORE: "Core",    CUSTOM: "Custom",    STANDARD: "Standard",};const ShareRequestType = {    RECEIVED: "RECEIVED",    SENT: "SENT",};const ObjectTypeEnum = {    ASSESSMENT: "ASSESSMENT",    ASSESSMENT_REPORT: "ASSESSMENT_REPORT",    CONTROL: "CONTROL",    CONTROL_SET: "CONTROL_SET",    DELEGATION: "DELEGATION",};const SettingAttribute = {    ALL: "ALL",    DEFAULT_ASSESSMENT_REPORTS_DESTINATION: "DEFAULT_ASSESSMENT_REPORTS_DESTINATION",    DEFAULT_EXPORT_DESTINATION: "DEFAULT_EXPORT_DESTINATION",    DEFAULT_PROCESS_OWNERS: "DEFAULT_PROCESS_OWNERS",    DEREGISTRATION_POLICY: "DEREGISTRATION_POLICY",    EVIDENCE_FINDER_ENABLEMENT: "EVIDENCE_FINDER_ENABLEMENT",    IS_AWS_ORG_ENABLED: "IS_AWS_ORG_ENABLED",    SNS_TOPIC: "SNS_TOPIC",};const ExportDestinationType = {    S3: "S3",};const DeleteResources = {    ALL: "ALL",    DEFAULT: "DEFAULT",};const EvidenceFinderBackfillStatus = {    COMPLETED: "COMPLETED",    IN_PROGRESS: "IN_PROGRESS",    NOT_STARTED: "NOT_STARTED",};const EvidenceFinderEnablementStatus = {    DISABLED: "DISABLED",    DISABLE_IN_PROGRESS: "DISABLE_IN_PROGRESS",    ENABLED: "ENABLED",    ENABLE_IN_PROGRESS: "ENABLE_IN_PROGRESS",};const DataSourceType = {    AWS_API_CALL: "AWS_API_Call",    AWS_CLOUDTRAIL: "AWS_Cloudtrail",    AWS_CONFIG: "AWS_Config",    AWS_SECURITY_HUB: "AWS_Security_Hub",    MANUAL: "MANUAL",};const ShareRequestAction = {    ACCEPT: "ACCEPT",    DECLINE: "DECLINE",    REVOKE: "REVOKE",}; exports.$Command = client.Command;exports.__Client = client.Client;exports.AuditManagerServiceException = AuditManagerServiceException.AuditManagerServiceException;exports.AccountStatus = AccountStatus;exports.ActionEnum = ActionEnum;exports.AssessmentReportDestinationType = AssessmentReportDestinationType;exports.AssessmentReportStatus = AssessmentReportStatus;exports.AssessmentStatus = AssessmentStatus;exports.AssociateAssessmentReportEvidenceFolderCommand = AssociateAssessmentReportEvidenceFolderCommand;exports.AuditManager = AuditManager;exports.AuditManagerClient = AuditManagerClient;exports.BatchAssociateAssessmentReportEvidenceCommand = BatchAssociateAssessmentReportEvidenceCommand;exports.BatchCreateDelegationByAssessmentCommand = BatchCreateDelegationByAssessmentCommand;exports.BatchDeleteDelegationByAssessmentCommand = BatchDeleteDelegationByAssessmentCommand;exports.BatchDisassociateAssessmentReportEvidenceCommand = BatchDisassociateAssessmentReportEvidenceCommand;exports.BatchImportEvidenceToAssessmentControlCommand = BatchImportEvidenceToAssessmentControlCommand;exports.ControlResponse = ControlResponse;exports.ControlSetStatus = ControlSetStatus;exports.ControlState = ControlState;exports.ControlStatus = ControlStatus;exports.ControlType = ControlType;exports.CreateAssessmentCommand = CreateAssessmentCommand;exports.CreateAssessmentFrameworkCommand = CreateAssessmentFrameworkCommand;exports.CreateAssessmentReportCommand = CreateAssessmentReportCommand;exports.CreateControlCommand = CreateControlCommand;exports.DataSourceType = DataSourceType;exports.DelegationStatus = DelegationStatus;exports.DeleteAssessmentCommand = DeleteAssessmentCommand;exports.DeleteAssessmentFrameworkCommand = DeleteAssessmentFrameworkCommand;exports.DeleteAssessmentFrameworkShareCommand = DeleteAssessmentFrameworkShareCommand;exports.DeleteAssessmentReportCommand = DeleteAssessmentReportCommand;exports.DeleteControlCommand = DeleteControlCommand;exports.DeleteResources = DeleteResources;exports.DeregisterAccountCommand = DeregisterAccountCommand;exports.DeregisterOrganizationAdminAccountCommand = DeregisterOrganizationAdminAccountCommand;exports.DisassociateAssessmentReportEvidenceFolderCommand = DisassociateAssessmentReportEvidenceFolderCommand;exports.EvidenceFinderBackfillStatus = EvidenceFinderBackfillStatus;exports.EvidenceFinderEnablementStatus = EvidenceFinderEnablementStatus;exports.ExportDestinationType = ExportDestinationType;exports.FrameworkType = FrameworkType;exports.GetAccountStatusCommand = GetAccountStatusCommand;exports.GetAssessmentCommand = GetAssessmentCommand;exports.GetAssessmentFrameworkCommand = GetAssessmentFrameworkCommand;exports.GetAssessmentReportUrlCommand = GetAssessmentReportUrlCommand;exports.GetChangeLogsCommand = GetChangeLogsCommand;exports.GetControlCommand = GetControlCommand;exports.GetDelegationsCommand = GetDelegationsCommand;exports.GetEvidenceByEvidenceFolderCommand = GetEvidenceByEvidenceFolderCommand;exports.GetEvidenceCommand = GetEvidenceCommand;exports.GetEvidenceFileUploadUrlCommand = GetEvidenceFileUploadUrlCommand;exports.GetEvidenceFolderCommand = GetEvidenceFolderCommand;exports.GetEvidenceFoldersByAssessmentCommand = GetEvidenceFoldersByAssessmentCommand;exports.GetEvidenceFoldersByAssessmentControlCommand = GetEvidenceFoldersByAssessmentControlCommand;exports.GetInsightsByAssessmentCommand = GetInsightsByAssessmentCommand;exports.GetInsightsCommand = GetInsightsCommand;exports.GetOrganizationAdminAccountCommand = GetOrganizationAdminAccountCommand;exports.GetServicesInScopeCommand = GetServicesInScopeCommand;exports.GetSettingsCommand = GetSettingsCommand;exports.KeywordInputType = KeywordInputType;exports.ListAssessmentControlInsightsByControlDomainCommand = ListAssessmentControlInsightsByControlDomainCommand;exports.ListAssessmentFrameworkShareRequestsCommand = ListAssessmentFrameworkShareRequestsCommand;exports.ListAssessmentFrameworksCommand = ListAssessmentFrameworksCommand;exports.ListAssessmentReportsCommand = ListAssessmentReportsCommand;exports.ListAssessmentsCommand = ListAssessmentsCommand;exports.ListControlDomainInsightsByAssessmentCommand = ListControlDomainInsightsByAssessmentCommand;exports.ListControlDomainInsightsCommand = ListControlDomainInsightsCommand;exports.ListControlInsightsByControlDomainCommand = ListControlInsightsByControlDomainCommand;exports.ListControlsCommand = ListControlsCommand;exports.ListKeywordsForDataSourceCommand = ListKeywordsForDataSourceCommand;exports.ListNotificationsCommand = ListNotificationsCommand;exports.ListTagsForResourceCommand = ListTagsForResourceCommand;exports.ObjectTypeEnum = ObjectTypeEnum;exports.RegisterAccountCommand = RegisterAccountCommand;exports.RegisterOrganizationAdminAccountCommand = RegisterOrganizationAdminAccountCommand;exports.RoleType = RoleType;exports.SettingAttribute = SettingAttribute;exports.ShareRequestAction = ShareRequestAction;exports.ShareRequestStatus = ShareRequestStatus;exports.ShareRequestType = ShareRequestType;exports.SourceFrequency = SourceFrequency;exports.SourceSetUpOption = SourceSetUpOption;exports.SourceType = SourceType;exports.StartAssessmentFrameworkShareCommand = StartAssessmentFrameworkShareCommand;exports.TagResourceCommand = TagResourceCommand;exports.UntagResourceCommand = UntagResourceCommand;exports.UpdateAssessmentCommand = UpdateAssessmentCommand;exports.UpdateAssessmentControlCommand = UpdateAssessmentControlCommand;exports.UpdateAssessmentControlSetStatusCommand = UpdateAssessmentControlSetStatusCommand;exports.UpdateAssessmentFrameworkCommand = UpdateAssessmentFrameworkCommand;exports.UpdateAssessmentFrameworkShareCommand = UpdateAssessmentFrameworkShareCommand;exports.UpdateAssessmentStatusCommand = UpdateAssessmentStatusCommand;exports.UpdateControlCommand = UpdateControlCommand;exports.UpdateSettingsCommand = UpdateSettingsCommand;exports.ValidateAssessmentReportIntegrityCommand = ValidateAssessmentReportIntegrityCommand;exports.ValidationExceptionReason = ValidationExceptionReason;exports.paginateGetChangeLogs = paginateGetChangeLogs;exports.paginateGetDelegations = paginateGetDelegations;exports.paginateGetEvidenceByEvidenceFolder = paginateGetEvidenceByEvidenceFolder;exports.paginateGetEvidenceFoldersByAssessment = paginateGetEvidenceFoldersByAssessment;exports.paginateGetEvidenceFoldersByAssessmentControl = paginateGetEvidenceFoldersByAssessmentControl;exports.paginateListAssessmentControlInsightsByControlDomain = paginateListAssessmentControlInsightsByControlDomain;exports.paginateListAssessmentFrameworkShareRequests = paginateListAssessmentFrameworkShareRequests;exports.paginateListAssessmentFrameworks = paginateListAssessmentFrameworks;exports.paginateListAssessmentReports = paginateListAssessmentReports;exports.paginateListAssessments = paginateListAssessments;exports.paginateListControlDomainInsights = paginateListControlDomainInsights;exports.paginateListControlDomainInsightsByAssessment = paginateListControlDomainInsightsByAssessment;exports.paginateListControlInsightsByControlDomain = paginateListControlInsightsByControlDomain;exports.paginateListControls = paginateListControls;exports.paginateListKeywordsForDataSource = paginateListKeywordsForDataSource;exports.paginateListNotifications = paginateListNotifications;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];});