Skip to content

Commit 3bb987d

Browse files
Merge branch '4.16' into main
2 parents cb75e8f + 8ace272 commit 3bb987d

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

api/src/main/java/org/apache/cloudstack/api/command/admin/network/UpdateNetworkOfferingCmd.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ public class UpdateNetworkOfferingCmd extends BaseCmd {
8686
@Parameter(name = ApiConstants.ZONE_ID,
8787
type = CommandType.STRING,
8888
description = "the ID of the containing zone(s) as comma separated string, all for all zones offerings",
89-
since = "4.13")
89+
since = "4.13",
90+
length = 4096)
9091
private String zoneIds;
9192

9293
/////////////////////////////////////////////////////

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ public class UpdateDiskOfferingCmd extends BaseCmd {
6969
@Parameter(name = ApiConstants.DOMAIN_ID,
7070
type = CommandType.STRING,
7171
description = "the ID of the containing domain(s) as comma separated string, public for public offerings",
72-
since = "4.13")
72+
since = "4.13",
73+
length = 4096)
7374
private String domainIds;
7475

7576
@Parameter(name = ApiConstants.ZONE_ID,

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ public class UpdateServiceOfferingCmd extends BaseCmd {
6363

6464
@Parameter(name = ApiConstants.DOMAIN_ID,
6565
type = CommandType.STRING,
66-
description = "the ID of the containing domain(s) as comma separated string, public for public offerings")
66+
description = "the ID of the containing domain(s) as comma separated string, public for public offerings",
67+
length = 4096)
6768
private String domainIds;
6869

6970
@Parameter(name = ApiConstants.ZONE_ID,

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ public class UpdateVPCOfferingCmd extends BaseAsyncCmd {
6060

6161
@Parameter(name = ApiConstants.DOMAIN_ID,
6262
type = CommandType.STRING,
63-
description = "the ID of the containing domain(s) as comma separated string, public for public offerings")
63+
description = "the ID of the containing domain(s) as comma separated string, public for public offerings",
64+
length = 4096)
6465
private String domainIds;
6566

6667
@Parameter(name = ApiConstants.ZONE_ID,

0 commit comments

Comments
 (0)