Edit

Share via


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