I'm using Java and Jclouds SDK to interact with OpenStack Nova, i tried to get the "Tags list" for nova instances, i used the following code
String region = novaApi.getConfiguredRegions().iterator().next();
ServerApi serverApi = novaApi.getServerApi(region);
Server novaInstance = serverApi.get(TEMP_SERVERNAME);
tags = novaInstance.getMetadata();
the variable tags is a Map<String, String> but as i saw over the OpenStack documentation there is an API (/servers/{server_id}/tags) that returns list Tags here is the API link which is more of what i need than the Map<String, String>
the question is, what function in the jclouds SDK that returns that type? i couldn't find any function in the Server class that return that type
Thanks