vw_api_issue_attachments
Creates, updates, deletes, gets or lists a vw_api_issue_attachments
resource.
Overview
Name | vw_api_issue_attachments |
Type | View |
Id | azure.api_management.vw_api_issue_attachments |
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, '$.contentFormat') as "content_format",
JSON_EXTRACT(properties, '$.content') as "content",
subscriptionId,
resourceGroupName,
serviceName,
apiId,
issueId,
attachmentId
FROM azure.api_management.api_issue_attachments
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND apiId = 'replace-me' AND issueId = 'replace-me';
SELECT
json_extract_path_text(properties, '$.title') as "title",
json_extract_path_text(properties, '$.contentFormat') as "content_format",
json_extract_path_text(properties, '$.content') as "content",
subscriptionId,
resourceGroupName,
serviceName,
apiId,
issueId,
attachmentId
FROM azure.api_management.api_issue_attachments
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND apiId = 'replace-me' AND issueId = 'replace-me';