Hi All!
My plan to add CIFS share acl for one specific share.
I am using python / rest api / ontap library. Could you share the code snippets?
Here is my code snippet:
share = CifsShare()
share.name = x["volname"]
share.svm = {"name": "svm_name", "uuid": "test_uid"}
share.path = "/" + x["volname"]
share.acls = [ {"permission": "full_con trol", "type": "windows", "user_or_group": "test_group"} ]
share.patch(hydrate=True)
BR:
Pal