Skip to content

Latest commit

 

History

History
79 lines (65 loc) · 2.69 KB

File metadata and controls

79 lines (65 loc) · 2.69 KB
title conditionalAccessUsers resource type
description Represents users, groups, and roles included in and excluded from the policy scope.
ms.localizationpriority medium
author lisaychuang
ms.reviewer conditionalaccesspm
ms.subservice entra-sign-in
doc_type resourcePageType
ms.date 07/22/2024

conditionalAccessUsers resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents users, groups, and roles included in and excluded from the policy scope.

Properties

Property Type Description
excludeGroups String collection Group IDs excluded from scope of policy.
excludeGuestsOrExternalUsers conditionalAccessGuestsOrExternalUsers Internal guests or external users excluded from the policy scope. Optionally populated.
excludeRoles String collection Role IDs excluded from scope of policy.
excludeUsers String collection User IDs excluded from scope of policy and/or GuestsOrExternalUsers.
includeGroups String collection Group IDs in scope of policy unless explicitly excluded.
includeGuestsOrExternalUsers conditionalAccessGuestsOrExternalUsers Internal guests or external users included in the policy scope. Optionally populated.
includeRoles String collection Role IDs in scope of policy unless explicitly excluded.
includeUsers String collection User IDs in scope of policy unless explicitly excluded, None, All, or GuestsOrExternalUsers.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "excludeGroups": ["String"],
  "excludeGuestsOrExternalUsers": {"@odata.type": "microsoft.graph.conditionalAccessGuestOrExternalUsers"},
  "excludeRoles": ["String"],
  "excludeUsers": ["String"],
  "includeGroups": ["String"],
  "includeGuestsOrExternalUsers": {"@odata.type": "microsoft.graph.conditionalAccessGuestOrExternalUsers"},
  "includeRoles": ["String"],
  "includeUsers": ["String"]
}