Skip to main content

get_triggered_analytics_rule_runs

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

Overview

Nameget_triggered_analytics_rule_runs
TypeResource
Idazure.security_insight.get_triggered_analytics_rule_runs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
etagstringEtag of the azure resource.
executionTimeUtcstring (date-time)Required.
provisioningStatestringThe triggered analytics rule run provisioning state. Required. Known values are: "Accepted", "InProgress", "Succeeded", "Failed", and "Canceled". (Accepted, InProgress, Succeeded, Failed, Canceled)
ruleIdstringRequired.
ruleRunAdditionalDataobjectDictionary of .
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
triggeredAnalyticsRuleRunIdstringRequired.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, workspace_name, subscription_idGets the triggered analytics rule runs.

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
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring
workspace_namestringThe name of the workspace. Required.

SELECT examples

Gets the triggered analytics rule runs.

SELECT
id,
name,
etag,
executionTimeUtc,
provisioningState,
ruleId,
ruleRunAdditionalData,
systemData,
triggeredAnalyticsRuleRunId,
type
FROM azure.security_insight.get_triggered_analytics_rule_runs
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;