Skip to main content

vw_disk_restore_points

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

Overview

Namevw_disk_restore_points
TypeView
Idazure.compute.vw_disk_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, '$.timeCreated') as "time_created",
JSON_EXTRACT(properties, '$.sourceResourceId') as "source_resource_id",
JSON_EXTRACT(properties, '$.osType') as "os_type",
JSON_EXTRACT(properties, '$.hyperVGeneration') as "hyper_v_generation",
JSON_EXTRACT(properties, '$.purchasePlan') as "purchase_plan",
JSON_EXTRACT(properties, '$.supportedCapabilities') as "supported_capabilities",
JSON_EXTRACT(properties, '$.familyId') as "family_id",
JSON_EXTRACT(properties, '$.sourceUniqueId') as "source_unique_id",
JSON_EXTRACT(properties, '$.encryption') as "encryption",
JSON_EXTRACT(properties, '$.supportsHibernation') as "supports_hibernation",
JSON_EXTRACT(properties, '$.networkAccessPolicy') as "network_access_policy",
JSON_EXTRACT(properties, '$.publicNetworkAccess') as "public_network_access",
JSON_EXTRACT(properties, '$.diskAccessId') as "disk_access_id",
JSON_EXTRACT(properties, '$.completionPercent') as "completion_percent",
JSON_EXTRACT(properties, '$.replicationState') as "replication_state",
JSON_EXTRACT(properties, '$.sourceResourceLocation') as "source_resource_location",
JSON_EXTRACT(properties, '$.securityProfile') as "security_profile",
JSON_EXTRACT(properties, '$.logicalSectorSize') as "logical_sector_size",
subscriptionId,
resourceGroupName,
restorePointCollectionName,
vmRestorePointName,
diskRestorePointName
FROM azure.compute.disk_restore_points
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND restorePointCollectionName = 'replace-me' AND vmRestorePointName = 'replace-me';