Skip to main content

entities_get_timeline

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

Overview

Nameentities_get_timeline
TypeResource
Idazure.security_insight.entities_get_timeline

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
metaDataobjectThe metadata from the timeline operation results.
valuearrayThe timeline result values.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, workspace_name, entity_id, subscription_idTimeline for an entity.

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
entity_idstringentity ID. Required.
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

Timeline for an entity.

SELECT
metaData,
value
FROM azure.security_insight.entities_get_timeline
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND workspace_name = '{{ workspace_name }}' -- required
AND entity_id = '{{ entity_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;