Skip to main content

incidents_entities

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

Overview

Nameincidents_entities
TypeResource
Idazure.sentinel.incidents_entities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
entitiesarrayArray of the incident related entities.
metaDataarrayThe metadata from the incident related entities results.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, workspaceName, incidentIdGets all entities 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 entities for an incident.

SELECT
entities,
metaData
FROM azure.sentinel.incidents_entities
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
AND incidentId = '{{ incidentId }}' -- required
;