Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100233,6 +100233,7 @@ paths:
- security_monitoring_notification_profiles_write
/api/v2/security/vulnerabilities:
get:
deprecated: true
description: |-
Get a list of vulnerabilities.

Expand Down Expand Up @@ -100674,9 +100675,9 @@ paths:
operator: OR
permissions:
- appsec_vm_read
x-sunset: "2027-01-01"
x-unstable: |-
**Note**: This endpoint is a private preview.
If you are interested in accessing this API, [fill out this form](https://forms.gle/kMYC1sDr6WDUBDsx9).
**Note**: This endpoint is deprecated. See the [List Security Findings endpoint](https://docs.datadoghq.com/api/latest/security-monitoring/#list-security-findings).
/api/v2/security/vulnerabilities/notification_rules:
get:
description: Returns the list of notification rules for security vulnerabilities.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12056,7 +12056,9 @@ public ListVulnerabilitiesOptionalParameters filterAssetOperatingSystemVersion(
*
* @return ListVulnerabilitiesResponse
* @throws ApiException if fails to make API call
* @deprecated
*/
@Deprecated
public ListVulnerabilitiesResponse listVulnerabilities() throws ApiException {
return listVulnerabilitiesWithHttpInfo(new ListVulnerabilitiesOptionalParameters()).getData();
}
Expand All @@ -12067,7 +12069,9 @@ public ListVulnerabilitiesResponse listVulnerabilities() throws ApiException {
* <p>See {@link #listVulnerabilitiesWithHttpInfoAsync}.
*
* @return CompletableFuture&lt;ListVulnerabilitiesResponse&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<ListVulnerabilitiesResponse> listVulnerabilitiesAsync() {
return listVulnerabilitiesWithHttpInfoAsync(new ListVulnerabilitiesOptionalParameters())
.thenApply(
Expand All @@ -12084,7 +12088,9 @@ public CompletableFuture<ListVulnerabilitiesResponse> listVulnerabilitiesAsync()
* @param parameters Optional parameters for the request.
* @return ListVulnerabilitiesResponse
* @throws ApiException if fails to make API call
* @deprecated
*/
@Deprecated
public ListVulnerabilitiesResponse listVulnerabilities(
ListVulnerabilitiesOptionalParameters parameters) throws ApiException {
return listVulnerabilitiesWithHttpInfo(parameters).getData();
Expand All @@ -12097,7 +12103,9 @@ public ListVulnerabilitiesResponse listVulnerabilities(
*
* @param parameters Optional parameters for the request.
* @return CompletableFuture&lt;ListVulnerabilitiesResponse&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<ListVulnerabilitiesResponse> listVulnerabilitiesAsync(
ListVulnerabilitiesOptionalParameters parameters) {
return listVulnerabilitiesWithHttpInfoAsync(parameters)
Expand Down Expand Up @@ -12234,7 +12242,10 @@ public CompletableFuture<ListVulnerabilitiesResponse> listVulnerabilitiesAsync(
* <tr><td> 404 </td><td> Not found: There is no request associated with the provided token. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
*
* @deprecated
*/
@Deprecated
public ApiResponse<ListVulnerabilitiesResponse> listVulnerabilitiesWithHttpInfo(
ListVulnerabilitiesOptionalParameters parameters) throws ApiException {
// Check if unstable operation is enabled
Expand Down Expand Up @@ -12419,7 +12430,9 @@ public ApiResponse<ListVulnerabilitiesResponse> listVulnerabilitiesWithHttpInfo(
*
* @param parameters Optional parameters for the request.
* @return CompletableFuture&lt;ApiResponse&lt;ListVulnerabilitiesResponse&gt;&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<ApiResponse<ListVulnerabilitiesResponse>>
listVulnerabilitiesWithHttpInfoAsync(ListVulnerabilitiesOptionalParameters parameters) {
// Check if unstable operation is enabled
Expand Down
Loading