Skip to content

Commit

Permalink
update expected openapi spec
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkw committed Jan 9, 2024
1 parent 68a980f commit 00ce99b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions openapi/propolis-server.json
Original file line number Diff line number Diff line change
Expand Up @@ -623,6 +623,14 @@
"$ref": "#/components/schemas/PciPciBridge"
}
},
"qemu_pvpanic": {
"nullable": true,
"allOf": [
{
"$ref": "#/components/schemas/QemuPvpanic"
}
]
},
"serial_ports": {
"type": "object",
"additionalProperties": {
Expand Down Expand Up @@ -1340,6 +1348,19 @@
],
"additionalProperties": false
},
"QemuPvpanic": {
"type": "object",
"properties": {
"enable_isa": {
"description": "Enable the QEMU PVPANIC ISA bus device (I/O port 0x505).",
"type": "boolean"
}
},
"required": [
"enable_isa"
],
"additionalProperties": false
},
"SerialPort": {
"description": "A serial port device.",
"type": "object",
Expand Down

0 comments on commit 00ce99b

Please sign in to comment.