Disable Attack discovery schedule
Technical Preview; added in 9.2.0
Spaces method and path for this operation:
post /s/{space_id}/api/attack_discovery/schedules/{id}/_disable
Refer to Spaces for more information.
Disables an Attack discovery schedule, preventing it from running according to its configured interval. The schedule configuration is preserved and can be re-enabled later. Any currently running executions will complete, but no new executions will be started. Technical preview
POST
/api/attack_discovery/schedules/{id}/_disable
curl \
--request POST 'http://localhost:5601/api/attack_discovery/schedules/12345678-1234-1234-1234-123456789012/_disable' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json"
Response examples (200)
{
"id": "12345678-1234-1234-1234-123456789012"
}
Response examples (400)
{
"error": "Bad Request",
"message": "Invalid request parameters",
"status_code": 400
}