use of org.ovirt.engine.sdk4.services.TagsService in project ovirt-engine-sdk-java by oVirt.
the class ListTags method main.
public static void main(String[] args) throws Exception {
Connection connection = connection().url("https://engine40.example.com/ovirt-engine/api").user("admin@internal").password("redhat123").trustStoreFile("truststore.jks").build();
// Find the service that manages tags:
TagsService tagsService = connection.systemService().tagsService();
// Retrieve the tags:
List<Tag> tags = tagsService.list().send().tags();
// For each tag print its name and description:
for (Tag tag : tags) {
System.out.printf("%s: %s\n", tag.name(), tag.description());
}
// Close the connection to the server:
connection.close();
}
use of org.ovirt.engine.sdk4.services.TagsService 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.TagsService in project ovirt-engine-sdk-java by oVirt.
the class RemoveTag 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();
// Find the service that manages tags:
TagsService tagsService = connection.systemService().tagsService();
// Find the tag id:
String tagId = null;
for (Tag tag : tagsService.list().send().tags()) {
if (tag.name().equals("mytag")) {
tagId = tag.id();
break;
}
}
// Find the service that manages the tag:
TagService tagService = tagsService.tagService(tagId);
// Remove the tag:
tagService.remove().send();
// Close the connection to the server:
connection.close();
}
use of org.ovirt.engine.sdk4.services.TagsService 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();
}
use of org.ovirt.engine.sdk4.services.TagsService in project ovirt-engine-sdk-java by oVirt.
the class AddTag 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 tags service:
TagsService tagsService = connection.systemService().tagsService();
// Use the "add" method to create new tag:
tagsService.add().tag(tag().name("mytag")).send();
// Close the connection to the server:
connection.close();
}
Aggregations