vw_api_tag_descriptions
Creates, updates, deletes, gets or lists a vw_api_tag_descriptions
resource.
Overview
Name | vw_api_tag_descriptions |
Type | View |
Id | azure.api_management.vw_api_tag_descriptions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.tagId') as "tag_id",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.externalDocsUrl') as "external_docs_url",
JSON_EXTRACT(properties, '$.externalDocsDescription') as "external_docs_description",
subscriptionId,
resourceGroupName,
serviceName,
apiId,
tagDescriptionId
FROM azure.api_management.api_tag_descriptions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND apiId = 'replace-me';
SELECT
json_extract_path_text(properties, '$.tagId') as "tag_id",
json_extract_path_text(properties, '$.displayName') as "display_name",
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.externalDocsUrl') as "external_docs_url",
json_extract_path_text(properties, '$.externalDocsDescription') as "external_docs_description",
subscriptionId,
resourceGroupName,
serviceName,
apiId,
tagDescriptionId
FROM azure.api_management.api_tag_descriptions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serviceName = 'replace-me' AND apiId = 'replace-me';