Querying DDM Node Classes Available in an AZ
Function
This API is used to query DDM node classes available in an AZ.
Constraints
None
URI
GET /v2/{project_id}/flavors?engine_id={engine_id}&offset={offset}&limit={limit}
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| project_id | Yes | String | Project ID of a tenant in a region To obtain this value, see Obtaining a Project ID. |
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| engine_id | Yes | String | Engine ID, which can be obtained by calling the API for querying DDM engine information. |
| offset | No | Integer | Index offset. The query starts from the next piece of data indexed by this parameter. The value is 0 by default. The value must be a positive integer. |
| limit | No | Integer | Maximum node classes to be queried. Value range: 1 to 128. If the parameter value is not specified, 128 nodes are queried by default. |
Request Parameters
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| X-Auth-Token | Yes | String | User token You can obtain the token by calling the IAM API used to obtain a user token. |
Response Parameters
Status code: 200
| Parameter | Type | Description |
|---|---|---|
| computeFlavorGroups | Array of ComputeFlavorGroupsInfo objects | Compute flavor information |
| Parameter | Type | Description |
|---|---|---|
| groupType | String | Compute resource architecture type. |
| computeFlavors | Array of ComputeFlavors objects | Compute flavors |
| offset | Integer | Which page the server starts returning items |
| limit | Integer | Number of records displayed on each page |
| total | Integer | Total number of compute flavors |
| Parameter | Type | Description |
|---|---|---|
| id | String | Class ID |
| typeCode | String | Resource type code |
| code | String | VM flavor types recorded in DDM |
| iaasCode | String | VM flavor types recorded by the IaaS layer |
| cpu | String | Number of vCPUs |
| mem | String | Memory size in GB |
| maxConnections | String | Maximum number of connections |
| serverType | String | Compute resource type |
| architecture | String | Compute resource architecture type. |
| azStatus | Map<String,String> | Status of the AZ where node classes are available. The key is the AZ ID and the value is the AZ status. The value can be:
|
| regionStatus | String | Region status |
| groupType | String | Compute resource architecture type. |
| dbType | String | Engine type |
| extendFields | Map<String,String> | Extension field for storing AZ information |
Status code: 400
| Parameter | Type | Description |
|---|---|---|
| errCode | String | Service error code |
| externalMessage | String | Error message |
Status code: 500
| Parameter | Type | Description |
|---|---|---|
| errCode | String | Service error code |
| externalMessage | String | Error message |
Example Request
Querying DDM node classes available in an AZ
GET https://{endpoint}/v2/{project_id}/flavors?engine_id={engine_id}&offset={offset}&limit={limit} Example Response
Status code: 200
OK
{
"computeFlavorGroups": [{
"offset": 0,
"limit": 100,
"total": 3,
"groupType": "X86",
"computeFlavors": [{
"id": "7267235a-80b0-3fd4-892f-4f3dd0cd60e4",
"typeCode": "cloudtype.resource.type.ddm",
"code": "ddm.2xlarge.2",
"iaasCode": "s2.xlarge.2",
"cpu": "8",
"mem": "16",
"maxConnections": null,
"serverType": "KVM",
"architecture": "X86",
"azStatus": {
"az1": "unsupported",
"az2": "normal",
"az3": "normal"
},
"regionStatus": "abandon",
"groupType": null,
"dbType": "DDM",
"extendFields": {
"azCode": "az1,az2,az3",
"azDescription": "az1,az2,az3"
}
},
{
"id": "8cfd2730-1d53-3349-acbb-12a741767f70",
"typeCode": "cloudtype.resource.type.ddm",
"code": "ddm.4xlarge.2",
"iaasCode": "s2.xlarge.2",
"cpu": "16",
"mem": "32",
"maxConnections": null,
"serverType": "KVM",
"architecture": "X86",
"azStatus": {
"az1": "unsupported",
"az2": "normal",
"az3": "normal"
},
"regionStatus": "abandon",
"groupType": null,
"dbType": "DDM",
"extendFields": {
"azCode": "az1,az2,az3",
"azDescription": "az1,az2,az3"
}
},
{
"id": "f8388a59-b2af-3be0-8fe5-7422755d4570",
"typeCode": "cloudtype.resource.type.ddm",
"code": "ddm.8xlarge.2",
"iaasCode": "s2.xlarge.2",
"cpu": "32",
"mem": "64",
"maxConnections": null,
"serverType": "KVM",
"architecture": "X86",
"azStatus": {
"az1": "unsupported",
"az2": "normal",
"az3": "normal"
},
"regionStatus": "abandon",
"groupType": null,
"dbType": "DDM",
"extendFields": {
"azCode": "az1,az2,az3",
"azDescription": "az1,az2,az3"
}
}
]
}]
} Status code: 400
bad request
{
"externalMessage" : "Parameter error.",
"errCode" : "DBS.280001"
} Status code: 500
server error
{
"externalMessage" : "Server failure.",
"errCode" : "DBS.200412"
} Status Codes
| Status Code | Description |
|---|---|
| 200 | OK |
| 400 | bad request |
| 500 | server error |
Error Codes
For details, see Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.