I am looking for a way to do searches in the downloaded running-config files using the SDK but so far haven't succeded.
Any suggestions?
The current version of the product does not support this, but the beta of NCM 7.2 does. In NCM 7.2, you can search configs using the Cirrus.ConfigArchive.ConfigSearch verb. It takes seven parameters:
The return value is an array of ConfigID values. You can query Cirrus.ConfigArchive to get the text of the config. Like this: SELECT Config FROM Cirrus.ConfigArchive WHERE ConfigID = '7d11d600-63d2-426b-a28c-793e2341f142'
I'll look forward to the release of 7.2, and then I'll just have to wait until the people in charge of our NCM installation do an upgrade.
Thank you for the answer.