use of com.sequenceiq.cloudbreak.api.endpoint.v4.util.UtilV4Endpoint in project cloudbreak by hortonworks.
the class UsedImagesAction method action.
@Override
public UsedImagesTestDto action(TestContext testContext, UsedImagesTestDto testDto, CloudbreakClient client) throws Exception {
final UsedImagesListV4Response usedImages = client.getInternalClient(testContext).utilV4Endpoint().usedImages(null);
testDto.setResponse(usedImages);
return testDto;
}
Aggregations