]> git.proxmox.com Git - mirror_qemu.git/blobdiff - qapi-schema.json
monitor: Convert client_migrate_info to QAPI
[mirror_qemu.git] / qapi-schema.json
index 0662a9b4450613cbae0c061a3ef6d6699b060942..6e17a5c36cf18b770f15f32ebeb5941a6219470f 100644 (file)
 { 'command': 'query-migrate-parameters',
   'returns': 'MigrationParameters' }
 
+##
+# @client_migrate_info
+#
+# Set migration information for remote display.  This makes the server
+# ask the client to automatically reconnect using the new parameters
+# once migration finished successfully.  Only implemented for SPICE.
+#
+# @protocol:     must be "spice"
+# @hostname:     migration target hostname
+# @port:         #optional spice tcp port for plaintext channels
+# @tls-port:     #optional spice tcp port for tls-secured channels
+# @cert-subject: #optional server certificate subject
+#
+# Since: 0.14.0
+##
+{ 'command': 'client_migrate_info',
+  'data': { 'protocol': 'str', 'hostname': 'str', '*port': 'int',
+            '*tls-port': 'int', '*cert-subject': 'str' } }
+
 ##
 # @MouseInfo:
 #