Redagować

Udostępnij przez


policyBinding 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.

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