vw_workspace_settings
Creates, updates, deletes, gets or lists a vw_workspace_settings
resource.
Overview
Name | vw_workspace_settings |
Type | View |
Id | azure.security.vw_workspace_settings |
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, '$.workspaceId') as "workspace_id",
JSON_EXTRACT(properties, '$.scope') as "scope",
subscriptionId,
workspaceSettingName
FROM azure.security.workspace_settings
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.workspaceId') as "workspace_id",
json_extract_path_text(properties, '$.scope') as "scope",
subscriptionId,
workspaceSettingName
FROM azure.security.workspace_settings
WHERE subscriptionId = 'replace-me';