Available in VPC
Get the list of available Cloud DB for Cache manual backup details.
Cloud DB for Cache CLI offers two versions based on the supported DBMS range.
- getCloudCacheManualBackupDetailList CLI: Support for Valkey and Redis DBMS
- getCloudRedisManualBackupDetailList CLI: Support for Redis DBMS
getCloudCacheManualBackupDetailList CLI
This section describes the command syntax, options, commands, and output examples for the getCloudCacheManualBackupDetailList CLI.
Syntax
The getCloudCacheManualBackupDetailList syntax is as follows:
./ncloud vcache getCloudCacheManualBackupDetailList \
--cloudCacheInstanceNo <instance-no> \
[--regionCode <KR|SGN|JPN>] \
[--output <json|xml>]
Options
This section describes the options available when running getCloudCacheManualBackupDetailList.
Required options
The following options are required for getCloudCacheManualBackupDetailList.
| Options | Type | Required | Description |
|---|---|---|---|
--cloudCacheInstanceNo |
String | Required | Cloud DB for Cache instance number |
Common options
For information about the options common to all vcache subcommands, see Cloud DB for Cache (VPC) options.
Examples
If the request to retrieve the detailed list of manual backups is successful, the name, backup time, and size of each backup file are returned.
Command
The command example is as follows:
./ncloud vcache getCloudCacheManualBackupDetailList \
--cloudCacheInstanceNo 34567890 \
--regionCode KR \
--output json
Output
The output example is as follows:
{
"getCloudCacheManualBackupDetailListResponse": {
"totalRows": 1,
"cloudCacheBackupDetailList": [
{
"startTime": "2026-06-10T15:08:00+0900",
"endTime": "2026-06-10T15:08:00+0900",
"backupSize": 522,
"dataStorageSize": 10737418240,
"fileName": "202606101507"
}
],
"requestId": "c3d4e5f6-a7b8-9012-cdef-345678901234",
"returnCode": "0",
"returnMessage": "success"
}
}
getCloudRedisManualBackupDetailList CLI
This section describes the command syntax, options, commands, and output examples for the getCloudRedisManualBackupDetailList CLI.
Syntax
The getCloudRedisManualBackupDetailList syntax is as follows:
./ncloud vredis getCloudRedisManualBackupDetailList \
--cloudRedisInstanceNo <instance-no> \
[--regionCode <KR|SGN|JPN>] \
[--output <json|xml>]
Options
This section describes the options available when running getCloudRedisManualBackupDetailList.
Required options
The following options are required for getCloudRedisManualBackupDetailList.
| Options | Type | Required | Description |
|---|---|---|---|
--cloudRedisInstanceNo |
String | Required | Cloud DB for Cache instance number |
Common options
For information about the options common to all vredis subcommands, see Cloud DB for Cache (VPC) options.
Examples
If the request to retrieve the detailed list of manual backups is successful, the name, backup time, and size of each backup file are returned.
Command
The command example is as follows:
./ncloud vredis getCloudRedisManualBackupDetailList \
--cloudRedisInstanceNo 34567890 \
--regionCode KR \
--output json
Output
The output example is as follows:
{
"getCloudRedisManualBackupDetailListResponse": {
"totalRows": 1,
"cloudRedisBackupDetailList": [
{
"startTime": "2026-07-01T13:20:04+0900",
"endTime": "2026-07-01T13:20:04+0900",
"backupSize": 112,
"dataStorageSize": 10737418240,
"fileName": "202607011320"
}
],
"requestId": "c3d4e5f6-a7b8-9012-cdef-345678901234",
"returnCode": "0",
"returnMessage": "success"
}
}