iot-security-alert-post-processing
IoT alert post processing script to resolve the alert in IoT security portal using API
python · IoT by Palo Alto Networks
Details
| ID | iot-security-alert-post-processing |
|---|---|
| Language | python |
| From Version | 5.0.0 |
| Docker Image | demisto/python3:3.12.13.10116658 |
| Tags | iot post-processing |
README
IoT alert post processing script to resolve the alert in IoT security portal using API.
Script Data
| Name | Description |
|---|---|
| Script Type | python3 |
| Tags | iot, post-processing |
| Cortex XSOAR Version | 5.5.0 |
This script executes the ‘iot-security-resolve-alert’ command to resolve an alert in PANW IoT security portal during post-processing.
Inputs
| Argument Name | Description |
|---|---|
| close_reason | The reason the alert was closed (either ‘Resolved’ or ‘No Action Needed’). |
Outputs
There are no outputs for this script.
import demistomock as demisto import iot_alert_post_processing from iot_alert_post_processing import iot_resolve_alert _INCIDENT = {"id": 28862, "labels": [{"type": "id", "value": "5ed08587fe03d30d000016e8"}]} def test_iot_resolve_alert(monkeypatch, mocker): """ Scenario: resolving alert in post processing after closing the XSOAR incident Given - An alert incident When - Resolving an alert in IoT Security Portal Then - Ensure the correct parameters to the iot-security-resolve-alert command """ monkeypatch.setattr(iot_alert_post_processing, "_get_incident", lambda: _INCIDENT) execute_mocker = mocker.patch.object(demisto, "executeCommand") expected_command = "iot-security-resolve-alert" expected_args = { "id": "5ed08587fe03d30d000016e8", "reason": "resolved by XSOAR incident 28862", "reason_type": "No Action Needed", } iot_resolve_alert() execute_mocker.assert_called_with(expected_command, expected_args)