vw_policy_fragments
Creates, updates, deletes, gets or lists a vw_policy_fragments
resource.
Overview
Name | vw_policy_fragments |
Type | View |
Id | azure.api_management.vw_policy_fragments |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.value') as "value",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.format') as "format",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
serviceName,
id
FROM azure.api_management.policy_fragments
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.value') as "value",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.format') as "format",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
subscriptionId,
resourceGroupName,
serviceName,
id
FROM azure.api_management.policy_fragments
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me';