Documentation Index

Fetch the complete documentation index at: https://cli.ncloud-docs.com/llms.txt

Use this file to discover all available pages before exploring further.

getCloudMysqlBackupDetailList

Prev Next

VPC 환경에서 이용 가능합니다.

개요

Cloud DB for MySQL 인스턴스의 백업 상세 리스트를 조회합니다.

요청

요청 파라미터

파라미터명 필수 여부 타입 제약 사항 설명
regionCode No String - 리전 코드
regionCode는 getRegionList 액션을 통해 획득 가능
Default : getRegionList 조회 결과의 첫 번째 리전을 선택
cloudMysqlInstanceNo Yes String - Cloud DB for MySQL 인스턴스 번호
cloudMysqlInstanceNo는 getCloudMysqlInstanceList 액션을 통해 획득 가능
pageNo No Integer Min: 0 - 페이징된 결과의 페이지 번호
결괏값을 pageNo, pageSize를 이용하여 페이징 처리 가능
pageSize Conditional Integer Min: 1 - 페이징 시 보여줄 각 페이지 사이즈
결괏값을 pageNo, pageSize를 이용하여 페이징 처리 가능
pageNo 입력시 반드시 입력
output No String - 응답 결과의 포맷 타입
Options : xml | json
Default : json

응답

응답 데이터 타입

  • CloudMysqlBackupDetailList 타입
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;

예시

요청 예시

ncloud vmysql getCloudMysqlBackupDetailList --regionCode KR --cloudMysqlInstanceNo ****890 --pageNo 0 --pageSize 30

응답 예시

<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>