use of org.ovirt.engine.sdk4.services.VmService in project ovirt-engine-sdk-java by oVirt.
the class ExportVm method main.
public static void main(String[] args) throws Exception {
// Create the connection to the server:
Connection connection = connection().url("https://engine40.example.com/ovirt-engine/api").user("admin@internal").password("redhat123").trustStoreFile("truststore.jks").build();
// Get the reference to the root of the services tree:
SystemService systemService = connection.systemService();
// Find the virtual machine:
VmsService vmsService = systemService.vmsService();
Vm vm = vmsService.list().search("name=myvm").send().vms().get(0);
// Export the virtual machine. Note that the 'exclusive' parameter is optional, and only required if you want
// to overwrite a virtual machine that has already been exported before.
VmService vmService = vmsService.vmService(vm.id());
vmService.export().exclusive(true).discardSnapshots(true).storageDomain(storageDomain().name("myexport")).send();
// Close the connection to the server:
connection.close();
}
use of org.ovirt.engine.sdk4.services.VmService in project ovirt-engine-sdk-java by oVirt.
the class PinVm method main.
public static void main(String[] args) throws Exception {
// Create the connection to the server:
Connection connection = connection().url("https://engine40.example.com/ovirt-engine/api").user("admin@internal").password("redhat123").trustStoreFile("truststore.jks").build();
// Get the reference to the root of the tree of services:
SystemService systemService = connection.systemService();
// Find the virtual machine:
VmsService vmsService = systemService.vmsService();
Vm vm = vmsService.list().search("name=myvm").send().vms().get(0);
// Update the placement policy of the virtual machine so that it is pinned to the host:
VmService vmService = vmsService.vmService(vm.id());
vmService.update().vm(vm().placementPolicy(vmPlacementPolicy().hosts(host().name("myhost")))).send();
// Close the connection to the server:
connection.close();
}
use of org.ovirt.engine.sdk4.services.VmService in project ovirt-engine-sdk-java by oVirt.
the class SetVmLeaseStorageDomain method main.
public static void main(String[] args) throws Exception {
// Create the connection to the server:
Connection connection = connection().url("https://engine40.example.com/ovirt-engine/api").user("admin@internal").password("redhat123").trustStoreFile("truststore.jks").build();
// Get the reference to the root of the tree of services:
SystemService systemService = connection.systemService();
// Find the virtual machine:
VmsService vmsService = systemService.vmsService();
Vm vm = vmsService.list().search("name=myvm").send().vms().get(0);
// Find the storage domain:
StorageDomainsService sdsService = systemService.storageDomainsService();
StorageDomain sd = sdsService.list().search("name=mydata").send().storageDomains().get(0);
// Update the virtual machine so that high availability is enabled and the lease is created in the selected
// storage domain:
VmService vmService = vmsService.vmService(vm.id());
vmService.update().vm(vm().highAvailability(highAvailability().enabled(true)).lease(storageDomainLease().storageDomain(storageDomain().id(sd.id())))).send();
// Close the connection to the server:
connection.close();
}
use of org.ovirt.engine.sdk4.services.VmService in project ovirt-engine-sdk-java by oVirt.
the class StartVm method main.
public static void main(String[] args) throws Exception {
// Create the connection to the server:
Connection connection = connection().url("https://engine40.example.com/ovirt-engine/api").user("admin@internal").password("redhat123").trustStoreFile("truststore.jks").build();
// Get the reference to the "vms" service:
VmsService vmsService = connection.systemService().vmsService();
// Find the virtual machine:
Vm vm = vmsService.list().search("name=myvm").send().vms().get(0);
// Locate the service that manages the virtual machine, as that is where the action methods are defined:
VmService vmService = vmsService.vmService(vm.id());
// Call the "start" method of the service to start it:
vmService.start().send();
// What till the virtual machine is up:
for (; ; ) {
Thread.sleep(5 * 1000);
vm = vmService.get().send().vm();
if (vm.status() == VmStatus.UP) {
break;
}
}
// Close the connection to the server:
connection.close();
}
use of org.ovirt.engine.sdk4.services.VmService in project ovirt-engine-sdk-java by oVirt.
the class StopVm method main.
public static void main(String[] args) throws Exception {
// Create the connection to the server:
Connection connection = connection().url("https://engine40.example.com/ovirt-engine/api").user("admin@internal").password("redhat123").trustStoreFile("truststore.jks").build();
// Get the reference to the "vms" service:
VmsService vmsService = connection.systemService().vmsService();
// Find the virtual machine:
Vm vm = vmsService.list().search("name=myvm").send().vms().get(0);
// Locate the service that manages the virtual machine, as that is where the action methods are defined:
VmService vmService = vmsService.vmService(vm.id());
// Call the "stop" method of the service to stop it:
vmService.stop().send();
// What till the virtual machine is down:
for (; ; ) {
Thread.sleep(5 * 1000);
vm = vmService.get().send().vm();
if (vm.status() == VmStatus.DOWN) {
break;
}
}
// Close the connection to the server:
connection.close();
}
Aggregations