getCloudMysqlBackupDetailList
- Print
- PDF
getCloudMysqlBackupDetailList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in VPC
Overview
Search the detailed 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 | |
cloudMysqlInstanceNo | Yes | String | - Cloud DB for MySQL instance number cloudMysqlInstanceNo can be obtained via the getCloudMysqlInstanceList action | |
pageNo | No | Integer | Min: 0 | - Page number of paged result Paging can be handled using pageNo and pageSize |
pageSize | Conditional | Integer | Min: 1 | - Size of each page to be displayed when paging Paging can be handled using pageNo and pageSize It must be entered when entering pageNo |
output | No | String | - Format type of the response result Options : xml | json Default : json |
Responses
Response data type
- CloudMysqlBackupDetailList type
CloudMysqlBackupDetailList extends CommonResponse |
---|
private Integer totalRows; |
private List<CloudMysqlBackupDetail> cloudMysqlBackupDetailList = new ArrayList<>(); |
CloudMysqlBackupDetail |
---|
private String fileName; |
private Date startTime; |
private Date endTime; |
private Long backupSize; |
private Long dataStorageSize; |
Examples
Request examples
ncloud vmysql getCloudMysqlBackupDetailList --regionCode KR --cloudMysqlInstanceNo ****890 --pageNo 0 --pageSize 30
Response examples
<getCloudMysqlBackupDetailListResponse>
<requestId>11ca8ac0-841c-4776-aef5-3feb6eb9440e</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<cloudMysqlBackupDetailList>
<cloudMysqlBackupDetail>
<fileName>20210528</fileName>
<startTime>2021-05-28T02:10:00+0900</startTime>
<endTime>2021-05-28T02:10:10+0900</endTime>
<backupSize>571482767</backupSize>
<dataStorageSize>10737418240</dataStorageSize>
</cloudMysqlBackupDetail>
</cloudMysqlBackupDetailList>
</getCloudMysqlBackupDetailListResponse>
Was this article helpful?