This is an automated email from the ASF dual-hosted git repository.
joao pushed a commit to branch 4.20
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.20 by this push:
new 5204960bac8 made id parameter required (#10338)
5204960bac8 is described below
commit 5204960bac890e40153403728e33b95a79cd3188
Author: erik-bock-silva <[email protected]>
AuthorDate: Fri Feb 14 08:32:23 2025 -0300
made id parameter required (#10338)
---
.../admin/offering/IsAccountAllowedToCreateOfferingsWithTagsCmd.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/api/src/main/java/org/apache/cloudstack/api/command/admin/offering/IsAccountAllowedToCreateOfferingsWithTagsCmd.java
b/api/src/main/java/org/apache/cloudstack/api/command/admin/offering/IsAccountAllowedToCreateOfferingsWithTagsCmd.java
index e94bff1fce8..fcd6b03d3e5 100644
---
a/api/src/main/java/org/apache/cloudstack/api/command/admin/offering/IsAccountAllowedToCreateOfferingsWithTagsCmd.java
+++
b/api/src/main/java/org/apache/cloudstack/api/command/admin/offering/IsAccountAllowedToCreateOfferingsWithTagsCmd.java
@@ -29,7 +29,7 @@ import
org.apache.cloudstack.api.response.IsAccountAllowedToCreateOfferingsWithT
responseObject =
IsAccountAllowedToCreateOfferingsWithTagsResponse.class,
requestHasSensitiveInfo = false, responseHasSensitiveInfo = false)
public class IsAccountAllowedToCreateOfferingsWithTagsCmd extends BaseCmd {
- @Parameter(name = ApiConstants.ID, type = CommandType.UUID, entityType =
AccountResponse.class, description = "Account UUID")
+ @Parameter(name = ApiConstants.ID, type = CommandType.UUID, entityType =
AccountResponse.class, description = "Account UUID", required = true)
private Long id;
@Override