On August 11, 2023, Cisco announced that Cisco SecureX will go end-of-life on July 31, 2024. The content in this Github repository will not be actively maintained following this announcement.

Utility Atomics

Sometimes as we’re building workflows we build utility atomics to make certain things easier. These atomics usually perform basic but useful functions not available in the platform’s core activities. Feel free to import these (they’re in the normal Atomics folder) and use them in your own workflows.

Category Name Description
JSON Simple List to Objects Converts a simple JSON list into a list of objects that can be inputted into Read Table from JSON.

Sample Input: [ "item1", "item2", ... ]
Sample Output: [ { "item": "item1" }, { "item": "item2" }, ... ]
String Get Length Returns the length of the string provided as input.
Time DateTime to Unix Epoch Converts a DateTime input into a Unix Epoch timestamp.
Time Get X Hour Window Calculates a window of X hours starting from Window Start or ending at Window End. If neither of these inputs are provided, the window will start X hours ago and end at the atomic’s start time. If both of these inputs are provided, the start time is used and the end time is ignored.