getCloudRedisBackupDetailList
- Print
- PDF
getCloudRedisBackupDetailList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Can be used in a VPC environment.
Overview
Search the list of Cloud DB for Redis backup details available for use.
Request
Request parameters
Parameter Name | Required | Type | Restrictions | Description |
---|---|---|---|---|
regionCode | No | String | Region code You can decide the region where the Cloud DB for Redis backup details list will be searched. You can obtain the regionCode through the getRegionList action. Default: Select the first region of the getRegionList search results | |
cloudRedisInstanceNo | Yes | String | Cloud DB for Redis instance number You can decide the Cloud DB for Redis instance number with which the backup details will be searched. You can obtain the cloudRedisInstanceNo through the getCloudRedisInstanceList action. | |
output | No | String | Format type for the response results 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; |
private String fileName; |
Example
Examples of requests
ncloud vredis getCloudRedisBackupDetailList --regionCode KR --cloudRedisInstanceNo ****821
Examples of responses
<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>
<fileName>2022****</fileName>
</cloudRedisBackupDetail>
</cloudRedisBackupDetailList>
</getCloudRedisBackupDetailListResponse>
Was this article helpful?