@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
@@ -1494,6 +1494,76 @@ export declare namespace GetEvidenceFoldersByAssessmentControlResponse {
1494
1494
 
1495
1495
  const filterSensitiveLog: (obj: GetEvidenceFoldersByAssessmentControlResponse) => any;
1496
1496
  }
1497
+ export interface GetInsightsRequest {
1498
+ }
1499
+ export declare namespace GetInsightsRequest {
1500
+
1501
+ const filterSensitiveLog: (obj: GetInsightsRequest) => any;
1502
+ }
1503
+
1504
+ export interface Insights {
1505
+
1506
+ activeAssessmentsCount?: number;
1507
+
1508
+ noncompliantEvidenceCount?: number;
1509
+
1510
+ compliantEvidenceCount?: number;
1511
+
1512
+ inconclusiveEvidenceCount?: number;
1513
+
1514
+ assessmentControlsCountByNoncompliantEvidence?: number;
1515
+
1516
+ totalAssessmentControlsCount?: number;
1517
+
1518
+ lastUpdated?: Date;
1519
+ }
1520
+ export declare namespace Insights {
1521
+
1522
+ const filterSensitiveLog: (obj: Insights) => any;
1523
+ }
1524
+ export interface GetInsightsResponse {
1525
+
1526
+ insights?: Insights;
1527
+ }
1528
+ export declare namespace GetInsightsResponse {
1529
+
1530
+ const filterSensitiveLog: (obj: GetInsightsResponse) => any;
1531
+ }
1532
+ export interface GetInsightsByAssessmentRequest {
1533
+
1534
+ assessmentId: string | undefined;
1535
+ }
1536
+ export declare namespace GetInsightsByAssessmentRequest {
1537
+
1538
+ const filterSensitiveLog: (obj: GetInsightsByAssessmentRequest) => any;
1539
+ }
1540
+
1541
+ export interface InsightsByAssessment {
1542
+
1543
+ noncompliantEvidenceCount?: number;
1544
+
1545
+ compliantEvidenceCount?: number;
1546
+
1547
+ inconclusiveEvidenceCount?: number;
1548
+
1549
+ assessmentControlsCountByNoncompliantEvidence?: number;
1550
+
1551
+ totalAssessmentControlsCount?: number;
1552
+
1553
+ lastUpdated?: Date;
1554
+ }
1555
+ export declare namespace InsightsByAssessment {
1556
+
1557
+ const filterSensitiveLog: (obj: InsightsByAssessment) => any;
1558
+ }
1559
+ export interface GetInsightsByAssessmentResponse {
1560
+
1561
+ insights?: InsightsByAssessment;
1562
+ }
1563
+ export declare namespace GetInsightsByAssessmentResponse {
1564
+
1565
+ const filterSensitiveLog: (obj: GetInsightsByAssessmentResponse) => any;
1566
+ }
1497
1567
  export interface GetOrganizationAdminAccountRequest {
1498
1568
  }
1499
1569
  export declare namespace GetOrganizationAdminAccountRequest {
@@ -1579,6 +1649,60 @@ export declare namespace GetSettingsResponse {
1579
1649
 
1580
1650
  const filterSensitiveLog: (obj: GetSettingsResponse) => any;
1581
1651
  }
1652
+ export interface ListAssessmentControlInsightsByControlDomainRequest {
1653
+
1654
+ controlDomainId: string | undefined;
1655
+
1656
+ assessmentId: string | undefined;
1657
+
1658
+ nextToken?: string;
1659
+
1660
+ maxResults?: number;
1661
+ }
1662
+ export declare namespace ListAssessmentControlInsightsByControlDomainRequest {
1663
+
1664
+ const filterSensitiveLog: (obj: ListAssessmentControlInsightsByControlDomainRequest) => any;
1665
+ }
1666
+
1667
+ export interface EvidenceInsights {
1668
+
1669
+ noncompliantEvidenceCount?: number;
1670
+
1671
+ compliantEvidenceCount?: number;
1672
+
1673
+ inconclusiveEvidenceCount?: number;
1674
+ }
1675
+ export declare namespace EvidenceInsights {
1676
+
1677
+ const filterSensitiveLog: (obj: EvidenceInsights) => any;
1678
+ }
1679
+
1680
+ export interface ControlInsightsMetadataByAssessmentItem {
1681
+
1682
+ name?: string;
1683
+
1684
+ id?: string;
1685
+
1686
+ evidenceInsights?: EvidenceInsights;
1687
+
1688
+ controlSetName?: string;
1689
+
1690
+ lastUpdated?: Date;
1691
+ }
1692
+ export declare namespace ControlInsightsMetadataByAssessmentItem {
1693
+
1694
+ const filterSensitiveLog: (obj: ControlInsightsMetadataByAssessmentItem) => any;
1695
+ }
1696
+ export interface ListAssessmentControlInsightsByControlDomainResponse {
1697
+
1698
+ controlInsightsByAssessment?: ControlInsightsMetadataByAssessmentItem[];
1699
+
1700
+ nextToken?: string;
1701
+ }
1702
+ export declare namespace ListAssessmentControlInsightsByControlDomainResponse {
1703
+
1704
+ const filterSensitiveLog: (obj: ListAssessmentControlInsightsByControlDomainResponse) => any;
1705
+ }
1582
1706
  export interface ListAssessmentFrameworksRequest {
1583
1707
 
1584
1708
  frameworkType: FrameworkType | string | undefined;
@@ -1645,6 +1769,8 @@ export declare namespace ListAssessmentReportsResponse {
1645
1769
  }
1646
1770
  export interface ListAssessmentsRequest {
1647
1771
 
1772
+ status?: AssessmentStatus | string;
1773
+
1648
1774
  nextToken?: string;
1649
1775
 
1650
1776
  maxResults?: number;
@@ -1663,6 +1789,104 @@ export declare namespace ListAssessmentsResponse {
1663
1789
 
1664
1790
  const filterSensitiveLog: (obj: ListAssessmentsResponse) => any;
1665
1791
  }
1792
+ export interface ListControlDomainInsightsRequest {
1793
+
1794
+ nextToken?: string;
1795
+
1796
+ maxResults?: number;
1797
+ }
1798
+ export declare namespace ListControlDomainInsightsRequest {
1799
+
1800
+ const filterSensitiveLog: (obj: ListControlDomainInsightsRequest) => any;
1801
+ }
1802
+
1803
+ export interface ControlDomainInsights {
1804
+
1805
+ name?: string;
1806
+
1807
+ id?: string;
1808
+
1809
+ controlsCountByNoncompliantEvidence?: number;
1810
+
1811
+ totalControlsCount?: number;
1812
+
1813
+ evidenceInsights?: EvidenceInsights;
1814
+
1815
+ lastUpdated?: Date;
1816
+ }
1817
+ export declare namespace ControlDomainInsights {
1818
+
1819
+ const filterSensitiveLog: (obj: ControlDomainInsights) => any;
1820
+ }
1821
+ export interface ListControlDomainInsightsResponse {
1822
+
1823
+ controlDomainInsights?: ControlDomainInsights[];
1824
+
1825
+ nextToken?: string;
1826
+ }
1827
+ export declare namespace ListControlDomainInsightsResponse {
1828
+
1829
+ const filterSensitiveLog: (obj: ListControlDomainInsightsResponse) => any;
1830
+ }
1831
+ export interface ListControlDomainInsightsByAssessmentRequest {
1832
+
1833
+ assessmentId: string | undefined;
1834
+
1835
+ nextToken?: string;
1836
+
1837
+ maxResults?: number;
1838
+ }
1839
+ export declare namespace ListControlDomainInsightsByAssessmentRequest {
1840
+
1841
+ const filterSensitiveLog: (obj: ListControlDomainInsightsByAssessmentRequest) => any;
1842
+ }
1843
+ export interface ListControlDomainInsightsByAssessmentResponse {
1844
+
1845
+ controlDomainInsights?: ControlDomainInsights[];
1846
+
1847
+ nextToken?: string;
1848
+ }
1849
+ export declare namespace ListControlDomainInsightsByAssessmentResponse {
1850
+
1851
+ const filterSensitiveLog: (obj: ListControlDomainInsightsByAssessmentResponse) => any;
1852
+ }
1853
+ export interface ListControlInsightsByControlDomainRequest {
1854
+
1855
+ controlDomainId: string | undefined;
1856
+
1857
+ nextToken?: string;
1858
+
1859
+ maxResults?: number;
1860
+ }
1861
+ export declare namespace ListControlInsightsByControlDomainRequest {
1862
+
1863
+ const filterSensitiveLog: (obj: ListControlInsightsByControlDomainRequest) => any;
1864
+ }
1865
+
1866
+ export interface ControlInsightsMetadataItem {
1867
+
1868
+ name?: string;
1869
+
1870
+ id?: string;
1871
+
1872
+ evidenceInsights?: EvidenceInsights;
1873
+
1874
+ lastUpdated?: Date;
1875
+ }
1876
+ export declare namespace ControlInsightsMetadataItem {
1877
+
1878
+ const filterSensitiveLog: (obj: ControlInsightsMetadataItem) => any;
1879
+ }
1880
+ export interface ListControlInsightsByControlDomainResponse {
1881
+
1882
+ controlInsightsMetadata?: ControlInsightsMetadataItem[];
1883
+
1884
+ nextToken?: string;
1885
+ }
1886
+ export declare namespace ListControlInsightsByControlDomainResponse {
1887
+
1888
+ const filterSensitiveLog: (obj: ListControlInsightsByControlDomainResponse) => any;
1889
+ }
1666
1890
  export interface ListControlsRequest {
1667
1891
 
1668
1892
  controlType: ControlType | string | undefined;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListAssessmentControlInsightsByControlDomainCommandInput, ListAssessmentControlInsightsByControlDomainCommandOutput } from "../commands/ListAssessmentControlInsightsByControlDomainCommand";
3
+ import { AuditManagerPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListAssessmentControlInsightsByControlDomain(config: AuditManagerPaginationConfiguration, input: ListAssessmentControlInsightsByControlDomainCommandInput, ...additionalArguments: any): Paginator<ListAssessmentControlInsightsByControlDomainCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListControlDomainInsightsByAssessmentCommandInput, ListControlDomainInsightsByAssessmentCommandOutput } from "../commands/ListControlDomainInsightsByAssessmentCommand";
3
+ import { AuditManagerPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListControlDomainInsightsByAssessment(config: AuditManagerPaginationConfiguration, input: ListControlDomainInsightsByAssessmentCommandInput, ...additionalArguments: any): Paginator<ListControlDomainInsightsByAssessmentCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListControlDomainInsightsCommandInput, ListControlDomainInsightsCommandOutput } from "../commands/ListControlDomainInsightsCommand";
3
+ import { AuditManagerPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListControlDomainInsights(config: AuditManagerPaginationConfiguration, input: ListControlDomainInsightsCommandInput, ...additionalArguments: any): Paginator<ListControlDomainInsightsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListControlInsightsByControlDomainCommandInput, ListControlInsightsByControlDomainCommandOutput } from "../commands/ListControlInsightsByControlDomainCommand";
3
+ import { AuditManagerPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListControlInsightsByControlDomain(config: AuditManagerPaginationConfiguration, input: ListControlInsightsByControlDomainCommandInput, ...additionalArguments: any): Paginator<ListControlInsightsByControlDomainCommandOutput>;
@@ -4,10 +4,14 @@ export * from "./GetEvidenceByEvidenceFolderPaginator";
4
4
  export * from "./GetEvidenceFoldersByAssessmentControlPaginator";
5
5
  export * from "./GetEvidenceFoldersByAssessmentPaginator";
6
6
  export * from "./Interfaces";
7
+ export * from "./ListAssessmentControlInsightsByControlDomainPaginator";
7
8
  export * from "./ListAssessmentFrameworkShareRequestsPaginator";
8
9
  export * from "./ListAssessmentFrameworksPaginator";
9
10
  export * from "./ListAssessmentReportsPaginator";
10
11
  export * from "./ListAssessmentsPaginator";
12
+ export * from "./ListControlDomainInsightsByAssessmentPaginator";
13
+ export * from "./ListControlDomainInsightsPaginator";
14
+ export * from "./ListControlInsightsByControlDomainPaginator";
11
15
  export * from "./ListControlsPaginator";
12
16
  export * from "./ListKeywordsForDataSourcePaginator";
13
17
  export * from "./ListNotificationsPaginator";
@@ -30,13 +30,19 @@ import { GetEvidenceCommandInput, GetEvidenceCommandOutput } from "../commands/G
30
30
  import { GetEvidenceFolderCommandInput, GetEvidenceFolderCommandOutput } from "../commands/GetEvidenceFolderCommand";
31
31
  import { GetEvidenceFoldersByAssessmentCommandInput, GetEvidenceFoldersByAssessmentCommandOutput } from "../commands/GetEvidenceFoldersByAssessmentCommand";
32
32
  import { GetEvidenceFoldersByAssessmentControlCommandInput, GetEvidenceFoldersByAssessmentControlCommandOutput } from "../commands/GetEvidenceFoldersByAssessmentControlCommand";
33
+ import { GetInsightsByAssessmentCommandInput, GetInsightsByAssessmentCommandOutput } from "../commands/GetInsightsByAssessmentCommand";
34
+ import { GetInsightsCommandInput, GetInsightsCommandOutput } from "../commands/GetInsightsCommand";
33
35
  import { GetOrganizationAdminAccountCommandInput, GetOrganizationAdminAccountCommandOutput } from "../commands/GetOrganizationAdminAccountCommand";
34
36
  import { GetServicesInScopeCommandInput, GetServicesInScopeCommandOutput } from "../commands/GetServicesInScopeCommand";
35
37
  import { GetSettingsCommandInput, GetSettingsCommandOutput } from "../commands/GetSettingsCommand";
38
+ import { ListAssessmentControlInsightsByControlDomainCommandInput, ListAssessmentControlInsightsByControlDomainCommandOutput } from "../commands/ListAssessmentControlInsightsByControlDomainCommand";
36
39
  import { ListAssessmentFrameworksCommandInput, ListAssessmentFrameworksCommandOutput } from "../commands/ListAssessmentFrameworksCommand";
37
40
  import { ListAssessmentFrameworkShareRequestsCommandInput, ListAssessmentFrameworkShareRequestsCommandOutput } from "../commands/ListAssessmentFrameworkShareRequestsCommand";
38
41
  import { ListAssessmentReportsCommandInput, ListAssessmentReportsCommandOutput } from "../commands/ListAssessmentReportsCommand";
39
42
  import { ListAssessmentsCommandInput, ListAssessmentsCommandOutput } from "../commands/ListAssessmentsCommand";
43
+ import { ListControlDomainInsightsByAssessmentCommandInput, ListControlDomainInsightsByAssessmentCommandOutput } from "../commands/ListControlDomainInsightsByAssessmentCommand";
44
+ import { ListControlDomainInsightsCommandInput, ListControlDomainInsightsCommandOutput } from "../commands/ListControlDomainInsightsCommand";
45
+ import { ListControlInsightsByControlDomainCommandInput, ListControlInsightsByControlDomainCommandOutput } from "../commands/ListControlInsightsByControlDomainCommand";
40
46
  import { ListControlsCommandInput, ListControlsCommandOutput } from "../commands/ListControlsCommand";
41
47
  import { ListKeywordsForDataSourceCommandInput, ListKeywordsForDataSourceCommandOutput } from "../commands/ListKeywordsForDataSourceCommand";
42
48
  import { ListNotificationsCommandInput, ListNotificationsCommandOutput } from "../commands/ListNotificationsCommand";
@@ -85,13 +91,19 @@ export declare const serializeAws_restJson1GetEvidenceByEvidenceFolderCommand: (
85
91
  export declare const serializeAws_restJson1GetEvidenceFolderCommand: (input: GetEvidenceFolderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
92
  export declare const serializeAws_restJson1GetEvidenceFoldersByAssessmentCommand: (input: GetEvidenceFoldersByAssessmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
87
93
  export declare const serializeAws_restJson1GetEvidenceFoldersByAssessmentControlCommand: (input: GetEvidenceFoldersByAssessmentControlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_restJson1GetInsightsCommand: (input: GetInsightsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
+ export declare const serializeAws_restJson1GetInsightsByAssessmentCommand: (input: GetInsightsByAssessmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
88
96
  export declare const serializeAws_restJson1GetOrganizationAdminAccountCommand: (input: GetOrganizationAdminAccountCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
97
  export declare const serializeAws_restJson1GetServicesInScopeCommand: (input: GetServicesInScopeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
98
  export declare const serializeAws_restJson1GetSettingsCommand: (input: GetSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
99
+ export declare const serializeAws_restJson1ListAssessmentControlInsightsByControlDomainCommand: (input: ListAssessmentControlInsightsByControlDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
91
100
  export declare const serializeAws_restJson1ListAssessmentFrameworksCommand: (input: ListAssessmentFrameworksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
92
101
  export declare const serializeAws_restJson1ListAssessmentFrameworkShareRequestsCommand: (input: ListAssessmentFrameworkShareRequestsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
93
102
  export declare const serializeAws_restJson1ListAssessmentReportsCommand: (input: ListAssessmentReportsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
103
  export declare const serializeAws_restJson1ListAssessmentsCommand: (input: ListAssessmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
104
+ export declare const serializeAws_restJson1ListControlDomainInsightsCommand: (input: ListControlDomainInsightsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
105
+ export declare const serializeAws_restJson1ListControlDomainInsightsByAssessmentCommand: (input: ListControlDomainInsightsByAssessmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1ListControlInsightsByControlDomainCommand: (input: ListControlInsightsByControlDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
107
  export declare const serializeAws_restJson1ListControlsCommand: (input: ListControlsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
96
108
  export declare const serializeAws_restJson1ListKeywordsForDataSourceCommand: (input: ListKeywordsForDataSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
109
  export declare const serializeAws_restJson1ListNotificationsCommand: (input: ListNotificationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -140,13 +152,19 @@ export declare const deserializeAws_restJson1GetEvidenceByEvidenceFolderCommand:
140
152
  export declare const deserializeAws_restJson1GetEvidenceFolderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEvidenceFolderCommandOutput>;
141
153
  export declare const deserializeAws_restJson1GetEvidenceFoldersByAssessmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEvidenceFoldersByAssessmentCommandOutput>;
142
154
  export declare const deserializeAws_restJson1GetEvidenceFoldersByAssessmentControlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEvidenceFoldersByAssessmentControlCommandOutput>;
155
+ export declare const deserializeAws_restJson1GetInsightsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInsightsCommandOutput>;
156
+ export declare const deserializeAws_restJson1GetInsightsByAssessmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInsightsByAssessmentCommandOutput>;
143
157
  export declare const deserializeAws_restJson1GetOrganizationAdminAccountCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOrganizationAdminAccountCommandOutput>;
144
158
  export declare const deserializeAws_restJson1GetServicesInScopeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetServicesInScopeCommandOutput>;
145
159
  export declare const deserializeAws_restJson1GetSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSettingsCommandOutput>;
160
+ export declare const deserializeAws_restJson1ListAssessmentControlInsightsByControlDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssessmentControlInsightsByControlDomainCommandOutput>;
146
161
  export declare const deserializeAws_restJson1ListAssessmentFrameworksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssessmentFrameworksCommandOutput>;
147
162
  export declare const deserializeAws_restJson1ListAssessmentFrameworkShareRequestsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssessmentFrameworkShareRequestsCommandOutput>;
148
163
  export declare const deserializeAws_restJson1ListAssessmentReportsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssessmentReportsCommandOutput>;
149
164
  export declare const deserializeAws_restJson1ListAssessmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAssessmentsCommandOutput>;
165
+ export declare const deserializeAws_restJson1ListControlDomainInsightsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListControlDomainInsightsCommandOutput>;
166
+ export declare const deserializeAws_restJson1ListControlDomainInsightsByAssessmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListControlDomainInsightsByAssessmentCommandOutput>;
167
+ export declare const deserializeAws_restJson1ListControlInsightsByControlDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListControlInsightsByControlDomainCommandOutput>;
150
168
  export declare const deserializeAws_restJson1ListControlsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListControlsCommandOutput>;
151
169
  export declare const deserializeAws_restJson1ListKeywordsForDataSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListKeywordsForDataSourceCommandOutput>;
152
170
  export declare const deserializeAws_restJson1ListNotificationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNotificationsCommandOutput>;
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: AuditManagerClientConfig) => {
14
14
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
15
  sha256: import("@aws-sdk/types").HashConstructor;
16
16
  streamCollector: import("@aws-sdk/types").StreamCollector;
17
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
18
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
17
19
  utf8Decoder: import("@aws-sdk/types").Decoder;
18
20
  utf8Encoder: import("@aws-sdk/types").Encoder;
19
21
  apiVersion: string;
@@ -14,6 +14,8 @@ export declare const getRuntimeConfig: (config: AuditManagerClientConfig) => {
14
14
  retryMode: string | import("@aws-sdk/types").Provider<string>;
15
15
  sha256: import("@aws-sdk/types").HashConstructor;
16
16
  streamCollector: import("@aws-sdk/types").StreamCollector;
17
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
18
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
17
19
  utf8Decoder: import("@aws-sdk/types").Decoder;
18
20
  utf8Encoder: import("@aws-sdk/types").Encoder;
19
21
  apiVersion: string;
@@ -16,6 +16,8 @@ export declare const getRuntimeConfig: (config: AuditManagerClientConfig) => {
16
16
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
17
  retryMode: string | import("@aws-sdk/types").Provider<string>;
18
18
  logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
21
  serviceId: string;
20
22
  region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
21
23
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-auditmanager",
3
3
  "description": "AWS SDK for JavaScript Auditmanager Client for Node.js, Browser and React Native",
4
- "version": "3.39.0",
4
+ "version": "3.43.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,32 +21,32 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "2.0.0",
23
23
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.39.0",
25
- "@aws-sdk/config-resolver": "3.39.0",
26
- "@aws-sdk/credential-provider-node": "3.39.0",
27
- "@aws-sdk/fetch-http-handler": "3.38.0",
28
- "@aws-sdk/hash-node": "3.38.0",
29
- "@aws-sdk/invalid-dependency": "3.38.0",
30
- "@aws-sdk/middleware-content-length": "3.38.0",
31
- "@aws-sdk/middleware-host-header": "3.38.0",
32
- "@aws-sdk/middleware-logger": "3.38.0",
33
- "@aws-sdk/middleware-retry": "3.39.0",
34
- "@aws-sdk/middleware-serde": "3.38.0",
35
- "@aws-sdk/middleware-signing": "3.39.0",
36
- "@aws-sdk/middleware-stack": "3.38.0",
37
- "@aws-sdk/middleware-user-agent": "3.38.0",
38
- "@aws-sdk/node-config-provider": "3.39.0",
39
- "@aws-sdk/node-http-handler": "3.38.0",
40
- "@aws-sdk/protocol-http": "3.38.0",
41
- "@aws-sdk/smithy-client": "3.38.0",
42
- "@aws-sdk/types": "3.38.0",
43
- "@aws-sdk/url-parser": "3.38.0",
24
+ "@aws-sdk/client-sts": "3.43.0",
25
+ "@aws-sdk/config-resolver": "3.40.0",
26
+ "@aws-sdk/credential-provider-node": "3.41.0",
27
+ "@aws-sdk/fetch-http-handler": "3.40.0",
28
+ "@aws-sdk/hash-node": "3.40.0",
29
+ "@aws-sdk/invalid-dependency": "3.40.0",
30
+ "@aws-sdk/middleware-content-length": "3.40.0",
31
+ "@aws-sdk/middleware-host-header": "3.40.0",
32
+ "@aws-sdk/middleware-logger": "3.40.0",
33
+ "@aws-sdk/middleware-retry": "3.40.0",
34
+ "@aws-sdk/middleware-serde": "3.40.0",
35
+ "@aws-sdk/middleware-signing": "3.40.0",
36
+ "@aws-sdk/middleware-stack": "3.40.0",
37
+ "@aws-sdk/middleware-user-agent": "3.40.0",
38
+ "@aws-sdk/node-config-provider": "3.40.0",
39
+ "@aws-sdk/node-http-handler": "3.40.0",
40
+ "@aws-sdk/protocol-http": "3.40.0",
41
+ "@aws-sdk/smithy-client": "3.41.0",
42
+ "@aws-sdk/types": "3.40.0",
43
+ "@aws-sdk/url-parser": "3.40.0",
44
44
  "@aws-sdk/util-base64-browser": "3.37.0",
45
45
  "@aws-sdk/util-base64-node": "3.37.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.37.0",
47
47
  "@aws-sdk/util-body-length-node": "3.37.0",
48
- "@aws-sdk/util-user-agent-browser": "3.38.0",
49
- "@aws-sdk/util-user-agent-node": "3.39.0",
48
+ "@aws-sdk/util-user-agent-browser": "3.40.0",
49
+ "@aws-sdk/util-user-agent-node": "3.40.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.37.0",
51
51
  "@aws-sdk/util-utf8-node": "3.37.0",
52
52
  "tslib": "^2.3.0"