List all backups
- Article
-
-
APPLIES TO:
Azure Database for PostgreSQL - Flexible Server
This article provides step-by-step instructions to list all full backups of an Azure Database for PostgreSQL flexible server.
Steps to list all backups
Using the Azure portal:
Select your Azure Database for PostgreSQL flexible server.
In the resource menu, under the Settings section, select Backup and restore.
In Backup types, select On-Demand backup 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