use of com.cloud.api.ApiConstants.VMDetails in project cosmic by MissionCriticalCloud.
the class UpdateDefaultNicForVMCmdByAdmin method execute.
@Override
public void execute() {
CallContext.current().setEventDetails("Vm Id: " + getVmId() + " Nic Id: " + getNicId());
final UserVm result = _userVmService.updateDefaultNicForVirtualMachine(this);
final ArrayList<VMDetails> dc = new ArrayList<>();
dc.add(VMDetails.valueOf("nics"));
final EnumSet<VMDetails> details = EnumSet.copyOf(dc);
if (result != null) {
final UserVmResponse response = _responseGenerator.createUserVmResponse(ResponseView.Full, "virtualmachine", details, result).get(0);
response.setResponseName(getCommandName());
setResponseObject(response);
} else {
throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to set default nic for VM. Refer to server logs for details.");
}
}
use of com.cloud.api.ApiConstants.VMDetails in project cosmic by MissionCriticalCloud.
the class RemoveNicFromVMCmdByAdmin method execute.
@Override
public void execute() {
CallContext.current().setEventDetails("Vm Id: " + getVmId() + " Nic Id: " + getNicId());
final UserVm result = _userVmService.removeNicFromVirtualMachine(this);
final ArrayList<VMDetails> dc = new ArrayList<>();
dc.add(VMDetails.valueOf("nics"));
final EnumSet<VMDetails> details = EnumSet.copyOf(dc);
if (result != null) {
final UserVmResponse response = _responseGenerator.createUserVmResponse(ResponseView.Full, "virtualmachine", details, result).get(0);
response.setResponseName(getCommandName());
setResponseObject(response);
} else {
throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to remove NIC from vm, see error log for details");
}
}
use of com.cloud.api.ApiConstants.VMDetails in project cosmic by MissionCriticalCloud.
the class AddNicToVMCmd method execute.
@Override
public void execute() {
CallContext.current().setEventDetails("Vm Id: " + getVmId() + " Network Id: " + getNetworkId());
final UserVm result = _userVmService.addNicToVirtualMachine(this);
final ArrayList<VMDetails> dc = new ArrayList<>();
dc.add(VMDetails.valueOf("nics"));
final EnumSet<VMDetails> details = EnumSet.copyOf(dc);
if (result != null) {
final UserVmResponse response = _responseGenerator.createUserVmResponse(ResponseView.Restricted, "virtualmachine", details, result).get(0);
response.setResponseName(getCommandName());
setResponseObject(response);
} else {
throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to add NIC to vm. Refer to server logs for details.");
}
}
use of com.cloud.api.ApiConstants.VMDetails in project cosmic by MissionCriticalCloud.
the class UpdateVmNicIpCmd method execute.
@Override
public void execute() throws ResourceUnavailableException, ResourceAllocationException, ConcurrentOperationException, InsufficientCapacityException {
CallContext.current().setEventDetails("Nic Id: " + getNicId());
final String ip;
if ((ip = getIpaddress()) != null) {
if (!NetUtils.isValidIp4(ip)) {
throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Invalid ip address " + ip);
}
}
final UserVm vm = _userVmService.updateNicIpForVirtualMachine(this);
final ArrayList<VMDetails> dc = new ArrayList<>();
dc.add(VMDetails.valueOf("nics"));
final EnumSet<VMDetails> details = EnumSet.copyOf(dc);
if (vm != null) {
final UserVmResponse response = _responseGenerator.createUserVmResponse(ResponseView.Restricted, "virtualmachine", details, vm).get(0);
response.setResponseName(getCommandName());
this.setResponseObject(response);
} else {
throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to update ip address on vm NIC. Refer to server logs for details.");
}
}
use of com.cloud.api.ApiConstants.VMDetails in project CloudStack-archive by CloudStack-extras.
the class ListVMsCmd method getDetails.
public EnumSet<VMDetails> getDetails() throws InvalidParameterValueException {
EnumSet<VMDetails> dv;
if (viewDetails == null || viewDetails.size() <= 0) {
dv = EnumSet.of(VMDetails.all);
} else {
try {
ArrayList<VMDetails> dc = new ArrayList<VMDetails>();
for (String detail : viewDetails) {
dc.add(VMDetails.valueOf(detail));
}
dv = EnumSet.copyOf(dc);
} catch (IllegalArgumentException e) {
throw new InvalidParameterValueException("The details parameter contains a non permitted value. The allowed values are " + EnumSet.allOf(VMDetails.class));
}
}
return dv;
}
Aggregations