Skip to content

Commit

Permalink
Add hardware_info dictionary to Machine
Browse files Browse the repository at this point in the history
  • Loading branch information
mpontillo committed Jun 20, 2024
1 parent 410f9f9 commit 1af8f6b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions maas/client/viscera/machines.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,7 @@ class Machine(Node, metaclass=MachineType):
netboot = ObjectField.Checked("netboot", check(bool), readonly=True)
osystem = ObjectField.Checked("osystem", check(str), readonly=True)
owner_data = ObjectField.Checked("owner_data", check(dict), check(dict))
hardware_info = ObjectField.Checked("hardware_info", check(dict), check(dict), readonly=True)
status = ObjectField.Checked("status", to(NodeStatus), readonly=True)
status_action = ObjectField.Checked(
"status_action", check_optional(str), readonly=True
Expand Down

0 comments on commit 1af8f6b

Please sign in to comment.