mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
add @ACL and EntityType to VMSnapshot APIs
This commit is contained in:
parent
f6df4845fe
commit
0908f64ec7
@ -19,6 +19,9 @@ package org.apache.cloudstack.api.command.user.vmsnapshot;
|
|||||||
|
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
import org.apache.cloudstack.acl.AclEntityType;
|
||||||
|
import org.apache.cloudstack.acl.SecurityChecker.AccessType;
|
||||||
|
import org.apache.cloudstack.api.ACL;
|
||||||
import org.apache.cloudstack.api.APICommand;
|
import org.apache.cloudstack.api.APICommand;
|
||||||
import org.apache.cloudstack.api.ApiConstants;
|
import org.apache.cloudstack.api.ApiConstants;
|
||||||
import org.apache.cloudstack.api.ApiErrorCode;
|
import org.apache.cloudstack.api.ApiErrorCode;
|
||||||
@ -34,12 +37,13 @@ import com.cloud.exception.ResourceAllocationException;
|
|||||||
import com.cloud.uservm.UserVm;
|
import com.cloud.uservm.UserVm;
|
||||||
import com.cloud.vm.snapshot.VMSnapshot;
|
import com.cloud.vm.snapshot.VMSnapshot;
|
||||||
|
|
||||||
@APICommand(name = "createVMSnapshot", description = "Creates snapshot for a vm.", responseObject = VMSnapshotResponse.class, since = "4.2.0")
|
@APICommand(name = "createVMSnapshot", description = "Creates snapshot for a vm.", responseObject = VMSnapshotResponse.class, since = "4.2.0", entityType = { AclEntityType.VMSnapshot })
|
||||||
public class CreateVMSnapshotCmd extends BaseAsyncCreateCmd {
|
public class CreateVMSnapshotCmd extends BaseAsyncCreateCmd {
|
||||||
|
|
||||||
public static final Logger s_logger = Logger.getLogger(CreateVMSnapshotCmd.class.getName());
|
public static final Logger s_logger = Logger.getLogger(CreateVMSnapshotCmd.class.getName());
|
||||||
private static final String s_name = "createvmsnapshotresponse";
|
private static final String s_name = "createvmsnapshotresponse";
|
||||||
|
|
||||||
|
@ACL(accessType = AccessType.OperateEntry)
|
||||||
@Parameter(name = ApiConstants.VIRTUAL_MACHINE_ID, type = CommandType.UUID, required = true, entityType = UserVmResponse.class, description = "The ID of the vm")
|
@Parameter(name = ApiConstants.VIRTUAL_MACHINE_ID, type = CommandType.UUID, required = true, entityType = UserVmResponse.class, description = "The ID of the vm")
|
||||||
private Long vmId;
|
private Long vmId;
|
||||||
|
|
||||||
|
|||||||
@ -19,6 +19,9 @@ package org.apache.cloudstack.api.command.user.vmsnapshot;
|
|||||||
|
|
||||||
import org.apache.log4j.Logger;
|
import org.apache.log4j.Logger;
|
||||||
|
|
||||||
|
import org.apache.cloudstack.acl.AclEntityType;
|
||||||
|
import org.apache.cloudstack.acl.SecurityChecker.AccessType;
|
||||||
|
import org.apache.cloudstack.api.ACL;
|
||||||
import org.apache.cloudstack.api.APICommand;
|
import org.apache.cloudstack.api.APICommand;
|
||||||
import org.apache.cloudstack.api.ApiConstants;
|
import org.apache.cloudstack.api.ApiConstants;
|
||||||
import org.apache.cloudstack.api.ApiErrorCode;
|
import org.apache.cloudstack.api.ApiErrorCode;
|
||||||
@ -33,11 +36,12 @@ import com.cloud.event.EventTypes;
|
|||||||
import com.cloud.user.Account;
|
import com.cloud.user.Account;
|
||||||
import com.cloud.vm.snapshot.VMSnapshot;
|
import com.cloud.vm.snapshot.VMSnapshot;
|
||||||
|
|
||||||
@APICommand(name = "deleteVMSnapshot", description = "Deletes a vmsnapshot.", responseObject = SuccessResponse.class, since = "4.2.0")
|
@APICommand(name = "deleteVMSnapshot", description = "Deletes a vmsnapshot.", responseObject = SuccessResponse.class, since = "4.2.0", entityType = { AclEntityType.VMSnapshot })
|
||||||
public class DeleteVMSnapshotCmd extends BaseAsyncCmd {
|
public class DeleteVMSnapshotCmd extends BaseAsyncCmd {
|
||||||
public static final Logger s_logger = Logger.getLogger(DeleteVMSnapshotCmd.class.getName());
|
public static final Logger s_logger = Logger.getLogger(DeleteVMSnapshotCmd.class.getName());
|
||||||
private static final String s_name = "deletevmsnapshotresponse";
|
private static final String s_name = "deletevmsnapshotresponse";
|
||||||
|
|
||||||
|
@ACL(accessType = AccessType.OperateEntry)
|
||||||
@Parameter(name = ApiConstants.VM_SNAPSHOT_ID,
|
@Parameter(name = ApiConstants.VM_SNAPSHOT_ID,
|
||||||
type = CommandType.UUID,
|
type = CommandType.UUID,
|
||||||
entityType = VMSnapshotResponse.class,
|
entityType = VMSnapshotResponse.class,
|
||||||
|
|||||||
@ -20,6 +20,7 @@ package org.apache.cloudstack.api.command.user.vmsnapshot;
|
|||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.apache.cloudstack.acl.AclEntityType;
|
||||||
import org.apache.cloudstack.api.APICommand;
|
import org.apache.cloudstack.api.APICommand;
|
||||||
import org.apache.cloudstack.api.ApiConstants;
|
import org.apache.cloudstack.api.ApiConstants;
|
||||||
import org.apache.cloudstack.api.BaseListTaggedResourcesCmd;
|
import org.apache.cloudstack.api.BaseListTaggedResourcesCmd;
|
||||||
@ -30,7 +31,7 @@ import org.apache.cloudstack.api.response.VMSnapshotResponse;
|
|||||||
|
|
||||||
import com.cloud.vm.snapshot.VMSnapshot;
|
import com.cloud.vm.snapshot.VMSnapshot;
|
||||||
|
|
||||||
@APICommand(name = "listVMSnapshot", description = "List virtual machine snapshot by conditions", responseObject = VMSnapshotResponse.class, since = "4.2.0")
|
@APICommand(name = "listVMSnapshot", description = "List virtual machine snapshot by conditions", responseObject = VMSnapshotResponse.class, since = "4.2.0", entityType = { AclEntityType.VMSnapshot })
|
||||||
public class ListVMSnapshotCmd extends BaseListTaggedResourcesCmd {
|
public class ListVMSnapshotCmd extends BaseListTaggedResourcesCmd {
|
||||||
|
|
||||||
private static final String s_name = "listvmsnapshotresponse";
|
private static final String s_name = "listvmsnapshotresponse";
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user