Skip to content

Latest commit

 

History

History
56 lines (46 loc) · 2.88 KB

File metadata and controls

56 lines (46 loc) · 2.88 KB
title inheritablePermission resource type
description Defines scopes of a resource application that are configured on an agent identity blueprint and that may be automatically granted to agent identities without additional consent.
author zallison22
ms.date 11/13/2025
ms.localizationpriority medium
ms.subservice entra-applications
doc_type resourcePageType

inheritablePermission resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Defines scopes of a resource application that are configured on an agent identity blueprint and that may be automatically granted to agent identities without additional consent. For more information, see Configure inheritable permissions for blueprints.

Methods

Method Return type Description
List inheritablePermission collection Get a list of the inheritablePermission objects and their properties.
Create inheritablePermission Create a new inheritablePermission object.
Get inheritablePermission Read the properties and relationships of inheritablePermission object.
Update inheritablePermission Update the properties of an inheritablePermission object.
Delete None Delete an inheritablePermission object.

Properties

Property Type Description
inheritableScopes inheritableScopes Inheritance configuration for delegated permission scopes published by the resource application. Supports three patterns: allAllowedScopes (inherit all available scopes), enumeratedScopes (inherit only the listed scopes), and noScopes (inherit none). Each pattern exposes a kind discriminator for filtering.
resourceAppId String The appId of the resource application that publishes these scopes. Primary key.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.inheritablePermission",
  "resourceAppId": "String (identifier)",
  "inheritableScopes": {
    "@odata.type": "microsoft.graph.inheritableScopes"
  }
}