Documentation Index

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

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

getCloudCacheBackupList

Prev Next

Cloud DB for Cache 시스템 백업 목록을 조회합니다.

참고

Cloud DB for Cache CLI는 지원하는 DBMS 범위에 따라 두 가지 버전을 제공합니다.

  • getCloudCacheBackupList CLI: Valkey, Redis DBMS 이용 가능
  • getCloudRedisBackupList CLI: Redis DBMS 이용 가능

getCloudCacheBackupList CLI

getCloudCacheBackupList CLI의 명령 구문과 옵션, 명령 및 출력 예시를 설명합니다.

구문

getCloudCacheBackupList 구문은 다음과 같습니다.

./ncloud vcache getCloudCacheBackupList \
    [--regionCode <FKR>] \
    [--output <json|xml>]

옵션

getCloudCacheBackupList 실행 시 지정할 수 있는 옵션을 설명합니다.

공통 옵션

vcache 명령에서 공통으로 사용하는 옵션에 대한 정보는 Cloud DB for Cache 옵션을 참조해 주십시오.

예시

Cloud DB for Cache 시스템 백업 목록 조회 요청이 성공하면 각 백업의 설정 정보가 반환됩니다.

명령

명령 예시는 다음과 같습니다.

./ncloud vcache getCloudCacheBackupList \
    --regionCode FKR \
    --output json

출력

출력 예시는 다음과 같습니다.

{
  "getCloudCacheBackupListResponse": {
    "totalRows": 1,
    "cloudCacheBackupList": [
      {
        "cloudCacheInstanceNo": "34567890",
        "cloudCacheServiceName": "test-cache-01",
        "backupFileRetentionPeriod": 1,
        "backupTime": "01:15",
        "backupSize": 528,
        "lastBackupDate": "2026-06-26T00:00:00+0900",
        "backupType": {
          "code": "CLUSTER",
          "codeName": "Backup 유형코드-CLOUD Cache(VPC)"
        },
        "shardCount": 3
      }
    ],
    "requestId": "4c0a9f1f-45b3-4e36-bd20-8b1c59e41b26",
    "returnCode": "0",
    "returnMessage": "success"
  }
}

getCloudRedisBackupList CLI

getCloudRedisBackupList CLI의 명령 구문과 옵션, 명령 및 출력 예시를 설명합니다.

구문

getCloudRedisBackupList 구문은 다음과 같습니다.

./ncloud vredis getCloudRedisBackupList \
    [--regionCode <FKR>] \
    [--output <json|xml>]

옵션

getCloudRedisBackupList 실행 시 지정할 수 있는 옵션을 설명합니다.

공통 옵션

vredis 명령에서 공통으로 사용하는 옵션에 대한 정보는 Cloud DB for Cache 옵션을 참조해 주십시오.

예시

Cloud DB for Cache 시스템 백업 목록 조회 요청이 성공하면 각 백업의 설정 정보가 반환됩니다.

명령

명령 예시는 다음과 같습니다.

./ncloud vredis getCloudRedisBackupList \
    --regionCode FKR \
    --output json

출력

출력 예시는 다음과 같습니다.

{
  "getCloudRedisBackupListResponse": {
    "totalRows": 1,
    "cloudRedisBackupList": [
      {
        "cloudRedisInstanceNo": "34567890",
        "cloudRedisServiceName": "test-redis-01",
        "backupFileRetentionPeriod": 1,
        "backupTime": "05:45",
        "backupSize": 525,
        "lastBackupDate": "2026-06-26T00:00:00+0900",
        "backupType": {
          "code": "CLUSTER",
          "codeName": "Backup 유형코드-CLOUD Cache(VPC)"
        },
        "shardCount": 3
      }
    ],
    "requestId": "49b8a909-5e07-4f54-a599-d86852ffa600",
    "returnCode": "0",
    "returnMessage": "success"
  }
}