We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the ietf-netconf-acm module there is a list with an embedded list:
ietf-netconf-acm
list rule-list { key name; leaf name { type string { length "1..max"; } } list rule { key name; leaf name { type string { length "1..max"; } } } }
If you PUT /data/ietf-netconf-acm:nacm/rule-list/rule=test this rule, it will be accepted:
PUT /data/ietf-netconf-acm:nacm/rule-list/rule=test
{ "ietf-netconf-acm:rule": [ { "name": "test", "module-name": "*", "access-operations": "*", "action": "deny" } ] }
Every time you PUT that rule, a new rule-list is created with empty name that is a key and must be mandatory:
PUT
rule-list
name
{ "name": null, "rule": [ { "name": "test", "module-name": "*", "access-operations": "*", "action": "deny" } ] }
The text was updated successfully, but these errors were encountered:
* Backend plugin returning NULL was still installed - is now logged a…
56f3237
…nd skipped. * [Parent list key is not validated if not provided via RESTCONF #83](#83), thanks achernavin22.
No branches or pull requests
In the
ietf-netconf-acm
module there is a list with an embedded list:If you
PUT /data/ietf-netconf-acm:nacm/rule-list/rule=test
this rule, it will be accepted:Every time you
PUT
that rule, a newrule-list
is created with emptyname
that is a key and must be mandatory:The text was updated successfully, but these errors were encountered: