use of org.ovirt.engine.sdk4.services.AssignedTagsService 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();
}
use of org.ovirt.engine.sdk4.services.AssignedTagsService in project ovirt-engine-sdk-java by oVirt.
the class AssignTagToVm 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 assignedTagsService = vmService.tagsService();
// Assign tag to virtual machine:
assignedTagsService.add().tag(tag().name("mytag")).send();
// Close the connection to the server:
connection.close();
}
use of org.ovirt.engine.sdk4.services.AssignedTagsService in project ovirt-engine-sdk-java by oVirt.
the class ListVmTags 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();
// For each tag print its name and description:
for (Tag tag : tagsService.list().send().tags()) {
System.out.printf("%s: %s\n", tag.name(), tag.description());
}
// Close the connection to the server:
connection.close();
}
Aggregations