]> git.proxmox.com Git - mirror_qemu.git/blame - qapi-event.json
qapi event: convert SPICE events
[mirror_qemu.git] / qapi-event.json
CommitLineData
84321831
WX
1##
2# @SHUTDOWN
3#
4# Emitted when the virtual machine has shutdown, possibly indicating that QEMU
5# is about about to exit.
6#
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
9#
10# Since: 0.12.0
11##
12{ 'event': 'SHUTDOWN' }
0aab9ec3
WX
13
14##
15# @POWERDOWN
16#
17# Emitted when the virtual machine is powered down through the power control
18# system, such as via ACPI.
19#
20# Since: 0.12.0
21##
22{ 'event': 'POWERDOWN' }
a6330785
WX
23
24##
25# @RESET
26#
27# Emitted when the virtual machine is reset
28#
29# Since: 0.12.0
30##
31{ 'event': 'RESET' }
a4e15de9
WX
32
33##
34# @STOP
35#
36# Emitted when the virtual machine is stopped
37#
38# Since: 0.12.0
39##
40{ 'event': 'STOP' }
591c48fb
WX
41
42##
43# @RESUME
44#
45# Emitted when the virtual machine resumes execution
46#
47# Since: 0.12.0
48##
49{ 'event': 'RESUME' }
1d11a95a
WX
50
51##
52# @SUSPEND
53#
54# Emitted when guest enters a hardware suspension state, for example, S3 state,
55# which is sometimes called standby state
56#
57# Since: 1.1
58##
59{ 'event': 'SUSPEND' }
2ea4100f
WX
60
61##
62# @SUSPEND_DISK
63#
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
66#
67# Note: QEMU shuts down (similar to event @SHUTDOWN) when entering this state
68#
69# Since: 1.2
70##
71{ 'event': 'SUSPEND_DISK' }
7a906f7f
WX
72
73##
74# @WAKEUP
75#
76# Emitted when the guest has woken up from suspend state and is running
77#
78# Since: 1.1
79##
80{ 'event': 'WAKEUP' }
e010ad8f
WX
81
82##
83# @RTC_CHANGE
84#
85# Emitted when the guest changes the RTC time.
86#
87# @offset: offset between base RTC clock (as specified by -rtc base), and
88# new RTC clock value
89#
90# Since: 0.13.0
91##
92{ 'event': 'RTC_CHANGE',
93 'data': { 'offset': 'int' } }
99eaf09c
WX
94
95##
96# @WATCHDOG
97#
98# Emitted when the watchdog device's timer is expired
99#
100# @action: action that has been taken
101#
102# Note: If action is "reset", "shutdown", or "pause" the WATCHDOG event is
103# followed respectively by the RESET, SHUTDOWN, or STOP events
104#
105# Since: 0.13.0
106##
107{ 'event': 'WATCHDOG',
108 'data': { 'action': 'WatchdogExpirationAction' } }
24b699fb
WX
109
110##
111# @DEVICE_DELETED
112#
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.
116#
117# @device: #optional, device name
118#
119# @path: device path
120#
121# Since: 1.5
122##
123{ 'event': 'DEVICE_DELETED',
124 'data': { '*device': 'str', 'path': 'str' } }
06150279
WX
125
126##
127# @NIC_RX_FILTER_CHANGED
128#
129# Emitted once until the 'query-rx-filter' command is executed, the first event
130# will always be emitted
131#
132# @name: #optional, net client name
133#
134# @path: device path
135#
136# Since: 1.6
137##
138{ 'event': 'NIC_RX_FILTER_CHANGED',
139 'data': { '*name': 'str', 'path': 'str' } }
fb6ba0d5
WX
140
141##
142# @VNC_CONNECTED
143#
144# Emitted when a VNC client establishes a connection
145#
146# @server: server information
147#
148# @client: client information
149#
150# Note: This event is emitted before any authentication takes place, thus
151# the authentication ID is not provided
152#
153# Since: 0.13.0
154##
155{ 'event': 'VNC_CONNECTED',
156 'data': { 'server': 'VncServerInfo',
157 'client': 'VncBasicInfo' } }
158
159##
160# @VNC_INITIALIZED
161#
162# Emitted after authentication takes place (if any) and the VNC session is
163# made active
164#
165# @server: server information
166#
167# @client: client information
168#
169# Since: 0.13.0
170##
171{ 'event': 'VNC_INITIALIZED',
172 'data': { 'server': 'VncServerInfo',
173 'client': 'VncClientInfo' } }
174
175##
176# @VNC_DISCONNECTED
177#
178# Emitted when the connection is closed
179#
180# @server: server information
181#
182# @client: client information
183#
184# Since: 0.13.0
185##
186{ 'event': 'VNC_DISCONNECTED',
187 'data': { 'server': 'VncServerInfo',
188 'client': 'VncClientInfo' } }
7cfadb6b
WX
189
190##
191# @SPICE_CONNECTED
192#
193# Emitted when a SPICE client establishes a connection
194#
195# @server: server information
196#
197# @client: client information
198#
199# Since: 0.14.0
200##
201{ 'event': 'SPICE_CONNECTED',
202 'data': { 'server': 'SpiceBasicInfo',
203 'client': 'SpiceBasicInfo' } }
204
205##
206# @SPICE_INITIALIZED
207#
208# Emitted after initial handshake and authentication takes place (if any)
209# and the SPICE channel is up and running
210#
211# @server: server information
212#
213# @client: client information
214#
215# Since: 0.14.0
216##
217{ 'event': 'SPICE_INITIALIZED',
218 'data': { 'server': 'SpiceServerInfo',
219 'client': 'SpiceChannel' } }
220
221##
222# @SPICE_DISCONNECTED
223#
224# Emitted when the SPICE connection is closed
225#
226# @server: server information
227#
228# @client: client information
229#
230# Since: 0.14.0
231##
232{ 'event': 'SPICE_DISCONNECTED',
233 'data': { 'server': 'SpiceBasicInfo',
234 'client': 'SpiceBasicInfo' } }
235
236##
237# @SPICE_MIGRATE_COMPLETED
238#
239# Emitted when SPICE migration has completed
240#
241# Since: 1.3
242##
243{ 'event': 'SPICE_MIGRATE_COMPLETED' }