getCloudCacheBackupDetailList

Prev Next

Available in VPC

Overview

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

Request

Request parameters

Parameter name Required Type Restrictions Description
regionCode No String - Region code
Determine the Region in which the Cloud DB for Cache backup detailed list will be queried.
You can obtain regionCode through the getRegionList action.
Default: Select the first Region of the getRegionList search results.
cloudRedisInstanceNo Yes String - Cloud DB for Cache instance number
Determine the Cloud DB for Cache instance number where the backup details will be queried.
cloudRedisInstanceNo can be obtained through the getCloudCacheInstanceList action.
output No String - Format type of the response result
Options: xml | json
Default: json

Response

Response data type

  • CloudRedisBackupDetailList type
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;

Examples

Call

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

Response


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