This article provides step-by-step instructions to list all full backups of an Azure Database for PostgreSQL flexible server instance.
Steps to list all backups
Using the Azure portal:
Select your Azure Database for PostgreSQL flexible server instance.
In the resource menu, under the Settings section, select Backup and restore.
In Backup type, select On-demand if you want to only see the on-demand backups which are still available to be restored.
You can list currently available on-demand backups of a server via the az postgres flexible-server backup list command.
az postgres flexible-server backup list \
--resource-group <resource_group> \
--name <server> \
--query "[?backupType=='Customer On-Demand']" \
--output table
Related content