Skip to content

Latest commit

 

History

History
45 lines (38 loc) · 1.53 KB

File metadata and controls

45 lines (38 loc) · 1.53 KB
title requiredResourceAccess resource type
description Represents the permissions required by an application to access a specific resource.
author hafowler
ms.date 03/10/2026
ms.localizationpriority medium
ms.subservice entra-tenant-governance
doc_type resourcePageType

requiredResourceAccess resource type

Namespace: microsoft.graph.tenantGovernanceServices

[!INCLUDE beta-disclaimer]

Represents the permissions required by an application to access a specific resource. This is used when defining multi-tenant applications to provision in governed tenants.

Properties

Property Type Description
permissions microsoft.graph.tenantGovernanceServices.resourcePermission collection The collection of resource permissions required by the application.
resourceAppId String The appId (client ID) of the resource that the application needs to access.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.tenantGovernanceServices.requiredResourceAccess",
  "resourceAppId": "String",
  "permissions": [
    {
      "@odata.type": "microsoft.graph.tenantGovernanceServices.resourcePermission"
    }
  ]
}