object proxy.update(object/array proxies)
This method allows to update existing proxies.
This method is only available to Super admin user type. Permissions to call the method can be revoked in user role settings. See User roles for more information.
(object/array)
Proxy properties to be updated.
The proxyid
property must be defined for each proxy, all other properties are optional. Only the passed properties will be updated, all others will remain unchanged.
Additionally to the standard proxy properties, the method accepts the following parameters.
Parameter | Type | Description |
---|---|---|
hosts | array | Hosts to be monitored by the proxy. If a host is already monitored by a different proxy, it will be reassigned to the current proxy. The hosts must have the hostid property defined. |
interface | object | Host interface to replace the existing interface for the passive proxy. Parameter behavior: - supported if status of Proxy object is set to "passive proxy" |
(object)
Returns an object containing the IDs of the updated proxies under the proxyids
property.
Update the proxy to monitor the two given hosts.
{
"jsonrpc": "2.0",
"method": "proxy.update",
"params": {
"proxyid": "10293",
"hosts": [
{
"hostid": "10294"
},
{
"hostid": "10295"
}
]
},
"id": 1
}
Response:
Change the proxy to an active proxy and rename it to "Active proxy".
{
"jsonrpc": "2.0",
"method": "proxy.update",
"params": {
"proxyid": "10293",
"host": "Active proxy",
"status": "5"
},
"id": 1
}
Response:
CProxy::update() in ui/include/classes/api/services/CProxy.php.