Skip to content

Commit 6a98359

Browse files
authored
Fix for zoneids parameters length on updateAPIs (#12440)
1 parent 6846619 commit 6a98359

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

api/src/main/java/org/apache/cloudstack/api/command/admin/offering/UpdateDiskOfferingCmd.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ public class UpdateDiskOfferingCmd extends BaseCmd {
7575
@Parameter(name = ApiConstants.ZONE_ID,
7676
type = CommandType.STRING,
7777
description = "The ID of the containing zone(s) as comma separated string, all for all zones offerings",
78+
length = 4096,
7879
since = "4.13")
7980
private String zoneIds;
8081

api/src/main/java/org/apache/cloudstack/api/command/admin/offering/UpdateServiceOfferingCmd.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ public class UpdateServiceOfferingCmd extends BaseCmd {
6969
@Parameter(name = ApiConstants.ZONE_ID,
7070
type = CommandType.STRING,
7171
description = "The ID of the containing zone(s) as comma separated string, all for all zones offerings",
72+
length = 4096,
7273
since = "4.13")
7374
private String zoneIds;
7475

api/src/main/java/org/apache/cloudstack/api/command/admin/vpc/UpdateVPCOfferingCmd.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ public class UpdateVPCOfferingCmd extends BaseAsyncCmd {
6565
@Parameter(name = ApiConstants.ZONE_ID,
6666
type = CommandType.STRING,
6767
description = "The ID of the containing zone(s) as comma separated string, all for all zones offerings",
68+
length = 4096,
6869
since = "4.13")
6970
private String zoneIds;
7071

0 commit comments

Comments
 (0)