vw_deleted_services
Creates, updates, deletes, gets or lists a vw_deleted_services
resource.
Overview
Name | vw_deleted_services |
Type | View |
Id | azure.api_center.vw_deleted_services |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.scheduledPurgeDate') as "scheduled_purge_date",
JSON_EXTRACT(properties, '$.softDeletionDate') as "soft_deletion_date",
subscriptionId,
resourceGroupName,
deletedServiceName
FROM azure.api_center.deleted_services
WHERE subscriptionId = 'replace-me';
SELECT
json_extract_path_text(properties, '$.scheduledPurgeDate') as "scheduled_purge_date",
json_extract_path_text(properties, '$.softDeletionDate') as "soft_deletion_date",
subscriptionId,
resourceGroupName,
deletedServiceName
FROM azure.api_center.deleted_services
WHERE subscriptionId = 'replace-me';