vw_migration_recovery_points
Creates, updates, deletes, gets or lists a vw_migration_recovery_points
resource.
Overview
Name | vw_migration_recovery_points |
Type | View |
Id | azure.recovery_services_site_recovery.vw_migration_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,
location as location,
type as type,
JSON_EXTRACT(properties, '$.recoveryPointTime') as "recovery_point_time",
JSON_EXTRACT(properties, '$.recoveryPointType') as "recovery_point_type",
subscriptionId,
resourceGroupName,
resourceName,
fabricName,
protectionContainerName,
migrationItemName,
migrationRecoveryPointName
FROM azure.recovery_services_site_recovery.migration_recovery_points
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me' AND fabricName = 'replace-me' AND protectionContainerName = 'replace-me' AND migrationItemName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
json_extract_path_text(properties, '$.recoveryPointTime') as "recovery_point_time",
json_extract_path_text(properties, '$.recoveryPointType') as "recovery_point_type",
subscriptionId,
resourceGroupName,
resourceName,
fabricName,
protectionContainerName,
migrationItemName,
migrationRecoveryPointName
FROM azure.recovery_services_site_recovery.migration_recovery_points
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceName = 'replace-me' AND fabricName = 'replace-me' AND protectionContainerName = 'replace-me' AND migrationItemName = 'replace-me';