The YANG type is in fact an instance-identifier, and not an identityref.
But the actual type used in our model is the "node-instance-identifier". From tailf-kickers.yang
leaf monitor {
type tailf:node-instance-identifier;
mandat...
Hi,
Yes, as Kristoffer said above, and as you figured out, these are Erlang terms converted to binary and base64 encoded.
But please note that these are strictly *internal* NSO fields, and are critical for the correct operation of FASTMAP. These shou...
Hi,
This error means that the NED you are trying to load is not compiled for NSO-6.0.
Did you get a version of this NED specific to NSO-6.0? Otherwise, you need to recompile it with NSO-6.0 (not only this NED, but all your packages need to be recompi...
What works now is this:
restconf/operations/tailf-ncs-alarms:alarms/alarm-list/alarm=ncs,package-load-failure,%2Fpackages%2Fpackage%5Bname%3D%27tailf-hcc%27%5D,/purge
This is the url-encoded RESTCONF path to the 'purge' action for that alarm.
Note th...
That part is actually unnecessary, in your case. "current()" and "." are the same, and they both return the current node in the context.
Your expression could also be written as
must "count(../../c-tag/native)=1"
meaning, the number of 'c-tag' instan...