Skip to main content
Version: 7.9

system.alarm.listPipelines

This function is used in Python Scripting.

Description​

Will return a list of the available Alarm Notification Pipelines.

Client Permission Restrictions​

This scripting function has no Client Permission restrictions.

Syntax​

system.alarm.listPipelines()

Parameters​

None

Returns​

List - A list of pipeline names. The list may be empty if no pipelines exist. Unsaved name changes will not be reflected in the list.

Scope​

All

Code Examples​

Example #1
# This script will print a list of all alarm pipeline names.
pipelines = system.alarm.listPipelines()
for pipeline in pipelines:
print pipeline
Output
Emergency_Pipeline
Test
SMS_Pipeline