@aws-sdk/client-auditmanager 3.39.0 → 3.43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/dist-cjs/AuditManager.js +90 -0
  3. package/dist-cjs/commands/GetInsightsByAssessmentCommand.js +36 -0
  4. package/dist-cjs/commands/GetInsightsCommand.js +36 -0
  5. package/dist-cjs/commands/ListAssessmentControlInsightsByControlDomainCommand.js +36 -0
  6. package/dist-cjs/commands/ListControlDomainInsightsByAssessmentCommand.js +36 -0
  7. package/dist-cjs/commands/ListControlDomainInsightsCommand.js +36 -0
  8. package/dist-cjs/commands/ListControlInsightsByControlDomainCommand.js +36 -0
  9. package/dist-cjs/commands/index.js +6 -0
  10. package/dist-cjs/endpoints.js +74 -5
  11. package/dist-cjs/models/models_0.js +110 -2
  12. package/dist-cjs/pagination/ListAssessmentControlInsightsByControlDomainPaginator.js +35 -0
  13. package/dist-cjs/pagination/ListControlDomainInsightsByAssessmentPaginator.js +35 -0
  14. package/dist-cjs/pagination/ListControlDomainInsightsPaginator.js +35 -0
  15. package/dist-cjs/pagination/ListControlInsightsByControlDomainPaginator.js +35 -0
  16. package/dist-cjs/pagination/index.js +4 -0
  17. package/dist-cjs/protocols/Aws_restJson1.js +753 -86
  18. package/dist-cjs/runtimeConfig.browser.js +6 -3
  19. package/dist-cjs/runtimeConfig.js +5 -3
  20. package/dist-es/AuditManager.js +90 -0
  21. package/dist-es/commands/GetInsightsByAssessmentCommand.js +39 -0
  22. package/dist-es/commands/GetInsightsCommand.js +39 -0
  23. package/dist-es/commands/ListAssessmentControlInsightsByControlDomainCommand.js +39 -0
  24. package/dist-es/commands/ListControlDomainInsightsByAssessmentCommand.js +39 -0
  25. package/dist-es/commands/ListControlDomainInsightsCommand.js +39 -0
  26. package/dist-es/commands/ListControlInsightsByControlDomainCommand.js +39 -0
  27. package/dist-es/commands/index.js +6 -0
  28. package/dist-es/endpoints.js +74 -5
  29. package/dist-es/models/models_0.js +72 -0
  30. package/dist-es/pagination/ListAssessmentControlInsightsByControlDomainPaginator.js +74 -0
  31. package/dist-es/pagination/ListControlDomainInsightsByAssessmentPaginator.js +74 -0
  32. package/dist-es/pagination/ListControlDomainInsightsPaginator.js +74 -0
  33. package/dist-es/pagination/ListControlInsightsByControlDomainPaginator.js +74 -0
  34. package/dist-es/pagination/index.js +4 -0
  35. package/dist-es/protocols/Aws_restJson1.js +798 -34
  36. package/dist-es/runtimeConfig.browser.js +3 -2
  37. package/dist-es/runtimeConfig.js +3 -3
  38. package/dist-types/AuditManager.d.ts +69 -2
  39. package/dist-types/AuditManagerClient.d.ts +16 -2
  40. package/dist-types/commands/AssociateAssessmentReportEvidenceFolderCommand.d.ts +1 -1
  41. package/dist-types/commands/BatchAssociateAssessmentReportEvidenceCommand.d.ts +1 -1
  42. package/dist-types/commands/BatchCreateDelegationByAssessmentCommand.d.ts +1 -1
  43. package/dist-types/commands/BatchDeleteDelegationByAssessmentCommand.d.ts +1 -1
  44. package/dist-types/commands/BatchDisassociateAssessmentReportEvidenceCommand.d.ts +1 -1
  45. package/dist-types/commands/BatchImportEvidenceToAssessmentControlCommand.d.ts +1 -1
  46. package/dist-types/commands/CreateAssessmentCommand.d.ts +1 -1
  47. package/dist-types/commands/CreateAssessmentFrameworkCommand.d.ts +1 -1
  48. package/dist-types/commands/CreateAssessmentReportCommand.d.ts +1 -1
  49. package/dist-types/commands/CreateControlCommand.d.ts +1 -1
  50. package/dist-types/commands/DeleteAssessmentCommand.d.ts +1 -1
  51. package/dist-types/commands/DeleteAssessmentFrameworkCommand.d.ts +1 -1
  52. package/dist-types/commands/DeleteAssessmentFrameworkShareCommand.d.ts +1 -1
  53. package/dist-types/commands/DeleteAssessmentReportCommand.d.ts +1 -1
  54. package/dist-types/commands/DeleteControlCommand.d.ts +1 -1
  55. package/dist-types/commands/DeregisterAccountCommand.d.ts +1 -1
  56. package/dist-types/commands/DeregisterOrganizationAdminAccountCommand.d.ts +1 -1
  57. package/dist-types/commands/DisassociateAssessmentReportEvidenceFolderCommand.d.ts +1 -1
  58. package/dist-types/commands/GetAccountStatusCommand.d.ts +1 -1
  59. package/dist-types/commands/GetAssessmentCommand.d.ts +2 -2
  60. package/dist-types/commands/GetAssessmentFrameworkCommand.d.ts +2 -2
  61. package/dist-types/commands/GetAssessmentReportUrlCommand.d.ts +1 -1
  62. package/dist-types/commands/GetChangeLogsCommand.d.ts +1 -1
  63. package/dist-types/commands/GetControlCommand.d.ts +1 -1
  64. package/dist-types/commands/GetDelegationsCommand.d.ts +1 -1
  65. package/dist-types/commands/GetEvidenceByEvidenceFolderCommand.d.ts +1 -1
  66. package/dist-types/commands/GetEvidenceCommand.d.ts +1 -1
  67. package/dist-types/commands/GetEvidenceFolderCommand.d.ts +1 -1
  68. package/dist-types/commands/GetEvidenceFoldersByAssessmentCommand.d.ts +1 -1
  69. package/dist-types/commands/GetEvidenceFoldersByAssessmentControlCommand.d.ts +1 -1
  70. package/dist-types/commands/GetInsightsByAssessmentCommand.d.ts +35 -0
  71. package/dist-types/commands/GetInsightsCommand.d.ts +35 -0
  72. package/dist-types/commands/GetOrganizationAdminAccountCommand.d.ts +1 -1
  73. package/dist-types/commands/GetServicesInScopeCommand.d.ts +1 -1
  74. package/dist-types/commands/GetSettingsCommand.d.ts +1 -1
  75. package/dist-types/commands/ListAssessmentControlInsightsByControlDomainCommand.d.ts +42 -0
  76. package/dist-types/commands/ListAssessmentFrameworkShareRequestsCommand.d.ts +1 -1
  77. package/dist-types/commands/ListAssessmentFrameworksCommand.d.ts +1 -1
  78. package/dist-types/commands/ListAssessmentReportsCommand.d.ts +1 -1
  79. package/dist-types/commands/ListAssessmentsCommand.d.ts +1 -1
  80. package/dist-types/commands/ListControlDomainInsightsByAssessmentCommand.d.ts +40 -0
  81. package/dist-types/commands/ListControlDomainInsightsCommand.d.ts +41 -0
  82. package/dist-types/commands/ListControlInsightsByControlDomainCommand.d.ts +42 -0
  83. package/dist-types/commands/ListControlsCommand.d.ts +1 -1
  84. package/dist-types/commands/ListKeywordsForDataSourceCommand.d.ts +1 -1
  85. package/dist-types/commands/ListNotificationsCommand.d.ts +1 -1
  86. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  87. package/dist-types/commands/RegisterAccountCommand.d.ts +1 -1
  88. package/dist-types/commands/RegisterOrganizationAdminAccountCommand.d.ts +1 -1
  89. package/dist-types/commands/StartAssessmentFrameworkShareCommand.d.ts +1 -1
  90. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  91. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  92. package/dist-types/commands/UpdateAssessmentCommand.d.ts +1 -1
  93. package/dist-types/commands/UpdateAssessmentControlCommand.d.ts +1 -1
  94. package/dist-types/commands/UpdateAssessmentControlSetStatusCommand.d.ts +1 -1
  95. package/dist-types/commands/UpdateAssessmentFrameworkCommand.d.ts +1 -1
  96. package/dist-types/commands/UpdateAssessmentFrameworkShareCommand.d.ts +1 -1
  97. package/dist-types/commands/UpdateAssessmentStatusCommand.d.ts +1 -1
  98. package/dist-types/commands/UpdateControlCommand.d.ts +1 -1
  99. package/dist-types/commands/UpdateSettingsCommand.d.ts +1 -1
  100. package/dist-types/commands/ValidateAssessmentReportIntegrityCommand.d.ts +1 -1
  101. package/dist-types/commands/index.d.ts +6 -0
  102. package/dist-types/models/models_0.d.ts +521 -30
  103. package/dist-types/pagination/ListAssessmentControlInsightsByControlDomainPaginator.d.ts +4 -0
  104. package/dist-types/pagination/ListControlDomainInsightsByAssessmentPaginator.d.ts +4 -0
  105. package/dist-types/pagination/ListControlDomainInsightsPaginator.d.ts +4 -0
  106. package/dist-types/pagination/ListControlInsightsByControlDomainPaginator.d.ts +4 -0
  107. package/dist-types/pagination/index.d.ts +4 -0
  108. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  109. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  110. package/dist-types/runtimeConfig.d.ts +2 -0
  111. package/dist-types/runtimeConfig.native.d.ts +2 -0
  112. package/dist-types/ts3.4/AuditManager.d.ts +30 -0
  113. package/dist-types/ts3.4/AuditManagerClient.d.ts +12 -2
  114. package/dist-types/ts3.4/commands/GetInsightsByAssessmentCommand.d.ts +17 -0
  115. package/dist-types/ts3.4/commands/GetInsightsCommand.d.ts +17 -0
  116. package/dist-types/ts3.4/commands/ListAssessmentControlInsightsByControlDomainCommand.d.ts +17 -0
  117. package/dist-types/ts3.4/commands/ListControlDomainInsightsByAssessmentCommand.d.ts +17 -0
  118. package/dist-types/ts3.4/commands/ListControlDomainInsightsCommand.d.ts +17 -0
  119. package/dist-types/ts3.4/commands/ListControlInsightsByControlDomainCommand.d.ts +17 -0
  120. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  121. package/dist-types/ts3.4/models/models_0.d.ts +224 -0
  122. package/dist-types/ts3.4/pagination/ListAssessmentControlInsightsByControlDomainPaginator.d.ts +4 -0
  123. package/dist-types/ts3.4/pagination/ListControlDomainInsightsByAssessmentPaginator.d.ts +4 -0
  124. package/dist-types/ts3.4/pagination/ListControlDomainInsightsPaginator.d.ts +4 -0
  125. package/dist-types/ts3.4/pagination/ListControlInsightsByControlDomainPaginator.d.ts +4 -0
  126. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  127. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +18 -0
  128. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  129. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  130. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  131. package/package.json +23 -23
@@ -4,6 +4,7 @@ exports.getRuntimeConfig = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const package_json_1 = tslib_1.__importDefault(require("../package.json"));
6
6
  const sha256_browser_1 = require("@aws-crypto/sha256-browser");
7
+ const config_resolver_1 = require("@aws-sdk/config-resolver");
7
8
  const fetch_http_handler_1 = require("@aws-sdk/fetch-http-handler");
8
9
  const invalid_dependency_1 = require("@aws-sdk/invalid-dependency");
9
10
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
@@ -13,7 +14,7 @@ const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser");
13
14
  const util_utf8_browser_1 = require("@aws-sdk/util-utf8-browser");
14
15
  const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
15
16
  const getRuntimeConfig = (config) => {
16
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
17
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
17
18
  const clientSharedValues = runtimeConfig_shared_1.getRuntimeConfig(config);
18
19
  return {
19
20
  ...clientSharedValues,
@@ -30,8 +31,10 @@ const getRuntimeConfig = (config) => {
30
31
  retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (() => Promise.resolve(middleware_retry_1.DEFAULT_RETRY_MODE)),
31
32
  sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : sha256_browser_1.Sha256,
32
33
  streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : fetch_http_handler_1.streamCollector,
33
- utf8Decoder: (_m = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _m !== void 0 ? _m : util_utf8_browser_1.fromUtf8,
34
- utf8Encoder: (_o = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _o !== void 0 ? _o : util_utf8_browser_1.toUtf8,
34
+ useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (() => Promise.resolve(config_resolver_1.DEFAULT_USE_DUALSTACK_ENDPOINT)),
35
+ useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (() => Promise.resolve(config_resolver_1.DEFAULT_USE_FIPS_ENDPOINT)),
36
+ utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : util_utf8_browser_1.fromUtf8,
37
+ utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : util_utf8_browser_1.toUtf8,
35
38
  };
36
39
  };
37
40
  exports.getRuntimeConfig = getRuntimeConfig;
@@ -17,7 +17,7 @@ const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
17
17
  const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
18
18
  const smithy_client_1 = require("@aws-sdk/smithy-client");
19
19
  const getRuntimeConfig = (config) => {
20
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
20
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
21
21
  smithy_client_1.emitWarningIfUnsupportedVersion(process.version);
22
22
  const clientSharedValues = runtimeConfig_shared_1.getRuntimeConfig(config);
23
23
  return {
@@ -35,8 +35,10 @@ const getRuntimeConfig = (config) => {
35
35
  retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : node_config_provider_1.loadConfig(middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS),
36
36
  sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : hash_node_1.Hash.bind(null, "sha256"),
37
37
  streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : node_http_handler_1.streamCollector,
38
- utf8Decoder: (_m = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _m !== void 0 ? _m : util_utf8_node_1.fromUtf8,
39
- utf8Encoder: (_o = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _o !== void 0 ? _o : util_utf8_node_1.toUtf8,
38
+ useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : node_config_provider_1.loadConfig(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
39
+ useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : node_config_provider_1.loadConfig(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
40
+ utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : util_utf8_node_1.fromUtf8,
41
+ utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : util_utf8_node_1.toUtf8,
40
42
  };
41
43
  };
42
44
  exports.getRuntimeConfig = getRuntimeConfig;
@@ -30,13 +30,19 @@ import { GetEvidenceCommand } from "./commands/GetEvidenceCommand";
30
30
  import { GetEvidenceFolderCommand, } from "./commands/GetEvidenceFolderCommand";
31
31
  import { GetEvidenceFoldersByAssessmentCommand, } from "./commands/GetEvidenceFoldersByAssessmentCommand";
32
32
  import { GetEvidenceFoldersByAssessmentControlCommand, } from "./commands/GetEvidenceFoldersByAssessmentControlCommand";
33
+ import { GetInsightsByAssessmentCommand, } from "./commands/GetInsightsByAssessmentCommand";
34
+ import { GetInsightsCommand } from "./commands/GetInsightsCommand";
33
35
  import { GetOrganizationAdminAccountCommand, } from "./commands/GetOrganizationAdminAccountCommand";
34
36
  import { GetServicesInScopeCommand, } from "./commands/GetServicesInScopeCommand";
35
37
  import { GetSettingsCommand } from "./commands/GetSettingsCommand";
38
+ import { ListAssessmentControlInsightsByControlDomainCommand, } from "./commands/ListAssessmentControlInsightsByControlDomainCommand";
36
39
  import { ListAssessmentFrameworksCommand, } from "./commands/ListAssessmentFrameworksCommand";
37
40
  import { ListAssessmentFrameworkShareRequestsCommand, } from "./commands/ListAssessmentFrameworkShareRequestsCommand";
38
41
  import { ListAssessmentReportsCommand, } from "./commands/ListAssessmentReportsCommand";
39
42
  import { ListAssessmentsCommand, } from "./commands/ListAssessmentsCommand";
43
+ import { ListControlDomainInsightsByAssessmentCommand, } from "./commands/ListControlDomainInsightsByAssessmentCommand";
44
+ import { ListControlDomainInsightsCommand, } from "./commands/ListControlDomainInsightsCommand";
45
+ import { ListControlInsightsByControlDomainCommand, } from "./commands/ListControlInsightsByControlDomainCommand";
40
46
  import { ListControlsCommand, } from "./commands/ListControlsCommand";
41
47
  import { ListKeywordsForDataSourceCommand, } from "./commands/ListKeywordsForDataSourceCommand";
42
48
  import { ListNotificationsCommand, } from "./commands/ListNotificationsCommand";
@@ -480,6 +486,34 @@ var AuditManager = (function (_super) {
480
486
  return this.send(command, optionsOrCb);
481
487
  }
482
488
  };
489
+ AuditManager.prototype.getInsights = function (args, optionsOrCb, cb) {
490
+ var command = new GetInsightsCommand(args);
491
+ if (typeof optionsOrCb === "function") {
492
+ this.send(command, optionsOrCb);
493
+ }
494
+ else if (typeof cb === "function") {
495
+ if (typeof optionsOrCb !== "object")
496
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
497
+ this.send(command, optionsOrCb || {}, cb);
498
+ }
499
+ else {
500
+ return this.send(command, optionsOrCb);
501
+ }
502
+ };
503
+ AuditManager.prototype.getInsightsByAssessment = function (args, optionsOrCb, cb) {
504
+ var command = new GetInsightsByAssessmentCommand(args);
505
+ if (typeof optionsOrCb === "function") {
506
+ this.send(command, optionsOrCb);
507
+ }
508
+ else if (typeof cb === "function") {
509
+ if (typeof optionsOrCb !== "object")
510
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
511
+ this.send(command, optionsOrCb || {}, cb);
512
+ }
513
+ else {
514
+ return this.send(command, optionsOrCb);
515
+ }
516
+ };
483
517
  AuditManager.prototype.getOrganizationAdminAccount = function (args, optionsOrCb, cb) {
484
518
  var command = new GetOrganizationAdminAccountCommand(args);
485
519
  if (typeof optionsOrCb === "function") {
@@ -522,6 +556,20 @@ var AuditManager = (function (_super) {
522
556
  return this.send(command, optionsOrCb);
523
557
  }
524
558
  };
559
+ AuditManager.prototype.listAssessmentControlInsightsByControlDomain = function (args, optionsOrCb, cb) {
560
+ var command = new ListAssessmentControlInsightsByControlDomainCommand(args);
561
+ if (typeof optionsOrCb === "function") {
562
+ this.send(command, optionsOrCb);
563
+ }
564
+ else if (typeof cb === "function") {
565
+ if (typeof optionsOrCb !== "object")
566
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
567
+ this.send(command, optionsOrCb || {}, cb);
568
+ }
569
+ else {
570
+ return this.send(command, optionsOrCb);
571
+ }
572
+ };
525
573
  AuditManager.prototype.listAssessmentFrameworks = function (args, optionsOrCb, cb) {
526
574
  var command = new ListAssessmentFrameworksCommand(args);
527
575
  if (typeof optionsOrCb === "function") {
@@ -578,6 +626,48 @@ var AuditManager = (function (_super) {
578
626
  return this.send(command, optionsOrCb);
579
627
  }
580
628
  };
629
+ AuditManager.prototype.listControlDomainInsights = function (args, optionsOrCb, cb) {
630
+ var command = new ListControlDomainInsightsCommand(args);
631
+ if (typeof optionsOrCb === "function") {
632
+ this.send(command, optionsOrCb);
633
+ }
634
+ else if (typeof cb === "function") {
635
+ if (typeof optionsOrCb !== "object")
636
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
637
+ this.send(command, optionsOrCb || {}, cb);
638
+ }
639
+ else {
640
+ return this.send(command, optionsOrCb);
641
+ }
642
+ };
643
+ AuditManager.prototype.listControlDomainInsightsByAssessment = function (args, optionsOrCb, cb) {
644
+ var command = new ListControlDomainInsightsByAssessmentCommand(args);
645
+ if (typeof optionsOrCb === "function") {
646
+ this.send(command, optionsOrCb);
647
+ }
648
+ else if (typeof cb === "function") {
649
+ if (typeof optionsOrCb !== "object")
650
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
651
+ this.send(command, optionsOrCb || {}, cb);
652
+ }
653
+ else {
654
+ return this.send(command, optionsOrCb);
655
+ }
656
+ };
657
+ AuditManager.prototype.listControlInsightsByControlDomain = function (args, optionsOrCb, cb) {
658
+ var command = new ListControlInsightsByControlDomainCommand(args);
659
+ if (typeof optionsOrCb === "function") {
660
+ this.send(command, optionsOrCb);
661
+ }
662
+ else if (typeof cb === "function") {
663
+ if (typeof optionsOrCb !== "object")
664
+ throw new Error("Expect http options but get " + typeof optionsOrCb);
665
+ this.send(command, optionsOrCb || {}, cb);
666
+ }
667
+ else {
668
+ return this.send(command, optionsOrCb);
669
+ }
670
+ };
581
671
  AuditManager.prototype.listControls = function (args, optionsOrCb, cb) {
582
672
  var command = new ListControlsCommand(args);
583
673
  if (typeof optionsOrCb === "function") {
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { GetInsightsByAssessmentRequest, GetInsightsByAssessmentResponse } from "../models/models_0";
5
+ import { deserializeAws_restJson1GetInsightsByAssessmentCommand, serializeAws_restJson1GetInsightsByAssessmentCommand, } from "../protocols/Aws_restJson1";
6
+ var GetInsightsByAssessmentCommand = (function (_super) {
7
+ __extends(GetInsightsByAssessmentCommand, _super);
8
+ function GetInsightsByAssessmentCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ GetInsightsByAssessmentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AuditManagerClient";
18
+ var commandName = "GetInsightsByAssessmentCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: GetInsightsByAssessmentRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: GetInsightsByAssessmentResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetInsightsByAssessmentCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_restJson1GetInsightsByAssessmentCommand(input, context);
33
+ };
34
+ GetInsightsByAssessmentCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_restJson1GetInsightsByAssessmentCommand(output, context);
36
+ };
37
+ return GetInsightsByAssessmentCommand;
38
+ }($Command));
39
+ export { GetInsightsByAssessmentCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { GetInsightsRequest, GetInsightsResponse } from "../models/models_0";
5
+ import { deserializeAws_restJson1GetInsightsCommand, serializeAws_restJson1GetInsightsCommand, } from "../protocols/Aws_restJson1";
6
+ var GetInsightsCommand = (function (_super) {
7
+ __extends(GetInsightsCommand, _super);
8
+ function GetInsightsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ GetInsightsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AuditManagerClient";
18
+ var commandName = "GetInsightsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: GetInsightsRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: GetInsightsResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetInsightsCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_restJson1GetInsightsCommand(input, context);
33
+ };
34
+ GetInsightsCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_restJson1GetInsightsCommand(output, context);
36
+ };
37
+ return GetInsightsCommand;
38
+ }($Command));
39
+ export { GetInsightsCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListAssessmentControlInsightsByControlDomainRequest, ListAssessmentControlInsightsByControlDomainResponse, } from "../models/models_0";
5
+ import { deserializeAws_restJson1ListAssessmentControlInsightsByControlDomainCommand, serializeAws_restJson1ListAssessmentControlInsightsByControlDomainCommand, } from "../protocols/Aws_restJson1";
6
+ var ListAssessmentControlInsightsByControlDomainCommand = (function (_super) {
7
+ __extends(ListAssessmentControlInsightsByControlDomainCommand, _super);
8
+ function ListAssessmentControlInsightsByControlDomainCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListAssessmentControlInsightsByControlDomainCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AuditManagerClient";
18
+ var commandName = "ListAssessmentControlInsightsByControlDomainCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListAssessmentControlInsightsByControlDomainRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: ListAssessmentControlInsightsByControlDomainResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListAssessmentControlInsightsByControlDomainCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_restJson1ListAssessmentControlInsightsByControlDomainCommand(input, context);
33
+ };
34
+ ListAssessmentControlInsightsByControlDomainCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_restJson1ListAssessmentControlInsightsByControlDomainCommand(output, context);
36
+ };
37
+ return ListAssessmentControlInsightsByControlDomainCommand;
38
+ }($Command));
39
+ export { ListAssessmentControlInsightsByControlDomainCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListControlDomainInsightsByAssessmentRequest, ListControlDomainInsightsByAssessmentResponse, } from "../models/models_0";
5
+ import { deserializeAws_restJson1ListControlDomainInsightsByAssessmentCommand, serializeAws_restJson1ListControlDomainInsightsByAssessmentCommand, } from "../protocols/Aws_restJson1";
6
+ var ListControlDomainInsightsByAssessmentCommand = (function (_super) {
7
+ __extends(ListControlDomainInsightsByAssessmentCommand, _super);
8
+ function ListControlDomainInsightsByAssessmentCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListControlDomainInsightsByAssessmentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AuditManagerClient";
18
+ var commandName = "ListControlDomainInsightsByAssessmentCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListControlDomainInsightsByAssessmentRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: ListControlDomainInsightsByAssessmentResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListControlDomainInsightsByAssessmentCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_restJson1ListControlDomainInsightsByAssessmentCommand(input, context);
33
+ };
34
+ ListControlDomainInsightsByAssessmentCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_restJson1ListControlDomainInsightsByAssessmentCommand(output, context);
36
+ };
37
+ return ListControlDomainInsightsByAssessmentCommand;
38
+ }($Command));
39
+ export { ListControlDomainInsightsByAssessmentCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListControlDomainInsightsRequest, ListControlDomainInsightsResponse } from "../models/models_0";
5
+ import { deserializeAws_restJson1ListControlDomainInsightsCommand, serializeAws_restJson1ListControlDomainInsightsCommand, } from "../protocols/Aws_restJson1";
6
+ var ListControlDomainInsightsCommand = (function (_super) {
7
+ __extends(ListControlDomainInsightsCommand, _super);
8
+ function ListControlDomainInsightsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListControlDomainInsightsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AuditManagerClient";
18
+ var commandName = "ListControlDomainInsightsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListControlDomainInsightsRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: ListControlDomainInsightsResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListControlDomainInsightsCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_restJson1ListControlDomainInsightsCommand(input, context);
33
+ };
34
+ ListControlDomainInsightsCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_restJson1ListControlDomainInsightsCommand(output, context);
36
+ };
37
+ return ListControlDomainInsightsCommand;
38
+ }($Command));
39
+ export { ListControlDomainInsightsCommand };
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
+ import { Command as $Command } from "@aws-sdk/smithy-client";
4
+ import { ListControlInsightsByControlDomainRequest, ListControlInsightsByControlDomainResponse, } from "../models/models_0";
5
+ import { deserializeAws_restJson1ListControlInsightsByControlDomainCommand, serializeAws_restJson1ListControlInsightsByControlDomainCommand, } from "../protocols/Aws_restJson1";
6
+ var ListControlInsightsByControlDomainCommand = (function (_super) {
7
+ __extends(ListControlInsightsByControlDomainCommand, _super);
8
+ function ListControlInsightsByControlDomainCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
12
+ }
13
+ ListControlInsightsByControlDomainCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
14
+ this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "AuditManagerClient";
18
+ var commandName = "ListControlInsightsByControlDomainCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
23
+ inputFilterSensitiveLog: ListControlInsightsByControlDomainRequest.filterSensitiveLog,
24
+ outputFilterSensitiveLog: ListControlInsightsByControlDomainResponse.filterSensitiveLog,
25
+ };
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListControlInsightsByControlDomainCommand.prototype.serialize = function (input, context) {
32
+ return serializeAws_restJson1ListControlInsightsByControlDomainCommand(input, context);
33
+ };
34
+ ListControlInsightsByControlDomainCommand.prototype.deserialize = function (output, context) {
35
+ return deserializeAws_restJson1ListControlInsightsByControlDomainCommand(output, context);
36
+ };
37
+ return ListControlInsightsByControlDomainCommand;
38
+ }($Command));
39
+ export { ListControlInsightsByControlDomainCommand };
@@ -28,13 +28,19 @@ export * from "./GetEvidenceCommand";
28
28
  export * from "./GetEvidenceFolderCommand";
29
29
  export * from "./GetEvidenceFoldersByAssessmentCommand";
30
30
  export * from "./GetEvidenceFoldersByAssessmentControlCommand";
31
+ export * from "./GetInsightsByAssessmentCommand";
32
+ export * from "./GetInsightsCommand";
31
33
  export * from "./GetOrganizationAdminAccountCommand";
32
34
  export * from "./GetServicesInScopeCommand";
33
35
  export * from "./GetSettingsCommand";
36
+ export * from "./ListAssessmentControlInsightsByControlDomainCommand";
34
37
  export * from "./ListAssessmentFrameworkShareRequestsCommand";
35
38
  export * from "./ListAssessmentFrameworksCommand";
36
39
  export * from "./ListAssessmentReportsCommand";
37
40
  export * from "./ListAssessmentsCommand";
41
+ export * from "./ListControlDomainInsightsByAssessmentCommand";
42
+ export * from "./ListControlDomainInsightsCommand";
43
+ export * from "./ListControlInsightsByControlDomainCommand";
38
44
  export * from "./ListControlsCommand";
39
45
  export * from "./ListKeywordsForDataSourceCommand";
40
46
  export * from "./ListNotificationsCommand";
@@ -27,27 +27,96 @@ var partitionHash = {
27
27
  "us-west-2",
28
28
  ],
29
29
  regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
30
- hostname: "auditmanager.{region}.amazonaws.com",
30
+ variants: [
31
+ {
32
+ hostname: "auditmanager.{region}.amazonaws.com",
33
+ tags: [],
34
+ },
35
+ {
36
+ hostname: "auditmanager-fips.{region}.amazonaws.com",
37
+ tags: ["fips"],
38
+ },
39
+ {
40
+ hostname: "auditmanager-fips.{region}.api.aws",
41
+ tags: ["dualstack", "fips"],
42
+ },
43
+ {
44
+ hostname: "auditmanager.{region}.api.aws",
45
+ tags: ["dualstack"],
46
+ },
47
+ ],
31
48
  },
32
49
  "aws-cn": {
33
50
  regions: ["cn-north-1", "cn-northwest-1"],
34
51
  regionRegex: "^cn\\-\\w+\\-\\d+$",
35
- hostname: "auditmanager.{region}.amazonaws.com.cn",
52
+ variants: [
53
+ {
54
+ hostname: "auditmanager.{region}.amazonaws.com.cn",
55
+ tags: [],
56
+ },
57
+ {
58
+ hostname: "auditmanager-fips.{region}.amazonaws.com.cn",
59
+ tags: ["fips"],
60
+ },
61
+ {
62
+ hostname: "auditmanager-fips.{region}.api.amazonwebservices.com.cn",
63
+ tags: ["dualstack", "fips"],
64
+ },
65
+ {
66
+ hostname: "auditmanager.{region}.api.amazonwebservices.com.cn",
67
+ tags: ["dualstack"],
68
+ },
69
+ ],
36
70
  },
37
71
  "aws-iso": {
38
72
  regions: ["us-iso-east-1", "us-iso-west-1"],
39
73
  regionRegex: "^us\\-iso\\-\\w+\\-\\d+$",
40
- hostname: "auditmanager.{region}.c2s.ic.gov",
74
+ variants: [
75
+ {
76
+ hostname: "auditmanager.{region}.c2s.ic.gov",
77
+ tags: [],
78
+ },
79
+ {
80
+ hostname: "auditmanager-fips.{region}.c2s.ic.gov",
81
+ tags: ["fips"],
82
+ },
83
+ ],
41
84
  },
42
85
  "aws-iso-b": {
43
86
  regions: ["us-isob-east-1"],
44
87
  regionRegex: "^us\\-isob\\-\\w+\\-\\d+$",
45
- hostname: "auditmanager.{region}.sc2s.sgov.gov",
88
+ variants: [
89
+ {
90
+ hostname: "auditmanager.{region}.sc2s.sgov.gov",
91
+ tags: [],
92
+ },
93
+ {
94
+ hostname: "auditmanager-fips.{region}.sc2s.sgov.gov",
95
+ tags: ["fips"],
96
+ },
97
+ ],
46
98
  },
47
99
  "aws-us-gov": {
48
100
  regions: ["us-gov-east-1", "us-gov-west-1"],
49
101
  regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
50
- hostname: "auditmanager.{region}.amazonaws.com",
102
+ variants: [
103
+ {
104
+ hostname: "auditmanager.{region}.amazonaws.com",
105
+ tags: [],
106
+ },
107
+ {
108
+ hostname: "auditmanager-fips.{region}.amazonaws.com",
109
+ tags: ["fips"],
110
+ },
111
+ {
112
+ hostname: "auditmanager-fips.{region}.api.aws",
113
+ tags: ["dualstack", "fips"],
114
+ },
115
+ {
116
+ hostname: "auditmanager.{region}.api.aws",
117
+ tags: ["dualstack"],
118
+ },
119
+ ],
51
120
  },
52
121
  };
53
122
  export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
@@ -537,6 +537,30 @@ export var GetEvidenceFoldersByAssessmentControlResponse;
537
537
  (function (GetEvidenceFoldersByAssessmentControlResponse) {
538
538
  GetEvidenceFoldersByAssessmentControlResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
539
539
  })(GetEvidenceFoldersByAssessmentControlResponse || (GetEvidenceFoldersByAssessmentControlResponse = {}));
540
+ export var GetInsightsRequest;
541
+ (function (GetInsightsRequest) {
542
+ GetInsightsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
543
+ })(GetInsightsRequest || (GetInsightsRequest = {}));
544
+ export var Insights;
545
+ (function (Insights) {
546
+ Insights.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
547
+ })(Insights || (Insights = {}));
548
+ export var GetInsightsResponse;
549
+ (function (GetInsightsResponse) {
550
+ GetInsightsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
551
+ })(GetInsightsResponse || (GetInsightsResponse = {}));
552
+ export var GetInsightsByAssessmentRequest;
553
+ (function (GetInsightsByAssessmentRequest) {
554
+ GetInsightsByAssessmentRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
555
+ })(GetInsightsByAssessmentRequest || (GetInsightsByAssessmentRequest = {}));
556
+ export var InsightsByAssessment;
557
+ (function (InsightsByAssessment) {
558
+ InsightsByAssessment.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
559
+ })(InsightsByAssessment || (InsightsByAssessment = {}));
560
+ export var GetInsightsByAssessmentResponse;
561
+ (function (GetInsightsByAssessmentResponse) {
562
+ GetInsightsByAssessmentResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
563
+ })(GetInsightsByAssessmentResponse || (GetInsightsByAssessmentResponse = {}));
540
564
  export var GetOrganizationAdminAccountRequest;
541
565
  (function (GetOrganizationAdminAccountRequest) {
542
566
  GetOrganizationAdminAccountRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -577,6 +601,22 @@ export var GetSettingsResponse;
577
601
  (function (GetSettingsResponse) {
578
602
  GetSettingsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
579
603
  })(GetSettingsResponse || (GetSettingsResponse = {}));
604
+ export var ListAssessmentControlInsightsByControlDomainRequest;
605
+ (function (ListAssessmentControlInsightsByControlDomainRequest) {
606
+ ListAssessmentControlInsightsByControlDomainRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
607
+ })(ListAssessmentControlInsightsByControlDomainRequest || (ListAssessmentControlInsightsByControlDomainRequest = {}));
608
+ export var EvidenceInsights;
609
+ (function (EvidenceInsights) {
610
+ EvidenceInsights.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
611
+ })(EvidenceInsights || (EvidenceInsights = {}));
612
+ export var ControlInsightsMetadataByAssessmentItem;
613
+ (function (ControlInsightsMetadataByAssessmentItem) {
614
+ ControlInsightsMetadataByAssessmentItem.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
615
+ })(ControlInsightsMetadataByAssessmentItem || (ControlInsightsMetadataByAssessmentItem = {}));
616
+ export var ListAssessmentControlInsightsByControlDomainResponse;
617
+ (function (ListAssessmentControlInsightsByControlDomainResponse) {
618
+ ListAssessmentControlInsightsByControlDomainResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
619
+ })(ListAssessmentControlInsightsByControlDomainResponse || (ListAssessmentControlInsightsByControlDomainResponse = {}));
580
620
  export var ListAssessmentFrameworksRequest;
581
621
  (function (ListAssessmentFrameworksRequest) {
582
622
  ListAssessmentFrameworksRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -609,6 +649,38 @@ export var ListAssessmentsResponse;
609
649
  (function (ListAssessmentsResponse) {
610
650
  ListAssessmentsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
611
651
  })(ListAssessmentsResponse || (ListAssessmentsResponse = {}));
652
+ export var ListControlDomainInsightsRequest;
653
+ (function (ListControlDomainInsightsRequest) {
654
+ ListControlDomainInsightsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
655
+ })(ListControlDomainInsightsRequest || (ListControlDomainInsightsRequest = {}));
656
+ export var ControlDomainInsights;
657
+ (function (ControlDomainInsights) {
658
+ ControlDomainInsights.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
659
+ })(ControlDomainInsights || (ControlDomainInsights = {}));
660
+ export var ListControlDomainInsightsResponse;
661
+ (function (ListControlDomainInsightsResponse) {
662
+ ListControlDomainInsightsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
663
+ })(ListControlDomainInsightsResponse || (ListControlDomainInsightsResponse = {}));
664
+ export var ListControlDomainInsightsByAssessmentRequest;
665
+ (function (ListControlDomainInsightsByAssessmentRequest) {
666
+ ListControlDomainInsightsByAssessmentRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
667
+ })(ListControlDomainInsightsByAssessmentRequest || (ListControlDomainInsightsByAssessmentRequest = {}));
668
+ export var ListControlDomainInsightsByAssessmentResponse;
669
+ (function (ListControlDomainInsightsByAssessmentResponse) {
670
+ ListControlDomainInsightsByAssessmentResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
671
+ })(ListControlDomainInsightsByAssessmentResponse || (ListControlDomainInsightsByAssessmentResponse = {}));
672
+ export var ListControlInsightsByControlDomainRequest;
673
+ (function (ListControlInsightsByControlDomainRequest) {
674
+ ListControlInsightsByControlDomainRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
675
+ })(ListControlInsightsByControlDomainRequest || (ListControlInsightsByControlDomainRequest = {}));
676
+ export var ControlInsightsMetadataItem;
677
+ (function (ControlInsightsMetadataItem) {
678
+ ControlInsightsMetadataItem.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
679
+ })(ControlInsightsMetadataItem || (ControlInsightsMetadataItem = {}));
680
+ export var ListControlInsightsByControlDomainResponse;
681
+ (function (ListControlInsightsByControlDomainResponse) {
682
+ ListControlInsightsByControlDomainResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
683
+ })(ListControlInsightsByControlDomainResponse || (ListControlInsightsByControlDomainResponse = {}));
612
684
  export var ListControlsRequest;
613
685
  (function (ListControlsRequest) {
614
686
  ListControlsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };