* the enterprise soft limits are reached.
* @return The list of tasks corresponding to the deploy process of each
* virtual machine in the appliance.
*/
public VirtualMachineTask[] deploy(final boolean forceEnterpriseSoftLimits) {
VirtualMachineTaskDto force = new VirtualMachineTaskDto();
force.setForceEnterpriseSoftLimits(forceEnterpriseSoftLimits);
AcceptedRequestDto<String> response = context.getApi().getCloudApi().deployVirtualAppliance(unwrap(), force);
AsyncTask<?, ?>[] tasks = getTasks(response);
return Arrays.copyOf(tasks, tasks.length, VirtualMachineTask[].class);