Documentation Index

Fetch the complete documentation index at: https://cli.ncloud-docs.com/llms.txt

Use this file to discover all available pages before exploring further.

getCloudCacheBackupDetailList

Prev Next

Available in VPC

Get the list of available Cloud DB for Cache system backup details.

Note

Cloud DB for Cache CLI offers two versions based on the supported DBMS range.

  • getCloudCacheBackupDetailList CLI: Support for Valkey and Redis DBMS
  • getCloudRedisBackupDetailList CLI: Support for Redis DBMS

getCloudCacheBackupDetailList CLI

This section describes the command syntax, options, commands, and output examples for the getCloudCacheBackupDetailList CLI.

Syntax

The getCloudCacheBackupDetailList syntax is as follows:

./ncloud vcache getCloudCacheBackupDetailList \
    --cloudCacheInstanceNo <instance-no> \
    [--regionCode <KR|SGN|JPN>] \
    [--output <json|xml>]

Options

This section describes the options available when running getCloudCacheBackupDetailList.

Required options

The following options are required for getCloudCacheBackupDetailList.

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 list of system backups with details is successful, the name, backup time, and size of each backup file will be returned.

Command

The command example is as follows:

./ncloud vcache getCloudCacheBackupDetailList \
    --cloudCacheInstanceNo 34567890 \
    --regionCode KR \
    --output json

Output

The output example is as follows:

{
  "getCloudCacheBackupDetailListResponse": {
    "totalRows": 1,
    "cloudCacheBackupDetailList": [
      {
        "startTime": "2026-06-11T01:45:02+0900",
        "endTime": "2026-06-11T01:45:02+0900",
        "backupSize": 528,
        "dataStorageSize": 10737418240,
        "fileName": "20260611"
      }
    ],
    "requestId": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
    "returnCode": "0",
    "returnMessage": "success"
  }
}

getCloudRedisBackupDetailList CLI

This section describes the command syntax, options, commands, and output examples for the getCloudRedisBackupDetailList CLI.

Syntax

The getCloudRedisBackupDetailList syntax is as follows:

./ncloud vredis getCloudRedisBackupDetailList \
    --cloudRedisInstanceNo <instance-no> \
    [--regionCode <KR|SGN|JPN>] \
    [--output <json|xml>]

Options

This section describes the options available when running getCloudRedisBackupDetailList.

Required options

The following options are required for getCloudRedisBackupDetailList.

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 list of system backups with details is successful, the name, backup time, and size of each backup file will be returned.

Command

The command example is as follows:

./ncloud vredis getCloudRedisBackupDetailList \
    --cloudRedisInstanceNo 34567890 \
    --regionCode KR \
    --output json

Output

The output example is as follows:

{
  "getCloudRedisBackupDetailListResponse": {
    "totalRows": 1,
    "cloudRedisBackupDetailList": [
      {
        "startTime": "2026-07-02T14:15:02+0900",
        "endTime": "2026-07-02T14:15:02+0900",
        "backupSize": 112,
        "dataStorageSize": 10737418240,
        "fileName": "20260702"
      }
    ],
    "requestId": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
    "returnCode": "0",
    "returnMessage": "success"
  }
}