|
NAMEZenoss::Router::Process - A JSON/ExtDirect interface to operations on processesSYNOPSISuse Zenoss; my $api = Zenoss->connect( { username => 'zenoss username', password => 'zenoss password', url => 'http://zenossinstance:8080', } ); # Replace SOMEMETHOD with one of the available methods provided by this module my $response = $api->process_SOMEMETHOD( { parameter1 => 'value', parameter2 => 'value', } ); DESCRIPTIONThis module is NOT instantiated directly. To call methods from this module create an instance of Zenoss. This document serves as a resource of available Zenoss API calls to Zenoss.METHODSThe following is a list of available methods available for interaction with the Zenoss API. Please take note of the argument requirements, defaults and return content.The documentation for this module was mostly taken from the Zenoss JSON API docs. Keep in mind that their (Zenoss Monitoring System) programming is based around python, so descriptions such as dictionaries will be represented as hashes in Perl. $obj->process_getTree()Returns the tree structure of an organizer hierarchy where the root node is the organizer identified by the id parameter.
$obj->process_moveProcess()Move a process or organizer from one organizer to another.
$obj->process_getInfo()Get the properties of a process.
$obj->process_setInfo()Set attributes on a process. This method accepts any keyword argument for the property that you wish to set. The only required property is "uid".
$obj->process_getInstances()Get a list of instances for a process UID.
$obj->process_getSequence()Get the current processes sequence.
$obj->process_setSequence()Set the current processes sequence.
SEE ALSO
AUTHORPatrick Baker <patricksbaker@gmail.com>COPYRIGHT AND LICENSECopyright (C) 2010 by Patrick Baker <patricksbaker@gmail.com>This module is free software: you can redistribute it and/or modify it under the terms of the Artistic License 2.0. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. You can obtain the Artistic License 2.0 by either viewing the LICENSE file provided with this distribution or by navigating to <http://opensource.org/licenses/artistic-license-2.0.php>.
Visit the GSP FreeBSD Man Page Interface. |