You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .generator/schemas/v2/openapi.yaml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -123939,7 +123939,10 @@ paths:
123939
123939
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
123940
123940
/api/v2/compliance_findings/rule_based_view:
123941
123941
get:
123942
+
deprecated: true
123942
123943
description: |-
123944
+
**This endpoint is deprecated.** Use the [Security Monitoring - Search Security Findings](https://docs.datadoghq.com/api/latest/security-monitoring/search-security-findings/) endpoint instead.
123945
+
123943
123946
Get an aggregated view of compliance rules with their pass, fail, and muted finding counts.
123944
123947
Supports filtering by compliance framework, framework version, and additional query filters.
123945
123948
operationId: GetRuleBasedView
@@ -124017,6 +124020,7 @@ paths:
124017
124020
operator: OR
124018
124021
permissions:
124019
124022
- security_monitoring_findings_read
124023
+
x-sunset: "2027-06-26"
124020
124024
x-unstable: |-
124021
124025
**Note**: This endpoint is in Preview and subject to change.
124022
124026
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
Copy file name to clipboardExpand all lines: src/datadogV2/api/api_compliance.rs
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -143,6 +143,8 @@ impl ComplianceAPI {
143
143
Self{ config, client }
144
144
}
145
145
146
+
/// **This endpoint is deprecated.** Use the [Security Monitoring - Search Security Findings](<https://docs.datadoghq.com/api/latest/security-monitoring/search-security-findings/>) endpoint instead.
147
+
///
146
148
/// Get an aggregated view of compliance rules with their pass, fail, and muted finding counts.
147
149
/// Supports filtering by compliance framework, framework version, and additional query filters.
148
150
pubasyncfnget_rule_based_view(
@@ -165,6 +167,8 @@ impl ComplianceAPI {
165
167
}
166
168
}
167
169
170
+
/// **This endpoint is deprecated.** Use the [Security Monitoring - Search Security Findings](<https://docs.datadoghq.com/api/latest/security-monitoring/search-security-findings/>) endpoint instead.
171
+
///
168
172
/// Get an aggregated view of compliance rules with their pass, fail, and muted finding counts.
169
173
/// Supports filtering by compliance framework, framework version, and additional query filters.
0 commit comments