Change the node specifications of the Search Engine Cluster
- Print
- PDF
Change the node specifications of the Search Engine Cluster
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Available in VPC
Description
Change the specifications of each node group of the Search Engine Cluster.
Requests
Request URL
POST https://vpcsearchengine.apigw.ntruss.com/api/v2/cluster/changeSpecNode/{serviceGroupInstanceNo} [KR]
POST https://vpcsearchengine.apigw.ntruss.com/api/sgn-v2/cluster/changeSpecNode/{serviceGroupInstanceNo} [SGN]
POST https://vpcsearchengine.apigw.ntruss.com/api/jpn-v2/cluster/changeSpecNode/{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 change |
managerNodeProductCode | String | N | ProductCode of the Cluster Manager Node Group to change |
dataNodeProductCode | String | N | ProductCode of the Cluster Data Node Group to change |
masterNodeProductCode | String | N | ProductCode of the Cluster Master Node Group to change |
Request examples
POST https://vpcsearchengine.apigw.ntruss.com/api/v2/cluster/changeSpecNode/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
{
"managerNodeProductCode" : "SVR.VELST.STAND.C002.M008.NET.SSD.B050.G002",
"dataNodeProductCode" : "SVR.VELST.STAND.C002.M008.NET.SSD.B050.G002",
"masterNodeProductCode": "SVR.VELST.STAND.C002.M008.NET.SSD.B050.G002"
}
curl -X POST "https://vpcsearchengine.apigw.ntruss.com/api/v2/cluster/changeSpecNode/2715569" \
-H "accept: application/json" \
-H "Content-Type: application/json" \
-H "x-ncp-iam-access-key: ANJNnR1jz1gUzaiS0aV2" \
-H "x-ncp-apigw-timestamp: 1670332553041" \
-H "x-ncp-apigw-signature-v2: ZcFmB0KHG+KpBllfmACkhI1Up5CQOrumzBb4OAV4F8w=" \
-d "{ \"managerNodeProductCode\": \"SVR.VELST.STAND.C002.M008.NET.SSD.B050.G002\", \"dataNodeProductCode\": \"SVR.VELST.STAND.C002.M008.NET.SSD.B050.G002\", \"masterNodeProductCode\": \"SVR.VELST.STAND.C002.M008.NET.SSD.B050.G002\"}"
Response parameters
public class Result {
private Boolean isAllPossible;
}
Field
Parameters | Type | Description |
---|---|---|
isAllPossible | Boolean | Whether specifications are successfully changed |
Response examples
{
"code": 0,
"message": "SUCCESS",
"result": {
"isAllPossible": true
},
"requestId": "a7e996d8-025f-444e-a627-89f739216b6f"
}
Was this article helpful?