Weekly Permissions sync 2026-06-05#1550
Open
marabooy wants to merge 3 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Weekly permissions catalog synchronization for 2026-06-05, updating the Graph permission-to-path mappings and provisioning/deployment metadata under permissions/new/.
Changes:
- Adds provisioning/deployment metadata for
Policy.Read.ApplicationConfigurationand updates several permission path mappings (Applications, Calls, NetworkAccess). - Removes the
Policy.Read.ApplicationConfigurationpermission definition block frompermissions.json. - Adds
AlsoRequires=Policy.Read.Allconstraints for/policies/identitysecuritydefaultsenforcementpolicyunder relevant permissions.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| permissions/new/provisioningInfo.json | Adds a new (hidden/disabled) deployment entry for Policy.Read.ApplicationConfiguration. |
| permissions/new/permissions.json | Updates multiple permission path mappings, adds AlsoRequires constraints, and removes the Policy.Read.ApplicationConfiguration permission definition. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
38506
to
38510
| "ownerSecurityGroup": "cpimmsgraphadmins" | ||
| } | ||
| }, | ||
| "Policy.Read.ApplicationConfiguration": { | ||
| "authorizationType": "oAuth2", | ||
| "schemes": { | ||
| "DelegatedWork": { | ||
| "adminDisplayName": "Read your organization's application configuration policies", | ||
| "adminDescription": "Allows the app to read your organization's application configuration policies on behalf of the signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, claimsPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", | ||
| "userDisplayName": "Read your organization's application configuration policies", | ||
| "userDescription": "Allows the app to read your organization's application configuration policies on your behalf. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, claimsPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", | ||
| "requiresAdminConsent": true, | ||
| "privilegeLevel": 4 | ||
| }, | ||
| "Application": { | ||
| "adminDisplayName": "Read your organization's application configuration policies", | ||
| "adminDescription": "Allows the app to read your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, claimsPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", | ||
| "requiresAdminConsent": true, | ||
| "privilegeLevel": 4 | ||
| } | ||
| }, | ||
| "pathSets": [ | ||
| { | ||
| "schemeKeys": [ | ||
| "DelegatedWork", | ||
| "Application" | ||
| ], | ||
| "methods": [ | ||
| "GET", | ||
| "POST" | ||
| ], | ||
| "paths": { | ||
| "/identity/events/onsignupstart": "least=DelegatedWork,Application", | ||
| "/policies/activitybasedtimeoutpolicies": "least=DelegatedWork,Application", | ||
| "/policies/appmanagementpolicies": "least=DelegatedWork,Application", | ||
| "/policies/claimsmappingpolicies": "least=DelegatedWork,Application", | ||
| "/policies/homerealmdiscoverypolicies": "least=DelegatedWork,Application", | ||
| "/policies/tokenissuancepolicies": "least=DelegatedWork,Application", | ||
| "/policies/tokenlifetimepolicies": "least=DelegatedWork,Application" | ||
| } | ||
| }, | ||
| { | ||
| "schemeKeys": [ | ||
| "DelegatedWork", | ||
| "Application" | ||
| ], | ||
| "methods": [ | ||
| "DELETE", | ||
| "POST" | ||
| ], | ||
| "paths": { | ||
| "/applications/{id}/appmanagementpolicies": "" | ||
| } | ||
| }, | ||
| { | ||
| "schemeKeys": [ | ||
| "DelegatedWork", | ||
| "Application" | ||
| ], | ||
| "methods": [ | ||
| "DELETE", | ||
| "GET", | ||
| "PATCH", | ||
| "PUT" | ||
| ], | ||
| "paths": { | ||
| "/identity/events/onsignupstart/{id}": "least=DelegatedWork,Application" | ||
| } | ||
| }, | ||
| { | ||
| "schemeKeys": [ | ||
| "DelegatedWork", | ||
| "Application" | ||
| ], | ||
| "methods": [ | ||
| "DELETE", | ||
| "GET", | ||
| "PATCH" | ||
| ], | ||
| "paths": { | ||
| "/policies/activitybasedtimeoutpolicies/{id}": "least=DelegatedWork,Application", | ||
| "/policies/appmanagementpolicies/{id}": "least=DelegatedWork,Application", | ||
| "/policies/claimsmappingpolicies/{id}": "least=DelegatedWork,Application", | ||
| "/policies/homerealmdiscoverypolicies/{id}": "least=DelegatedWork,Application", | ||
| "/policies/tokenissuancepolicies/{id}": "least=DelegatedWork,Application", | ||
| "/policies/tokenlifetimepolicies/{id}": "least=DelegatedWork,Application" | ||
| } | ||
| }, | ||
| { | ||
| "schemeKeys": [ | ||
| "DelegatedWork", | ||
| "Application" | ||
| ], | ||
| "methods": [ | ||
| "GET" | ||
| ], | ||
| "paths": { | ||
| "/policies/appmanagementpolicies/{id}/appliesto": "", | ||
| "/policies/claimsmappingpolicies/{id}/appliesto": "", | ||
| "/policies/homerealmdiscoverypolicies/{id}/appliesto": "", | ||
| "/policies/tokenissuancepolicies/{id}/appliesto": "", | ||
| "/policies/tokenlifetimepolicies/{id}/appliesto": "" | ||
| } | ||
| }, | ||
| { | ||
| "schemeKeys": [ | ||
| "DelegatedWork", | ||
| "Application" | ||
| ], | ||
| "methods": [ | ||
| "GET", | ||
| "PATCH" | ||
| ], | ||
| "paths": { | ||
| "/policies/defaultappmanagementpolicy": "least=DelegatedWork,Application" | ||
| } | ||
| }, | ||
| { | ||
| "schemeKeys": [ | ||
| "DelegatedWork", | ||
| "Application" | ||
| ], | ||
| "methods": [ | ||
| "GET", | ||
| "PATCH", | ||
| "PUT" | ||
| ], | ||
| "paths": { | ||
| "/serviceprincipals/{id}/claimsPolicy": "least=DelegatedWork,Application" | ||
| } | ||
| } | ||
| ], | ||
| "ownerInfo": { | ||
| "ownerSecurityGroup": "idappcore" | ||
| } | ||
| }, | ||
| "Policy.Read.AuthenticationMethod": { | ||
| "authorizationType": "oAuth2", |
Comment on lines
+11511
to
+11518
| "Policy.Read.ApplicationConfiguration": [ | ||
| { | ||
| "id": "", | ||
| "scheme": "Application", | ||
| "environment": "public", | ||
| "isHidden": true, | ||
| "isEnabled": false, | ||
| "resourceAppId": "00000002-0000-0000-c000-000000000000" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Weekly Permissions sync 2026-06-05