getCloudRedisBackupList
- Print
- PDF
getCloudRedisBackupList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Can be used in a VPC environment.
Overview
Search a list of Cloud DB for Redis backups.
Request
Request parameters
Parameter Name | Required | Type | Restrictions | Description |
---|---|---|---|---|
regionCode | No | String | You can determine the region where a region code's Cloud DB for Redis backup list will be searched. You can obtain the regionCode through the getRegionList action. Default: Select the first region of the getRegionList search results | |
output | No | String | Respond result's format type. Options: xml | json Default: json |
Response
Response Data Type
- CloudRedisBackupList type
CloudRedisBackupList extends CommonResponse |
---|
private Integer totalRows; |
private List<CloudRedisBackup> cloudRedisInstanceList = new ArrayList<>(); |
CloudRedisBackup |
---|
private String cloudRedisInstanceNo; |
private String cloudRedisServiceName; |
private Integer backupFileRetentionPeriod; |
private String backupTime; |
private Long backupSize; |
private Date lastBackupDate; |
private CommonCode backupType; |
private Integer shardCount; |
Example
Examples of requests
ncloud vredis getCloudRedisBackupList --regionCode KR
Examples of responses
<getCloudRedisBackupListResponse>
<requestId>94edea29-9c1e-44f5-9e9c-120f22688ca1</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<cloudRedisBackupList>
<cloudRedisBackup>
<cloudRedisInstanceNo>****890</cloudRedisInstanceNo>
<cloudRedisServiceName>test-****</cloudRedisServiceName>
<backupFileRetentionPeriod>1</backupFileRetentionPeriod>
<backupTime>00:30</backupTime>
<backupSize>302</backupSize>
<lastBackupDate>2021-05-25T00:00:00+0900</lastBackupDate>
<backupType>
<code>CLUSTER</code>
<codeName>CLOUD REDIS(VPC) Cluster Backup Type</codeName>
</backupType>
<shardCount>3</shardCount>
</cloudRedisBackup>
</cloudRedisBackupList>
</getCloudRedisBackupListResponse>
Was this article helpful?