Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .generated-info
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"spec_repo_commit": "356ca3c",
"generated": "2025-07-31 15:21:07.525"
"spec_repo_commit": "ab8171f",
"generated": "2025-07-31 17:35:11.690"
}
8 changes: 6 additions & 2 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31780,7 +31780,9 @@ paths:
- security_monitoring_signals_write
/api/v1/security_analytics/signals/{signal_id}/assignee:
patch:
description: Modify the triage assignee of a security signal.
deprecated: true
description: This endpoint is deprecated - Modify the triage assignee of a security
signal.
operationId: EditSecurityMonitoringSignalAssignee
parameters:
- $ref: '#/components/parameters/SignalID'
Expand Down Expand Up @@ -31828,7 +31830,9 @@ paths:
- security_monitoring_signals_write
/api/v1/security_analytics/signals/{signal_id}/state:
patch:
description: Change the triage state of a security signal.
deprecated: true
description: This endpoint is deprecated - Change the triage state of a security
signal.
operationId: EditSecurityMonitoringSignalState
parameters:
- $ref: '#/components/parameters/SignalID'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,9 @@ public SuccessfulSignalUpdateResponse addSecurityMonitoringSignalToIncident(
* @param body Attributes describing the signal update. (required)
* @return SuccessfulSignalUpdateResponse
* @throws ApiException if fails to make API call
* @deprecated
*/
@Deprecated
public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalAssignee(
String signalId, SignalAssigneeUpdateRequest body) throws ApiException {
return editSecurityMonitoringSignalAssigneeWithHttpInfo(signalId, body).getData();
Expand All @@ -240,7 +242,9 @@ public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalAssignee(
* @param signalId The ID of the signal. (required)
* @param body Attributes describing the signal update. (required)
* @return CompletableFuture<SuccessfulSignalUpdateResponse>
* @deprecated
*/
@Deprecated
public CompletableFuture<SuccessfulSignalUpdateResponse>
editSecurityMonitoringSignalAssigneeAsync(String signalId, SignalAssigneeUpdateRequest body) {
return editSecurityMonitoringSignalAssigneeWithHttpInfoAsync(signalId, body)
Expand All @@ -251,7 +255,7 @@ public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalAssignee(
}

/**
* Modify the triage assignee of a security signal.
* This endpoint is deprecated - Modify the triage assignee of a security signal.
*
* @param signalId The ID of the signal. (required)
* @param body Attributes describing the signal update. (required)
Expand All @@ -267,7 +271,10 @@ public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalAssignee(
* <tr><td> 404 </td><td> Not Found </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
*
* @deprecated
*/
@Deprecated
public ApiResponse<SuccessfulSignalUpdateResponse>
editSecurityMonitoringSignalAssigneeWithHttpInfo(
String signalId, SignalAssigneeUpdateRequest body) throws ApiException {
Expand Down Expand Up @@ -323,7 +330,9 @@ public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalAssignee(
* @param signalId The ID of the signal. (required)
* @param body Attributes describing the signal update. (required)
* @return CompletableFuture&lt;ApiResponse&lt;SuccessfulSignalUpdateResponse&gt;&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<ApiResponse<SuccessfulSignalUpdateResponse>>
editSecurityMonitoringSignalAssigneeWithHttpInfoAsync(
String signalId, SignalAssigneeUpdateRequest body) {
Expand Down Expand Up @@ -396,7 +405,9 @@ public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalAssignee(
* @param body Attributes describing the signal update. (required)
* @return SuccessfulSignalUpdateResponse
* @throws ApiException if fails to make API call
* @deprecated
*/
@Deprecated
public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalState(
String signalId, SignalStateUpdateRequest body) throws ApiException {
return editSecurityMonitoringSignalStateWithHttpInfo(signalId, body).getData();
Expand All @@ -410,7 +421,9 @@ public SuccessfulSignalUpdateResponse editSecurityMonitoringSignalState(
* @param signalId The ID of the signal. (required)
* @param body Attributes describing the signal update. (required)
* @return CompletableFuture&lt;SuccessfulSignalUpdateResponse&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<SuccessfulSignalUpdateResponse> editSecurityMonitoringSignalStateAsync(
String signalId, SignalStateUpdateRequest body) {
return editSecurityMonitoringSignalStateWithHttpInfoAsync(signalId, body)
Expand All @@ -421,7 +434,7 @@ public CompletableFuture<SuccessfulSignalUpdateResponse> editSecurityMonitoringS
}

/**
* Change the triage state of a security signal.
* This endpoint is deprecated - Change the triage state of a security signal.
*
* @param signalId The ID of the signal. (required)
* @param body Attributes describing the signal update. (required)
Expand All @@ -437,7 +450,10 @@ public CompletableFuture<SuccessfulSignalUpdateResponse> editSecurityMonitoringS
* <tr><td> 404 </td><td> Not Found </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
*
* @deprecated
*/
@Deprecated
public ApiResponse<SuccessfulSignalUpdateResponse> editSecurityMonitoringSignalStateWithHttpInfo(
String signalId, SignalStateUpdateRequest body) throws ApiException {
Object localVarPostBody = body;
Expand Down Expand Up @@ -491,7 +507,9 @@ public ApiResponse<SuccessfulSignalUpdateResponse> editSecurityMonitoringSignalS
* @param signalId The ID of the signal. (required)
* @param body Attributes describing the signal update. (required)
* @return CompletableFuture&lt;ApiResponse&lt;SuccessfulSignalUpdateResponse&gt;&gt;
* @deprecated
*/
@Deprecated
public CompletableFuture<ApiResponse<SuccessfulSignalUpdateResponse>>
editSecurityMonitoringSignalStateWithHttpInfoAsync(
String signalId, SignalStateUpdateRequest body) {
Expand Down