Available in VPC
Get Cloud DB for PostgreSQL instance backup details in a list.
Syntax
The getCloudPostgresqlBackupDetailList syntax is as follows:
./ncloud vpostgresql getCloudPostgresqlBackupDetailList \
--cloudPostgresqlInstanceNo <instance-no> \
[--pageNo <page-no>] \
[--pageSize <page-size>] \
[--regionCode <KR|SGN|JPN>] \
[--output <json|xml>]
Options
This section describes the options available when running getCloudPostgresqlBackupDetailList.
Required options
The following options are required for getCloudPostgresqlBackupDetailList.
| Options | Type | Required | Description |
|---|---|---|---|
--cloudPostgresqlInstanceNo |
String | Required | Cloud DB for PostgreSQL instance number |
--pageSize |
Integer | Conditional | Number of items per page
|
Optional options
These are the optional options for getCloudPostgresqlBackupDetailList. Options that are not specified will use their default values.
| Options | Type | Required | Description |
|---|---|---|---|
--pageNo |
Integer | Optional | Page number
|
Common options
For information about the options common to all vpostgresql subcommands, see Cloud DB for PostgreSQL (VPC) options.
Examples
If the request to retrieve detailed information about Cloud DB for PostgreSQL backups is successful, the name, time, and size of each backup file are returned.
Command
The command example is as follows:
./ncloud vpostgresql getCloudPostgresqlBackupDetailList \
--cloudPostgresqlInstanceNo 34567890 \
--pageNo 0 \
--pageSize 10 \
--regionCode KR \
--output json
Output
The output example is as follows:
{
"getCloudPostgresqlBackupDetailListResponse": {
"totalRows": 1,
"cloudPostgresqlBackupDetailList": [
{
"fileName": "342144",
"startTime": "2026-06-09T19:01:30+0900",
"endTime": "2026-06-09T19:01:38+0900",
"backupSize": 6334375,
"dataStorageSize": 10737418240,
"archivedWalFileSize": 17366
}
],
"requestId": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
"returnCode": "0",
"returnMessage": "success"
}
}