I'm testing the new PowerShell toolkit which is using the REST API and am not seeing fields getting returned that I would expect should be. One example is the Get-NcQuota cmdlet. It does not return the QuotaTarget which makes this cmdlet pointless without that as you can't tell who the quota is for.
PS C:\Users\Administrator.DEMO> Get-NcQuota -Vserver $SVM
QuotaType QuotaTarget Volume Qtree DiskLimit FileLimit Vserver
--------- ----------- ------ ----- --------- --------- -------
user svm1_legal 2097152 svm1
user svm1_legal 5242880 svm1
user svm1_legal 1048576 svm1
PS C:\Users\Administrator.DEMO> Get-NcQuota -Vserver $SVM -ZapiCall
QuotaType QuotaTarget Volume Qtree DiskLimit FileLimit Vserver
--------- ----------- ------ ----- --------- --------- -------
user * svm1_legal 1048576 - svm1
user DEMO\lilgg svm1_legal 5242880 - svm1
user DEMO\ryang svm1_legal 2097152 - svm1