Skip to content

Commit

Permalink
Adding entity mixins classes
Browse files Browse the repository at this point in the history
Signed-off-by: Adarsh Dubey <addubey@redhat.com>
  • Loading branch information
adarshdubey-star committed Jul 11, 2023
1 parent 9c51426 commit 89f6525
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion nailgun/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -8575,7 +8575,14 @@ def sync(self, synchronous=True, timeout=None, **kwargs):
return _handle_response(response, self._server_config, synchronous, timeout)


class AnsibleRoles(Entity):
class AnsibleRoles(
Entity,
EntityCreateMixin,
EntityDeleteMixin,
EntityReadMixin,
EntitySearchMixin,
EntityUpdateMixin,
):
"""A representation of Ansible Roles entity."""

def __init__(self, server_config=None, **kwargs):
Expand Down

0 comments on commit 89f6525

Please sign in to comment.