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 | PureSystems® 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/20005679-0bb4-41e6-be1e-cdbc075d29d4"
],
"created_time_raw": 1463766821113,
"events": [
],
"current_frequency": "100 MHz/3.20 GHz",
"physical_cpus": "/admin/resources/physical_cpus/3e30aa29-3156-467c-8bbc-b7a45c0e1b22",
"isas_rn": 1,
"state": "available",
"label_text": "Physical CPU Modules",
"updated_time": "Thu 09 Jun 2016 00:07:02.834 UTC",
"label_key": "pure0526",
"cores": 8,
"version": "2.2.2.0",
"id": "/admin/resources/physical_cpu_modules/674a6b36-aebb-4445-a787-5086ca725e3b",
"updated_time_raw": 1465430822834,
"physical_core_stats": [
],
"threads_per_core": 2,
"name": "CPU 1",
"capabilities": "64-bit Capable",
"created_time": "Fri 20 May 2016 17:53:41.113 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 | PureSystems 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.