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

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

Methods

NameAccessible byRequired ParamsDescription
createINSERTresourceGroupName, subscriptionId, workspaceNameCreate a new threat intelligence indicator.

INSERT example

Use the following StackQL query and manifest file to create a new threat_intelligence_indicator_indicators resource.

/*+ create */
INSERT INTO azure.sentinel.threat_intelligence_indicator_indicators (
resourceGroupName,
subscriptionId,
workspaceName,
kind,
properties
)
SELECT
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ workspaceName }}',
'{{ kind }}',
'{{ properties }}'
;