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