| title | caseExportOperation resource type |
|---|---|
| description | Represents the process of an eDiscovery export. |
| ms.localizationpriority | medium |
| author | mahage-msft |
| ms.subservice | ediscovery |
| doc_type | resourcePageType |
| ms.date | 06/10/2024 |
Namespace: microsoft.graph.ediscovery
[!INCLUDE beta-disclaimer]
[!INCLUDE ediscovery-deprecation]
Represents the process of an eDiscovery export. The caseExportOperation can only be retrieved from the Location header in the response to a reviewset export.
Inherits from caseOperation.
| Method | Return type | Description |
|---|---|---|
| getDownloadUrl | String | Returns the URL for the export. |
| Property | Type | Description |
|---|---|---|
| action | microsoft.graph.ediscovery.caseAction | The case action for this entity will always be contentExport. Inherited from caseOperation. |
| azureBlobContainer | String | The name of the Azure storage location where the export will be stored. This only applies to exports stored in your own Azure storage location. |
| azureBlobToken | String | The SAS token for the Azure storage location. This only applies to exports stored in your own Azure storage location. |
| completedDateTime | DateTimeOffset | The date and time the export was completed. Inherited from caseOperation. |
| createdBy | identitySet | The user who initiated the export operation. Inherited from caseOperation. |
| createdDateTime | DateTimeOffset | The date and time the export was created. Inherited from caseOperation. |
| description | String | The description provided for the export. |
| exportOptions | microsoft.graph.ediscovery.exportOptions | The options provided for the export. For more information, see reviewSet: export. The possible values are: originalFiles, text, pdfReplacement, fileInfo, tags. |
| exportStructure | microsoft.graph.ediscovery.exportFileStructure | The options provided specify the structure of the export. For more information, see reviewSet: export. The possible values are: none, directory, pst. |
| id | String | The ID for the operation. Read-only. Inherited from caseOperation. |
| outputFolderId | String | The output folder ID. |
| outputName | String | The name provided for the export. |
| percentProgress | Int32 | The progress of the operation. Inherited from caseOperation. |
| resultInfo | resultInfo | Contains success and failure-specific result information. Inherited from caseOperation. |
| status | microsoft.graph.ediscovery.caseOperationStatus | The status of the case operation. Inherited from caseOperation. The possible values are: notStarted, submissionFailed, running, succeeded, partiallySucceeded, failed. |
| Member | Description |
|---|---|
| originalFiles | Include copies of the original files - exclude this option when generating reports only. |
| text | Include raw extracted text files for each document. |
| pdfReplacement | If redacted PDF files are generated during review, these files are available for export. You can choose to export the redacted PDFs instead of the original native files by including this option. |
| fileInfo | Include the summary and load file - this should always be included. |
| tags | Include document tags that were applied during review in the load file. |
| Member | Description |
|---|---|
| directory | Maps to the condensed directory structure commonly used by eDiscovery tools. All files are exported to a root file called NativeFiles. |
| pst | Emails are stored in PSTs while documents from sites are stored in folders that represent the original native folder structure. |
| Relationship | Type | Description |
|---|---|---|
| reviewSet | microsoft.graph.ediscovery.reviewSet | The review set the content is being exported from. |
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.ediscovery.caseExportOperation",
"id": "String (identifier)",
"createdDateTime": "String (timestamp)",
"completedDateTime": "String (timestamp)",
"percentProgress": "Integer",
"status": "String",
"action": "String",
"createdBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"resultInfo": {
"@odata.type": "microsoft.graph.resultInfo"
},
"outputName": "String",
"description": "String",
"outputFolderId": "String",
"azureBlobContainer": "String",
"azureBlobToken": "String",
"exportOptions": "String",
"exportStructure": "String"
}