services.SnapshotService Maven / Gradle / Ivy
/*
Copyright (c) 2015 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package services;
import annotations.Area;
import org.ovirt.api.metamodel.annotations.In;
import org.ovirt.api.metamodel.annotations.InputDetail;
import org.ovirt.api.metamodel.annotations.Out;
import org.ovirt.api.metamodel.annotations.Service;
import types.Disk;
import types.Snapshot;
import static org.ovirt.api.metamodel.language.ApiLanguage.COLLECTION;
import static org.ovirt.api.metamodel.language.ApiLanguage.optional;
@Service
@Area("Storage")
public interface SnapshotService {
interface Get {
@Out Snapshot snapshot();
}
interface Remove {
/**
* Indicates if the remove should be performed asynchronously.
*/
@In Boolean async();
/**
* Indicates if all the attributes of the virtual machine snapshot should be included in the response.
*
* By default the attribute `initialization.configuration.data` is excluded.
*
* For example, to retrieve the complete representation of the snapshot with id `456` of the virtual machine
* with id `123` send a request like this:
*
* ....
* GET /ovirt-engine/api/vms/123/snapshots/456?all_content=true
* ....
*
* @author Ondra Machacek
* @date 02 Feb 2017
* @status added
* @since 4.2
*/
@In Boolean allContent();
}
/**
* Restores a virtual machine snapshot.
*
* For example, to restore the snapshot with identifier `456` of virtual machine with identifier `123` send a
* request like this:
*
* [source]
* ----
* POST /ovirt-engine/api/vms/123/snapshots/456/restore
* ----
*
* With an empty `action` in the body:
*
* [source,xml]
* ----
*
* ----
*
* @author Daniel Erez
* @date 14 Sep 2016
* @status added
*/
interface Restore {
@InputDetail
default void inputDetail() {
optional(restoreMemory());
optional(disks()[COLLECTION].id());
optional(disks()[COLLECTION].imageId());
}
@In Disk[] disks();
@In Boolean restoreMemory();
/**
* Indicates if the restore should be performed asynchronously.
*/
@In Boolean async();
}
@Service SnapshotCdromsService cdroms();
@Service SnapshotDisksService disks();
@Service SnapshotNicsService nics();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy