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.

getCloudHadoopMysqlInstanceList

Prev Next

VPC 環境で利用できます。

概要

Cloud Hadoop Hiveメタストアと連携するCloud DB for MySQL (VPC)のインスタンスリストを照会します。

リクエスト

リクエストパラメータ

パラメータ名 必須の有無 タイプ 制約事項 説明
regionCode No String - リージョンコード
- Hiveメタストアを連携できるかどうかテストするリージョン(Region)を決定できます。
- regionCodeは、getRegionListアクションを通じて取得できます。
- デフォルト:getRegionList照会結果の最初のリージョンを選択
cloudHadoopInstanceNo Yes String - Hiveメタストアを連携するCloud DB for MySQL (VPC)と接続できるCloud Hadoopインスタンス番号
- cloudHadoopInstanceNoは、getCloudHadoopInstanceListアクションを通じて取得できます。
output No String - レスポンス結果のフォーマットタイプ
- Options: xml | json
- Default: xml

レスポンス

レスポンス データタイプ

  • CloudMysqlInstanceListForHiveMetaStore タイプ
CloudMysqlInstanceListForHiveMetaStore extends CommonResponse
private Integer totalRows;
private List<CloudMysqlInstanceForHiveMetaStore> cloudMysqlInstanceListForHiveMetaStore = new ArrayList<>();
CloudMysqlInstanceForHiveMetaStore
private String cloudMysqlInstanceNo;
private String cloudMysqlInstanceName;
private String vpcName;

リクエスト例

ncloud vhadoop getCloudHadoopMysqlInstanceList --regionCode KR --cloudHadoopInstanceNo 823***

レスポンス例

<CloudMysqlInstanceListForHiveMetaStoreResponse>
    <requestId>f2386914-c6b3-432f-83d4-2884e9039cdb</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>2</totalRows>
    <cloudMysqlInstanceListForHiveMetaStore>
        <cloudMysqlInstanceForHiveMetaStore>
            <cloudMysqlInstanceNo>****855</cloudMysqlInstanceNo>
            <cloudMysqlInstanceName>****sc</cloudMysqlInstanceName>
            <vpcName>****-vpc-exercise</vpcName>
        </cloudMysqlInstanceForHiveMetaStore>
        <cloudMysqlInstanceForHiveMetaStore>
            <cloudMysqlInstanceNo>****222</cloudMysqlInstanceNo>
            <cloudMysqlInstanceName>****sds</cloudMysqlInstanceName>
            <vpcName>****-vpc-exercise</vpcName>
        </cloudMysqlInstanceForHiveMetaStore>
    </cloudMysqlInstanceListForHiveMetaStore>
</CloudMysqlInstanceListForHiveMetaStoreResponse>