]> git.proxmox.com Git - qemu.git/blobdiff - qapi-schema.json
vmdk: Implment bdrv_get_specific_info
[qemu.git] / qapi-schema.json
index add97e296dd5126150053aca7a8d856108466f89..d607258122cc6e6b102b612b34a94ba8ba2b49be 100644 (file)
       '*lazy-refcounts': 'bool'
   } }
 
+##
+# @ImageInfoSpecificVmdk:
+#
+# @create_type: The create type of VMDK image
+#
+# @cid: Content id of image
+#
+# @parent-cid: Parent VMDK image's cid
+#
+# @extents: List of extent files
+#
+# Since: 1.7
+##
+{ 'type': 'ImageInfoSpecificVmdk',
+  'data': {
+      'create-type': 'str',
+      'cid': 'int',
+      'parent-cid': 'int',
+      'extents': ['ImageInfo']
+  } }
+
 ##
 # @ImageInfoSpecific:
 #
 
 { 'union': 'ImageInfoSpecific',
   'data': {
-      'qcow2': 'ImageInfoSpecificQCow2'
+      'qcow2': 'ImageInfoSpecificQCow2',
+      'vmdk': 'ImageInfoSpecificVmdk'
   } }
 
 ##