You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/src/main/java/org/apache/cloudstack/api/response/UserVmResponse.java
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -170,9 +170,9 @@ public class UserVmResponse extends BaseResponseWithTagInformation implements Co
170
170
@Param(description = "All ISOs attached to the Instance, keyed by cdrom slot. The first entry mirrors isoid/isoname for back-compat.", responseObject = AttachedIsoResponse.class, since = "4.23.0")
171
171
privateList<AttachedIsoResponse> isos;
172
172
173
-
@SerializedName("cdrommaxcount")
174
-
@Param(description = "Maximum number of CD-ROM drives this Instance may have, after applying the cluster-scoped vm.cdrom.max.count and the hypervisor's own cap.", since = "4.23.0")
175
-
privateIntegercdromMaxCount;
173
+
@SerializedName("isomaxcount")
174
+
@Param(description = "Maximum number of ISOs that may be attached to this Instance, after applying the cluster-scoped vm.iso.max.count and the hypervisor's own cap.", since = "4.23.0")
175
+
privateIntegerisoMaxCount;
176
176
177
177
@SerializedName(ApiConstants.SERVICE_OFFERING_ID)
178
178
@Param(description = "The ID of the service offering of the Instance")
@@ -887,12 +887,12 @@ public List<AttachedIsoResponse> getIsos() {
0 commit comments