Skip to content

Latest commit

 

History

History
88 lines (72 loc) · 3.61 KB

File metadata and controls

88 lines (72 loc) · 3.61 KB
title accessPackageResourceRoleScope resource type
description An access package resource role scope is a reference to both a scope within a resource, and a role in that resource.
ms.localizationpriority medium
author markwahl-msft
ms.subservice entra-id-governance
doc_type resourcePageType
ms.date 05/24/2024

accessPackageResourceRoleScope resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

In Microsoft Entra entitlement management, an access package resource role scope is a reference to both a scope within a resource, and a role in that resource for that scope. An access package has access package resource role scopes for the resources in its catalog that are relevant to that access package. When a subject receives an access package assignment, the subject is provisioned with the role in that scope of each access package resource role scope.

Methods

Method Return Type Description
List accessPackageResourceRoleScope collection Retrieve a list of accessPackageResourceRoleScope objects for an access package.
Create accessPackageResourceRoleScope Create a new accessPackageResourceRoleScope object for an access package.
Delete None Create a new accessPackageResourceRoleScope object for an access package.

Properties

Property Type Description
createdBy String Read-only.
createdDateTime DateTimeOffset The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z
id String Read-only.
modifiedBy String Read-only.
modifiedDateTime DateTimeOffset The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z

Relationships

Relationship Type Description
accessPackageResourceRole accessPackageResourceRole Read-only. Nullable. Supports $expand.
accessPackageResourceScope accessPackageResourceScope Read-only. Nullable.

JSON representation

The following JSON representation shows the resource type.

{
   "createdBy":"String",
   "createdDateTime":"String (timestamp)",
   "id":"String (identifier)",
   "modifiedBy":"String",
   "modifiedDateTime":"String (timestamp)",
   "accessPackageResourceRole":{
      "id":"String (identifier)",
      "displayName":"String",
      "originSystem":"String",
      "originId":"String"
   },
   "accessPackageResourceScope":{
      "id":"String (identifier)",
      "displayName":"String",
      "description":"String",
      "originId":"String (identifier)",
      "originSystem":"String"
   }
}