Summary
Update an Analytic Template
Description
Update an Analytic Template by ID.
Route
POST /mop/updateAnalyticTemplate/:mopID
Roles
admin
apiwrite
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
mopID |
string |
yes |
ID of the Analytic Template to update. |
template |
object |
yes |
Analytic Template to update. |
Copied to Clipboard
{
"template": {
"name": "ASR1K-MOP",
"_id": "ASR1K-MOP",
"namespace": {
"type": "project",
"_id": "5cb5252a1bbc5a00def564c1",
"name": "sed sit reprehenderit consectetur esse",
"accessControl": {
"read": [
"tempor",
"in ullamco sint sunt incididunt",
"Duis mollit ipsum"
],
"execute": [
"ullamco",
"aliquip anim consectetur officia quis"
],
"write": [
"culpa ut labore",
"occaecat laborum irure ullamco",
"veniam fugiat laborum",
"ullamco elit Duis labore est"
],
"manage": [
"exercitation proident nulla",
"sunt fugiat qui",
"elit Excepteur anim dolore",
"ullamco aute anim cupidatat laborum"
]
}
},
"os": "cisco-ios",
"passRule": false,
"prepostCommands": [
{
"preRawCommand": "show running-config ip prefix-list",
"postRawCommand": "show running-config ip prefix-list",
"passRule": false,
"rules": [
{
"type": "regex",
"preRegex": "",
"postRegex": "",
"evaluation": "="
}
],
"preCommandResHTML": "Test a command or the template to get results here",
"postCommandResHTML": "Test a command or the template to get results here"
}
],
"created": 1508182880981,
"createdBy": "exampleUser",
"lastUpdated": 1508182880981,
"lastUpdatedBy": "exampleUser"
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"template": {
"$ref": "mopAnalyticTemplateDoc"
}
},
"required": [
"template"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
result |
object |
Status of the update. |
Copied to Clipboard
{
"n": 1,
"ok": 1,
"nModified": 1
}