Walk Redfish graph
redfish_walkTraverse Redfish resource graph via breadth-first walk to discover nodes when typed list/get tools are insufficient. Returns URI, depth, type, and visited count.
Instructions
Escape hatch: use for topology exploration when typed list/get tools are insufficient. Perform a breadth-first walk over linked @odata.id resources. Returns: Object with nodes (each uri, depth, and type from @odata.type) and visited_count. Example: redfish_walk(start_uri='/redfish/v1', max_depth=2, max_nodes=120)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endpoint | No | Configured endpoint name. Omit to use the default endpoint. | |
| max_depth | No | Maximum traversal depth from start_uri. | |
| max_nodes | No | Maximum number of nodes to visit before stopping. | |
| start_uri | No | Root URI for traversal. Defaults to /redfish/v1. | /redfish/v1 |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||