Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.63 KB

File metadata and controls

46 lines (37 loc) · 1.63 KB
title policyBinding resource type
description Defines the user/group inclusions and exclusions for a tenant-level policy scope.
author kylemar
ms.date 04/08/2025
ms.localizationpriority medium
ms.subservice security
doc_type resourcePageType

policyBinding resource type

Namespace: microsoft.graph

Defines the user/group inclusions and exclusions for a tenant-level policy scope.

Properties

Property Type Description
exclusions scopeBase collection Specifies the users or groups to be explicitly excluded from this policy scope. Can be null or empty.
inclusions scopeBase collection Specifies the users or groups to be included in this policy scope. Often set to tenantScope for "All users".

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.policyBinding",
  "inclusions": [
    { "@odata.type": "microsoft.graph.scopeBase" }
  ],
  "exclusions": [
    { "@odata.type": "microsoft.graph.scopeBase" }
  ]
}