ediscoveryExportOperation resource type

Namespace: microsoft.graph.security

Represents the process of a Microsoft Purview eDiscovery export.

Inherits from caseOperation.

Methods

Method Return type Description
Get caseOperation Resource The exportFileMetadata property returned by the method provides downloadUrl, fileName and size of exported content

Properties

Property Type Description
action microsoft.graph.security.caseAction The type of action the operation represents. Possible values are: addToReviewSet,applyTags,contentExport,convertToPdf,estimateStatistics, purgeData
completedDateTime DateTimeOffset The date and time the export was completed.
createdBy identitySet The user who initiated the export operation.
createdDateTime DateTimeOffset The date and time the export was created.
description String The description provided for the export.
exportFileMetaData microsoft.graph.security.ediscoveryExportFileMetadata Contains the properties for an export file metadata, including downloadUrl, fileName, and size.
exportOptions microsoft.graph.security.exportOptions The options provided for the export. For more information, see reviewSet: export. Possible values are: originalFiles, text, pdfReplacement, tags.
exportStructure microsoft.graph.security.exportFileStructure The options that specify the structure of the export. For more information, see reviewSet: export. Possible values are: none, directory, pst.
id String The ID for the operation. Read-only.
outputName String The name provided for the export.
percentProgress Int32 The progress of the operation.
resultInfo resultInfo Contains success and failure-specific result information. Inherited from caseOperation.
status microsoft.graph.security.caseOperationStatus The status of the case operation. Possible values are: notStarted, submissionFailed, running, succeeded, partiallySucceeded, failed.

exportOptions values

Member Description
originalFiles Include original files in native format. For example: docx, xlsx, pptx, doc, xlst, pptm, etc.
text Include extracted text from the original files.
pdfReplacement Replace original file with PDF version when available.
tags Include tag information.

exportFileStructure values

Member Description
None Default file structure.
directory All files in a single folder called Native files.
pst Mails are grouped in pst format.

Relationships

Relationship Type Description
reviewSet microsoft.graph.security.ediscoveryReviewSet Review set from where documents are exported.
reviewSetQuery microsoft.graph.security.ediscoveryReviewSetQuery The review set query that is used to filter the documents for export.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.security.ediscoveryExportOperation",
  "action": "String",
  "completedDateTime": "String (timestamp)",
  "createdBy": {
    "@odata.type": "microsoft.graph.identitySet"
  },
  "createdDateTime": "String (timestamp)",
  "description": "String",
  "exportFileMetadata": {
    "@odata.type": "microsoft.graph.security.ediscoveryExportFileMetadata"
  },
  "exportOptions": "String",
  "exportStructure": "String",
  "id": "String (identifier)",
  "outputName": "String",
  "percentProgress": "Int32",
  "resultInfo": {
    "@odata.type": "microsoft.graph.resultInfo"
  },
  "status": "String"
}