vw_secure_scores
Creates, updates, deletes, gets or lists a vw_secure_scores
resource.
Overview
Name | vw_secure_scores |
Type | View |
Id | azure.security.vw_secure_scores |
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, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.score') as "score",
JSON_EXTRACT(properties, '$.weight') as "weight",
subscriptionId,
secureScoreName
FROM azure.security.secure_scores
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.score') as "score",
json_extract_path_text(properties, '$.weight') as "weight",
subscriptionId,
secureScoreName
FROM azure.security.secure_scores
WHERE subscriptionId = 'replace-me';