.execute();
return outputFactory.fromSummaryResponse(response);
}
public Output get(String outputId) throws APIException, IOException {
OutputSummaryResponse response = api.path(routes.OutputResource().get(outputId), OutputSummaryResponse.class).execute();
return outputFactory.fromSummaryResponse(response);
}