return storageDevice;
}
public static StoragePoolDto storagePoolPut() {
StoragePoolDto storagePool = storagePoolPost();
storagePool.setIdStorage("tururututu");
storagePool.addLink(new RESTLink("device", "http://localhost/api/admin/datacenters/1/storage/devices/1"));
storagePool.addLink(new RESTLink("edit",
"http://localhost/api/admin/datacenters/1/storage/devices/1/pools/tururututu"));
return storagePool;
}