Add Security Monitoring API to dogshell #893
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Cloud SIEM API Support
Overview
This PR adds support for Cloud SIEM rule management and security signals retrieval in the Datadog Python API client.
Changes
Added
SecurityMonitoringRule
class to manage SIEM rules:Added
SecurityMonitoringSignal
class to retrieve and manage security signals:Added dogshell commands for security monitoring:
dogshell security-monitoring rules list
: List all security monitoring rulesdogshell security-monitoring rules get <rule_id>
: Get a specific ruledogshell security-monitoring rules create --file <rule.json>
: Create a new ruledogshell security-monitoring rules update <rule_id> --file <rule.json>
: Update a ruledogshell security-monitoring rules delete <rule_id>
: Delete a ruledogshell security-monitoring signals list
: List security signalsdogshell security-monitoring signals get <signal_id>
: Get a specific signaldogshell security-monitoring signals triage --state <state> <signal_id>
: Change triage stateAdded basic unit tests for new API classes
Updated CHANGELOG.md
Tests
Documentation
The API follows the standard Datadog REST API patterns described in:
https://docs.datadoghq.com/api/latest/security-monitoring/