Skip to content

Latest commit

 

History

History
54 lines (45 loc) · 2.2 KB

File metadata and controls

54 lines (45 loc) · 2.2 KB
title principalResourceMembershipsScope resource type
description Allows for the selection of access review scope to review access of the selected principals to the selected resources.
author jyothig123
ms.localizationpriority medium
ms.subservice entra-id-governance
doc_type resourcePageType
ms.date 03/21/2024

principalResourceMembershipsScope resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer] [!INCLUDE accessreviews-disclaimer-v2]

The principalResourceMembershipsScope is a type of accessReviewScope which allows you to select a collection of principal scopes and a collection of resource scopes and review access of selected principals to selected resources. It's used to configure the scope property of an accessReviewScheduleDefinition.

Inherits from accessReviewScope.

Properties

Property Type Description
principalScopes accessReviewScope collection Defines the scopes of the principals for which access to resources are reviewed in the access review.
resourceScopes accessReviewScope collection Defines the scopes of the resources for which access is reviewed.

You must also specify the @odata.type type property with the value #microsoft.graph.principalResourceMembershipsScope. For more about configuration options for scope using principalResourceMembershipsScope, see Configure the scope of your access review definition using the Microsoft Graph API.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.principalResourceMembershipsScope",
  "principalScopes": [
    {
      "@odata.type": "microsoft.graph.accessReviewScope"
    }
  ],
  "resourceScopes": [
    {
      "@odata.type": "microsoft.graph.accessReviewScope"
    }
  ]
}