Repository: cloudstack
Updated Branches:
  refs/heads/master 4399e245f -> 16ddc3414


CLOUDSTACK-6052: List VM enhancement to support querying with multiple VM IDs
Annotated the 'ids' parameter with "since = 4.4"


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/16ddc341
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/16ddc341
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/16ddc341

Branch: refs/heads/master
Commit: 16ddc3414ae0269ecb8903f670496e45f68d6ef6
Parents: 4399e24
Author: Koushik Das <[email protected]>
Authored: Fri Mar 14 11:04:42 2014 +0530
Committer: Koushik Das <[email protected]>
Committed: Fri Mar 14 11:04:42 2014 +0530

----------------------------------------------------------------------
 api/src/org/apache/cloudstack/api/command/user/vm/ListVMsCmd.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/16ddc341/api/src/org/apache/cloudstack/api/command/user/vm/ListVMsCmd.java
----------------------------------------------------------------------
diff --git a/api/src/org/apache/cloudstack/api/command/user/vm/ListVMsCmd.java 
b/api/src/org/apache/cloudstack/api/command/user/vm/ListVMsCmd.java
index e5576e7..6c95a12 100644
--- a/api/src/org/apache/cloudstack/api/command/user/vm/ListVMsCmd.java
+++ b/api/src/org/apache/cloudstack/api/command/user/vm/ListVMsCmd.java
@@ -68,8 +68,7 @@ public class ListVMsCmd extends BaseListTaggedResourcesCmd {
     @Parameter(name = ApiConstants.ID, type = CommandType.UUID, entityType = 
UserVmResponse.class, description = "the ID of the virtual machine")
     private Long id;
 
-    @Parameter(name=ApiConstants.IDS, type=CommandType.LIST, 
collectionType=CommandType.UUID, entityType=UserVmResponse.class,
-               description="the IDs of the virtual machines, mutually 
exclusive with id")
+    @Parameter(name=ApiConstants.IDS, type=CommandType.LIST, 
collectionType=CommandType.UUID, entityType=UserVmResponse.class, 
description="the IDs of the virtual machines, mutually exclusive with id", 
since = "4.4")
     private List<Long> ids;
 
     @Parameter(name = ApiConstants.NAME, type = CommandType.STRING, 
description = "name of the virtual machine")

Reply via email to