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.

getCloudCacheBackupDetailList

Prev Next

개요

사용 가능한 Cloud DB for Cache 백업 상세 정보 목록을 조회합니다.

참고

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

  • getCloudCacheBackupDetailList CLI: Valkey, Redis DBMS 이용 가능
  • getCloudRedisBackupDetailList CLI: Redis DBMS 이용 가능

getCloudCacheBackupDetailList CLI

getCloudCacheBackupDetailList CLI의 요청, 응답 형식을 설명합니다.

요청

요청 파라미터

파라미터명 필수 여부 타입 제약 사항 설명
regionCode No String - 리전 코드
Cloud DB for Cache 백업 상세 목록이 조회될 리전(Region) 결정 가능
regionCode는 getRegionList 액션을 통해 획득 가능
Default: getRegionList 조회 결과의 첫 번째 리전을 선택
cloudCacheInstanceNo Yes String - Cloud DB for Cache 인스턴스 번호
백업 상세 정보를 조회할 Cloud DB for Cache 인스턴스 번호 결정 가능
cloudCacheInstanceNo는 getCloudCacheInstanceList 액션을 통해 획득 가능
output No String - 응답 결과의 포맷 타입
Options: xml | json
Default: json

응답

응답 데이터 타입

  • CloudCacheBackupDetailList 타입
CloudCacheBackupDetailList extends CommonResponse
private Integer totalRows;
private List<CloudCacheBackupDetail> cloudCacheInstanceList = new ArrayList<>();
CloudCacheBackupDetail
private Date startTime;
private Date endTime;
private Long backupSize;
private Long dataStorageSize;

예시

호출 예시

ncloud vcache getCloudCacheBackupDetailList --regionCode FKR --cloudCacheInstanceNo ****821

응답 예시


<getCloudCacheBackupDetailListResponse>
    <requestId>2e320a76-469e-4f28-81b0-a03ea6c8053b</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <cloudCacheBackupDetailList>
        <cloudCacheBackupDetail>
            <startTime>2021-05-12T16:00:00+0900</startTime>
            <endTime>2021-05-12T16:00:00+0900</endTime>
            <backupSize>116</backupSize>
            <dataStorageSize>10737418240</dataStorageSize>
        </cloudCacheBackupDetail>
    </cloudCacheBackupDetailList>
</getCloudCacheBackupDetailListResponse>

getCloudRedisBackupDetailList CLI

getCloudRedisBackupDetailList CLI의 요청, 응답 형식을 설명합니다.

요청

요청 파라미터

파라미터명 필수 여부 타입 제약 사항 설명
regionCode No String - 리전 코드
regionCode는 getRegionList 액션을 통해서 획득 가능.
Default: getRegionList 조회 결과의 첫 번째 리전 선택
cloudRedisInstanceNo Yes String - Cloud DB for Cache 인스턴스 번호
백업 상세 정보를 조회할 Cloud DB for Cache 인스턴스 번호를 결정 가능
cloudRedisInstanceNo는 getCloudCacheInstanceList 액션을 통해서 획득 가능
output No String - 응답 결과의 포맷 타입
Options: xml | json
Default: xml

응답

응답 데이터 타입

  • CloudRedisBackupDetailList 타입
CloudRedisBackupDetailList extends CommonResponse
private Integer totalRows;
private List<CloudRedisBackupDetail> cloudRedisInstanceList = new ArrayList<>();
CloudRedisBackupDetail
private Date startTime;
private Date endTime;
private Long backupSize;
private Long dataStorageSize;
private String fileName;

예시

호출

ncloud vredis getCloudRedisBackupDetailList --regionCode FKR --cloudRedisInstanceNo ****821

응답 예시

{
  "getCloudRedisBackupDetailListResponse": {
    "requestId": "e603a8ee-9308-457e-9754-5497c931f222",
    "returnCode": "0",
    "returnMessage": "success",
    "totalRows": 1,
    "cloudRedisBackupDetailList": [
      {
        "startTime": "2022-05-18T14:10:28+0900",
        "endTime": "2022-05-18T14:10:28+0900",
        "backupSize": 302,
        "dataStorageSize": 10737418240,
        "fileName": "2022051*****"
      }
    ]
  }
}

<getCloudRedisBackupDetailListResponse>
    <requestId>213c6297-42ab-4ac4-81fd-9852837c3105</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <cloudRedisBackupDetailList>
        <cloudRedisBackupDetail>
            <startTime>2022-05-16T16:25:07+0900</startTime>
            <endTime>2022-05-16T16:25:07+0900</endTime>
            <backupSize>302</backupSize>
            <dataStorageSize>10737418240</dataStorageSize>
            <fileName>2022051*****</fileName>
        </cloudRedisBackupDetail>
    </cloudRedisBackupDetailList>
</getCloudRedisManualBackupDetailListResponse>