/**
* @param id The ID of the SSH key
* @return The Key which includes the user who owns the key
* @throws GitLabApiException If anything goes wrong
*/
public Key getUserBySSHKeyId(Long id) throws GitLabApiException {
Response response = get(Response.Status.OK, null, "keys", id);
return response.readEntity(Key.class);
}