Search in sources :

Example 6 with InstanceGroup

use of com.cloud.vm.InstanceGroup in project cloudstack by apache.

the class CreateVMGroupCmd method execute.

@Override
public void execute() {
    InstanceGroup result = _userVmService.createVmGroup(this);
    if (result != null) {
        InstanceGroupResponse response = _responseGenerator.createInstanceGroupResponse(result);
        response.setResponseName(getCommandName());
        setResponseObject(response);
    } else {
        throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to create vm instance group");
    }
}
Also used : ServerApiException(org.apache.cloudstack.api.ServerApiException) InstanceGroupResponse(org.apache.cloudstack.api.response.InstanceGroupResponse) InstanceGroup(com.cloud.vm.InstanceGroup)

Example 7 with InstanceGroup

use of com.cloud.vm.InstanceGroup in project cloudstack by apache.

the class UpdateVMGroupCmd method execute.

@Override
public void execute() {
    InstanceGroup result = _mgr.updateVmGroup(this);
    if (result != null) {
        InstanceGroupResponse response = _responseGenerator.createInstanceGroupResponse(result);
        response.setResponseName(getCommandName());
        setResponseObject(response);
    } else {
        throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to update vm instance group");
    }
}
Also used : ServerApiException(org.apache.cloudstack.api.ServerApiException) InstanceGroupResponse(org.apache.cloudstack.api.response.InstanceGroupResponse) InstanceGroup(com.cloud.vm.InstanceGroup)

Aggregations

InstanceGroup (com.cloud.vm.InstanceGroup)7 InstanceGroupResponse (com.cloud.api.response.InstanceGroupResponse)5 ServerApiException (com.cloud.api.ServerApiException)4 ServerApiException (org.apache.cloudstack.api.ServerApiException)2 InstanceGroupResponse (org.apache.cloudstack.api.response.InstanceGroupResponse)2 ListResponse (com.cloud.api.response.ListResponse)1 ArrayList (java.util.ArrayList)1