Skip to main content

incidents_alerts

Creates, updates, deletes, gets or lists an incidents_alerts resource.

Overview

Nameincidents_alerts
TypeResource
Idazure.sentinel.incidents_alerts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
kindstringThe kind of the entity.
propertiesobjectSecurityAlert entity properties

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, workspaceName, incidentIdGets all alerts for an incident.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
incidentIdstringIncident ID
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringThe name of the workspace.

SELECT examples

Gets all alerts for an incident.

SELECT
kind,
properties
FROM azure.sentinel.incidents_alerts
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND incidentId = '{{ incidentId }}' -- required
;