Special Functions
Special functions are globally available functions available throughout the life of an integration.
create_file_lock
create_file_lock(lock_id, timeout: int) -> FileLock
Please refer to the python package filelock for more information regarding FileLock. Lock_id is the reference path to the file desired to create a lock on.
calladapter
calladapter(system: str, service_name: str, label: str, payload: Any, sub_requests: Any) -> AdapterResponse
Makes a call to a configured adapter from within the current integration process.
import_helper
Imports the specified helper function. Please see the Helper Functions for further information on the specific helpers. This imports the helper function to the namespace for the integration, allowing access to the helper in every subsequent hook.
list_files
list_files() -> List[str]
Returns a list
of str
GlyueFile names for the currently running .
Last updated