From c66842b6405ecded71daaa94ac97793161977c0d Mon Sep 17 00:00:00 2001 From: Alena Prokharchyk Date: Tue, 22 Nov 2011 15:33:13 -0800 Subject: [PATCH] bug 11812: added domainId parameter to "login" api doc status 11812: resolved fixed --- server/src/com/cloud/api/doc/ApiXmlDocWriter.java | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/com/cloud/api/doc/ApiXmlDocWriter.java b/server/src/com/cloud/api/doc/ApiXmlDocWriter.java index 16b2b004255..7ef65ab6d85 100644 --- a/server/src/com/cloud/api/doc/ApiXmlDocWriter.java +++ b/server/src/com/cloud/api/doc/ApiXmlDocWriter.java @@ -353,6 +353,7 @@ public class ApiXmlDocWriter { request.add(new Argument("username", "Username", true)); request.add(new Argument("password", "Hashed password (Default is MD5). If you wish to use any other hashing algorithm, you would need to write a custom authentication adapter See Docs section.", true)); request.add(new Argument("domain", "path of the domain that the user belongs to. Example: domain=/com/cloud/internal. If no domain is passed in, the ROOT domain is assumed.", false)); + request.add(new Argument("domainId", "id of the domain that the user belongs to. If both domain and domainId are passed in, \"domainId\" parameter takes precendence", false)); apiCommand.setRequest(request); // Generate response