getCloudHadoopBucketList
- 인쇄
- PDF
getCloudHadoopBucketList
- 인쇄
- PDF
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
개요
CloudHadoop에서 사용할 수 있는 Object Storage bucket 리스트를 조회합니다.
요청
요청 파라미터
API Parameter Name | Parameter 명 | 필수 여부 | Default Value | Available Values | Data Type |
---|---|---|---|---|---|
regionNo | 리전 번호 | N | 1 | [1] for KR Region | String |
responseFormatType | 응답포맷타입 | N | XML | XML,JSON Type 선택 | String |
요청 헤더
응답
Success
{
"getCloudHadoopBucketListResponse": {
"requestId": "<api-call-request-id>",
"returnCode": "0",
"totalRows": <response-리스트-길이>,
"bucketList": [
{
"bucketName": "<object-storage-bucket-이름>"
},
]
}
}
Authentication failed
{
"error": {
"errorCode": "<리턴-코드>",
"message": "<리턴-메시지>"
}
}
Bad Parameter
{
"responseError": {
"returnCode": "<리턴-코드>",
"returnMessage": "<리턴-메시지>"
}
}
예시
요청 예시
curl -i -X GET \
-H "x-ncp-apigw-timestamp:1505290625682" \
-H "x-ncp-iam-access-key:D78BB444D6D3C84CA38A" \
-H "x-ncp-apigw-signature-v2:WTPItrmMIfLUk/UyUIyoQbA/z5hq9o3G8eQMolUzTEo=" \
"https://ncloud.apigw.gov-ntruss.com/hadoop/v2/getCloudHadoopBucketList"
응답 예시
{
"getCloudHadoopBucketListResponse": {
"requestId": "65ae53a3-d027-45cb-b5de-3b574c108479",
"returnCode": "0",
"returnMessage": "success",
"totalRows": 2,
"bucketList": [
{
"bucketName": "user-bucket-1"
},
{
"bucketName": "user-bucket-2"
}
]
}
}
이 문서가 도움이 되었습니까?