diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 13:18:01 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:15:28 +0100 |
commit | ab9895337c4613ddee1b56f4a1ce3025155483c7 (patch) | |
tree | 754982335464abce8eba03132c3d630f5448d1ec /qapi-schema.json | |
parent | de0b45ea6bd463c3a51de9425ce0a49df2e14484 (diff) |
qmp-commands: move 'migrate_set_speed' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index 8f844aa735..092008a4ff 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -2622,13 +2622,19 @@ # # Set maximum speed for migration. # -# @value: maximum speed in bytes. +# @value: maximum speed in bytes per second. # # Returns: nothing on success # # Notes: This command is deprecated in favor of 'migrate-set-parameters' # # Since: 0.14.0 +# +# Example: +# +# -> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } } +# <- { "return": {} } +# ## { 'command': 'migrate_set_speed', 'data': {'value': 'int'} } |