task-advisor
Admin task advisor.
GET /task-advisor/all-possible-warnings
Parameters
No parameters...
Endpoint
curl -X GET http://mgmt-node:8080/api/task-advisor/all-possible-warnings
Response 200
taskUuid
string
optional
-
finding
object
optional
-
hide
boolean
optional
-
updatedAt
integer
optional
-
affected
object
optional
-
Example response
[
{
"taskUuid": "string",
"finding": {
"severity": "INFO",
"category": "CEPH",
"shortDescription": "string",
"description": "string",
"id": "string"
},
"hide": true,
"updatedAt": 0,
"affected": {}
}
]
GET /task-advisor
Parameters
No parameters...
Endpoint
curl -X GET http://mgmt-node:8080/api/task-advisor
Response 200
taskUuid
string
optional
-
finding
object
optional
-
hide
boolean
optional
-
updatedAt
integer
optional
-
affected
object
optional
-
Example response
[
{
"taskUuid": "string",
"finding": {
"severity": "INFO",
"category": "CEPH",
"shortDescription": "string",
"description": "string",
"id": "string"
},
"hide": true,
"updatedAt": 0,
"affected": {}
}
]
POST /task-advisor
Parameters
No parameters...
Endpoint
curl -X POST http://mgmt-node:8080/api/task-advisor
DELETE /task-advisor/{taskUuid}
Parameters
taskUuid
string
path
-
Endpoint
curl -X DELETE http://mgmt-node:8080/api/task-advisor/{taskUuid}
PATCH /task-advisor/{taskUuid}
Parameters
taskUuid
string
path
-
body
object
optional
-
Endpoint
curl -X PATCH http://mgmt-node:8080/api/task-advisor/{taskUuid}
Example body
{
"hide": true
}