Skip to content

Latest commit

 

History

History
57 lines (47 loc) · 2.06 KB

File metadata and controls

57 lines (47 loc) · 2.06 KB
title policyScopeBase resource type
description Abstract base type defining the scope of applicability for a data governance policy, including locations, activities, and execution mode.
author kylemar
ms.date 04/08/2025
ms.localizationpriority medium
ms.subservice security
doc_type resourcePageType

policyScopeBase resource type

Namespace: microsoft.graph

Abstract base type defining the scope of applicability for a data governance policy, including locations, activities, and execution mode.

Used as a base type for more specific policy scopes like policyTenantScope and policyUserScope.

Properties

Property Type Description
activities microsoft.graph.security.userActivityTypes Flags specifying the user activities the calling application supports or is interested. Possible values are none, uploadText, uploadFile, downloadText, downloadFile, unknownFutureValue. Required. This object is a multi-valued enumeration.
executionMode microsoft.graph.security.executionMode Specifies how the policy should be executed. Possible values are evaluateInline, evaluateOffline, unknownFutureValue. Required.
locations Collection(microsoft.graph.policyLocation) The locations (like domains or URLs) to be protected. Required.
policyActions Collection(microsoft.graph.dlpActionInfo) The enforcement actions to take if the policy conditions are met within this scope. Required.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.policyScopeBase",
  "activities": "String",
  "executionMode": "String",
  "locations": [
    {
      "@odata.type": "microsoft.graph.policyLocation"
    }
  ],
  "policyActions": [
    {
      "@odata.type": "microsoft.graph.dlpActionInfo"
    }
  ]
}