]> git.proxmox.com Git - qemu.git/blobdiff - qapi-schema.json
qapi: convert netdev_del
[qemu.git] / qapi-schema.json
index 69fcd8e3e658bb88f28391d58268dc5bfd82b21b..bb1f80653247b7ff4545fab4eb7df2cfdff2a738 100644 (file)
 { 'command': 'netdev_add',
   'data': {'type': 'str', 'id': 'str', '*props': '**'},
   'gen': 'no' }
+
+##
+# @netdev_del:
+#
+# Remove a network backend.
+#
+# @id: the name of the network backend to remove
+#
+# Returns: Nothing on success
+#          If @id is not a valid network backend, DeviceNotFound
+#
+# Since: 0.14.0
+##
+{ 'command': 'netdev_del', 'data': {'id': 'str'} }