changed version

This commit is contained in:
Harikrishna Patnala 2024-01-30 18:50:01 +05:30
parent d3b552cfd6
commit 037ac0ecbd
2 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ import com.cloud.utils.StringUtils;
import java.util.Arrays;
@APICommand(name = "checkVolume", description = "Check the volume for any errors or leaks and also repairs when repair parameter is passed, this is currently supported for KVM only", responseObject = VolumeResponse.class, entityType = {Volume.class},
since = "4.18.1",
since = "4.19.1",
authorized = {RoleType.Admin, RoleType.ResourceAdmin, RoleType.DomainAdmin, RoleType.User})
public class CheckAndRepairVolumeCmd extends BaseCmd {
public static final Logger s_logger = Logger.getLogger(CheckAndRepairVolumeCmd.class.getName());

View File

@ -290,11 +290,11 @@ public class VolumeResponse extends BaseResponseWithTagInformation implements Co
private String externalUuid;
@SerializedName(ApiConstants.VOLUME_CHECK_RESULT)
@Param(description = "details for the volume check result, they may vary for different hypervisors, since = 4.18.1")
@Param(description = "details for the volume check result, they may vary for different hypervisors, since = 4.19.1")
private Map<String, String> volumeCheckResult;
@SerializedName(ApiConstants.VOLUME_REPAIR_RESULT)
@Param(description = "details for the volume repair result, they may vary for different hypervisors, since = 4.18.1")
@Param(description = "details for the volume repair result, they may vary for different hypervisors, since = 4.19.1")
private Map<String, String> volumeRepairResult;
public String getPath() {