Hello, you can put same configurations on same xml template, you just need to specify the namespace with the attribute xmlns.
For example for ios-xr you would use: xmlns="http://tail-f.com/ned/cisco-ios-xr"And for Junos you would use: xmlns="http://x...
TLDR: You should use single quoted strings if you want to use escaping characters.
ex:
leaf alias-name {
type string {
length '0..256';
pattern '[A-Za-z0-9_\-/,\.]*';
}
}
Explanation:
On RFC6020 under the quoting section...
Hello, as far as I can see the problem is coming from C bindings code. I know for sure when it fails, but the reason cannot be tracked on python side cause python calls the C api(https://developer.cisco.com/docs/nso/api/#nso-api-5-6-nso-python-api-_n...
You have to delete the child(item) of the node so when you call the del statement you have to mention which item you want to delete. In this case we have to identify the instance to be deleted by its name, so it had to look something like this:
servi...