Microsoft Graph · Schema
cloudPcRestorePointSetting
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| frequencyType | object | The time interval in hours to take snapshots (restore points) of a Cloud PC automatically. The possible values are: default, fourHours, sixHours, twelveHours, sixteenHours, twentyFourHours, unknownFut |
| userRestoreEnabled | boolean | If true, the user has the ability to use snapshots to restore Cloud PCs. If false, non-admin users can't use snapshots to restore the Cloud PC. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.cloudPcRestorePointSetting",
"title": "cloudPcRestorePointSetting",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"frequencyType": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.cloudPcRestorePointFrequencyType"
},
{
"type": "object",
"nullable": true
}
],
"description": "The time interval in hours to take snapshots (restore points) of a Cloud PC automatically. The possible values are: default, fourHours, sixHours, twelveHours, sixteenHours, twentyFourHours, unknownFutureValue. The default value is default that indicates that the time interval for automatic capturing of restore point snapshots is set to 12 hours."
},
"userRestoreEnabled": {
"type": "boolean",
"description": "If true, the user has the ability to use snapshots to restore Cloud PCs. If false, non-admin users can't use snapshots to restore the Cloud PC.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}