vw_bookmarks
Creates, updates, deletes, gets or lists a vw_bookmarks
resource.
Overview
Name | vw_bookmarks |
Type | View |
Id | azure.sentinel.vw_bookmarks |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
etag as etag,
JSON_EXTRACT(properties, '$.created') as "created",
JSON_EXTRACT(properties, '$.createdBy') as "created_by",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.labels') as "labels",
JSON_EXTRACT(properties, '$.notes') as "notes",
JSON_EXTRACT(properties, '$.query') as "query",
JSON_EXTRACT(properties, '$.queryResult') as "query_result",
JSON_EXTRACT(properties, '$.updated') as "updated",
JSON_EXTRACT(properties, '$.updatedBy') as "updated_by",
JSON_EXTRACT(properties, '$.eventTime') as "event_time",
JSON_EXTRACT(properties, '$.queryStartTime') as "query_start_time",
JSON_EXTRACT(properties, '$.queryEndTime') as "query_end_time",
JSON_EXTRACT(properties, '$.incidentInfo') as "incident_info",
subscriptionId,
resourceGroupName,
workspaceName,
bookmarkId
FROM azure.sentinel.bookmarks
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';
SELECT
etag as etag,
json_extract_path_text(properties, '$.created') as "created",
json_extract_path_text(properties, '$.createdBy') as "created_by",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.labels') as "labels",
json_extract_path_text(properties, '$.notes') as "notes",
json_extract_path_text(properties, '$.query') as "query",
json_extract_path_text(properties, '$.queryResult') as "query_result",
json_extract_path_text(properties, '$.updated') as "updated",
json_extract_path_text(properties, '$.updatedBy') as "updated_by",
json_extract_path_text(properties, '$.eventTime') as "event_time",
json_extract_path_text(properties, '$.queryStartTime') as "query_start_time",
json_extract_path_text(properties, '$.queryEndTime') as "query_end_time",
json_extract_path_text(properties, '$.incidentInfo') as "incident_info",
subscriptionId,
resourceGroupName,
workspaceName,
bookmarkId
FROM azure.sentinel.bookmarks
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';