getCloudMysqlBackupList
- Print
- PDF
getCloudMysqlBackupList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in VPC
Overview
Search the list of Cloud DB for MySQL instance backups.
Requests
Request parameters
Parameter name | Requirement status | Type | Restrictions | Description |
---|---|---|---|---|
regionCode | No | String | - Region code regionCode can be obtained via the getRegionList action Default: selects the first region of the getRegionList query results | |
output | No | String | - Format type of the response result Options : xml | json Default : json |
Responses
Response data type
- CloudMysqlBackupList type
CloudMysqlBackupList extends CommonResponse |
---|
private Integer totalRows; |
private List<CloudMysqlBackup> cloudMysqlBackupList = new ArrayList<>(); |
CloudMysqlBackup |
---|
private String cloudMysqlInstanceNo; |
private String cloudMysqlServiceName; |
private Integer backupFileRetentionPeriod; |
private String backupTime; |
private Long backupSize; |
private Date lastBackupDate; |
Examples
Request examples
ncloud vmysql getCloudMysqlBackupList --regionCode KR
Response examples
<getCloudMysqlBackupListResponse>
<requestId>2086d40d-d152-49a7-aa26-effaecb5a616</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<cloudMysqlBackupList>
<cloudMysqlBackup>
<cloudMysqlInstanceNo>****890</cloudMysqlInstanceNo>
<cloudMysqlServiceName>test-****</cloudMysqlServiceName>
<backupFileRetentionPeriod>10</backupFileRetentionPeriod>
<backupTime>02:00</backupTime>
<backupSize>571482767</backupSize>
<lastBackupDate>2021-05-28T02:10:00+0900</lastBackupDate>
</cloudMysqlBackup>
</cloudMysqlBackupList>
</getCloudMysqlBackupListResponse>
Was this article helpful?