Physical CPU modules REST API
Use this REST API to manage physical CPU modules.
Get all physical CPU modules
| REST API information | Value | Description |
|---|---|---|
| URI | /admin/resources/physical_cpu_modules | |
| Method | GET | |
| Returns | 200 | Returns a list of all physical CPU modules |
| 404 | The physical CPU module list was not found | |
| 500 | Platform System Manager encountered an internal error while processing the request. |
Returns a list of physical cpu modules.
You can use optional parameters to modify the response from the REST API call. For more information, see the Related information section.
Response body
[
{
"vendor_informations": [
"/admin/resources/vendor_informations/e7a4070e-070b-4e6f-af74-07d549342d12"
],
"created_time_raw": 1468543211155,
"events": [
],
"current_frequency": "3.20",
"physical_cpus": "/admin/resources/physical_cpus/98c7f8ab-3d20-489a-8341-08a54885f0d4",
"isas_rn": 1,
"state": "available",
"label_text": "Physical CPU Modules",
"updated_time": "Tue 09 Aug 2016 13:36:37.892 UTC",
"label_key": "pure0526",
"cores": 8,
"version": "2.2.2.0",
"id": "/admin/resources/physical_cpu_modules/5e612579-c607-47a3-85a6-0aab60c36de9",
"updated_time_raw": 1470749797892,
"physical_core_stats": [
],
"threads_per_core": 2,
"name": "CPU 1",
"capabilities": "64-bit Capable",
"created_time": "Fri 15 Jul 2016 00:40:11.155 UTC"
}
]
- capabilities
- The capabilities associated with the physical cpu module
- cores
- The number of cores of the physical cpu module
- created_time
- The time at which the object is created
- current_frequency
- The current frequency of the physical cpu module
- id
- The unique ID of the object in the system.
- label_key
- Key for retrieving the label for the physical cpu module
- label_text
- Default translated message text
- name
- The name of the cpu module
- physical_cpus
- The physical cpu that the physical cpu module belongs to
- state
- The general availability of the object. If "pending" the object has been created but not activated. If "available" the object is active in the system.
- threads_per_core
- The number of threads per core of the physical cpu module
- updated_time
- The time at which the object was last updated
Parents:
Children:
Get a specific physical CPU module
| REST API information | Value | Description |
|---|---|---|
| URI | /admin/resources/physical_cpu_modules/{id} | |
| Method | GET | |
| Returns | 200 | The physical CPU module was returned. |
| 404 | The physical CPU module was not found | |
| 500 | Platform System Manager encountered an internal error while processing the request. |
Returns a single physical cpu module identified by {id}.
You can use optional parameters to modify the response from the REST API call. For more information, see the Related information section.