entities_get_timeline
Creates, updates, deletes, gets or lists an entities_get_timeline resource.
Overview
| Name | entities_get_timeline |
| Type | Resource |
| Id | azure.security_insight.entities_get_timeline |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
metaData | object | The metadata from the timeline operation results. |
value | array | The timeline result values. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resource_group_name, workspace_name, entity_id, subscription_id | Timeline 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.
| Name | Datatype | Description |
|---|---|---|
entity_id | string | entity ID. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
workspace_name | string | The name of the workspace. Required. |
SELECT examples
- list
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
;