whbing commented on code in PR #4938: URL: https://github.com/apache/ozone/pull/4938#discussion_r1247764098
########## hadoop-hdds/docs/content/security/SecurityAcls.md: ########## @@ -78,16 +78,86 @@ allows the user to overwrite an existing ozone key. 6. **Read_ACL** – Allows a user to read the ACL on a specific object. 7. **Write_ACL** – Allows a user to write the ACL on a specific object. -<h3>Ozone Native ACL APIs</h3> +There are 2 types of ACLs based on their scope - **Access** and **Default**.<br> +Access ACLs are limited only to the specific object and not inherited. They control the access to the object itself. +Only Default ACLs support inheritance. This inheritance is limited to only one level. For example, +Any bucket created under a volume which has a Default ACL inherits that Default ACL as an Access ACLs. +The keys added under the bucket do not inherit them. +Default ACLs cannot be set on keys (as there can be no objects under a key). + + +## Ozone Native ACL APIs The ACLs can be manipulated by a set of APIs supported by Ozone. The APIs supported are: 1. **SetAcl** – This API will take user principal, the name, type -of the ozone object and a list of ACLs. + of the ozone object and a list of ACLs. 2. **GetAcl** – This API will take the name and type of the ozone object -and will return a list of ACLs. + and will return a list of ACLs. 3. **AddAcl** - This API will take the name, type of the ozone object, the -ACL, and add it to existing ACL entries of the ozone object. + ACL, and add it to existing ACL entries of the ozone object. 4. **RemoveAcl** - This API will take the name, type of the -ozone object and the ACL that has to be removed. + ozone object and the ACL that has to be removed. + +## ACL Manipulation Using Ozone CLI + +The ACLs can also be manipulated by using the `ozone sh` commands.<br> +Usage: `ozone sh <object> <action> path-to-object [-a <value>]` <br> +`<value>` is of the form `type:name:rights[scope]`.<br> Review Comment: > I've mentioned the format again with the description because it is slightly different from what was mentioned at line 39. Also to specify the legal values for those parameters. Okay, get it. Thanks -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
