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.

getCloudHadoopNotebookBucketList

Prev Next

VPC環境で利用できます。

概要

Cloud Hadoop Notebookで使用できる Object Storageバケットリストを照会します。

リクエスト

リクエストパラメータ

パラメータ名 要否 タイプ 制約事項 説明
regionCode No String リージョンコード
- getRegionListアクションを通じて取得可能
- Default: getRegionList照会結果の最初のリージョンを選択
output No String レスポンス結果のフォーマットタイプ
- Options: xml | json
- Default: xml

レスポンス

レスポンスデータのタイプ

  • CloudHadoopNotebookBucketListタイプ
CloudHadoopNotebookBucketList extends CommonResponse
private Integer totalRows;
private List<CloudHadoopNotebookBucket> cloudHadoopNotebookBucketList = new ArrayList<>();
CloudHadoopNotebookBucket
private String bucketName;

呼び出し

ncloud vhadoop getCloudHadoopNotebookBucketList --regionCode KR

レスポンス

{
  "getCloudHadoopNotebookBucketListResponse": {
    "totalRows": 1,
    "cloudHadoopNotebookBucketList": [
      {
        "bucketName": "testhadoop"
      }
    ],
    "requestId": "e451de52-8f25-416d-b6a5-2581a648018b",
    "returnCode": "0",
    "returnMessage": "success"
  }
}
<getCloudHadoopNotebookBucketListResponse>
    <requestId>2bdc155c-073f-4758-8097-2b471c20dbe4</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <cloudHadoopNotebookBucketList>
        <cloudHadoopNotebookBucket>
            <bucketName>testhadoop</bucketName>
        </cloudHadoopNotebookBucket>
    </cloudHadoopNotebookBucketList>
</getCloudHadoopNotebookBucketListResponse>