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.

getCloudHadoopNotebookImageProductList

Prev Next

Available in VPC

Overview

Get the list of Cloud Hadoop notebook product codes.

Request

Request parameters

Parameter name Required Type Restrictions Description
regionCode No String Region code
- It can be obtained through the getRegionList action.
- Default: Select the first Region of the getRegionList query result.
productCode No String Cloud Hadoop notebook image product code to query
- It can be obtained through productCode of the getCloudHadoopNotebookImageProductList action.
generationCode No String Server generation code
exclusionProductCode No String Cloud Hadoop notebook image product code to exclude
- It can be obtained through productCode of the getCloudHadoopNotebookImageProductList action.
output No String Response result's format type
- Options: xml | json
- Default: xml

Response

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 getCloudHadoopNotebookImageProductList --regionCode KR --productCode SW.VCHDP.LNX64.CNTOS.0708.HDNTB.10.B050

Response

{
  "getCloudHadoopNotebookImageProductListResponse": {
    "totalRows": 1,
    "productList": [
      {
        "productCode": "SW.VCHDP.LNX64.CNTOS.0708.HDNTB.10.B050",
        "productName": "Notebook 1.0",
        "productType": {
          "code": "LINUX",
          "codeName": "Linux"
        },
        "productDescription": "CentOS 7.8 with Notebook 1.0",
        "infraResourceType": {
          "code": "SW",
          "codeName": "Software"
        },
        "baseBlockStorageSize": 53687091200,
        "platformType": {
          "code": "LNX64",
          "codeName": "Linux 64 Bit"
        },
        "osInformation": "CentOS 7.8 with Notebook 1.0 (64-bit)"
      }
    ],
    "requestId": "6993ef7c-9250-4aa2-b8c9-edf5ba8c8fab",
    "returnCode": "0",
    "returnMessage": "success"
  }
}
<getCloudHadoopNotebookImageProductListResponse>
    <requestId>a5cc6720-feeb-4b35-943c-14aacb6f3691</requestId>
    <returnCode>0</returnCode>
    <returnMessage>success</returnMessage>
    <totalRows>1</totalRows>
    <productList>
        <product>
            <productCode>SW.VCHDP.LNX64.CNTOS.0708.HDNTB.10.B050</productCode>
            <productName>Notebook 1.0</productName>
            <productType>
                <code>LINUX</code>
                <codeName>Linux</codeName>
            </productType>
            <productDescription>CentOS 7.8 with Notebook 1.0</productDescription>
            <infraResourceType>
                <code>SW</code>
                <codeName>Software</codeName>
            </infraResourceType>
            <baseBlockStorageSize>53687091200</baseBlockStorageSize>
            <platformType>
                <code>LNX64</code>
                <codeName>Linux 64 Bit</codeName>
            </platformType>
            <osInformation>CentOS 7.8 with Notebook 1.0 (64-bit)</osInformation>
        </product>
    </productList>
</getCloudHadoopNotebookImageProductListResponse>