Create VM snapshot with no disk
by scott.fitzgerald@oracle.com
Hi,
A VM Snapshot can be made using
SnapshotBuilder builder = new SnapshotBuilder().vm(VM).name("Snap1").description("Test");
sysService.vmsService().vmService(VM.id()).snapshotsService().add().snapshot(builder).send();
It can be made with no memory by using a builder with persistMemorystate(false)
How can one be made with no disk? .diskAttachments(emptyList) isnt working.
TIA