Thanks for posting your question in the Microsoft Q&A forum.
Double-check that psqladminun is indeed a member of azure_pg_admin:
SELECT pg_has_role('psqladminun', 'azure_pg_admin', 'MEMBER');
If the above check confirms membership, try granting explicit permissions to the azure_pg_admin role:
GRANT USAGE ON SCHEMA cron TO azure_pg_admin;
GRANT ALL ON ALL FUNCTIONS IN SCHEMA cron TO azure_pg_admin;
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful