Files
xemu/qapi-schema.json
T

26 lines
366 B
JSON
Raw Normal View History

2011-09-02 12:34:47 -05:00
# -*- Mode: Python -*-
#
# QAPI Schema
2011-09-02 12:34:48 -05:00
##
# @NameInfo:
#
# Guest name information.
#
# @name: #optional The name of the guest
#
# Since 0.14.0
##
{ 'type': 'NameInfo', 'data': {'*name': 'str'} }
##
# @query-name:
#
# Return the name information of a guest.
#
# Returns: @NameInfo of the guest
#
# Since 0.14.0
##
{ 'command': 'query-name', 'returns': 'NameInfo' }