private StackRepository stackRepository;
public StackDescription describeStackWithResources(Stack actualStack) {
Stack stack = stackRepository.findById(actualStack.getId());
Credential credential = stack.getCredential();
final CloudPlatform cloudPlatform = credential.cloudPlatform();
if (cloudPlatform.isWithTemplate()) {
return cloudPlatformConnectors.get(cloudPlatform).describeStackWithResources(stack, stack.getCredential());
} else {
try {
DetailedStackDescription dSD = new DetailedStackDescription();