How to use the towerlib.entities.core.Entity.__init__ function in towerlib

To help you get started, we’ve selected a few towerlib examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github schubergphilis / towerlib / towerlib / entities / user.py View on Github external
def __init__(self, tower_instance, data):
        Entity.__init__(self, tower_instance, data)
github schubergphilis / towerlib / towerlib / entities / organization.py View on Github external
def __init__(self, tower_instance, data):
        Entity.__init__(self, tower_instance, data)
github schubergphilis / towerlib / towerlib / entities / host.py View on Github external
def __init__(self, tower_instance, data):
        Entity.__init__(self, tower_instance, data)
github schubergphilis / towerlib / towerlib / entities / credential.py View on Github external
def __init__(self, tower_instance, data):
        Entity.__init__(self, tower_instance, data)
github schubergphilis / towerlib / towerlib / entities / role.py View on Github external
def __init__(self, tower_instance, data):
        Entity.__init__(self, tower_instance, data)
github schubergphilis / towerlib / towerlib / entities / group.py View on Github external
def __init__(self, tower_instance, data):
        Entity.__init__(self, tower_instance, data)
github schubergphilis / towerlib / towerlib / entities / inventory_source.py View on Github external
def __init__(self, tower_instance, data):
        Entity.__init__(self, tower_instance, data)
github schubergphilis / towerlib / towerlib / entities / inventory_script.py View on Github external
def __init__(self, tower_instance, data):
        Entity.__init__(self, tower_instance, data)