Skip to main content

vw_recovery_points

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

Overview

Namevw_recovery_points
TypeView
Idazure.recovery_services_site_recovery.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,
location as location,
type as type,
JSON_EXTRACT(properties, '$.recoveryPointTime') as "recovery_point_time",
JSON_EXTRACT(properties, '$.recoveryPointType') as "recovery_point_type",
JSON_EXTRACT(properties, '$.providerSpecificDetails') as "provider_specific_details",
subscriptionId,
resourceGroupName,
resourceName,
fabricName,
protectionContainerName,
replicatedProtectedItemName,
recoveryPointName
FROM azure.recovery_services_site_recovery.recovery_points
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me' AND fabricName = 'replace-me' AND protectionContainerName = 'replace-me' AND replicatedProtectedItemName = 'replace-me';