getCloudHadoopNotebookBucketList
- Print
- PDF
getCloudHadoopNotebookBucketList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in VPC
Overview
Searches for Object Storage bucket list that can be used in Cloud Hadoop Notebook.
Requests
Request parameters
Parameter name | Requirement status | Type | Restrictions | Description |
---|---|---|---|---|
regionCode | No | String | Region code - Can be obtained through the getRegionList action - Default: select the first Region of the getRegionList search results | |
output | No | String | Format type of response result - Options: xml | json - Default: xml |
Responses
Response data type
- CloudHadoopNotebookBucketList type
CloudHadoopNotebookBucketList extends CommonResponse |
---|
private Integer totalRows; |
private List<CloudHadoopNotebookBucket> cloudHadoopNotebookBucketList = new ArrayList<>(); |
CloudHadoopNotebookBucket |
---|
private String bucketName; |
Examples
Call
ncloud vhadoop getCloudHadoopNotebookBucketList --regionCode KR
Responses
{
"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>
Was this article helpful?