vw_restore_points
Creates, updates, deletes, gets or lists a vw_restore_points
resource.
Overview
Name | vw_restore_points |
Type | View |
Id | azure.compute.vw_restore_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, '$.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';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.excludeDisks') as "exclude_disks",
json_extract_path_text(properties, '$.sourceMetadata') as "source_metadata",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.consistencyMode') as "consistency_mode",
json_extract_path_text(properties, '$.timeCreated') as "time_created",
json_extract_path_text(properties, '$.sourceRestorePoint') as "source_restore_point",
json_extract_path_text(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';