Skip to main content

vw_restore_points

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

Overview

Namevw_restore_points
TypeView
Idazure.compute.vw_restore_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,
JSON_EXTRACT(properties, '$.excludeDisks') as "exclude_disks",
JSON_EXTRACT(properties, '$.sourceMetadata') as "source_metadata",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.consistencyMode') as "consistency_mode",
JSON_EXTRACT(properties, '$.timeCreated') as "time_created",
JSON_EXTRACT(properties, '$.sourceRestorePoint') as "source_restore_point",
JSON_EXTRACT(properties, '$.instanceView') as "instance_view",
subscriptionId,
resourceGroupName,
restorePointCollectionName,
restorePointName
FROM azure.compute.restore_points
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND restorePointCollectionName = 'replace-me' AND restorePointName = 'replace-me';