Search the specifications by node group
- Print
- PDF
Search the specifications by 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 each node group of the Cloud Data Streaming Service.
Requests
Request URL
GET https://clouddatastreamingservice.apigw.ntruss.com/api/v1/cluster/getNodeSpecDetail/{serviceGroupInstanceNo} [KR]
GET https://clouddatastreamingservice.apigw.ntruss.com/api/sgn-v1/cluster/getNodeSpecDetail/{serviceGroupInstanceNo} [SGN]
GET https://clouddatastreamingservice.apigw.ntruss.com/api/jpn-v1/cluster/getNodeSpecDetail/{serviceGroupInstanceNo} [JPN]
Request headers
Header | Description |
---|---|
x-ncp-apigw-timestamp | This is the number of milliseconds that have elapsed since January 1, 1970 00:00:00 UTC, and if the time difference compared to the API Gateway server is more than 5 minutes, then the request is considered invalidx-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://clouddatastreamingservice.apigw.ntruss.com/api/v1/cluster/getNodeSpecDetail/123456
HOST: clouddatastreamingservice.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://clouddatastreamingservice.apigw.ntruss.com/api/v1/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 brokerNodeProductName;
private String brokerNodeProductCode;
}
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 |
brokerNodeProductName | String | Broker Node H/W ProductCode name |
brokerNodeProductCode | String | Broker Node H/W ProductCode |
Response examples
{
"code": 0,
"message": "SUCCESS",
"result": {
"clusterName": "dddd",
"serviceGroupInstanceNo": 2701734,
"zoneNo": "",
"softwareProductCode": "SW.VCDSS.OS.LNX64.CNTOS.0708.B050",
"managerNodeProductName": "vCPU 2EA, Memory 8GB, [SSD] Disk 50GB",
"managerNodeProductCode": "SVR.VCDSS.STAND.C002.M008.NET.SSD.B050.G002",
"brokerNodeProductName": "vCPU 2EA, Memory 8GB, [SSD] Disk 50GB",
"brokerNodeProductCode": "SVR.VCDSS.STAND.C002.M008.NET.SSD.B050.G002"
},
"requestId": "52ed7d30-8215-49a8-902b-22ad3bc90b02"
}
Was this article helpful?