enrich_exclude_button

This script is only meant to be used to disable the Enrich Excluded button in an indicator. It should not be used otherwise.

python · Common Scripts

Details

IDenrich_exclude_button
Languagepython
From Version8.8.0
Docker Imagedemisto/python3:3.12.13.10116658
Tagsindicator-action-button

README

Script Data


Name Description
Script Type python3
Tags indicator-action-button

Inputs


There are no inputs for this script.

Outputs


There are no outputs for this script.

import demistomock as demisto  # noqa: F401
from CommonServerPython import *  # noqa: F401


def main():
    return_error("\nThis indicator is enrich excluded")


""" ENTRY POINT """
if __name__ in ("__main__", "__builtin__", "builtins"):
    main()