getCloudHadoopNotebookProductList

Prev Next

Available in VPC

Overview

Searches available Cloud Hadoop Notebook server specification code list.

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
zoneCode No String Zone code
- Can determine the Zone where the Cloud Hadoop Notebook product code list will be searched
- Can be obtained through the getZoneList action
cloudHadoopNotebookImageProductCode Yes String Cloud Hadoop Notebook image product code
- Searches the server specification product list that can be created from Cloud Hadoop image product
- Can be obtained through the getCloudHadoopNotebookImageProductList action
productCode No String Product code of Cloud Hadoop Notebook to be searched
- Can be obtained through the getCloudHadoopNotebookProductList action
infraResourceDetailTypeCode No String Detailed product code of other server infrastructures for Cloud Hadoop Notebook
- Options:NTBND
exclusionProductCode No String Cloud Hadoop Notebook product code to exclude
- Can be obtained through the getCloudHadoopNotebookProductList action
output No String Format type of response result
- Options: xml | json
Default: xml

Responses

Response data type

  • ProductList type
ProductList extends CommonResponse
private Integer totalRows;
private List<Product> cloudMongoDbInstanceList = new ArrayList<>();
Product
private String productCode;
private String productName;
private CommonCode productType;
private String productDescription;
private CommonCode infraResourceType;
private CommonCode infraResourceDetailType;
private Integer cpuCount;
private Long memorySize;
private Long osMemorySize;
private Long baseBlockStorageSize;
private CommonCode platformType;
private String osInformation;
private CommonCode diskType;
private String dbKindCode;
private Long addBlockStorageSize;
private String generationCode;

Examples

Call

ncloud vhadoop getCloudHadoopNotebookProductList --regionCode KR --cloudHadoopNotebookImageProductCode SW.VCHDP.LNX64.CNTOS.0708.HDNTB.10.B050 --productCode SVR.VCHDP.NTBND.STAND.C004.M016.NET.HDD.B050.G002 --infraResourceDetailTypeCode NTBND 

Responses

{
  "getCloudHadoopNotebookProductListResponse": {
    "totalRows": 1,
    "productList": [
      {
        "productCode": "SVR.VCHDP.NTBND.STAND.C004.M016.NET.HDD.B050.G002",
        "productName": "vCPU 4EA, Memory 16 GB, Disk 50 GB",
        "productType": {
          "code": "STAND",
          "codeName": "Standard"
        },
        "productDescription": "vCPU 4EA, Memory 16 GB, Disk 50 GB",
        "infraResourceType": {
          "code": "VCHDP",
          "codeName": "Cloud Hadoop (VPC)"
        },
        "cpuCount": 4,
        "memorySize": 17179869184,
        "diskType": {
          "code": "NET",
          "codeName": "Network Storage"
        }
      }
    ],
    "requestId": "a142515a-bc50-4262-bc8a-efc19d9d16d5",
    "returnCode": "0",
    "returnMessage": "success"
  }
}
<getCloudHadoopNotebookProductListResponse>
    <requestId>4d7da061-2ecb-4b05-b5d9-611224de058f</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <productList>
        <product>
            <productCode>SVR.VCHDP.NTBND.STAND.C004.M016.NET.HDD.B050.G002</productCode>
            <productName>vCPU 4EA, Memory 16 GB, Disk 50 GB</productName>
            <productType>
                <code>STAND</code>
                <codeName>Standard</codeName>
            </productType>
            <productDescription>vCPU 4&#xAC1C;, &#xBA54;&#xBAA8;&#xB9AC; 16 GB, &#xB514;&#xC2A4;&#xD06C; 50 GB</productDescription>
            <infraResourceType>
                <code>VCHDP</code>
                <codeName>Cloud Hadoop (VPC)</codeName>
            </infraResourceType>
            <cpuCount>4</cpuCount>
            <memorySize>17179869184</memorySize>
            <diskType>
                <code>NET</code>
                <codeName>Network Storage</codeName>
            </diskType>
        </product>
    </productList>
</getCloudHadoopNotebookProductListResponse>