object correlation.update(object/array correlations)
Ez a módszer lehetővé teszi a meglévő összefüggések frissítését.
Ez a módszer csak a Super admin felhasználótípus számára érhető el. A metódus meghívására vonatkozó engedélyeket a felhasználói szerepkör beállításaiban lehet visszavonni. Lát Felhasználó roles további információért.
(object/array)
Correlation properties to be updated.
The correlationid
property must be defined for each correlation, all other properties are optional. Only the passed properties will be updated, all others will remain unchanged.
Additionally to the standard correlation properties, the method accepts the following parameters.
Parameter | Type | Description |
---|---|---|
filter | object | Correlation filter object to replace the current filter. |
operations | array | Correlation operations to replace existing operations. |
(object)
Egy objektumot ad vissza, amely tartalmazza a frissített azonosítóit korrelációk a correlationids
tulajdonság alatt.
Kérés:
{
"jsonrpc": "2.0",
"method": "correlation.update",
"params": {
"correlationid": "1",
"status": "1"
},
"auth": "343baad4f88b4106b9b5961e77437688",
"id": 1
}
Válasz:
Request:
{
"jsonrpc": "2.0",
"method": "correlation.update",
"params": {
"correlationid": "1",
"filter": {
"conditions": [
{
"type": 3,
"oldtag": "error",
"newtag": "ok"
}
]
}
},
"auth": "343baad4f88b4106b9b5961e77437688",
"id": 1
}
Response:
CCorrelation::update() in ui/include/classes/api/services/CCorrelation.php.