<div dir="ltr">Thanks. I was relying on an method missing exception to distinguish if it was available. I'll update accordingly.</div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Feb 21, 2017 at 7:27 AM, Juan Hernández <span dir="ltr"><<a href="mailto:jhernand@redhat.com" target="_blank">jhernand@redhat.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On 02/21/2017 02:16 PM, Marc Young wrote:<br>
> Is there something malformed in this? Based on previous usages of<br>
> `.list(search: "...")` this does not seem like correct behavior<br>
><br>
><br>
> > env[:connection].system_<wbr>service.vnic_profiles_service.<wbr>list(search:<br>
> "name=#{iface_options[:<wbr>network_name]}").map(&:name)<br>
> => ["ovirtmgmt", "ovirtmgmt"]<br>
><br>
> > env[:connection].system_<wbr>service.vnic_profiles_service.<wbr>list(search:<br>
> "name=foo").map(&:name)<br>
> => ["ovirtmgmt", "ovirtmgmt"]<br>
><br>
> > env[:connection].system_<wbr>service.vnic_profiles_service.<wbr>list.map(&:name)<br>
> => ["ovirtmgmt", "ovirtmgmt"]<br>
><br>
><br>
> No matter what I provide it always returns all<br>
><br>
> Search works for other services:<br>
><br>
> > env[:connection].system_<wbr>service.vms_service.list(<wbr>search:<br>
> 'name=myvm').map(&:name)<br>
> => []<br>
><br>
> > env[:connection].system_<wbr>service.vms_service.list(<wbr>search:<br>
> 'name=testing').map(&:name)<br>
> => ["testing"]<br>
><br>
> > env[:connection].system_<wbr>service.vms_service.list(<wbr>search:<br>
> 'name=e').map(&:name)<br>
> => []<br>
><br>
<br>
</div></div>Not all the services provide the search mechanism, only those that have<br>
the "search" parameter. The vNIC profiles service doesn't have it:<br>
<br>
<br>
<a href="http://www.rubydoc.info/gems/ovirt-engine-sdk/OvirtSDK4/VnicProfilesService#list-instance_method" rel="noreferrer" target="_blank">http://www.rubydoc.info/gems/<wbr>ovirt-engine-sdk/OvirtSDK4/<wbr>VnicProfilesService#list-<wbr>instance_method</a><br>
<br>
For services that don't support search, if you provide the "search"<br>
option, it will just be silently ignored. This should be checked, and we<br>
have a bug already open for that:<br>
<br>
sdk should raise an exception when unknown parameter is used<br>
<a href="https://bugzilla.redhat.com/1378113" rel="noreferrer" target="_blank">https://bugzilla.redhat.com/<wbr>1378113</a><br>
<br>
So you need to do the search yourself, explicitly. For example, using<br>
the 'detect' method:<br>
<br>
vnic_profiles_service.list.<wbr>detect { |x| <a href="http://x.name" rel="noreferrer" target="_blank">x.name</a> == 'myprofile' }<br>
<br>
</blockquote></div><br></div>