vw_restore_point_collections
Creates, updates, deletes, gets or lists a vw_restore_point_collections
resource.
Overview
Name | vw_restore_point_collections |
Type | View |
Id | azure.compute.vw_restore_point_collections |
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,
tags as tags,
JSON_EXTRACT(properties, '$.source') as "source",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.restorePointCollectionId') as "restore_point_collection_id",
JSON_EXTRACT(properties, '$.restorePoints') as "restore_points",
subscriptionId,
resourceGroupName,
restorePointCollectionName
FROM azure.compute.restore_point_collections
WHERE subscriptionId = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.source') as "source",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.restorePointCollectionId') as "restore_point_collection_id",
json_extract_path_text(properties, '$.restorePoints') as "restore_points",
subscriptionId,
resourceGroupName,
restorePointCollectionName
FROM azure.compute.restore_point_collections
WHERE subscriptionId = 'replace-me';