getCloudMysqlUserList
    • PDF

    getCloudMysqlUserList

    • PDF

    記事の要約

    VPC環境で利用できます。

    概要

    Cloud DB for MySQLインスタンスの DB Userリストを照会します。

    リクエスト

    リクエストパラメータ

    パラメータ名必須の有無タイプ制限事項説明
    regionCodeNoString- リージョンコード
    regionCodeはgetRegionListアクションを通じて取得可能
    デフォルト: getRegionList照会結果の最初のリージョンを選択
    cloudMysqlInstanceNoYesString- Cloud DB for MySQLのインスタンス番号
    cloudMysqlInstanceNoはgetCloudMysqlInstanceListアクションを通じて取得可能
    pageNoYesInteger最小: 0- ページングされた結果のページ番号
    結果値を pageNo、pageSizeを利用してページング処理できる
    pageSizeYesInteger最小: 1- ページング時に表示する各ページサイズ
    結果値を pageNo、pageSizeを利用してページング処理できる
    outputNoString- レスポンス結果の形式タイプ
    オプション: xml | json
    デフォルト: json

    レスポンス

    レスポンスデータタイプ

    • CloudMysqlUserListタイプ
    CloudMysqlUserList extends CommonResponse
    private Integer totalRows;
    private List<CloudMysqlUser> cloudMysqlUserList = new ArrayList<>();
    CloudMysqlUser
    private String userName;
    private String hostIp;
    private String authority;
    private Boolean isSystemTableAccess;

    リクエスト例

    ncloud vmysql getCloudMysqlUserList --regionCode KR --cloudMysqlInstanceNo ****890 --pageNo 0 --pageSize 10
    

    レスポンス例

    <getCloudMysqlUserListResponse>
        <requestId>a117cbf7-c16b-483a-92e2-69c85a7ef928</requestId>
        <returnCode>0</returnCode>
        <returnMessage>success</returnMessage>
        <totalRows>2</totalRows>
        <cloudMysqlUserList>
            <cloudMysqlUser>
                <userName>test_read</userName>
                <hostIp>%</hostIp>
                <authority>READ</authority>
                <isSystemTableAccess>true</isSystemTableAccess>
            </cloudMysqlUser>
            <cloudMysqlUser>
                <userName>test_ddl</userName>
                <hostIp>%</hostIp>
                <authority>DDL</authority>
                <isSystemTableAccess>true</isSystemTableAccess>
            </cloudMysqlUser>
        </cloudMysqlUserList>
    </getCloudMysqlUserListResponse>
    

    この記事は役に立ちましたか?

    Changing your password will log you out immediately. Use the new password to log back in.
    First name must have atleast 2 characters. Numbers and special characters are not allowed.
    Last name must have atleast 1 characters. Numbers and special characters are not allowed.
    Enter a valid email
    Enter a valid password
    Your profile has been successfully updated.