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
I want to use the OnTap API to add a rule to a quota policy. In this specific case to change the quota for a user from the default. I cannot find the function to use in zexplore under quota or volume.
From the command line on the filer I would run:
volume quota policy rule create -vserver nfs1 -policy-name user_quota -volume v0 -type user -target 5120 -qtree "" -disk-limit 32GB
Thanks in advance for your help.
Solved! See The Solution
1 ACCEPTED SOLUTION
foxd has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello!
You will want to use the "quota-add-entry" API.
As an aside, you can view the CLI <-> API map using the command "security login role show-ontapi".
Hope that helps.
Andrew
If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.
2 REPLIES 2
foxd has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello!
You will want to use the "quota-add-entry" API.
As an aside, you can view the CLI <-> API map using the command "security login role show-ontapi".
Hope that helps.
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
Thanks for the answer, I also came to the same conclusion after posting. In case it helps others below is what I learned.
1) The quota modify api calls are listed under the "Vserver" section in zexplore, not the "Cluster-Mode" section.
2) To use the Vserver section of calls you need to target a mgmt enabled lif on the SVM and not the cluster mgmt lif.
Sample code can be seen in zexplore (in my case python) and the IP or Name in the NaServer object needs to me your SVM not the cluster SVM. To modify what I wanted (just the disk space allowed)
my object looked like this:
api = NaElement("quota-add-entry")
api.child_add_string("disk-limit","10G")
api.child_add_string("policy","default_user_quota")
api.child_add_string("qtree","")
api.child_add_string("quota-type","user")
api.child_add_string("quota-target","7003")
api.child_add_string("volume","user_vol18")
