What properties are available for `VBoxManage mediumproperty`?
Solution 1:
I've been struggling with this for a while too, then decided to use the API to check what properties were defined.
Here is the API docs for IMedium.getProperties
. With this function, you can check what properties are defined.
It turns out only one property is available AllocationBlockSize
.
The list of properties can also be obtained by IMediumFormat.describeProperties
for the same result, one property named AllocationBlockSize
.
A bit of an anti-climax, I was wishing to get the UUID from there!