internal/New-LookupCache.ps1


function New-LookupCache {
    [CmdletBinding()]
    #[OutputType([object])]
    param ()

    [PSCustomObject]@{
        user             = New-Object 'System.Collections.Generic.Dictionary[guid,pscustomobject]'
        group            = New-Object 'System.Collections.Generic.Dictionary[guid,pscustomobject]'
        servicePrincipal = New-Object 'System.Collections.Generic.Dictionary[guid,pscustomobject]'
    }
}