use of com.cloud.network.as.Condition in project cloudstack by apache.
the class CreateConditionCmd method create.
// ///////////////////////////////////////////////////
// ///////////// API Implementation///////////////////
// ///////////////////////////////////////////////////
@Override
public void create() throws ResourceAllocationException {
Condition condition = null;
condition = _autoScaleService.createCondition(this);
if (condition != null) {
setEntityId(condition.getId());
setEntityUuid(condition.getUuid());
} else {
throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, "Failed to create condition.");
}
}
Aggregations