Physical I/O ports REST API
Use this REST API to manage physical I/O ports.
Get all physical I/O Ports
| REST API information | Value | Description |
|---|---|---|
| URI | /admin/resources/physical_io_ports | |
| Method | GET | |
| Returns | 200 | Returns a list of all Physical I/O Ports |
| 404 | The Physical I/O Port list was not found | |
| 500 | Platform System Manager encountered an internal error while processing the request. |
Returns a list of Physical I/O Ports.
You can use optional parameters to modify the response from the REST API call. For more information, see the Related information section.
Response body
[
{
"link_state": null,
"created_time_raw": 1465935979584,
"speed": 10,
"isas_rn": 1,
"state": "available",
"label_text": "Physical I/O Port",
"type": null,
"updated_time": "Tue 09 Aug 2016 13:36:25.882 UTC",
"label_key": "pure2312",
"units": "Gb",
"version": "2.2.2.0",
"logical_port_index": 1,
"id": "/admin/resources/physical_io_ports/6e69083a-be89-4e91-bfdf-452d2a9afc97",
"mac_address": "00:90:fa:be:35:80",
"bus_number": 129,
"current_work_protocol": "Ethernet",
"updated_time_raw": 1470749785882,
"wwpn": null,
"physical_port_index": 1,
"name": "00:90:fa:be:35:80",
"port_number": 1,
"physical_io_adapter_modules": "/admin/resources/physical_io_adapter_modules/4c63df42-7206-4d16-9fbd-a731595a4c64",
"vlan": null,
"slot": 2,
"created_time": "Tue 14 Jun 2016 20:26:19.584 UTC"
}
]
- created_time
- The time at which the object is created
- id
- The unique ID of the object in the system.
- label_key
- The key for retrieving the label for the port
- label_text
- Default translated message text
- link_state
- The link state of the port
- mac_address
- The MAC address of the port
- name
- The unique name of the port
- physical_io_adapter_modules
- The ID of the physical I/O adapter module associated with the port
- port_number
- The number of the port
- speed
- The speed of the port
- 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.
- type
- The type of the port
- units
- The units for the port speed
- updated_time
- The time at which the object was last updated
- vlan
- The vlan number associated with this port
- wwpn
- The World Wide Port Name of the port
Parents:
Get a specific Physical I/O Port
| REST API information | Value | Description |
|---|---|---|
| URI | /admin/resources/physical_io_ports/{id} | |
| Method | GET | |
| Returns | 200 | The Physical I/O Port was returned. |
| 404 | The Physical I/O Port was not found | |
| 500 | Platform System Manager encountered an internal error while processing the request. |
Returns a single Physical I/O Port 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.