forked from Azure/Virtual-Machine-Restore-Points
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreateRestorePoint.json
More file actions
24 lines (24 loc) · 943 Bytes
/
CreateRestorePoint.json
File metadata and controls
24 lines (24 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"RestorePointCollectionName": {
"type": "string",
"defaultValue": "<RestorePointCollectionName>"
},
"RestorePointName": {
"type": "string",
"defaultValue": "<RestorePointName>"
},
"RestorePointCollectionResourceId": {
"type": "string",
"defaultValue": "/subscriptions/<SubscriptionID>/resourceGroups/<ResourceGroupName>/providers/Microsoft.Compute/restorePointCollections/<RestorePointCollectionName>"
}
},
"resources": [{
"type": "Microsoft.Compute/restorePointCollections/restorePoints",
"name": "[concat(parameters('RestorePointCollectionName'),'/', parameters('RestorePointName'))]",
"apiVersion": "2021-03-01"
}
]
}