Skip to content

Commit

Permalink
Merge pull request #5495 from NikCharlebois/Various-Fixes
Browse files Browse the repository at this point in the history
AADAccessReviewDefinition - Fixing Accepted Odata.Type
  • Loading branch information
NikCharlebois authored Dec 2, 2024
2 parents 230b0fc + 7d8b602 commit 9f71985
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

* All resources
* Applying project default formatting on all files, to improve
reading and troubleshooting
reading and troubleshooting.
* AADAccessReviewDefinition
* Added support for #microsoft.graph.accessReviewInactiveUsersQueryScope in odatatype.
* AADRoleManagementPolicyRule
* Added the logic to handle filters in the Export logic flow.
* EXOTeamsProtectionPolicy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class MSFT_MicrosoftGraphAccessReviewScope
[Write, Description("Indicates the type of query. Types include MicrosoftGraph and ARM.")] String QueryType;
[Write, Description("Defines the scopes of the principals for which access to resources are reviewed in the access review."), EmbeddedInstance("MSFT_MicrosoftGraphAccessReviewScope")] String PrincipalScopes[];
[Write, Description("Defines the scopes of the resources for which access is reviewed."), EmbeddedInstance("MSFT_MicrosoftGraphAccessReviewScope")] String ResourceScopes[];
[Write, Description("The type of the entity."), ValueMap{"#microsoft.graph.accessReviewQueryScope","#microsoft.graph.accessReviewReviewerScope","#microsoft.graph.principalResourceMembershipsScope"}, Values{"#microsoft.graph.accessReviewQueryScope","#microsoft.graph.accessReviewReviewerScope","#microsoft.graph.principalResourceMembershipsScope"}] String odataType;
[Write, Description("The type of the entity."), ValueMap{"#microsoft.graph.accessReviewQueryScope","#microsoft.graph.accessReviewReviewerScope","#microsoft.graph.principalResourceMembershipsScope","#microsoft.graph.accessReviewInactiveUsersQueryScope"}, Values{"#microsoft.graph.accessReviewQueryScope","#microsoft.graph.accessReviewReviewerScope","#microsoft.graph.principalResourceMembershipsScope","#microsoft.graph.accessReviewInactiveUsersQueryScope"}] String odataType;
};
[ClassVersion("1.0.0")]
class MSFT_MicrosoftGraphAccessReviewScheduleSettings
Expand Down

0 comments on commit 9f71985

Please sign in to comment.