use of org.ovirt.engine.sdk4.types.VnicProfile in project ovirt-engine-sdk-java by oVirt.
the class AddVmNic 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();
// Locate the virtual machines service and use it to find the virtual machine:
VmsService vmsService = connection.systemService().vmsService();
Vm vm = vmsService.list().search("name=myvm").send().vms().get(0);
// In order to specify the network that the new interface will be connected to, we need to specify the
// identifier of the virtual network interface profile, so we need to find it:
VnicProfilesService profilesService = connection.systemService().vnicProfilesService();
String profileId = null;
List<VnicProfile> profiles = profilesService.list().send().profiles();
for (VnicProfile profile : profiles) {
if (Objects.equals(profile.name(), "mynetwork")) {
profileId = profile.id();
break;
}
}
// Locate the service that manages the NICs of the virtual machine:
VmNicsService nicsService = vmsService.vmService(vm.id()).nicsService();
// Use the "add" method of the disks service to add the disk:
nicsService.add().nic(nic().name("mynic").description("My network interface card").vnicProfile(vnicProfile().id(profileId))).send();
// Close the connection to the server:
connection.close();
}
use of org.ovirt.engine.sdk4.types.VnicProfile in project ovirt-engine-sdk-java by oVirt.
the class RegisterVm method main.
public static void main(String[] args) throws Exception {
// Create the connection to the server:
Connection connection = connection().url("https://engine/ovirt-engine/api").user("admin@internal").password("redhat123").trustStoreFile("truststore.jks").build();
// Get the reference to the "StorageDomains" service:
StorageDomainsService storageDomainsService = connection.systemService().storageDomainsService();
// Find the storage domain with unregistered VM:
StorageDomain sd = storageDomainsService.list().search("name=mysd").send().storageDomains().get(0);
// Locate the service that manages the storage domain, as that is where the action methods are defined:
StorageDomainService storageDomainService = storageDomainsService.storageDomainService(sd.id());
// Locate the service that manages the VMs in storage domain:
StorageDomainVmsService storageDomainVmsService = storageDomainService.vmsService();
// Find the the unregistered VM we want to register:
List<Vm> unregisteredVms = storageDomainVmsService.list().unregistered(true).send().vm();
Vm vm = null;
for (Vm x : unregisteredVms) {
if ("myvm".equals(x.name())) {
vm = x;
break;
}
}
// Locate the service that manages virtual machine in the storage domain, as that is where the action methods
// are defined:
StorageDomainVmService storageDomainVmService = storageDomainVmsService.vmService(vm.id());
// Register the VM into the system:
storageDomainVmService.register().vm(vm().name("exported_myvm")).cluster(cluster().name("mycluster")).vnicProfileMappings(vnicProfileMapping().sourceNetworkName("mynetwork").sourceNetworkProfileName("mynetwork").targetVnicProfile(vnicProfile().name("mynetwork"))).reassignBadMacs(true).send();
// Close the connection to the server:
connection.close();
}
Aggregations