vw_enterprise_policies
Creates, updates, deletes, gets or lists a vw_enterprise_policies
resource.
Overview
Name | vw_enterprise_policies |
Type | View |
Id | azure_extras.power_platform.vw_enterprise_policies |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
location as location,
tags as tags,
identity as identity,
kind as kind,
systemData as system_data,
JSON_EXTRACT(properties, '$.systemId') as "system_id",
JSON_EXTRACT(properties, '$.lockbox') as "lockbox",
JSON_EXTRACT(properties, '$.encryption') as "encryption",
JSON_EXTRACT(properties, '$.networkInjection') as "network_injection",
JSON_EXTRACT(properties, '$.healthStatus') as "health_status",
subscriptionId,
resourceGroupName,
enterprisePolicyName
FROM azure_extras.power_platform.enterprise_policies
WHERE subscriptionId = 'replace-me';
SELECT
location as location,
tags as tags,
identity as identity,
kind as kind,
systemData as system_data,
json_extract_path_text(properties, '$.systemId') as "system_id",
json_extract_path_text(properties, '$.lockbox') as "lockbox",
json_extract_path_text(properties, '$.encryption') as "encryption",
json_extract_path_text(properties, '$.networkInjection') as "network_injection",
json_extract_path_text(properties, '$.healthStatus') as "health_status",
subscriptionId,
resourceGroupName,
enterprisePolicyName
FROM azure_extras.power_platform.enterprise_policies
WHERE subscriptionId = 'replace-me';