Retrieve DPU Machines attached to a host Machine
Retrieve DPU Machines attached to the host Machine, including the full network configuration sent to the DPU agent.
The response is built by scheduling a synchronous Temporal `GetDpuMachines` workflow against the Machine's Site for the DPU Machine IDs referenced by the host Machine's interfaces.
**Authorization:**
Access is restricted to users associated with the Machine's Site. Either of the following grants access:
* The caller's org has an Infrastructure Provider entity that owns the Machine's Site, and the user has authorization role with `PROVIDER_ADMIN` suffix on that org.
* The caller's org has a Tenant entity with `TargetedInstanceCreation` enabled and an active Tenant Account on the Machine's Site's Infrastructure Provider, and the user has authorization role with `TENANT_ADMIN` suffix on that org.
Authentication
AuthorizationBearer
```
export JWT_BEARER_TOKEN="<jwt-bearer-token>"
# Example org name: "acme-inc
export ORG_NAME=<org-name>
# Use the JWT bearer token in your API request auth header:
curl -v -X GET -H "Content-Type: application/json" -H "Authorization: Bearer $JWT_BEARER_TOKEN" https://nico-rest-api.nico.svc.cluster.local/v2/org/$ORG_NAME/nico/user/current
```
Path parameters
org
Name of the Org
machineId
ID of the host Machine
Response
OK
id
ID of the DPU Machine (matches the host Machine ID for the DPU as reported by NICo Core)
infrastructureProviderId
ID of the Infrastructure Provider that owns the host Machine
siteId
ID of the Site that the host Machine belongs to
hostMachineId
ID of the host Machine that this DPU is attached to
state
Lifecycle state of the DPU as reported by NICo Core
dpuNetworkConfig
Complete network configuration sent to the DPU agent
dpuAgentVersion
Version of the DPU agent running on the DPU
bmcInfo
BMC (Baseboard Management Controller) information for the DPU
dmiData
DMI (Desktop Management Interface) data reported for the DPU
interfaces
Interfaces reported on the DPU
softwareComponents
Software components reported on the DPU
health
Health information for the DPU
labels
Labels associated with the DPU
lastRebooted
Last reboot timestamp reported by NICo Core
placementInRack
Physical placement of the DPU Machine within its Rack, when known
Errors
400
Bad Request Error
403
Forbidden Error
404
Not Found Error
500
Internal Server Error