Skip to main content

threat_intelligence_indicator_indicators

Creates, updates, deletes, gets or lists a threat_intelligence_indicator_indicators resource.

Overview

Namethreat_intelligence_indicator_indicators
TypeResource
Idazure.sentinel.threat_intelligence_indicator_indicators

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
createinsertsubscriptionId, resourceGroupName, workspaceNameCreate a new threat intelligence indicator.

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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringThe name of the workspace.

INSERT examples

Create a new threat intelligence indicator.

INSERT INTO azure.sentinel.threat_intelligence_indicator_indicators (
data__kind,
data__properties,
subscriptionId,
resourceGroupName,
workspaceName
)
SELECT
'{{ kind }}',
'{{ properties }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ workspaceName }}'
RETURNING
etag,
kind
;