5.5.1

Table Of Contents
Table 51. Query Syntax of the Orchestrator Plug-Ins (Continued)
Orchestrator Plug-In Query Parameter Syntax Query Behavior
vCenter Server String or null Ignores the query string and returns all
objects of the specified type.
XML Not applicable Stores nothing in the inventory.
When you develop plug-ins, you can define a query language to use find to search for named objects
through the custom plug-in. This definition is not mandatory. The syntax of the query parameter is entirely
dependent on the query language that the plug-in implements. To avoid defining a query language, make
find return all objects, as in the case of the VMware Infrastructure plug-ins.
The size of the array of objects that the QueryResult returns depends on the definition of the plug-in through
which you make the query. For the queries you make through the standard Orchestrator plug-ins, the array
contains an unlimited number of FinderResult objects. Developers of third-party plug-ins, however, can set
a limit on the number of results that the query returns. If the value of totalCount exceeds the number of
objects in the array of FinderResult objects, the array does not include all of the objects found in the queried
inventory. The totalCount property does report the total number of FinderResult objects found. The
totalCount property can be negative, which signifies that the plug-in cannot determine how many
corresponding objects are in the plug-in.
Type Value Description
String
type
Type of object looked for.
String
query
The query.
The query is a string enclosed in
quotation marks. Any object of the
type specified by the type parameter
with a name that matches the query
string is returned in the QueryResult
object.
String
username
Orchestrator user name.
String
password
Orchestrator password.
Return Value
Returns the result of the query as a QueryResult object.
If find fails to match an object, QueryResult.getTotalCount returns 0 and QueryResult.getElement returns
null.
If the server does not recognize the object type or plug-in searched for, find throws an exception. The find
operation also returns an exception if you pass it an invalid parameter.
findForId Operation
The findForId operation searches for a specific FinderResult object according to that FinderResult object's
type and id properties.
You can use the findForId operation to acquire information about FinderResult objects you have already
found by using the other find* operations. For example, you can use the findForId method to obtain the
state of a FinderResult object you found by using the find operation.
The findForId operation is declared as the following example shows.
public FinderResult findForId(String type, String id, String username,
String password);
Chapter 5 Web Service API Operation Reference
VMware, Inc. 83