@GET
@Path("{key}")
public ServerMetadata getMetadataKey(@PathParam("key") String key) throws CloudException {
InstanceData instance = getInstance();
ServerMetadata response = buildResponse(instance);
String value = response.metadata.get(key);
response.metadata.clear();
if (value != null) {
response.metadata.put(key, value);