Details
-
Bug
-
Status: Resolved
-
Resolution: Done
-
unspecified
-
None
-
None
-
Operating System: All
Platform: All
-
7592
-
Normal
Description
Following request shouldn`t work because of plugin-name aaa which doesn`t exist. only Onem2mExample should work in there
POST
http://localhost:8181/restconf/operations/onem2m-simple-config:iplugin-cfg-put
{
"input": {
"plugin-name": "aaa",
"instance-name": "default",
"plugin-simple-config" : {
"key-val-list" : [
]
}
}
}
neither should this one because of it`s instance name aaa
POST
http://localhost:8181/restconf/operations/onem2m-simple-config:iplugin-cfg-put
{
"input": {
"plugin-name": "Onem2mExample",
"instance-name": "aaa",
"plugin-simple-config" : {
"key-val-list" : [
]
}
}
}