This API is used to query the node types supported by GaussDB(DWS).
GET /v2/{project_id}/node-types
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID. For details about how to obtain the ID, see Obtaining a Project ID. |
GET /v2/89cd04f168b84af6be287f71730fdb4b/node-types
status CODE 200 { "node_types": [ { "spec_name": "dws.d1.xlarge", "id": "ebe532d6-665f-40e6-a4d4-3c51545b6a67", "detail": [ { "type": "vCPU", "value": "4" }, { "value": "1675", "type": "LOCAL_DISK", "unit": "GB" }, { "type": "mem", "value": "32", "unit": "GB" } ] }, { "spec_name": "dws.m1.xlarge.ultrahigh", "id": "ebe532d6-665f-40e6-a4d4-3c51545b4f71", "detail": [ { "type": "vCPU", "value": "4" }, { "value": "512", "type": "SSD", "unit": "GB" }, { "type": "mem", "value": "32", "unit": "GB" } ] } ] }
Parameter |
Type |
Description |
---|---|---|
node_types |
Array of NodeTypes objects |
List of node type objects |
Parameter |
Type |
Description |
---|---|---|
spec_name |
String |
Name of a node type |
detail |
Array of Detail objects |
Node type details |
id |
String |
Node type ID |
Returned Value |
Description |
---|---|
400 Bad Request |
Request error. |
401 Unauthorized |
Authorization failed. |
403 Forbidden |
No operation permission. |
404 Not Found |
No resources found. |
500 Internal Server Error |
Internal service error. |
503 Service Unavailable |
The service is unavailable. |