use of org.ovirt.engine.sdk4.services.AssignedTagService in project ovirt-engine-sdk-java by oVirt.
the class UnassignTagToVm 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=myvm0").send().vms().get(0);
// Find the service that manages the vm:
VmService vmService = vmsService.vmService(vm.id());
// Locate the service that manages the tags of the vm:
AssignedTagsService tagsService = vmService.tagsService();
// Find the tag id:
String tagId = null;
for (Tag tag : tagsService.list().send().tags()) {
if (tag.name().equals("mytag")) {
tagId = tag.id();
break;
}
}
// Locate the service that manages the tag:
AssignedTagService tagService = tagsService.tagService(tagId);
// Unassign tag from virtual machine:
tagService.remove().send();
// Close the connection to the server:
connection.close();
}
Aggregations