| title | caseOperation resource type |
|---|---|
| description | An abstract entity that represents a long-running eDiscovery process. |
| ms.localizationpriority | medium |
| author | mahage-msft |
| ms.subservice | ediscovery |
| doc_type | resourcePageType |
| ms.date | 07/22/2024 |
Namespace: microsoft.graph.ediscovery
[!INCLUDE beta-disclaimer]
[!INCLUDE ediscovery-deprecation]
An abstract entity that represents a long-running eDiscovery process. It contains a common set of properties that are shared among inheriting entities. Entities that derive from caseOperation include:
Inherits from entity.
None.
| Property | Type | Description |
|---|---|---|
| action | microsoft.graph.ediscovery.caseAction | The type of action the operation represents. The possible values are: addToReviewSet,applyTags,contentExport,convertToPdf,estimateStatistics, purgeData |
| completedDateTime | DateTimeOffset | The date and time the operation was completed. |
| createdBy | identitySet | The user that created the operation. |
| createdDateTime | DateTimeOffset | The date and time the operation was created. |
| id | String | The ID for the operation. Read-only. |
| percentProgress | Int32 | The progress of the operation. |
| resultInfo | resultInfo | Contains success and failure-specific result information. |
| status | microsoft.graph.ediscovery.caseOperationStatus | The status of the case operation. The possible values are: notStarted, submissionFailed, running, succeeded, partiallySucceeded, failed. |
| Member | Description |
|---|---|
| addToReviewSet | The operation represents adding data to a review set from an eDiscovery collection. |
| applyTags | The operation represents bulk tagging documents in a review set for the specified review set query. |
| contentExport | The operation represents a content export from a review set. |
| convertToPdf | The operation represents converting documents to PDFs with redactions. |
| estimateStatistics | The operation represents searching against Microsoft 365 services such as Exchange, SharePoint, and OneDrive for business. |
| purgeData | The operation represents purging content from the source workloads. |
| Member | Description |
|---|---|
| notStarted | The operation has not yet started. |
| submissionFailed | Submission of the operation failed. |
| running | The operation is currently running. |
| succeeded | The operation was successfully completed without any errors. |
| partiallySucceeded | The operation completed, but there were errors - See resultInfo for error details. |
| failed | The operation failed - See result info for error details. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.ediscovery.caseOperation",
"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"
}
}