vw_software_inventories
Creates, updates, deletes, gets or lists a vw_software_inventories
resource.
Overview
Name | vw_software_inventories |
Type | View |
Id | azure.security.vw_software_inventories |
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, '$.deviceId') as "device_id",
JSON_EXTRACT(properties, '$.osPlatform') as "os_platform",
JSON_EXTRACT(properties, '$.vendor') as "vendor",
JSON_EXTRACT(properties, '$.softwareName') as "software_name",
JSON_EXTRACT(properties, '$.version') as "version",
JSON_EXTRACT(properties, '$.endOfSupportStatus') as "end_of_support_status",
JSON_EXTRACT(properties, '$.endOfSupportDate') as "end_of_support_date",
JSON_EXTRACT(properties, '$.numberOfKnownVulnerabilities') as "number_of_known_vulnerabilities",
JSON_EXTRACT(properties, '$.firstSeenAt') as "first_seen_at",
subscriptionId,
resourceGroupName,
resourceNamespace,
resourceType,
resourceName,
softwareName
FROM azure.security.software_inventories
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.deviceId') as "device_id",
json_extract_path_text(properties, '$.osPlatform') as "os_platform",
json_extract_path_text(properties, '$.vendor') as "vendor",
json_extract_path_text(properties, '$.softwareName') as "software_name",
json_extract_path_text(properties, '$.version') as "version",
json_extract_path_text(properties, '$.endOfSupportStatus') as "end_of_support_status",
json_extract_path_text(properties, '$.endOfSupportDate') as "end_of_support_date",
json_extract_path_text(properties, '$.numberOfKnownVulnerabilities') as "number_of_known_vulnerabilities",
json_extract_path_text(properties, '$.firstSeenAt') as "first_seen_at",
subscriptionId,
resourceGroupName,
resourceNamespace,
resourceType,
resourceName,
softwareName
FROM azure.security.software_inventories
WHERE subscriptionId = 'replace-me';