Skip to content

Commit

Permalink
Merge pull request #5422 from NikCharlebois/Various-Fixes
Browse files Browse the repository at this point in the history
AADRoleAssignmentScheduleRequest - Initial Release
  • Loading branch information
NikCharlebois authored Nov 19, 2024
2 parents 8f69fc1 + 31ae7ff commit ce15e4f
Show file tree
Hide file tree
Showing 12 changed files with 2,105 additions and 403 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
* AADDeviceRegistrationPolicy
* Added error handling to Group display name retrieval to prevent errors
when an assigned group no longer exists.
* AADRoleAssignmentScheduleRequest
* Initial release.
* AADRoleEligibilityScheduleRequest
* Adds support for custom role assignments at app scope.
* AzureBillingAccountPolicy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -457,13 +457,19 @@ function Get-TargetResource
}
#endregion

$IdentifierUrisValue = @()
if ($null -ne $AADApp.IdentifierUris)
{
$IdentifierUrisValue = $AADApp.IdentifierUris
}

$result = @{
DisplayName = $AADApp.DisplayName
AvailableToOtherTenants = $AvailableToOtherTenantsValue
Description = $AADApp.Description
GroupMembershipClaims = $AADApp.GroupMembershipClaims
Homepage = $AADApp.web.HomepageUrl
IdentifierUris = $AADApp.IdentifierUris
IdentifierUris = $IdentifierUrisValue
IsFallbackPublicClient = $IsFallbackPublicClientValue
KnownClientApplications = $AADApp.Api.KnownClientApplications
LogoutURL = $AADApp.web.LogoutURL
Expand Down
Loading

0 comments on commit ce15e4f

Please sign in to comment.