triggered_analytics_rule_run
Creates, updates, deletes, gets or lists a triggered_analytics_rule_run resource.
Overview
| Name | triggered_analytics_rule_run |
| Type | Resource |
| Id | azure.security_insight.triggered_analytics_rule_run |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
etag | string | Etag of the azure resource. |
executionTimeUtc | string (date-time) | Required. |
provisioningState | string | The triggered analytics rule run provisioning state. Required. Known values are: "Accepted", "InProgress", "Succeeded", "Failed", and "Canceled". (Accepted, InProgress, Succeeded, Failed, Canceled) |
ruleId | string | Required. |
ruleRunAdditionalData | object | Dictionary of . |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
triggeredAnalyticsRuleRunId | string | Required. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group_name, workspace_name, rule_run_id, subscription_id | Gets the triggered analytics rule run. |
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.
| Name | Datatype | Description |
|---|---|---|
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
rule_run_id | string | the triggered rule id. Required. |
subscription_id | string | |
workspace_name | string | The name of the workspace. Required. |
SELECT examples
- get
Gets the triggered analytics rule run.
SELECT
id,
name,
etag,
executionTimeUtc,
provisioningState,
ruleId,
ruleRunAdditionalData,
systemData,
triggeredAnalyticsRuleRunId,
type
FROM azure.security_insight.triggered_analytics_rule_run
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND rule_run_id = '{{ rule_run_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;