docs: Add disableNesting property to group resource (beta)#9913
Closed
ashyasingh wants to merge 1 commit into
Closed
docs: Add disableNesting property to group resource (beta)#9913ashyasingh wants to merge 1 commit into
ashyasingh wants to merge 1 commit into
Conversation
Add the disableNesting Boolean property to the group resource type in beta. This property controls whether other groups can be added as members. Read/write, but read-only on Unified groups and role-assignable groups. Requires $select to retrieve. Also adds changelog entry for the beta property addition. Related: ADO PR 15632295 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds documentation and changelog coverage for the new disableNesting property on the Microsoft Graph group resource (beta).
Changes:
- Added a new changelog entry for the
disableNestingproperty addition ongroup(beta, Prod). - Documented
disableNestingin the group resource property table and JSON representation. - Updated the
group.mdpage date metadata.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| changelog/Microsoft.DirectoryServices.json | Adds a new changelog entry describing the disableNesting property addition on group (beta). |
| api-reference/beta/resources/group.md | Documents the disableNesting property and updates the page metadata date. |
Comment on lines
+3
to
+15
| { | ||
| "ChangeList": [ | ||
| { | ||
| "Id": "d7e2f4a1-3c6b-49d8-a1f5-8b4c2e7d9a0f", | ||
| "ApiChange": "Property", | ||
| "ChangedApiName": "disableNesting", | ||
| "ChangeType": "Addition", | ||
| "Description": "Added the **disableNesting** property to the [group](https://learn.microsoft.com/en-us/graph/api/resources/group?view=graph-rest-beta) resource.", | ||
| "Target": "group" | ||
| } | ||
| ], | ||
| "Id": "d7e2f4a1-3c6b-49d8-a1f5-8b4c2e7d9a0f", | ||
| "Cloud": "Prod", |
Contributor
|
Learn Build status updates of commit d6ffcea: ✅ Validation status: passed
For more details, please refer to the build report. |
Contributor
|
@ashyasingh, hi! Are you a MSFTE? If so, please use our private repo. |
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.
Summary
Adds the disableNesting Boolean property to the group resource documentation for beta.
This property controls whether other groups can be added as members of the group:
Changes
Related