vw_recovery_points
Creates, updates, deletes, gets or lists a vw_recovery_points
resource.
Overview
Name | vw_recovery_points |
Type | View |
Id | azure.data_replication.vw_recovery_points |
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,
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';
SELECT
id as id,
name as name,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.recoveryPointTime') as "recovery_point_time",
json_extract_path_text(properties, '$.recoveryPointType') as "recovery_point_type",
json_extract_path_text(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';