Microsoft Graph · Schema
restoreSessionArtifactCount
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| completed | number | The number of artifacts whose restoration completed. |
| failed | number | The number of artifacts whose restoration failed. |
| inProgress | number | The number of artifacts whose restoration is in progress. |
| total | number | The number of artifacts present in the restore session. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.restoreSessionArtifactCount",
"title": "restoreSessionArtifactCount",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"completed": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The number of artifacts whose restoration completed.",
"format": "int32",
"nullable": true
},
"failed": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The number of artifacts whose restoration failed.",
"format": "int32",
"nullable": true
},
"inProgress": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The number of artifacts whose restoration is in progress.",
"format": "int32",
"nullable": true
},
"total": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The number of artifacts present in the restore session.",
"format": "int32",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}