Search the specifications of each Search Engine Cluster node group
- Print
- PDF
Search the specifications of each Search Engine Cluster node group
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in VPC
Description
Search the specifications of the Search Engine Cluster by node group.
Requests
Request URL
GET https://vpcsearchengine.apigw.ntruss.com/api/v2/cluster/getNodeSpecDetail/{serviceGroupInstanceNo} [KR]
GET https://vpcsearchengine.apigw.ntruss.com/api/sgn-v2/cluster/getNodeSpecDetail/{serviceGroupInstanceNo} [SGN]
GET https://vpcsearchengine.apigw.ntruss.com/api/jpn-v2/cluster/getNodeSpecDetail/{serviceGroupInstanceNo} [JPN]
Request headers
Header | Description |
---|---|
x-ncp-apigw-timestamp | x-ncp-apigw-timestamp:{Timestamp} |
x-ncp-iam-access-key | Access Key ID value issued by the NAVER Cloud Platform portalx-ncp-iam-access-key:{Account Access Key} |
x-ncp-apigw-signature-v2 | Signature encrypted with the Access Key ID value and Secret Keyx-ncp-apigw-signature-v2:{API Gateway Signature} |
Content-Type | The request body content type is specified as application/jsonContent-Type: application/json |
Request parameters
Parameter | Type | Requirement status | Description |
---|---|---|---|
serviceGroupInstanceNo | String | Y | ServiceGroupInstanceNo of the cluster to view |
Request examples
GET https://vpcsearchengine.apigw.ntruss.com/api/v2/cluster/getNodeSpecDetail/123456
HOST: vpcsearchengine.apigw.ntruss.com
Content-Type: application/json
x-ncp-apigw-signature-v2: zq0FrtlU8JZJi9esTK31bCQUNG3H+jo4CMjMkJDoWSc=
x-ncp-apigw-timestamp: 1593848345548
x-ncp-iam-access-key: 7fIvgFY428mtY6sY8maw
curl -X GET "https://vpcsearchengine.apigw.ntruss.com/api/v2/cluster/getNodeSpecDetail/123456" \
-H "accept: application/json" \
-H "Content-Type: application/json" \
-H "x-ncp-iam-access-key: 7fIvgFY428mtY6sY8maw" \
-H "x-ncp-apigw-timestamp: 1601971222179" \
-H "x-ncp-apigw-signature-v2: zrCelnR48AADdK/uh6Xe3yy468i8KpQoewYHUmeqYh4="
Response parameters
public class Result {
private String clusterName;
private Integer serviceGroupInstanceNo;
private String softwareProductCode;
private String managerNodeProductName;
private String managerNodeProductCode;
private String dataNodeProductName;
private String dataNodeProductCode;
private String masterNodeProductName;
private String masterNodeProductCode;
}
Field
Parameters | Type | Description |
---|---|---|
clusterName | String | Cluster name |
serviceGroupInstanceNo | Integer | Unique number of the cluster |
softwareProductCode | String | S/W ProductCode of the cluster |
managerNodeProductName | String | Manager Node H/W ProductCode name |
managerNodeProductCode | String | Manager Node H/W ProductCode |
dataNodeProductName | String | Data node H/W ProductCode name |
dataNodeProductCode | String | data Node H/W ProductCode |
masterNodeProductName | String | Master node H/W ProductCode name |
masterNodeProductCode | String | Master Node H/W ProductCode |
Response examples
{
"code": 0,
"message": "SUCCESS",
"result": {
"clusterName": "apitest",
"serviceGroupInstanceNo": 2715569,
"softwareProductCode": "SW.VELST.OS.LNX64.CNTOS.0708.B050",
"managerNodeProductName": "vCPU 2EA, Memory 4GB, [SSD] Disk 50GB",
"managerNodeProductCode": "SVR.VELST.HICPU.C002.M004.NET.SSD.B050.G002",
"dataNodeProductName": "vCPU 2EA, Memory 4GB, [SSD] Disk 50GB",
"dataNodeProductCode": "SVR.VELST.HICPU.C002.M004.NET.SSD.B050.G002",
"masterNodeProductName": "vCPU 2EA, Memory 4GB, [SSD] Disk 50GB",
"masterNodeProductCode": "SVR.VELST.HICPU.C002.M004.NET.SSD.B050.G002"
},
"requestId": "d3e78486-6ab7-4631-9a78-73bf826f4ea0"
}
Was this article helpful?