mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 03:27:03 -07:00
12 lines
342 B
Go
12 lines
342 B
Go
package pdu
|
|
|
|
type PDUOutlet struct {
|
|
ID string `json:"id"` // e.g., "35" or "BA35"
|
|
Name string `json:"name"` // e.g., "Link1_Outlet_35"
|
|
PowerState string `json:"power_state"` // e.g., "ON" or "OFF"
|
|
}
|
|
|
|
type PDUInventory struct {
|
|
Hostname string `json:"hostname"`
|
|
Outlets []PDUOutlet `json:"outlets"`
|
|
}
|