Commands

The commands listed below are for use in the Public API, specifically for use to determine the parameters that can be passed to the execute method of the com.sun.n1.sps.client.CommandManager.  Under each command, the 'result' describes the Java object that is returned as a result of the execution of the command, while the 'Argument' table has the following columns that represent the:

Some commands print out their results to an OutputStream which should be provided by CommandManager.  By default, if OutputStream is not set, the command output will be discarded. You can set desired output stream using setLocalOutputStream() method of CommandManager.

The following code shows how to get an output of "pe.p.lo" command as as a string.
	ByteArrayOutputStream baos = new ByteArrayOutputStream();

mngr.setLocalOutputStream(boas);
Map arguments = new HashMap();
arguments.put("ID", <A_Plan_ID>);
mngr.execute("pe.p.lo", arguments);

baos.close();
String output = new String(boas.toByteArray());






Index Of Commands


bdb.b.add

Creates a new bundle template

result

undocumented class: NULL? com.raplix.rolloutexpress.systemmodel.bundledb.BundleID

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nameThe name of the bundle template[R]java.lang.String
descThe description of the bundle template[O]java.lang.String
criteriaSearch criteria for entities that need to be included in the bundle template. Criteria must start with one of the following: F: HT: HR: HS: C: CT: SS: P: followed by comma separated attribute=value pairs. Multiple such criteria are to be separated by the ';' signs[O]undocumented class: NULL? com.raplix.rolloutexpress.systemmodel.bundledb.SearchCriteria


bdb.b.del

Deletes a bundle template

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the bundle template to delete[R]undocumented class: NULL? com.raplix.rolloutexpress.systemmodel.bundledb.BundleID


bdb.b.exp

Exports a Bundle jar to the file system

result

undocumented class: NULL? com.raplix.rolloutexpress.systemmodel.bundledb.impex.BundleSessionInfo

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
pathThe path to the file system where the Bundle jar requires to be saved[R]java.lang.String
IDThe ID of the Bundle Template to use for export[R]undocumented class: NULL? com.raplix.rolloutexpress.systemmodel.bundledb.BundleID


bdb.b.imp

Imports a Bundle jar from the file system

result

undocumented class: NULL? com.raplix.rolloutexpress.systemmodel.bundledb.impex.BundleSessionInfo

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
pathThe path to the file system from which to import the Bundle jar[R]java.lang.String
ownerGroupID of the group to which folders created through the import will belong[R]com.sun.n1.sps.model.user.GroupID
vTrue if validation of import is the only operation required. Default is false[O]java.lang.Boolean


bdb.b.la

Lists a summary of bundle templates existing on the master server

result

undocumented class: NULL? com.raplix.rolloutexpress.systemmodel.bundledb.SummaryBundle

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


bdb.b.lo

Lists the details or summary of a bundle template, given a bundle template ID. Default is summary

result

undocumented class: NULL? com.raplix.rolloutexpress.systemmodel.bundledb.Bundle

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the bundle template to view[R]undocumented class: NULL? com.raplix.rolloutexpress.systemmodel.bundledb.BundleID


bdb.b.mod

Modifies an existing bundle template

result

undocumented class: NULL? com.raplix.rolloutexpress.systemmodel.bundledb.BundleID

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDID of the bundle template that requires an edit[R]undocumented class: NULL? com.raplix.rolloutexpress.systemmodel.bundledb.BundleID
nameThe name of the bundle template[O]java.lang.String
descThe modified description of the bundle template[O]java.lang.String
criteriaSearch criteria for entities that need to be included in the bundle template. Criteria must start with one of the following: F: HT: HR: HS: C: CT: SS: P: followed by comma separated attribute=value pairs. Multiple such criteria are to be separated by the ';' signs[O]undocumented class: NULL? com.raplix.rolloutexpress.systemmodel.bundledb.SearchCriteria


cat.add

Adds a new Category

result

com.sun.n1.sps.model.category.Category

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nameThe name of the Category[R]java.lang.String
descThe description of the Category[R]java.lang.String


cat.del

Deletes a Category

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe Category instance ID[R]com.sun.n1.sps.model.category.CategoryID


cat.la

Lists all categories

result

com.sun.n1.sps.model.category.Category[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


cat.mod

Modifies a Category; omitted arguments preserve current values

result

com.sun.n1.sps.model.category.Category

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe Category instance ID[R]com.sun.n1.sps.model.category.CategoryID
nameThe name of the Category[O]java.lang.String
descThe description of the Category[O]java.lang.String


cdb.c.ci

Checks in a new version of a component from XML

result

com.sun.n1.sps.model.component.Component

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
pathThe component in XML format[R]java.lang.string
Provides a name of a file to be used for input.
majorWhether to checkin as a new major version[O]java.lang.Boolean
importWhether to import variable settings, default true[O]java.lang.Boolean
hidePrevWhether to hide the previous version, default true[O]java.lang.Boolean
parentsWhether to create missing parent folders[O]java.lang.Boolean


cdb.c.co

Outputs a component in XML format
See notes for OutputStream usage.

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
compThe component[R]com.sun.n1.sps.model.component.Component


cdb.c.del

Deletes a component

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the component to delete[R]com.sun.n1.sps.model.component.ComponentID
allWhether to delete all versions of the component, default false[O]java.lang.Boolean


cdb.c.la

Lists all components

result

com.sun.n1.sps.model.component.SummaryComponent[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
shWhether hidden components are shown, default false[O]java.lang.Boolean
catCategory filter to apply, default "all"[O]com.sun.n1.sps.model.category.CategoryID
folderIDParent folder ID. Default is root folder.[O]com.sun.n1.sps.model.folder.FolderID
flatViewShould results be listed in flat view (recursively from parent). Default is true.[O]java.lang.Boolean


cdb.c.lo

Views a component

result

com.sun.n1.sps.model.component.Component

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the component to view[R]com.sun.n1.sps.model.component.ComponentID


cdb.c.lv

Lists all builds of a particular component

result

com.sun.n1.sps.model.component.SummaryComponent[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
compA component in the desired version tree[R]com.sun.n1.sps.model.component.ComponentID


cdb.c.mod

Saves a component with new resource versions

result

com.sun.n1.sps.model.component.Component

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
compThe component[R]com.sun.n1.sps.model.component.ComponentID
labelThe component label[O]java.lang.String
descThe component description[O]java.lang.String
rvaThe resource versions; use version number, "#" for recommended, "+" for default, and "-" for latest; or omit this argument to use latest for all resources.[O]java.lang.String[]
hidePrevWhether to hide the previous build, default true[O]java.lang.Boolean


cdb.c.mv

Move and/or rename a component

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the component to move/rename[R]com.sun.n1.sps.model.component.ComponentID
fullnameThe new full name (path + name) of the component[R]java.lang.String


cdb.c.sc

Associates a component with a set of categories

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the component to affect[R]com.sun.n1.sps.model.component.ComponentID
catIDsThe IDs of the categories to associate with this component[R]com.sun.n1.sps.model.category.CategoryIDSet
allWhether to change all versions of the component, default false[O]java.lang.Boolean


cdb.c.sh

Hide or un-hide a component

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the component to affect[R]com.sun.n1.sps.model.component.ComponentID
hideWhether the component is set to hidden[R]java.lang.Boolean
allWhether to change all versions of the component, default false[O]java.lang.Boolean


cdb.cj.la

Lists check in jobs

result

com.sun.n1.sps.model.component.CompCheckInInfo[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


cdb.cj.lo

Shows the details/status of a remote check in

result

com.sun.n1.sps.model.component.CompCheckInInfo

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the check in job[R]com.sun.n1.sps.model.component.CompCheckInID


cdb.cj.stop

Stops a remote check in job

result

com.sun.n1.sps.model.component.CompCheckInInfo

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the check in job[R]com.sun.n1.sps.model.component.CompCheckInID


cdb.ctr.add

Adds a new component type ref

result

com.sun.n1.sps.model.component.ComponentTypeRef

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nameThe component type ref name[R]java.lang.String
descThe component type ref description[O]java.lang.String
orderThe component type ref order[R]java.lang.String
groupThe component type group[R]java.lang.String
indentLevelThe component type indent level[R]java.lang.Integer
comprefThe name of the referenced component[R]java.lang.String
compverThe version of the referenced component[R]java.lang.String


cdb.ctr.del

Deletes a component type ref

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe component type ref ID to be deleted[R]com.sun.n1.sps.model.component.ComponentTypeRefID


cdb.ctr.la

Lists all component type refs

result

com.sun.n1.sps.model.component.ComponentTypeRef[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


cdb.ctr.lo

Retrieves a component type ref

result

com.sun.n1.sps.model.component.ComponentTypeRef

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe target component type ref[R]com.sun.n1.sps.model.component.ComponentTypeRef


cdb.ctr.mod

Modifies an existing component type ref; omitted arguments preserve current values

result

com.sun.n1.sps.model.component.ComponentTypeRef

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
ctrThe target component type ref[R]com.sun.n1.sps.model.component.ComponentTypeRef
nameThe component type ref name[O]java.lang.String
descThe component type ref description[O]java.lang.String
orderThe component type ref order[O]java.lang.String
groupThe component type ref group[O]java.lang.String
indentLevelThe component type ref indent level[O]java.lang.Integer
compverThe version of the referenced component[O]java.lang.String


cdb.ic.la

Lists the installed components

result

com.sun.n1.sps.model.install.InstalledComponentBean[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDsThe installed component IDs to restrict the output to[O]com.sun.n1.sps.model.install.InstalledComponentID[]


cdb.ic.lbc

Lists the hosts on which a particular component is installed

result

com.sun.n1.sps.model.install.InstalledComponentBean[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
compThe component ID[R]com.sun.n1.sps.model.component.ComponentID


cdb.ic.lbh

Lists the components installed on a particular host

result

com.sun.n1.sps.model.install.InstalledComponentBean[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
hostThe host ID[R]com.sun.n1.sps.model.host.HostID
catCategory filter to apply, default "all"[O]com.sun.n1.sps.model.category.CategoryID


cdb.ic.ldo

Lists the components that the specified installed components are dependent on

result

com.sun.n1.sps.model.install.Dependency[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe installed component ID[O/R]com.sun.n1.sps.model.install.InstalledComponentID
IDsList of installed component IDs[O/R]com.sun.n1.sps.model.install.InstalledComponentID[]


cdb.ic.lod

Lists the components that are dependent on the specified installed components

result

com.sun.n1.sps.model.install.Dependency[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe installed component ID[O/R]com.sun.n1.sps.model.install.InstalledComponentID
IDsList of installed component IDs[O/R]com.sun.n1.sps.model.install.InstalledComponentID[]


cdb.ic.vs.lo

List details of a particular generated variable settings object

result

com.sun.n1.sps.model.component.GeneratedVariableSettings

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the installed component whose generated variable settings will be viewed[R]com.sun.n1.sps.model.install.InstalledComponentID


cdb.rsrc.ci

Checks a file or directory into the server

result

com.sun.n1.sps.model.component.CompCheckInID

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
srcThe file or directory to be checked in as a component[R]java.lang.String
dstThe name to be assigned to the component[R]java.lang.String
typeThe type of the component[R]java.lang.String
platformThe platform of the component[O]com.sun.n1.sps.model.host.HostSetID
descA description of the the component[O]java.lang.String
majorWhether file version increment should be major or minor[O]java.lang.Boolean
configWhether the file is a config file[O]java.lang.Boolean
hideprevWhether to hide the previous version, default true[O]java.lang.Boolean
includeOwnersWhether to include owner information, default true[O]java.lang.Boolean
includeGroupsWhether to include group information, default true[O]java.lang.Boolean
addToWhether the files being checked in should be added to the existing files to create a new version, instead of completely replacing the existing files to create a new version[O]java.lang.Boolean
hostIDThe ID of the local host[O]com.sun.n1.sps.model.host.HostID
redunWhether redundancy checking should apply, default true[O]java.lang.Boolean
pickerNameThe name of the component picker to use (defaults to null for the default picker)[O]java.lang.String
extraOptsNames and values for any additional options for the type. config, includeOwners, includeGroups, addTo, and redun cannot be specified using the extraOpts argument. Use the command line equivalent options, which are listed above, to specify these values.[O]java.util.Hashtable


cdb.rsrc.cib

Checks the components listed in a batchfile into the server.

result

java.lang.String

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
batchfileThe batchfile listing the components to be checked in; each line consists of the following fields separated by the | character: [required] component location [required] component name [required] component type [optional] platform [optional] component description [optional] config file [optional] major version [optional] hide previous version [optional] include owner attributes [optional] include group attributes [optional] add files to component instead of replacing [optional] ID of the local host [optional] redundancy checking [optional] the name of the picker to use (empty for default picker) [optional] extra options supported by the picker, excluding config file, include owner attributes, include group attributes, add files, and redundancy checking [R]java.lang.String
haltonerrorWhen true, first error will halt batch execution Defaults to true.[O]java.lang.Boolean
pwdrelativeWhen true, relative paths are relative to the user directory; otherwise they are relative to the batchfile location. Defaults to false.[O]java.lang.Boolean


cdb.rsrc.co

Downloads a component to the local host

result

java.lang.String

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
srcThe name of the component to transfer[R]java.lang.String
vThe version of the component[R]java.lang.String
dstThe location where the component should be placed[R]java.lang.String


cdb.rsrc.gd

Generate a resource descriptor
See notes for OutputStream usage.

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the component for which to generate the descriptor[R]com.sun.n1.sps.model.component.ComponentID


cdb.rsrc.rci

Re-check in a component

result

com.sun.n1.sps.model.component.CompCheckInID

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the component[R]com.sun.n1.sps.model.component.ComponentID


cdb.rsrc.showopts

Shows the check in options supported by a particular type

result

com.sun.n1.sps.model.plugin.BrowserInfo[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
typeThe type of the component[R]java.lang.String


cdb.ssr.add

Adds a new system service ref

result

com.sun.n1.sps.model.component.SystemServiceRef

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nameThe system service ref name[R]java.lang.String
descThe system service ref description[O]java.lang.String
icnThe full name of the referenced installed component[R]java.lang.String
icvThe version of the referenced installed component[R]java.lang.String
icpThe install path of the referenced installed component[O]java.lang.String


cdb.ssr.del

Deletes a system service ref

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe system service ref ID[R]com.sun.n1.sps.model.component.SystemServiceRefID


cdb.ssr.la

Lists all system service refs

result

com.sun.n1.sps.model.component.SystemServiceRef[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


cdb.ssr.lo

Retrieves a system service ref

result

com.sun.n1.sps.model.component.SystemServiceRef

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe target system service ref[R]com.sun.n1.sps.model.component.SystemServiceRef


cdb.ssr.mod

Modifies an existing system service ref; omitted arguments preserve current values

result

com.sun.n1.sps.model.component.SystemServiceRef

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
ssrThe target system service ref[R]com.sun.n1.sps.model.component.SystemServiceRef
nameThe system service ref name[O]java.lang.String
descThe system service ref description[O]java.lang.String
icnThe full name of the referenced installed component[O]java.lang.String
icvThe version of the referenced installed component[O]java.lang.String
icpThe install path of the referenced installed component[O]java.lang.String


cdb.vs.add

Add a new variable settings object

result

com.sun.n1.sps.model.component.ComponentVariableSettings

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
compThe component[R]com.sun.n1.sps.model.component.ComponentID
nameThe component variable settings name[R]java.lang.String
varsThe new override values[R]java.util.Hashtable


cdb.vs.del

Delete an existing variable settings object

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
vsThe ID of the component variable settings to delete[R]com.sun.n1.sps.model.component.ComponentVariableSettingsID


cdb.vs.imp

Import component variable settings from one component into another

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
srcThe component to import from[R]com.sun.n1.sps.model.component.ComponentID
dstThe component to import to[R]com.sun.n1.sps.model.component.ComponentID


cdb.vs.la

List all variable settings associated with a particular component

result

com.sun.n1.sps.model.component.ComponentVariableSettings[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
compThe component[R]com.sun.n1.sps.model.component.ComponentID


cdb.vs.lo

List details of a particular variable settings object

result

com.sun.n1.sps.model.component.ComponentVariableSettings

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
vsThe component variable settings to view[R]com.sun.n1.sps.model.component.ComponentVariableSettings


cdb.vs.mod

Modify an existing variable settings object

result

com.sun.n1.sps.model.component.ComponentVariableSettings

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
vsThe component variable settings[R]com.sun.n1.sps.model.component.ComponentVariableSettings
nameThe new name[O]java.lang.String
varsThe new override values[O]java.util.Hashtable


cfg.gen

Generate configuration for an input.
See notes for OutputStream usage.

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
pathThe input source[R]java.lang.string
Provides a name of a file to be used for input.
hostThe target host[R]com.sun.n1.sps.model.host.Host
compThe target component[R]com.sun.n1.sps.model.component.Component
vsThe target override variable settings[O]com.sun.n1.sps.model.component.ComponentVariableSettings


cmp.dj.add

Adds (starts) a new comparison

result

com.sun.n1.sps.model.difference.DifferenceJobID

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe comparison settings[R]com.sun.n1.sps.model.difference.DifferenceSettings


cmp.dj.del

Deletes (stops) a running comparison

result

java.lang.Boolean

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the running comparison[R]com.sun.n1.sps.model.difference.DifferenceJobID


cmp.dj.la

Lists running and completed comparisons

result

com.sun.n1.sps.model.difference.RunningDiffBean[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
maxThe maximum number of jobs to list; ignored if there are more running comparisons than the given number[O]java.lang.Integer


cmp.dj.lo

Retrieves a running comparison to display its progress
See notes for OutputStream usage.

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the comparison[R]com.sun.n1.sps.model.difference.DifferenceJobID
oldWhether to show old messages; default false[O]java.lang.Boolean
newWhether to poll for new messages; default true[O]java.lang.Boolean


cmp.ds.add

Adds new comparison settings; some optional arguments may be required for some style/level/scope combinations

result

com.sun.n1.sps.model.difference.DifferenceSettings

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nameThe name of the comparison settings[R]java.lang.String
descThe settings'' description[O]java.lang.String
styleThe settings'' style[R]com.sun.n1.sps.model.difference.Style
levelThe settings'' level[O/R]com.sun.n1.sps.model.difference.Level
scopeThe settings'' scope[O/R]com.sun.n1.sps.model.difference.Scope
srchIDThe settings'' source host ID[O/R]com.sun.n1.sps.model.host.HostID
dsthIDThe settings'' destination host ID[O/R]com.sun.n1.sps.model.host.HostID
dsthsIDThe settings'' destination host set ID[O/R]com.sun.n1.sps.model.host.HostSetID
srcdirThe settings'' source directory[O/R]java.lang.String
dstdirThe settings'' destination directory[O/R]java.lang.String
ignpThe settings'' ignore paths[O/R]java.lang.String[]
cRefThe settings'' component reference[O/R]com.sun.n1.sps.model.install.InstalledComponentRef
toutThe settings'' timeout[R]com.sun.n1.sps.model.util.TimeInterval
incdThe settings'' include subdirectories flag; default false[O]java.lang.Boolean
fslWhether to follow symbolic links or not; default is true[O]java.lang.Boolean
usePlansInclude temporary files generated by scripts during comparison; default false[O/R]java.lang.Boolean
dstUseSrcPUse reference host "generate" script on comparison host; default true[O/R]java.lang.Boolean
srcPReference host script to generate temporary files[O/R]java.lang.string
Provides a name of a file to be used for input.
dstPComparison host script to generate temporary files[O/R]java.lang.string
Provides a name of a file to be used for input.
dstUseSrcCUse reference host "clean up" script on comparison host; default true[O/R]java.lang.Boolean
srcCReference host script to clean up temporary files[O/R]java.lang.string
Provides a name of a file to be used for input.
dstCComparison host script to clean up temporary files[O/R]java.lang.string
Provides a name of a file to be used for input.


cmp.ds.del

Deletes comparison settings

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the comparison settings[R]com.sun.n1.sps.model.difference.DifferenceSettingsID


cmp.ds.la

Lists all comparison settings

result

com.sun.n1.sps.model.difference.DifferenceSettings[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
catCategory filter to apply, default "all"[O]com.sun.n1.sps.model.category.CategoryID


cmp.ds.lo

Retrieves comparison settings

result

com.sun.n1.sps.model.difference.DifferenceSettings

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the comparison settings[R]com.sun.n1.sps.model.difference.DifferenceSettingsID


cmp.ds.mod

Adds new comparison settings by using existing ones as template; omitted arguments preserve current values when possible

result

com.sun.n1.sps.model.difference.DifferenceSettings

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the template comparison settings[R]com.sun.n1.sps.model.difference.DifferenceSettingsID
descThe settings'' description[O]java.lang.String
styleThe settings'' style[O]com.sun.n1.sps.model.difference.Style
levelThe settings'' level[O/R]com.sun.n1.sps.model.difference.Level
scopeThe settings'' scope[O/R]com.sun.n1.sps.model.difference.Scope
srchIDThe settings'' source host ID[O/R]com.sun.n1.sps.model.host.HostID
dsthIDThe settings'' destination host ID[O/R]com.sun.n1.sps.model.host.HostID
dsthsIDThe settings'' destination host set ID[O/R]com.sun.n1.sps.model.host.HostSetID
srcdirThe settings'' source directory[O/R]java.lang.String
dstdirThe settings'' destination directory[O/R]java.lang.String
ignpThe settings'' ignore paths[O/R]java.lang.String[]
cRefThe settings'' component reference[O/R]com.sun.n1.sps.model.install.InstalledComponentRef
toutThe settings'' timeout[O]com.sun.n1.sps.model.util.TimeInterval
incdThe settings'' include subdirectories flag[O]java.lang.Boolean
fslWhether to follow symbolic links or not; default is true[O]java.lang.Boolean
usePlansInclude temporary files generated by scripts during comparison; default false[O/R]java.lang.Boolean
dstUseSrcPUse reference host "generate" script on comparison host; default true[O/R]java.lang.Boolean
srcPReference host script to generate temporary files[O/R]java.lang.string
Provides a name of a file to be used for input.
dstPComparison host script to generate temporary files[O/R]java.lang.string
Provides a name of a file to be used for input.
dstUseSrcCUse reference host "clean up" script on comparison host; default true[O/R]java.lang.Boolean
srcCReference host script to clean up temporary files[O/R]java.lang.string
Provides a name of a file to be used for input.
dstCComparison host script to clean up temporary files[O/R]java.lang.string
Provides a name of a file to be used for input.


cmp.ds.sc

Associates a comparison settings with a set of categories

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the comparison settings to affect[R]com.sun.n1.sps.model.difference.DifferenceSettingsID
catIDsThe IDs of the Categories to associate with this comparison settings[R]com.sun.n1.sps.model.category.CategoryIDSet


fdb.f.add

Adds a new folder

result

com.sun.n1.sps.model.folder.Folder

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
fullnameThe full name (path + name) of the new folder[R]java.lang.String
descThe folder description[O]java.lang.String
parentsWhether to create missing parent folders[O]java.lang.Boolean


fdb.f.co

Changes the owner group of a folder

result

com.sun.n1.sps.model.folder.Folder

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe folder ID[R]com.sun.n1.sps.model.folder.FolderID
groupIDThe group ID[R]com.sun.n1.sps.model.user.GroupID


fdb.f.del

Deletes a folder

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe folder ID[R]com.sun.n1.sps.model.folder.FolderID


fdb.f.la

Lists all folders

result

com.sun.n1.sps.model.folder.SummaryFolder[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
folderIDParent folder ID. Default is root folder.[O]com.sun.n1.sps.model.folder.FolderID
flatViewShould results be listed in flat view (recursively from parent). Default is true.[O]java.lang.Boolean


fdb.f.lo

Retrieves a folder

result

com.sun.n1.sps.model.folder.Folder

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe folder ID[R]com.sun.n1.sps.model.folder.FolderID


fdb.f.mod

Modifies a folder

result

com.sun.n1.sps.model.folder.Folder

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe folder ID[R]com.sun.n1.sps.model.folder.FolderID
descThe folder description[O]java.lang.String


fdb.f.mp

Modify permissions of a folder

result

com.sun.n1.sps.model.folder.Folder

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe folder ID[R]com.sun.n1.sps.model.folder.FolderID
groupIDThe group ID[R]com.sun.n1.sps.model.user.GroupID
writeWhether the group has write permission on the folder. Default is false. If set to true, checkin-current and autorun permissions are also set to true.[O]java.lang.Boolean
checkin-currentWhether the group has checkin-current permission on the folder. Default is the value of the write argument. If unspecified while updating a group's permissions, value reverts to default. [O]java.lang.Boolean
autorunWhether the group has autorun permission on the folder. Default value equals write permission value. If unspecified while updating a group's permissions, value reverts to default. [O]java.lang.Boolean
executeThe hostSet ID for which the execute permission is to be applied. An empty default value will remove the execute permission on any hostsets. To set this permission for all hostsets, clients use the "allhosts" sentinel value.[O]java.lang.String
delete-historyThe hostSet ID for which the delete history permission is to be applied. An empty default value will remove the execute permission on any hostsets. To set this permission for all hostsets, clients use the "allhosts" sentinel value.[O]java.lang.String


fdb.f.mv

Move and/or rename a folder

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the folder to move[R]com.sun.n1.sps.model.folder.FolderID
fullnameThe new full name (path + name) of the folder[R]java.lang.String


hdb.a.add

Adds a new application instance

result

com.sun.n1.sps.model.host.UIAppInstanceUpdate

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
hIDThe ID of the host to contain the new instance[R]com.sun.n1.sps.model.host.HostID
typeThe application type (RA|LD)[R]com.sun.n1.sps.model.host.AppType
pIDThe parent application ID[R]com.sun.n1.sps.model.host.AppInstanceID
ipThe application IP address (x.y.z.w)[R]java.lang.String
portThe application port (not required for ssh)[O]java.lang.Integer
connThe connection type (raw|ssh|ssl)[R]com.sun.n1.sps.model.host.ConnectionType
paramThe parameters[O]java.lang.String


hdb.a.clear

Clears the resource cache of an application instance

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe application instance ID[R]com.sun.n1.sps.model.host.AppInstanceID


hdb.a.del

Deletes an application instance

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe application instance ID[R]com.sun.n1.sps.model.host.AppInstanceID


hdb.a.la

Lists all application instances

result

com.sun.n1.sps.model.host.AppInstance[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


hdb.a.lo

Retrieves an application instance

result

com.sun.n1.sps.model.host.AppInstance

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe application instance ID[R]com.sun.n1.sps.model.host.AppInstanceID


hdb.a.mod

Modifies an existing application instance; omitted arguments preserve current values

result

com.sun.n1.sps.model.host.UIAppInstanceUpdate

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe application instance ID[R]com.sun.n1.sps.model.host.AppInstanceID
pIDThe new parent application ID[O]com.sun.n1.sps.model.host.AppInstanceID
ipThe new application IP address (x.y.z.w)[O]java.lang.String
portThe new application port[O]java.lang.Integer
connThe new connection type (raw|ssh|ssl)[O]com.sun.n1.sps.model.host.ConnectionType
paramThe new parameters[O]java.lang.String


hdb.h.add

Adds a new host

result

com.sun.n1.sps.model.host.Host

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nameThe host name[R]java.lang.String
descThe host description[O]java.lang.String
tIDThe ID of the host type[R]com.sun.n1.sps.model.host.HostTypeID
attrThe host attributes; required if the host type requires them[O]java.util.Hashtable
hideWhether the host is hidden, default false[O]java.lang.Boolean
pIDThe ID of the parent host if virtual, or empty if physical[O]com.sun.n1.sps.model.host.HostID


hdb.h.del

Deletes a host

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host ID[R]com.sun.n1.sps.model.host.HostID


hdb.h.la

Lists all hosts

result

com.sun.n1.sps.model.host.Host[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
shWhether hidden hosts are shown, default false[O]java.lang.Boolean


hdb.h.lo

Retrieves a host

result

com.sun.n1.sps.model.host.Host

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host ID[R]com.sun.n1.sps.model.host.HostID


hdb.h.lq

Queries for matching hosts

result

com.sun.n1.sps.model.host.Host[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
queryThe query criteria[O]com.sun.n1.sps.model.host.AttributeCriteriaList
filtThe app instance types[O]com.sun.n1.sps.model.host.AppTypeCriteria
physA filter to restrict to physical or virtual hosts[O]com.sun.n1.sps.model.host.PhysicalCriteria
shWhether hidden hosts are shown, default false[O]java.lang.Boolean


hdb.h.mod

Modifies an existing host; omitted arguments preserve current values

result

com.sun.n1.sps.model.host.Host

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host ID[R]com.sun.n1.sps.model.host.HostID
nameThe host name[O]java.lang.String
descThe host description[O]java.lang.String
tIDThe ID of the host type[O]com.sun.n1.sps.model.host.HostTypeID
attrThe host attributes[O]java.util.Hashtable
hideWhether the host is hidden[O]java.lang.Boolean
pIDThe ID of the parent host if virtual, or "" if physical[O]com.sun.n1.sps.model.host.HostID


hdb.hr.add

Adds a new host search

result

com.sun.n1.sps.model.host.HostSearch

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nameThe host search name[R]java.lang.String
descThe host search description[O]java.lang.String
qThe dynamic query; must be specified if filt and phys are not[O/R]com.sun.n1.sps.model.host.AttributeCriteriaList
filtA filter to restrict the search to certain types of hosts; must be specified if q and phys are not[O/R]com.sun.n1.sps.model.host.AppTypeCriteria
physA filter to restrict to physical or virtual hosts; must be specified if q and filt are not[O/R]com.sun.n1.sps.model.host.PhysicalCriteria
hideWhether the host search is hidden, default false[O]java.lang.Boolean


hdb.hr.del

Deletes a host search

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host search ID[R]com.sun.n1.sps.model.host.HostSearchID


hdb.hr.la

Lists all host searches

result

com.sun.n1.sps.model.host.HostSearch[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
shWhether hidden searches are shown, default false[O]java.lang.Boolean


hdb.hr.le

Lists all hosts that the host search contains

result

com.sun.n1.sps.model.host.Host[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host search ID[R]com.sun.n1.sps.model.host.HostSearchID
shWhether hidden searches are shown, default false[O]java.lang.Boolean


hdb.hr.lo

Retrieves a host search

result

com.sun.n1.sps.model.host.HostSearch

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host search ID[R]com.sun.n1.sps.model.host.HostSearchID


hdb.hr.mod

Modifies an existing host search; omitted arguments preserve current values

result

com.sun.n1.sps.model.host.HostSearch

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host search ID[R]com.sun.n1.sps.model.host.HostSearchID
nameThe host search name[O]java.lang.String
descThe host search description[O]java.lang.String
qThe dynamic query[O]com.sun.n1.sps.model.host.AttributeCriteriaList
filtThe dynamic query[O]com.sun.n1.sps.model.host.AppTypeCriteria
physA filter to restrict to physical or virtual hosts[O]com.sun.n1.sps.model.host.PhysicalCriteria
hideWhether the host search is hidden[O]java.lang.Boolean


hdb.hs.add

Adds a new host set

result

com.sun.n1.sps.model.host.HostSet

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nameThe host set name[R]java.lang.String
descThe host set description[O]java.lang.String
hIDsThe IDs of the static member hosts[O]com.sun.n1.sps.model.host.HostIDSet
sIDsThe IDs of the host subsets[O]com.sun.n1.sps.model.host.HostSetIDSet
rIDsThe IDs of the host searches[O]com.sun.n1.sps.model.host.HostSearchIDSet
hideWhether the host set is hidden, default false[O]java.lang.Boolean


hdb.hs.del

Deletes a host set

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host set ID[R]com.sun.n1.sps.model.host.HostSetID


hdb.hs.la

Lists all host sets

result

com.sun.n1.sps.model.host.HostSet[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
shWhether hidden sets are shown, default false[O]java.lang.Boolean


hdb.hs.le

Lists all hosts that the host set contains

result

com.sun.n1.sps.model.host.Host[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host set ID[R]com.sun.n1.sps.model.host.HostSetID
shWhether hidden sets are shown, default false[O]java.lang.Boolean


hdb.hs.lo

Retrieves a host set

result

com.sun.n1.sps.model.host.HostSet

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host set ID[R]com.sun.n1.sps.model.host.HostSetID


hdb.hs.mod

Modifies an existing host set; omitted arguments preserve current values

result

com.sun.n1.sps.model.host.HostSet

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host set ID[R]com.sun.n1.sps.model.host.HostSetID
nameThe host set name[O]java.lang.String
descThe host set description[O]java.lang.String
hIDsThe IDs of the static member hosts[O]com.sun.n1.sps.model.host.HostIDSet
sIDsThe IDs of the host subsets[O]com.sun.n1.sps.model.host.HostSetIDSet
rIDsThe IDs of the host searches[O]com.sun.n1.sps.model.host.HostSearchIDSet
hideWhether the host set is hidden[O]java.lang.Boolean


hdb.ht.add

Adds a new host type

result

com.sun.n1.sps.model.host.HostType

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nameThe host type name[R]java.lang.String
descThe host type description[O]java.lang.String
attrThe host type attributes[R]com.sun.n1.sps.model.host.HostTypeVarList
hideWhether the host type is hidden, default false[O]java.lang.Boolean


hdb.ht.del

Deletes a host type

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host type ID[R]com.sun.n1.sps.model.host.HostTypeID


hdb.ht.la

Lists all host types

result

com.sun.n1.sps.model.host.HostType[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
shWhether hidden host types are shown, default false[O]java.lang.Boolean


hdb.ht.lo

Retrieves a host type

result

com.sun.n1.sps.model.host.HostType

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host type ID[R]com.sun.n1.sps.model.host.HostTypeID


hdb.ht.mod

Modifies an existing host type; omitted arguments preserve current values

result

com.sun.n1.sps.model.host.HostType

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe host type ID[R]com.sun.n1.sps.model.host.HostTypeID
nameThe host type name[O]java.lang.String
descThe host type description[O]java.lang.String
attrThe host type attributes[O]com.sun.n1.sps.model.host.HostTypeVarList
hideWhether the host type is hidden[O]java.lang.Boolean


net.gencfg

Generate the Transport Config file for an AppInstance
See notes for OutputStream usage.

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
appIDThe AppInstanceID of the AppInstance for which the Transport config needs to be generated[R]com.sun.n1.sps.model.host.AppInstanceID


net.ping

Check connectivity to a Remote Agent or Distributor
See notes for OutputStream usage.

result

com.sun.n1.sps.model.util.PingResult

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
dThe Address of the Remote Agent or Distributor to ping in the format [:port][R]com.sun.n1.sps.model.util.RoxAddress


net.traceroute

Find the route to a Remote Agent or Distributor
See notes for OutputStream usage.

result

com.sun.n1.sps.model.util.UITraceResult

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
dThe Address of the Remote Agent or Distributor to find the route to in the format [:port][R]com.sun.n1.sps.model.util.RoxAddress


node.au.la

Lists the status of completed and running auto-upgrade tasks

result

com.sun.n1.sps.model.host.UpgradeTaskSummary[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


node.au.lo

Lists the detailed or summary status of an auto-upgrade operation, given an Upgrade Task ID. Default is detailed status

result

com.sun.n1.sps.model.host.UpgradeTaskStatus

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the upgrade task to view[R]com.sun.n1.sps.model.host.UpgradeTaskID


node.au.run

Starts auto-upgrade on the specified hosts, hostsets, application instances, or , if the -all true option is used, the entire network. Returns a Task ID representing this auto-upgrade operation

result

com.sun.n1.sps.model.host.UpgradeTaskID

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
hIDThe HostID array. The application instances on these hosts are upgraded. Required if the -all OR -hsID and -ID options are not used[O/R]com.sun.n1.sps.model.host.HostID[]
hsIDThe HostSetID array. The application instances on the hosts in these host sets are upgraded. Required if the -all OR -hID and -ID options are not used[O/R]com.sun.n1.sps.model.host.HostSetID[]
IDThe AppInstanceID array. The application instances are upgraded. Required if the -all OR -hID and -hsID options are not used[O/R]com.sun.n1.sps.model.host.AppInstanceID[]
allTrue if the entire network needs to be upgraded. Required if the -hID, -hsID, and -ID options are not used[O/R]java.lang.Boolean


node.au.stop

Stops auto-upgrade on all nodes belonging to the specified Upgrade Task ID

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the upgrade task to stop[R]com.sun.n1.sps.model.host.UpgradeTaskID


pdb.p.ci

Checks in a new version of a plan from XML

result

com.sun.n1.sps.model.plan.ExecutionPlan

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
pathThe plan in XML format[R]java.lang.string
Provides a name of a file to be used for input.
majorWhether to checkin as a new major version[O]java.lang.Boolean
hidePrevWhether to hide the previous version, default true[O]java.lang.Boolean
parentsWhether to create missing parent folders[O]java.lang.Boolean


pdb.p.co

Outputs a plan in XML format
See notes for OutputStream usage.

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
planThe execution plan[R]com.sun.n1.sps.model.plan.ExecutionPlan


pdb.p.del

Deletes an execution plan

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the plan to delete[R]com.sun.n1.sps.model.plan.ExecutionPlanID


pdb.p.genplan

Generates and outputs a plan as XML
See notes for OutputStream usage.

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
componentIDThe ID of the component to generate the plan from[R]com.sun.n1.sps.model.component.ComponentID
pnThe names of the procedures to put in the plan[R]java.lang.String[]
ptThe types of the procedures to put in the plan[R]com.sun.n1.sps.model.component.NamedBlockType[]


pdb.p.la

Lists all plans

result

com.sun.n1.sps.model.plan.ExecutionPlan[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
shWhether hidden plans are shown, default false[O]java.lang.Boolean
catCategory filter to apply, default "all"[O]com.sun.n1.sps.model.category.CategoryID
folderIDParent folder ID. Default is root folder.[O]com.sun.n1.sps.model.folder.FolderID
flatViewShould results be listed in flat view (recursively from parent). Default is true.[O]java.lang.Boolean


pdb.p.lo

Views an execution plan

result

com.sun.n1.sps.model.plan.ExecutionPlan

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the plan to view[R]com.sun.n1.sps.model.plan.ExecutionPlanID


pdb.p.lv

Lists all versions of a particular execution plan

result

com.sun.n1.sps.model.plan.ExecutionPlan[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDAn execution plan in the desired version tree[R]com.sun.n1.sps.model.plan.ExecutionPlanID


pdb.p.mv

Move and/or rename a plan

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the plan to move/rename[R]com.sun.n1.sps.model.plan.ExecutionPlanID
fullnameThe new full name (path + name) of the plan[R]java.lang.String


pdb.p.sc

Associates a plan with a set of categories

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the plan to affect[R]com.sun.n1.sps.model.plan.ExecutionPlanID
catIDsThe IDs of the Categories to associate with this plan[R]com.sun.n1.sps.model.category.CategoryIDSet
allWhether to change all versions of the plan, default false[O]java.lang.Boolean


pdb.p.sh

Hide or un-hide an execution plan

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the plan to affect[R]com.sun.n1.sps.model.plan.ExecutionPlanID
hideWhether the plan is set to hidden[R]java.lang.Boolean
allWhether to change all versions of the plan, default false[O]java.lang.Boolean


pdb.vs.add

Add a new plan variable settings object

result

com.sun.n1.sps.model.plan.PlanVariableSettings

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
PIDThe ID of the execution plan[R]com.sun.n1.sps.model.plan.ExecutionPlanID
nameThe plan variable settings name[R]java.lang.String
tarIndividual hosts or host sets on which to run the plan and each of its subplans, ordered according to subplan prompts[R]undocumented class: NULL? com.raplix.rolloutexpress.ui.plandb.converters.PlanVariableSettingsTarget
compThe component versions to install[O/R]java.lang.String[][]
cvsSelection of variable settings to use with each selected component version. Use variable settings name, or "+" for default[O/R]java.lang.String[][]
pdpTrue if detailed preflight should be run; default false[O]java.lang.Boolean
hrlLimit number of hosts running at the same time; default set by server config file[O]java.lang.Integer
ptoThe maximum plan execution time[R]com.sun.n1.sps.model.util.TimeInterval
ntoThe maximum native call execution time[R]com.sun.n1.sps.model.util.TimeInterval
fPlan variables can be passed with a file or stdin; default stdin[O/R]java.lang.string
Provides a name of a file to be used for input.


pdb.vs.del

Delete an existing variable settings object

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
vsThe ID of the plan variable settings to delete[R]com.sun.n1.sps.model.plan.PlanVariableSettingsID


pdb.vs.la

List all variable settings associated with a particular plan

result

com.sun.n1.sps.model.plan.PlanVariableSettings[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
PIDThe plan[R]com.sun.n1.sps.model.plan.ExecutionPlanID


pdb.vs.lo

List details of a particular variable settings object

result

com.sun.n1.sps.model.plan.PlanVariableSettings

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
vsThe plan variable settings to view[R]com.sun.n1.sps.model.plan.PlanVariableSettings


pdb.vs.mod

Modify an existing plan variable settings object

result

com.sun.n1.sps.model.plan.PlanVariableSettings

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
pvsSelection of variable settings to use with each selected component version. Use variable settings name, or "+" for default[R]com.sun.n1.sps.model.plan.PlanVariableSettings
nameThe new name[O]java.lang.String
tarIndividual hosts or host sets on which to run the plan and each of its subplans, ordered according to subplan prompts[O]undocumented class: NULL? com.raplix.rolloutexpress.ui.plandb.converters.PlanVariableSettingsTarget
compThe component versions to install[O]java.lang.String[][]
cvsSelection of variable settings to use with each selected component version. Use variable settings name, or "+" for default[O]java.lang.String[][]
pdpTrue if detailed preflight should be run; default false[O]java.lang.Boolean
hrlLimit number of hosts running at the same time; default set by server config file[O]java.lang.Integer
ptoThe maximum plan execution time[O]com.sun.n1.sps.model.util.TimeInterval
ntoThe maximum native call execution time[O]com.sun.n1.sps.model.util.TimeInterval
fPlan variables can be passed with a file or stdin; default stdin[O/R]java.lang.string
Provides a name of a file to be used for input.


pe.h.prep

Prepares a set of hosts

result

com.sun.n1.sps.model.executor.TaskID

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
tarThe IDs of the hosts to prepare[R]com.sun.n1.sps.model.host.HostIDSet


pe.p.del

Deletes the history of a completed plan run

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the plan run to delete[R]com.sun.n1.sps.model.executor.TaskID


pe.p.en

Display the output of an execNative/execJava step

result

com.sun.n1.sps.model.executor.ExecNativeOutput[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the ExecNative step. Can be the Step Id or a label:taskId:hostId combination[O/R]com.sun.n1.sps.model.executor.StepDescriptionContainer
IDsThe IDs of the ExecNative step. Can be the Step Id or a label:taskId:hostId combination[O/R]com.sun.n1.sps.model.executor.StepDescriptionContainer[]
outputDeprecated. Both stdout and stderr are shown[O]com.sun.n1.sps.model.executor.OutputType


pe.p.la

Lists running and completed plans. By default, all running plans are displayed. The number of plans displayed is controlled by the max argument.

result

com.sun.n1.sps.model.executor.RunningPlanBean[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
maxThe maximum number of plans to list. If not specified, defaults to five. This argument is ignored if there are more running plans than the supplied max value. If the number of running plans is less than max, completed plans, if any, are added to the list until max is reached.[O]java.lang.Integer
planRestrict results to plans with this name[O]java.lang.String


pe.p.lo

Views the progress of a running or completed plan
See notes for OutputStream usage.

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the plan run the view[R]com.sun.n1.sps.model.executor.TaskID
oldWhether to show old messages; default false[O]java.lang.Boolean
newWhether to poll for new messages; default true[O]java.lang.Boolean


pe.p.lp

Lists the subplans and targets associated with a plan; the named plan is listed first

result

com.sun.n1.sps.model.executor.SubPlanPrompt[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the execution plan[R]com.sun.n1.sps.model.plan.ExecutionPlanID


pe.p.run

Runs a plan
See notes for OutputStream usage.

result

com.sun.n1.sps.model.executor.TaskID

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
PIDThe ID of the execution plan to run[R]com.sun.n1.sps.model.plan.ExecutionPlanID
tarIndividual hosts or host sets on which to run the plan and each of its subplans, ordered according to subplan prompts[R]com.sun.n1.sps.model.host.HostID[][]
compSelection of component versions to install as part of plan and subplans. Ordered according to component selectors within subplan prompts. Use version number, or "+" for default, "#" for recommended, and "-" for latest[O/R]java.lang.String[][]
vsSelection of variable settings to use with each selected component version. Use variable settings name, or "+" for default[O/R]java.lang.String[][]
poTrue if only preflight should be run[O]java.lang.Boolean
pdpTrue if detailed preflight should be run; default false[O]java.lang.Boolean
hrlLimit number of hosts running at the same time; default set by server config file[O]java.lang.Integer
ptoThe maximum plan execution time[R]com.sun.n1.sps.model.util.TimeInterval
ntoThe maximum native call execution time[R]com.sun.n1.sps.model.util.TimeInterval
fPlan variables can be passed with a file or stdin; default stdin[O/R]java.lang.string
Provides a name of a file to be used for input.


pe.p.stop

Stops a currently running plan

result

java.lang.Boolean

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the plan to stop running[R]com.sun.n1.sps.model.executor.TaskID


pe.p.vsrun

The proper message could not be displayed.
See notes for OutputStream usage.

result

com.sun.n1.sps.model.executor.TaskID

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
PIDThe proper message could not be displayed.[R]com.sun.n1.sps.model.plan.ExecutionPlanID
pvsThe proper message could not be displayed.[R]com.sun.n1.sps.model.plan.PlanVariableSettingsID


pe.pi.lo

Lists the parameters used to run a plan

result

com.sun.n1.sps.model.executor.TaskInfo

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the plan run[R]com.sun.n1.sps.model.executor.TaskID


plg.p.add

Add/Import a plug-in from the filesystem

result

com.sun.n1.sps.model.plugin.PluginID

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
pathThe plug-in in JAR format[R]java.lang.string
Provides a name of a file to be used for input.


plg.p.del

Delete a plug-in

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe plug-in ID[R]com.sun.n1.sps.model.plugin.PluginID


plg.p.la

Lists all plug-ins

result

com.sun.n1.sps.model.plugin.Plugin[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


plg.p.lo

Displays details of a plug-in

result

com.sun.n1.sps.model.plugin.Plugin

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the plug-in to view[R]com.sun.n1.sps.model.plugin.PluginID


plg.p.mod

Modifies the "order" attribute of a plug-in

result

com.sun.n1.sps.model.plugin.Plugin

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe ID of the plug-in to modify[R]com.sun.n1.sps.model.plugin.PluginID
orderThe plug-in order[O]java.lang.String


rsrc.ci

Checks a file or directory into the server

result

com.sun.n1.sps.model.component.CompCheckInID

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
srcThe file or directory to be checked in as a component[R]java.lang.String
dstThe name to be assigned to the component[R]java.lang.String
typeThe type of the component[R]java.lang.String
platformThe platform of the component[O]com.sun.n1.sps.model.host.HostSetID
descA description of the the component[O]java.lang.String
majorWhether file version increment should be major or minor[O]java.lang.Boolean
configWhether the file is a config file[O]java.lang.Boolean
hideprevWhether to hide the previous version, default true[O]java.lang.Boolean
includeOwnersWhether to include owner information, default true[O]java.lang.Boolean
includeGroupsWhether to include group information, default true[O]java.lang.Boolean
addToWhether the files being checked in should be added to the existing files to create a new version, instead of completely replacing the existing files to create a new version[O]java.lang.Boolean
hostIDThe ID of the local host[O]com.sun.n1.sps.model.host.HostID
redunWhether redundancy checking should apply, default true[O]java.lang.Boolean
pickerNameThe name of the component picker to use (defaults to null for the default picker)[O]java.lang.String
extraOptsNames and values for any additional options for the type. config, includeOwners, includeGroups, addTo, and redun cannot be specified using the extraOpts argument. Use the command line equivalent options, which are listed above, to specify these values.[O]java.util.Hashtable


rsrc.cib

Checks the components listed in a batchfile into the server.

result

java.lang.String

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
batchfileThe batchfile listing the components to be checked in; each line consists of the following fields separated by the | character: [required] component location [required] component name [required] component type [optional] platform [optional] component description [optional] config file [optional] major version [optional] hide previous version [optional] include owner attributes [optional] include group attributes [optional] add files to component instead of replacing [optional] ID of the local host [optional] redundancy checking [optional] the name of the picker to use (empty for default picker) [optional] extra options supported by the picker, excluding config file, include owner attributes, include group attributes, add files, and redundancy checking [R]java.lang.String
haltonerrorWhen true, first error will halt batch execution Defaults to true.[O]java.lang.Boolean
pwdrelativeWhen true, relative paths are relative to the user directory; otherwise they are relative to the batchfile location. Defaults to false.[O]java.lang.Boolean


rsrc.co

Downloads a component to the local host

result

java.lang.String

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
srcThe name of the component to transfer[R]java.lang.String
vThe version of the component[R]java.lang.String
dstThe location where the component should be placed[R]java.lang.String


rule.add

Adds a new rule

result

com.sun.n1.sps.model.rule.RuleMetaData

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nThe rule name[R]java.lang.String
dThe rule description[O]java.lang.String
tfThe rule event type filter[O]com.sun.n1.sps.model.rule.CriteriaShorthand
mfThe rule message filter[O]java.lang.String
hafThe rule hosts filter[O]com.sun.n1.sps.model.host.HostID[]
hsfThe rule host set filter[O]com.sun.n1.sps.model.host.HostSetID
sfThe rule severity filter[O]java.lang.String
eaThe email address to notify[R]java.lang.String


rule.del

Deletes a rule

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe rule ID[R]com.sun.n1.sps.model.rule.RuleID


rule.la

Lists all rules

result

com.sun.n1.sps.model.rule.RuleMetaData[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


rule.lo

Retrieves a rule by ID

result

com.sun.n1.sps.model.rule.RuleMetaData

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe rule ID[R]com.sun.n1.sps.model.rule.RuleID


rule.mod

Modifies an existing rule; omitted arguments preserve current values

result

com.sun.n1.sps.model.rule.RuleMetaData

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe rule ID[R]com.sun.n1.sps.model.rule.RuleID
nThe rule name[O]java.lang.String
dThe rule description[O]java.lang.String
tfThe rule event type filter[O]com.sun.n1.sps.model.rule.CriteriaShorthand
mfThe rule message filter[O]java.lang.String
hafThe rule hosts filter[O]com.sun.n1.sps.model.host.HostID[]
hsfThe rule host set filter[O]com.sun.n1.sps.model.host.HostSetID
sfThe rule severity filter[O]java.lang.String
eaThe email address to notify[O]java.lang.String


udb.g.add

Adds a new group

result

com.sun.n1.sps.model.user.Group

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
hostWriteShould the group have write permission on hosts. Default is false.[O]java.lang.Boolean
notRuleWriteShould the group have write permission on notification rules. Default is false.[O]java.lang.Boolean
adminWriteShould the group have write permission on "admin: users and groups". Default is false.[O]java.lang.Boolean
diffWriteShould the group have write permission on comparisons. Default is false.[O]java.lang.Boolean
diffRunThe hostset ID for which the group has execute permission for comparisons. Default will not set execute permissions on any hostsets.[O]java.lang.String
nThe new group name[R]java.lang.String
dThe new group description[O]java.lang.String
uaThe new group users[O]com.sun.n1.sps.model.user.User[]
pgaThe new group parent groups[O]com.sun.n1.sps.model.user.Group[]
cgaThe new group child groups[O]com.sun.n1.sps.model.user.Group[]


udb.g.del

Deletes a group

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe group ID[R]com.sun.n1.sps.model.user.GroupID


udb.g.la

Lists all groups

result

com.sun.n1.sps.model.user.Group[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


udb.g.lo

Retrieves a group by ID

result

com.sun.n1.sps.model.user.Group

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe group ID[R]com.sun.n1.sps.model.user.GroupID


udb.g.lp

Lists the permissions granted to a group

result

com.sun.n1.sps.model.user.Permission[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe group ID[R]com.sun.n1.sps.model.user.GroupID


udb.g.lu

Lists the members of a group

result

com.sun.n1.sps.model.user.User[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe group ID[R]com.sun.n1.sps.model.user.GroupID


udb.g.mod

Modifies an existing group; omitted arguments preserve current values

result

com.sun.n1.sps.model.user.Group

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe group ID[R]com.sun.n1.sps.model.user.GroupID
hostWriteShould the group have write permission on hosts. Default will preserve current value.[O]java.lang.Boolean
notRuleWriteShould the group have write permission on notification rules. Default will preserve current value.[O]java.lang.Boolean
adminWriteShould the group have write permission on "admin: users and groups". Default will preserve current value.[O]java.lang.Boolean
diffWriteShould the group have write permission on comparisons. Default will preserve current value.[O]java.lang.Boolean
diffRunThe hostset ID for which the group has execute permission for comparisons. Default will preserve current value. An empty value will remove the execute permission on any hostsets. To set this permission for "all" hostsets, clients use the "allhosts" sentinel value.[O]java.lang.String
nThe new group name[O]java.lang.String
dThe new group description[O]java.lang.String
uaThe new group users[O]com.sun.n1.sps.model.user.User[]
pgaThe new group parent groups[O]com.sun.n1.sps.model.user.Group[]
cgaThe new group child groups[O]com.sun.n1.sps.model.user.Group[]


udb.l.la

List all login configurations

result

com.sun.n1.sps.model.user.LoginConfiguration[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


udb.login

Logs in a user

result

com.sun.n1.sps.model.user.SessionID

Arguments

TagDescriptionO/RClass
uThe user username[R]java.lang.String
pThe plaintext user password, required if the encoded password is not available or supplied[O/R]java.lang.String
epThe encoded user password, required if the plaintext password is not available or supplied[O/R]java.lang.String


udb.logout

Logs out a user

Arguments

TagDescriptionO/RClass
sThe session ID[O]com.sun.n1.sps.model.user.SessionID


udb.p.la

Lists all permissions

result

com.sun.n1.sps.model.user.Permission[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


udb.p.lo

Retrieves a permission by ID

result

com.sun.n1.sps.model.user.Permission

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe permission ID[R]com.sun.n1.sps.model.user.PermissionID


udb.sv.add

Adds a new session variable

result

com.sun.n1.sps.model.user.SessionVariable

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nameThe session variable name[R]java.lang.String
descThe session variable description[O]java.lang.String
valueThe session variable value for this user[R]java.lang.String
secureWhether or not the value should be displayed; true means no; default false[O]java.lang.Boolean


udb.sv.del

Deletes a session variable

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nameThe name of the session variable to delete[R]java.lang.String


udb.sv.fl

Clear all session variables available to this user

Arguments

TagDescriptionO/RClass
uThe username of the user whose variables should be cleared[R]java.lang.String
pThe plaintext password of the user, required if the encoded password for the user is not available or supplied[O/R]java.lang.String
epThe encoded password of the user, required if the plaintext password for the user is not available or supplied[O/R]java.lang.String


udb.sv.la

Lists all session variables

result

com.sun.n1.sps.model.user.SessionVariable[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


udb.sv.lo

Retrieves a session variable by name

result

com.sun.n1.sps.model.user.SessionVariable

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nameThe name of the session variable to show[R]java.lang.String


udb.sv.mod

Modifies an existing session variable; omitted arguments preserve current values

result

com.sun.n1.sps.model.user.SessionVariable

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nameThe name of the session variable to modify[R]java.lang.String
descThe session variable description[O]java.lang.String
valueThe session variable value for this user[O]java.lang.String
secureWhether or not the value should be displayed; true means no; default false[O]java.lang.Boolean


udb.sv.re

Re-encrypt all session variables available to this user

Arguments

TagDescriptionO/RClass
uThe username of the user whose variables should be re-encrypted[R]java.lang.String
pThe plaintext password of the user, required if the encoded password for the user is not available or supplied[O/R]java.lang.String
opThe old plaintext password used to encrypt these variables, required if the old encoded password used to encrypt these variables is not available or supplied [O/R]java.lang.String
epThe encoded password of the user, required if the plaintext password for the user is not available or supplied[O/R]java.lang.String
oepThe old encoded password used to encrypt these variables, required if the old plaintext password used to encrypt these variables is not available or supplied[O/R]java.lang.String


udb.u.add

Adds a new user

result

com.sun.n1.sps.model.user.User

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
nuThe new username[R]java.lang.String
hideWhether the user is set to hidden, default false[O]java.lang.Boolean
npThe new plaintext user password, cannot be used in conjunction with the new encoded user password option. [O]java.lang.String
nepThe new encoded user password, cannot be used in conjunction with the new plaintext user password option. [O]java.lang.String
ngThe new user groups[O]com.sun.n1.sps.model.user.Group[]
loginConfigLogin configuration to use for this user. Defaults to "internal" config.[O]java.lang.String


udb.u.cp

Changes the password of an existing user

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
unThe username of the user whose password should be changed[R]java.lang.String
opThe old plaintext password, required if the old encoded password is not available or supplied[O/R]java.lang.String
npThe new plaintext password, required if the new encoded password is not available or supplied[O/R]java.lang.String
oepThe old encoded password, required if the old plaintext password is not available or supplied[O/R]java.lang.String
nepThe new encoded password, required if the new plaintext password is not available or supplied[O/R]java.lang.String


udb.u.la

Lists all users

result

com.sun.n1.sps.model.user.User[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
shWhether hidden users are shown, default false[O]java.lang.Boolean


udb.u.lo

Retrieves a user by ID

result

com.sun.n1.sps.model.user.User

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe user ID[R]com.sun.n1.sps.model.user.UserID


udb.u.lp

Lists permissions granted to a user

result

com.sun.n1.sps.model.user.Permission[]

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe user ID[R]com.sun.n1.sps.model.user.UserID


udb.u.mod

Modifies an existing user; omitted arguments preserve current values

result

com.sun.n1.sps.model.user.User

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
IDThe user ID[R]com.sun.n1.sps.model.user.UserID
hideWhether the user is set to hidden, default to present state[O]java.lang.Boolean
activeWhether the user is active, default true[O]java.lang.Boolean
forceFlushIf set to true and the user's session variables would have otherwise been unrecoverable, this clears the session variables. If set to false and the user's session variables would have otherwise been unrecoverable, the session variables are left unchanged and the whole operation fails. Defaults to false.[O]java.lang.Boolean
npThe new plaintext user password, cannot be used in conjunction with the new encoded user password option. [O]java.lang.String
nepThe new encoded user password, cannot be used in conjunction with the new plaintext user password option. [O]java.lang.String
ngThe new user groups[O]com.sun.n1.sps.model.user.Group[]
loginConfigThe new login configuration for the user.[O]java.lang.String


udb.whoami

Returns the owner of the current session

result

com.sun.n1.sps.model.user.UserID

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID


util.msv

Returns the master server version

result

java.lang.String

util.reformat

Returns its argument

result

java.lang.Object

Arguments

TagDescriptionO/RClass
uThe user name for authentication; required if session is not available/supplied[O/R]java.lang.String
pThe plaintext user password for authentication; required if session/encoded password are not available/supplied[O/R]java.lang.String
epThe encoded user password for authentication; required if session/plaintext password are not available/supplied[O/R]java.lang.String
sThe session ID for authentication; required if username/plaintext password/encoded password are not supplied[O/R]com.sun.n1.sps.model.user.SessionID
selfThe argument and result[R]java.lang.Object


util.xfm

Applies a transform and returns the transformation result
See notes for OutputStream usage.

Arguments

TagDescriptionO/RClass
inThe input stream to be transformed[R]java.lang.string
Provides a name of a file to be used for input.
typeThe transform type[R]com.sun.n1.sps.model.util.TransformType
xfmThe transform stream[R]java.lang.string
Provides a name of a file to be used for input.


Index

CommandDescription
bdb.b.addCreates a new bundle template
bdb.b.delDeletes a bundle template
bdb.b.expExports a Bundle jar to the file system
bdb.b.impImports a Bundle jar from the file system
bdb.b.laLists a summary of bundle templates existing on the master server
bdb.b.loLists the details or summary of a bundle template, given a bundle template ID. Default is summary
bdb.b.modModifies an existing bundle template
cat.addAdds a new Category
cat.delDeletes a Category
cat.laLists all categories
cat.modModifies a Category; omitted arguments preserve current values
cdb.c.ciChecks in a new version of a component from XML
cdb.c.coOutputs a component in XML format
cdb.c.delDeletes a component
cdb.c.laLists all components
cdb.c.loViews a component
cdb.c.lvLists all builds of a particular component
cdb.c.modSaves a component with new resource versions
cdb.c.mvMove and/or rename a component
cdb.c.scAssociates a component with a set of categories
cdb.c.shHide or un-hide a component
cdb.cj.laLists check in jobs
cdb.cj.loShows the details/status of a remote check in
cdb.cj.stopStops a remote check in job
cdb.ctr.addAdds a new component type ref
cdb.ctr.delDeletes a component type ref
cdb.ctr.laLists all component type refs
cdb.ctr.loRetrieves a component type ref
cdb.ctr.modModifies an existing component type ref; omitted arguments preserve current values
cdb.ic.laLists the installed components
cdb.ic.lbcLists the hosts on which a particular component is installed
cdb.ic.lbhLists the components installed on a particular host
cdb.ic.ldoLists the components that the specified installed components are dependent on
cdb.ic.lodLists the components that are dependent on the specified installed components
cdb.ic.vs.loList details of a particular generated variable settings object
cdb.rsrc.ciChecks a file or directory into the server
cdb.rsrc.cibChecks the components listed in a batchfile into the server.
cdb.rsrc.coDownloads a component to the local host
cdb.rsrc.gdGenerate a resource descriptor
cdb.rsrc.rciRe-check in a component
cdb.rsrc.showoptsShows the check in options supported by a particular type
cdb.ssr.addAdds a new system service ref
cdb.ssr.delDeletes a system service ref
cdb.ssr.laLists all system service refs
cdb.ssr.loRetrieves a system service ref
cdb.ssr.modModifies an existing system service ref; omitted arguments preserve current values
cdb.vs.addAdd a new variable settings object
cdb.vs.delDelete an existing variable settings object
cdb.vs.impImport component variable settings from one component into another
cdb.vs.laList all variable settings associated with a particular component
cdb.vs.loList details of a particular variable settings object
cdb.vs.modModify an existing variable settings object
cfg.genGenerate configuration for an input.
cmp.dj.addAdds (starts) a new comparison
cmp.dj.delDeletes (stops) a running comparison
cmp.dj.laLists running and completed comparisons
cmp.dj.loRetrieves a running comparison to display its progress
cmp.ds.addAdds new comparison settings; some optional arguments may be required for some style/level/scope combinations
cmp.ds.delDeletes comparison settings
cmp.ds.laLists all comparison settings
cmp.ds.loRetrieves comparison settings
cmp.ds.modAdds new comparison settings by using existing ones as template; omitted arguments preserve current values when possible
cmp.ds.scAssociates a comparison settings with a set of categories
fdb.f.addAdds a new folder
fdb.f.coChanges the owner group of a folder
fdb.f.delDeletes a folder
fdb.f.laLists all folders
fdb.f.loRetrieves a folder
fdb.f.modModifies a folder
fdb.f.mpModify permissions of a folder
fdb.f.mvMove and/or rename a folder
hdb.a.addAdds a new application instance
hdb.a.clearClears the resource cache of an application instance
hdb.a.delDeletes an application instance
hdb.a.laLists all application instances
hdb.a.loRetrieves an application instance
hdb.a.modModifies an existing application instance; omitted arguments preserve current values
hdb.h.addAdds a new host
hdb.h.delDeletes a host
hdb.h.laLists all hosts
hdb.h.loRetrieves a host
hdb.h.lqQueries for matching hosts
hdb.h.modModifies an existing host; omitted arguments preserve current values
hdb.hr.addAdds a new host search
hdb.hr.delDeletes a host search
hdb.hr.laLists all host searches
hdb.hr.leLists all hosts that the host search contains
hdb.hr.loRetrieves a host search
hdb.hr.modModifies an existing host search; omitted arguments preserve current values
hdb.hs.addAdds a new host set
hdb.hs.delDeletes a host set
hdb.hs.laLists all host sets
hdb.hs.leLists all hosts that the host set contains
hdb.hs.loRetrieves a host set
hdb.hs.modModifies an existing host set; omitted arguments preserve current values
hdb.ht.addAdds a new host type
hdb.ht.delDeletes a host type
hdb.ht.laLists all host types
hdb.ht.loRetrieves a host type
hdb.ht.modModifies an existing host type; omitted arguments preserve current values
net.gencfgGenerate the Transport Config file for an AppInstance
net.pingCheck connectivity to a Remote Agent or Distributor
net.tracerouteFind the route to a Remote Agent or Distributor
node.au.laLists the status of completed and running auto-upgrade tasks
node.au.loLists the detailed or summary status of an auto-upgrade operation, given an Upgrade Task ID. Default is detailed status
node.au.runStarts auto-upgrade on the specified hosts, hostsets, application instances, or , if the -all true option is used, the entire network. Returns a Task ID representing this auto-upgrade operation
node.au.stopStops auto-upgrade on all nodes belonging to the specified Upgrade Task ID
pdb.p.ciChecks in a new version of a plan from XML
pdb.p.coOutputs a plan in XML format
pdb.p.delDeletes an execution plan
pdb.p.genplanGenerates and outputs a plan as XML
pdb.p.laLists all plans
pdb.p.loViews an execution plan
pdb.p.lvLists all versions of a particular execution plan
pdb.p.mvMove and/or rename a plan
pdb.p.scAssociates a plan with a set of categories
pdb.p.shHide or un-hide an execution plan
pdb.vs.addAdd a new plan variable settings object
pdb.vs.delDelete an existing variable settings object
pdb.vs.laList all variable settings associated with a particular plan
pdb.vs.loList details of a particular variable settings object
pdb.vs.modModify an existing plan variable settings object
pe.h.prepPrepares a set of hosts
pe.p.delDeletes the history of a completed plan run
pe.p.enDisplay the output of an execNative/execJava step
pe.p.laLists running and completed plans. By default, all running plans are displayed. The number of plans displayed is controlled by the max argument.
pe.p.loViews the progress of a running or completed plan
pe.p.lpLists the subplans and targets associated with a plan; the named plan is listed first
pe.p.runRuns a plan
pe.p.stopStops a currently running plan
pe.p.vsrunThe proper message could not be displayed.
pe.pi.loLists the parameters used to run a plan
plg.p.addAdd/Import a plug-in from the filesystem
plg.p.delDelete a plug-in
plg.p.laLists all plug-ins
plg.p.loDisplays details of a plug-in
plg.p.modModifies the "order" attribute of a plug-in
rsrc.ciChecks a file or directory into the server
rsrc.cibChecks the components listed in a batchfile into the server.
rsrc.coDownloads a component to the local host
rule.addAdds a new rule
rule.delDeletes a rule
rule.laLists all rules
rule.loRetrieves a rule by ID
rule.modModifies an existing rule; omitted arguments preserve current values
udb.g.addAdds a new group
udb.g.delDeletes a group
udb.g.laLists all groups
udb.g.loRetrieves a group by ID
udb.g.lpLists the permissions granted to a group
udb.g.luLists the members of a group
udb.g.modModifies an existing group; omitted arguments preserve current values
udb.l.laList all login configurations
udb.loginLogs in a user
udb.logoutLogs out a user
udb.p.laLists all permissions
udb.p.loRetrieves a permission by ID
udb.sv.addAdds a new session variable
udb.sv.delDeletes a session variable
udb.sv.flClear all session variables available to this user
udb.sv.laLists all session variables
udb.sv.loRetrieves a session variable by name
udb.sv.modModifies an existing session variable; omitted arguments preserve current values
udb.sv.reRe-encrypt all session variables available to this user
udb.u.addAdds a new user
udb.u.cpChanges the password of an existing user
udb.u.laLists all users
udb.u.loRetrieves a user by ID
udb.u.lpLists permissions granted to a user
udb.u.modModifies an existing user; omitted arguments preserve current values
udb.whoamiReturns the owner of the current session
util.msvReturns the master server version
util.reformatReturns its argument
util.xfmApplies a transform and returns the transformation result