vw_documentations
Creates, updates, deletes, gets or lists a vw_documentations
resource.
Overview
Name | vw_documentations |
Type | View |
Id | azure.api_management.vw_documentations |
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, '$.content') as "content",
subscriptionId,
resourceGroupName,
serviceName,
documentationId
FROM azure.api_management.documentations
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, '$.content') as "content",
subscriptionId,
resourceGroupName,
serviceName,
documentationId
FROM azure.api_management.documentations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me';