Create a Checkpoint
sandbox.createCheckpoint(name)
A name for this checkpoint.
Promise<CheckpointInfo> — status transitions from "processing" to "ready" once the snapshot is uploaded.
List Checkpoints
Promise<CheckpointInfo[]>
Fork from a Checkpoint
Create a new sandbox from a checkpoint. The new sandbox boots with the checkpointed filesystem state.Sandbox.createFromCheckpoint(checkpointId, opts?)
UUID of the checkpoint to fork from.
Promise<Sandbox>
Restore a Checkpoint
Revert a running sandbox to a previous checkpoint. The VM reboots with the checkpointed drives.Promise<void>
Delete a Checkpoint
Promise<void>