Skip to main content

vw_recovery_points

Creates, updates, deletes, gets or lists a vw_recovery_points resource.

Overview

Namevw_recovery_points
TypeView
Idazure.data_replication.vw_recovery_points

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
name as name,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.recoveryPointTime') as "recovery_point_time",
JSON_EXTRACT(properties, '$.recoveryPointType') as "recovery_point_type",
JSON_EXTRACT(properties, '$.customProperties') as "custom_properties",
subscriptionId,
resourceGroupName,
vaultName,
protectedItemName,
recoveryPointName
FROM azure.data_replication.recovery_points
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND vaultName = 'replace-me' AND protectedItemName = 'replace-me';