Available in VPC
Get the backup list of a Cloud DB for PostgreSQL instance.
Syntax
The getCloudPostgresqlBackupList syntax is as follows:
./ncloud vpostgresql getCloudPostgresqlBackupList \
[--pageNo <page-no>] \
[--pageSize <page-size>] \
[--regionCode <KR|SGN|JPN>] \
[--output <json|xml>]
Options
This section describes the options available when running getCloudPostgresqlBackupList.
Required options
The following options are required for getCloudPostgresqlBackupList.
| Options | Type | Required | Description |
|---|---|---|---|
--pageSize |
Integer | Conditional | Number of items per page
|
Optional options
These are the optional options for getCloudPostgresqlBackupList. 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 the Cloud DB for PostgreSQL backup list is successful, the backup configuration information for each instance is returned.
Command
The command example is as follows:
./ncloud vpostgresql getCloudPostgresqlBackupList \
--pageNo 0 \
--pageSize 10 \
--regionCode KR \
--output json
Output
The output example is as follows:
{
"getCloudPostgresqlBackupListResponse": {
"totalRows": 1,
"cloudPostgresqlBackupList": [
{
"cloudPostgresqlInstanceNo": "34567890",
"cloudPostgresqlServiceName": "test-pgsql",
"backupType": "AUTO",
"backupRetention": 1,
"backupSize": 6351741,
"lastBackupDate": "2026-06-09T19:01:38+0900",
"backupFileStorageCount": 0
}
],
"requestId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"returnCode": "0",
"returnMessage": "success"
}
}