<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: FileInfo &amp;amp; return_metadata=True in ONTAP Rest API Discussions</title>
    <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161243#M162</link>
    <description>&lt;P&gt;I may have jumped the gun on the solved part. If I pull up the URL via the management interface of the cluster with the API call then I get the file information (in this case the metadata of the qtree itself). However, when I do the same from python I just get the "_links" section back. I've stripped the test case back to this (based on your code and the docs):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV style="color: #d4d4d4; background-color: #1e1e1e; font-family: 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'; font-weight: normal; font-size: 14px; line-height: 19px; white-space: pre;"&gt;
&lt;DIV&gt;&lt;SPAN style="color: #6a9955;"&gt;#!/usr/bin/python3&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #c586c0;"&gt;from&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; netapp_ontap &lt;/SPAN&gt;&lt;SPAN style="color: #c586c0;"&gt;import&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; HostConnection&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #c586c0;"&gt;from&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; netapp_ontap.resources &lt;/SPAN&gt;&lt;SPAN style="color: #c586c0;"&gt;import&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; FileInfo&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN style="color: #c586c0;"&gt;with&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; HostConnection(&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"&amp;lt;ip_addr&amp;gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"&amp;lt;user&amp;gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"&amp;lt;password&amp;gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;verify&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #569cd6;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #d4d4d4;"&gt; resource = FileInfo(&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"60c2a6c2-25f2-11eb-87c4-000c29e6051b"&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;path&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"rdp_test_1"&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #d4d4d4;"&gt; resource.get(&lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;return_metadata&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #569cd6;"&gt;True&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #dcdcaa;"&gt; print&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; (resource)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but what I'm getting back is just:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FileInfo({'_links': {'self': {'href': '/api/storage/volumes/60c2a6c2-25f2-11eb-87c4-000c29e6051b/files/rdp_test_1?return_metadata=True'}}})&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, if I paste that URL into the browser on the managment interface (same username/password) it works fine. Tested on both the SIM and a real physical cluster.&lt;/P&gt;</description>
    <pubDate>Tue, 17 Nov 2020 16:48:53 GMT</pubDate>
    <dc:creator>richard_payne</dc:creator>
    <dc:date>2020-11-17T16:48:53Z</dc:date>
    <item>
      <title>FileInfo &amp; return_metadata=True</title>
      <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161208#M157</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to use the Rest API to get user/group information for a qtree. According to the docs for FileInfo:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"The metadata and detailed information about a single directory or file can be retrieved by setting the &lt;CODE&gt;return_metadata&lt;/CODE&gt; query property to &lt;CODE&gt;true" &lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;and here's the snippet of code provided:&lt;CODE&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class="python hljs"&gt;&lt;SPAN class="hljs-keyword"&gt;with&lt;/SPAN&gt; HostConnection(&lt;SPAN class="hljs-string"&gt;"&amp;lt;mgmt-ip&amp;gt;"&lt;/SPAN&gt;, username=&lt;SPAN class="hljs-string"&gt;"admin"&lt;/SPAN&gt;, password=&lt;SPAN class="hljs-string"&gt;"password"&lt;/SPAN&gt;, verify=&lt;SPAN class="hljs-keyword"&gt;False&lt;/SPAN&gt;):
    resource = FileInfo(&lt;SPAN class="hljs-string"&gt;"cb6b1b39-8d21-11e9-b926-05056aca658"&lt;/SPAN&gt;, path=&lt;SPAN class="hljs-string"&gt;"d1/d2/d3/f1"&lt;/SPAN&gt;)
    resource.get(return_metadata=&lt;SPAN class="hljs-keyword"&gt;True&lt;/SPAN&gt;)
    print(resource)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;Now if I run that using a real volume UUID and path, I get:&lt;/P&gt;
&lt;P&gt;netapp_ontap.error.NetAppRestError: Caused by HTTPError('400 Client Error: Bad Request for url: &lt;A href="https://abc123-mgmt:443/api/storage/volumes/60c2a6c2-25f2-11eb-87c4-000c29e6051b/files/test_1?return_metadata=True" target="_blank"&gt;https://abc123-mgmt:443/api/storage/volumes/60c2a6c2-25f2-11eb-87c4-000c29e6051b/files/test_1?return_metadata=True&lt;/A&gt;'): Unexpected argument "return_metadata".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and sure enough,&amp;nbsp; if I try and put that URL into a browser (after passing in credentials):&lt;/P&gt;
&lt;TABLE class="treeTable" tabindex="0" role="tree" cellspacing="0" cellpadding="0" aria-label="" aria-activedescendant="/error/message"&gt;
&lt;TBODY tabindex="-1" role="presentation"&gt;
&lt;TR id="/error/message" class="treeRow stringRow opened selected" role="treeitem" aria-level="2" aria-selected="true"&gt;
&lt;TD class="treeLabelCell" style="--tree-label-cell-indent: 16px;"&gt;&lt;SPAN class="treeLabel stringLabel" aria-labelledby="default" data-level="1"&gt;message&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD class="treeValueCell stringCell"&gt;&lt;SPAN aria-labelledby="value"&gt;&lt;SPAN class="objectBox objectBox-string"&gt;"Unexpected argument \"return_metadata\"."&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE&gt;So am I doing something wrong, are the docs wrong?&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;thx,&lt;/P&gt;
&lt;P&gt;--rdp&lt;CODE&gt;&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 10:45:06 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161208#M157</guid>
      <dc:creator>richard_payne</dc:creator>
      <dc:date>2025-06-04T10:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: FileInfo &amp; return_metadata=True</title>
      <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161212#M158</link>
      <description>&lt;P&gt;What version of ONTAP are you running? This does seem to work for me on 9.7:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;gt;&amp;gt;&amp;gt; from netapp_ontap import HostConnection
&amp;gt;&amp;gt;&amp;gt; from netapp_ontap.resources import FileInfo
&amp;gt;&amp;gt;&amp;gt; with HostConnection("&amp;lt;mgmt_ip&amp;gt;", "&amp;lt;username&amp;gt;", "&amp;lt;password&amp;gt;", verify=False):
  2     resource = FileInfo('b8e7dae7-242d-11eb-9046-005056bbcad1', path="file1")
  3     resource.get(return_metadata=True)
&amp;gt;&amp;gt;&amp;gt; resource
FileInfo({'type': 'file', 'changed_time': '2020-11-16T16:32:26-05:00', 'hard_links_count': 1, 'is_vm_aligned': False, 'accessed_time': '2020-11-16T16:32:26-05:00', 'owner_id': 0, 'fill_enabled': False, 'overwrite_enabled': False, 'size': 15, 'is_snapshot': False, 'path': 'file1', 'unique_bytes': 0, 'creation_time': '2020-11-16T16:32:26-05:00', 'inode_number': 96, 'modified_time': '2020-11-16T16:32:26-05:00', 'unix_permissions': 644, 'inode_generation': 42865720, 'group_id': 0, 'is_junction': False, 'bytes_used': 0})

&amp;gt;&amp;gt;&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2020 22:06:39 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161212#M158</guid>
      <dc:creator>RobertBlackhart</dc:creator>
      <dc:date>2020-11-16T22:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: FileInfo &amp; return_metadata=True</title>
      <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161213#M159</link>
      <description>&lt;P&gt;I am running:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NetApp Release 9.7: Thu Jan 09 11:10:19 UTC 2020&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, that's a simulator. I just tried running against physical hardware (9.7P8) and that appears to work. So for some reason the SIM 9.7 isn't really 9.7, or this requires a particular P release?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thx,&lt;/P&gt;
&lt;P&gt;--rdp&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2020 22:25:12 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161213#M159</guid>
      <dc:creator>richard_payne</dc:creator>
      <dc:date>2020-11-16T22:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: FileInfo &amp; return_metadata=True</title>
      <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161216#M160</link>
      <description>&lt;P&gt;I took a look, I think it requires at least 9.7P6 which might explain the difference for you if your simulator is on something earlier than that.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2020 23:06:19 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161216#M160</guid>
      <dc:creator>RobertBlackhart</dc:creator>
      <dc:date>2020-11-16T23:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: FileInfo &amp; return_metadata=True</title>
      <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161234#M161</link>
      <description>&lt;P&gt;Thanks, that was it. I updated the SIM to 9.7P8 this morning and now the call is working.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;--rdp&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 14:34:22 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161234#M161</guid>
      <dc:creator>richard_payne</dc:creator>
      <dc:date>2020-11-17T14:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: FileInfo &amp; return_metadata=True</title>
      <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161243#M162</link>
      <description>&lt;P&gt;I may have jumped the gun on the solved part. If I pull up the URL via the management interface of the cluster with the API call then I get the file information (in this case the metadata of the qtree itself). However, when I do the same from python I just get the "_links" section back. I've stripped the test case back to this (based on your code and the docs):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV style="color: #d4d4d4; background-color: #1e1e1e; font-family: 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'; font-weight: normal; font-size: 14px; line-height: 19px; white-space: pre;"&gt;
&lt;DIV&gt;&lt;SPAN style="color: #6a9955;"&gt;#!/usr/bin/python3&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #c586c0;"&gt;from&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; netapp_ontap &lt;/SPAN&gt;&lt;SPAN style="color: #c586c0;"&gt;import&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; HostConnection&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #c586c0;"&gt;from&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; netapp_ontap.resources &lt;/SPAN&gt;&lt;SPAN style="color: #c586c0;"&gt;import&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; FileInfo&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN style="color: #c586c0;"&gt;with&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; HostConnection(&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"&amp;lt;ip_addr&amp;gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"&amp;lt;user&amp;gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"&amp;lt;password&amp;gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;verify&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #569cd6;"&gt;False&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;&lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #d4d4d4;"&gt; resource = FileInfo(&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"60c2a6c2-25f2-11eb-87c4-000c29e6051b"&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;path&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #ce9178;"&gt;"rdp_test_1"&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #d4d4d4;"&gt; resource.get(&lt;/SPAN&gt;&lt;SPAN style="color: #9cdcfe;"&gt;return_metadata&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #569cd6;"&gt;True&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #dcdcaa;"&gt; print&lt;/SPAN&gt;&lt;SPAN style="color: #d4d4d4;"&gt; (resource)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but what I'm getting back is just:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;FileInfo({'_links': {'self': {'href': '/api/storage/volumes/60c2a6c2-25f2-11eb-87c4-000c29e6051b/files/rdp_test_1?return_metadata=True'}}})&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, if I paste that URL into the browser on the managment interface (same username/password) it works fine. Tested on both the SIM and a real physical cluster.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 16:48:53 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161243#M162</guid>
      <dc:creator>richard_payne</dc:creator>
      <dc:date>2020-11-17T16:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: FileInfo &amp; return_metadata=True</title>
      <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161246#M163</link>
      <description>&lt;P&gt;What version of the netapp_ontap library do you have installed? If you update it to the latest, does it change the output? You might want to try the latest rc release:&amp;nbsp;&lt;A href="https://pypi.org/project/netapp-ontap/#history" target="_blank"&gt;https://pypi.org/project/netapp-ontap/#history&lt;/A&gt;. I tried both 9.7.3 and 9.8.0rc1 and in the 9.7.3 version I get the same output as you. With the 9.8.0rc1 version, I get all the fields.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Even if your cluster is running 9.7, you can use the 9.8 version of the library and everything will still work since it's backwards compatible.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 17:00:13 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161246#M163</guid>
      <dc:creator>RobertBlackhart</dc:creator>
      <dc:date>2020-11-17T17:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: FileInfo &amp; return_metadata=True</title>
      <link>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161250#M164</link>
      <description>&lt;P&gt;Thanks, that did it. With the 9.8rc1 version I'm getting the FileInfo data back as expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks (again).&lt;/P&gt;
&lt;P&gt;--rdp&lt;/P&gt;</description>
      <pubDate>Tue, 17 Nov 2020 17:58:55 GMT</pubDate>
      <guid>https://community.netapp.com/t5/ONTAP-Rest-API-Discussions/FileInfo-amp-return-metadata-True/m-p/161250#M164</guid>
      <dc:creator>richard_payne</dc:creator>
      <dc:date>2020-11-17T17:58:55Z</dc:date>
    </item>
  </channel>
</rss>

