From edf7675d2e6b80ae25dcb2e6eb66052868396f11 Mon Sep 17 00:00:00 2001 From: Phillip Kent Date: Thu, 5 Mar 2015 12:30:26 +0000 Subject: [PATCH] modify description for name parameter in ListVMsCmd.java (cherry picked from commit d4523c577813b9c21df55bd18776bee6ad872588) Signed-off-by: Rohit Yadav --- .../org/apache/cloudstack/api/command/user/vm/ListVMsCmd.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 76e3db07b75..f6b0c026492 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 @@ -71,7 +71,7 @@ public class ListVMsCmd extends BaseListTaggedResourcesCmd { @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 ids; - @Parameter(name = ApiConstants.NAME, type = CommandType.STRING, description = "name of the virtual machine") + @Parameter(name = ApiConstants.NAME, type = CommandType.STRING, description = "name of the virtual machine (a substring match is made against the parameter value, data for all matching VMs will be returned)") private String name; @Parameter(name = ApiConstants.POD_ID, type = CommandType.UUID, entityType = PodResponse.class, description = "the pod ID")