Skip to content

Latest commit

 

History

History
48 lines (38 loc) · 1.69 KB

File metadata and controls

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

policyBinding resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

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" }
  ]
}