def handle_audit_log()

in bigquery-jobs-notifier/gcf/main.py [0:0]


def handle_audit_log(cloud_event):

    # Parse the event body
    aboveLimit, message = read_event_data(cloud_event)

    if aboveLimit:
        notify(message)

    return 'OK', 200