Edit

Share via


processContentResponse resource type

Namespace: microsoft.graph

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.

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 policyAction supported in processContentResponse 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"
}