Get CPU and Memory Capacity
Headers
Authorization: OAuth the-session-uuidCurl Example
curl -H "Content-Type: application/json;charset=UTF-8" \
-H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \
-X GET http://localhost:8080/zstack/v1/hosts/capacities/cpu-memory?zoneUuids=6510dcd4e77939d695b035ecbcfb217c&zoneUuids=33a39cd9391538a4a4d45666e8505dda&clusterUuids=b7c233dd9c573f63b5bb97f50028fa7f&clusterUuids=08d332af6fdb351da456aea3b6b5d029&hostUuids=ba1bfc20682136c4b2f76920af8f010e&hostUuids=b09cd47a6fa93302ae55918ef8da2af4&hypervisorType=KVM&all=trueParameter List
Name | Type | Location | Description | Allowed Values | Starting Version |
|---|---|---|---|---|---|
zoneUuids (Optional) | List | query | Data Center UUID |
| 0.6 |
clusterUuids (Optional) | List | query | Cluster UUID. Used for attaching networks, storage, etc. |
| 0.6 |
hostUuids (Optional) | List | query | Host UUID. Used for adding, deleting hosts, etc. |
| 0.6 |
all (Optional) | boolean | query |
|
| 0.6 |
hypervisorType (Optional) | String | query |
|
| 0.6 |
systemTags (Optional) | List | query | System tags |
| 0.6 |
userTags (Optional) | List | query | User tags |
| 0.6 |
API Response
Response Example
{
"totalCpu": 4.0,
"availableCpu": 2.0,
"totalMemory": 8.0,
"availableMemory": 4.0,
"managedCpuNum": 4.0,
"capacityData": [
{
"resourceUuid": "db558260b0b53e36aa8ebf7e40c7c9c6",
"totalCpu": 4.0,
"availableCpu": 2.0,
"totalMemory": 8.0,
"availableMemory": 4.0,
"managedCpuNum": 4.0
}
],
"resourceType": "HostVO"
}| Name | Type | Description | Starting Version |
|---|---|---|---|
| totalCpu | long | Total CPU count | 0.6 |
| availableCpu | long | Available CPU count | 0.6 |
| totalMemory | long | Total memory | 0.6 |
| availableMemory | long | Available memory | 0.6 |
| managedCpuNum | long | Number of managed physical CPUs | 2.5.0 |
| resourceType | String | The type of queried resource (Host, Cluster, Data Center) | 3.9.0 |
| success | boolean | Success | 0.6 |
| error | ErrorCode | The error code. If not null, the operation failed. This field is null when the operation succeeds. See error for details | 0.6 |
| capacityData | List | See capacityData for details | 3.9.0 |
| error | ErrorCode | See error for details | 0.6 |
error
| Name | Type | Description | Starting Version |
|---|---|---|---|
| code | String | The error code number. A globally unique identifier for the error, for example, SYS.1000, HOST.1001 | 0.6 |
| description | String | A brief description of the error | 0.6 |
| details | String | The detailed error information | 0.6 |
| elaboration | String | Reserved field. Default is null | 0.6 |
| opaque | LinkedHashMap | Reserved field. Default is null | 0.6 |
| cause | ErrorCode | The root error that caused the current error. If no root error exists, this field is null | 0.6 |
capacityData
| Name | Type | Description | Starting Version |
|---|---|---|---|
| resourceUuid | String | Resource UUID | 3.9.0 |
| totalCpu | long | Total CPU count | 3.9.0 |
| availableCpu | long | Available CPU count | 3.9.0 |
| totalMemory | long | Total memory | 3.9.0 |
| availableMemory | long | Available memory | 3.9.0 |
| managedCpuNum | long | Number of managed physical CPUs | 3.9.0 |
error
| Name | Type | Description | Starting Version |
|---|---|---|---|
| code | String | The error code number. A globally unique identifier for the error, for example, SYS.1000, HOST.1001 | 0.6 |
| description | String | A brief description of the error | 0.6 |
| details | String | The detailed error information | 0.6 |
| elaboration | String | Reserved field. Default is null | 0.6 |
| opaque | LinkedHashMap | Reserved field. Default is null | 0.6 |
| cause | ErrorCode | The root error that caused the current error. If no root error exists, this field is null | 0.6 |
SDK Examples
Java SDK
GetCpuMemoryCapacityAction action = new GetCpuMemoryCapacityAction();
action.zoneUuids = asList("79383afd88f54a0b994515d84dbfa447","907c8ca71ee440e3bb0327f19d60754a");
action.clusterUuids = asList("9f5431123b834d95ae642c3cb923ba32","09cdcc7e28f340ccace7c427a32e2c05");
action.hostUuids = asList("2926839176934652ac3c6a77e4ce1484","c1b46284d0dd4d2a8a7637f0d4792d31");
action.hypervisorType = "KVM";
action.all = true;
action.sessionId = "f3aedb623b3c47a7bb215ea3f4be90d7";
GetCpuMemoryCapacityAction.Result res = action.call();Python SDK
GetCpuMemoryCapacityAction action = GetCpuMemoryCapacityAction()
action.zoneUuids = [28cd4ea55a72429d815205b0738b87b3, 2571613b0ba642b7a1c99ddc17aee8e3]
action.clusterUuids = [3e9e56c96fa545fea0b759cb601aad1c, 98ec43d31af446a9bf290b117af95e52]
action.hostUuids = [b5cf96f88a1943f89417d6bea0715b6c, b358d13ac15049a581e47c76183c1358]
action.hypervisorType = "KVM"
action.all = true
action.sessionId = "b0b7e398d33d4d7893255547d0859731"
GetCpuMemoryCapacityAction.Result res = action.call()