I'm using Azure JS SDK for interacting with Postgres in Azure (@azure/arm-postgresql, @azure/identity, @azure/functions ...). I'd like to get the underlying REST Api for debugging purpose.
For example I'd like to know during the runtime the corresponding Rest API orders :
const postgresCli = new PostgreSQLManagementClient(new DefaultAzureCredential(), subscriptionId);
const fwRules = postgresCli.firewallRules.listByServer(azResourceGroup, azPostgresServerName);
Do you know if that's possible ?
Regards,
Blured.