INPUT_OBJECT

SharePointItems

Description

Represents the SharePoint items in a site collection to be restored.

link GraphQL Schema definition

  • input SharePointItems {
  • # ID of the object in SharePoint Online.
  • sharepointId: String!
  • # Rubrik cluster ID for the parent object of the SharePoint item.
  • objectId: String
  • # Type of the parent object.
  • snappableType: SnappableType
  • # The list items to restore when the parent object is a list.
  • listItems: [SharePointListItem!]!
  • # The folder items to restore.
  • folderItems: [FolderInfo!]!
  • # The files to restore when the parent object is a document library.
  • fileItems: [FileInfo!]!
  • # Specifies whether these SharePoint items are Page Library items or not.
  • arePageLibraryItems: Boolean!
  • }