Skip to content

Commit 21378f8

Browse files
changed version
1 parent 8894660 commit 21378f8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

api/src/main/java/org/apache/cloudstack/api/command/user/volume/CheckAndRepairVolumeCmd.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
import java.util.Arrays;
4040

4141
@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},
42-
since = "4.18.1",
42+
since = "4.19.1",
4343
authorized = {RoleType.Admin, RoleType.ResourceAdmin, RoleType.DomainAdmin, RoleType.User})
4444
public class CheckAndRepairVolumeCmd extends BaseCmd {
4545
public static final Logger s_logger = Logger.getLogger(CheckAndRepairVolumeCmd.class.getName());

api/src/main/java/org/apache/cloudstack/api/response/VolumeResponse.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,11 +290,11 @@ public class VolumeResponse extends BaseResponseWithTagInformation implements Co
290290
private String externalUuid;
291291

292292
@SerializedName(ApiConstants.VOLUME_CHECK_RESULT)
293-
@Param(description = "details for the volume check result, they may vary for different hypervisors, since = 4.18.1")
293+
@Param(description = "details for the volume check result, they may vary for different hypervisors, since = 4.19.1")
294294
private Map<String, String> volumeCheckResult;
295295

296296
@SerializedName(ApiConstants.VOLUME_REPAIR_RESULT)
297-
@Param(description = "details for the volume repair result, they may vary for different hypervisors, since = 4.18.1")
297+
@Param(description = "details for the volume repair result, they may vary for different hypervisors, since = 4.19.1")
298298
private Map<String, String> volumeRepairResult;
299299

300300
public String getPath() {

0 commit comments

Comments
 (0)