vw_discovered_security_solutions
Creates, updates, deletes, gets or lists a vw_discovered_security_solutions
resource.
Overview
Name | vw_discovered_security_solutions |
Type | View |
Id | azure.security.vw_discovered_security_solutions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.securityFamily') as "security_family",
JSON_EXTRACT(properties, '$.offer') as "offer",
JSON_EXTRACT(properties, '$.publisher') as "publisher",
JSON_EXTRACT(properties, '$.sku') as "sku",
subscriptionId,
resourceGroupName,
ascLocation,
discoveredSecuritySolutionName
FROM azure.security.discovered_security_solutions
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.securityFamily') as "security_family",
json_extract_path_text(properties, '$.offer') as "offer",
json_extract_path_text(properties, '$.publisher') as "publisher",
json_extract_path_text(properties, '$.sku') as "sku",
subscriptionId,
resourceGroupName,
ascLocation,
discoveredSecuritySolutionName
FROM azure.security.discovered_security_solutions
WHERE subscriptionId = 'replace-me';