vw_managed_hsms_deleted
Creates, updates, deletes, gets or lists a vw_managed_hsms_deleted
resource.
Overview
Name | vw_managed_hsms_deleted |
Type | View |
Id | azure.key_vault.vw_managed_hsms_deleted |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.mhsmId') as "mhsm_id",
JSON_EXTRACT(properties, '$.location') as "location",
JSON_EXTRACT(properties, '$.deletionDate') as "deletion_date",
JSON_EXTRACT(properties, '$.scheduledPurgeDate') as "scheduled_purge_date",
JSON_EXTRACT(properties, '$.purgeProtectionEnabled') as "purge_protection_enabled",
JSON_EXTRACT(properties, '$.tags') as "tags",
subscriptionId,
location,
name
FROM azure.key_vault.managed_hsms_deleted
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.mhsmId') as "mhsm_id",
json_extract_path_text(properties, '$.location') as "location",
json_extract_path_text(properties, '$.deletionDate') as "deletion_date",
json_extract_path_text(properties, '$.scheduledPurgeDate') as "scheduled_purge_date",
json_extract_path_text(properties, '$.purgeProtectionEnabled') as "purge_protection_enabled",
json_extract_path_text(properties, '$.tags') as "tags",
subscriptionId,
location,
name
FROM azure.key_vault.managed_hsms_deleted
WHERE subscriptionId = 'replace-me';