qdev: ignore GlobalProperty.errp for hotplugged devices
[qemu.git] / qapi / event.json
blob8642052ebc5290d0dd047212eaa4719b22d2878e
1 ##
2 # @SHUTDOWN
4 # Emitted when the virtual machine has shut down, indicating that qemu is
5 # about to exit.
7 # Note: If the command-line option "-no-shutdown" has been specified, qemu will
8 # not exit, and a STOP event will eventually follow the SHUTDOWN event
10 # Since: 0.12.0
12 { 'event': 'SHUTDOWN' }
15 # @POWERDOWN
17 # Emitted when the virtual machine is powered down through the power control
18 # system, such as via ACPI.
20 # Since: 0.12.0
22 { 'event': 'POWERDOWN' }
25 # @RESET
27 # Emitted when the virtual machine is reset
29 # Since: 0.12.0
31 { 'event': 'RESET' }
34 # @STOP
36 # Emitted when the virtual machine is stopped
38 # Since: 0.12.0
40 { 'event': 'STOP' }
43 # @RESUME
45 # Emitted when the virtual machine resumes execution
47 # Since: 0.12.0
49 { 'event': 'RESUME' }
52 # @SUSPEND
54 # Emitted when guest enters a hardware suspension state, for example, S3 state,
55 # which is sometimes called standby state
57 # Since: 1.1
59 { 'event': 'SUSPEND' }
62 # @SUSPEND_DISK
64 # Emitted when guest enters a hardware suspension state with data saved on
65 # disk, for example, S4 state, which is sometimes called hibernate state
67 # Note: QEMU shuts down (similar to event @SHUTDOWN) when entering this state
69 # Since: 1.2
71 { 'event': 'SUSPEND_DISK' }
74 # @WAKEUP
76 # Emitted when the guest has woken up from suspend state and is running
78 # Since: 1.1
80 { 'event': 'WAKEUP' }
83 # @RTC_CHANGE
85 # Emitted when the guest changes the RTC time.
87 # @offset: offset between base RTC clock (as specified by -rtc base), and
88 #          new RTC clock value
90 # Since: 0.13.0
92 { 'event': 'RTC_CHANGE',
93   'data': { 'offset': 'int' } }
96 # @WATCHDOG
98 # Emitted when the watchdog device's timer is expired
100 # @action: action that has been taken
102 # Note: If action is "reset", "shutdown", or "pause" the WATCHDOG event is
103 # followed respectively by the RESET, SHUTDOWN, or STOP events
105 # Since: 0.13.0
107 { 'event': 'WATCHDOG',
108   'data': { 'action': 'WatchdogExpirationAction' } }
111 # @DEVICE_DELETED
113 # Emitted whenever the device removal completion is acknowledged by the guest.
114 # At this point, it's safe to reuse the specified device ID. Device removal can
115 # be initiated by the guest or by HMP/QMP commands.
117 # @device: #optional, device name
119 # @path: device path
121 # Since: 1.5
123 { 'event': 'DEVICE_DELETED',
124   'data': { '*device': 'str', 'path': 'str' } }
127 # @NIC_RX_FILTER_CHANGED
129 # Emitted once until the 'query-rx-filter' command is executed, the first event
130 # will always be emitted
132 # @name: #optional, net client name
134 # @path: device path
136 # Since: 1.6
138 { 'event': 'NIC_RX_FILTER_CHANGED',
139   'data': { '*name': 'str', 'path': 'str' } }
142 # @VNC_CONNECTED
144 # Emitted when a VNC client establishes a connection
146 # @server: server information
148 # @client: client information
150 # Note: This event is emitted before any authentication takes place, thus
151 # the authentication ID is not provided
153 # Since: 0.13.0
155 { 'event': 'VNC_CONNECTED',
156   'data': { 'server': 'VncServerInfo',
157             'client': 'VncBasicInfo' } }
160 # @VNC_INITIALIZED
162 # Emitted after authentication takes place (if any) and the VNC session is
163 # made active
165 # @server: server information
167 # @client: client information
169 # Since: 0.13.0
171 { 'event': 'VNC_INITIALIZED',
172   'data': { 'server': 'VncServerInfo',
173             'client': 'VncClientInfo' } }
176 # @VNC_DISCONNECTED
178 # Emitted when the connection is closed
180 # @server: server information
182 # @client: client information
184 # Since: 0.13.0
186 { 'event': 'VNC_DISCONNECTED',
187   'data': { 'server': 'VncServerInfo',
188             'client': 'VncClientInfo' } }
191 # @SPICE_CONNECTED
193 # Emitted when a SPICE client establishes a connection
195 # @server: server information
197 # @client: client information
199 # Since: 0.14.0
201 { 'event': 'SPICE_CONNECTED',
202   'data': { 'server': 'SpiceBasicInfo',
203             'client': 'SpiceBasicInfo' } }
206 # @SPICE_INITIALIZED
208 # Emitted after initial handshake and authentication takes place (if any)
209 # and the SPICE channel is up and running
211 # @server: server information
213 # @client: client information
215 # Since: 0.14.0
217 { 'event': 'SPICE_INITIALIZED',
218   'data': { 'server': 'SpiceServerInfo',
219             'client': 'SpiceChannel' } }
222 # @SPICE_DISCONNECTED
224 # Emitted when the SPICE connection is closed
226 # @server: server information
228 # @client: client information
230 # Since: 0.14.0
232 { 'event': 'SPICE_DISCONNECTED',
233   'data': { 'server': 'SpiceBasicInfo',
234             'client': 'SpiceBasicInfo' } }
237 # @SPICE_MIGRATE_COMPLETED
239 # Emitted when SPICE migration has completed
241 # Since: 1.3
243 { 'event': 'SPICE_MIGRATE_COMPLETED' }
246 # @MIGRATION
248 # Emitted when a migration event happens
250 # @status: @MigrationStatus describing the current migration status.
252 # Since: 2.4
254 { 'event': 'MIGRATION',
255   'data': {'status': 'MigrationStatus'}}
258 # @MIGRATION_PASS
260 # Emitted from the source side of a migration at the start of each pass
261 # (when it syncs the dirty bitmap)
263 # @pass: An incrementing count (starting at 1 on the first pass)
265 # Since: 2.6
267 { 'event': 'MIGRATION_PASS',
268   'data': { 'pass': 'int' } }
271 # @ACPI_DEVICE_OST
273 # Emitted when guest executes ACPI _OST method.
275 # Since: 2.1
277 # @info: ACPIOSTInfo type as described in qapi-schema.json
279 { 'event': 'ACPI_DEVICE_OST',
280      'data': { 'info': 'ACPIOSTInfo' } }
283 # @BALLOON_CHANGE
285 # Emitted when the guest changes the actual BALLOON level. This value is
286 # equivalent to the @actual field return by the 'query-balloon' command
288 # @actual: actual level of the guest memory balloon in bytes
290 # Since: 1.2
292 { 'event': 'BALLOON_CHANGE',
293   'data': { 'actual': 'int' } }
296 # @GUEST_PANICKED
298 # Emitted when guest OS panic is detected
300 # @action: action that has been taken, currently always "pause"
302 # Since: 1.5
304 { 'event': 'GUEST_PANICKED',
305   'data': { 'action': 'GuestPanicAction' } }
308 # @QUORUM_FAILURE
310 # Emitted by the Quorum block driver if it fails to establish a quorum
312 # @reference: device name if defined else node name
314 # @sector-num: number of the first sector of the failed read operation
316 # @sectors-count: failed read operation sector count
318 # Since: 2.0
320 { 'event': 'QUORUM_FAILURE',
321   'data': { 'reference': 'str', 'sector-num': 'int', 'sectors-count': 'int' } }
324 # @QUORUM_REPORT_BAD
326 # Emitted to report a corruption of a Quorum file
328 # @type: quorum operation type (Since 2.6)
330 # @error: #optional, error message. Only present on failure. This field
331 #         contains a human-readable error message. There are no semantics other
332 #         than that the block layer reported an error and clients should not
333 #         try to interpret the error string.
335 # @node-name: the graph node name of the block driver state
337 # @sector-num: number of the first sector of the failed read operation
339 # @sectors-count: failed read operation sector count
341 # Since: 2.0
343 { 'event': 'QUORUM_REPORT_BAD',
344   'data': { 'type': 'QuorumOpType', '*error': 'str', 'node-name': 'str',
345             'sector-num': 'int', 'sectors-count': 'int' } }
348 # @VSERPORT_CHANGE
350 # Emitted when the guest opens or closes a virtio-serial port.
352 # @id: device identifier of the virtio-serial port
354 # @open: true if the guest has opened the virtio-serial port
356 # Since: 2.1
358 { 'event': 'VSERPORT_CHANGE',
359   'data': { 'id': 'str', 'open': 'bool' } }
362 # @MEM_UNPLUG_ERROR
364 # Emitted when memory hot unplug error occurs.
366 # @device: device name
368 # @msg: Informative message
370 # Since: 2.4
372 { 'event': 'MEM_UNPLUG_ERROR',
373   'data': { 'device': 'str', 'msg': 'str' } }
376 # @DUMP_COMPLETED
378 # Emitted when background dump has completed
380 # @result: DumpQueryResult type described in qapi-schema.json.
382 # @error: #optional human-readable error string that provides
383 #         hint on why dump failed. Only presents on failure. The
384 #         user should not try to interpret the error string.
386 # Since: 2.6
388 { 'event': 'DUMP_COMPLETED' ,
389   'data': { 'result': 'DumpQueryResult', '*error': 'str' } }