Interface VmBackupsService.AddRequest

  • All Superinterfaces:
    Request<VmBackupsService.AddRequest,​VmBackupsService.AddResponse>
    Enclosing interface:
    VmBackupsService

    public static interface VmBackupsService.AddRequest
    extends Request<VmBackupsService.AddRequest,​VmBackupsService.AddResponse>
    Adds a new backup entity to a virtual machine. For example, to start a new incremental backup of a virtual machine since checkpoint id `previous-checkpoint-uuid`, send a request like this: [source] ---- POST /ovirt-engine/api/vms/123/backups ---- With a request body like this: [source,xml] ---- POST /ovirt-engine/api/vms/123/backups previous-checkpoint-uuid ... ---- The response body: [source,xml] ---- previous-checkpoint-uuid new-checkpoint-uuid ... ... initializing ----