Skip to main content

incidents_bookmarks

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

Overview

Nameincidents_bookmarks
TypeResource
Idazure.sentinel.incidents_bookmarks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
kindstringThe kind of the entity.
propertiesobjectHuntingBookmark entity properties

Methods

The following methods are available for this resource:

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

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