Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 1.67 KB

File metadata and controls

52 lines (43 loc) · 1.67 KB
title processContentResponse resource type
description Contains the outcome of a processContent action or a single result within a processContentAsync action.
author kylemar
ms.date 04/08/2025
ms.localizationpriority medium
ms.subservice security
doc_type resourcePageType

processContentResponse resource type

Namespace: microsoft.graph

Contains the outcome of a processContent action or a single result within a processContentAsync action.

Properties

Property Type Description
policyActions Collection(microsoft.graph.dlpActionInfo) A collection of policy actions (like DLP actions) triggered by the processed content. NOTE: Currently, the only policy action supported in for this resource type is restrictAccess.
processingErrors Collection(microsoft.graph.processingError) A collection of errors encountered during the content processing.
protectionScopeState microsoft.graph.security.protectionScopeState Indicates if the applicable protection scope (policies) has changed since the last known state for the context. Possible values are modified and notModified.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.processContentResponse",
  "policyActions": [
    {
      "@odata.type": "microsoft.graph.dlpActionInfo"
    }
  ],
  "processingErrors": [
    {
      "@odata.type": "microsoft.graph.processingError"
    }
  ],
  "protectionScopeState": "String"
}