}
}
public Key createKey(String keyname) throws DeltaCloudClientException {
try {
CreateKeyRequest keyRequest = new CreateKeyRequest(baseUrl, keyname);
InputStream inputStream = request(keyRequest);
Key key = new KeyUnmarshaller().unmarshall(inputStream, new Key());
return key;
} catch (DeltaCloudClientException e) {
throw e;