DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.

DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
How
...
we
...
make
...
API
...
references.
...
Under
...
construction.
...
| Table of Contents |
|---|
How do we create API documentation for CloudStack?
Engineers include descriptive annotations when they write code. In Java, annotations start with @.
Some of the annotations we have defined to contain documentation strings look like this:
@Implementation(description="Creates
...
an
...
account",
...
responseObject=UserResponse.class)
...
public
...
class
...
CreateAccountCmd
...
extends
...
BaseCmd
...
{
...
public
...
static
...
final
...
Logger
...
s_logger
...
=
...
Logger.getLogger(CreateAccountCmd.class.getName());
...
private
...
static
...
final
...
String
...
s_name
...
=
...
"createaccountresponse";
...
/////////////////////////////////////////////////////
...
////////////////
...
API
...
parameters
...
/////////////////////
...
/////////////////////////////////////////////////////
...
@Parameter(name=ApiConstants.ACCOUNT,
...
type=CommandType.STRING,
...
description="Creates
...
the
...
user
...
under
...
the
...
specified
...
account.")
...
private
...
String
...
accountName;
...
See
...
the
...
description="
...
"
...
inside
...
@Implementation
...
and
...
@Parameter.
...
That
...
text
...
will
...
be
...
extracted
...
in
...
the
...
Java
...
to
...
HTML
...
step.
For more information, see
There is a script that converts the Java annotations to XML output. Then there is a Java program that takes in the xml for the table of contents as well as each command, and generates the required html documents which we upload to our website.
There is a "diff.txt" file which is auto-generated. This lists all added, removed, and changed API commands versus the prior point release of CloudStack.