I'm defining a service that request feature on a NED available only for selected NED version.
If I define the template as usual I got erro at load-time:
reload-result {
package snfeSERVICE
result false
info snfeSERVICE-SNMP-template.xml:109 Element: 'permit' only exists for ned-id: huawei-vrp-cli-6.68:huawei-vrp-cli-6.68, huawei-vrp-cli-6.73:huawei-vrp-cli-6.73
I read Templates - Network Services Orchestrator (NSO) v6.1 - Cisco DevNet. I follow the instruction and create a package-meta-data.xml accordingly:
<ncs-package xmlns="http://tail-f.com/ns/ncs-packages">
<name>snfeSERVICE</name>
<package-version>1.0.4</package-version>
<description>Servizio per Sinfonia Easy - Componente stateful di snfe</description>
<ncs-min-version>5.7</ncs-min-version>
<component>
<name>main</name>
<application>
<python-class-name>snfeSERVICE.Main</python-class-name>
</application>
</component>
</ncs-package>
<supported-ned-id xmlns:huawei-vrp-cli-6.73="http://tail-f.com/ns/ned-id/huawei-vrp-cli-6.73">
huawei-vrp-cli-6.73:huawei-vrp-cli-6.73
</supported-ned-id>
<supported-ned-id xmlns:huawei-vrp-cli-6.68="http://tail-f.com/ns/ned-id/huawei-vrp-cli-6.68">
huawei-vrp-cli-6.68:huawei-vrp-cli-6.68
</supported-ned-id>
But no effect!
Where I'm wrong?