Physical memory modules REST API
Use this REST API to manage physical memory modules.
Get all physical memory modules
| REST API information | Value | Description |
|---|---|---|
| URI | /admin/resources/physical_memory_modules | |
| Method | GET | |
| Returns | 200 | Returns a list of all physical memory modules |
| 404 | The physical memory module list was not found | |
| 500 | Platform System Manager encountered an internal error while processing the request. |
Returns a list of physical memory 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": [
],
"created_time_raw": 1470321039085,
"events": [
],
"isas_rn": 1,
"state": "available",
"label_text": "Physical Memory Module",
"updated_time": "Thu 04 Aug 2016 14:30:39.085 UTC",
"label_key": "pure0522",
"units": "GB",
"physical_memory": "/admin/resources/physical_memory/cb24d575-dc27-4a01-8067-1cc9b3d07303",
"version": "2.2.2.0",
"size": "32",
"id": "/admin/resources/physical_memory_modules/d86faea7-80d5-44d3-97bb-93f034ef0a71",
"updated_time_raw": 1470321039085,
"leds": [
"/admin/resources/leds/e1fb5127-d74d-4359-9890-942dc78523c5"
],
"name": "DIMM 1",
"created_time": "Thu 04 Aug 2016 14:30:39.085 UTC"
}
]
- created_time
- The time at which the object is created
- id
- The unique ID of the object in the system.
- label_key
- Key for retrieving the label for the physical memory module
- label_text
- Default translated message text
- name
- The name of the physical memory module
- physical_memory
- The physical memory object that is associated with the physical memory module
- size
- The size of the physical memory module
- 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.
- units
- The units used with the physical memory module
- updated_time
- The time at which the object was last updated
Parents:
Children:
Get a specific physical memory module
| REST API information | Value | Description |
|---|---|---|
| URI | /admin/resources/physical_memory_modules/{id} | |
| Method | GET | |
| Returns | 200 | The physical memory module was returned. |
| 404 | The physical memory module was not found | |
| 500 | Platform System Manager encountered an internal error while processing the request. |
Returns a single physical memory 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.