Hello @ijustwantthemodule,
LUN attributes are different than you might expect, they allow the setting of arbitrary metadata about the LUN. You want the "Set-NcLunSpaceReserved" cmdlet:
# set the LUN to thin provisioned
Get-NcLun $lunName | Set-NcLunSpaceReserved -Off
# set the LUN to thick provisioned
Get-NcLun $lunName | Set-NcLunSpaceReserved
Hope that helps.
Andrew
If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.