estimateStatisticsOperation resource type

Namespace: microsoft.graph.ediscovery

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents the operation that handles estimating the count and size of a sourceCollection. For details, see Collect data for a case in Advanced eDiscovery.

Inherits from caseOperation.

Methods

None.

Properties

Property Type Description
action microsoft.graph.ediscovery.caseAction The type of operation. The case action for this entity will always be estimateStatistics. Read-only. Inherited from caseOperation.
completedDateTime DateTimeOffset The date and time the operation was completed. Read-only. Inherited from caseOperation.
createdBy identitySet The user who created the operation. Read-only. Inherited from caseOperation.
createdDateTime DateTimeOffset The date and time the operation was started. Read-only. Inherited from caseOperation.
id String The ID for the operation. Read-only. Inherited from caseOperation.
indexedItemCount Int64 The estimated count of items for the sourceCollection that matched the content query.
indexedItemsSize Int64 The estimated size of items for the sourceCollection that matched the content query.
mailboxCount Int32 The number of mailboxes that had search hits.
percentProgress Int32 The progress of the operation. Read-only. Inherited from caseOperation.
resultInfo resultInfo Contains success and failure-specific result information. Inherited from caseOperation.
siteCount Int32 The number of mailboxes that had search hits.
status microsoft.graph.ediscovery.caseOperationStatus The status of the case operation. Inherited from caseOperation. Possible values are: notStarted, submissionFailed, running, succeeded, partiallySucceeded, failed.
unindexedItemCount Int64 The estimated count of unindexed items for the collection.
unindexedItemsSize Int64 The estimated size of unindexed items for the collection.

Relationships

Relationship Type Description
sourceCollection microsoft.graph.ediscovery.sourceCollection eDiscovery collection, commonly known as a search.

JSON representation

The following is a JSON representation of the resource.

{
    "@odata.context": "https://graph.microsoft.com/beta/$metadata#compliance/ediscovery/cases/47746044-fd0b-4a30-acfc-5272b691ba5b/operations/$entity",
    "@odata.type": "#microsoft.graph.ediscovery.estimateStatisticsOperation",
    "createdDateTime": "2021-01-12T18:47:23.3974907Z",
    "completedDateTime": "2021-01-12T18:47:51.1461805Z",
    "percentProgress": 100,
    "status": "succeeded",
    "action": "estimateStatistics",
    "id": "82edd40e182a464fa02c24a36fa94873",
    "indexedItemCount": 2,
    "indexedItemsSize": 39276,
    "unindexedItemCount": 0,
    "unindexedItemsSize": 0,
    "mailboxCount": 1,
    "siteCount": 0,
    "createdBy": {
        "user": {
            "id": "c1db6f13-332a-4d84-b111-914383ff9fc9",
            "displayName": null,
            "userPrincipalName": "admin@contoso.com"
        }
    }
}