Resume Trigger
- async AsyncCogniteClient.workflows.triggers.resume(external_id: str) None
Resume a paused workflow trigger.
When a trigger is resumed, it will start triggering workflow executions again according to its trigger rule. This operation is idempotent - resuming an already active trigger has no effect.
- Parameters:
external_id (str) – The external id of the trigger to resume.
Examples
Resume a trigger:
>>> from cognite.client import CogniteClient >>> client = CogniteClient() >>> # async_client = AsyncCogniteClient() # another option >>> client.workflows.triggers.resume("my_trigger")