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>