vw_assessments
Creates, updates, deletes, gets or lists a vw_assessments
resource.
Overview
Name | vw_assessments |
Type | View |
Id | azure.security.vw_assessments |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.status') as "status",
JSON_EXTRACT(properties, '$.resourceDetails') as "resource_details",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.additionalData') as "additional_data",
JSON_EXTRACT(properties, '$.links') as "links",
JSON_EXTRACT(properties, '$.metadata') as "metadata",
JSON_EXTRACT(properties, '$.partnersData') as "partners_data",
resourceId,
assessmentName,
scope
FROM azure.security.assessments
WHERE scope = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.status') as "status",
json_extract_path_text(properties, '$.resourceDetails') as "resource_details",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.additionalData') as "additional_data",
json_extract_path_text(properties, '$.links') as "links",
json_extract_path_text(properties, '$.metadata') as "metadata",
json_extract_path_text(properties, '$.partnersData') as "partners_data",
resourceId,
assessmentName,
scope
FROM azure.security.assessments
WHERE scope = 'replace-me';