The RESTCONF standard is a bit limited in this respect, but some filtering is still possible. Since id is the key of the list subnet4, the path part can look like
restconf/data/kea-dhcp4-server:config/subnet4=2
For more complex filters though you would have to resort to ConfD’s query API, see the corresponding section in the RESTCONF chapter of the user guide.
thanks for your answer.
I got it. And also I read more more RFCs. I couldn’t see it. There is no filtering on restconf, even netconf has subtree filtering mechanism, resting has not.
I saw tail-f query APIs. they are very helpfull. but I guess, it contains only exact match filtering not other filter mechanism, right.
But RESTCONF has (limited) subtree filtering - that’s what my example tries to show: just provide a path to the relevant subtree as a part of the GET request url.
The query API provides complete XPath filtering (and a bit more) - not sure if that’s what you mean by “exact match filtering”.
while i’m sayin “exact match filtering”, i mean like this:
let’s assume that,
you have words like this “example, mample, temple”,
if you make “exact match filter” with “ampl” you get empty result,
if you make “exact match filter” with “example” you get with “example”.
if you make “contains match filter” with “ampl” you get result with “example, mample”.
In that case no, you have almost complete XPath 1.0 arsenal at your disposal, including string functions like contains(). So you can do more than just “exact match”.
Does confD support “filter” query parameter in RESTCONF API? Is this valid?
/restconf/data/example-devices:devices/device?filter=state%3D’enabled’
I have tried using this expression but getting “invalid query parameter: filter” error message. Can you please let me know whether the “filter” query parameter can be used with RESTCONF on confD?
not sure what version of ConfD do you run, but, quoting from user guide of some of the later ones, chapter “The filter, start-time and stop-time Query Parameters”:
These query parameters are only allowed on an event stream resource and is further described in the chapter: Section 25.8, “Streams” .
Thus instead of CRUD app-like filtering using filter query parameter, YANG data schemas can be filtered by the XPath of the request itself as mentioned by mvf in above comments…
For your specific case above, i assume something like:
Thank You josephm. I am checking this on confD 8.0.17 and confD 7.3.2.
I could not get a response for /restconf/data/example-devices:devices/device[state=‘enabled’] (tried without quotes as well)
Thanks for your answer.