This repository has been archived by the owner on May 9, 2020. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In Chef 12 every object have permissions list associated with it.
I've introduced a class which should help to manage object permissions.
Acl class provides access to the Acl in the Chef 12.
Each object of the Acl class contains the following properties:
create, read, update, delete, grant
each property represents corresponding access rights to the Chef object.
each property contains the following fields :
Each object of the class Acl contains the following methods:
Also, I've added get_acl() method to each class which represents Chef object
Note about versions
Chef server with version < 12 doesn't have Acl endpoint, so, I've introduced method is_supported() for Acl class.
This method check if api version is greater than 12.
So you should pass valid Chef server version to the ChefAPI constructor
But if you pass string '12.0.0' when actual Chef server version is 11.2, you will receive an error when you try to build Acl object.