Ejemplo n.º 1
0
def events(last_id: Optional[str] = None):
    """
    Fetches permissions related events.

    :param last_id: ID of the last processed event, if provided, only events after
            the event with the provided ID will be returned.
    :return: iterator of permission events
    """
    return sse_request("/permissions/events", last_id)
Ejemplo n.º 2
0
def org_events(org_label: str, last_id: Optional[str] = None):
    """
    Fetches resource related events for a organization.

    :param org_label: organization label
    :param last_id: ID of the last processed event, if provided, only events after
            the event with the provided ID will be returned.
    :return: iterator of resource events for the given organization
    """
    return sse_request("/resources/" + org_label + "/events", last_id)