oneDriveForBusinessRestoreSession resource type

Namespace: microsoft.graph

Represents restore-related tasks on artifacts that are protected by a OneDrive protection policy. Restore session APIs are used by SharePoint Admins to perform restore-related tasks on artifacts that are protected as part of a OneDrive protection policy.

Inherits from restoreSessionBase.

Methods

Method Return type Description
Create oneDriveForBusinessRestoreSession Create a new oneDriveForBusinessRestoreSession.
List oneDriveForBusinessRestoreSession collection Get a list of the oneDriveForBusinessRestoreSession objects and their properties.
Update oneDriveForBusinessRestoreSession Update the properties of a oneDriveForBusinessRestoreSession.

Properties

Property Type Description
id String The unique identifier of the restore session created.
completedDateTime DateTimeOffset The time of creation of the restore session.
createdBy identitySet The identity of person who created the restore session.
createdDateTime DateTimeOffset The time of completion of the restore session.
error publicError Contains error details if the restore session fails or completes with an error.
lastModifiedBy identitySet Identity of the person who last modified this restore session.
lastModifiedDateTime DateTimeOffset Timestamp of the last modification of this restore session.
status restoreSessionStatus Status of the restore session. The value is an aggregated status of the restored artifacts. The possible values are: draft, activating, active, completedWithError, completed, unknownFutureValue, failed. Note that you must use the Prefer: include-unknown-enum-members request header to get the following value in this evolvable enum: failed.

restoreSessionStatus values

Member Description
draft All artifacts are added.
activating All artifacts are scheduled.
active All or any restore artifacts are scheduled or in progress.
completedWithError Some artifacts failed to restore, and some succeeded.
completed All restore artifacts successfully restored.
failed All restore artifacts failed to restore.
unknownFutureValue Evolvable enumeration sentinel value. Do not use.

Relationships

Relationship Type Description
driveRestoreArtifacts driveRestoreArtifact collection A collection of restore points and destination details that can be used to restore a OneDrive for Business drive.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.oneDriveForBusinessRestoreSession",
  "id": "String (identifier)",
  "status": "String",
  "createdDateTime": "String (timestamp)",
  "createdBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "completedDateTime": "String (timestamp)",
  "lastModifiedDateTime": "String (timestamp)",
  "lastModifiedBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "error": {
    "@odata.type": "microsoft.graph.publicError"
  }
}