Skip to content

Latest commit

 

History

History
64 lines (53 loc) · 2.65 KB

File metadata and controls

64 lines (53 loc) · 2.65 KB
title ediscoveryCaseSettings resource type
description Contains settings for an eDiscovery case.
author SeunginLyu
ms.localizationpriority medium
ms.subservice ediscovery
doc_type resourcePageType
ms.date 06/10/2024

ediscoveryCaseSettings resource type

Namespace: microsoft.graph.security

Contains settings for an eDiscovery case. For details, see Configure search and analytics settings in eDiscovery (Premium).

Inherits from entity.

Methods

Method Return type Description
Get settings microsoft.graph.security.ediscoveryCaseSettings Read the properties and relationships of an ediscoveryCaseSettings object.
Update settings microsoft.graph.security.ediscoveryCaseSettings Update the properties of an ediscoveryCaseSettings object.
Reset settings to default None Reset all settings to the default values.

Properties

Property Type Description
id String The ID of the eDiscovery case. Inherited from entity.
ocr microsoft.graph.security.ocrSettings The OCR (Optical Character Recognition) settings for the case.
redundancyDetection microsoft.graph.security.redundancyDetectionSettings The redundancy (near duplicate and email threading) detection settings for the case.
topicModeling microsoft.graph.security.topicModelingSettings The Topic Modeling (Themes) settings for the case.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.security.ediscoveryCaseSettings",
  "id": "String (identifier)",
  "redundancyDetection": {
    "@odata.type": "microsoft.graph.security.redundancyDetectionSettings"
  },
  "topicModeling": {
    "@odata.type": "microsoft.graph.security.topicModelingSettings"
  },
  "ocr": {
    "@odata.type": "microsoft.graph.security.ocrSettings"
  }
}