Skip to content

Commit 8902a6d

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Deprecate signals triage v1 endpoints (#3029)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 5312732 commit 8902a6d

File tree

3 files changed

+28
-6
lines changed

3 files changed

+28
-6
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "356ca3c",
3-
"generated": "2025-07-31 15:21:07.525"
2+
"spec_repo_commit": "ab8171f",
3+
"generated": "2025-07-31 17:35:11.690"
44
}

.generator/schemas/v1/openapi.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31780,7 +31780,9 @@ paths:
3178031780
- security_monitoring_signals_write
3178131781
/api/v1/security_analytics/signals/{signal_id}/assignee:
3178231782
patch:
31783-
description: Modify the triage assignee of a security signal.
31783+
deprecated: true
31784+
description: This endpoint is deprecated - Modify the triage assignee of a security
31785+
signal.
3178431786
operationId: EditSecurityMonitoringSignalAssignee
3178531787
parameters:
3178631788
- $ref: '#/components/parameters/SignalID'
@@ -31828,7 +31830,9 @@ paths:
3182831830
- security_monitoring_signals_write
3182931831
/api/v1/security_analytics/signals/{signal_id}/state:
3183031832
patch:
31831-
description: Change the triage state of a security signal.
31833+
deprecated: true
31834+
description: This endpoint is deprecated - Change the triage state of a security
31835+
signal.
3183231836
operationId: EditSecurityMonitoringSignalState
3183331837
parameters:
3183431838
- $ref: '#/components/parameters/SignalID'

src/main/java/com/datadog/api/client/v1/api/SecurityMonitoringApi.java

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,9 @@ public SuccessfulSignalUpdateResponse addSecurityMonitoringSignalToIncident(
226226
* @param body Attributes describing the signal update. (required)
227227
* @return SuccessfulSignalUpdateResponse
228228
* @throws ApiException if fails to make API call
229+
* @deprecated
229230
*/
231+
@Deprecated
230232
public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalAssignee(
231233
String signalId, SignalAssigneeUpdateRequest body) throws ApiException {
232234
return editSecurityMonitoringSignalAssigneeWithHttpInfo(signalId, body).getData();
@@ -240,7 +242,9 @@ public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalAssignee(
240242
* @param signalId The ID of the signal. (required)
241243
* @param body Attributes describing the signal update. (required)
242244
* @return CompletableFuture&lt;SuccessfulSignalUpdateResponse&gt;
245+
* @deprecated
243246
*/
247+
@Deprecated
244248
public CompletableFuture<SuccessfulSignalUpdateResponse>
245249
editSecurityMonitoringSignalAssigneeAsync(String signalId, SignalAssigneeUpdateRequest body) {
246250
return editSecurityMonitoringSignalAssigneeWithHttpInfoAsync(signalId, body)
@@ -251,7 +255,7 @@ public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalAssignee(
251255
}
252256

253257
/**
254-
* Modify the triage assignee of a security signal.
258+
* This endpoint is deprecated - Modify the triage assignee of a security signal.
255259
*
256260
* @param signalId The ID of the signal. (required)
257261
* @param body Attributes describing the signal update. (required)
@@ -267,7 +271,10 @@ public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalAssignee(
267271
* <tr><td> 404 </td><td> Not Found </td><td> - </td></tr>
268272
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
269273
* </table>
274+
*
275+
* @deprecated
270276
*/
277+
@Deprecated
271278
public ApiResponse<SuccessfulSignalUpdateResponse>
272279
editSecurityMonitoringSignalAssigneeWithHttpInfo(
273280
String signalId, SignalAssigneeUpdateRequest body) throws ApiException {
@@ -323,7 +330,9 @@ public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalAssignee(
323330
* @param signalId The ID of the signal. (required)
324331
* @param body Attributes describing the signal update. (required)
325332
* @return CompletableFuture&lt;ApiResponse&lt;SuccessfulSignalUpdateResponse&gt;&gt;
333+
* @deprecated
326334
*/
335+
@Deprecated
327336
public CompletableFuture<ApiResponse<SuccessfulSignalUpdateResponse>>
328337
editSecurityMonitoringSignalAssigneeWithHttpInfoAsync(
329338
String signalId, SignalAssigneeUpdateRequest body) {
@@ -396,7 +405,9 @@ public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalAssignee(
396405
* @param body Attributes describing the signal update. (required)
397406
* @return SuccessfulSignalUpdateResponse
398407
* @throws ApiException if fails to make API call
408+
* @deprecated
399409
*/
410+
@Deprecated
400411
public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalState(
401412
String signalId, SignalStateUpdateRequest body) throws ApiException {
402413
return editSecurityMonitoringSignalStateWithHttpInfo(signalId, body).getData();
@@ -410,7 +421,9 @@ public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalState(
410421
* @param signalId The ID of the signal. (required)
411422
* @param body Attributes describing the signal update. (required)
412423
* @return CompletableFuture&lt;SuccessfulSignalUpdateResponse&gt;
424+
* @deprecated
413425
*/
426+
@Deprecated
414427
public CompletableFuture<SuccessfulSignalUpdateResponse> editSecurityMonitoringSignalStateAsync(
415428
String signalId, SignalStateUpdateRequest body) {
416429
return editSecurityMonitoringSignalStateWithHttpInfoAsync(signalId, body)
@@ -421,7 +434,7 @@ public CompletableFuture<SuccessfulSignalUpdateResponse> editSecurityMonitoringS
421434
}
422435

423436
/**
424-
* Change the triage state of a security signal.
437+
* This endpoint is deprecated - Change the triage state of a security signal.
425438
*
426439
* @param signalId The ID of the signal. (required)
427440
* @param body Attributes describing the signal update. (required)
@@ -437,7 +450,10 @@ public CompletableFuture<SuccessfulSignalUpdateResponse> editSecurityMonitoringS
437450
* <tr><td> 404 </td><td> Not Found </td><td> - </td></tr>
438451
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
439452
* </table>
453+
*
454+
* @deprecated
440455
*/
456+
@Deprecated
441457
public ApiResponse<SuccessfulSignalUpdateResponse> editSecurityMonitoringSignalStateWithHttpInfo(
442458
String signalId, SignalStateUpdateRequest body) throws ApiException {
443459
Object localVarPostBody = body;
@@ -491,7 +507,9 @@ public ApiResponse<SuccessfulSignalUpdateResponse> editSecurityMonitoringSignalS
491507
* @param signalId The ID of the signal. (required)
492508
* @param body Attributes describing the signal update. (required)
493509
* @return CompletableFuture&lt;ApiResponse&lt;SuccessfulSignalUpdateResponse&gt;&gt;
510+
* @deprecated
494511
*/
512+
@Deprecated
495513
public CompletableFuture<ApiResponse<SuccessfulSignalUpdateResponse>>
496514
editSecurityMonitoringSignalStateWithHttpInfoAsync(
497515
String signalId, SignalStateUpdateRequest body) {

0 commit comments

Comments
 (0)