vw_cluster_recovery_points
Creates, updates, deletes, gets or lists a vw_cluster_recovery_points
resource.
Overview
Name | vw_cluster_recovery_points |
Type | View |
Id | azure.recovery_services_site_recovery.vw_cluster_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,
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,
replicationProtectionClusterName,
recoveryPointName
FROM azure.recovery_services_site_recovery.cluster_recovery_points
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me' AND fabricName = 'replace-me' AND protectionContainerName = 'replace-me' AND replicationProtectionClusterName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
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, '$.providerSpecificDetails') as "provider_specific_details",
subscriptionId,
resourceGroupName,
resourceName,
fabricName,
protectionContainerName,
replicationProtectionClusterName,
recoveryPointName
FROM azure.recovery_services_site_recovery.cluster_recovery_points
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me' AND fabricName = 'replace-me' AND protectionContainerName = 'replace-me' AND replicationProtectionClusterName = 'replace-me';