Public/get-AllegisIDNMapping.ps1

function get-AllegisIDNMapping ($storageAccountKey, $storageAccountname, $source, $destination){
    $context=New-AzureStorageContext -StorageAccountKey $storageAccountKey -StorageAccountName $storageAccountname -Protocol Https
    $table=Get-AzureStorageTable -Context $context
    $allmappings=Get-AzureStorageTableRowAll -table $table
    $source=$source.replace('-','')
    $destination=$destination.Replace('-','')
    $output=@{}
    foreach($item in $allmappings){
        $output+=@{$item.$source=$item.$destination}
    }
    return $output
}