Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I am having trouble collecting list of volumes on a C-dot system. I tried volume-get-iter and it returns as passed with 0 records. Also the same problem with perf-object-instance-list-info-itr. Below is the output I am seeing.
Solved! See The Solution
1 ACCEPTED SOLUTION
BALAGUDURU has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Remove the empty query, or provide some sort of value to query by, from the ZAPI call. Also, you'll want to remove the "desired-attributes" section as well...leaving it out, or with no "volume-attributes" section, will cause it to return all data (assumign that's what you want). With what you have in the ZAPI I believe it will only return the volume name and UUID.
Using simply "<volume-get-iter />" will return all volumes and all attributes.
<netapp xmlns="http://www.netapp.com/filer/admin" version="1.30"> <volume-get-iter/> </netapp>
Andrew
If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.
2 REPLIES 2
BALAGUDURU has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Remove the empty query, or provide some sort of value to query by, from the ZAPI call. Also, you'll want to remove the "desired-attributes" section as well...leaving it out, or with no "volume-attributes" section, will cause it to return all data (assumign that's what you want). With what you have in the ZAPI I believe it will only return the volume name and UUID.
Using simply "<volume-get-iter />" will return all volumes and all attributes.
<netapp xmlns="http://www.netapp.com/filer/admin" version="1.30"> <volume-get-iter/> </netapp>
Andrew
If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Andrew,
Thank you. It worked.
